优化实践教程示例项目
您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

25975 行
1.1 MiB

#include "pch-cpp.hpp"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <limits>
#include <stdint.h>
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 <typename T1>
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 <typename T1, typename T2>
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 <typename T1, typename T2, typename T3>
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 <typename T1, typename T2, typename T3, typename T4>
struct VirtualActionInvoker4
{
typedef void (*Action)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
}
};
template <typename R>
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 <typename R, typename T1>
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 <typename R, typename T1, typename T2>
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 <typename T1>
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);
}
};
template <typename T1>
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 <typename R>
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 <typename R, typename T1>
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 <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
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 <typename T1>
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 <typename T1, typename T2>
struct InvokerActionInvoker2;
template <typename T1, typename T2>
struct InvokerActionInvoker2<T1*, T2*>
{
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 <typename T1, typename T2, typename T3>
struct InvokerActionInvoker3;
template <typename T1, typename T2, typename T3>
struct InvokerActionInvoker3<T1*, T2*, T3*>
{
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.Collections.Generic.Dictionary`2<System.Xml.IDtdEntityInfo,System.Xml.IDtdEntityInfo>
struct Dictionary_2_tEBCC19EF04541DFE092A495F8C364BF917DA466D;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo>
struct Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Text.Encoding>
struct Dictionary_2_t87EDE08B2E48F793A22DE50D6B3CC2E7EBB2DB54;
// System.Collections.Generic.Dictionary`2<System.Object,System.Int32>
struct Dictionary_2_t5C96F4B6841710A9013966F76224BAE01FB4B4D1;
// System.Collections.Generic.Dictionary`2<System.String,System.Boolean>
struct Dictionary_2_t17D0D125440AC627FCF80F189C6CBCB02856063C;
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo>
struct Dictionary_2_tE1603CE612C16451D1E56FF4D4859D4FE4087C28;
// System.Collections.Generic.Dictionary`2<System.String,System.Int32>
struct Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588;
// System.Collections.Generic.Dictionary`2<System.String,System.Xml.Schema.SchemaNotation>
struct Dictionary_2_t27DD7BC6C615A002762F178DF4446D10EF4486A1;
// System.Collections.Generic.Dictionary`2<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaAttDef>
struct Dictionary_2_tB85C1B2FFF985BA01AD2B7199C083B43C1476CC1;
// System.Collections.Generic.Dictionary`2<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaElementDecl>
struct Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A;
// System.Collections.Generic.Dictionary`2<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaEntity>
struct Dictionary_2_t129029582481E96143BD747690E92DB7E444261E;
// System.Collections.Generic.IComparer`1<System.Object>
struct IComparer_1_tC0A12A847AF97F369A5CE9A0CCE71CE18EE1440E;
// System.Collections.Generic.IDictionary`2<System.String,System.String>
struct IDictionary_2_t51DBA2F8AFDC8E5CC588729B12034B8C4D30B0AF;
// System.Collections.Generic.IEqualityComparer`1<System.Object>
struct IEqualityComparer_1_t2CA7720C7ADCCDECD3B02E45878B4478619D5347;
// System.Collections.Generic.IEqualityComparer`1<System.String>
struct IEqualityComparer_1_tAE94C8F24AD5B94D4EE85CA9FC59E3409D41CAF7;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.Int32>
struct KeyCollection_tCC15D033281A6593E2488FAF5B205812A152AC03;
// System.Collections.Generic.List`1<System.String>
struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD;
// System.Collections.Generic.List`1<System.Xml.XmlQualifiedName>
struct List_1_t43EC7C138A17FAAD7120408F039923082A70301A;
// System.Threading.Tasks.Task`1<System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>>
struct Task_1_tB493F74D58DB1761E087206849D953E99D07600B;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.Int32>
struct ValueCollection_tCE6BD704B9571C131E2D8C8CED569DDEC4AE042B;
// System.Collections.Generic.Dictionary`2/Entry<System.String,System.Int32>[]
struct EntryU5BU5D_tEA0133B78B9FF7045128C508FA50247E525A94D6;
// 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.UInt32[]
struct UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA;
// System.Xml.WriteState[]
struct WriteStateU5BU5D_t2541ACA07B6DAA172C2D36B58A47A83DAC4375DF;
// System.Xml.XmlNamespaceManager/NamespaceDeclaration[]
struct NamespaceDeclarationU5BU5D_t4DF48D3A2EB82C491A60E8748DE4BAFAA95A0F60;
// System.Xml.XmlTextReaderImpl/NodeData[]
struct NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610;
// System.Xml.XmlTextReaderImpl/ParsingState[]
struct ParsingStateU5BU5D_t6DBF0A43B3A9658C0218546F90EC15DCF17F3E29;
// System.Xml.XmlTextWriter/Namespace[]
struct NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93;
// System.Xml.XmlTextWriter/State[]
struct StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858;
// System.Xml.XmlTextWriter/TagInfo[]
struct TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776;
// System.Xml.XmlWellFormedWriter/AttrName[]
struct AttrNameU5BU5D_t501369F3E8EBC0B2B32AF603424921032B14A983;
// System.Xml.XmlWellFormedWriter/ElementScope[]
struct ElementScopeU5BU5D_t68B3D6D2E3C34832F1D1BBDB096CCF5270D5DBD9;
// System.Xml.XmlWellFormedWriter/Namespace[]
struct NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7;
// System.Xml.XmlWellFormedWriter/State[]
struct StateU5BU5D_t9E4189FBE1E6EF2CD6F60C94EE572FA8E522A375;
// System.Xml.XmlWellFormedWriter/AttributeValueCache/Item[]
struct ItemU5BU5D_t73F5828D4F7289CE7330E03744883B67DA02047D;
// System.ArgumentException
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263;
// System.ArgumentNullException
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129;
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F;
// System.Xml.Base64Encoder
struct Base64Encoder_tA62CD5B68BCE27F764FAA91A7FCE6583772978A2;
// System.Xml.Schema.BaseValidator
struct BaseValidator_t76E42AEBD013AC709BA36D782908C7B708BA8DAB;
// System.Xml.BitStack
struct BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C;
// System.Globalization.Calendar
struct Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B;
// System.Globalization.CodePageDataItem
struct CodePageDataItem_t52460FA30AE37F4F26ACB81055E58002262F19F2;
// System.Globalization.CompareInfo
struct CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57;
// 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.Text.Encoder
struct Encoder_tAF9067231A76315584BDF4CD27990E2F485A78FA;
// System.Text.EncoderFallback
struct EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293;
// System.Text.Encoding
struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095;
// System.Exception
struct Exception_t;
// System.IO.FileStream
struct FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8;
// System.Collections.Hashtable
struct Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D;
// 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.Collections.IEnumerator
struct IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA;
// 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.IncrementalReadDecoder
struct IncrementalReadDecoder_t55EB8A2FB2A5FFCB1B68AE7F784C4E00DCE1E55B;
// System.InvalidOperationException
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.Globalization.NumberFormatInfo
struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472;
// System.Xml.PositionInfo
struct PositionInfo_t1695F015DE0C183D3B4CE5A1562AD8A8A373F5B5;
// System.Xml.ReadContentAsBinaryHelper
struct ReadContentAsBinaryHelper_t94D48E6891DEAC8DFE5DEA1B820091D277880897;
// System.Threading.ReaderWriterLock
struct ReaderWriterLock_tBA6D275E19444C911C8681A576EB0CBB12B16B5B;
// System.Net.Cache.RequestCachePolicy
struct RequestCachePolicy_tF15C94C5E458478914D5EB17753294BD488B0550;
// Microsoft.Win32.SafeHandles.SafeFileHandle
struct SafeFileHandle_t033FA6AAAC65F4BB25F4CBA9A242A58C95CD406E;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
// System.Xml.Schema.SchemaAttDef
struct SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553;
// System.Xml.Schema.SchemaInfo
struct SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E;
// System.Xml.Schema.SchemaNames
struct SchemaNames_tF7A45B027D5759AA56D035F5962B4612A6B0902F;
// System.Xml.SecureStringHasher
struct SecureStringHasher_t4052E73C966E6FE65426B19F4AF48AB9869F614E;
// System.Threading.SemaphoreSlim
struct SemaphoreSlim_t0D5CB5685D9BFA5BF95CEC6E7395490F933E8DB2;
// System.IO.Stream
struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE;
// System.IO.StreamWriter
struct StreamWriter_t6E7DF7D524AA3C018A65F62EE80779873ED4D1E4;
// System.String
struct String_t;
// System.Text.StringBuilder
struct StringBuilder_t;
// System.Threading.Tasks.Task
struct Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572;
// System.Globalization.TextInfo
struct TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4;
// System.IO.TextReader
struct TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7;
// System.IO.TextWriter
struct TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3;
// System.Uri
struct Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E;
// System.UriParser
struct UriParser_t920B0868286118827C08B08A15A9456AF6C19D81;
// System.Xml.Schema.ValidationEventArgs
struct ValidationEventArgs_t9857F51592E50B7D14912FFA79909878DC603830;
// System.Xml.Schema.ValidationEventHandler
struct ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A;
// System.Xml.Schema.ValidationState
struct ValidationState_t8C17DFED38ACA12FA20F24613BD3A3A4BB1E5D19;
// System.Void
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
// System.Xml.XmlAsyncCheckReader
struct XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4;
// System.Xml.XmlException
struct XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596;
// System.Xml.XmlNameTable
struct XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8;
// System.Xml.XmlNamespaceManager
struct XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F;
// System.Xml.XmlParserContext
struct XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B;
// System.Xml.XmlQualifiedName
struct XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9;
// System.Xml.XmlRawWriter
struct XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B;
// System.Xml.XmlRawWriterBase64Encoder
struct XmlRawWriterBase64Encoder_tD84D358B95FF6F4EF007528F96F95CC2237D495D;
// System.Xml.XmlReader
struct XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD;
// System.Xml.XmlReaderSettings
struct XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA;
// System.Xml.XmlResolver
struct XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF;
// System.Xml.Schema.XmlSchemaAttribute
struct XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F;
// System.Xml.Schema.XmlSchemaCollection
struct XmlSchemaCollection_t795483FF9909CCC596ADA560E1C1654E66CAEAAD;
// System.Xml.Schema.XmlSchemaDatatype
struct XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D;
// System.Xml.Schema.XmlSchemaException
struct XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B;
// System.Xml.Schema.XmlSchemaObject
struct XmlSchemaObject_t82CCD87AADB4BEF4E9DFE4C501F09EDA372AA19D;
// System.Xml.Schema.XmlSchemaSet
struct XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1;
// System.Xml.Schema.XmlSchemaType
struct XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF;
// System.Xml.XmlTextEncoder
struct XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40;
// System.Xml.XmlTextReader
struct XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B;
// System.Xml.XmlTextReaderImpl
struct XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B;
// System.Xml.XmlTextWriter
struct XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B;
// System.Xml.XmlTextWriterBase64Encoder
struct XmlTextWriterBase64Encoder_tC7209F119916DF622459E830377C23D7BFA2B30D;
// System.Xml.XmlUrlResolver
struct XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E;
// System.Xml.XmlUtf8RawTextWriter
struct XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB;
// System.Xml.XmlUtf8RawTextWriterIndent
struct XmlUtf8RawTextWriterIndent_tEA3E110A4E275753FE5CC8F5FF17AA132DC66B41;
// System.Xml.XmlValidatingReader
struct XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9;
// System.Xml.XmlValidatingReaderImpl
struct XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8;
// System.Xml.XmlWellFormedWriter
struct XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645;
// System.Xml.XmlWriter
struct XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F;
// System.Xml.XmlWriterSettings
struct XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674;
// System.Xml.SecureStringHasher/HashCodeOfStringDelegate
struct HashCodeOfStringDelegate_t9AB4FF441166EF88D20657805C4FA187C4FF5046;
// System.IO.Stream/ReadWriteTask
struct ReadWriteTask_t0821BF49EE38596C7734E86E1A6A39D769BE2C05;
// System.Uri/UriInfo
struct UriInfo_t5F91F77A93545DDDA6BB24A609BAF5E232CC1A09;
// 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.XmlValidatingReaderImpl/ValidationEventHandling
struct ValidationEventHandling_tE915576B71BADFBAC73B6C8CA5A99C0C5086E4C9;
// System.Xml.XmlWellFormedWriter/AttributeValueCache
struct AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17;
// System.Xml.XmlWellFormedWriter/NamespaceResolverProxy
struct NamespaceResolverProxy_t21901D5C38330378CB1AA39393335948E0CADE44;
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* AttrNameU5BU5D_t501369F3E8EBC0B2B32AF603424921032B14A983_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588_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* DtdValidator_tF916F1805E2290242B688583602409378173CF17_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ElementScopeU5BU5D_t68B3D6D2E3C34832F1D1BBDB096CCF5270D5DBD9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8_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* IDtdParser_t91A29AF9801876CAFD81A0496F5AB8A65527B54B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IXmlLineInfo_tDD8332CE7D244FDA50A6C5744D7EAEC4A6CCBF05_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* LocalAppContextSwitches_tD4691F88F847A5F076065A6FEF10BBB5DB039434_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NamespaceResolverProxy_t21901D5C38330378CB1AA39393335948E0CADE44_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93_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* OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SecureStringHasher_t4052E73C966E6FE65426B19F4AF48AB9869F614E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StateU5BU5D_t9E4189FBE1E6EF2CD6F60C94EE572FA8E522A375_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StreamWriter_t6E7DF7D524AA3C018A65F62EE80779873ED4D1E4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_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* TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776_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* ValidationEventArgs_t9857F51592E50B7D14912FFA79909878DC603830_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ValidationEventHandling_tE915576B71BADFBAC73B6C8CA5A99C0C5086E4C9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* WriteStateU5BU5D_t2541ACA07B6DAA172C2D36B58A47A83DAC4375DF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B_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* XmlSchemaCollection_t795483FF9909CCC596ADA560E1C1654E66CAEAAD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40_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* XmlTextWriterBase64Encoder_tC7209F119916DF622459E830377C23D7BFA2B30D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_tBAB6DC40B1709E21296656960228A17F1BE57FD7____21AFB7EF8B4B88C006C54601484BC15AE5A8DBD2C0DD8C6622109208F8511B82_2_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_tBAB6DC40B1709E21296656960228A17F1BE57FD7____58E18897FE5FF048E82310FB4F57ADB2D53AEE59CB49B1E7094439808A1EF3F6_14_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_tBAB6DC40B1709E21296656960228A17F1BE57FD7____77186ED8B389D5640B5AFAC4A22526ABA2422DCBE2986D0032E3B035D175758D_18_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_tBAB6DC40B1709E21296656960228A17F1BE57FD7____D1D9AF18AFC4E3074AF5E4C44B81B73889D033D7AF6DFEB387BBCC76B36FE8B9_28_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_tBAB6DC40B1709E21296656960228A17F1BE57FD7____DB7DD2341DB9D4574E432AAAFF03FB0A3E8FF2F645A337077EDF0C6FE902E660_32_FieldInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral05F052FB531BF7DCEB556C41188DF51428B5D59A;
IL2CPP_EXTERN_C String_t* _stringLiteral07624473F417C06C74D59C64840A1532FCE2C626;
IL2CPP_EXTERN_C String_t* _stringLiteral0B285852A713F6D41AEFAA41E40A51FF58D6556E;
IL2CPP_EXTERN_C String_t* _stringLiteral0DD65E4164ECCDCC03EEEB4270914339DE878E09;
IL2CPP_EXTERN_C String_t* _stringLiteral0E2995C1357F8579A0DC0E2A26B0D0CA703B5FB7;
IL2CPP_EXTERN_C String_t* _stringLiteral0EE5C75C762D2925310D5C8C6DE4A72136C79CC4;
IL2CPP_EXTERN_C String_t* _stringLiteral0FD08B3C99047786420F2D9A7AC37D5DC351C9C8;
IL2CPP_EXTERN_C String_t* _stringLiteral107C050A992A643103C6C001E848316AB027D2E0;
IL2CPP_EXTERN_C String_t* _stringLiteral11AC5E2BD66016383281878F99D761B6B9AB5F11;
IL2CPP_EXTERN_C String_t* _stringLiteral120472D8D40924F6F8355A94DB677A8F142E2EB6;
IL2CPP_EXTERN_C String_t* _stringLiteral13DB4394207994E4948B5E3FAE7BA705B9B8E7B3;
IL2CPP_EXTERN_C String_t* _stringLiteral170766BABFD892AEC6CFB19EA06D35787C834FE9;
IL2CPP_EXTERN_C String_t* _stringLiteral18088F3052A13DFCCA929557EFBEC73F51E56A7D;
IL2CPP_EXTERN_C String_t* _stringLiteral18D590EE2CB69EF580815DC0D279AC45B0F5FA2B;
IL2CPP_EXTERN_C String_t* _stringLiteral193D7E74E7B91DC8A81DF6A1542CDA8A06B2D2C1;
IL2CPP_EXTERN_C String_t* _stringLiteral197DB4D12C3F8F844439AC8086D04A7E9906FD24;
IL2CPP_EXTERN_C String_t* _stringLiteral198AA065BF0F912BD6F5F93869BD5C361671F98B;
IL2CPP_EXTERN_C String_t* _stringLiteral1A82671F2C34BEA09C35354DDB899812746CBCF9;
IL2CPP_EXTERN_C String_t* _stringLiteral1C250646ACB5EAA28E079007EF6B9BECFDAEDC6E;
IL2CPP_EXTERN_C String_t* _stringLiteral1CBC514CBF721C4C5F12F67F33B3E7694BCD1B29;
IL2CPP_EXTERN_C String_t* _stringLiteral1E1DB32AFA986C58B9ACC9C146BF83E67C0DCE66;
IL2CPP_EXTERN_C String_t* _stringLiteral203878D5A9F10282BC47EC192B74A7FB1387D54C;
IL2CPP_EXTERN_C String_t* _stringLiteral2343901946DDD83EFBB8B93C33F01CBD394063B2;
IL2CPP_EXTERN_C String_t* _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745;
IL2CPP_EXTERN_C String_t* _stringLiteral23A6BF321FC205420788A7F2E1A1334F6C712C89;
IL2CPP_EXTERN_C String_t* _stringLiteral23E65142459FB1BF5009AD8736318547A5DFE850;
IL2CPP_EXTERN_C String_t* _stringLiteral24099C824AA6B479B0B07139E7CFB04638C0AEDA;
IL2CPP_EXTERN_C String_t* _stringLiteral290BA12613CB7EB53533E7D79C511020F597E92D;
IL2CPP_EXTERN_C String_t* _stringLiteral2A5DB3F00E0A45A734A36392B86940BEE1159FC8;
IL2CPP_EXTERN_C String_t* _stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1;
IL2CPP_EXTERN_C String_t* _stringLiteral2D7D9606D59C279ADCC84643F993B9FC22365566;
IL2CPP_EXTERN_C String_t* _stringLiteral32189949CB1CA4A6EBB1A643EBE2DB69713D5407;
IL2CPP_EXTERN_C String_t* _stringLiteral33225D2308B5FA9B4FC47DE1A1D06D718E1911ED;
IL2CPP_EXTERN_C String_t* _stringLiteral349C6DC0F34B9BA242E4C728EDD28CAB809D4917;
IL2CPP_EXTERN_C String_t* _stringLiteral36C331EB963AAABADAA628EA959A95F64ED7976C;
IL2CPP_EXTERN_C String_t* _stringLiteral36D06DCF7061DEC1E8DF4C9D2BB8EB53DBD3087E;
IL2CPP_EXTERN_C String_t* _stringLiteral37FDAAF1C91F947734553260891C6678930EDDA0;
IL2CPP_EXTERN_C String_t* _stringLiteral38E75ABA96218667556E142D2773A67D1F846A95;
IL2CPP_EXTERN_C String_t* _stringLiteral3B025A68D15E8C5AD48BD839D2CFAE9316DBB963;
IL2CPP_EXTERN_C String_t* _stringLiteral3C1E3A88F1DF442673E905BE97863155259D0CB5;
IL2CPP_EXTERN_C String_t* _stringLiteral3C74CEADD0C37A5DAAFFF37CDB455A8EFD8304BF;
IL2CPP_EXTERN_C String_t* _stringLiteral3D9E33C04AB4A0A0E8E88B74BB9D5F9003E15C78;
IL2CPP_EXTERN_C String_t* _stringLiteral3EBF7CFEC7929F196835D5D12FBBE2F845BF2A5F;
IL2CPP_EXTERN_C String_t* _stringLiteral41477B187466178A05A136C12F806B3EDCAB6349;
IL2CPP_EXTERN_C String_t* _stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE;
IL2CPP_EXTERN_C String_t* _stringLiteral45B9464D208C0A900770E5F7A95E5FE067CD4CCC;
IL2CPP_EXTERN_C String_t* _stringLiteral478E443AC6458DEF339E044E26A49ADE5A2AC1FE;
IL2CPP_EXTERN_C String_t* _stringLiteral4B4906CA939816C30A7D9C9A911CF6A9F506CCE3;
IL2CPP_EXTERN_C String_t* _stringLiteral4C9D5EB3A2133DCF493D42AFE0769A5D81E10AF1;
IL2CPP_EXTERN_C String_t* _stringLiteral4F463628A5B55C40369849BC669644FDA7E2FD4E;
IL2CPP_EXTERN_C String_t* _stringLiteral5296173AB8D4E282E989F7B0B7B7C9A3ACF26E18;
IL2CPP_EXTERN_C String_t* _stringLiteral5520F0EAC899C656D9482CE97A660E8F8E28ED01;
IL2CPP_EXTERN_C String_t* _stringLiteral56EF1F2751B48DAA3EC7F762F420920B8E40757A;
IL2CPP_EXTERN_C String_t* _stringLiteral56F31E8137B998C532779DA5D2ACDD6E3B715C1E;
IL2CPP_EXTERN_C String_t* _stringLiteral5C7DA3CBD254CB3BB9FCC98E58CF1A56E605861E;
IL2CPP_EXTERN_C String_t* _stringLiteral5E5E0B42C7CA8BCA40E77FC8AC4FC4B3C6D556A0;
IL2CPP_EXTERN_C String_t* _stringLiteral623A9F750825EB9F6FD1A2E4F3B121AF21D4CD0D;
IL2CPP_EXTERN_C String_t* _stringLiteral651F3DD8CA1557E5BD9B2873C319D3BC64D3128C;
IL2CPP_EXTERN_C String_t* _stringLiteral67171AD8B6817F7CF25B89C98234BCDA36D476FC;
IL2CPP_EXTERN_C String_t* _stringLiteral69520730213CDED741A5919BB83F6E4B8610EDBA;
IL2CPP_EXTERN_C String_t* _stringLiteral6A0B1389EFC77FE507C0DA65C2DD744C4CFBED6C;
IL2CPP_EXTERN_C String_t* _stringLiteral6C80BE31B3A7206EDCC7D55B9B8DC0407E7A87EB;
IL2CPP_EXTERN_C String_t* _stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044;
IL2CPP_EXTERN_C String_t* _stringLiteral7443383A37334A973AC921251F582494192A13B3;
IL2CPP_EXTERN_C String_t* _stringLiteral7445C16916FA3BA29CF130D3BC44506627A580F8;
IL2CPP_EXTERN_C String_t* _stringLiteral7721A48ACA2DB6CF7BA1F50E38BE38587D4927BA;
IL2CPP_EXTERN_C String_t* _stringLiteral79F2854B5115F837632CEA50C217D0F077D292CF;
IL2CPP_EXTERN_C String_t* _stringLiteral7BBD8C0287448D34297B233D6604618390BA9C38;
IL2CPP_EXTERN_C String_t* _stringLiteral7BFA33A11F0B12AF1B7FA1D9BA996EAE1EF77B49;
IL2CPP_EXTERN_C String_t* _stringLiteral801E316126435DC3E90554FCF745B368C9D874FC;
IL2CPP_EXTERN_C String_t* _stringLiteral80320AA84C189C1C7B90FE923851A42C57CE615C;
IL2CPP_EXTERN_C String_t* _stringLiteral8243A16D425F93AF62CAAB2BFAE01A2D6246A5FE;
IL2CPP_EXTERN_C String_t* _stringLiteral872479F10B4968F255B608A3698CA1A7EE09888B;
IL2CPP_EXTERN_C String_t* _stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D;
IL2CPP_EXTERN_C String_t* _stringLiteral88E0DBECA18651C0DE1E09C9B180E8C851A4F92B;
IL2CPP_EXTERN_C String_t* _stringLiteral8D9B33043809B99EBBFA18076383BF612F0BA9C5;
IL2CPP_EXTERN_C String_t* _stringLiteral8E7DF6980ECEA2C11D2FD74A57D449FC8CFA87AE;
IL2CPP_EXTERN_C String_t* _stringLiteral90AC7861280D19EAA167EE136C29B61BD0F1A328;
IL2CPP_EXTERN_C String_t* _stringLiteral916F4E7879C25AF1EA844F7068842D5508777C48;
IL2CPP_EXTERN_C String_t* _stringLiteral92EE0A9203C9B8F69CAE261B7FAF6C5AB705E49E;
IL2CPP_EXTERN_C String_t* _stringLiteral93E50C321A10920AEB9DABD4DBB251927D2FAF8C;
IL2CPP_EXTERN_C String_t* _stringLiteral9413AC7CF6AB7E9B088B38F9FF76860CC990A952;
IL2CPP_EXTERN_C String_t* _stringLiteral952F621460E9250177F13FF0BEAD9E00E2B86302;
IL2CPP_EXTERN_C String_t* _stringLiteral9932973D4B6AA1AA193C06D8D34B58B677685003;
IL2CPP_EXTERN_C String_t* _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3;
IL2CPP_EXTERN_C String_t* _stringLiteralA02431CF7C501A5B368C91E41283419D8FA9FB03;
IL2CPP_EXTERN_C String_t* _stringLiteralA0BA8D0495A770319CD6FF4DCD0C01BCCC30A901;
IL2CPP_EXTERN_C String_t* _stringLiteralA10AFD0FBAD152979B3F2273DA98BA5C9686E69C;
IL2CPP_EXTERN_C String_t* _stringLiteralA6A4D769FFC4529F0963FE55F3BE08E56AB8438E;
IL2CPP_EXTERN_C String_t* _stringLiteralAC9E93CEA17C181E0B0046090BD8FBFE6027E465;
IL2CPP_EXTERN_C String_t* _stringLiteralAE3A78C82F0ADEB13A1EA569DE4A0A436C7CED3D;
IL2CPP_EXTERN_C String_t* _stringLiteralB0AADDDCB10777660C04FFF62EE090971E9CB5CA;
IL2CPP_EXTERN_C String_t* _stringLiteralB3DF8F23CCCF0FE02D810ECECE41BF9F4149155E;
IL2CPP_EXTERN_C String_t* _stringLiteralB55DD8F11DBEB2311310B75BD326FABA8DD6E4B9;
IL2CPP_EXTERN_C String_t* _stringLiteralB63A1A23B65582B8791AA4E655E90AA5647D7298;
IL2CPP_EXTERN_C String_t* _stringLiteralB6F0795DD4F409C92875D0327F58FDEA357047F1;
IL2CPP_EXTERN_C String_t* _stringLiteralB76F93064E827FE764713C55F705D2E388DF17D7;
IL2CPP_EXTERN_C String_t* _stringLiteralB7C276EDC5859626BDC1BA491A7689C71544D69A;
IL2CPP_EXTERN_C String_t* _stringLiteralB92045191B4D9A7E7E55F5BE6BF1823D09F9CA9F;
IL2CPP_EXTERN_C String_t* _stringLiteralB968B651B32BD07EAAB4CB96683980AF16C47C0B;
IL2CPP_EXTERN_C String_t* _stringLiteralBA60BBAAF60E063761EDE850CC684D538D9A8573;
IL2CPP_EXTERN_C String_t* _stringLiteralBA9A59104E5E5C12D7BAC55D2460CE1CD56C7C08;
IL2CPP_EXTERN_C String_t* _stringLiteralBBC1106D65ACC9B0DB541F4FAF5DBAF5B7F7BA1F;
IL2CPP_EXTERN_C String_t* _stringLiteralBD1D701FC46063485DFFAB6888F3C74B6DC48DD8;
IL2CPP_EXTERN_C String_t* _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158;
IL2CPP_EXTERN_C String_t* _stringLiteralC263EA29ADF3548CFEBC57B532EED28451A56C10;
IL2CPP_EXTERN_C String_t* _stringLiteralC3FBA6155AE85E3CB81F8437A6F1C503BB7D09B7;
IL2CPP_EXTERN_C String_t* _stringLiteralC7C776080FBFB5F15E2EAAE9A4C65AE2C17FE00B;
IL2CPP_EXTERN_C String_t* _stringLiteralCD347E1307036F9337DFB643A0DA73051573F178;
IL2CPP_EXTERN_C String_t* _stringLiteralCE63895ACF2B7A447477491E6E010B297DD75B0D;
IL2CPP_EXTERN_C String_t* _stringLiteralCEB92A42478C96055FB865CE097903AF4512BD10;
IL2CPP_EXTERN_C String_t* _stringLiteralD2B699E6F0658A4364F9D1A0F5A4EB7C94F6F656;
IL2CPP_EXTERN_C String_t* _stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE;
IL2CPP_EXTERN_C String_t* _stringLiteralD6B20E18FAA3BB0018B8BA0CFA581E711100C554;
IL2CPP_EXTERN_C String_t* _stringLiteralD6DCC897C02A857315752249765CB47ADDF4E5C7;
IL2CPP_EXTERN_C String_t* _stringLiteralD7BB4816F511937863E42D9A34BAB32B43210AE7;
IL2CPP_EXTERN_C String_t* _stringLiteralD80F08699EED587529ABC38BC3513F5D6C7016A7;
IL2CPP_EXTERN_C String_t* _stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1;
IL2CPP_EXTERN_C String_t* _stringLiteralE09B556D1A5AFFB258696FDDCFA2E54208034620;
IL2CPP_EXTERN_C String_t* _stringLiteralE1291C4D47635E327ECFE39842BD1A93F58C61A2;
IL2CPP_EXTERN_C String_t* _stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC;
IL2CPP_EXTERN_C String_t* _stringLiteralE1C34BAD815D8104249A053C9455FA539CDF5036;
IL2CPP_EXTERN_C String_t* _stringLiteralE584C9688DCC7AEE34F2DA73D96EA113B211A93D;
IL2CPP_EXTERN_C String_t* _stringLiteralE62BE30D60110348D9F0D3836744E95BD82775EF;
IL2CPP_EXTERN_C String_t* _stringLiteralEA398BF072FD34DE9A70413411E9B2DE140B1383;
IL2CPP_EXTERN_C String_t* _stringLiteralECAC83771A00C701043A940F621CC1C765D30D31;
IL2CPP_EXTERN_C String_t* _stringLiteralED7D39EDF70E08FE57B2522D102BF72B9E5D5331;
IL2CPP_EXTERN_C String_t* _stringLiteralF0321EB1FDF45432B1A8C835517C2DFFBB4AF5AC;
IL2CPP_EXTERN_C String_t* _stringLiteralF3782EC504B73600A2DA83B623313BF6EC38CAE3;
IL2CPP_EXTERN_C String_t* _stringLiteralF41760006700B346FE970834ED6436CD21A1330F;
IL2CPP_EXTERN_C String_t* _stringLiteralF4ED3BDF7EB24796E98DB0F3022D762D2C5EBFB0;
IL2CPP_EXTERN_C String_t* _stringLiteralF58ED4D45480346BA6783D48CF49AC351B2A1A5C;
IL2CPP_EXTERN_C String_t* _stringLiteralF597846F2A44A6501BDA3166AC5D79811ACDFF43;
IL2CPP_EXTERN_C String_t* _stringLiteralFBD1A9745DCC4D80697D44756437CCB57698AE21;
IL2CPP_EXTERN_C String_t* _stringLiteralFCECB2616B2BFDE8FCC4BE457EFFCC62A8D789E0;
IL2CPP_EXTERN_C String_t* _stringLiteralFE53A3AF35DC43A86F8AA824C5449731805C32DD;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Clear_m841DBE29811833266CC127714688998A50D5F7CD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_m0C90DB78F4134CDEB001F338AA2745F8D9651CAC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m835BB1E6EA8A8BF1242B51E28FD65B43FEF68E2A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m9804017B0F6F06DE8C8FAA9292240873CB450B2D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Count_m33C34E4F1C77B491E24DCCBF07C43639016B2247_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m038480C0EC13713DBD89A53BE69FF0359501B4C2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DtdDefaultAttributeInfoToNodeDataComparer_Compare_m2429249F0018AC286655A7D6301AB2B5A36791DB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValidationEventHandling_System_Xml_IValidationEventHandling_SendEvent_mF752F1F19E1809AA7E2CF9274F9F241C7D276A90_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_AutoComplete_m6D82B054F5B8A65C9DEFEC095D1AA71B64E01D19_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_HandleSpecialAttribute_m6E1B85CC5B5CE12883AE164DB945EBA54F7564A6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_InternalWriteEndElement_m1FEBF6E0816D4B25A83B098093170CA61265CA6B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_LookupPrefix_mBB324890CDBA8E9C42A33D5BB4903617056B6D72_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_PushNamespace_m85B9B39621886474A21E929986FBB95C51ECC8FF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_StartDocument_m6D971130F93929411490C88EBC103B4B71AA311F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_ValidateName_mC44A84A18156918489A8159BF9A8D56BE7B1C715_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_VerifyPrefixXml_mB5720166A6E438017CE9C6677F77670ACF2BE661_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_WriteBase64_m08FE6AE1442ECE4F893BB1D11E55B685A18AAFF9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_WriteBinHex_m8671C515C6CE4DCF795F9D5501414F51D6147FD3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_WriteCData_m3A782E85DFE7EA8E4B7805DD1B325B6E187CEF81_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_WriteCharEntity_mC7E04F0C85AC60C247F5D9F4D67BFA09119C1654_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_WriteChars_m360D9A783C5846BEE36A50CF99033C6A963AD1CD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_WriteComment_mB3D158EBB5C79E834095C239145B0C40840ADAA5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_WriteDocType_m55B5607A1F450A8845D2FE25BB02E166DB141EAA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_WriteEndAttribute_m6AA5EBE690909A4E12E0B469F0E2339A468506D1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_WriteEndDocument_mE106B3BDB979A05A96FAD9184DD160B59DEF1ABD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_WriteEntityRef_m254B203A6E2B57AAFB2EFC85642066A7F428153B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_WriteProcessingInstruction_m180B619FBE705953079230DC6D79089698CE78D8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_WriteRaw_m3C7F182AECC5AD5610443A5FC732BD663ABA2601_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_WriteRaw_mAC040EADB0B191C0502EB056B23D9539AA5DD603_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_WriteStartAttribute_m8183A40B9AD5B20014708E4EA83D6D72BCF09D08_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_WriteStartElement_mC9FE33DD1244C725C11F8498DFFB2193C573CC04_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_WriteString_m2D9D3244DAE1D149747942DF2B4B2D1F9A352737_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_WriteSurrogateCharEntity_m4101F4023C03DDB2466E4E63358E429A4FFBCC44_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_WriteWhitespace_m6208C06449C23E262CE6D9C218910D863385BE95_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_set_Namespaces_m83F3F102E98E87105813A68C7318EF2EB26C1384_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_set_QuoteChar_mBF3C553E38CEA9BA68039EA9ABE254F388D078C3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlUtf8RawTextWriter_EncodeSurrogate_mE846CA16E1AEF8E2DFFE51F53BA92D4E4E47CD0A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlUtf8RawTextWriter_FlushBuffer_m380AF5AC857AFEFB88FD4D4A223CE2F61D0B624A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlUtf8RawTextWriter_InvalidXmlChar_m4F7C6D47C50442CE83943650D69E14F9D1975D63_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlUtf8RawTextWriter_ValidateContentChars_m2D62E5A56C7DB286BB2FB52D93F53737272C62A4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlUtf8RawTextWriter_WriteCharEntity_mCFA33DAFBB5CC7664DB5285C282CD17602A087EC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlValidatingReaderImpl_MoveOffEntityReference_m7A96CFBEAE562C0E1CDBA013353183E2E71E442F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlValidatingReaderImpl_ValidateDefaultAttributeOnUse_mCBE87491A93DED04B04028C172FF60CA0D47F28B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlValidatingReaderImpl__ctor_mB46D37CD4504EACF6A6E6AB65A3D0EB8A96CF950_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWellFormedWriter_AddAttribute_mAE42EFE8C45E46B4DBCEE7E95A75D860D35FC4D4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWellFormedWriter_AdvanceState_m0E77F31CDB1071771578075FC87D0BF0D208D8E1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWellFormedWriter_CheckNCName_m60D4A447D593BEF77DFDAAA31CDD019361B55D2A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWellFormedWriter_Close_m3344F6BA8692113175966735E5D40577F16DC62F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWellFormedWriter_Flush_m80648BA3FAB65ED58C7D221ADCA0F3E4440D5E6F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWellFormedWriter_LookupPrefix_m7EFDF47EE856E0E261CA8E46E4B39D61DEF77852_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWellFormedWriter_PushNamespaceExplicit_m2D2DD37D41835C6CF41605F5DF0EFE69FD500A43_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWellFormedWriter_PushNamespaceImplicit_mA1D3FFBB0CC8895E7237F3EFB2A6B425346D8267_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWellFormedWriter_ThrowInvalidStateTransition_mD1B039B1CB4593B86D6086945488E6F699289EA7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWellFormedWriter_WriteBase64_mADFA00DF036CF336F703B88863EB2F818E06CB02_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWellFormedWriter_WriteBinHex_m903D1B72D56F33567D2FDE5FC7858FC8E5A3E31F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWellFormedWriter_WriteCData_mC23237FAE56E3DCD60B913A3F102ED0F6EA542AF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWellFormedWriter_WriteCharEntity_m99918CACFDC1943936AA750C9D403016BFC4EE38_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWellFormedWriter_WriteChars_mEF9E7BA1D6723E346954A7EA686A336B04EE0572_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWellFormedWriter_WriteComment_m07DE2BC5A363CA4A037776A667A8F10A11FB5F8F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWellFormedWriter_WriteDocType_m67C4635BB824BBDA28E26A5F76698FA6BD703690_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWellFormedWriter_WriteEndAttribute_mEFA1CC155A614CDB62294E2A5C34A36E657BAF10_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWellFormedWriter_WriteEndDocument_m5988C4D6DAB5E13684D81E96E3DEDDCD26A8DD66_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWellFormedWriter_WriteEndElement_mB572B5CC66D350D4A1A489D6DF7D922C6D55B228_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWellFormedWriter_WriteEntityRef_mF2FC7A2CADC2114DC7C862016781F9BFC54FABA8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWellFormedWriter_WriteFullEndElement_m744A8E7FA66DC71F8AEBEB2ACAE643397303C655_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWellFormedWriter_WriteProcessingInstruction_m95C599B96B8BBA61EA9AD3090DB72C6B9FE4EAD1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWellFormedWriter_WriteRaw_mBA71BF6CD36C24909F1F8FEC8E0A3C59220DD2CC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWellFormedWriter_WriteRaw_mCA937B08EC0CB47BD8346501C463335AD122D275_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWellFormedWriter_WriteStartAttribute_m083009DC319DE10D4F037AE40D27EB7F2CDB0481_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWellFormedWriter_WriteStartDocumentImpl_mA52A83EB37B590FF5E0439A0EEF4607423783C0E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWellFormedWriter_WriteStartElement_m5E62BAA68C9A20CA088938BA5DA4453542D6F40D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWellFormedWriter_WriteString_m8B4E812A0CFAA843CC3FF8F57E1CD0B97748A9A4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWellFormedWriter_WriteSurrogateCharEntity_m7C8E107B0B6825531FFA38267746849C88A914A3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWellFormedWriter_WriteValue_m4DC703E7DB41C5A6A008A4DDF0A977D727835CC8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWellFormedWriter_WriteWhitespace_m95434DCB8764139934630FE04DD05A87291FCFD9_RuntimeMethod_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 ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
struct WriteStateU5BU5D_t2541ACA07B6DAA172C2D36B58A47A83DAC4375DF;
struct NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93;
struct StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858;
struct TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776;
struct AttrNameU5BU5D_t501369F3E8EBC0B2B32AF603424921032B14A983;
struct ElementScopeU5BU5D_t68B3D6D2E3C34832F1D1BBDB096CCF5270D5DBD9;
struct NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7;
struct StateU5BU5D_t9E4189FBE1E6EF2CD6F60C94EE572FA8E522A375;
IL2CPP_EXTERN_C_BEGIN
IL2CPP_EXTERN_C_END
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2<System.String,System.Int32>
struct Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588 : public RuntimeObject
{
// System.Int32[] System.Collections.Generic.Dictionary`2::_buckets
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_0;
// System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::_entries
EntryU5BU5D_tEA0133B78B9FF7045128C508FA50247E525A94D6* ____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<TKey> System.Collections.Generic.Dictionary`2::_comparer
RuntimeObject* ____comparer_6;
// System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_keys
KeyCollection_tCC15D033281A6593E2488FAF5B205812A152AC03* ____keys_7;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_values
ValueCollection_tCE6BD704B9571C131E2D8C8CED569DDEC4AE042B* ____values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject* ____syncRoot_9;
};
struct Il2CppArrayBounds;
// System.Xml.Base64Encoder
struct Base64Encoder_tA62CD5B68BCE27F764FAA91A7FCE6583772978A2 : public RuntimeObject
{
// System.Byte[] System.Xml.Base64Encoder::leftOverBytes
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___leftOverBytes_0;
// System.Int32 System.Xml.Base64Encoder::leftOverBytesCount
int32_t ___leftOverBytesCount_1;
// System.Char[] System.Xml.Base64Encoder::charsLine
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___charsLine_2;
};
// System.Xml.Schema.BaseValidator
struct BaseValidator_t76E42AEBD013AC709BA36D782908C7B708BA8DAB : public RuntimeObject
{
// System.Xml.Schema.XmlSchemaCollection System.Xml.Schema.BaseValidator::schemaCollection
XmlSchemaCollection_t795483FF9909CCC596ADA560E1C1654E66CAEAAD* ___schemaCollection_0;
// System.Xml.IValidationEventHandling System.Xml.Schema.BaseValidator::eventHandling
RuntimeObject* ___eventHandling_1;
// System.Xml.XmlNameTable System.Xml.Schema.BaseValidator::nameTable
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nameTable_2;
// System.Xml.Schema.SchemaNames System.Xml.Schema.BaseValidator::schemaNames
SchemaNames_tF7A45B027D5759AA56D035F5962B4612A6B0902F* ___schemaNames_3;
// System.Xml.PositionInfo System.Xml.Schema.BaseValidator::positionInfo
PositionInfo_t1695F015DE0C183D3B4CE5A1562AD8A8A373F5B5* ___positionInfo_4;
// System.Xml.XmlResolver System.Xml.Schema.BaseValidator::xmlResolver
XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___xmlResolver_5;
// System.Uri System.Xml.Schema.BaseValidator::baseUri
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___baseUri_6;
// System.Xml.Schema.SchemaInfo System.Xml.Schema.BaseValidator::schemaInfo
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* ___schemaInfo_7;
// System.Xml.XmlValidatingReaderImpl System.Xml.Schema.BaseValidator::reader
XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* ___reader_8;
// System.Xml.XmlQualifiedName System.Xml.Schema.BaseValidator::elementName
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___elementName_9;
// System.Xml.Schema.ValidationState System.Xml.Schema.BaseValidator::context
ValidationState_t8C17DFED38ACA12FA20F24613BD3A3A4BB1E5D19* ___context_10;
// System.Text.StringBuilder System.Xml.Schema.BaseValidator::textValue
StringBuilder_t* ___textValue_11;
// System.String System.Xml.Schema.BaseValidator::textString
String_t* ___textString_12;
// System.Boolean System.Xml.Schema.BaseValidator::hasSibling
bool ___hasSibling_13;
// System.Boolean System.Xml.Schema.BaseValidator::checkDatatype
bool ___checkDatatype_14;
};
// System.Xml.BitStack
struct BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C : public RuntimeObject
{
// System.UInt32[] System.Xml.BitStack::bitStack
UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* ___bitStack_0;
// System.Int32 System.Xml.BitStack::stackPos
int32_t ___stackPos_1;
// System.UInt32 System.Xml.BitStack::curr
uint32_t ___curr_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;
};
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.Int32,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_number
Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3* ___shared_by_number_36;
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo> 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;
};
// 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.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;
};
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<System.Int32,System.Text.Encoding> 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.EventArgs
struct EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377 : public RuntimeObject
{
};
struct EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_StaticFields
{
// System.EventArgs System.EventArgs::Empty
EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* ___Empty_0;
};
// System.LocalAppContextSwitches
struct LocalAppContextSwitches_tD4691F88F847A5F076065A6FEF10BBB5DB039434 : public RuntimeObject
{
};
struct LocalAppContextSwitches_tD4691F88F847A5F076065A6FEF10BBB5DB039434_StaticFields
{
// System.Boolean System.LocalAppContextSwitches::IgnoreEmptyKeySequences
bool ___IgnoreEmptyKeySequences_0;
// System.Boolean System.LocalAppContextSwitches::DontThrowOnInvalidSurrogatePairs
bool ___DontThrowOnInvalidSurrogatePairs_1;
};
// 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.Xml.SecureStringHasher
struct SecureStringHasher_t4052E73C966E6FE65426B19F4AF48AB9869F614E : public RuntimeObject
{
// System.Int32 System.Xml.SecureStringHasher::hashCodeRandomizer
int32_t ___hashCodeRandomizer_1;
};
struct SecureStringHasher_t4052E73C966E6FE65426B19F4AF48AB9869F614E_StaticFields
{
// System.Xml.SecureStringHasher/HashCodeOfStringDelegate System.Xml.SecureStringHasher::hashCodeDelegate
HashCodeOfStringDelegate_t9AB4FF441166EF88D20657805C4FA187C4FF5046* ___hashCodeDelegate_0;
};
// System.String
struct String_t : public RuntimeObject
{
// System.Int32 System.String::_stringLength
int32_t ____stringLength_4;
// System.Char System.String::_firstChar
Il2CppChar ____firstChar_5;
};
struct String_t_StaticFields
{
// System.String System.String::Empty
String_t* ___Empty_6;
};
// 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.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.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.String,System.Int32> 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.XmlReader
struct XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD : public RuntimeObject
{
};
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.XmlResolver
struct XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF : public RuntimeObject
{
};
// System.Xml.Schema.XmlSchemaCollection
struct XmlSchemaCollection_t795483FF9909CCC596ADA560E1C1654E66CAEAAD : public RuntimeObject
{
// System.Collections.Hashtable System.Xml.Schema.XmlSchemaCollection::collection
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___collection_0;
// System.Xml.XmlNameTable System.Xml.Schema.XmlSchemaCollection::nameTable
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nameTable_1;
// System.Xml.Schema.SchemaNames System.Xml.Schema.XmlSchemaCollection::schemaNames
SchemaNames_tF7A45B027D5759AA56D035F5962B4612A6B0902F* ___schemaNames_2;
// System.Threading.ReaderWriterLock System.Xml.Schema.XmlSchemaCollection::wLock
ReaderWriterLock_tBA6D275E19444C911C8681A576EB0CBB12B16B5B* ___wLock_3;
// System.Int32 System.Xml.Schema.XmlSchemaCollection::timeout
int32_t ___timeout_4;
// System.Boolean System.Xml.Schema.XmlSchemaCollection::isThreadSafe
bool ___isThreadSafe_5;
// System.Xml.Schema.ValidationEventHandler System.Xml.Schema.XmlSchemaCollection::validationEventHandler
ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* ___validationEventHandler_6;
// System.Xml.XmlResolver System.Xml.Schema.XmlSchemaCollection::xmlResolver
XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___xmlResolver_7;
};
// System.Xml.XmlWriter
struct XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F : public RuntimeObject
{
// System.Char[] System.Xml.XmlWriter::writeNodeBuffer
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___writeNodeBuffer_0;
};
// System.Xml.XmlTextReaderImpl/DtdDefaultAttributeInfoToNodeDataComparer
struct DtdDefaultAttributeInfoToNodeDataComparer_t316EE7BA1A7C3159565673C63167CDD82E3935A1 : public RuntimeObject
{
};
struct DtdDefaultAttributeInfoToNodeDataComparer_t316EE7BA1A7C3159565673C63167CDD82E3935A1_StaticFields
{
// System.Collections.Generic.IComparer`1<System.Object> System.Xml.XmlTextReaderImpl/DtdDefaultAttributeInfoToNodeDataComparer::s_instance
RuntimeObject* ___s_instance_0;
};
// System.Xml.XmlTextReaderImpl/DtdParserProxy
struct DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3 : public RuntimeObject
{
// System.Xml.XmlTextReaderImpl System.Xml.XmlTextReaderImpl/DtdParserProxy::reader
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___reader_0;
};
// System.Xml.XmlValidatingReaderImpl/ValidationEventHandling
struct ValidationEventHandling_tE915576B71BADFBAC73B6C8CA5A99C0C5086E4C9 : public RuntimeObject
{
// System.Xml.XmlValidatingReaderImpl System.Xml.XmlValidatingReaderImpl/ValidationEventHandling::reader
XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* ___reader_0;
// System.Xml.Schema.ValidationEventHandler System.Xml.XmlValidatingReaderImpl/ValidationEventHandling::eventHandler
ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* ___eventHandler_1;
};
// System.Xml.XmlWellFormedWriter/AttributeValueCache
struct AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17 : public RuntimeObject
{
// System.Text.StringBuilder System.Xml.XmlWellFormedWriter/AttributeValueCache::stringValue
StringBuilder_t* ___stringValue_0;
// System.String System.Xml.XmlWellFormedWriter/AttributeValueCache::singleStringValue
String_t* ___singleStringValue_1;
// System.Xml.XmlWellFormedWriter/AttributeValueCache/Item[] System.Xml.XmlWellFormedWriter/AttributeValueCache::items
ItemU5BU5D_t73F5828D4F7289CE7330E03744883B67DA02047D* ___items_2;
// System.Int32 System.Xml.XmlWellFormedWriter/AttributeValueCache::firstItem
int32_t ___firstItem_3;
// System.Int32 System.Xml.XmlWellFormedWriter/AttributeValueCache::lastItem
int32_t ___lastItem_4;
};
// System.Xml.XmlWellFormedWriter/NamespaceResolverProxy
struct NamespaceResolverProxy_t21901D5C38330378CB1AA39393335948E0CADE44 : public RuntimeObject
{
// System.Xml.XmlWellFormedWriter System.Xml.XmlWellFormedWriter/NamespaceResolverProxy::wfWriter
XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* ___wfWriter_0;
};
// System.Nullable`1<System.Boolean>
struct Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01
{
// System.Boolean System.Nullable`1::hasValue
bool ___hasValue_0;
// T System.Nullable`1::value
bool ___value_1;
};
// System.Boolean
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
{
// System.Boolean System.Boolean::m_value
bool ___m_value_0;
};
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
{
// System.String System.Boolean::TrueString
String_t* ___TrueString_5;
// System.String System.Boolean::FalseString
String_t* ___FalseString_6;
};
// 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;
};
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields
{
// System.Byte[] System.Char::s_categoryForLatin1
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_categoryForLatin1_3;
};
// System.Enum
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F
{
};
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_StaticFields
{
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___enumSeperatorCharArray_0;
};
// 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.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;
};
struct IntPtr_t_StaticFields
{
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
};
// 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.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;
};
struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_StaticFields
{
// System.IO.Stream System.IO.Stream::Null
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___Null_1;
};
// System.IO.TextReader
struct TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7 : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE
{
};
struct TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7_StaticFields
{
// System.IO.TextReader System.IO.TextReader::Null
TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___Null_1;
};
// System.IO.TextWriter
struct TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3 : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE
{
// System.Char[] System.IO.TextWriter::CoreNewLine
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___CoreNewLine_3;
// System.String System.IO.TextWriter::CoreNewLineStr
String_t* ___CoreNewLineStr_4;
// System.IFormatProvider System.IO.TextWriter::_internalFormatProvider
RuntimeObject* ____internalFormatProvider_5;
};
struct TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3_StaticFields
{
// System.IO.TextWriter System.IO.TextWriter::Null
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___Null_1;
// System.Char[] System.IO.TextWriter::s_coreNewLine
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___s_coreNewLine_2;
};
// 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.XmlAsyncCheckReader
struct XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4 : public XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD
{
// System.Xml.XmlReader System.Xml.XmlAsyncCheckReader::coreReader
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___coreReader_3;
// System.Threading.Tasks.Task System.Xml.XmlAsyncCheckReader::lastTask
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___lastTask_4;
};
// System.Xml.XmlCharType
struct XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3
{
// System.Byte[] System.Xml.XmlCharType::charProperties
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___charProperties_2;
};
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;
};
// 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.XmlRawWriter
struct XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B : public XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F
{
// System.Xml.XmlRawWriterBase64Encoder System.Xml.XmlRawWriter::base64Encoder
XmlRawWriterBase64Encoder_tD84D358B95FF6F4EF007528F96F95CC2237D495D* ___base64Encoder_1;
// System.Xml.IXmlNamespaceResolver System.Xml.XmlRawWriter::resolver
RuntimeObject* ___resolver_2;
};
// System.Xml.XmlTextReader
struct XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B : public XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD
{
// System.Xml.XmlTextReaderImpl System.Xml.XmlTextReader::impl
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___impl_3;
};
// System.Xml.XmlTextWriterBase64Encoder
struct XmlTextWriterBase64Encoder_tC7209F119916DF622459E830377C23D7BFA2B30D : public Base64Encoder_tA62CD5B68BCE27F764FAA91A7FCE6583772978A2
{
// System.Xml.XmlTextEncoder System.Xml.XmlTextWriterBase64Encoder::xmlTextEncoder
XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* ___xmlTextEncoder_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;
};
struct XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E_StaticFields
{
// System.Object System.Xml.XmlUrlResolver::s_DownloadManager
RuntimeObject* ___s_DownloadManager_0;
};
// System.Xml.XmlValidatingReader
struct XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9 : public XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD
{
// System.Xml.XmlValidatingReaderImpl System.Xml.XmlValidatingReader::impl
XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* ___impl_3;
};
// 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.Xml.XmlTextWriter/Namespace
struct Namespace_t98C96E77A64CE0105E85EEF2416A270C2AFA6853
{
// System.String System.Xml.XmlTextWriter/Namespace::prefix
String_t* ___prefix_0;
// System.String System.Xml.XmlTextWriter/Namespace::ns
String_t* ___ns_1;
// System.Boolean System.Xml.XmlTextWriter/Namespace::declared
bool ___declared_2;
// System.Int32 System.Xml.XmlTextWriter/Namespace::prevNsIndex
int32_t ___prevNsIndex_3;
};
// Native definition for P/Invoke marshalling of System.Xml.XmlTextWriter/Namespace
struct Namespace_t98C96E77A64CE0105E85EEF2416A270C2AFA6853_marshaled_pinvoke
{
char* ___prefix_0;
char* ___ns_1;
int32_t ___declared_2;
int32_t ___prevNsIndex_3;
};
// Native definition for COM marshalling of System.Xml.XmlTextWriter/Namespace
struct Namespace_t98C96E77A64CE0105E85EEF2416A270C2AFA6853_marshaled_com
{
Il2CppChar* ___prefix_0;
Il2CppChar* ___ns_1;
int32_t ___declared_2;
int32_t ___prevNsIndex_3;
};
// System.Xml.XmlWellFormedWriter/AttrName
struct AttrName_t0B37BBC030EEC83B4B00DFCDD9C1DB43A31675F2
{
// System.String System.Xml.XmlWellFormedWriter/AttrName::prefix
String_t* ___prefix_0;
// System.String System.Xml.XmlWellFormedWriter/AttrName::namespaceUri
String_t* ___namespaceUri_1;
// System.String System.Xml.XmlWellFormedWriter/AttrName::localName
String_t* ___localName_2;
// System.Int32 System.Xml.XmlWellFormedWriter/AttrName::prev
int32_t ___prev_3;
};
// Native definition for P/Invoke marshalling of System.Xml.XmlWellFormedWriter/AttrName
struct AttrName_t0B37BBC030EEC83B4B00DFCDD9C1DB43A31675F2_marshaled_pinvoke
{
char* ___prefix_0;
char* ___namespaceUri_1;
char* ___localName_2;
int32_t ___prev_3;
};
// Native definition for COM marshalling of System.Xml.XmlWellFormedWriter/AttrName
struct AttrName_t0B37BBC030EEC83B4B00DFCDD9C1DB43A31675F2_marshaled_com
{
Il2CppChar* ___prefix_0;
Il2CppChar* ___namespaceUri_1;
Il2CppChar* ___localName_2;
int32_t ___prev_3;
};
// System.Xml.ConformanceLevel
struct ConformanceLevel_t90FE5650C4EA88985ED92E858B142605B5645E0A
{
// System.Int32 System.Xml.ConformanceLevel::value__
int32_t ___value___2;
};
// 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.DtdProcessing
struct DtdProcessing_tC6A3C44E1448F35C5AD9755CCABF13537327A871
{
// System.Int32 System.Xml.DtdProcessing::value__
int32_t ___value___2;
};
// System.Xml.EntityHandling
struct EntityHandling_t13EA84821678B8FC70DDC4143059C59853ED180E
{
// System.Int32 System.Xml.EntityHandling::value__
int32_t ___value___2;
};
// 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;
};
struct Exception_t_StaticFields
{
// System.Object System.Exception::s_EDILock
RuntimeObject* ___s_EDILock_0;
};
// 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.Xml.ExceptionType
struct ExceptionType_t59E7D22CBFECCF0813D4C424384DDCD3FC74D95D
{
// System.Int32 System.Xml.ExceptionType::value__
int32_t ___value___2;
};
// System.IO.FileAccess
struct FileAccess_t3992FF4CCC61971B804DD291F06F696C3CF33C30
{
// System.Int32 System.IO.FileAccess::value__
int32_t ___value___2;
};
// System.IO.FileMode
struct FileMode_t111B48D5347628AEFCBF9A0EC2833827A302ECBA
{
// System.Int32 System.IO.FileMode::value__
int32_t ___value___2;
};
// System.IO.FileShare
struct FileShare_t0A0E9739F5AB44D6B8026C9D2A2F1CEEE442733A
{
// System.Int32 System.IO.FileShare::value__
int32_t ___value___2;
};
// System.Xml.Formatting
struct Formatting_t5EF3CA95BE1609D2F16907321F59B3BF36D59598
{
// System.Int32 System.Xml.Formatting::value__
int32_t ___value___2;
};
// System.Xml.NamespaceHandling
struct NamespaceHandling_t0DD5BBAE6E5AD2765848D1809C3DEF5311629CBB
{
// System.Int32 System.Xml.NamespaceHandling::value__
int32_t ___value___2;
};
// System.Xml.NewLineHandling
struct NewLineHandling_t8DFACC664E91AFFE9731BAC651A1243ABE8AC704
{
// System.Int32 System.Xml.NewLineHandling::value__
int32_t ___value___2;
};
// System.Globalization.NumberStyles
struct NumberStyles_t567C6CBC2A2B5B5A2C43B2855D158949984A810C
{
// System.Int32 System.Globalization.NumberStyles::value__
int32_t ___value___2;
};
// System.Xml.ReadState
struct ReadState_t1D77BBA83B1B8C9A73F295AA02C60CF3E3E43960
{
// System.Int32 System.Xml.ReadState::value__
int32_t ___value___2;
};
// System.RuntimeFieldHandle
struct RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5
{
// System.IntPtr System.RuntimeFieldHandle::value
intptr_t ___value_0;
};
// System.Xml.Schema.SchemaType
struct SchemaType_tEA68C27A0E1DF3AA694B9C8C3025FEDF4D713711
{
// System.Int32 System.Xml.Schema.SchemaType::value__
int32_t ___value___2;
};
// System.IO.StreamWriter
struct StreamWriter_t6E7DF7D524AA3C018A65F62EE80779873ED4D1E4 : public TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3
{
// System.IO.Stream System.IO.StreamWriter::_stream
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ____stream_7;
// System.Text.Encoding System.IO.StreamWriter::_encoding
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ____encoding_8;
// System.Text.Encoder System.IO.StreamWriter::_encoder
Encoder_tAF9067231A76315584BDF4CD27990E2F485A78FA* ____encoder_9;
// System.Byte[] System.IO.StreamWriter::_byteBuffer
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ____byteBuffer_10;
// System.Char[] System.IO.StreamWriter::_charBuffer
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ____charBuffer_11;
// System.Int32 System.IO.StreamWriter::_charPos
int32_t ____charPos_12;
// System.Int32 System.IO.StreamWriter::_charLen
int32_t ____charLen_13;
// System.Boolean System.IO.StreamWriter::_autoFlush
bool ____autoFlush_14;
// System.Boolean System.IO.StreamWriter::_haveWrittenPreamble
bool ____haveWrittenPreamble_15;
// System.Boolean System.IO.StreamWriter::_closable
bool ____closable_16;
// System.Threading.Tasks.Task System.IO.StreamWriter::_asyncWriteTask
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ____asyncWriteTask_17;
};
struct StreamWriter_t6E7DF7D524AA3C018A65F62EE80779873ED4D1E4_StaticFields
{
// System.IO.StreamWriter System.IO.StreamWriter::Null
StreamWriter_t6E7DF7D524AA3C018A65F62EE80779873ED4D1E4* ___Null_6;
};
// System.StringComparison
struct StringComparison_tE14A55CCFA001A5AC85D754179BF2888F45CC94D
{
// System.Int32 System.StringComparison::value__
int32_t ___value___2;
};
// System.Xml.TriState
struct TriState_tA38A5344A2F2845F64B00B527E97CC16CC746D22
{
// System.Int32 System.Xml.TriState::value__
int32_t ___value___2;
};
// System.UriIdnScope
struct UriIdnScope_t001CC97A6F977E9BB7DB855CC6BA415A7F47491F
{
// System.Int32 System.UriIdnScope::value__
int32_t ___value___2;
};
// System.UriKind
struct UriKind_t6597BD6BF48C695D63244DF8541B5EA48FF7F9E7
{
// System.Int32 System.UriKind::value__
int32_t ___value___2;
};
// System.Xml.ValidationType
struct ValidationType_t5866D5C0E60B27B092AB080025B9538AC97B4815
{
// System.Int32 System.Xml.ValidationType::value__
int32_t ___value___2;
};
// System.Xml.WhitespaceHandling
struct WhitespaceHandling_t3ABF1FE238493409F6E2E4A408E72849A910B5D6
{
// System.Int32 System.Xml.WhitespaceHandling::value__
int32_t ___value___2;
};
// System.Xml.WriteState
struct WriteState_t7C7DD3FA495CE7586781A5919ECDD49CD0270729
{
// System.Int32 System.Xml.WriteState::value__
int32_t ___value___2;
};
// System.Xml.XmlNamespaceScope
struct XmlNamespaceScope_t9EB2A1CEC55CBA30A4612AD7EAAAF4106B96AD01
{
// System.Int32 System.Xml.XmlNamespaceScope::value__
int32_t ___value___2;
};
// System.Xml.XmlNodeType
struct XmlNodeType_tCA25567E42A464038FDA6BA318EC0A9627B4CB95
{
// System.Int32 System.Xml.XmlNodeType::value__
int32_t ___value___2;
};
// System.Xml.XmlOutputMethod
struct XmlOutputMethod_tC9C5ED49E0965D5963F0BBDC6E399FF6EC42369B
{
// System.Int32 System.Xml.XmlOutputMethod::value__
int32_t ___value___2;
};
// System.Xml.Schema.XmlSchemaValidationFlags
struct XmlSchemaValidationFlags_t7ACA21306EF62E9BCE1196DA6D9258452BEE8EBF
{
// System.Int32 System.Xml.Schema.XmlSchemaValidationFlags::value__
int32_t ___value___2;
};
// System.Xml.Schema.XmlSeverityType
struct XmlSeverityType_t561D2CF1B3134CC79EEAB254D53D878EC45F6071
{
// System.Int32 System.Xml.Schema.XmlSeverityType::value__
int32_t ___value___2;
};
// System.Xml.XmlSpace
struct XmlSpace_t6A78E68D9618EE5EFEA37E875ED46B88B03DB357
{
// System.Int32 System.Xml.XmlSpace::value__
int32_t ___value___2;
};
// System.Xml.XmlStandalone
struct XmlStandalone_tCE6BFF49F0B3421841A2996F963DB5281DD57441
{
// System.Int32 System.Xml.XmlStandalone::value__
int32_t ___value___2;
};
// System.Xml.XmlTextEncoder
struct XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40 : public RuntimeObject
{
// System.IO.TextWriter System.Xml.XmlTextEncoder::textWriter
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___textWriter_0;
// System.Boolean System.Xml.XmlTextEncoder::inAttribute
bool ___inAttribute_1;
// System.Char System.Xml.XmlTextEncoder::quoteChar
Il2CppChar ___quoteChar_2;
// System.Text.StringBuilder System.Xml.XmlTextEncoder::attrValue
StringBuilder_t* ___attrValue_3;
// System.Boolean System.Xml.XmlTextEncoder::cacheAttrValue
bool ___cacheAttrValue_4;
// System.Xml.XmlCharType System.Xml.XmlTextEncoder::xmlCharType
XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 ___xmlCharType_5;
};
// System.Xml.ReadContentAsBinaryHelper/State
struct State_tFAC725C130DC954C0F91FADA137D7C3710F1A7E0
{
// System.Int32 System.Xml.ReadContentAsBinaryHelper/State::value__
int32_t ___value___2;
};
// System.Xml.Schema.SchemaAttDef/Reserve
struct Reserve_tDAED14B521B7F6339D31BDE0156E370E47AB49BF
{
// System.Int32 System.Xml.Schema.SchemaAttDef/Reserve::value__
int32_t ___value___2;
};
// System.Xml.Schema.SchemaDeclBase/Use
struct Use_tC7E0CA6B6AE6F37FB36AA9911EA2B1829AC18EAC
{
// System.Int32 System.Xml.Schema.SchemaDeclBase/Use::value__
int32_t ___value___2;
};
// System.Uri/Flags
struct Flags_t47CF4DB4036A6A539AFA6EE39C75F772E865E897
{
// System.UInt64 System.Uri/Flags::value__
uint64_t ___value___2;
};
// System.Xml.XmlTextReaderImpl/EntityExpandType
struct EntityExpandType_t6C726A87C20AE0F72FD09397D8CFEF257B304C09
{
// System.Int32 System.Xml.XmlTextReaderImpl/EntityExpandType::value__
int32_t ___value___2;
};
// System.Xml.XmlTextReaderImpl/EntityType
struct EntityType_t714AD8E504B2F409658881C96DCD0AA9459BF30E
{
// System.Int32 System.Xml.XmlTextReaderImpl/EntityType::value__
int32_t ___value___2;
};
// System.Xml.XmlTextReaderImpl/IncrementalReadState
struct IncrementalReadState_tE59C8525766041037D84E0FCFD0DD90E26F45612
{
// System.Int32 System.Xml.XmlTextReaderImpl/IncrementalReadState::value__
int32_t ___value___2;
};
// System.Xml.XmlTextReaderImpl/InitInputType
struct InitInputType_t181ACB24EB70869E16C9171A293238B38C0AC557
{
// System.Int32 System.Xml.XmlTextReaderImpl/InitInputType::value__
int32_t ___value___2;
};
// System.Xml.XmlTextReaderImpl/ParsingFunction
struct ParsingFunction_t212AA00387401B819A5C119AC2DFC96BB0265667
{
// System.Int32 System.Xml.XmlTextReaderImpl/ParsingFunction::value__
int32_t ___value___2;
};
// System.Xml.XmlTextReaderImpl/ParsingMode
struct ParsingMode_t4ACC4D68C98E6EB46779404DCA70331F5FE13776
{
// System.Int32 System.Xml.XmlTextReaderImpl/ParsingMode::value__
int32_t ___value___2;
};
// System.Xml.XmlTextWriter/NamespaceState
struct NamespaceState_t96D7826057D94D01FF46912868C57967FC8E6C01
{
// System.Int32 System.Xml.XmlTextWriter/NamespaceState::value__
int32_t ___value___2;
};
// System.Xml.XmlTextWriter/SpecialAttr
struct SpecialAttr_t020B7EFC3BE44C46A0E81D094A9AE5646065887C
{
// System.Int32 System.Xml.XmlTextWriter/SpecialAttr::value__
int32_t ___value___2;
};
// System.Xml.XmlTextWriter/State
struct State_t2EBD3BF5AFDFDCF3FB477A1B4DE46FA56C5D68CE
{
// System.Int32 System.Xml.XmlTextWriter/State::value__
int32_t ___value___2;
};
// System.Xml.XmlTextWriter/Token
struct Token_t42EE6846A8E76E8B25571430B0C13E3EEA36F639
{
// System.Int32 System.Xml.XmlTextWriter/Token::value__
int32_t ___value___2;
};
// System.Xml.XmlValidatingReaderImpl/ParsingFunction
struct ParsingFunction_tC718D20F7986A479D11D8EE72FE2DB76A2D02DAD
{
// System.Int32 System.Xml.XmlValidatingReaderImpl/ParsingFunction::value__
int32_t ___value___2;
};
// System.Xml.XmlWellFormedWriter/NamespaceKind
struct NamespaceKind_t6467E27BEA03F980D0B9345377D43742C8712D42
{
// System.Int32 System.Xml.XmlWellFormedWriter/NamespaceKind::value__
int32_t ___value___2;
};
// System.Xml.XmlWellFormedWriter/SpecialAttribute
struct SpecialAttribute_t07EE6A3DA988DFBFF62BE198603D03A0B95A3AEE
{
// System.Int32 System.Xml.XmlWellFormedWriter/SpecialAttribute::value__
int32_t ___value___2;
};
// System.Xml.XmlWellFormedWriter/State
struct State_tE745A3C97E427F6BC65817B47D18621AEF53300E
{
// System.Int32 System.Xml.XmlWellFormedWriter/State::value__
int32_t ___value___2;
};
// System.Xml.XmlWellFormedWriter/Token
struct Token_tBCA2425058A28BAF6BDBCBAC422BA38A31902033
{
// System.Int32 System.Xml.XmlWellFormedWriter/Token::value__
int32_t ___value___2;
};
// System.IO.FileStream
struct FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8 : public Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE
{
// System.Byte[] System.IO.FileStream::buf
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buf_6;
// System.String System.IO.FileStream::name
String_t* ___name_7;
// Microsoft.Win32.SafeHandles.SafeFileHandle System.IO.FileStream::safeHandle
SafeFileHandle_t033FA6AAAC65F4BB25F4CBA9A242A58C95CD406E* ___safeHandle_8;
// System.Boolean System.IO.FileStream::isExposed
bool ___isExposed_9;
// System.Int64 System.IO.FileStream::append_startpos
int64_t ___append_startpos_10;
// System.IO.FileAccess System.IO.FileStream::access
int32_t ___access_11;
// System.Boolean System.IO.FileStream::owner
bool ___owner_12;
// System.Boolean System.IO.FileStream::async
bool ___async_13;
// System.Boolean System.IO.FileStream::canseek
bool ___canseek_14;
// System.Boolean System.IO.FileStream::anonymous
bool ___anonymous_15;
// System.Boolean System.IO.FileStream::buf_dirty
bool ___buf_dirty_16;
// System.Int32 System.IO.FileStream::buf_size
int32_t ___buf_size_17;
// System.Int32 System.IO.FileStream::buf_length
int32_t ___buf_length_18;
// System.Int32 System.IO.FileStream::buf_offset
int32_t ___buf_offset_19;
// System.Int64 System.IO.FileStream::buf_start
int64_t ___buf_start_20;
};
struct FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8_StaticFields
{
// System.Byte[] System.IO.FileStream::buf_recycle
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buf_recycle_4;
// System.Object System.IO.FileStream::buf_recycle_lock
RuntimeObject* ___buf_recycle_lock_5;
};
// 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.Globalization.NumberFormatInfo
struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472 : public RuntimeObject
{
// System.Int32[] System.Globalization.NumberFormatInfo::numberGroupSizes
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___numberGroupSizes_1;
// System.Int32[] System.Globalization.NumberFormatInfo::currencyGroupSizes
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___currencyGroupSizes_2;
// System.Int32[] System.Globalization.NumberFormatInfo::percentGroupSizes
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___percentGroupSizes_3;
// System.String System.Globalization.NumberFormatInfo::positiveSign
String_t* ___positiveSign_4;
// System.String System.Globalization.NumberFormatInfo::negativeSign
String_t* ___negativeSign_5;
// System.String System.Globalization.NumberFormatInfo::numberDecimalSeparator
String_t* ___numberDecimalSeparator_6;
// System.String System.Globalization.NumberFormatInfo::numberGroupSeparator
String_t* ___numberGroupSeparator_7;
// System.String System.Globalization.NumberFormatInfo::currencyGroupSeparator
String_t* ___currencyGroupSeparator_8;
// System.String System.Globalization.NumberFormatInfo::currencyDecimalSeparator
String_t* ___currencyDecimalSeparator_9;
// System.String System.Globalization.NumberFormatInfo::currencySymbol
String_t* ___currencySymbol_10;
// System.String System.Globalization.NumberFormatInfo::ansiCurrencySymbol
String_t* ___ansiCurrencySymbol_11;
// System.String System.Globalization.NumberFormatInfo::nanSymbol
String_t* ___nanSymbol_12;
// System.String System.Globalization.NumberFormatInfo::positiveInfinitySymbol
String_t* ___positiveInfinitySymbol_13;
// System.String System.Globalization.NumberFormatInfo::negativeInfinitySymbol
String_t* ___negativeInfinitySymbol_14;
// System.String System.Globalization.NumberFormatInfo::percentDecimalSeparator
String_t* ___percentDecimalSeparator_15;
// System.String System.Globalization.NumberFormatInfo::percentGroupSeparator
String_t* ___percentGroupSeparator_16;
// System.String System.Globalization.NumberFormatInfo::percentSymbol
String_t* ___percentSymbol_17;
// System.String System.Globalization.NumberFormatInfo::perMilleSymbol
String_t* ___perMilleSymbol_18;
// System.String[] System.Globalization.NumberFormatInfo::nativeDigits
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___nativeDigits_19;
// System.Int32 System.Globalization.NumberFormatInfo::m_dataItem
int32_t ___m_dataItem_20;
// System.Int32 System.Globalization.NumberFormatInfo::numberDecimalDigits
int32_t ___numberDecimalDigits_21;
// System.Int32 System.Globalization.NumberFormatInfo::currencyDecimalDigits
int32_t ___currencyDecimalDigits_22;
// System.Int32 System.Globalization.NumberFormatInfo::currencyPositivePattern
int32_t ___currencyPositivePattern_23;
// System.Int32 System.Globalization.NumberFormatInfo::currencyNegativePattern
int32_t ___currencyNegativePattern_24;
// System.Int32 System.Globalization.NumberFormatInfo::numberNegativePattern
int32_t ___numberNegativePattern_25;
// System.Int32 System.Globalization.NumberFormatInfo::percentPositivePattern
int32_t ___percentPositivePattern_26;
// System.Int32 System.Globalization.NumberFormatInfo::percentNegativePattern
int32_t ___percentNegativePattern_27;
// System.Int32 System.Globalization.NumberFormatInfo::percentDecimalDigits
int32_t ___percentDecimalDigits_28;
// System.Int32 System.Globalization.NumberFormatInfo::digitSubstitution
int32_t ___digitSubstitution_29;
// System.Boolean System.Globalization.NumberFormatInfo::isReadOnly
bool ___isReadOnly_30;
// System.Boolean System.Globalization.NumberFormatInfo::m_useUserOverride
bool ___m_useUserOverride_31;
// System.Boolean System.Globalization.NumberFormatInfo::m_isInvariant
bool ___m_isInvariant_32;
// System.Boolean System.Globalization.NumberFormatInfo::validForParseAsNumber
bool ___validForParseAsNumber_33;
// System.Boolean System.Globalization.NumberFormatInfo::validForParseAsCurrency
bool ___validForParseAsCurrency_34;
};
struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472_StaticFields
{
// System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.NumberFormatInfo::invariantInfo
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___invariantInfo_0;
};
// System.Xml.ReadContentAsBinaryHelper
struct ReadContentAsBinaryHelper_t94D48E6891DEAC8DFE5DEA1B820091D277880897 : public RuntimeObject
{
// System.Xml.XmlReader System.Xml.ReadContentAsBinaryHelper::reader
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader_0;
// System.Xml.ReadContentAsBinaryHelper/State System.Xml.ReadContentAsBinaryHelper::state
int32_t ___state_1;
// System.Int32 System.Xml.ReadContentAsBinaryHelper::valueOffset
int32_t ___valueOffset_2;
// System.Boolean System.Xml.ReadContentAsBinaryHelper::isEnd
bool ___isEnd_3;
};
// 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.String> System.Xml.Schema.SchemaDeclBase::values
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___values_10;
};
// System.Xml.Schema.SchemaInfo
struct SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E : public RuntimeObject
{
// System.Collections.Generic.Dictionary`2<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaElementDecl> System.Xml.Schema.SchemaInfo::elementDecls
Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A* ___elementDecls_0;
// System.Collections.Generic.Dictionary`2<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaElementDecl> System.Xml.Schema.SchemaInfo::undeclaredElementDecls
Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A* ___undeclaredElementDecls_1;
// System.Collections.Generic.Dictionary`2<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaEntity> System.Xml.Schema.SchemaInfo::generalEntities
Dictionary_2_t129029582481E96143BD747690E92DB7E444261E* ___generalEntities_2;
// System.Collections.Generic.Dictionary`2<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaEntity> 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.String,System.Boolean> System.Xml.Schema.SchemaInfo::targetNamespaces
Dictionary_2_t17D0D125440AC627FCF80F189C6CBCB02856063C* ___targetNamespaces_8;
// System.Collections.Generic.Dictionary`2<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaAttDef> System.Xml.Schema.SchemaInfo::attributeDecls
Dictionary_2_tB85C1B2FFF985BA01AD2B7199C083B43C1476CC1* ___attributeDecls_9;
// System.Int32 System.Xml.Schema.SchemaInfo::errorCount
int32_t ___errorCount_10;
// System.Xml.Schema.SchemaType System.Xml.Schema.SchemaInfo::schemaType
int32_t ___schemaType_11;
// System.Collections.Generic.Dictionary`2<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaElementDecl> System.Xml.Schema.SchemaInfo::elementDeclsByType
Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A* ___elementDeclsByType_12;
// System.Collections.Generic.Dictionary`2<System.String,System.Xml.Schema.SchemaNotation> System.Xml.Schema.SchemaInfo::notations
Dictionary_2_t27DD7BC6C615A002762F178DF4446D10EF4486A1* ___notations_13;
};
// System.SystemException
struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
{
};
// 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;
};
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.Xml.Schema.ValidationEventArgs
struct ValidationEventArgs_t9857F51592E50B7D14912FFA79909878DC603830 : public EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377
{
// System.Xml.Schema.XmlSchemaException System.Xml.Schema.ValidationEventArgs::ex
XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B* ___ex_1;
// System.Xml.Schema.XmlSeverityType System.Xml.Schema.ValidationEventArgs::severity
int32_t ___severity_2;
};
// 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.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.Xml.Schema.ValidationEventHandler System.Xml.XmlReaderSettings::valEventHandler
ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* ___valEventHandler_16;
// System.Boolean System.Xml.XmlReaderSettings::closeInput
bool ___closeInput_17;
// System.Boolean System.Xml.XmlReaderSettings::isReadOnly
bool ___isReadOnly_18;
// System.Boolean System.Xml.XmlReaderSettings::<IsXmlResolverSet>k__BackingField
bool ___U3CIsXmlResolverSetU3Ek__BackingField_19;
};
struct XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_StaticFields
{
// System.Nullable`1<System.Boolean> System.Xml.XmlReaderSettings::s_enableLegacyXmlSettings
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 ___s_enableLegacyXmlSettings_20;
};
// System.Xml.XmlTextReaderImpl
struct XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B : public XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD
{
// System.Boolean System.Xml.XmlTextReaderImpl::useAsync
bool ___useAsync_3;
// System.Xml.XmlTextReaderImpl/LaterInitParam System.Xml.XmlTextReaderImpl::laterInitParam
LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* ___laterInitParam_4;
// System.Xml.XmlCharType System.Xml.XmlTextReaderImpl::xmlCharType
XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 ___xmlCharType_5;
// System.Xml.XmlTextReaderImpl/ParsingState System.Xml.XmlTextReaderImpl::ps
ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886 ___ps_6;
// System.Xml.XmlTextReaderImpl/ParsingFunction System.Xml.XmlTextReaderImpl::parsingFunction
int32_t ___parsingFunction_7;
// System.Xml.XmlTextReaderImpl/ParsingFunction System.Xml.XmlTextReaderImpl::nextParsingFunction
int32_t ___nextParsingFunction_8;
// System.Xml.XmlTextReaderImpl/ParsingFunction System.Xml.XmlTextReaderImpl::nextNextParsingFunction
int32_t ___nextNextParsingFunction_9;
// System.Xml.XmlTextReaderImpl/NodeData[] System.Xml.XmlTextReaderImpl::nodes
NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* ___nodes_10;
// System.Xml.XmlTextReaderImpl/NodeData System.Xml.XmlTextReaderImpl::curNode
NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* ___curNode_11;
// System.Int32 System.Xml.XmlTextReaderImpl::index
int32_t ___index_12;
// System.Int32 System.Xml.XmlTextReaderImpl::curAttrIndex
int32_t ___curAttrIndex_13;
// System.Int32 System.Xml.XmlTextReaderImpl::attrCount
int32_t ___attrCount_14;
// System.Int32 System.Xml.XmlTextReaderImpl::attrHashtable
int32_t ___attrHashtable_15;
// System.Int32 System.Xml.XmlTextReaderImpl::attrDuplWalkCount
int32_t ___attrDuplWalkCount_16;
// System.Boolean System.Xml.XmlTextReaderImpl::attrNeedNamespaceLookup
bool ___attrNeedNamespaceLookup_17;
// System.Boolean System.Xml.XmlTextReaderImpl::fullAttrCleanup
bool ___fullAttrCleanup_18;
// System.Xml.XmlTextReaderImpl/NodeData[] System.Xml.XmlTextReaderImpl::attrDuplSortingArray
NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610* ___attrDuplSortingArray_19;
// System.Xml.XmlNameTable System.Xml.XmlTextReaderImpl::nameTable
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nameTable_20;
// System.Boolean System.Xml.XmlTextReaderImpl::nameTableFromSettings
bool ___nameTableFromSettings_21;
// System.Xml.XmlResolver System.Xml.XmlTextReaderImpl::xmlResolver
XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___xmlResolver_22;
// System.String System.Xml.XmlTextReaderImpl::url
String_t* ___url_23;
// System.Boolean System.Xml.XmlTextReaderImpl::normalize
bool ___normalize_24;
// System.Boolean System.Xml.XmlTextReaderImpl::supportNamespaces
bool ___supportNamespaces_25;
// System.Xml.WhitespaceHandling System.Xml.XmlTextReaderImpl::whitespaceHandling
int32_t ___whitespaceHandling_26;
// System.Xml.DtdProcessing System.Xml.XmlTextReaderImpl::dtdProcessing
int32_t ___dtdProcessing_27;
// System.Xml.EntityHandling System.Xml.XmlTextReaderImpl::entityHandling
int32_t ___entityHandling_28;
// System.Boolean System.Xml.XmlTextReaderImpl::ignorePIs
bool ___ignorePIs_29;
// System.Boolean System.Xml.XmlTextReaderImpl::ignoreComments
bool ___ignoreComments_30;
// System.Boolean System.Xml.XmlTextReaderImpl::checkCharacters
bool ___checkCharacters_31;
// System.Int32 System.Xml.XmlTextReaderImpl::lineNumberOffset
int32_t ___lineNumberOffset_32;
// System.Int32 System.Xml.XmlTextReaderImpl::linePositionOffset
int32_t ___linePositionOffset_33;
// System.Boolean System.Xml.XmlTextReaderImpl::closeInput
bool ___closeInput_34;
// System.Int64 System.Xml.XmlTextReaderImpl::maxCharactersInDocument
int64_t ___maxCharactersInDocument_35;
// System.Int64 System.Xml.XmlTextReaderImpl::maxCharactersFromEntities
int64_t ___maxCharactersFromEntities_36;
// System.Boolean System.Xml.XmlTextReaderImpl::v1Compat
bool ___v1Compat_37;
// System.Xml.XmlNamespaceManager System.Xml.XmlTextReaderImpl::namespaceManager
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* ___namespaceManager_38;
// System.String System.Xml.XmlTextReaderImpl::lastPrefix
String_t* ___lastPrefix_39;
// System.Xml.XmlTextReaderImpl/XmlContext System.Xml.XmlTextReaderImpl::xmlContext
XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* ___xmlContext_40;
// System.Xml.XmlTextReaderImpl/ParsingState[] System.Xml.XmlTextReaderImpl::parsingStatesStack
ParsingStateU5BU5D_t6DBF0A43B3A9658C0218546F90EC15DCF17F3E29* ___parsingStatesStack_41;
// System.Int32 System.Xml.XmlTextReaderImpl::parsingStatesStackTop
int32_t ___parsingStatesStackTop_42;
// System.String System.Xml.XmlTextReaderImpl::reportedBaseUri
String_t* ___reportedBaseUri_43;
// System.Text.Encoding System.Xml.XmlTextReaderImpl::reportedEncoding
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___reportedEncoding_44;
// System.Xml.IDtdInfo System.Xml.XmlTextReaderImpl::dtdInfo
RuntimeObject* ___dtdInfo_45;
// System.Xml.XmlNodeType System.Xml.XmlTextReaderImpl::fragmentType
int32_t ___fragmentType_46;
// System.Xml.XmlParserContext System.Xml.XmlTextReaderImpl::fragmentParserContext
XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* ___fragmentParserContext_47;
// System.Boolean System.Xml.XmlTextReaderImpl::fragment
bool ___fragment_48;
// System.Xml.IncrementalReadDecoder System.Xml.XmlTextReaderImpl::incReadDecoder
IncrementalReadDecoder_t55EB8A2FB2A5FFCB1B68AE7F784C4E00DCE1E55B* ___incReadDecoder_49;
// System.Xml.XmlTextReaderImpl/IncrementalReadState System.Xml.XmlTextReaderImpl::incReadState
int32_t ___incReadState_50;
// System.Xml.LineInfo System.Xml.XmlTextReaderImpl::incReadLineInfo
LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 ___incReadLineInfo_51;
// System.Int32 System.Xml.XmlTextReaderImpl::incReadDepth
int32_t ___incReadDepth_52;
// System.Int32 System.Xml.XmlTextReaderImpl::incReadLeftStartPos
int32_t ___incReadLeftStartPos_53;
// System.Int32 System.Xml.XmlTextReaderImpl::incReadLeftEndPos
int32_t ___incReadLeftEndPos_54;
// System.Int32 System.Xml.XmlTextReaderImpl::attributeValueBaseEntityId
int32_t ___attributeValueBaseEntityId_55;
// System.Boolean System.Xml.XmlTextReaderImpl::emptyEntityInAttributeResolved
bool ___emptyEntityInAttributeResolved_56;
// System.Xml.IValidationEventHandling System.Xml.XmlTextReaderImpl::validationEventHandling
RuntimeObject* ___validationEventHandling_57;
// System.Xml.XmlTextReaderImpl/OnDefaultAttributeUseDelegate System.Xml.XmlTextReaderImpl::onDefaultAttributeUse
OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499* ___onDefaultAttributeUse_58;
// System.Boolean System.Xml.XmlTextReaderImpl::validatingReaderCompatFlag
bool ___validatingReaderCompatFlag_59;
// System.Boolean System.Xml.XmlTextReaderImpl::addDefaultAttributesAndNormalize
bool ___addDefaultAttributesAndNormalize_60;
// System.Text.StringBuilder System.Xml.XmlTextReaderImpl::stringBuilder
StringBuilder_t* ___stringBuilder_61;
// System.Boolean System.Xml.XmlTextReaderImpl::rootElementParsed
bool ___rootElementParsed_62;
// System.Boolean System.Xml.XmlTextReaderImpl::standalone
bool ___standalone_63;
// System.Int32 System.Xml.XmlTextReaderImpl::nextEntityId
int32_t ___nextEntityId_64;
// System.Xml.XmlTextReaderImpl/ParsingMode System.Xml.XmlTextReaderImpl::parsingMode
int32_t ___parsingMode_65;
// System.Xml.ReadState System.Xml.XmlTextReaderImpl::readState
int32_t ___readState_66;
// System.Xml.IDtdEntityInfo System.Xml.XmlTextReaderImpl::lastEntity
RuntimeObject* ___lastEntity_67;
// System.Boolean System.Xml.XmlTextReaderImpl::afterResetState
bool ___afterResetState_68;
// System.Int32 System.Xml.XmlTextReaderImpl::documentStartBytePos
int32_t ___documentStartBytePos_69;
// System.Int32 System.Xml.XmlTextReaderImpl::readValueOffset
int32_t ___readValueOffset_70;
// System.Int64 System.Xml.XmlTextReaderImpl::charactersInDocument
int64_t ___charactersInDocument_71;
// System.Int64 System.Xml.XmlTextReaderImpl::charactersFromEntities
int64_t ___charactersFromEntities_72;
// System.Collections.Generic.Dictionary`2<System.Xml.IDtdEntityInfo,System.Xml.IDtdEntityInfo> System.Xml.XmlTextReaderImpl::currentEntities
Dictionary_2_tEBCC19EF04541DFE092A495F8C364BF917DA466D* ___currentEntities_73;
// System.Boolean System.Xml.XmlTextReaderImpl::disableUndeclaredEntityCheck
bool ___disableUndeclaredEntityCheck_74;
// System.Xml.XmlReader System.Xml.XmlTextReaderImpl::outerReader
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___outerReader_75;
// System.Boolean System.Xml.XmlTextReaderImpl::xmlResolverIsSet
bool ___xmlResolverIsSet_76;
// System.String System.Xml.XmlTextReaderImpl::Xml
String_t* ___Xml_77;
// System.String System.Xml.XmlTextReaderImpl::XmlNs
String_t* ___XmlNs_78;
// System.Threading.Tasks.Task`1<System.Tuple`4<System.Int32,System.Int32,System.Int32,System.Boolean>> System.Xml.XmlTextReaderImpl::parseText_dummyTask
Task_1_tB493F74D58DB1761E087206849D953E99D07600B* ___parseText_dummyTask_79;
};
// System.Xml.XmlTextWriter
struct XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B : public XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F
{
// System.IO.TextWriter System.Xml.XmlTextWriter::textWriter
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___textWriter_1;
// System.Xml.XmlTextEncoder System.Xml.XmlTextWriter::xmlEncoder
XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* ___xmlEncoder_2;
// System.Text.Encoding System.Xml.XmlTextWriter::encoding
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___encoding_3;
// System.Xml.Formatting System.Xml.XmlTextWriter::formatting
int32_t ___formatting_4;
// System.Boolean System.Xml.XmlTextWriter::indented
bool ___indented_5;
// System.Int32 System.Xml.XmlTextWriter::indentation
int32_t ___indentation_6;
// System.Char System.Xml.XmlTextWriter::indentChar
Il2CppChar ___indentChar_7;
// System.Xml.XmlTextWriter/TagInfo[] System.Xml.XmlTextWriter::stack
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* ___stack_8;
// System.Int32 System.Xml.XmlTextWriter::top
int32_t ___top_9;
// System.Xml.XmlTextWriter/State[] System.Xml.XmlTextWriter::stateTable
StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858* ___stateTable_10;
// System.Xml.XmlTextWriter/State System.Xml.XmlTextWriter::currentState
int32_t ___currentState_11;
// System.Xml.XmlTextWriter/Token System.Xml.XmlTextWriter::lastToken
int32_t ___lastToken_12;
// System.Xml.XmlTextWriterBase64Encoder System.Xml.XmlTextWriter::base64Encoder
XmlTextWriterBase64Encoder_tC7209F119916DF622459E830377C23D7BFA2B30D* ___base64Encoder_13;
// System.Char System.Xml.XmlTextWriter::quoteChar
Il2CppChar ___quoteChar_14;
// System.Char System.Xml.XmlTextWriter::curQuoteChar
Il2CppChar ___curQuoteChar_15;
// System.Boolean System.Xml.XmlTextWriter::namespaces
bool ___namespaces_16;
// System.Xml.XmlTextWriter/SpecialAttr System.Xml.XmlTextWriter::specialAttr
int32_t ___specialAttr_17;
// System.String System.Xml.XmlTextWriter::prefixForXmlNs
String_t* ___prefixForXmlNs_18;
// System.Boolean System.Xml.XmlTextWriter::flush
bool ___flush_19;
// System.Xml.XmlTextWriter/Namespace[] System.Xml.XmlTextWriter::nsStack
NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93* ___nsStack_20;
// System.Int32 System.Xml.XmlTextWriter::nsTop
int32_t ___nsTop_21;
// System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Xml.XmlTextWriter::nsHashtable
Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* ___nsHashtable_22;
// System.Boolean System.Xml.XmlTextWriter::useNsHashtable
bool ___useNsHashtable_23;
// System.Xml.XmlCharType System.Xml.XmlTextWriter::xmlCharType
XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 ___xmlCharType_24;
};
struct XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_StaticFields
{
// System.String[] System.Xml.XmlTextWriter::stateName
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___stateName_25;
// System.String[] System.Xml.XmlTextWriter::tokenName
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___tokenName_26;
// System.Xml.XmlTextWriter/State[] System.Xml.XmlTextWriter::stateTableDefault
StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858* ___stateTableDefault_27;
// System.Xml.XmlTextWriter/State[] System.Xml.XmlTextWriter::stateTableDocument
StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858* ___stateTableDocument_28;
};
// System.Xml.XmlUtf8RawTextWriter
struct XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB : public XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B
{
// System.Boolean System.Xml.XmlUtf8RawTextWriter::useAsync
bool ___useAsync_3;
// System.Byte[] System.Xml.XmlUtf8RawTextWriter::bufBytes
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___bufBytes_4;
// System.IO.Stream System.Xml.XmlUtf8RawTextWriter::stream
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream_5;
// System.Text.Encoding System.Xml.XmlUtf8RawTextWriter::encoding
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___encoding_6;
// System.Xml.XmlCharType System.Xml.XmlUtf8RawTextWriter::xmlCharType
XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 ___xmlCharType_7;
// System.Int32 System.Xml.XmlUtf8RawTextWriter::bufPos
int32_t ___bufPos_8;
// System.Int32 System.Xml.XmlUtf8RawTextWriter::textPos
int32_t ___textPos_9;
// System.Int32 System.Xml.XmlUtf8RawTextWriter::contentPos
int32_t ___contentPos_10;
// System.Int32 System.Xml.XmlUtf8RawTextWriter::cdataPos
int32_t ___cdataPos_11;
// System.Int32 System.Xml.XmlUtf8RawTextWriter::attrEndPos
int32_t ___attrEndPos_12;
// System.Int32 System.Xml.XmlUtf8RawTextWriter::bufLen
int32_t ___bufLen_13;
// System.Boolean System.Xml.XmlUtf8RawTextWriter::writeToNull
bool ___writeToNull_14;
// System.Boolean System.Xml.XmlUtf8RawTextWriter::hadDoubleBracket
bool ___hadDoubleBracket_15;
// System.Boolean System.Xml.XmlUtf8RawTextWriter::inAttributeValue
bool ___inAttributeValue_16;
// System.Xml.NewLineHandling System.Xml.XmlUtf8RawTextWriter::newLineHandling
int32_t ___newLineHandling_17;
// System.Boolean System.Xml.XmlUtf8RawTextWriter::closeOutput
bool ___closeOutput_18;
// System.Boolean System.Xml.XmlUtf8RawTextWriter::omitXmlDeclaration
bool ___omitXmlDeclaration_19;
// System.String System.Xml.XmlUtf8RawTextWriter::newLineChars
String_t* ___newLineChars_20;
// System.Boolean System.Xml.XmlUtf8RawTextWriter::checkCharacters
bool ___checkCharacters_21;
// System.Xml.XmlStandalone System.Xml.XmlUtf8RawTextWriter::standalone
int32_t ___standalone_22;
// System.Xml.XmlOutputMethod System.Xml.XmlUtf8RawTextWriter::outputMethod
int32_t ___outputMethod_23;
// System.Boolean System.Xml.XmlUtf8RawTextWriter::autoXmlDeclaration
bool ___autoXmlDeclaration_24;
// System.Boolean System.Xml.XmlUtf8RawTextWriter::mergeCDataSections
bool ___mergeCDataSections_25;
};
// System.Xml.XmlValidatingReaderImpl
struct XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8 : public XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD
{
// System.Xml.XmlReader System.Xml.XmlValidatingReaderImpl::coreReader
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___coreReader_3;
// System.Xml.XmlTextReaderImpl System.Xml.XmlValidatingReaderImpl::coreReaderImpl
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___coreReaderImpl_4;
// System.Xml.IXmlNamespaceResolver System.Xml.XmlValidatingReaderImpl::coreReaderNSResolver
RuntimeObject* ___coreReaderNSResolver_5;
// System.Xml.ValidationType System.Xml.XmlValidatingReaderImpl::validationType
int32_t ___validationType_6;
// System.Xml.Schema.BaseValidator System.Xml.XmlValidatingReaderImpl::validator
BaseValidator_t76E42AEBD013AC709BA36D782908C7B708BA8DAB* ___validator_7;
// System.Xml.Schema.XmlSchemaCollection System.Xml.XmlValidatingReaderImpl::schemaCollection
XmlSchemaCollection_t795483FF9909CCC596ADA560E1C1654E66CAEAAD* ___schemaCollection_8;
// System.Boolean System.Xml.XmlValidatingReaderImpl::processIdentityConstraints
bool ___processIdentityConstraints_9;
// System.Xml.XmlValidatingReaderImpl/ParsingFunction System.Xml.XmlValidatingReaderImpl::parsingFunction
int32_t ___parsingFunction_10;
// System.Xml.XmlValidatingReaderImpl/ValidationEventHandling System.Xml.XmlValidatingReaderImpl::eventHandling
ValidationEventHandling_tE915576B71BADFBAC73B6C8CA5A99C0C5086E4C9* ___eventHandling_11;
// System.Xml.XmlParserContext System.Xml.XmlValidatingReaderImpl::parserContext
XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* ___parserContext_12;
// System.Xml.ReadContentAsBinaryHelper System.Xml.XmlValidatingReaderImpl::readBinaryHelper
ReadContentAsBinaryHelper_t94D48E6891DEAC8DFE5DEA1B820091D277880897* ___readBinaryHelper_13;
// System.Xml.XmlReader System.Xml.XmlValidatingReaderImpl::outerReader
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___outerReader_14;
};
struct XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8_StaticFields
{
// System.Xml.XmlResolver System.Xml.XmlValidatingReaderImpl::s_tempResolver
XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___s_tempResolver_15;
};
// System.Xml.XmlWellFormedWriter
struct XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645 : public XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F
{
// System.Xml.XmlWriter System.Xml.XmlWellFormedWriter::writer
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___writer_1;
// System.Xml.XmlRawWriter System.Xml.XmlWellFormedWriter::rawWriter
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* ___rawWriter_2;
// System.Xml.IXmlNamespaceResolver System.Xml.XmlWellFormedWriter::predefinedNamespaces
RuntimeObject* ___predefinedNamespaces_3;
// System.Xml.XmlWellFormedWriter/Namespace[] System.Xml.XmlWellFormedWriter::nsStack
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* ___nsStack_4;
// System.Int32 System.Xml.XmlWellFormedWriter::nsTop
int32_t ___nsTop_5;
// System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Xml.XmlWellFormedWriter::nsHashtable
Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* ___nsHashtable_6;
// System.Boolean System.Xml.XmlWellFormedWriter::useNsHashtable
bool ___useNsHashtable_7;
// System.Xml.XmlWellFormedWriter/ElementScope[] System.Xml.XmlWellFormedWriter::elemScopeStack
ElementScopeU5BU5D_t68B3D6D2E3C34832F1D1BBDB096CCF5270D5DBD9* ___elemScopeStack_8;
// System.Int32 System.Xml.XmlWellFormedWriter::elemTop
int32_t ___elemTop_9;
// System.Xml.XmlWellFormedWriter/AttrName[] System.Xml.XmlWellFormedWriter::attrStack
AttrNameU5BU5D_t501369F3E8EBC0B2B32AF603424921032B14A983* ___attrStack_10;
// System.Int32 System.Xml.XmlWellFormedWriter::attrCount
int32_t ___attrCount_11;
// System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Xml.XmlWellFormedWriter::attrHashTable
Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* ___attrHashTable_12;
// System.Xml.XmlWellFormedWriter/SpecialAttribute System.Xml.XmlWellFormedWriter::specAttr
int32_t ___specAttr_13;
// System.Xml.XmlWellFormedWriter/AttributeValueCache System.Xml.XmlWellFormedWriter::attrValueCache
AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* ___attrValueCache_14;
// System.String System.Xml.XmlWellFormedWriter::curDeclPrefix
String_t* ___curDeclPrefix_15;
// System.Xml.XmlWellFormedWriter/State[] System.Xml.XmlWellFormedWriter::stateTable
StateU5BU5D_t9E4189FBE1E6EF2CD6F60C94EE572FA8E522A375* ___stateTable_16;
// System.Xml.XmlWellFormedWriter/State System.Xml.XmlWellFormedWriter::currentState
int32_t ___currentState_17;
// System.Boolean System.Xml.XmlWellFormedWriter::checkCharacters
bool ___checkCharacters_18;
// System.Boolean System.Xml.XmlWellFormedWriter::omitDuplNamespaces
bool ___omitDuplNamespaces_19;
// System.Boolean System.Xml.XmlWellFormedWriter::writeEndDocumentOnClose
bool ___writeEndDocumentOnClose_20;
// System.Xml.ConformanceLevel System.Xml.XmlWellFormedWriter::conformanceLevel
int32_t ___conformanceLevel_21;
// System.Boolean System.Xml.XmlWellFormedWriter::dtdWritten
bool ___dtdWritten_22;
// System.Boolean System.Xml.XmlWellFormedWriter::xmlDeclFollows
bool ___xmlDeclFollows_23;
// System.Xml.XmlCharType System.Xml.XmlWellFormedWriter::xmlCharType
XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 ___xmlCharType_24;
// System.Xml.SecureStringHasher System.Xml.XmlWellFormedWriter::hasher
SecureStringHasher_t4052E73C966E6FE65426B19F4AF48AB9869F614E* ___hasher_25;
};
struct XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_StaticFields
{
// System.String[] System.Xml.XmlWellFormedWriter::stateName
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___stateName_26;
// System.String[] System.Xml.XmlWellFormedWriter::tokenName
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___tokenName_27;
// System.Xml.WriteState[] System.Xml.XmlWellFormedWriter::state2WriteState
WriteStateU5BU5D_t2541ACA07B6DAA172C2D36B58A47A83DAC4375DF* ___state2WriteState_28;
// System.Xml.XmlWellFormedWriter/State[] System.Xml.XmlWellFormedWriter::StateTableDocument
StateU5BU5D_t9E4189FBE1E6EF2CD6F60C94EE572FA8E522A375* ___StateTableDocument_29;
// System.Xml.XmlWellFormedWriter/State[] System.Xml.XmlWellFormedWriter::StateTableAuto
StateU5BU5D_t9E4189FBE1E6EF2CD6F60C94EE572FA8E522A375* ___StateTableAuto_30;
};
// System.Xml.XmlWriterSettings
struct XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674 : public RuntimeObject
{
// System.Boolean System.Xml.XmlWriterSettings::useAsync
bool ___useAsync_0;
// System.Text.Encoding System.Xml.XmlWriterSettings::encoding
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___encoding_1;
// System.Boolean System.Xml.XmlWriterSettings::omitXmlDecl
bool ___omitXmlDecl_2;
// System.Xml.NewLineHandling System.Xml.XmlWriterSettings::newLineHandling
int32_t ___newLineHandling_3;
// System.String System.Xml.XmlWriterSettings::newLineChars
String_t* ___newLineChars_4;
// System.Xml.TriState System.Xml.XmlWriterSettings::indent
int32_t ___indent_5;
// System.String System.Xml.XmlWriterSettings::indentChars
String_t* ___indentChars_6;
// System.Boolean System.Xml.XmlWriterSettings::newLineOnAttributes
bool ___newLineOnAttributes_7;
// System.Boolean System.Xml.XmlWriterSettings::closeOutput
bool ___closeOutput_8;
// System.Xml.NamespaceHandling System.Xml.XmlWriterSettings::namespaceHandling
int32_t ___namespaceHandling_9;
// System.Xml.ConformanceLevel System.Xml.XmlWriterSettings::conformanceLevel
int32_t ___conformanceLevel_10;
// System.Boolean System.Xml.XmlWriterSettings::checkCharacters
bool ___checkCharacters_11;
// System.Boolean System.Xml.XmlWriterSettings::writeEndDocumentOnClose
bool ___writeEndDocumentOnClose_12;
// System.Xml.XmlOutputMethod System.Xml.XmlWriterSettings::outputMethod
int32_t ___outputMethod_13;
// System.Collections.Generic.List`1<System.Xml.XmlQualifiedName> System.Xml.XmlWriterSettings::cdataSections
List_1_t43EC7C138A17FAAD7120408F039923082A70301A* ___cdataSections_14;
// System.Boolean System.Xml.XmlWriterSettings::doNotEscapeUriAttributes
bool ___doNotEscapeUriAttributes_15;
// System.Boolean System.Xml.XmlWriterSettings::mergeCDataSections
bool ___mergeCDataSections_16;
// System.String System.Xml.XmlWriterSettings::mediaType
String_t* ___mediaType_17;
// System.String System.Xml.XmlWriterSettings::docTypeSystem
String_t* ___docTypeSystem_18;
// System.String System.Xml.XmlWriterSettings::docTypePublic
String_t* ___docTypePublic_19;
// System.Xml.XmlStandalone System.Xml.XmlWriterSettings::standalone
int32_t ___standalone_20;
// System.Boolean System.Xml.XmlWriterSettings::autoXmlDecl
bool ___autoXmlDecl_21;
// System.Boolean System.Xml.XmlWriterSettings::isReadOnly
bool ___isReadOnly_22;
};
// 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/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;
};
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/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.XmlTextWriter/TagInfo
struct TagInfo_tDECE4D67D7F52936C9E8F58DE38BE11733108F5C
{
// System.String System.Xml.XmlTextWriter/TagInfo::name
String_t* ___name_0;
// System.String System.Xml.XmlTextWriter/TagInfo::prefix
String_t* ___prefix_1;
// System.String System.Xml.XmlTextWriter/TagInfo::defaultNs
String_t* ___defaultNs_2;
// System.Xml.XmlTextWriter/NamespaceState System.Xml.XmlTextWriter/TagInfo::defaultNsState
int32_t ___defaultNsState_3;
// System.Xml.XmlSpace System.Xml.XmlTextWriter/TagInfo::xmlSpace
int32_t ___xmlSpace_4;
// System.String System.Xml.XmlTextWriter/TagInfo::xmlLang
String_t* ___xmlLang_5;
// System.Int32 System.Xml.XmlTextWriter/TagInfo::prevNsTop
int32_t ___prevNsTop_6;
// System.Int32 System.Xml.XmlTextWriter/TagInfo::prefixCount
int32_t ___prefixCount_7;
// System.Boolean System.Xml.XmlTextWriter/TagInfo::mixed
bool ___mixed_8;
};
// Native definition for P/Invoke marshalling of System.Xml.XmlTextWriter/TagInfo
struct TagInfo_tDECE4D67D7F52936C9E8F58DE38BE11733108F5C_marshaled_pinvoke
{
char* ___name_0;
char* ___prefix_1;
char* ___defaultNs_2;
int32_t ___defaultNsState_3;
int32_t ___xmlSpace_4;
char* ___xmlLang_5;
int32_t ___prevNsTop_6;
int32_t ___prefixCount_7;
int32_t ___mixed_8;
};
// Native definition for COM marshalling of System.Xml.XmlTextWriter/TagInfo
struct TagInfo_tDECE4D67D7F52936C9E8F58DE38BE11733108F5C_marshaled_com
{
Il2CppChar* ___name_0;
Il2CppChar* ___prefix_1;
Il2CppChar* ___defaultNs_2;
int32_t ___defaultNsState_3;
int32_t ___xmlSpace_4;
Il2CppChar* ___xmlLang_5;
int32_t ___prevNsTop_6;
int32_t ___prefixCount_7;
int32_t ___mixed_8;
};
// System.Xml.XmlWellFormedWriter/ElementScope
struct ElementScope_t7BA86196EE58918EA5CA952D37FE3C7B19A33592
{
// System.Int32 System.Xml.XmlWellFormedWriter/ElementScope::prevNSTop
int32_t ___prevNSTop_0;
// System.String System.Xml.XmlWellFormedWriter/ElementScope::prefix
String_t* ___prefix_1;
// System.String System.Xml.XmlWellFormedWriter/ElementScope::localName
String_t* ___localName_2;
// System.String System.Xml.XmlWellFormedWriter/ElementScope::namespaceUri
String_t* ___namespaceUri_3;
// System.Xml.XmlSpace System.Xml.XmlWellFormedWriter/ElementScope::xmlSpace
int32_t ___xmlSpace_4;
// System.String System.Xml.XmlWellFormedWriter/ElementScope::xmlLang
String_t* ___xmlLang_5;
};
// Native definition for P/Invoke marshalling of System.Xml.XmlWellFormedWriter/ElementScope
struct ElementScope_t7BA86196EE58918EA5CA952D37FE3C7B19A33592_marshaled_pinvoke
{
int32_t ___prevNSTop_0;
char* ___prefix_1;
char* ___localName_2;
char* ___namespaceUri_3;
int32_t ___xmlSpace_4;
char* ___xmlLang_5;
};
// Native definition for COM marshalling of System.Xml.XmlWellFormedWriter/ElementScope
struct ElementScope_t7BA86196EE58918EA5CA952D37FE3C7B19A33592_marshaled_com
{
int32_t ___prevNSTop_0;
Il2CppChar* ___prefix_1;
Il2CppChar* ___localName_2;
Il2CppChar* ___namespaceUri_3;
int32_t ___xmlSpace_4;
Il2CppChar* ___xmlLang_5;
};
// System.Xml.XmlWellFormedWriter/Namespace
struct Namespace_tC7546D20184E40E3566060C1246B764E4DBA55A0
{
// System.String System.Xml.XmlWellFormedWriter/Namespace::prefix
String_t* ___prefix_0;
// System.String System.Xml.XmlWellFormedWriter/Namespace::namespaceUri
String_t* ___namespaceUri_1;
// System.Xml.XmlWellFormedWriter/NamespaceKind System.Xml.XmlWellFormedWriter/Namespace::kind
int32_t ___kind_2;
// System.Int32 System.Xml.XmlWellFormedWriter/Namespace::prevNsIndex
int32_t ___prevNsIndex_3;
};
// Native definition for P/Invoke marshalling of System.Xml.XmlWellFormedWriter/Namespace
struct Namespace_tC7546D20184E40E3566060C1246B764E4DBA55A0_marshaled_pinvoke
{
char* ___prefix_0;
char* ___namespaceUri_1;
int32_t ___kind_2;
int32_t ___prevNsIndex_3;
};
// Native definition for COM marshalling of System.Xml.XmlWellFormedWriter/Namespace
struct Namespace_tC7546D20184E40E3566060C1246B764E4DBA55A0_marshaled_com
{
Il2CppChar* ___prefix_0;
Il2CppChar* ___namespaceUri_1;
int32_t ___kind_2;
int32_t ___prevNsIndex_3;
};
// System.ArgumentException
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
// System.String System.ArgumentException::_paramName
String_t* ____paramName_18;
};
// System.InvalidOperationException
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// 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.Boolean System.Xml.Schema.SchemaAttDef::defaultValueChecked
bool ___defaultValueChecked_17;
// System.Xml.Schema.XmlSchemaAttribute System.Xml.Schema.SchemaAttDef::schemaAttribute
XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F* ___schemaAttribute_18;
};
struct SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553_StaticFields
{
// System.Xml.Schema.SchemaAttDef System.Xml.Schema.SchemaAttDef::Empty
SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* ___Empty_19;
};
// System.Xml.Schema.ValidationEventHandler
struct ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A : public MulticastDelegate_t
{
};
// 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.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.XmlUtf8RawTextWriterIndent
struct XmlUtf8RawTextWriterIndent_tEA3E110A4E275753FE5CC8F5FF17AA132DC66B41 : public XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB
{
// System.Int32 System.Xml.XmlUtf8RawTextWriterIndent::indentLevel
int32_t ___indentLevel_26;
// System.Boolean System.Xml.XmlUtf8RawTextWriterIndent::newLineOnAttributes
bool ___newLineOnAttributes_27;
// System.String System.Xml.XmlUtf8RawTextWriterIndent::indentChars
String_t* ___indentChars_28;
// System.Boolean System.Xml.XmlUtf8RawTextWriterIndent::mixedContent
bool ___mixedContent_29;
// System.Xml.BitStack System.Xml.XmlUtf8RawTextWriterIndent::mixedContentStack
BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C* ___mixedContentStack_30;
// System.Xml.ConformanceLevel System.Xml.XmlUtf8RawTextWriterIndent::conformanceLevel
int32_t ___conformanceLevel_31;
};
// 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;
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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.XmlTextWriter/Namespace[]
struct NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93 : public RuntimeArray
{
ALIGN_FIELD (8) Namespace_t98C96E77A64CE0105E85EEF2416A270C2AFA6853 m_Items[1];
inline Namespace_t98C96E77A64CE0105E85EEF2416A270C2AFA6853 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Namespace_t98C96E77A64CE0105E85EEF2416A270C2AFA6853* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Namespace_t98C96E77A64CE0105E85EEF2416A270C2AFA6853 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___prefix_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___ns_1), (void*)NULL);
#endif
}
inline Namespace_t98C96E77A64CE0105E85EEF2416A270C2AFA6853 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Namespace_t98C96E77A64CE0105E85EEF2416A270C2AFA6853* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Namespace_t98C96E77A64CE0105E85EEF2416A270C2AFA6853 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___prefix_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___ns_1), (void*)NULL);
#endif
}
};
// System.Xml.XmlTextWriter/TagInfo[]
struct TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776 : public RuntimeArray
{
ALIGN_FIELD (8) TagInfo_tDECE4D67D7F52936C9E8F58DE38BE11733108F5C m_Items[1];
inline TagInfo_tDECE4D67D7F52936C9E8F58DE38BE11733108F5C GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline TagInfo_tDECE4D67D7F52936C9E8F58DE38BE11733108F5C* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, TagInfo_tDECE4D67D7F52936C9E8F58DE38BE11733108F5C value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___name_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___prefix_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___defaultNs_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___xmlLang_5), (void*)NULL);
#endif
}
inline TagInfo_tDECE4D67D7F52936C9E8F58DE38BE11733108F5C GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline TagInfo_tDECE4D67D7F52936C9E8F58DE38BE11733108F5C* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, TagInfo_tDECE4D67D7F52936C9E8F58DE38BE11733108F5C value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___name_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___prefix_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___defaultNs_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___xmlLang_5), (void*)NULL);
#endif
}
};
// System.Xml.XmlTextWriter/State[]
struct StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858 : 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.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.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.XmlWellFormedWriter/State[]
struct StateU5BU5D_t9E4189FBE1E6EF2CD6F60C94EE572FA8E522A375 : 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.Xml.XmlWellFormedWriter/Namespace[]
struct NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7 : public RuntimeArray
{
ALIGN_FIELD (8) Namespace_tC7546D20184E40E3566060C1246B764E4DBA55A0 m_Items[1];
inline Namespace_tC7546D20184E40E3566060C1246B764E4DBA55A0 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Namespace_tC7546D20184E40E3566060C1246B764E4DBA55A0* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Namespace_tC7546D20184E40E3566060C1246B764E4DBA55A0 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___prefix_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___namespaceUri_1), (void*)NULL);
#endif
}
inline Namespace_tC7546D20184E40E3566060C1246B764E4DBA55A0 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Namespace_tC7546D20184E40E3566060C1246B764E4DBA55A0* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Namespace_tC7546D20184E40E3566060C1246B764E4DBA55A0 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___prefix_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___namespaceUri_1), (void*)NULL);
#endif
}
};
// System.Xml.XmlWellFormedWriter/ElementScope[]
struct ElementScopeU5BU5D_t68B3D6D2E3C34832F1D1BBDB096CCF5270D5DBD9 : public RuntimeArray
{
ALIGN_FIELD (8) ElementScope_t7BA86196EE58918EA5CA952D37FE3C7B19A33592 m_Items[1];
inline ElementScope_t7BA86196EE58918EA5CA952D37FE3C7B19A33592 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ElementScope_t7BA86196EE58918EA5CA952D37FE3C7B19A33592* 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, ElementScope_t7BA86196EE58918EA5CA952D37FE3C7B19A33592 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___prefix_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___localName_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___namespaceUri_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___xmlLang_5), (void*)NULL);
#endif
}
inline ElementScope_t7BA86196EE58918EA5CA952D37FE3C7B19A33592 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ElementScope_t7BA86196EE58918EA5CA952D37FE3C7B19A33592* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ElementScope_t7BA86196EE58918EA5CA952D37FE3C7B19A33592 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___prefix_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___localName_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___namespaceUri_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___xmlLang_5), (void*)NULL);
#endif
}
};
// System.Xml.XmlWellFormedWriter/AttrName[]
struct AttrNameU5BU5D_t501369F3E8EBC0B2B32AF603424921032B14A983 : public RuntimeArray
{
ALIGN_FIELD (8) AttrName_t0B37BBC030EEC83B4B00DFCDD9C1DB43A31675F2 m_Items[1];
inline AttrName_t0B37BBC030EEC83B4B00DFCDD9C1DB43A31675F2 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline AttrName_t0B37BBC030EEC83B4B00DFCDD9C1DB43A31675F2* 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, AttrName_t0B37BBC030EEC83B4B00DFCDD9C1DB43A31675F2 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___prefix_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___namespaceUri_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___localName_2), (void*)NULL);
#endif
}
inline AttrName_t0B37BBC030EEC83B4B00DFCDD9C1DB43A31675F2 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline AttrName_t0B37BBC030EEC83B4B00DFCDD9C1DB43A31675F2* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, AttrName_t0B37BBC030EEC83B4B00DFCDD9C1DB43A31675F2 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___prefix_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___namespaceUri_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___localName_2), (void*)NULL);
#endif
}
};
// System.Xml.WriteState[]
struct WriteStateU5BU5D_t2541ACA07B6DAA172C2D36B58A47A83DAC4375DF : 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.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m89AC42CD88BC0ED965D36B7028EF3DE23D290E1D_gshared (Dictionary_2_t5C96F4B6841710A9013966F76224BAE01FB4B4D1* __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::TryGetValue(TKey,TValue&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m4B8EE45640C70BBFD6F3EFF1040983404C098342_gshared (Dictionary_2_t5C96F4B6841710A9013966F76224BAE01FB4B4D1* __this, RuntimeObject* ___key0, int32_t* ___value1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::set_Item(TKey,TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m72CC2F1213D1C1B8ABEDE31082D07B67EC873B13_gshared (Dictionary_2_t5C96F4B6841710A9013966F76224BAE01FB4B4D1* __this, RuntimeObject* ___key0, int32_t ___value1, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::Remove(TKey)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_mFDB1C734B470EB31B094053D97F7749210922576_gshared (Dictionary_2_t5C96F4B6841710A9013966F76224BAE01FB4B4D1* __this, RuntimeObject* ___key0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Clear_m931E25EF2557C3A386E4B9DC8D8212B7D9D3F5AE_gshared (Dictionary_2_t5C96F4B6841710A9013966F76224BAE01FB4B4D1* __this, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Dictionary_2_get_Count_mEE80B960C3B902E5FB4D2458CEB323B68A954926_gshared (Dictionary_2_t5C96F4B6841710A9013966F76224BAE01FB4B4D1* __this, 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.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 ___closeInput0, 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 ___value0, 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 ___pos0, 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* ___internalSubsetBuilder0, const RuntimeMethod* method) ;
// System.Int32 System.Xml.XmlTextReaderImpl::DtdParserProxy_ParseNamedCharRef(System.Boolean,System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_DtdParserProxy_ParseNamedCharRef_m0AFB5F8D6C79FBE3505A7034821BC238C17C8017 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, bool ___expand0, StringBuilder_t* ___internalSubsetBuilder1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextReaderImpl::DtdParserProxy_ParsePI(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_DtdParserProxy_ParsePI_mA3AA8585594D5B9DD9AA34185F5B812ABF112DA6 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextReaderImpl::DtdParserProxy_ParseComment(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_DtdParserProxy_ParseComment_mC220CD16264F0F8C4F26103E91CB932FC16A6539 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlTextReaderImpl::DtdParserProxy_PushEntity(System.Xml.IDtdEntityInfo,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_DtdParserProxy_PushEntity_mF7D0B660B83C4A38D3E595C899D5957FE25C1ABD (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, RuntimeObject* ___entity0, int32_t* ___entityId1, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlTextReaderImpl::DtdParserProxy_PopEntity(System.Xml.IDtdEntityInfo&,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_DtdParserProxy_PopEntity_m0D03A5FA761537C5B673C7D083C63F5F3C525E4B (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, RuntimeObject** ___oldEntity0, int32_t* ___newEntityId1, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlTextReaderImpl::DtdParserProxy_PushExternalSubset(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_DtdParserProxy_PushExternalSubset_mBAF82FF6D19641134F1453DA17C20E9A33D74ED3 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___systemId0, String_t* ___publicId1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextReaderImpl::DtdParserProxy_PushInternalDtd(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_DtdParserProxy_PushInternalDtd_mAF1BEB6EA4615537D9D43878CD26250AEE7D5A04 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___baseUri0, String_t* ___internalDtd1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextReaderImpl::DtdParserProxy_Throw(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_DtdParserProxy_Throw_m007CFAA6CC0A55B37895E3A9B242C33FE5F11702 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, Exception_t* ___e0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextReaderImpl::DtdParserProxy_OnSystemId(System.String,System.Xml.LineInfo,System.Xml.LineInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_DtdParserProxy_OnSystemId_mFAEF87EE55FE4C1BEAAE833099C5E6BD25B6537F (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___systemId0, LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 ___keywordLineInfo1, LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 ___systemLiteralLineInfo2, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextReaderImpl::DtdParserProxy_OnPublicId(System.String,System.Xml.LineInfo,System.Xml.LineInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_DtdParserProxy_OnPublicId_mA9AE0CA29E94DDDF99C7675F1361E67775ABE11E (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___publicId0, LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 ___keywordLineInfo1, LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 ___publicLiteralLineInfo2, 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 ___type0, const RuntimeMethod* method) ;
// System.String System.String::CreateString(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6 (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___val0, int32_t ___startIndex1, int32_t ___length2, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlTextReaderImpl/NodeData::get_ValueBuffered()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NodeData_get_ValueBuffered_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_m1A901DCF0658AEED529815A9F5386DF2797993DE (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___value0, int32_t ___index1, int32_t* ___len2, const RuntimeMethod* method) ;
// System.String System.Xml.XmlTextReaderImpl::StripSpaces(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReaderImpl_StripSpaces_m826418F3C4E7A73D3F22AC2C44E695A3923E6FBB (String_t* ___value0, 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 ___lineNo0, int32_t ___linePos1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextReaderImpl/NodeData::SetNamedNode(System.Xml.XmlNodeType,System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_SetNamedNode_mC99F6739610C0257126208B4CF498E1771DF5DDA (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, int32_t ___type0, String_t* ___localName1, String_t* ___prefix2, String_t* ___nameWPrefix3, const RuntimeMethod* method) ;
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_mC09A30993B77CC4D8E906720683B6386F0E15747 (StringBuilder_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___value0, int32_t ___startIndex1, int32_t ___charCount2, 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* ___value0, 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.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* ___value0, int32_t ___startIndex1, int32_t ___count2, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextReaderImpl::BlockCopyChars(System.Char[],System.Int32,System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_BlockCopyChars_mD3F2631231E2706F7B3E62F07D964E873E65C441 (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___src0, int32_t ___srcOffset1, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___dst2, int32_t ___dstOffset3, int32_t ___count4, const RuntimeMethod* method) ;
// System.Void System.String::CopyTo(System.Int32,System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String_CopyTo_m6E1DE99F2A6481B3B9839C8A026C74887C10A1DC (String_t* __this, int32_t ___sourceIndex0, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___destination1, int32_t ___destinationIndex2, int32_t ___count3, 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* ___nt0, const RuntimeMethod* method) ;
// System.String System.String::Concat(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Ref::Equal(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Ref_Equal_m91CE186A8D713DBCF387B2A4AA83138704C7B8B1 (String_t* ___strA0, String_t* ___strB1, const RuntimeMethod* method) ;
// System.Int32 System.String::CompareOrdinal(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_CompareOrdinal_m17317B459AF49A42A2DCB2951261BE9FD186B78F (String_t* ___strA0, String_t* ___strB1, 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* ___res0, String_t* ___arg1, const RuntimeMethod* method) ;
// System.Int32 System.String::Compare(System.String,System.String,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_Compare_mC553A80AD870F5777F0E8B5E705B0205396B9D3E (String_t* ___strA0, String_t* ___strB1, int32_t ___comparisonType2, 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.XmlCharType System.Xml.XmlCharType::get_Instance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 XmlCharType_get_Instance_m2D4006A9AE9EB033F6A176E31CAFAC7EF30350AD (const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWriter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter__ctor_m8944C0C05D32C64DD68AE6641BA0943BE80CE714 (XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextWriter/TagInfo::Init(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TagInfo_Init_m351285BE790D79A15E824AE90114E1DD5734BAB6 (TagInfo_tDECE4D67D7F52936C9E8F58DE38BE11733108F5C* __this, int32_t ___nsTop0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextWriter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter__ctor_m48FEF103AD5753DA42EFBDC57A0B7B61B208F8CF (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, const RuntimeMethod* method) ;
// System.Void System.IO.StreamWriter::.ctor(System.IO.Stream,System.Text.Encoding)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamWriter__ctor_m1E6CB00AA57A3E35968208F705E444511AD9B5DC (StreamWriter_t6E7DF7D524AA3C018A65F62EE80779873ED4D1E4* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream0, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___encoding1, const RuntimeMethod* method) ;
// System.Void System.IO.StreamWriter::.ctor(System.IO.Stream)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamWriter__ctor_m54CE9C47ED974C0589400DA9BC2AB3F7F481595B (StreamWriter_t6E7DF7D524AA3C018A65F62EE80779873ED4D1E4* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextEncoder::.ctor(System.IO.TextWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder__ctor_m29D14256606ECE213B16EC9E934E11DE23BC2F6F (XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* __this, TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___textWriter0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextEncoder::set_QuoteChar(System.Char)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTextEncoder_set_QuoteChar_mE15FB6ECB7FAF6CE0780E1FE421D0802BF38D627_inline (XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* __this, Il2CppChar ___value0, const RuntimeMethod* method) ;
// System.Void System.IO.FileStream::.ctor(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileStream__ctor_mA39506EF7A1F33FCA0199B880BE1D82217E33EEC (FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* __this, String_t* ___path0, int32_t ___mode1, int32_t ___access2, int32_t ___share3, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextWriter::.ctor(System.IO.Stream,System.Text.Encoding)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter__ctor_mE517E25568C01F1EE34A2AC1C1A9E7C9F53B59E3 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___w0, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___encoding1, const RuntimeMethod* method) ;
// System.String System.Xml.Res::GetString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43 (String_t* ___name0, 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* ___message0, 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* ___message0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextWriter::StartDocument(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_StartDocument_m6D971130F93929411490C88EBC103B4B71AA311F (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, int32_t ___standalone0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextWriter::AutoCompleteAll()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_AutoCompleteAll_m4B6E34BC27932EF01C546E2C1CBB70BF21721209 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextWriter::ValidateName(System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_ValidateName_mC44A84A18156918489A8159BF9A8D56BE7B1C715 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, String_t* ___name0, bool ___isNCName1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextWriter::AutoComplete(System.Xml.XmlTextWriter/Token)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_AutoComplete_m6D82B054F5B8A65C9DEFEC095D1AA71B64E01D19 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, int32_t ___token0, const RuntimeMethod* method) ;
// System.String System.Char::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_m2A308731F9577C06AF3C0901234E2EAC8327410C (Il2CppChar* __this, const RuntimeMethod* method) ;
// System.String System.String::Concat(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextWriter::PushStack()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_PushStack_mBD2ABBDE5ED58044028C83A9BD3648B2FE6D16AA (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, const RuntimeMethod* method) ;
// System.Int32 System.Xml.XmlTextWriter::LookupNamespace(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextWriter_LookupNamespace_m26D7A144D7D60165AA28DFB54EE15332AD26CB89 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, String_t* ___prefix0, const RuntimeMethod* method) ;
// System.String System.Xml.XmlTextWriter::FindPrefix(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextWriter_FindPrefix_mC510C6C9162CD45A0BAED05D97C21A6CBCC326C7 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, String_t* ___ns0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextWriter::PushNamespace(System.String,System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_PushNamespace_m85B9B39621886474A21E929986FBB95C51ECC8FF (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, String_t* ___prefix0, String_t* ___ns1, bool ___declared2, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextWriter::VerifyPrefixXml(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_VerifyPrefixXml_mB5720166A6E438017CE9C6677F77670ACF2BE661 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, String_t* ___prefix0, String_t* ___ns1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextWriter::InternalWriteEndElement(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_InternalWriteEndElement_m1FEBF6E0816D4B25A83B098093170CA61265CA6B (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, bool ___longFormat0, const RuntimeMethod* method) ;
// System.Boolean System.String::op_Equality(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0 (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method) ;
// System.Boolean System.String::op_Inequality(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method) ;
// System.Int32 System.Xml.XmlTextWriter::LookupNamespaceInCurrentScope(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextWriter_LookupNamespaceInCurrentScope_m9B79AC784B0CD44E63F209682032370C60B2F6A9 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, String_t* ___prefix0, const RuntimeMethod* method) ;
// System.String System.Xml.XmlTextWriter::GeneratePrefix()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextWriter_GeneratePrefix_m4E75B06493E8E7259957E597AB761DFB5994543C (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextEncoder::StartAttribute(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder_StartAttribute_mF465D7D8BA5D27C78DD05400E137E682BD9FDE7B (XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* __this, bool ___cacheAttrValue0, const RuntimeMethod* method) ;
// System.Int32 System.String::IndexOf(System.String,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m490810CB7ADA9230AC0F8D78E213A8EFED129F55 (String_t* __this, String_t* ___value0, int32_t ___comparisonType1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextEncoder::WriteRawWithSurrogateChecking(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder_WriteRawWithSurrogateChecking_m122F5F4DFF721F37C940433BCF8285391E51DA00 (XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* __this, String_t* ___text0, const RuntimeMethod* method) ;
// System.Char System.String::get_Chars(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3 (String_t* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextWriter::InternalWriteProcessingInstruction(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_InternalWriteProcessingInstruction_m7AB78E359BBCA2A8300278538C77A186803D9F00 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, String_t* ___name0, String_t* ___text1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextEncoder::WriteEntityRef(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder_WriteEntityRef_mF547A873462F0D3DC2DB310A89E86146355B3ED4 (XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* __this, String_t* ___name0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextEncoder::WriteCharEntity(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder_WriteCharEntity_m591FE258908A35F6DD68111001E3F753603A83EE (XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* __this, Il2CppChar ___ch0, 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* ___str0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextEncoder::Write(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder_Write_m50A8B7FD9B3EA8856AE8EA6EEE4FFD02E06726A4 (XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* __this, String_t* ___text0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextEncoder::WriteSurrogateCharEntity(System.Char,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder_WriteSurrogateCharEntity_mA18F7DC2EB852A7313F82E2AD7B2F9B9BBD537B5 (XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* __this, Il2CppChar ___lowChar0, Il2CppChar ___highChar1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextEncoder::Write(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder_Write_mB5FB6D7AE2A11AD7D8BD3A1923CEE6FA96448131 (XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___array0, int32_t ___offset1, int32_t ___count2, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextEncoder::WriteRaw(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder_WriteRaw_m3003736A7A660B71BF6890C087EB7AE70C9388C7 (XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___array0, int32_t ___offset1, int32_t ___count2, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextWriterBase64Encoder::.ctor(System.Xml.XmlTextEncoder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriterBase64Encoder__ctor_m18789A533CA51461920658F5FECF7ABC0EF63531 (XmlTextWriterBase64Encoder_tC7209F119916DF622459E830377C23D7BFA2B30D* __this, XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* ___xmlTextEncoder0, const RuntimeMethod* method) ;
// System.Void System.Xml.Base64Encoder::Encode(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Base64Encoder_Encode_m93B7F06935043B4D5A76BDAD576A18EB9703AAFA (Base64Encoder_tA62CD5B68BCE27F764FAA91A7FCE6583772978A2* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) ;
// System.Void System.Xml.BinHexEncoder::Encode(System.Byte[],System.Int32,System.Int32,System.Xml.XmlWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinHexEncoder_Encode_m0DA74DCEE12EEE3FCB3796CE79718F100ACB2341 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___index1, int32_t ___count2, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___writer3, 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 ___capacity0, const RuntimeMethod* method) ;
// System.String System.String::Concat(System.String,System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mF8B69BE42B5C5ABCAD3C176FBBE3010E0815D65D (String_t* ___str00, String_t* ___str11, String_t* ___str22, String_t* ___str33, 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 ___value0, const RuntimeMethod* method) ;
// System.String System.Xml.Res::GetString(System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Res_GetString_mB929E696BF2E2F27CD03C0B61301A9DFE2FDEEF9 (String_t* ___name0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextWriter::Indent(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_Indent_m8FDE99DA08161BAF95B52060FE665815467653AC (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, bool ___beforeEndElement0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextWriter::WriteEndAttributeQuote()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteEndAttributeQuote_mB416CDC30D6D53A1CA083DB23889440E87AFF2AD (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextWriter::WriteEndStartTag(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteEndStartTag_m3D5BD66F7B3C09F72E943C0E5C865371905D552E (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, bool ___empty0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextWriter::FlushEncoders()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_FlushEncoders_mF122D55A7BB079E9DA00A0055CFC78277584A093 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextWriter::PopNamespaces(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_PopNamespaces_mE1AF0C6EBC567887BAA9E6DD4175AEBF7464A046 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, int32_t ___indexFrom0, int32_t ___indexTo1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextEncoder::EndAttribute()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder_EndAttribute_mAED2FFE742552CD2454B204481F9C43B113396FB (XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextWriter::HandleSpecialAttribute()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_HandleSpecialAttribute_m6E1B85CC5B5CE12883AE164DB945EBA54F7564A6 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextWriter::AddNamespace(System.String,System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_AddNamespace_mA9DF9F1648BEF737A3D46BE7A93EE57CED55DCB4 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, String_t* ___prefix0, String_t* ___ns1, bool ___declared2, const RuntimeMethod* method) ;
// System.Void System.Array::Copy(System.Array,System.Array,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_m4239F97ECC23A71F4191B8722362A1AA38E2E98F (RuntimeArray* ___sourceArray0, RuntimeArray* ___destinationArray1, int32_t ___length2, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextWriter/Namespace::Set(System.String,System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Namespace_Set_mA421F92F59A44FCD987802098A78CA52CA3867BD (Namespace_t98C96E77A64CE0105E85EEF2416A270C2AFA6853* __this, String_t* ___prefix0, String_t* ___ns1, bool ___declared2, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextWriter::AddToNamespaceHashtable(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_AddToNamespaceHashtable_m8BCCD6D70601F264479A46D8259BDDC174AD233F (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, int32_t ___namespaceIndex0, const RuntimeMethod* method) ;
// System.Void System.Xml.SecureStringHasher::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SecureStringHasher__ctor_m1F7C97F1DB5BEC1B80480E7CB4019B8E68CC4E92 (SecureStringHasher_t4052E73C966E6FE65426B19F4AF48AB9869F614E* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>)
inline void Dictionary_2__ctor_m9804017B0F6F06DE8C8FAA9292240873CB450B2D (Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588*, RuntimeObject*, const RuntimeMethod*))Dictionary_2__ctor_m89AC42CD88BC0ED965D36B7028EF3DE23D290E1D_gshared)(__this, ___comparer0, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Int32>::TryGetValue(TKey,TValue&)
inline bool Dictionary_2_TryGetValue_m835BB1E6EA8A8BF1242B51E28FD65B43FEF68E2A (Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* __this, String_t* ___key0, int32_t* ___value1, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588*, String_t*, int32_t*, const RuntimeMethod*))Dictionary_2_TryGetValue_m4B8EE45640C70BBFD6F3EFF1040983404C098342_gshared)(__this, ___key0, ___value1, method);
}
// System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::set_Item(TKey,TValue)
inline void Dictionary_2_set_Item_m038480C0EC13713DBD89A53BE69FF0359501B4C2 (Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* __this, String_t* ___key0, int32_t ___value1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588*, String_t*, int32_t, const RuntimeMethod*))Dictionary_2_set_Item_m72CC2F1213D1C1B8ABEDE31082D07B67EC873B13_gshared)(__this, ___key0, ___value1, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Remove(TKey)
inline bool Dictionary_2_Remove_m0C90DB78F4134CDEB001F338AA2745F8D9651CAC (Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* __this, String_t* ___key0, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588*, String_t*, const RuntimeMethod*))Dictionary_2_Remove_mFDB1C734B470EB31B094053D97F7749210922576_gshared)(__this, ___key0, method);
}
// System.Globalization.CultureInfo System.Globalization.CultureInfo::get_InvariantCulture()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425 (const RuntimeMethod* method) ;
// System.String System.Int32::ToString(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_mE871810BC163EE4EF88E7C7682A6AD39911173B8 (int32_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method) ;
// System.Int32 System.Xml.ValidateNames::ParseNCName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValidateNames_ParseNCName_mDF0240AB0FDDB3416896DED9C9B78E75BDA8CFEF (String_t* ___s0, const RuntimeMethod* method) ;
// System.Int32 System.Xml.ValidateNames::ParseNmtoken(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValidateNames_ParseNmtoken_m7C6554EAA0D5D41D6DDE5FA5669F1D54DE46B374 (String_t* ___s0, int32_t ___offset1, const RuntimeMethod* method) ;
// System.Boolean System.Xml.ValidateNames::IsNameNoNamespaces(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValidateNames_IsNameNoNamespaces_m41D3FD9FB53B3949C7E01A74C20C96B0B15DAC2B (String_t* ___s0, const RuntimeMethod* method) ;
// System.String System.Xml.XmlTextEncoder::get_AttributeValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextEncoder_get_AttributeValue_m3DC77E08BDA49EFA196673E7625B43CBCE70DA96 (XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* __this, const RuntimeMethod* method) ;
// System.String System.Xml.XmlConvert::TrimString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_TrimString_m10347633D50C56FCE0BFC58077D71AEBD88F9509 (String_t* ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.Base64Encoder::Flush()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Base64Encoder_Flush_mBCE3506CD0C1A9EF71FB84544496707BBC562324 (Base64Encoder_tA62CD5B68BCE27F764FAA91A7FCE6583772978A2* __this, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(System.Array,System.RuntimeFieldHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeHelpers_InitializeArray_mE10C3436BA703E4D9D41B3F8F365E4C34F9926EF (RuntimeArray* ___array0, RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 ___fldHandle1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlRawWriter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRawWriter__ctor_mFB8EB6B94D64BD9F3093B42E36D60FADC66F9989 (XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlWriterSettings::get_Async()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_Async_m0444A26262668D76461EEBD468B622F8F5418A60_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ;
// System.Xml.NewLineHandling System.Xml.XmlWriterSettings::get_NewLineHandling()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlWriterSettings_get_NewLineHandling_mE5E642195853271BBF3F6EA8399789D675D6EBE0_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlWriterSettings::get_OmitXmlDeclaration()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_OmitXmlDeclaration_m4DDF4951F3229EB1DEEFABD680769ABB9BB881DF_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ;
// System.String System.Xml.XmlWriterSettings::get_NewLineChars()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlWriterSettings_get_NewLineChars_m55DA9DDAED17162E8055730FE8047AEBFA5AC7F9_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlWriterSettings::get_CheckCharacters()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_CheckCharacters_mD2E14381EBF36D4C56C13F1BF4846667B4CCBB31_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlWriterSettings::get_CloseOutput()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_CloseOutput_m7676FD456B701FF93BCA6C3EADE2E5DF97D7A926_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ;
// System.Xml.XmlStandalone System.Xml.XmlWriterSettings::get_Standalone()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlWriterSettings_get_Standalone_mF6BD9C7DD44EDEA0EE1416AB92471C5374DBE26B_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ;
// System.Xml.XmlOutputMethod System.Xml.XmlWriterSettings::get_OutputMethod()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlWriterSettings_get_OutputMethod_mD033562BBB2BF636CD2B093DF43FFF69FCEB2BD1_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlWriterSettings::get_MergeCDataSections()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_MergeCDataSections_mA287AE0C1056022F4AE21AB1295026897C2BD817_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlUtf8RawTextWriter::ValidateContentChars(System.String,System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_ValidateContentChars_m2D62E5A56C7DB286BB2FB52D93F53737272C62A4 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, String_t* ___chars0, String_t* ___propertyName1, bool ___allowOnlyWhitespace2, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlUtf8RawTextWriter::.ctor(System.Xml.XmlWriterSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter__ctor_mFA386D4802198974CCB06BC0DE6D2A89325A2794 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings0, const RuntimeMethod* method) ;
// System.Text.Encoding System.Xml.XmlWriterSettings::get_Encoding()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* XmlWriterSettings_get_Encoding_mC4E1AB9D49553D659321B2BEEA46AE5D343BCBEE_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ;
// System.Void System.Buffer::BlockCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_BlockCopy_mD8CF7EC96ADA7A542CCA3F3C73510624E10197A9 (RuntimeArray* ___src0, int32_t ___srcOffset1, RuntimeArray* ___dst2, int32_t ___dstOffset3, int32_t ___count4, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlWriterSettings::get_AutoXmlDeclaration()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_AutoXmlDeclaration_m99219BABCEECCC72F64FA0062E19B2628B806A9C_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlUtf8RawTextWriter::RawText(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, String_t* ___s0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteCDataSection(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteCDataSection_mE925886DFC2D61C6F69311708EA5C99D73E462F9 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, String_t* ___text0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteCommentOrPi(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteCommentOrPi_m8683C7CE47F8B88FAECBACFF8FF741E26F11C041 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, String_t* ___text0, int32_t ___stopChar1, const RuntimeMethod* method) ;
// System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo::get_InvariantInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621 (const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlCharType::IsCharData(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlCharType_IsCharData_m39C87F830CD89F4F0029AA0338BB9AB5EFCC1AF5 (XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* __this, Il2CppChar ___ch0, const RuntimeMethod* method) ;
// System.Exception System.Xml.XmlConvert::CreateInvalidCharException(System.Char,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* XmlConvert_CreateInvalidCharException_mDB4221F3CC7FE0F027C0BE5E94398367C6D528CF (Il2CppChar ___invChar0, Il2CppChar ___nextChar1, const RuntimeMethod* method) ;
// System.Int32 System.Runtime.CompilerServices.RuntimeHelpers::get_OffsetToStringData()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RuntimeHelpers_get_OffsetToStringData_mBBE58AEA702864FB006771F4600D1D99B1234460 (const RuntimeMethod* method) ;
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteAttributeTextBlock(System.Char*,System.Char*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteAttributeTextBlock_mE2D22AC1D27C0BFA841022E3C14C58567E2C9977 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, Il2CppChar* ___pSrc0, Il2CppChar* ___pSrcEnd1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteElementTextBlock(System.Char*,System.Char*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteElementTextBlock_mE38367032B8ADFFA8A6F4F34598740F0E791575B (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, Il2CppChar* ___pSrc0, Il2CppChar* ___pSrcEnd1, const RuntimeMethod* method) ;
// System.Int32 System.Xml.XmlCharType::CombineSurrogateChar(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlCharType_CombineSurrogateChar_mCCBF257D9AE510DB9D3AA852848DCEB8AE0B9512 (int32_t ___lowChar0, int32_t ___highChar1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteRawWithCharChecking(System.Char*,System.Char*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteRawWithCharChecking_m312CDB6D9A7F9A965408839DAA06A50F74F79392 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, Il2CppChar* ___pSrcBegin0, Il2CppChar* ___pSrcEnd1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlUtf8RawTextWriter::FlushEncoder()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_FlushEncoder_m48C957E6B75EE03674B3DD29609304E5E794A565 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlUtf8RawTextWriter::IsSurrogateByte(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlUtf8RawTextWriter_IsSurrogateByte_m621EF957DE646EF6FCD643DEADBAC66AA29964D5 (uint8_t ___b0, const RuntimeMethod* method) ;
// System.Byte* System.Xml.XmlUtf8RawTextWriter::AmpEntity(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* XmlUtf8RawTextWriter_AmpEntity_m74590A53CBA42775F424221B95509971DEBF4055 (uint8_t* ___pDst0, const RuntimeMethod* method) ;
// System.Byte* System.Xml.XmlUtf8RawTextWriter::LtEntity(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* XmlUtf8RawTextWriter_LtEntity_mA9BFD8D405525247FA29C251EF7F01F1F4A1B3F7 (uint8_t* ___pDst0, const RuntimeMethod* method) ;
// System.Byte* System.Xml.XmlUtf8RawTextWriter::GtEntity(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* XmlUtf8RawTextWriter_GtEntity_mE467C4BEDD017622FE63FDBDB02BC7FA0FED2A47 (uint8_t* ___pDst0, const RuntimeMethod* method) ;
// System.Byte* System.Xml.XmlUtf8RawTextWriter::QuoteEntity(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* XmlUtf8RawTextWriter_QuoteEntity_mB6285E617BB7E7980D65FE8BAAF7BB39C0247034 (uint8_t* ___pDst0, const RuntimeMethod* method) ;
// System.Byte* System.Xml.XmlUtf8RawTextWriter::TabEntity(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* XmlUtf8RawTextWriter_TabEntity_m0F6FDA1300A85884C01CE27CB7AEEF644FA34C24 (uint8_t* ___pDst0, const RuntimeMethod* method) ;
// System.Byte* System.Xml.XmlUtf8RawTextWriter::CarriageReturnEntity(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* XmlUtf8RawTextWriter_CarriageReturnEntity_m8F175764EF6A6E78B51FA6BBB4AEC5DB26A77CE3 (uint8_t* ___pDst0, const RuntimeMethod* method) ;
// System.Byte* System.Xml.XmlUtf8RawTextWriter::LineFeedEntity(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* XmlUtf8RawTextWriter_LineFeedEntity_m510C2FCDDAFD3E6C1FB028DBA21B2D26ADC4C028 (uint8_t* ___pDst0, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlCharType::IsSurrogate(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlCharType_IsSurrogate_m29FE0DF5EE1BEA1C1695EAD497896D2FD94173C0 (int32_t ___ch0, const RuntimeMethod* method) ;
// System.Byte* System.Xml.XmlUtf8RawTextWriter::EncodeSurrogate(System.Char*,System.Char*,System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* XmlUtf8RawTextWriter_EncodeSurrogate_mE846CA16E1AEF8E2DFFE51F53BA92D4E4E47CD0A (Il2CppChar* ___pSrc0, Il2CppChar* ___pSrcEnd1, uint8_t* ___pDst2, const RuntimeMethod* method) ;
// System.Byte* System.Xml.XmlUtf8RawTextWriter::InvalidXmlChar(System.Int32,System.Byte*,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* XmlUtf8RawTextWriter_InvalidXmlChar_m4F7C6D47C50442CE83943650D69E14F9D1975D63 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, int32_t ___ch0, uint8_t* ___pDst1, bool ___entitize2, const RuntimeMethod* method) ;
// System.Byte* System.Xml.XmlUtf8RawTextWriter::EncodeMultibyteUTF8(System.Int32,System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* XmlUtf8RawTextWriter_EncodeMultibyteUTF8_m23196496AF45D3C4E3DF800CDD8E9D7E47EDB2F0 (int32_t ___ch0, uint8_t* ___pDst1, const RuntimeMethod* method) ;
// System.Byte* System.Xml.XmlUtf8RawTextWriter::WriteNewLine(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* XmlUtf8RawTextWriter_WriteNewLine_mC85F5A7C864437D5CC59658B5BD2E107CD3A4BCC (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, uint8_t* ___pDst0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlUtf8RawTextWriter::RawText(System.Char*,System.Char*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_RawText_mF7942A3974C489D2F8D9301E56E77CEF5F500E07 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, Il2CppChar* ___pSrcBegin0, Il2CppChar* ___pSrcEnd1, const RuntimeMethod* method) ;
// System.Byte* System.Xml.XmlUtf8RawTextWriter::RawEndCData(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* XmlUtf8RawTextWriter_RawEndCData_mAC87E304EEC6E5598A8DB9D65F60E110808AEFFA (uint8_t* ___pDst0, const RuntimeMethod* method) ;
// System.Byte* System.Xml.XmlUtf8RawTextWriter::RawStartCData(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* XmlUtf8RawTextWriter_RawStartCData_m885FCA9B181958D83B6A89E6ABC520FFFF6E2698 (uint8_t* ___pDst0, const RuntimeMethod* method) ;
// System.Exception System.Xml.XmlConvert::CreateInvalidSurrogatePairException(System.Char,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* XmlConvert_CreateInvalidSurrogatePairException_m94EB7264908EDA03B0B9136F43A937B33FBB91CC (Il2CppChar ___low0, Il2CppChar ___hi1, const RuntimeMethod* method) ;
// System.Exception System.Xml.XmlConvert::CreateInvalidHighSurrogateCharException(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* XmlConvert_CreateInvalidHighSurrogateCharException_mA7ECADE332FF612C80C9A49EDCECAFD6A181D20C (Il2CppChar ___hi0, const RuntimeMethod* method) ;
// System.Byte* System.Xml.XmlUtf8RawTextWriter::CharEntity(System.Byte*,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* XmlUtf8RawTextWriter_CharEntity_m0A23F5B065EFA3344692697742800B4E2FBF757F (uint8_t* ___pDst0, Il2CppChar ___ch1, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlCharType::IsTextChar(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlCharType_IsTextChar_mD4DD7B3C0E63D031A4EFFDD6635F68DDE166A4AB (XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* __this, Il2CppChar ___ch0, const RuntimeMethod* method) ;
// System.String[] System.Xml.XmlException::BuildCharExceptionArgs(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* XmlException_BuildCharExceptionArgs_m392B50DC9155D9243FD05EF0287B06FCB408EA46 (String_t* ___data0, int32_t ___invCharIndex1, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlCharType::IsHighSurrogate(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlCharType_IsHighSurrogate_m9DE9C8AE82BE2FB2A8EA00142D2E5A7DFE6CC303 (int32_t ___ch0, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlCharType::IsLowSurrogate(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlCharType_IsLowSurrogate_m062769B4A4869E4EDAC2EC6D0169BADCC2AC6C56 (int32_t ___ch0, const RuntimeMethod* method) ;
// System.String System.UInt32::ToString(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UInt32_ToString_m464396B0FE2115F3CEA38AEECDDB0FACC3AADADE (uint32_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlUtf8RawTextWriter::.ctor(System.IO.Stream,System.Xml.XmlWriterSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter__ctor_m3FED45E976C290A249ADEFDCB6B4D899997D6FB2 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlUtf8RawTextWriterIndent::Init(System.Xml.XmlWriterSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriterIndent_Init_m2B6D7FB0EDA0BF73910DF6645EB2CD33AB5305D9 (XmlUtf8RawTextWriterIndent_tEA3E110A4E275753FE5CC8F5FF17AA132DC66B41* __this, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlUtf8RawTextWriterIndent::WriteIndent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriterIndent_WriteIndent_mFE6D30917351AA0FC42FC9D332ED0B17DC86C4E4 (XmlUtf8RawTextWriterIndent_tEA3E110A4E275753FE5CC8F5FF17AA132DC66B41* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteDocType(System.String,System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteDocType_mF3CA63793EFA9CAF1D76AF06F0315DD56BF6739A (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, String_t* ___name0, String_t* ___pubid1, String_t* ___sysid2, String_t* ___subset3, const RuntimeMethod* method) ;
// System.Void System.Xml.BitStack::PushBit(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BitStack_PushBit_m1781C0D736A215362CD21AD07CAF39EE2909F718 (BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C* __this, bool ___bit0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteStartElement(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteStartElement_m0379A794A0F655460F6E51460D8F650779795F6F (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) ;
// System.Boolean System.Xml.BitStack::PeekBit()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BitStack_PeekBit_m416F1BB8F64059C924312B2416CBE09747B0E1E4 (BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlUtf8RawTextWriter::StartElementContent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_StartElementContent_mE915245AC3F0BDA47F20DF6CC76BF72049C1F893 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.BitStack::PopBit()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BitStack_PopBit_m0E661995EE53988E5F902D93C7C6BE02378021A3 (BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteEndElement(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteEndElement_m5608AC0C69CDAAEF96F97DC4DA61BA4DD477479E (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteFullEndElement(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteFullEndElement_mA2262354DD58A77D7D3422165A75016FB0B609F2 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteStartAttribute(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteStartAttribute_mFBD89332E58A89DAFA893BD88A09171AD963DFD8 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteCData(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteCData_m276E549C1CB22DB7B762AEB5473699A434F4998C (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, String_t* ___text0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteComment(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteComment_mB7554706D5AB959EC657803CBF3F46A9F7B3B0F0 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, String_t* ___text0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteProcessingInstruction(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteProcessingInstruction_m3FBDFD76690A07B4145020ABB521B6D0E0015C84 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, String_t* ___name0, String_t* ___text1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteEntityRef(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteEntityRef_mBB58E9588BA1D0830275543E726325234FCFD016 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, String_t* ___name0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteCharEntity(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteCharEntity_mCFA33DAFBB5CC7664DB5285C282CD17602A087EC (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, Il2CppChar ___ch0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteSurrogateCharEntity(System.Char,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteSurrogateCharEntity_m684718E512C7E54D584D19EA71D675C9201345F9 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, Il2CppChar ___lowChar0, Il2CppChar ___highChar1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteWhitespace(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteWhitespace_m108C1B276821AE78EFBF52C9CEC9A7189A6A9E47 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, String_t* ___ws0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteString_m6617BD373BF048EBE187A1F03A3A8CD74534FF98 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, String_t* ___text0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteChars(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteChars_m3D35BDDD9FF236EC73A0EB772343004B2C4B3C2B (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteRaw(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteRaw_m1CD2BE14DD496B9EA6D2093F8555677CC1B52096 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteRaw(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteRaw_m6CEED895A7A1E54D50BC0DF04ED0F7B7F64FDA94 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, String_t* ___data0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlRawWriter::WriteBase64(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRawWriter_WriteBase64_m3B717B23DDCA782AE1ECD2770444F8978EB12D4C (XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) ;
// System.String System.Xml.XmlWriterSettings::get_IndentChars()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlWriterSettings_get_IndentChars_mF26B2899F7718E3DC75CA62FDFB5915BAF5C158D_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlWriterSettings::get_NewLineOnAttributes()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_NewLineOnAttributes_m3ACAFD8A94C15826E9DDC4F20B280C6AF3407F7D_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.BitStack::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BitStack__ctor_m9BADB5496087F772604E9F62D3B18C07630EA45A (BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlValidatingReaderImpl::get_Namespaces()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlValidatingReaderImpl_get_Namespaces_m4415C799078697BDACBD0FE115AD65DB6C0031A3 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlReader::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReader__ctor_m4E3A6201CC692B2B2F05ED58652056E893995477 (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) ;
// System.Xml.XmlReader System.Xml.XmlAsyncCheckReader::get_CoreReader()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* XmlAsyncCheckReader_get_CoreReader_m7EEC14B20E5C6021736672F4DA2503B14E670A93_inline (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, 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.Void System.ArgumentException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___message0, String_t* ___paramName1, 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 ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.Schema.XmlSchemaCollection::.ctor(System.Xml.XmlNameTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSchemaCollection__ctor_m6F80B88EF4F79E892FA72CDFA9B2ECF8226A49C8 (XmlSchemaCollection_t795483FF9909CCC596ADA560E1C1654E66CAEAAD* __this, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nametable0, const RuntimeMethod* method) ;
// System.Xml.XmlResolver System.Xml.XmlValidatingReaderImpl::GetResolver()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* XmlValidatingReaderImpl_GetResolver_mFF19947EEC427CAC13D597CF19C3FD8C4CC6C6D1 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Schema.XmlSchemaCollection::set_XmlResolver(System.Xml.XmlResolver)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlSchemaCollection_set_XmlResolver_mCBCC7ABCA885FCDDBEB0255A49B17C8CB8BB0D62_inline (XmlSchemaCollection_t795483FF9909CCC596ADA560E1C1654E66CAEAAD* __this, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlValidatingReaderImpl/ValidationEventHandling::.ctor(System.Xml.XmlValidatingReaderImpl)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationEventHandling__ctor_m0DB14ABA2F484D38F4A85BC791A7833E61997DB9 (ValidationEventHandling_tE915576B71BADFBAC73B6C8CA5A99C0C5086E4C9* __this, XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* ___reader0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlValidatingReaderImpl/ValidationEventHandling::AddHandler(System.Xml.Schema.ValidationEventHandler)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationEventHandling_AddHandler_mD972A68DCBA2204B5EABDC54EEFF2F2479A68389 (ValidationEventHandling_tE915576B71BADFBAC73B6C8CA5A99C0C5086E4C9* __this, ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* ___handler0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextReaderImpl::set_ValidationEventHandling(System.Xml.IValidationEventHandling)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_ValidationEventHandling_mF8A66D6BE2B822997F486F4931B151B667863E59_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, RuntimeObject* ___value0, const RuntimeMethod* method) ;
// 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* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextReaderImpl::set_OnDefaultAttributeUse(System.Xml.XmlTextReaderImpl/OnDefaultAttributeUseDelegate)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_OnDefaultAttributeUse_m519352D6E61D34534B6790ECB3180B4B050B92FB_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499* ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlValidatingReaderImpl::SetupValidation(System.Xml.ValidationType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlValidatingReaderImpl_SetupValidation_mAFA0AB6EE784D66A5DC3CE049E5EAF720F11A655 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, int32_t ___valType0, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlTextReaderImpl::get_V1Compat()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_V1Compat_m27698868D378A1241DCAA4E22251E930806781C7_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ;
// System.Xml.XmlReaderSettings System.Xml.XmlReaderSettings::Clone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* XmlReaderSettings_Clone_m6581889814EA9982ABCE97535D76722F81972101 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlReaderSettings::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings__ctor_m1BAF1E969D42F7C5D453B381FA763F333C715364 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlReaderSettings::set_ValidationType(System.Xml.ValidationType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_ValidationType_m651D049117DA5C80F75BEB925AB0E1FE40E25620 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Xml.Schema.XmlSchemaValidationFlags System.Xml.XmlReaderSettings::get_ValidationFlags()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlReaderSettings_get_ValidationFlags_m22A3C5CFDC1CBF2EF8B5975A581B00EDF4D8E876_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlReaderSettings::set_ValidationFlags(System.Xml.Schema.XmlSchemaValidationFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_ValidationFlags_m846A17F2EB68AF5C850CDE3CA8218B2D6A400A02 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlReaderSettings::set_ReadOnly(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlReaderSettings_set_ReadOnly_mE9D803936E0E2E8A22464C57D96C71AB35D1A6CB_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlValidatingReaderImpl::ProcessCoreReaderEvent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlValidatingReaderImpl_ProcessCoreReaderEvent_mEA281802CAC44E6E8D5E9BF3CFA3AAA11B93151A (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlValidatingReaderImpl::ParseDtdFromParserContext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlValidatingReaderImpl_ParseDtdFromParserContext_mD0948FC472BB3854DFC0A957393E188A06322560 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlValidatingReaderImpl::ResolveEntityInternally()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlValidatingReaderImpl_ResolveEntityInternally_mD0775B105AF53B906BCABA036AD93EB58D7CF74A (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.ReadContentAsBinaryHelper::Finish()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadContentAsBinaryHelper_Finish_m56919E9B4A660955115D1C0680C0FF772DC649F9 (ReadContentAsBinaryHelper_t94D48E6891DEAC8DFE5DEA1B820091D277880897* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlValidatingReaderImpl::MoveOffEntityReference()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlValidatingReaderImpl_MoveOffEntityReference_m7A96CFBEAE562C0E1CDBA013353183E2E71E442F (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method) ;
// System.String System.Xml.XmlReader::ReadString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlReader_ReadString_m8647B3401F5E5C93EF9F8F67AEC33422378E17EE (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) ;
// System.Collections.Generic.IDictionary`2<System.String,System.String> System.Xml.XmlValidatingReaderImpl::GetNamespacesInScope(System.Xml.XmlNamespaceScope)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlValidatingReaderImpl_GetNamespacesInScope_mB044F7CBE6BA7C78EEE3828DCC7F1124C4F48FEE (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, int32_t ___scope0, const RuntimeMethod* method) ;
// System.String System.Xml.XmlValidatingReaderImpl::LookupPrefix(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlValidatingReaderImpl_LookupPrefix_m156EDA380A9AFD40A807A081D268B551162CDD2D (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, String_t* ___namespaceName0, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlTextReaderImpl::get_Namespaces()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_Namespaces_mCFAB7C99825041BA3C8ABD1752DF24D1F62B7122_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __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.Xml.IDtdParser System.Xml.DtdParser::Create()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DtdParser_Create_mEAB3483CB293C48815D7ED94E0EE32B2A175731B (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* ___reader0, 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_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::SetDtdInfo(System.Xml.IDtdInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_SetDtdInfo_m8F11C3245888FFB1600893DBAD0135432EE06110 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, RuntimeObject* ___newDtdInfo0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlValidatingReaderImpl::ValidateDtd()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlValidatingReaderImpl_ValidateDtd_m6CA931FBC3420A98A5897737D99761A6C92CE35D (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Schema.BaseValidator::set_DtdInfo(System.Xml.IDtdInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseValidator_set_DtdInfo_m03794576278D86E171908C4CB4D4644B0DEE1D74 (BaseValidator_t76E42AEBD013AC709BA36D782908C7B708BA8DAB* __this, RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Xml.Schema.BaseValidator System.Xml.Schema.BaseValidator::CreateInstance(System.Xml.ValidationType,System.Xml.XmlValidatingReaderImpl,System.Xml.Schema.XmlSchemaCollection,System.Xml.IValidationEventHandling,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseValidator_t76E42AEBD013AC709BA36D782908C7B708BA8DAB* BaseValidator_CreateInstance_mE981B767E5103869A3BAA93AB7190F05522582FD (int32_t ___valType0, XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* ___reader1, XmlSchemaCollection_t795483FF9909CCC596ADA560E1C1654E66CAEAAD* ___schemaCollection2, RuntimeObject* ___eventHandling3, bool ___processIdentityConstraints4, const RuntimeMethod* method) ;
// System.Void System.Xml.Schema.BaseValidator::set_XmlResolver(System.Xml.XmlResolver)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void BaseValidator_set_XmlResolver_m1D94109BE43E3C8A1738BC7C4A0A1A7233818FBF_inline (BaseValidator_t76E42AEBD013AC709BA36D782908C7B708BA8DAB* __this, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___value0, const RuntimeMethod* method) ;
// System.Void System.Uri::.ctor(System.String,System.UriKind)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_m24549041BC5661EAC10BA8CB35B60AD6512AF69B (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, String_t* ___uriString0, int32_t ___uriKind1, const RuntimeMethod* method) ;
// System.Void System.Xml.Schema.BaseValidator::set_BaseUri(System.Uri)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void BaseValidator_set_BaseUri_mA4B0ACD053F6B82E24AC7B4468CF425FFB0351EC_inline (BaseValidator_t76E42AEBD013AC709BA36D782908C7B708BA8DAB* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___value0, const RuntimeMethod* method) ;
// System.Xml.XmlResolver System.Xml.XmlTextReaderImpl::GetResolver()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* XmlTextReaderImpl_GetResolver_m924CBFEF2845AFABF70D3E892450B7BA9C7659A0 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlTextReaderImpl::get_IsResolverSet()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_IsResolverSet_mE4680CEFE9EF053C07E21CF5759C26EB7D7E2383_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlReaderSettings::EnableLegacyXmlSettings()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlReaderSettings_EnableLegacyXmlSettings_mAB5A87889CEC6170D507B650C62A448A30BA25EB (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.Xml.XmlNodeType System.Xml.XmlTextReaderImpl::get_FragmentType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_get_FragmentType_m2A244AA6C26344D9FFD93C4431E5BB30846E3A10_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextReaderImpl::ChangeCurrentNodeType(System.Xml.XmlNodeType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_ChangeCurrentNodeType_m29E4ADDA760615A747D04FDC8A5352F7A676C0E3 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___newNodeType0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextReaderImpl::set_InternalSchemaType(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_InternalSchemaType_m83D09B83500AB9C6EF14121ECDCD992347140B86 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextReaderImpl::set_InternalTypedValue(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_InternalTypedValue_m395992CEA4999B2FA7370AD919D57A8F0A8B7662 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlTextReaderImpl::get_StandAlone()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_StandAlone_mA576162454EF6AB6B5B442B1AF0FF6375F52EF2D_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ;
// System.Object System.Xml.XmlTextReaderImpl::get_InternalTypedValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlTextReaderImpl_get_InternalTypedValue_mAC905D7C504F020F695087C8D0C675F100106900 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlTextReaderImpl::AddDefaultAttributeNonDtd(System.Xml.Schema.SchemaAttDef)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_AddDefaultAttributeNonDtd_m39693E225A68EB53B260ADBD16A020FDE741C2C5 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* ___attrDef0, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Schema.SchemaAttDef::get_DefaultValueChecked()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SchemaAttDef_get_DefaultValueChecked_m57D6252200749344E61A44A323A8082353DA4B8F_inline (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Schema.DtdValidator::CheckDefaultValue(System.Xml.Schema.SchemaAttDef,System.Xml.Schema.SchemaInfo,System.Xml.IValidationEventHandling,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdValidator_CheckDefaultValue_mBD5C3F1CD5D27135CADEB155007D82923A8C9BB2 (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* ___attdef0, SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* ___sinfo1, RuntimeObject* ___eventHandling2, String_t* ___baseUriStr3, const RuntimeMethod* method) ;
// System.Void System.Xml.Schema.ValidationEventArgs::.ctor(System.Xml.Schema.XmlSchemaException,System.Xml.Schema.XmlSeverityType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationEventArgs__ctor_m8A0548B9124D82CD04A6E4C26CEE18443C47DDF9 (ValidationEventArgs_t9857F51592E50B7D14912FFA79909878DC603830* __this, XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B* ___ex0, int32_t ___severity1, const RuntimeMethod* method) ;
// System.Void System.Xml.Schema.ValidationEventHandler::Invoke(System.Object,System.Xml.Schema.ValidationEventArgs)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ValidationEventHandler_Invoke_m585F7368113F5FDF31F3C7C9C5B7F520CE46481B_inline (ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* __this, RuntimeObject* ___sender0, ValidationEventArgs_t9857F51592E50B7D14912FFA79909878DC603830* ___e1, const RuntimeMethod* method) ;
// System.Xml.ValidationType System.Xml.XmlValidatingReaderImpl::get_ValidationType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlValidatingReaderImpl_get_ValidationType_m3F56E6463F6CA002AD75157D14E897A2F5230988_inline (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method) ;
// System.Delegate System.Delegate::Combine(System.Delegate,System.Delegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t* Delegate_Combine_m8B9D24CED35033C7FC56501DFE650F5CB7FF012C (Delegate_t* ___a0, Delegate_t* ___b1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWellFormedWriter/NamespaceResolverProxy::.ctor(System.Xml.XmlWellFormedWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NamespaceResolverProxy__ctor_mF340DF659BB0437832979BFF6C9A91F1CA480177 (NamespaceResolverProxy_t21901D5C38330378CB1AA39393335948E0CADE44* __this, XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* ___wfWriter0, const RuntimeMethod* method) ;
// System.Xml.NamespaceHandling System.Xml.XmlWriterSettings::get_NamespaceHandling()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlWriterSettings_get_NamespaceHandling_m3A904C3E9BA1FED8C1A8BDA66A5FF9A93CB87F78_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlWriterSettings::get_WriteEndDocumentOnClose()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_WriteEndDocumentOnClose_m73A02E01FD8DB8AEBE545E9A60F92E5BFA1CBDB8_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ;
// System.Xml.ConformanceLevel System.Xml.XmlWriterSettings::get_ConformanceLevel()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlWriterSettings_get_ConformanceLevel_mAAD6F249DE7CF83E6F97F60C9FFDD0BC84AD9842_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWellFormedWriter/Namespace::Set(System.String,System.String,System.Xml.XmlWellFormedWriter/NamespaceKind)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Namespace_Set_m88AB7EE7ADEBE72A65AB39AD226966CECB869A2C (Namespace_tC7546D20184E40E3566060C1246B764E4DBA55A0* __this, String_t* ___prefix0, String_t* ___namespaceUri1, int32_t ___kind2, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWellFormedWriter/ElementScope::Set(System.String,System.String,System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ElementScope_Set_m7BAE5CE51EBBE20E736A268E1E606C71B74CF8D0 (ElementScope_t7BA86196EE58918EA5CA952D37FE3C7B19A33592* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___namespaceUri2, int32_t ___prevNSTop3, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWellFormedWriter::WriteStartDocumentImpl(System.Xml.XmlStandalone)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_WriteStartDocumentImpl_mA52A83EB37B590FF5E0439A0EEF4607423783C0E (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, int32_t ___standalone0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWellFormedWriter::AdvanceState(System.Xml.XmlWellFormedWriter/Token)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_AdvanceState_m0E77F31CDB1071771578075FC87D0BF0D208D8E1 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, int32_t ___token0, const RuntimeMethod* method) ;
// System.String System.Xml.XmlConvert::VerifyQName(System.String,System.Xml.ExceptionType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_VerifyQName_mCDB9F07461E11258D09D3DFA02FF1834080A961A (String_t* ___name0, int32_t ___exceptionType1, 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* ___str0, 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* ___str0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWellFormedWriter::CheckNCName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_CheckNCName_m60D4A447D593BEF77DFDAAA31CDD019361B55D2A (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, String_t* ___ncname0, const RuntimeMethod* method) ;
// System.String System.Xml.XmlWellFormedWriter::LookupNamespace(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlWellFormedWriter_LookupNamespace_m501ADAA8012BE57824EAE59C5F58BE37E477A92A (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, String_t* ___prefix0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWellFormedWriter::PushNamespaceImplicit(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_PushNamespaceImplicit_mA1D3FFBB0CC8895E7237F3EFB2A6B425346D8267 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, String_t* ___prefix0, String_t* ___ns1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Clear()
inline void Dictionary_2_Clear_m841DBE29811833266CC127714688998A50D5F7CD (Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* __this, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588*, const RuntimeMethod*))Dictionary_2_Clear_m931E25EF2557C3A386E4B9DC8D8212B7D9D3F5AE_gshared)(__this, method);
}
// System.Void System.Xml.XmlWellFormedWriter/ElementScope::WriteEndElement(System.Xml.XmlRawWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ElementScope_WriteEndElement_mD162117056CFDD45A1DAEC3F76334847A29F7B57 (ElementScope_t7BA86196EE58918EA5CA952D37FE3C7B19A33592* __this, XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* ___rawWriter0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWellFormedWriter::PopNamespaces(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_PopNamespaces_m21D460DB61EC4B7271262131A52536CAA398EB15 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, int32_t ___indexFrom0, int32_t ___indexTo1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWellFormedWriter/ElementScope::WriteFullEndElement(System.Xml.XmlRawWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ElementScope_WriteFullEndElement_m17FE706748E35B8903B1BCB6B172A2415AD989B4 (ElementScope_t7BA86196EE58918EA5CA952D37FE3C7B19A33592* __this, XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* ___rawWriter0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWellFormedWriter::SetSpecialAttribute(System.Xml.XmlWellFormedWriter/SpecialAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_SetSpecialAttribute_mFEA92893370DC5628286BE51411265E4B192FC89 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, int32_t ___special0, const RuntimeMethod* method) ;
// System.String System.Xml.XmlWellFormedWriter::GeneratePrefix()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlWellFormedWriter_GeneratePrefix_m6F8B4A6EAE7C5C9DA82990E47A1F891F8F1E526C (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, const RuntimeMethod* method) ;
// System.String System.Xml.XmlWellFormedWriter::LookupLocalNamespace(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlWellFormedWriter_LookupLocalNamespace_m9CB41195FFE549CD9D223709B79119038A67BC79 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, String_t* ___prefix0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWellFormedWriter::AddAttribute(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_AddAttribute_mAE42EFE8C45E46B4DBCEE7E95A75D860D35FC4D4 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___namespaceName2, const RuntimeMethod* method) ;
// System.String System.Xml.XmlWellFormedWriter/AttributeValueCache::get_StringValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AttributeValueCache_get_StringValue_m369D8C130C793C4646C02209CF225F4B79F5A8F3 (AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlWellFormedWriter::PushNamespaceExplicit(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlWellFormedWriter_PushNamespaceExplicit_m2D2DD37D41835C6CF41605F5DF0EFE69FD500A43 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, String_t* ___prefix0, String_t* ___ns1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWellFormedWriter/AttributeValueCache::Replay(System.Xml.XmlWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeValueCache_Replay_mE754CA61E7242ADAC63CD9F464D80C73E0588955 (AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___writer0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWellFormedWriter/AttributeValueCache::Trim()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeValueCache_Trim_m7508E1B61AAC65605922B79215050FA1BB874118 (AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWellFormedWriter/AttributeValueCache::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeValueCache_Clear_m39DF6AD7750029A3BCD050BA64FE0EC44D3865E2 (AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlWellFormedWriter::get_SaveAttrValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlWellFormedWriter_get_SaveAttrValue_m308EBEC9707BA9CB0B0281395F7C6183FCCD84E6 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWellFormedWriter/AttributeValueCache::WriteEntityRef(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeValueCache_WriteEntityRef_mD5EE425B29BE07E3E9744AAB845810875B245532 (AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* __this, String_t* ___name0, const RuntimeMethod* method) ;
// System.Boolean System.Char::IsSurrogate(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsSurrogate_mAA37183DD9C3A6CB9B8107F24D00BCB9B76ECA02 (Il2CppChar ___c0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWellFormedWriter/AttributeValueCache::WriteCharEntity(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeValueCache_WriteCharEntity_m8C4986F0935BC85657B0765214E4B6C7D06874D4 (AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* __this, Il2CppChar ___ch0, const RuntimeMethod* method) ;
// System.Boolean System.Char::IsSurrogatePair(System.Char,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsSurrogatePair_m151511C02189357F58B62328B00F1C2BFA24F44E (Il2CppChar ___highSurrogate0, Il2CppChar ___lowSurrogate1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWellFormedWriter/AttributeValueCache::WriteSurrogateCharEntity(System.Char,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeValueCache_WriteSurrogateCharEntity_mF393DE85027E7D4FF1B08D98F0C6F324D986F570 (AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* __this, Il2CppChar ___lowChar0, Il2CppChar ___highChar1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWellFormedWriter/AttributeValueCache::WriteWhitespace(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeValueCache_WriteWhitespace_mC30BE0103D7630BC52110A52711F93B0EE77265C (AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* __this, String_t* ___ws0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWellFormedWriter/AttributeValueCache::WriteString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeValueCache_WriteString_mF0E506AB621BED0ED725E43A80743865DC1C7A95 (AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* __this, String_t* ___text0, 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* ___paramName0, 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* ___paramName0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWellFormedWriter/AttributeValueCache::WriteChars(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeValueCache_WriteChars_mD4924FAFA5578EDBBA7121540F184F832B83E6B1 (AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWellFormedWriter/AttributeValueCache::WriteRaw(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeValueCache_WriteRaw_mBCBECC9E06E2A67EFFFCFD6B5C97E65845B030D5 (AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWellFormedWriter/AttributeValueCache::WriteRaw(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeValueCache_WriteRaw_m5CA2F21771AD270BC564212DEEB305D7BEA1ADDF (AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* __this, String_t* ___data0, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlWellFormedWriter::get_InBase64()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlWellFormedWriter_get_InBase64_mFF752AD78F8B2BAEB4EF3B014D665AA9F94C10C0 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWellFormedWriter/AttributeValueCache::WriteValue(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeValueCache_WriteValue_mD25613C049E0066BAF633B2E635E56F1C7512C0A (AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlWellFormedWriter::get_IsClosedOrErrorState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlWellFormedWriter_get_IsClosedOrErrorState_mDE9F00335629B981C8FFDBBCEC322D70FD1258CD (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWriter::WriteBinHex(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter_WriteBinHex_m2CFBF2D59073F981048E4FE0D0FEA6D456286495 (XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWellFormedWriter/AttributeValueCache::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeValueCache__ctor_m953F7E445860E3568CF1BCF095E1EECFC29938B9 (AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* __this, const RuntimeMethod* method) ;
// System.Int32 System.Xml.XmlWellFormedWriter::LookupNamespaceIndex(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlWellFormedWriter_LookupNamespaceIndex_m9236846AFB3139486F0DEAC5D1CCF53479286855 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, String_t* ___prefix0, 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* ___res0, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___args1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWellFormedWriter::AddNamespace(System.String,System.String,System.Xml.XmlWellFormedWriter/NamespaceKind)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_AddNamespace_m8CF0599DA9B7CBC7944F0F2E25EB92A6EF933B4D (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, String_t* ___prefix0, String_t* ___ns1, int32_t ___kind2, const RuntimeMethod* method) ;
// System.Xml.XmlException System.Xml.XmlWellFormedWriter::DupAttrException(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* XmlWellFormedWriter_DupAttrException_m7A1A8C4A333D1D8C53DE3B03E35E1BB12B4E554A (String_t* ___prefix0, String_t* ___localName1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWellFormedWriter::AddToNamespaceHashtable(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_AddToNamespaceHashtable_mEAB12665C5565DAE811C054FEA0F96E624C494F0 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, int32_t ___namespaceIndex0, 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.XmlWellFormedWriter::GetStateName(System.Xml.XmlWellFormedWriter/State)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlWellFormedWriter_GetStateName_mB2B34367A725A79E4B3B521280CAA81BEA26DA78 (int32_t ___state0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWellFormedWriter::ThrowInvalidStateTransition(System.Xml.XmlWellFormedWriter/Token,System.Xml.XmlWellFormedWriter/State)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_ThrowInvalidStateTransition_mD1B039B1CB4593B86D6086945488E6F699289EA7 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, int32_t ___token0, int32_t ___currentState1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWellFormedWriter::StartElementContent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_StartElementContent_mFB6A7CE162E6C7093EB48CDFA872C6D28E31861C (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWellFormedWriter::StartFragment()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_StartFragment_m9E589E4D3AB9FE93C93E51A91ED2DDF6691A1BD2 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWellFormedWriter/Namespace::WriteDecl(System.Xml.XmlWriter,System.Xml.XmlRawWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Namespace_WriteDecl_m9A844FFEDA4BE8790EB459FEDE11A8D8A5DAF100 (Namespace_tC7546D20184E40E3566060C1246B764E4DBA55A0* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___writer0, XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* ___rawWriter1, const RuntimeMethod* method) ;
// System.String System.Int32::ToString(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m3B2730D9F5B0C1C57DCCC8B8DCFB8E5EC4E8979B (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ;
// System.Exception System.Xml.XmlWellFormedWriter::InvalidCharsException(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* XmlWellFormedWriter_InvalidCharsException_mCBA78B82C723BB0F70B5ECAEA3534A4719B4B0C5 (String_t* ___name0, int32_t ___badCharIndex1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWellFormedWriter/AttrName::Set(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttrName_Set_m2C5516E986819EB5B1B0084FA03E54A9C7354930 (AttrName_t0B37BBC030EEC83B4B00DFCDD9C1DB43A31675F2* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___namespaceUri2, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlWellFormedWriter/AttrName::IsDuplicate(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AttrName_IsDuplicate_m201E2290AC6091EC056BEB923BFD9F35C1293F1C (AttrName_t0B37BBC030EEC83B4B00DFCDD9C1DB43A31675F2* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___namespaceUri2, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWellFormedWriter::AddToAttrHashTable(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_AddToAttrHashTable_mCF2C8CBC325BDAE7F0A643DD23ADB94BF5DB840D (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, int32_t ___attributeIndex0, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.Dictionary`2<System.String,System.Int32>::get_Count()
inline int32_t Dictionary_2_get_Count_m33C34E4F1C77B491E24DCCBF07C43639016B2247 (Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588*, const RuntimeMethod*))Dictionary_2_get_Count_mEE80B960C3B902E5FB4D2458CEB323B68A954926_gshared)(__this, 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
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Xml.XmlTextReaderImpl/LaterInitParam::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LaterInitParam__ctor_m633EE8735226C0AFAB9774FBBA3A4C36A64C47F9 (LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* __this, const RuntimeMethod* method)
{
{
__this->___initType_9 = 3;
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
#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<ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886*>(__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 ___closeInput0, const RuntimeMethod* method)
{
{
bool L_0 = ___closeInput0;
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 ___closeInput0, const RuntimeMethod* method)
{
ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886*>(__this + _offset);
ParsingState_Close_mA2ACDB0CCE0955A1C3B7FA9431E23F3B4C2B2008(_thisAdjusted, ___closeInput0, 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<ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886*>(__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<ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886*>(__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* ___previousContext0, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* L_0 = ___previousContext0;
NullCheck(L_0);
int32_t L_1 = L_0->___xmlSpace_0;
__this->___xmlSpace_0 = L_1;
XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* L_2 = ___previousContext0;
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 = ___previousContext0;
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 = ___previousContext0;
__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* ___prefix0, String_t* ___uri1, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Xml.XmlTextReaderImpl/NoNamespaceManager::RemoveNamespace(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NoNamespaceManager_RemoveNamespace_mDCA074FA6F69A3DD6C5D57AD0C317E9BE01EDB34 (NoNamespaceManager_t2914A37089D780A639C5769A68FCF35E0FE622B4* __this, String_t* ___prefix0, String_t* ___uri1, const RuntimeMethod* method)
{
{
return;
}
}
// System.Collections.IEnumerator System.Xml.XmlTextReaderImpl/NoNamespaceManager::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* NoNamespaceManager_GetEnumerator_m26D31D792ECF09E36C226CF8C3ADC11E447F43AD (NoNamespaceManager_t2914A37089D780A639C5769A68FCF35E0FE622B4* __this, const RuntimeMethod* method)
{
{
return (RuntimeObject*)NULL;
}
}
// System.Collections.Generic.IDictionary`2<System.String,System.String> System.Xml.XmlTextReaderImpl/NoNamespaceManager::GetNamespacesInScope(System.Xml.XmlNamespaceScope)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* NoNamespaceManager_GetNamespacesInScope_m4EC27F40799C3C57F7D0ED67C80FE6997E7276F1 (NoNamespaceManager_t2914A37089D780A639C5769A68FCF35E0FE622B4* __this, int32_t ___scope0, 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* ___prefix0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___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* ___uri0, const RuntimeMethod* method)
{
{
return (String_t*)NULL;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Xml.XmlTextReaderImpl/DtdParserProxy::.ctor(System.Xml.XmlTextReaderImpl)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParserProxy__ctor_m442621DC14ECF6CAB169962B3CAAF479A5F18D90 (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* __this, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___reader0, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = ___reader0;
__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 ___value0, const RuntimeMethod* method)
{
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0;
int32_t L_1 = ___value0;
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 ___pos0, const RuntimeMethod* method)
{
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0;
int32_t L_1 = ___pos0;
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* ___internalSubsetBuilder0, const RuntimeMethod* method)
{
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0;
StringBuilder_t* L_1 = ___internalSubsetBuilder0;
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 ___expand0, StringBuilder_t* ___internalSubsetBuilder1, const RuntimeMethod* method)
{
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0;
bool L_1 = ___expand0;
StringBuilder_t* L_2 = ___internalSubsetBuilder1;
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* ___sb0, const RuntimeMethod* method)
{
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0;
StringBuilder_t* L_1 = ___sb0;
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* ___sb0, const RuntimeMethod* method)
{
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0;
StringBuilder_t* L_1 = ___sb0;
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* ___entity0, int32_t* ___entityId1, const RuntimeMethod* method)
{
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0;
RuntimeObject* L_1 = ___entity0;
int32_t* L_2 = ___entityId1;
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** ___oldEntity0, int32_t* ___newEntityId1, const RuntimeMethod* method)
{
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0;
RuntimeObject** L_1 = ___oldEntity0;
int32_t* L_2 = ___newEntityId1;
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* ___systemId0, String_t* ___publicId1, const RuntimeMethod* method)
{
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0;
String_t* L_1 = ___systemId0;
String_t* L_2 = ___publicId1;
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* ___baseUri0, String_t* ___internalDtd1, const RuntimeMethod* method)
{
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0;
String_t* L_1 = ___baseUri0;
String_t* L_2 = ___internalDtd1;
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* ___e0, const RuntimeMethod* method)
{
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0;
Exception_t* L_1 = ___e0;
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* ___systemId0, LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 ___keywordLineInfo1, LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 ___systemLiteralLineInfo2, const RuntimeMethod* method)
{
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0;
String_t* L_1 = ___systemId0;
LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 L_2 = ___keywordLineInfo1;
LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 L_3 = ___systemLiteralLineInfo2;
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* ___publicId0, LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 ___keywordLineInfo1, LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 ___publicLiteralLineInfo2, const RuntimeMethod* method)
{
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0;
String_t* L_1 = ___publicId0;
LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 L_2 = ___keywordLineInfo1;
LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 L_3 = ___publicLiteralLineInfo2;
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_m09D5476D20F18D3F782AD016AA4C9B7FB91EB495 (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 ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__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 ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__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_m1A901DCF0658AEED529815A9F5386DF2797993DE(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_m826418F3C4E7A73D3F22AC2C44E695A3923E6FBB(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 ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___type0;
__this->___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 ___lineNo0, int32_t ___linePos1, const RuntimeMethod* method)
{
{
LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_0 = (&__this->___lineInfo_10);
int32_t L_1 = ___lineNo0;
int32_t L_2 = ___linePos1;
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 ___lineNo0, int32_t ___linePos1, const RuntimeMethod* method)
{
{
LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_0 = (&__this->___lineInfo2_11);
int32_t L_1 = ___lineNo0;
int32_t L_2 = ___linePos1;
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 ___type0, String_t* ___value1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___type0;
__this->___type_1 = L_0;
NodeData_ClearName_m33AF87BF5512718AE6E0920CF814BADCF8EB7BEC(__this, NULL);
String_t* L_1 = ___value1;
__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 ___type0, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___chars1, int32_t ___startPos2, int32_t ___len3, const RuntimeMethod* method)
{
{
int32_t L_0 = ___type0;
__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 = ___chars1;
__this->___chars_7 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___chars_7), (void*)L_1);
int32_t L_2 = ___startPos2;
__this->___valueStartPos_8 = L_2;
int32_t L_3 = ___len3;
__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 ___type0, String_t* ___localName1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___type0;
String_t* L_1 = ___localName1;
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
String_t* L_3 = ___localName1;
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 ___type0, String_t* ___localName1, String_t* ___prefix2, String_t* ___nameWPrefix3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___type0;
__this->___type_1 = L_0;
String_t* L_1 = ___localName1;
__this->___localName_2 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___localName_2), (void*)L_1);
String_t* L_2 = ___prefix2;
__this->___prefix_3 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___prefix_3), (void*)L_2);
String_t* L_3 = ___nameWPrefix3;
__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* ___value0, const RuntimeMethod* method)
{
{
__this->___valueStartPos_8 = (-1);
String_t* L_0 = ___value0;
__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* ___chars0, int32_t ___startPos1, int32_t ___len2, const RuntimeMethod* method)
{
{
__this->___value_6 = (String_t*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___value_6), (void*)(String_t*)NULL);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___chars0;
__this->___chars_7 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___chars_7), (void*)L_0);
int32_t L_1 = ___startPos1;
__this->___valueStartPos_8 = L_1;
int32_t L_2 = ___len2;
__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 ___valueOffset0, StringBuilder_t* ___sb1, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___value_6;
if (L_0)
{
goto IL_0026;
}
}
{
StringBuilder_t* L_1 = ___sb1;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = __this->___chars_7;
int32_t L_3 = __this->___valueStartPos_8;
int32_t L_4 = ___valueOffset0;
int32_t L_5 = __this->___valueLength_9;
int32_t L_6 = ___valueOffset0;
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 = ___valueOffset0;
if ((((int32_t)L_8) > ((int32_t)0)))
{
goto IL_0038;
}
}
{
StringBuilder_t* L_9 = ___sb1;
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 = ___sb1;
String_t* L_13 = __this->___value_6;
int32_t L_14 = ___valueOffset0;
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 = ___valueOffset0;
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.Int32 System.Xml.XmlTextReaderImpl/NodeData::CopyTo(System.Int32,System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NodeData_CopyTo_m27B76639B9A28127C2B03164D7128939F26C8F90 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, int32_t ___valueOffset0, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer1, int32_t ___offset2, int32_t ___length3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
String_t* L_0 = __this->___value_6;
if (L_0)
{
goto IL_0031;
}
}
{
int32_t L_1 = __this->___valueLength_9;
int32_t L_2 = ___valueOffset0;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_1, L_2));
int32_t L_3 = V_0;
int32_t L_4 = ___length3;
if ((((int32_t)L_3) <= ((int32_t)L_4)))
{
goto IL_0019;
}
}
{
int32_t L_5 = ___length3;
V_0 = L_5;
}
IL_0019:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = __this->___chars_7;
int32_t L_7 = __this->___valueStartPos_8;
int32_t L_8 = ___valueOffset0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_9 = ___buffer1;
int32_t L_10 = ___offset2;
int32_t L_11 = V_0;
XmlTextReaderImpl_BlockCopyChars_mD3F2631231E2706F7B3E62F07D964E873E65C441(L_6, ((int32_t)il2cpp_codegen_add(L_7, L_8)), L_9, L_10, L_11, NULL);
int32_t L_12 = V_0;
return L_12;
}
IL_0031:
{
String_t* L_13 = __this->___value_6;
NullCheck(L_13);
int32_t L_14;
L_14 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_13, NULL);
int32_t L_15 = ___valueOffset0;
V_1 = ((int32_t)il2cpp_codegen_subtract(L_14, L_15));
int32_t L_16 = V_1;
int32_t L_17 = ___length3;
if ((((int32_t)L_16) <= ((int32_t)L_17)))
{
goto IL_0047;
}
}
{
int32_t L_18 = ___length3;
V_1 = L_18;
}
IL_0047:
{
String_t* L_19 = __this->___value_6;
int32_t L_20 = ___valueOffset0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_21 = ___buffer1;
int32_t L_22 = ___offset2;
int32_t L_23 = V_1;
NullCheck(L_19);
String_CopyTo_m6E1DE99F2A6481B3B9839C8A026C74887C10A1DC(L_19, L_20, L_21, L_22, L_23, NULL);
int32_t L_24 = V_1;
return L_24;
}
}
// 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* ___nt0, 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 = ___nt0;
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* ___nt0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = __this->___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 = ___nt0;
String_t* L_4 = __this->___prefix_3;
String_t* L_5 = __this->___localName_2;
String_t* L_6;
L_6 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(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* ___obj0, 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 = ___obj0;
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_m91CE186A8D713DBCF387B2A4AA83138704C7B8B1(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_m91CE186A8D713DBCF387B2A4AA83138704C7B8B1(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_m17317B459AF49A42A2DCB2951261BE9FD186B78F(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_m17317B459AF49A42A2DCB2951261BE9FD186B78F(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.Object> System.Xml.XmlTextReaderImpl/DtdDefaultAttributeInfoToNodeDataComparer::get_Instance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DtdDefaultAttributeInfoToNodeDataComparer_get_Instance_mF0B0C0F3D7173DBD9A59C94B5364AAF425F1D599 (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* ___x0, RuntimeObject* ___y1, 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 = ___x0;
if (L_0)
{
goto IL_000a;
}
}
{
RuntimeObject* L_1 = ___y1;
if (!L_1)
{
goto IL_0008;
}
}
{
return (-1);
}
IL_0008:
{
return 0;
}
IL_000a:
{
RuntimeObject* L_2 = ___y1;
if (L_2)
{
goto IL_000f;
}
}
{
return 1;
}
IL_000f:
{
RuntimeObject* L_3 = ___x0;
V_4 = ((NodeData_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 = ___x0;
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 = ___y1;
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 = ___y1;
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_mC553A80AD870F5777F0E8B5E705B0205396B9D3E(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_mC553A80AD870F5777F0E8B5E705B0205396B9D3E(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_mE143D2408D4C8669246E9B85D2718A43B6232CB3 (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* ___defaultAttribute0, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___coreReader1, const RuntimeMethod* method)
{
il2cpp_array_size_t length = __this->___delegates_13->max_length;
Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates_13->GetAddressAtUnchecked(0));
typedef void (*FunctionPointerType) (OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499* __this, RuntimeObject* ___defaultAttribute0, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___coreReader1, const RuntimeMethod* method);
for (il2cpp_array_size_t i = 0; i < length; i++)
{
OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499* currentDelegate = reinterpret_cast<OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499*>(delegatesToInvoke[i]);
((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___defaultAttribute0, ___coreReader1, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
}
void OnDefaultAttributeUseDelegate_Invoke_mBF7EA3AC8F6A89D0019626AC5CBD72B6125699A2_Open(OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499* __this, RuntimeObject* ___defaultAttribute0, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___coreReader1, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(___defaultAttribute0, ___coreReader1, method);
}
void OnDefaultAttributeUseDelegate_Invoke_mBF7EA3AC8F6A89D0019626AC5CBD72B6125699A2_Closed(OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499* __this, RuntimeObject* ___defaultAttribute0, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___coreReader1, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___defaultAttribute0, ___coreReader1, method);
}
void OnDefaultAttributeUseDelegate_Invoke_mBF7EA3AC8F6A89D0019626AC5CBD72B6125699A2_OpenStaticInvoker(OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499* __this, RuntimeObject* ___defaultAttribute0, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___coreReader1, const RuntimeMethod* method)
{
InvokerActionInvoker2< RuntimeObject*, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* >::Invoke(__this->___method_ptr_0, method, NULL, ___defaultAttribute0, ___coreReader1);
}
void OnDefaultAttributeUseDelegate_Invoke_mBF7EA3AC8F6A89D0019626AC5CBD72B6125699A2_ClosedStaticInvoker(OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499* __this, RuntimeObject* ___defaultAttribute0, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___coreReader1, const RuntimeMethod* method)
{
InvokerActionInvoker3< RuntimeObject*, RuntimeObject*, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___defaultAttribute0, ___coreReader1);
}
void OnDefaultAttributeUseDelegate_Invoke_mBF7EA3AC8F6A89D0019626AC5CBD72B6125699A2_OpenVirtual(OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499* __this, RuntimeObject* ___defaultAttribute0, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___coreReader1, const RuntimeMethod* method)
{
VirtualActionInvoker1< XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* >::Invoke(il2cpp_codegen_method_get_slot(method), ___defaultAttribute0, ___coreReader1);
}
void OnDefaultAttributeUseDelegate_Invoke_mBF7EA3AC8F6A89D0019626AC5CBD72B6125699A2_OpenInterface(OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499* __this, RuntimeObject* ___defaultAttribute0, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___coreReader1, const RuntimeMethod* method)
{
InterfaceActionInvoker1< XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* >::Invoke(il2cpp_codegen_method_get_slot(method), il2cpp_codegen_method_get_declaring_type(method), ___defaultAttribute0, ___coreReader1);
}
void OnDefaultAttributeUseDelegate_Invoke_mBF7EA3AC8F6A89D0019626AC5CBD72B6125699A2_OpenGenericVirtual(OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499* __this, RuntimeObject* ___defaultAttribute0, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___coreReader1, const RuntimeMethod* method)
{
GenericVirtualActionInvoker1< XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* >::Invoke(method, ___defaultAttribute0, ___coreReader1);
}
void OnDefaultAttributeUseDelegate_Invoke_mBF7EA3AC8F6A89D0019626AC5CBD72B6125699A2_OpenGenericInterface(OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499* __this, RuntimeObject* ___defaultAttribute0, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___coreReader1, const RuntimeMethod* method)
{
GenericInterfaceActionInvoker1< XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* >::Invoke(method, ___defaultAttribute0, ___coreReader1);
}
// 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* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->___method_ptr_0 = il2cpp_codegen_get_virtual_call_method_pointer((RuntimeMethod*)___method1);
__this->___method_3 = ___method1;
__this->___m_target_2 = ___object0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target_2), (void*)___object0);
int methodCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___method1);
if (MethodIsStatic((RuntimeMethod*)___method1))
{
bool isOpen = methodCount == 2;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
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_Open;
else
__this->___invoke_impl_1 = (intptr_t)&OnDefaultAttributeUseDelegate_Invoke_mBF7EA3AC8F6A89D0019626AC5CBD72B6125699A2_Closed;
}
else
{
bool isOpen = methodCount == 1;
if (isOpen)
{
if (__this->___method_is_virtual_12)
{
if (il2cpp_codegen_method_is_generic_instance_method((RuntimeMethod*)___method1))
if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___method1))
__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*)___method1))
__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_Open;
}
}
else
{
__this->___invoke_impl_1 = (intptr_t)&OnDefaultAttributeUseDelegate_Invoke_mBF7EA3AC8F6A89D0019626AC5CBD72B6125699A2_Closed;
}
}
__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* ___defaultAttribute0, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___coreReader1, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499* __this, RuntimeObject* ___defaultAttribute0, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___coreReader1, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___defaultAttribute0, ___coreReader1, reinterpret_cast<RuntimeMethod*>(__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
#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.XmlTextWriter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter__ctor_m48FEF103AD5753DA42EFBDC57A0B7B61B208F8CF (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 L_0;
L_0 = XmlCharType_get_Instance_m2D4006A9AE9EB033F6A176E31CAFAC7EF30350AD(NULL);
__this->___xmlCharType_24 = L_0;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___xmlCharType_24))->___charProperties_2), (void*)NULL);
XmlWriter__ctor_m8944C0C05D32C64DD68AE6641BA0943BE80CE714(__this, NULL);
__this->___namespaces_16 = (bool)1;
__this->___formatting_4 = 0;
__this->___indentation_6 = 2;
__this->___indentChar_7 = ((int32_t)32);
NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93* L_1 = (NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93*)(NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93*)SZArrayNew(NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93_il2cpp_TypeInfo_var, (uint32_t)8);
__this->___nsStack_20 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___nsStack_20), (void*)L_1);
__this->___nsTop_21 = (-1);
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_2 = (TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776*)(TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776*)SZArrayNew(TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776_il2cpp_TypeInfo_var, (uint32_t)((int32_t)10));
__this->___stack_8 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___stack_8), (void*)L_2);
__this->___top_9 = 0;
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_3 = __this->___stack_8;
int32_t L_4 = __this->___top_9;
NullCheck(L_3);
TagInfo_Init_m351285BE790D79A15E824AE90114E1DD5734BAB6(((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_4))), (-1), NULL);
__this->___quoteChar_14 = ((int32_t)34);
il2cpp_codegen_runtime_class_init_inline(XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var);
StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858* L_5 = ((XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_StaticFields*)il2cpp_codegen_static_fields_for(XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var))->___stateTableDefault_27;
__this->___stateTable_10 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&__this->___stateTable_10), (void*)L_5);
__this->___currentState_11 = 0;
__this->___lastToken_12 = ((int32_t)13);
return;
}
}
// System.Void System.Xml.XmlTextWriter::.ctor(System.IO.Stream,System.Text.Encoding)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter__ctor_mE517E25568C01F1EE34A2AC1C1A9E7C9F53B59E3 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___w0, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___encoding1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StreamWriter_t6E7DF7D524AA3C018A65F62EE80779873ED4D1E4_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlTextWriter__ctor_m48FEF103AD5753DA42EFBDC57A0B7B61B208F8CF(__this, NULL);
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_0 = ___encoding1;
__this->___encoding_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___encoding_3), (void*)L_0);
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_1 = ___encoding1;
if (!L_1)
{
goto IL_001f;
}
}
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_2 = ___w0;
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_3 = ___encoding1;
StreamWriter_t6E7DF7D524AA3C018A65F62EE80779873ED4D1E4* L_4 = (StreamWriter_t6E7DF7D524AA3C018A65F62EE80779873ED4D1E4*)il2cpp_codegen_object_new(StreamWriter_t6E7DF7D524AA3C018A65F62EE80779873ED4D1E4_il2cpp_TypeInfo_var);
NullCheck(L_4);
StreamWriter__ctor_m1E6CB00AA57A3E35968208F705E444511AD9B5DC(L_4, L_2, L_3, NULL);
__this->___textWriter_1 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->___textWriter_1), (void*)L_4);
goto IL_002b;
}
IL_001f:
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_5 = ___w0;
StreamWriter_t6E7DF7D524AA3C018A65F62EE80779873ED4D1E4* L_6 = (StreamWriter_t6E7DF7D524AA3C018A65F62EE80779873ED4D1E4*)il2cpp_codegen_object_new(StreamWriter_t6E7DF7D524AA3C018A65F62EE80779873ED4D1E4_il2cpp_TypeInfo_var);
NullCheck(L_6);
StreamWriter__ctor_m54CE9C47ED974C0589400DA9BC2AB3F7F481595B(L_6, L_5, NULL);
__this->___textWriter_1 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->___textWriter_1), (void*)L_6);
}
IL_002b:
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_7 = __this->___textWriter_1;
XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* L_8 = (XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40*)il2cpp_codegen_object_new(XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40_il2cpp_TypeInfo_var);
NullCheck(L_8);
XmlTextEncoder__ctor_m29D14256606ECE213B16EC9E934E11DE23BC2F6F(L_8, L_7, NULL);
__this->___xmlEncoder_2 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlEncoder_2), (void*)L_8);
XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* L_9 = __this->___xmlEncoder_2;
Il2CppChar L_10 = __this->___quoteChar_14;
NullCheck(L_9);
XmlTextEncoder_set_QuoteChar_mE15FB6ECB7FAF6CE0780E1FE421D0802BF38D627_inline(L_9, L_10, NULL);
return;
}
}
// System.Void System.Xml.XmlTextWriter::.ctor(System.String,System.Text.Encoding)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter__ctor_mA9007741276A827C11CE1CAFF976EC0CE3C5D98C (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, String_t* ___filename0, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___encoding1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___filename0;
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_1 = (FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8*)il2cpp_codegen_object_new(FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8_il2cpp_TypeInfo_var);
NullCheck(L_1);
FileStream__ctor_mA39506EF7A1F33FCA0199B880BE1D82217E33EEC(L_1, L_0, 2, 2, 1, NULL);
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_2 = ___encoding1;
XmlTextWriter__ctor_mE517E25568C01F1EE34A2AC1C1A9E7C9F53B59E3(__this, L_1, L_2, NULL);
return;
}
}
// System.Void System.Xml.XmlTextWriter::.ctor(System.IO.TextWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter__ctor_m4AE8363DFA5B2D16F3750514727C63D4A0096489 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___w0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlTextWriter__ctor_m48FEF103AD5753DA42EFBDC57A0B7B61B208F8CF(__this, NULL);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0 = ___w0;
__this->___textWriter_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___textWriter_1), (void*)L_0);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_1 = ___w0;
NullCheck(L_1);
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_2;
L_2 = VirtualFuncInvoker0< Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* >::Invoke(11 /* System.Text.Encoding System.IO.TextWriter::get_Encoding() */, L_1);
__this->___encoding_3 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___encoding_3), (void*)L_2);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_3 = ___w0;
XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* L_4 = (XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40*)il2cpp_codegen_object_new(XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40_il2cpp_TypeInfo_var);
NullCheck(L_4);
XmlTextEncoder__ctor_m29D14256606ECE213B16EC9E934E11DE23BC2F6F(L_4, L_3, NULL);
__this->___xmlEncoder_2 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlEncoder_2), (void*)L_4);
XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* L_5 = __this->___xmlEncoder_2;
Il2CppChar L_6 = __this->___quoteChar_14;
NullCheck(L_5);
XmlTextEncoder_set_QuoteChar_mE15FB6ECB7FAF6CE0780E1FE421D0802BF38D627_inline(L_5, L_6, NULL);
return;
}
}
// System.IO.Stream System.Xml.XmlTextWriter::get_BaseStream()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* XmlTextWriter_get_BaseStream_m55606F575AF592BE5C1AE35FEF32EBDD72729265 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StreamWriter_t6E7DF7D524AA3C018A65F62EE80779873ED4D1E4_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
StreamWriter_t6E7DF7D524AA3C018A65F62EE80779873ED4D1E4* V_0 = NULL;
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0 = __this->___textWriter_1;
V_0 = ((StreamWriter_t6E7DF7D524AA3C018A65F62EE80779873ED4D1E4*)IsInstClass((RuntimeObject*)L_0, StreamWriter_t6E7DF7D524AA3C018A65F62EE80779873ED4D1E4_il2cpp_TypeInfo_var));
StreamWriter_t6E7DF7D524AA3C018A65F62EE80779873ED4D1E4* L_1 = V_0;
if (!L_1)
{
goto IL_0016;
}
}
{
StreamWriter_t6E7DF7D524AA3C018A65F62EE80779873ED4D1E4* L_2 = V_0;
NullCheck(L_2);
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_3;
L_3 = VirtualFuncInvoker0< Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* >::Invoke(52 /* System.IO.Stream System.IO.StreamWriter::get_BaseStream() */, L_2);
return L_3;
}
IL_0016:
{
return (Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE*)NULL;
}
}
// System.Void System.Xml.XmlTextWriter::set_Namespaces(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_set_Namespaces_m83F3F102E98E87105813A68C7318EF2EB26C1384 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, bool ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___currentState_11;
if (!L_0)
{
goto IL_0018;
}
}
{
String_t* L_1;
L_1 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral290BA12613CB7EB53533E7D79C511020F597E92D)), 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*)&XmlTextWriter_set_Namespaces_m83F3F102E98E87105813A68C7318EF2EB26C1384_RuntimeMethod_var)));
}
IL_0018:
{
bool L_3 = ___value0;
__this->___namespaces_16 = L_3;
return;
}
}
// System.Void System.Xml.XmlTextWriter::set_Formatting(System.Xml.Formatting)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_set_Formatting_mD13223E0443AB804ED5063976D4A8372BE7D7FA3 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->___formatting_4 = L_0;
int32_t L_1 = ___value0;
__this->___indented_5 = (bool)((((int32_t)L_1) == ((int32_t)1))? 1 : 0);
return;
}
}
// System.Void System.Xml.XmlTextWriter::set_QuoteChar(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_set_QuoteChar_mBF3C553E38CEA9BA68039EA9ABE254F388D078C3 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, Il2CppChar ___value0, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___value0;
if ((((int32_t)L_0) == ((int32_t)((int32_t)34))))
{
goto IL_001a;
}
}
{
Il2CppChar L_1 = ___value0;
if ((((int32_t)L_1) == ((int32_t)((int32_t)39))))
{
goto IL_001a;
}
}
{
String_t* L_2;
L_2 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFCECB2616B2BFDE8FCC4BE457EFFCC62A8D789E0)), 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*)&XmlTextWriter_set_QuoteChar_mBF3C553E38CEA9BA68039EA9ABE254F388D078C3_RuntimeMethod_var)));
}
IL_001a:
{
Il2CppChar L_4 = ___value0;
__this->___quoteChar_14 = L_4;
XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* L_5 = __this->___xmlEncoder_2;
Il2CppChar L_6 = ___value0;
NullCheck(L_5);
XmlTextEncoder_set_QuoteChar_mE15FB6ECB7FAF6CE0780E1FE421D0802BF38D627_inline(L_5, L_6, NULL);
return;
}
}
// System.Void System.Xml.XmlTextWriter::WriteStartDocument()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteStartDocument_mF1CB04A2A5770236749FE971FC8821CC9BBE8F62 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, const RuntimeMethod* method)
{
{
XmlTextWriter_StartDocument_m6D971130F93929411490C88EBC103B4B71AA311F(__this, (-1), NULL);
return;
}
}
// System.Void System.Xml.XmlTextWriter::WriteStartDocument(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteStartDocument_mBB50C7CBEABDFAC241C5B4596900E1BA43677449 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, bool ___standalone0, const RuntimeMethod* method)
{
XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* G_B2_0 = NULL;
XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* G_B1_0 = NULL;
int32_t G_B3_0 = 0;
XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* G_B3_1 = NULL;
{
bool L_0 = ___standalone0;
G_B1_0 = __this;
if (L_0)
{
G_B2_0 = __this;
goto IL_0007;
}
}
{
G_B3_0 = 0;
G_B3_1 = G_B1_0;
goto IL_0008;
}
IL_0007:
{
G_B3_0 = 1;
G_B3_1 = G_B2_0;
}
IL_0008:
{
NullCheck(G_B3_1);
XmlTextWriter_StartDocument_m6D971130F93929411490C88EBC103B4B71AA311F(G_B3_1, G_B3_0, NULL);
return;
}
}
// System.Void System.Xml.XmlTextWriter::WriteEndDocument()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteEndDocument_mE106B3BDB979A05A96FAD9184DD160B59DEF1ABD (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
{
XmlTextWriter_AutoCompleteAll_m4B6E34BC27932EF01C546E2C1CBB70BF21721209(__this, NULL);
int32_t L_0 = __this->___currentState_11;
if ((((int32_t)L_0) == ((int32_t)7)))
{
goto IL_0039_1;
}
}
{
int32_t L_1 = __this->___currentState_11;
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)9)))))
{
goto IL_0029_1;
}
}
{
String_t* L_2;
L_2 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2D7D9606D59C279ADCC84643F993B9FC22365566)), 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*)&XmlTextWriter_WriteEndDocument_mE106B3BDB979A05A96FAD9184DD160B59DEF1ABD_RuntimeMethod_var)));
}
IL_0029_1:
{
String_t* L_4;
L_4 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9413AC7CF6AB7E9B088B38F9FF76860CC990A952)), NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_5 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_5);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_5, L_4, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteEndDocument_mE106B3BDB979A05A96FAD9184DD160B59DEF1ABD_RuntimeMethod_var)));
}
IL_0039_1:
{
il2cpp_codegen_runtime_class_init_inline(XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var);
StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858* L_6 = ((XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_StaticFields*)il2cpp_codegen_static_fields_for(XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var))->___stateTableDefault_27;
__this->___stateTable_10 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->___stateTable_10), (void*)L_6);
__this->___currentState_11 = 0;
__this->___lastToken_12 = ((int32_t)13);
goto IL_005f;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0055;
}
throw e;
}
CATCH_0055:
{// begin catch(System.Object)
__this->___currentState_11 = 8;
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteEndDocument_mE106B3BDB979A05A96FAD9184DD160B59DEF1ABD_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_005f:
{
return;
}
}
// System.Void System.Xml.XmlTextWriter::WriteDocType(System.String,System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteDocType_m55B5607A1F450A8845D2FE25BB02E166DB141EAA (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, String_t* ___name0, String_t* ___pubid1, String_t* ___sysid2, String_t* ___subset3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBD1D701FC46063485DFFAB6888F3C74B6DC48DD8);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC7C776080FBFB5F15E2EAAE9A4C65AE2C17FE00B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD80F08699EED587529ABC38BC3513F5D6C7016A7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC);
s_Il2CppMethodInitialized = true;
}
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
{
String_t* L_0 = ___name0;
XmlTextWriter_ValidateName_mC44A84A18156918489A8159BF9A8D56BE7B1C715(__this, L_0, (bool)0, NULL);
XmlTextWriter_AutoComplete_m6D82B054F5B8A65C9DEFEC095D1AA71B64E01D19(__this, 1, NULL);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_1 = __this->___textWriter_1;
NullCheck(L_1);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_1, _stringLiteralC7C776080FBFB5F15E2EAAE9A4C65AE2C17FE00B);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_2 = __this->___textWriter_1;
String_t* L_3 = ___name0;
NullCheck(L_2);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_2, L_3);
String_t* L_4 = ___pubid1;
if (!L_4)
{
goto IL_00a4_1;
}
}
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_5 = __this->___textWriter_1;
Il2CppChar* L_6 = (&__this->___quoteChar_14);
String_t* L_7;
L_7 = Char_ToString_m2A308731F9577C06AF3C0901234E2EAC8327410C(L_6, NULL);
String_t* L_8;
L_8 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteralD80F08699EED587529ABC38BC3513F5D6C7016A7, L_7, NULL);
NullCheck(L_5);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_5, L_8);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_9 = __this->___textWriter_1;
String_t* L_10 = ___pubid1;
NullCheck(L_9);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_9, L_10);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_11 = __this->___textWriter_1;
Il2CppChar* L_12 = (&__this->___quoteChar_14);
String_t* L_13;
L_13 = Char_ToString_m2A308731F9577C06AF3C0901234E2EAC8327410C(L_12, NULL);
Il2CppChar* L_14 = (&__this->___quoteChar_14);
String_t* L_15;
L_15 = Char_ToString_m2A308731F9577C06AF3C0901234E2EAC8327410C(L_14, NULL);
String_t* L_16;
L_16 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(L_13, _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745, L_15, NULL);
NullCheck(L_11);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_11, L_16);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_17 = __this->___textWriter_1;
String_t* L_18 = ___sysid2;
NullCheck(L_17);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_17, L_18);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_19 = __this->___textWriter_1;
Il2CppChar L_20 = __this->___quoteChar_14;
NullCheck(L_19);
VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_19, L_20);
goto IL_00e4_1;
}
IL_00a4_1:
{
String_t* L_21 = ___sysid2;
if (!L_21)
{
goto IL_00e4_1;
}
}
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_22 = __this->___textWriter_1;
Il2CppChar* L_23 = (&__this->___quoteChar_14);
String_t* L_24;
L_24 = Char_ToString_m2A308731F9577C06AF3C0901234E2EAC8327410C(L_23, NULL);
String_t* L_25;
L_25 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteralBD1D701FC46063485DFFAB6888F3C74B6DC48DD8, L_24, NULL);
NullCheck(L_22);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_22, L_25);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_26 = __this->___textWriter_1;
String_t* L_27 = ___sysid2;
NullCheck(L_26);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_26, L_27);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_28 = __this->___textWriter_1;
Il2CppChar L_29 = __this->___quoteChar_14;
NullCheck(L_28);
VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_28, L_29);
}
IL_00e4_1:
{
String_t* L_30 = ___subset3;
if (!L_30)
{
goto IL_0115_1;
}
}
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_31 = __this->___textWriter_1;
NullCheck(L_31);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_31, _stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_32 = __this->___textWriter_1;
String_t* L_33 = ___subset3;
NullCheck(L_32);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_32, L_33);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_34 = __this->___textWriter_1;
NullCheck(L_34);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_34, _stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC);
}
IL_0115_1:
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_35 = __this->___textWriter_1;
NullCheck(L_35);
VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_35, ((int32_t)62));
goto IL_012e;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0124;
}
throw e;
}
CATCH_0124:
{// begin catch(System.Object)
__this->___currentState_11 = 8;
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteDocType_m55B5607A1F450A8845D2FE25BB02E166DB141EAA_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_012e:
{
return;
}
}
// System.Void System.Xml.XmlTextWriter::WriteStartElement(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteStartElement_mC9FE33DD1244C725C11F8498DFFB2193C573CC04 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
{
XmlTextWriter_AutoComplete_m6D82B054F5B8A65C9DEFEC095D1AA71B64E01D19(__this, 4, NULL);
XmlTextWriter_PushStack_mBD2ABBDE5ED58044028C83A9BD3648B2FE6D16AA(__this, NULL);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0 = __this->___textWriter_1;
NullCheck(L_0);
VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_0, ((int32_t)60));
bool L_1 = __this->___namespaces_16;
if (!L_1)
{
goto IL_017b_1;
}
}
{
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_2 = __this->___stack_8;
int32_t L_3 = __this->___top_9;
NullCheck(L_2);
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_4 = __this->___stack_8;
int32_t L_5 = __this->___top_9;
NullCheck(L_4);
String_t* L_6 = ((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract(L_5, 1)))))->___defaultNs_2;
((L_2)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_3)))->___defaultNs_2 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&((L_2)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_3)))->___defaultNs_2), (void*)L_6);
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_7 = __this->___stack_8;
int32_t L_8 = __this->___top_9;
NullCheck(L_7);
int32_t L_9 = ((L_7)->GetAddressAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract(L_8, 1)))))->___defaultNsState_3;
if (!L_9)
{
goto IL_0084_1;
}
}
{
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_10 = __this->___stack_8;
int32_t L_11 = __this->___top_9;
NullCheck(L_10);
((L_10)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_11)))->___defaultNsState_3 = 1;
}
IL_0084_1:
{
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_12 = __this->___stack_8;
int32_t L_13 = __this->___top_9;
NullCheck(L_12);
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_14 = __this->___stack_8;
int32_t L_15 = __this->___top_9;
NullCheck(L_14);
bool L_16 = ((L_14)->GetAddressAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract(L_15, 1)))))->___mixed_8;
((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->___mixed_8 = L_16;
String_t* L_17 = ___ns2;
if (L_17)
{
goto IL_00da_1;
}
}
{
String_t* L_18 = ___prefix0;
if (!L_18)
{
goto IL_0127_1;
}
}
{
String_t* L_19 = ___prefix0;
NullCheck(L_19);
int32_t L_20;
L_20 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_19, NULL);
if (!L_20)
{
goto IL_0127_1;
}
}
{
String_t* L_21 = ___prefix0;
int32_t L_22;
L_22 = XmlTextWriter_LookupNamespace_m26D7A144D7D60165AA28DFB54EE15332AD26CB89(__this, L_21, NULL);
if ((!(((uint32_t)L_22) == ((uint32_t)(-1)))))
{
goto IL_0127_1;
}
}
{
String_t* L_23;
L_23 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA6A4D769FFC4529F0963FE55F3BE08E56AB8438E)), 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*)&XmlTextWriter_WriteStartElement_mC9FE33DD1244C725C11F8498DFFB2193C573CC04_RuntimeMethod_var)));
}
IL_00da_1:
{
String_t* L_25 = ___prefix0;
if (L_25)
{
goto IL_00f8_1;
}
}
{
String_t* L_26 = ___ns2;
String_t* L_27;
L_27 = XmlTextWriter_FindPrefix_mC510C6C9162CD45A0BAED05D97C21A6CBCC326C7(__this, L_26, NULL);
V_0 = L_27;
String_t* L_28 = V_0;
if (!L_28)
{
goto IL_00ed_1;
}
}
{
String_t* L_29 = V_0;
___prefix0 = L_29;
goto IL_0127_1;
}
IL_00ed_1:
{
String_t* L_30 = ___ns2;
XmlTextWriter_PushNamespace_m85B9B39621886474A21E929986FBB95C51ECC8FF(__this, (String_t*)NULL, L_30, (bool)0, NULL);
goto IL_0127_1;
}
IL_00f8_1:
{
String_t* L_31 = ___prefix0;
NullCheck(L_31);
int32_t L_32;
L_32 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_31, NULL);
if (L_32)
{
goto IL_010b_1;
}
}
{
String_t* L_33 = ___ns2;
XmlTextWriter_PushNamespace_m85B9B39621886474A21E929986FBB95C51ECC8FF(__this, (String_t*)NULL, L_33, (bool)0, NULL);
goto IL_0127_1;
}
IL_010b_1:
{
String_t* L_34 = ___ns2;
NullCheck(L_34);
int32_t L_35;
L_35 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_34, NULL);
if (L_35)
{
goto IL_0116_1;
}
}
{
___prefix0 = (String_t*)NULL;
}
IL_0116_1:
{
String_t* L_36 = ___prefix0;
String_t* L_37 = ___ns2;
XmlTextWriter_VerifyPrefixXml_mB5720166A6E438017CE9C6677F77670ACF2BE661(__this, L_36, L_37, NULL);
String_t* L_38 = ___prefix0;
String_t* L_39 = ___ns2;
XmlTextWriter_PushNamespace_m85B9B39621886474A21E929986FBB95C51ECC8FF(__this, L_38, L_39, (bool)0, NULL);
}
IL_0127_1:
{
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_40 = __this->___stack_8;
int32_t L_41 = __this->___top_9;
NullCheck(L_40);
((L_40)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_41)))->___prefix_1 = (String_t*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&((L_40)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_41)))->___prefix_1), (void*)(String_t*)NULL);
String_t* L_42 = ___prefix0;
if (!L_42)
{
goto IL_01a1_1;
}
}
{
String_t* L_43 = ___prefix0;
NullCheck(L_43);
int32_t L_44;
L_44 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_43, NULL);
if (!L_44)
{
goto IL_01a1_1;
}
}
{
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_45 = __this->___stack_8;
int32_t L_46 = __this->___top_9;
NullCheck(L_45);
String_t* L_47 = ___prefix0;
((L_45)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_46)))->___prefix_1 = L_47;
Il2CppCodeGenWriteBarrier((void**)(&((L_45)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_46)))->___prefix_1), (void*)L_47);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_48 = __this->___textWriter_1;
String_t* L_49 = ___prefix0;
NullCheck(L_48);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_48, L_49);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_50 = __this->___textWriter_1;
NullCheck(L_50);
VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_50, ((int32_t)58));
goto IL_01a1_1;
}
IL_017b_1:
{
String_t* L_51 = ___ns2;
if (!L_51)
{
goto IL_0186_1;
}
}
{
String_t* L_52 = ___ns2;
NullCheck(L_52);
int32_t L_53;
L_53 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_52, NULL);
if (L_53)
{
goto IL_0191_1;
}
}
IL_0186_1:
{
String_t* L_54 = ___prefix0;
if (!L_54)
{
goto IL_01a1_1;
}
}
{
String_t* L_55 = ___prefix0;
NullCheck(L_55);
int32_t L_56;
L_56 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_55, NULL);
if (!L_56)
{
goto IL_01a1_1;
}
}
IL_0191_1:
{
String_t* L_57;
L_57 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAC9E93CEA17C181E0B0046090BD8FBFE6027E465)), NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_58 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_58);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_58, L_57, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_58, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteStartElement_mC9FE33DD1244C725C11F8498DFFB2193C573CC04_RuntimeMethod_var)));
}
IL_01a1_1:
{
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_59 = __this->___stack_8;
int32_t L_60 = __this->___top_9;
NullCheck(L_59);
String_t* L_61 = ___localName1;
((L_59)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_60)))->___name_0 = L_61;
Il2CppCodeGenWriteBarrier((void**)(&((L_59)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_60)))->___name_0), (void*)L_61);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_62 = __this->___textWriter_1;
String_t* L_63 = ___localName1;
NullCheck(L_62);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_62, L_63);
goto IL_01d0;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_01c6;
}
throw e;
}
CATCH_01c6:
{// begin catch(System.Object)
__this->___currentState_11 = 8;
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteStartElement_mC9FE33DD1244C725C11F8498DFFB2193C573CC04_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_01d0:
{
return;
}
}
// System.Void System.Xml.XmlTextWriter::WriteEndElement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteEndElement_mA8CD9204FB8E00BC57A4ABD7F1CFED2487E34E42 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, const RuntimeMethod* method)
{
{
XmlTextWriter_InternalWriteEndElement_m1FEBF6E0816D4B25A83B098093170CA61265CA6B(__this, (bool)0, NULL);
return;
}
}
// System.Void System.Xml.XmlTextWriter::WriteFullEndElement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteFullEndElement_mD96729A604F61644598B3CED035317DEF6B5B072 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, const RuntimeMethod* method)
{
{
XmlTextWriter_InternalWriteEndElement_m1FEBF6E0816D4B25A83B098093170CA61265CA6B(__this, (bool)1, NULL);
return;
}
}
// System.Void System.Xml.XmlTextWriter::WriteStartAttribute(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteStartAttribute_m8183A40B9AD5B20014708E4EA83D6D72BCF09D08 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1CBC514CBF721C4C5F12F67F33B3E7694BCD1B29);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5E5E0B42C7CA8BCA40E77FC8AC4FC4B3C6D556A0);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA0BA8D0495A770319CD6FF4DCD0C01BCCC30A901);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE1291C4D47635E327ECFE39842BD1A93F58C61A2);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
{
XmlTextWriter_AutoComplete_m6D82B054F5B8A65C9DEFEC095D1AA71B64E01D19(__this, 7, NULL);
__this->___specialAttr_17 = 0;
bool L_0 = __this->___namespaces_16;
if (!L_0)
{
goto IL_01c6_1;
}
}
{
String_t* L_1 = ___prefix0;
if (!L_1)
{
goto IL_0027_1;
}
}
{
String_t* L_2 = ___prefix0;
NullCheck(L_2);
int32_t L_3;
L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL);
if (L_3)
{
goto IL_0027_1;
}
}
{
___prefix0 = (String_t*)NULL;
}
IL_0027_1:
{
String_t* L_4 = ___ns2;
bool L_5;
L_5 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_4, _stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE, NULL);
if (!L_5)
{
goto IL_004b_1;
}
}
{
String_t* L_6 = ___prefix0;
if (L_6)
{
goto IL_004b_1;
}
}
{
String_t* L_7 = ___localName1;
bool L_8;
L_8 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_7, _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3, NULL);
if (!L_8)
{
goto IL_004b_1;
}
}
{
___prefix0 = _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3;
}
IL_004b_1:
{
String_t* L_9 = ___prefix0;
bool L_10;
L_10 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_9, _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158, NULL);
if (!L_10)
{
goto IL_008d_1;
}
}
{
String_t* L_11 = ___localName1;
bool L_12;
L_12 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_11, _stringLiteral1CBC514CBF721C4C5F12F67F33B3E7694BCD1B29, NULL);
if (!L_12)
{
goto IL_0071_1;
}
}
{
__this->___specialAttr_17 = 2;
goto IL_01a0_1;
}
IL_0071_1:
{
String_t* L_13 = ___localName1;
bool L_14;
L_14 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_13, _stringLiteralE1291C4D47635E327ECFE39842BD1A93F58C61A2, NULL);
if (!L_14)
{
goto IL_01a0_1;
}
}
{
__this->___specialAttr_17 = 1;
goto IL_01a0_1;
}
IL_008d_1:
{
String_t* L_15 = ___prefix0;
bool L_16;
L_16 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_15, _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3, NULL);
if (!L_16)
{
goto IL_00e7_1;
}
}
{
String_t* L_17 = ___ns2;
bool L_18;
L_18 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(_stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE, L_17, NULL);
if (!L_18)
{
goto IL_00ba_1;
}
}
{
String_t* L_19 = ___ns2;
if (!L_19)
{
goto IL_00ba_1;
}
}
{
String_t* L_20;
L_20 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEA398BF072FD34DE9A70413411E9B2DE140B1383)), NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_21 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_21);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_21, L_20, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteStartAttribute_m8183A40B9AD5B20014708E4EA83D6D72BCF09D08_RuntimeMethod_var)));
}
IL_00ba_1:
{
String_t* L_22 = ___localName1;
if (!L_22)
{
goto IL_00c5_1;
}
}
{
String_t* L_23 = ___localName1;
NullCheck(L_23);
int32_t L_24;
L_24 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_23, NULL);
if (L_24)
{
goto IL_00d4_1;
}
}
IL_00c5_1:
{
String_t* L_25 = ___prefix0;
___localName1 = L_25;
___prefix0 = (String_t*)NULL;
__this->___prefixForXmlNs_18 = (String_t*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___prefixForXmlNs_18), (void*)(String_t*)NULL);
goto IL_00db_1;
}
IL_00d4_1:
{
String_t* L_26 = ___localName1;
__this->___prefixForXmlNs_18 = L_26;
Il2CppCodeGenWriteBarrier((void**)(&__this->___prefixForXmlNs_18), (void*)L_26);
}
IL_00db_1:
{
__this->___specialAttr_17 = 3;
goto IL_01a0_1;
}
IL_00e7_1:
{
String_t* L_27 = ___prefix0;
if (L_27)
{
goto IL_0127_1;
}
}
{
String_t* L_28 = ___localName1;
bool L_29;
L_29 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_28, _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3, NULL);
if (!L_29)
{
goto IL_0127_1;
}
}
{
String_t* L_30 = ___ns2;
bool L_31;
L_31 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(_stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE, L_30, NULL);
if (!L_31)
{
goto IL_0117_1;
}
}
{
String_t* L_32 = ___ns2;
if (!L_32)
{
goto IL_0117_1;
}
}
{
String_t* L_33;
L_33 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEA398BF072FD34DE9A70413411E9B2DE140B1383)), NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_34 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_34);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_34, L_33, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_34, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteStartAttribute_m8183A40B9AD5B20014708E4EA83D6D72BCF09D08_RuntimeMethod_var)));
}
IL_0117_1:
{
__this->___specialAttr_17 = 3;
__this->___prefixForXmlNs_18 = (String_t*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___prefixForXmlNs_18), (void*)(String_t*)NULL);
goto IL_01a0_1;
}
IL_0127_1:
{
String_t* L_35 = ___ns2;
if (L_35)
{
goto IL_0147_1;
}
}
{
String_t* L_36 = ___prefix0;
if (!L_36)
{
goto IL_01a0_1;
}
}
{
String_t* L_37 = ___prefix0;
int32_t L_38;
L_38 = XmlTextWriter_LookupNamespace_m26D7A144D7D60165AA28DFB54EE15332AD26CB89(__this, L_37, NULL);
if ((!(((uint32_t)L_38) == ((uint32_t)(-1)))))
{
goto IL_01a0_1;
}
}
{
String_t* L_39;
L_39 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA6A4D769FFC4529F0963FE55F3BE08E56AB8438E)), NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_40 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_40);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_40, L_39, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_40, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteStartAttribute_m8183A40B9AD5B20014708E4EA83D6D72BCF09D08_RuntimeMethod_var)));
}
IL_0147_1:
{
String_t* L_41 = ___ns2;
NullCheck(L_41);
int32_t L_42;
L_42 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_41, NULL);
if (L_42)
{
goto IL_0158_1;
}
}
{
String_t* L_43 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
___prefix0 = L_43;
goto IL_01a0_1;
}
IL_0158_1:
{
String_t* L_44 = ___prefix0;
String_t* L_45 = ___ns2;
XmlTextWriter_VerifyPrefixXml_mB5720166A6E438017CE9C6677F77670ACF2BE661(__this, L_44, L_45, NULL);
String_t* L_46 = ___prefix0;
if (!L_46)
{
goto IL_0170_1;
}
}
{
String_t* L_47 = ___prefix0;
int32_t L_48;
L_48 = XmlTextWriter_LookupNamespaceInCurrentScope_m9B79AC784B0CD44E63F209682032370C60B2F6A9(__this, L_47, NULL);
if ((((int32_t)L_48) == ((int32_t)(-1))))
{
goto IL_0170_1;
}
}
{
___prefix0 = (String_t*)NULL;
}
IL_0170_1:
{
String_t* L_49 = ___ns2;
String_t* L_50;
L_50 = XmlTextWriter_FindPrefix_mC510C6C9162CD45A0BAED05D97C21A6CBCC326C7(__this, L_49, NULL);
V_0 = L_50;
String_t* L_51 = V_0;
if (!L_51)
{
goto IL_018c_1;
}
}
{
String_t* L_52 = ___prefix0;
if (!L_52)
{
goto IL_0187_1;
}
}
{
String_t* L_53 = ___prefix0;
String_t* L_54 = V_0;
bool L_55;
L_55 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_53, L_54, NULL);
if (!L_55)
{
goto IL_018c_1;
}
}
IL_0187_1:
{
String_t* L_56 = V_0;
___prefix0 = L_56;
goto IL_01a0_1;
}
IL_018c_1:
{
String_t* L_57 = ___prefix0;
if (L_57)
{
goto IL_0197_1;
}
}
{
String_t* L_58;
L_58 = XmlTextWriter_GeneratePrefix_m4E75B06493E8E7259957E597AB761DFB5994543C(__this, NULL);
___prefix0 = L_58;
}
IL_0197_1:
{
String_t* L_59 = ___prefix0;
String_t* L_60 = ___ns2;
XmlTextWriter_PushNamespace_m85B9B39621886474A21E929986FBB95C51ECC8FF(__this, L_59, L_60, (bool)0, NULL);
}
IL_01a0_1:
{
String_t* L_61 = ___prefix0;
if (!L_61)
{
goto IL_0216_1;
}
}
{
String_t* L_62 = ___prefix0;
NullCheck(L_62);
int32_t L_63;
L_63 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_62, NULL);
if (!L_63)
{
goto IL_0216_1;
}
}
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_64 = __this->___textWriter_1;
String_t* L_65 = ___prefix0;
NullCheck(L_64);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_64, L_65);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_66 = __this->___textWriter_1;
NullCheck(L_66);
VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_66, ((int32_t)58));
goto IL_0216_1;
}
IL_01c6_1:
{
String_t* L_67 = ___ns2;
if (!L_67)
{
goto IL_01d1_1;
}
}
{
String_t* L_68 = ___ns2;
NullCheck(L_68);
int32_t L_69;
L_69 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_68, NULL);
if (L_69)
{
goto IL_01dc_1;
}
}
IL_01d1_1:
{
String_t* L_70 = ___prefix0;
if (!L_70)
{
goto IL_01ec_1;
}
}
{
String_t* L_71 = ___prefix0;
NullCheck(L_71);
int32_t L_72;
L_72 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_71, NULL);
if (!L_72)
{
goto IL_01ec_1;
}
}
IL_01dc_1:
{
String_t* L_73;
L_73 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAC9E93CEA17C181E0B0046090BD8FBFE6027E465)), NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_74 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_74);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_74, L_73, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_74, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteStartAttribute_m8183A40B9AD5B20014708E4EA83D6D72BCF09D08_RuntimeMethod_var)));
}
IL_01ec_1:
{
String_t* L_75 = ___localName1;
bool L_76;
L_76 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_75, _stringLiteral5E5E0B42C7CA8BCA40E77FC8AC4FC4B3C6D556A0, NULL);
if (!L_76)
{
goto IL_0202_1;
}
}
{
__this->___specialAttr_17 = 2;
goto IL_0216_1;
}
IL_0202_1:
{
String_t* L_77 = ___localName1;
bool L_78;
L_78 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_77, _stringLiteralA0BA8D0495A770319CD6FF4DCD0C01BCCC30A901, NULL);
if (!L_78)
{
goto IL_0216_1;
}
}
{
__this->___specialAttr_17 = 1;
}
IL_0216_1:
{
XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* L_79 = __this->___xmlEncoder_2;
int32_t L_80 = __this->___specialAttr_17;
NullCheck(L_79);
XmlTextEncoder_StartAttribute_mF465D7D8BA5D27C78DD05400E137E682BD9FDE7B(L_79, (bool)((!(((uint32_t)L_80) <= ((uint32_t)0)))? 1 : 0), NULL);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_81 = __this->___textWriter_1;
String_t* L_82 = ___localName1;
NullCheck(L_81);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_81, L_82);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_83 = __this->___textWriter_1;
NullCheck(L_83);
VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_83, ((int32_t)61));
Il2CppChar L_84 = __this->___curQuoteChar_15;
Il2CppChar L_85 = __this->___quoteChar_14;
if ((((int32_t)L_84) == ((int32_t)L_85)))
{
goto IL_026e_1;
}
}
{
Il2CppChar L_86 = __this->___quoteChar_14;
__this->___curQuoteChar_15 = L_86;
XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* L_87 = __this->___xmlEncoder_2;
Il2CppChar L_88 = __this->___quoteChar_14;
NullCheck(L_87);
XmlTextEncoder_set_QuoteChar_mE15FB6ECB7FAF6CE0780E1FE421D0802BF38D627_inline(L_87, L_88, NULL);
}
IL_026e_1:
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_89 = __this->___textWriter_1;
Il2CppChar L_90 = __this->___curQuoteChar_15;
NullCheck(L_89);
VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_89, L_90);
goto IL_028b;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0281;
}
throw e;
}
CATCH_0281:
{// begin catch(System.Object)
__this->___currentState_11 = 8;
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteStartAttribute_m8183A40B9AD5B20014708E4EA83D6D72BCF09D08_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_028b:
{
return;
}
}
// System.Void System.Xml.XmlTextWriter::WriteEndAttribute()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteEndAttribute_m6AA5EBE690909A4E12E0B469F0E2339A468506D1 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
XmlTextWriter_AutoComplete_m6D82B054F5B8A65C9DEFEC095D1AA71B64E01D19(__this, 8, NULL);
goto IL_0013;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0009;
}
throw e;
}
CATCH_0009:
{// begin catch(System.Object)
__this->___currentState_11 = 8;
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteEndAttribute_m6AA5EBE690909A4E12E0B469F0E2339A468506D1_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_0013:
{
return;
}
}
// System.Void System.Xml.XmlTextWriter::WriteCData(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteCData_m3A782E85DFE7EA8E4B7805DD1B325B6E187CEF81 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, String_t* ___text0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral651F3DD8CA1557E5BD9B2873C319D3BC64D3128C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral801E316126435DC3E90554FCF745B368C9D874FC);
s_Il2CppMethodInitialized = true;
}
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
{
XmlTextWriter_AutoComplete_m6D82B054F5B8A65C9DEFEC095D1AA71B64E01D19(__this, 3, NULL);
String_t* L_0 = ___text0;
if (!L_0)
{
goto IL_0029_1;
}
}
{
String_t* L_1 = ___text0;
NullCheck(L_1);
int32_t L_2;
L_2 = String_IndexOf_m490810CB7ADA9230AC0F8D78E213A8EFED129F55(L_1, _stringLiteral801E316126435DC3E90554FCF745B368C9D874FC, 4, NULL);
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0029_1;
}
}
{
String_t* L_3;
L_3 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral18088F3052A13DFCCA929557EFBEC73F51E56A7D)), 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*)&XmlTextWriter_WriteCData_m3A782E85DFE7EA8E4B7805DD1B325B6E187CEF81_RuntimeMethod_var)));
}
IL_0029_1:
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_5 = __this->___textWriter_1;
NullCheck(L_5);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_5, _stringLiteral651F3DD8CA1557E5BD9B2873C319D3BC64D3128C);
String_t* L_6 = ___text0;
if (!L_6)
{
goto IL_0048_1;
}
}
{
XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* L_7 = __this->___xmlEncoder_2;
String_t* L_8 = ___text0;
NullCheck(L_7);
XmlTextEncoder_WriteRawWithSurrogateChecking_m122F5F4DFF721F37C940433BCF8285391E51DA00(L_7, L_8, NULL);
}
IL_0048_1:
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_9 = __this->___textWriter_1;
NullCheck(L_9);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_9, _stringLiteral801E316126435DC3E90554FCF745B368C9D874FC);
goto IL_0064;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_005a;
}
throw e;
}
CATCH_005a:
{// begin catch(System.Object)
__this->___currentState_11 = 8;
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteCData_m3A782E85DFE7EA8E4B7805DD1B325B6E187CEF81_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_0064:
{
return;
}
}
// System.Void System.Xml.XmlTextWriter::WriteComment(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteComment_mB3D158EBB5C79E834095C239145B0C40840ADAA5 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, String_t* ___text0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0EE5C75C762D2925310D5C8C6DE4A72136C79CC4);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral69520730213CDED741A5919BB83F6E4B8610EDBA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB0AADDDCB10777660C04FFF62EE090971E9CB5CA);
s_Il2CppMethodInitialized = true;
}
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
{
String_t* L_0 = ___text0;
if (!L_0)
{
goto IL_003c_1;
}
}
{
String_t* L_1 = ___text0;
NullCheck(L_1);
int32_t L_2;
L_2 = String_IndexOf_m490810CB7ADA9230AC0F8D78E213A8EFED129F55(L_1, _stringLiteral69520730213CDED741A5919BB83F6E4B8610EDBA, 4, NULL);
if ((((int32_t)L_2) >= ((int32_t)0)))
{
goto IL_002c_1;
}
}
{
String_t* L_3 = ___text0;
NullCheck(L_3);
int32_t L_4;
L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL);
if (!L_4)
{
goto IL_003c_1;
}
}
{
String_t* L_5 = ___text0;
String_t* L_6 = ___text0;
NullCheck(L_6);
int32_t L_7;
L_7 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_6, NULL);
NullCheck(L_5);
Il2CppChar L_8;
L_8 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_5, ((int32_t)il2cpp_codegen_subtract(L_7, 1)), NULL);
if ((!(((uint32_t)L_8) == ((uint32_t)((int32_t)45)))))
{
goto IL_003c_1;
}
}
IL_002c_1:
{
String_t* L_9;
L_9 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB55DD8F11DBEB2311310B75BD326FABA8DD6E4B9)), 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*)&XmlTextWriter_WriteComment_mB3D158EBB5C79E834095C239145B0C40840ADAA5_RuntimeMethod_var)));
}
IL_003c_1:
{
XmlTextWriter_AutoComplete_m6D82B054F5B8A65C9DEFEC095D1AA71B64E01D19(__this, 2, NULL);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_11 = __this->___textWriter_1;
NullCheck(L_11);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_11, _stringLiteral0EE5C75C762D2925310D5C8C6DE4A72136C79CC4);
String_t* L_12 = ___text0;
if (!L_12)
{
goto IL_0062_1;
}
}
{
XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* L_13 = __this->___xmlEncoder_2;
String_t* L_14 = ___text0;
NullCheck(L_13);
XmlTextEncoder_WriteRawWithSurrogateChecking_m122F5F4DFF721F37C940433BCF8285391E51DA00(L_13, L_14, NULL);
}
IL_0062_1:
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_15 = __this->___textWriter_1;
NullCheck(L_15);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_15, _stringLiteralB0AADDDCB10777660C04FFF62EE090971E9CB5CA);
goto IL_007e;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0074;
}
throw e;
}
CATCH_0074:
{// begin catch(System.Object)
__this->___currentState_11 = 8;
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteComment_mB3D158EBB5C79E834095C239145B0C40840ADAA5_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_007e:
{
return;
}
}
// System.Void System.Xml.XmlTextWriter::WriteProcessingInstruction(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteProcessingInstruction_m180B619FBE705953079230DC6D79089698CE78D8 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, String_t* ___name0, String_t* ___text1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6C80BE31B3A7206EDCC7D55B9B8DC0407E7A87EB);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158);
s_Il2CppMethodInitialized = true;
}
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
{
String_t* L_0 = ___text1;
if (!L_0)
{
goto IL_0022_1;
}
}
{
String_t* L_1 = ___text1;
NullCheck(L_1);
int32_t L_2;
L_2 = String_IndexOf_m490810CB7ADA9230AC0F8D78E213A8EFED129F55(L_1, _stringLiteral6C80BE31B3A7206EDCC7D55B9B8DC0407E7A87EB, 4, NULL);
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0022_1;
}
}
{
String_t* L_3;
L_3 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral193D7E74E7B91DC8A81DF6A1542CDA8A06B2D2C1)), 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*)&XmlTextWriter_WriteProcessingInstruction_m180B619FBE705953079230DC6D79089698CE78D8_RuntimeMethod_var)));
}
IL_0022_1:
{
String_t* L_5 = ___name0;
int32_t L_6;
L_6 = String_Compare_mC553A80AD870F5777F0E8B5E705B0205396B9D3E(L_5, _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158, 5, NULL);
if (L_6)
{
goto IL_004d_1;
}
}
{
StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858* L_7 = __this->___stateTable_10;
il2cpp_codegen_runtime_class_init_inline(XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var);
StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858* L_8 = ((XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_StaticFields*)il2cpp_codegen_static_fields_for(XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var))->___stateTableDocument_28;
if ((!(((RuntimeObject*)(StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858*)L_7) == ((RuntimeObject*)(StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858*)L_8))))
{
goto IL_004d_1;
}
}
{
String_t* L_9;
L_9 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2A5DB3F00E0A45A734A36392B86940BEE1159FC8)), 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*)&XmlTextWriter_WriteProcessingInstruction_m180B619FBE705953079230DC6D79089698CE78D8_RuntimeMethod_var)));
}
IL_004d_1:
{
XmlTextWriter_AutoComplete_m6D82B054F5B8A65C9DEFEC095D1AA71B64E01D19(__this, 0, NULL);
String_t* L_11 = ___name0;
String_t* L_12 = ___text1;
XmlTextWriter_InternalWriteProcessingInstruction_m7AB78E359BBCA2A8300278538C77A186803D9F00(__this, L_11, L_12, NULL);
goto IL_0068;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_005e;
}
throw e;
}
CATCH_005e:
{// begin catch(System.Object)
__this->___currentState_11 = 8;
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteProcessingInstruction_m180B619FBE705953079230DC6D79089698CE78D8_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_0068:
{
return;
}
}
// System.Void System.Xml.XmlTextWriter::WriteEntityRef(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteEntityRef_m254B203A6E2B57AAFB2EFC85642066A7F428153B (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, String_t* ___name0, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
String_t* L_0 = ___name0;
XmlTextWriter_ValidateName_mC44A84A18156918489A8159BF9A8D56BE7B1C715(__this, L_0, (bool)0, NULL);
XmlTextWriter_AutoComplete_m6D82B054F5B8A65C9DEFEC095D1AA71B64E01D19(__this, ((int32_t)9), NULL);
XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* L_1 = __this->___xmlEncoder_2;
String_t* L_2 = ___name0;
NullCheck(L_1);
XmlTextEncoder_WriteEntityRef_mF547A873462F0D3DC2DB310A89E86146355B3ED4(L_1, L_2, NULL);
goto IL_0028;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_001e;
}
throw e;
}
CATCH_001e:
{// begin catch(System.Object)
__this->___currentState_11 = 8;
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteEntityRef_m254B203A6E2B57AAFB2EFC85642066A7F428153B_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_0028:
{
return;
}
}
// System.Void System.Xml.XmlTextWriter::WriteCharEntity(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteCharEntity_mC7E04F0C85AC60C247F5D9F4D67BFA09119C1654 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, Il2CppChar ___ch0, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
XmlTextWriter_AutoComplete_m6D82B054F5B8A65C9DEFEC095D1AA71B64E01D19(__this, ((int32_t)9), NULL);
XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* L_0 = __this->___xmlEncoder_2;
Il2CppChar L_1 = ___ch0;
NullCheck(L_0);
XmlTextEncoder_WriteCharEntity_m591FE258908A35F6DD68111001E3F753603A83EE(L_0, L_1, NULL);
goto IL_0020;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0016;
}
throw e;
}
CATCH_0016:
{// begin catch(System.Object)
__this->___currentState_11 = 8;
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteCharEntity_mC7E04F0C85AC60C247F5D9F4D67BFA09119C1654_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_0020:
{
return;
}
}
// System.Void System.Xml.XmlTextWriter::WriteWhitespace(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteWhitespace_m6208C06449C23E262CE6D9C218910D863385BE95 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, String_t* ___ws0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
{
String_t* L_0 = ___ws0;
if (L_0)
{
goto IL_000a_1;
}
}
{
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
___ws0 = L_1;
}
IL_000a_1:
{
XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_2 = (&__this->___xmlCharType_24);
String_t* L_3 = ___ws0;
bool L_4;
L_4 = XmlCharType_IsOnlyWhitespace_m6A7AD69BFF7BE6878F6984C952284C0755601490(L_2, L_3, NULL);
if (L_4)
{
goto IL_0028_1;
}
}
{
String_t* L_5;
L_5 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral36C331EB963AAABADAA628EA959A95F64ED7976C)), 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*)&XmlTextWriter_WriteWhitespace_m6208C06449C23E262CE6D9C218910D863385BE95_RuntimeMethod_var)));
}
IL_0028_1:
{
XmlTextWriter_AutoComplete_m6D82B054F5B8A65C9DEFEC095D1AA71B64E01D19(__this, ((int32_t)12), NULL);
XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* L_7 = __this->___xmlEncoder_2;
String_t* L_8 = ___ws0;
NullCheck(L_7);
XmlTextEncoder_Write_m50A8B7FD9B3EA8856AE8EA6EEE4FFD02E06726A4(L_7, L_8, NULL);
goto IL_0048;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_003e;
}
throw e;
}
CATCH_003e:
{// begin catch(System.Object)
__this->___currentState_11 = 8;
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteWhitespace_m6208C06449C23E262CE6D9C218910D863385BE95_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_0048:
{
return;
}
}
// System.Void System.Xml.XmlTextWriter::WriteString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteString_m2D9D3244DAE1D149747942DF2B4B2D1F9A352737 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, String_t* ___text0, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
{
String_t* L_0 = ___text0;
if (!L_0)
{
goto IL_001f_1;
}
}
{
String_t* L_1 = ___text0;
NullCheck(L_1);
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL);
if (!L_2)
{
goto IL_001f_1;
}
}
{
XmlTextWriter_AutoComplete_m6D82B054F5B8A65C9DEFEC095D1AA71B64E01D19(__this, ((int32_t)9), NULL);
XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* L_3 = __this->___xmlEncoder_2;
String_t* L_4 = ___text0;
NullCheck(L_3);
XmlTextEncoder_Write_m50A8B7FD9B3EA8856AE8EA6EEE4FFD02E06726A4(L_3, L_4, NULL);
}
IL_001f_1:
{
goto IL_002b;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0021;
}
throw e;
}
CATCH_0021:
{// begin catch(System.Object)
__this->___currentState_11 = 8;
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteString_m2D9D3244DAE1D149747942DF2B4B2D1F9A352737_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_002b:
{
return;
}
}
// System.Void System.Xml.XmlTextWriter::WriteSurrogateCharEntity(System.Char,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteSurrogateCharEntity_m4101F4023C03DDB2466E4E63358E429A4FFBCC44 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, Il2CppChar ___lowChar0, Il2CppChar ___highChar1, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
XmlTextWriter_AutoComplete_m6D82B054F5B8A65C9DEFEC095D1AA71B64E01D19(__this, ((int32_t)9), NULL);
XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* L_0 = __this->___xmlEncoder_2;
Il2CppChar L_1 = ___lowChar0;
Il2CppChar L_2 = ___highChar1;
NullCheck(L_0);
XmlTextEncoder_WriteSurrogateCharEntity_mA18F7DC2EB852A7313F82E2AD7B2F9B9BBD537B5(L_0, L_1, L_2, NULL);
goto IL_0021;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0017;
}
throw e;
}
CATCH_0017:
{// begin catch(System.Object)
__this->___currentState_11 = 8;
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteSurrogateCharEntity_m4101F4023C03DDB2466E4E63358E429A4FFBCC44_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_0021:
{
return;
}
}
// System.Void System.Xml.XmlTextWriter::WriteChars(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteChars_m360D9A783C5846BEE36A50CF99033C6A963AD1CD (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
XmlTextWriter_AutoComplete_m6D82B054F5B8A65C9DEFEC095D1AA71B64E01D19(__this, ((int32_t)9), NULL);
XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* L_0 = __this->___xmlEncoder_2;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = ___buffer0;
int32_t L_2 = ___index1;
int32_t L_3 = ___count2;
NullCheck(L_0);
XmlTextEncoder_Write_mB5FB6D7AE2A11AD7D8BD3A1923CEE6FA96448131(L_0, L_1, L_2, L_3, NULL);
goto IL_0022;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0018;
}
throw e;
}
CATCH_0018:
{// begin catch(System.Object)
__this->___currentState_11 = 8;
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteChars_m360D9A783C5846BEE36A50CF99033C6A963AD1CD_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_0022:
{
return;
}
}
// System.Void System.Xml.XmlTextWriter::WriteRaw(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteRaw_m3C7F182AECC5AD5610443A5FC732BD663ABA2601 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
XmlTextWriter_AutoComplete_m6D82B054F5B8A65C9DEFEC095D1AA71B64E01D19(__this, ((int32_t)11), NULL);
XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* L_0 = __this->___xmlEncoder_2;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = ___buffer0;
int32_t L_2 = ___index1;
int32_t L_3 = ___count2;
NullCheck(L_0);
XmlTextEncoder_WriteRaw_m3003736A7A660B71BF6890C087EB7AE70C9388C7(L_0, L_1, L_2, L_3, NULL);
goto IL_0022;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0018;
}
throw e;
}
CATCH_0018:
{// begin catch(System.Object)
__this->___currentState_11 = 8;
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteRaw_m3C7F182AECC5AD5610443A5FC732BD663ABA2601_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_0022:
{
return;
}
}
// System.Void System.Xml.XmlTextWriter::WriteRaw(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteRaw_mAC040EADB0B191C0502EB056B23D9539AA5DD603 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, String_t* ___data0, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
XmlTextWriter_AutoComplete_m6D82B054F5B8A65C9DEFEC095D1AA71B64E01D19(__this, ((int32_t)11), NULL);
XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* L_0 = __this->___xmlEncoder_2;
String_t* L_1 = ___data0;
NullCheck(L_0);
XmlTextEncoder_WriteRawWithSurrogateChecking_m122F5F4DFF721F37C940433BCF8285391E51DA00(L_0, L_1, NULL);
goto IL_0020;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0016;
}
throw e;
}
CATCH_0016:
{// begin catch(System.Object)
__this->___currentState_11 = 8;
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteRaw_mAC040EADB0B191C0502EB056B23D9539AA5DD603_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_0020:
{
return;
}
}
// System.Void System.Xml.XmlTextWriter::WriteBase64(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteBase64_m08FE6AE1442ECE4F893BB1D11E55B685A18AAFF9 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextWriterBase64Encoder_tC7209F119916DF622459E830377C23D7BFA2B30D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
{
bool L_0 = __this->___flush_19;
if (L_0)
{
goto IL_0010_1;
}
}
{
XmlTextWriter_AutoComplete_m6D82B054F5B8A65C9DEFEC095D1AA71B64E01D19(__this, ((int32_t)10), NULL);
}
IL_0010_1:
{
__this->___flush_19 = (bool)1;
XmlTextWriterBase64Encoder_tC7209F119916DF622459E830377C23D7BFA2B30D* L_1 = __this->___base64Encoder_13;
if (L_1)
{
goto IL_0030_1;
}
}
{
XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* L_2 = __this->___xmlEncoder_2;
XmlTextWriterBase64Encoder_tC7209F119916DF622459E830377C23D7BFA2B30D* L_3 = (XmlTextWriterBase64Encoder_tC7209F119916DF622459E830377C23D7BFA2B30D*)il2cpp_codegen_object_new(XmlTextWriterBase64Encoder_tC7209F119916DF622459E830377C23D7BFA2B30D_il2cpp_TypeInfo_var);
NullCheck(L_3);
XmlTextWriterBase64Encoder__ctor_m18789A533CA51461920658F5FECF7ABC0EF63531(L_3, L_2, NULL);
__this->___base64Encoder_13 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___base64Encoder_13), (void*)L_3);
}
IL_0030_1:
{
XmlTextWriterBase64Encoder_tC7209F119916DF622459E830377C23D7BFA2B30D* L_4 = __this->___base64Encoder_13;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = ___buffer0;
int32_t L_6 = ___index1;
int32_t L_7 = ___count2;
NullCheck(L_4);
Base64Encoder_Encode_m93B7F06935043B4D5A76BDAD576A18EB9703AAFA(L_4, L_5, L_6, L_7, NULL);
goto IL_004a;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0040;
}
throw e;
}
CATCH_0040:
{// begin catch(System.Object)
__this->___currentState_11 = 8;
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteBase64_m08FE6AE1442ECE4F893BB1D11E55B685A18AAFF9_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_004a:
{
return;
}
}
// System.Void System.Xml.XmlTextWriter::WriteBinHex(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteBinHex_m8671C515C6CE4DCF795F9D5501414F51D6147FD3 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
XmlTextWriter_AutoComplete_m6D82B054F5B8A65C9DEFEC095D1AA71B64E01D19(__this, ((int32_t)9), NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___buffer0;
int32_t L_1 = ___index1;
int32_t L_2 = ___count2;
BinHexEncoder_Encode_m0DA74DCEE12EEE3FCB3796CE79718F100ACB2341(L_0, L_1, L_2, __this, NULL);
goto IL_001d;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0013;
}
throw e;
}
CATCH_0013:
{// begin catch(System.Object)
__this->___currentState_11 = 8;
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteBinHex_m8671C515C6CE4DCF795F9D5501414F51D6147FD3_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_001d:
{
return;
}
}
// System.Xml.WriteState System.Xml.XmlTextWriter::get_WriteState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextWriter_get_WriteState_m2D73C223CA6F8883A206FDEED27BFD25A6E3C88F (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->___currentState_11;
V_0 = L_0;
int32_t L_1 = V_0;
switch (L_1)
{
case 0:
{
goto IL_0037;
}
case 1:
{
goto IL_0039;
}
case 2:
{
goto IL_0039;
}
case 3:
{
goto IL_003b;
}
case 4:
{
goto IL_003d;
}
case 5:
{
goto IL_003f;
}
case 6:
{
goto IL_003d;
}
case 7:
{
goto IL_003f;
}
case 8:
{
goto IL_0041;
}
case 9:
{
goto IL_0043;
}
}
}
{
goto IL_0045;
}
IL_0037:
{
return (int32_t)(0);
}
IL_0039:
{
return (int32_t)(1);
}
IL_003b:
{
return (int32_t)(2);
}
IL_003d:
{
return (int32_t)(3);
}
IL_003f:
{
return (int32_t)(4);
}
IL_0041:
{
return (int32_t)(6);
}
IL_0043:
{
return (int32_t)(5);
}
IL_0045:
{
return (int32_t)(6);
}
}
// System.Void System.Xml.XmlTextWriter::Close()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_Close_mC6869F52623D5C5024CBC333916E09DBE102F3FD (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_000b:
{// begin finally (depth: 1)
__this->___currentState_11 = ((int32_t)9);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0 = __this->___textWriter_1;
NullCheck(L_0);
VirtualActionInvoker0::Invoke(8 /* System.Void System.IO.TextWriter::Close() */, L_0);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
try
{// begin try (depth: 2)
XmlTextWriter_AutoCompleteAll_m4B6E34BC27932EF01C546E2C1CBB70BF21721209(__this, NULL);
goto IL_001f;
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0008_1;
}
throw e;
}
CATCH_0008_1:
{// begin catch(System.Object)
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_001f;
}// end catch (depth: 2)
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_001f:
{
return;
}
}
// System.Void System.Xml.XmlTextWriter::Flush()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_Flush_m96D39C03BBB39C7A0D4247B8F9C52A2A79319D0E (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, const RuntimeMethod* method)
{
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0 = __this->___textWriter_1;
NullCheck(L_0);
VirtualActionInvoker0::Invoke(10 /* System.Void System.IO.TextWriter::Flush() */, L_0);
return;
}
}
// System.String System.Xml.XmlTextWriter::LookupPrefix(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextWriter_LookupPrefix_mBB324890CDBA8E9C42A33D5BB4903617056B6D72 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, String_t* ___ns0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
String_t* L_0 = ___ns0;
if (!L_0)
{
goto IL_000b;
}
}
{
String_t* L_1 = ___ns0;
NullCheck(L_1);
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL);
if (L_2)
{
goto IL_001b;
}
}
IL_000b:
{
String_t* L_3;
L_3 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4F463628A5B55C40369849BC669644FDA7E2FD4E)), 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*)&XmlTextWriter_LookupPrefix_mBB324890CDBA8E9C42A33D5BB4903617056B6D72_RuntimeMethod_var)));
}
IL_001b:
{
String_t* L_5 = ___ns0;
String_t* L_6;
L_6 = XmlTextWriter_FindPrefix_mC510C6C9162CD45A0BAED05D97C21A6CBCC326C7(__this, L_5, NULL);
V_0 = L_6;
String_t* L_7 = V_0;
if (L_7)
{
goto IL_004a;
}
}
{
String_t* L_8 = ___ns0;
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_9 = __this->___stack_8;
int32_t L_10 = __this->___top_9;
NullCheck(L_9);
String_t* L_11 = ((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->___defaultNs_2;
bool L_12;
L_12 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_8, L_11, NULL);
if (!L_12)
{
goto IL_004a;
}
}
{
String_t* L_13 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
V_0 = L_13;
}
IL_004a:
{
String_t* L_14 = V_0;
return L_14;
}
}
// System.Void System.Xml.XmlTextWriter::StartDocument(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_StartDocument_m6D971130F93929411490C88EBC103B4B71AA311F (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, int32_t ___standalone0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral11AC5E2BD66016383281878F99D761B6B9AB5F11);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7BFA33A11F0B12AF1B7FA1D9BA996EAE1EF77B49);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral80320AA84C189C1C7B90FE923851A42C57CE615C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAE3A78C82F0ADEB13A1EA569DE4A0A436C7CED3D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCEB92A42478C96055FB865CE097903AF4512BD10);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralED7D39EDF70E08FE57B2522D102BF72B9E5D5331);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t* V_0 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
StringBuilder_t* G_B7_0 = NULL;
StringBuilder_t* G_B6_0 = NULL;
String_t* G_B8_0 = NULL;
StringBuilder_t* G_B8_1 = NULL;
try
{// begin try (depth: 1)
{
int32_t L_0 = __this->___currentState_11;
if (!L_0)
{
goto IL_0018_1;
}
}
{
String_t* L_1;
L_1 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB92045191B4D9A7E7E55F5BE6BF1823D09F9CA9F)), 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*)&XmlTextWriter_StartDocument_m6D971130F93929411490C88EBC103B4B71AA311F_RuntimeMethod_var)));
}
IL_0018_1:
{
il2cpp_codegen_runtime_class_init_inline(XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var);
StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858* L_3 = ((XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_StaticFields*)il2cpp_codegen_static_fields_for(XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var))->___stateTableDocument_28;
__this->___stateTable_10 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___stateTable_10), (void*)L_3);
__this->___currentState_11 = 1;
StringBuilder_t* L_4 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
NullCheck(L_4);
StringBuilder__ctor_m2619CA8D2C3476DF1A302D9D941498BB1C6164C5(L_4, ((int32_t)128), NULL);
V_0 = L_4;
StringBuilder_t* L_5 = V_0;
Il2CppChar* L_6 = (&__this->___quoteChar_14);
String_t* L_7;
L_7 = Char_ToString_m2A308731F9577C06AF3C0901234E2EAC8327410C(L_6, NULL);
Il2CppChar* L_8 = (&__this->___quoteChar_14);
String_t* L_9;
L_9 = Char_ToString_m2A308731F9577C06AF3C0901234E2EAC8327410C(L_8, NULL);
String_t* L_10;
L_10 = String_Concat_mF8B69BE42B5C5ABCAD3C176FBBE3010E0815D65D(_stringLiteralCEB92A42478C96055FB865CE097903AF4512BD10, L_7, _stringLiteral11AC5E2BD66016383281878F99D761B6B9AB5F11, L_9, NULL);
NullCheck(L_5);
StringBuilder_t* L_11;
L_11 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_5, L_10, NULL);
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_12 = __this->___encoding_3;
if (!L_12)
{
goto IL_00a1_1;
}
}
{
StringBuilder_t* L_13 = V_0;
NullCheck(L_13);
StringBuilder_t* L_14;
L_14 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_13, _stringLiteral80320AA84C189C1C7B90FE923851A42C57CE615C, NULL);
StringBuilder_t* L_15 = V_0;
Il2CppChar L_16 = __this->___quoteChar_14;
NullCheck(L_15);
StringBuilder_t* L_17;
L_17 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_15, L_16, NULL);
StringBuilder_t* L_18 = V_0;
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_19 = __this->___encoding_3;
NullCheck(L_19);
String_t* L_20;
L_20 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Text.Encoding::get_WebName() */, L_19);
NullCheck(L_18);
StringBuilder_t* L_21;
L_21 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_18, L_20, NULL);
StringBuilder_t* L_22 = V_0;
Il2CppChar L_23 = __this->___quoteChar_14;
NullCheck(L_22);
StringBuilder_t* L_24;
L_24 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_22, L_23, NULL);
}
IL_00a1_1:
{
int32_t L_25 = ___standalone0;
if ((((int32_t)L_25) < ((int32_t)0)))
{
goto IL_00e1_1;
}
}
{
StringBuilder_t* L_26 = V_0;
NullCheck(L_26);
StringBuilder_t* L_27;
L_27 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_26, _stringLiteralAE3A78C82F0ADEB13A1EA569DE4A0A436C7CED3D, NULL);
StringBuilder_t* L_28 = V_0;
Il2CppChar L_29 = __this->___quoteChar_14;
NullCheck(L_28);
StringBuilder_t* L_30;
L_30 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_28, L_29, NULL);
StringBuilder_t* L_31 = V_0;
int32_t L_32 = ___standalone0;
G_B6_0 = L_31;
if (!L_32)
{
G_B7_0 = L_31;
goto IL_00c9_1;
}
}
{
G_B8_0 = _stringLiteralED7D39EDF70E08FE57B2522D102BF72B9E5D5331;
G_B8_1 = G_B6_0;
goto IL_00ce_1;
}
IL_00c9_1:
{
G_B8_0 = _stringLiteral7BFA33A11F0B12AF1B7FA1D9BA996EAE1EF77B49;
G_B8_1 = G_B7_0;
}
IL_00ce_1:
{
NullCheck(G_B8_1);
StringBuilder_t* L_33;
L_33 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(G_B8_1, G_B8_0, NULL);
StringBuilder_t* L_34 = V_0;
Il2CppChar L_35 = __this->___quoteChar_14;
NullCheck(L_34);
StringBuilder_t* L_36;
L_36 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_34, L_35, NULL);
}
IL_00e1_1:
{
StringBuilder_t* L_37 = V_0;
NullCheck(L_37);
String_t* L_38;
L_38 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_37);
XmlTextWriter_InternalWriteProcessingInstruction_m7AB78E359BBCA2A8300278538C77A186803D9F00(__this, _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158, L_38, NULL);
goto IL_00fe;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_00f4;
}
throw e;
}
CATCH_00f4:
{// begin catch(System.Object)
__this->___currentState_11 = 8;
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_StartDocument_m6D971130F93929411490C88EBC103B4B71AA311F_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_00fe:
{
return;
}
}
// System.Void System.Xml.XmlTextWriter::AutoComplete(System.Xml.XmlTextWriter/Token)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_AutoComplete_m6D82B054F5B8A65C9DEFEC095D1AA71B64E01D19 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, int32_t ___token0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = __this->___currentState_11;
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)9)))))
{
goto IL_001a;
}
}
{
String_t* L_1;
L_1 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral952F621460E9250177F13FF0BEAD9E00E2B86302)), 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*)&XmlTextWriter_AutoComplete_m6D82B054F5B8A65C9DEFEC095D1AA71B64E01D19_RuntimeMethod_var)));
}
IL_001a:
{
int32_t L_3 = __this->___currentState_11;
if ((!(((uint32_t)L_3) == ((uint32_t)8))))
{
goto IL_004d;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = L_4;
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var)));
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_6 = ((XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var))))->___tokenName_26;
int32_t L_7 = ___token0;
NullCheck(L_6);
int32_t L_8 = L_7;
String_t* L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
NullCheck(L_5);
ArrayElementTypeCheck (L_5, L_9);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_9);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_10 = L_5;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_11 = ((XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var))))->___stateName_25;
NullCheck(L_11);
int32_t L_12 = 8;
String_t* L_13 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
NullCheck(L_10);
ArrayElementTypeCheck (L_10, L_13);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_13);
String_t* L_14;
L_14 = Res_GetString_mB929E696BF2E2F27CD03C0B61301A9DFE2FDEEF9(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral23E65142459FB1BF5009AD8736318547A5DFE850)), L_10, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_15 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_15);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_15, L_14, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_AutoComplete_m6D82B054F5B8A65C9DEFEC095D1AA71B64E01D19_RuntimeMethod_var)));
}
IL_004d:
{
StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858* L_16 = __this->___stateTable_10;
int32_t L_17 = ___token0;
int32_t L_18 = __this->___currentState_11;
NullCheck(L_16);
int32_t L_19 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply((int32_t)L_17, 8)), (int32_t)L_18));
int32_t L_20 = (int32_t)(L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
V_0 = L_20;
int32_t L_21 = V_0;
if ((!(((uint32_t)L_21) == ((uint32_t)8))))
{
goto IL_0092;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_22 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_23 = L_22;
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var)));
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_24 = ((XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var))))->___tokenName_26;
int32_t L_25 = ___token0;
NullCheck(L_24);
int32_t L_26 = L_25;
String_t* L_27 = (L_24)->GetAt(static_cast<il2cpp_array_size_t>(L_26));
NullCheck(L_23);
ArrayElementTypeCheck (L_23, L_27);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_27);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_28 = L_23;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_29 = ((XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var))))->___stateName_25;
int32_t L_30 = __this->___currentState_11;
NullCheck(L_29);
int32_t L_31 = L_30;
String_t* L_32 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_31));
NullCheck(L_28);
ArrayElementTypeCheck (L_28, L_32);
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_32);
String_t* L_33;
L_33 = Res_GetString_mB929E696BF2E2F27CD03C0B61301A9DFE2FDEEF9(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral23E65142459FB1BF5009AD8736318547A5DFE850)), L_28, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_34 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_34);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_34, L_33, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_34, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_AutoComplete_m6D82B054F5B8A65C9DEFEC095D1AA71B64E01D19_RuntimeMethod_var)));
}
IL_0092:
{
int32_t L_35 = ___token0;
switch (L_35)
{
case 0:
{
goto IL_00f3;
}
case 1:
{
goto IL_00d1;
}
case 2:
{
goto IL_00f3;
}
case 3:
{
goto IL_00f3;
}
case 4:
{
goto IL_00f3;
}
case 5:
{
goto IL_015d;
}
case 6:
{
goto IL_015d;
}
case 7:
{
goto IL_01b5;
}
case 8:
{
goto IL_01fc;
}
case 9:
{
goto IL_0212;
}
case 10:
{
goto IL_0212;
}
case 11:
{
goto IL_0212;
}
case 12:
{
goto IL_0212;
}
}
}
{
goto IL_025c;
}
IL_00d1:
{
bool L_36 = __this->___indented_5;
if (!L_36)
{
goto IL_026c;
}
}
{
int32_t L_37 = __this->___currentState_11;
if (!L_37)
{
goto IL_026c;
}
}
{
XmlTextWriter_Indent_m8FDE99DA08161BAF95B52060FE665815467653AC(__this, (bool)0, NULL);
goto IL_026c;
}
IL_00f3:
{
int32_t L_38 = __this->___currentState_11;
if ((!(((uint32_t)L_38) == ((uint32_t)4))))
{
goto IL_010b;
}
}
{
XmlTextWriter_WriteEndAttributeQuote_mB416CDC30D6D53A1CA083DB23889440E87AFF2AD(__this, NULL);
XmlTextWriter_WriteEndStartTag_m3D5BD66F7B3C09F72E943C0E5C865371905D552E(__this, (bool)0, NULL);
goto IL_011b;
}
IL_010b:
{
int32_t L_39 = __this->___currentState_11;
if ((!(((uint32_t)L_39) == ((uint32_t)3))))
{
goto IL_011b;
}
}
{
XmlTextWriter_WriteEndStartTag_m3D5BD66F7B3C09F72E943C0E5C865371905D552E(__this, (bool)0, NULL);
}
IL_011b:
{
int32_t L_40 = ___token0;
if ((!(((uint32_t)L_40) == ((uint32_t)3))))
{
goto IL_013b;
}
}
{
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_41 = __this->___stack_8;
int32_t L_42 = __this->___top_9;
NullCheck(L_41);
((L_41)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_42)))->___mixed_8 = (bool)1;
goto IL_026c;
}
IL_013b:
{
bool L_43 = __this->___indented_5;
if (!L_43)
{
goto IL_026c;
}
}
{
int32_t L_44 = __this->___currentState_11;
if (!L_44)
{
goto IL_026c;
}
}
{
XmlTextWriter_Indent_m8FDE99DA08161BAF95B52060FE665815467653AC(__this, (bool)0, NULL);
goto IL_026c;
}
IL_015d:
{
bool L_45 = __this->___flush_19;
if (!L_45)
{
goto IL_016b;
}
}
{
XmlTextWriter_FlushEncoders_mF122D55A7BB079E9DA00A0055CFC78277584A093(__this, NULL);
}
IL_016b:
{
int32_t L_46 = __this->___currentState_11;
if ((!(((uint32_t)L_46) == ((uint32_t)4))))
{
goto IL_017a;
}
}
{
XmlTextWriter_WriteEndAttributeQuote_mB416CDC30D6D53A1CA083DB23889440E87AFF2AD(__this, NULL);
}
IL_017a:
{
int32_t L_47 = __this->___currentState_11;
if ((!(((uint32_t)L_47) == ((uint32_t)5))))
{
goto IL_0188;
}
}
{
___token0 = 6;
goto IL_0192;
}
IL_0188:
{
int32_t L_48 = ___token0;
XmlTextWriter_WriteEndStartTag_m3D5BD66F7B3C09F72E943C0E5C865371905D552E(__this, (bool)((((int32_t)L_48) == ((int32_t)5))? 1 : 0), NULL);
}
IL_0192:
{
il2cpp_codegen_runtime_class_init_inline(XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var);
StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858* L_49 = ((XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_StaticFields*)il2cpp_codegen_static_fields_for(XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var))->___stateTableDocument_28;
StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858* L_50 = __this->___stateTable_10;
if ((!(((RuntimeObject*)(StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858*)L_49) == ((RuntimeObject*)(StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858*)L_50))))
{
goto IL_026c;
}
}
{
int32_t L_51 = __this->___top_9;
if ((!(((uint32_t)L_51) == ((uint32_t)1))))
{
goto IL_026c;
}
}
{
V_0 = 7;
goto IL_026c;
}
IL_01b5:
{
bool L_52 = __this->___flush_19;
if (!L_52)
{
goto IL_01c3;
}
}
{
XmlTextWriter_FlushEncoders_mF122D55A7BB079E9DA00A0055CFC78277584A093(__this, NULL);
}
IL_01c3:
{
int32_t L_53 = __this->___currentState_11;
if ((!(((uint32_t)L_53) == ((uint32_t)4))))
{
goto IL_01e4;
}
}
{
XmlTextWriter_WriteEndAttributeQuote_mB416CDC30D6D53A1CA083DB23889440E87AFF2AD(__this, NULL);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_54 = __this->___textWriter_1;
NullCheck(L_54);
VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_54, ((int32_t)32));
goto IL_026c;
}
IL_01e4:
{
int32_t L_55 = __this->___currentState_11;
if ((!(((uint32_t)L_55) == ((uint32_t)3))))
{
goto IL_026c;
}
}
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_56 = __this->___textWriter_1;
NullCheck(L_56);
VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_56, ((int32_t)32));
goto IL_026c;
}
IL_01fc:
{
bool L_57 = __this->___flush_19;
if (!L_57)
{
goto IL_020a;
}
}
{
XmlTextWriter_FlushEncoders_mF122D55A7BB079E9DA00A0055CFC78277584A093(__this, NULL);
}
IL_020a:
{
XmlTextWriter_WriteEndAttributeQuote_mB416CDC30D6D53A1CA083DB23889440E87AFF2AD(__this, NULL);
goto IL_026c;
}
IL_0212:
{
int32_t L_58 = ___token0;
if ((((int32_t)L_58) == ((int32_t)((int32_t)10))))
{
goto IL_0225;
}
}
{
bool L_59 = __this->___flush_19;
if (!L_59)
{
goto IL_0225;
}
}
{
XmlTextWriter_FlushEncoders_mF122D55A7BB079E9DA00A0055CFC78277584A093(__this, NULL);
}
IL_0225:
{
int32_t L_60 = __this->___currentState_11;
if ((!(((uint32_t)L_60) == ((uint32_t)3))))
{
goto IL_023f;
}
}
{
int32_t L_61 = __this->___lastToken_12;
if ((((int32_t)L_61) == ((int32_t)((int32_t)9))))
{
goto IL_023f;
}
}
{
XmlTextWriter_WriteEndStartTag_m3D5BD66F7B3C09F72E943C0E5C865371905D552E(__this, (bool)0, NULL);
}
IL_023f:
{
int32_t L_62 = V_0;
if ((!(((uint32_t)L_62) == ((uint32_t)5))))
{
goto IL_026c;
}
}
{
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_63 = __this->___stack_8;
int32_t L_64 = __this->___top_9;
NullCheck(L_63);
((L_63)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_64)))->___mixed_8 = (bool)1;
goto IL_026c;
}
IL_025c:
{
String_t* L_65;
L_65 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFBD1A9745DCC4D80697D44756437CCB57698AE21)), NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_66 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_66);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_66, L_65, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_66, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_AutoComplete_m6D82B054F5B8A65C9DEFEC095D1AA71B64E01D19_RuntimeMethod_var)));
}
IL_026c:
{
int32_t L_67 = V_0;
__this->___currentState_11 = L_67;
int32_t L_68 = ___token0;
__this->___lastToken_12 = L_68;
return;
}
}
// System.Void System.Xml.XmlTextWriter::AutoCompleteAll()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_AutoCompleteAll_m4B6E34BC27932EF01C546E2C1CBB70BF21721209 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___flush_19;
if (!L_0)
{
goto IL_0016;
}
}
{
XmlTextWriter_FlushEncoders_mF122D55A7BB079E9DA00A0055CFC78277584A093(__this, NULL);
goto IL_0016;
}
IL_0010:
{
VirtualActionInvoker0::Invoke(10 /* System.Void System.Xml.XmlWriter::WriteEndElement() */, __this);
}
IL_0016:
{
int32_t L_1 = __this->___top_9;
if ((((int32_t)L_1) > ((int32_t)0)))
{
goto IL_0010;
}
}
{
return;
}
}
// System.Void System.Xml.XmlTextWriter::InternalWriteEndElement(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_InternalWriteEndElement_m1FEBF6E0816D4B25A83B098093170CA61265CA6B (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, bool ___longFormat0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* G_B4_0 = NULL;
XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* G_B3_0 = NULL;
int32_t G_B5_0 = 0;
XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* G_B5_1 = NULL;
try
{// begin try (depth: 1)
{
int32_t L_0 = __this->___top_9;
if ((((int32_t)L_0) > ((int32_t)0)))
{
goto IL_0019_1;
}
}
{
String_t* L_1;
L_1 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral67171AD8B6817F7CF25B89C98234BCDA36D476FC)), 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*)&XmlTextWriter_InternalWriteEndElement_m1FEBF6E0816D4B25A83B098093170CA61265CA6B_RuntimeMethod_var)));
}
IL_0019_1:
{
bool L_3 = ___longFormat0;
G_B3_0 = __this;
if (L_3)
{
G_B4_0 = __this;
goto IL_0020_1;
}
}
{
G_B5_0 = 5;
G_B5_1 = G_B3_0;
goto IL_0021_1;
}
IL_0020_1:
{
G_B5_0 = 6;
G_B5_1 = G_B4_0;
}
IL_0021_1:
{
NullCheck(G_B5_1);
XmlTextWriter_AutoComplete_m6D82B054F5B8A65C9DEFEC095D1AA71B64E01D19(G_B5_1, G_B5_0, NULL);
int32_t L_4 = __this->___lastToken_12;
if ((!(((uint32_t)L_4) == ((uint32_t)6))))
{
goto IL_00d7_1;
}
}
{
bool L_5 = __this->___indented_5;
if (!L_5)
{
goto IL_0041_1;
}
}
{
XmlTextWriter_Indent_m8FDE99DA08161BAF95B52060FE665815467653AC(__this, (bool)1, NULL);
}
IL_0041_1:
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_6 = __this->___textWriter_1;
NullCheck(L_6);
VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_6, ((int32_t)60));
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_7 = __this->___textWriter_1;
NullCheck(L_7);
VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_7, ((int32_t)47));
bool L_8 = __this->___namespaces_16;
if (!L_8)
{
goto IL_00a9_1;
}
}
{
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_9 = __this->___stack_8;
int32_t L_10 = __this->___top_9;
NullCheck(L_9);
String_t* L_11 = ((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->___prefix_1;
if (!L_11)
{
goto IL_00a9_1;
}
}
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_12 = __this->___textWriter_1;
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_13 = __this->___stack_8;
int32_t L_14 = __this->___top_9;
NullCheck(L_13);
String_t* L_15 = ((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->___prefix_1;
NullCheck(L_12);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_12, L_15);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_16 = __this->___textWriter_1;
NullCheck(L_16);
VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_16, ((int32_t)58));
}
IL_00a9_1:
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_17 = __this->___textWriter_1;
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_18 = __this->___stack_8;
int32_t L_19 = __this->___top_9;
NullCheck(L_18);
String_t* L_20 = ((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->___name_0;
NullCheck(L_17);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_17, L_20);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_21 = __this->___textWriter_1;
NullCheck(L_21);
VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_21, ((int32_t)62));
}
IL_00d7_1:
{
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_22 = __this->___stack_8;
int32_t L_23 = __this->___top_9;
NullCheck(L_22);
int32_t L_24 = ((L_22)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_23)))->___prevNsTop_6;
V_0 = L_24;
bool L_25 = __this->___useNsHashtable_23;
if (!L_25)
{
goto IL_010e_1;
}
}
{
int32_t L_26 = V_0;
int32_t L_27 = __this->___nsTop_21;
if ((((int32_t)L_26) >= ((int32_t)L_27)))
{
goto IL_010e_1;
}
}
{
int32_t L_28 = V_0;
int32_t L_29 = __this->___nsTop_21;
XmlTextWriter_PopNamespaces_mE1AF0C6EBC567887BAA9E6DD4175AEBF7464A046(__this, ((int32_t)il2cpp_codegen_add(L_28, 1)), L_29, NULL);
}
IL_010e_1:
{
int32_t L_30 = V_0;
__this->___nsTop_21 = L_30;
int32_t L_31 = __this->___top_9;
__this->___top_9 = ((int32_t)il2cpp_codegen_subtract(L_31, 1));
goto IL_012f;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0125;
}
throw e;
}
CATCH_0125:
{// begin catch(System.Object)
__this->___currentState_11 = 8;
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_InternalWriteEndElement_m1FEBF6E0816D4B25A83B098093170CA61265CA6B_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_012f:
{
return;
}
}
// System.Void System.Xml.XmlTextWriter::WriteEndStartTag(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteEndStartTag_m3D5BD66F7B3C09F72E943C0E5C865371905D552E (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, bool ___empty0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5C7DA3CBD254CB3BB9FCC98E58CF1A56E605861E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCE63895ACF2B7A447477491E6E010B297DD75B0D);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* L_0 = __this->___xmlEncoder_2;
NullCheck(L_0);
XmlTextEncoder_StartAttribute_mF465D7D8BA5D27C78DD05400E137E682BD9FDE7B(L_0, (bool)0, NULL);
int32_t L_1 = __this->___nsTop_21;
V_0 = L_1;
goto IL_00b6;
}
IL_0018:
{
NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93* L_2 = __this->___nsStack_20;
int32_t L_3 = V_0;
NullCheck(L_2);
bool L_4 = ((L_2)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_3)))->___declared_2;
if (L_4)
{
goto IL_00b2;
}
}
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_5 = __this->___textWriter_1;
NullCheck(L_5);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_5, _stringLiteral5C7DA3CBD254CB3BB9FCC98E58CF1A56E605861E);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_6 = __this->___textWriter_1;
NullCheck(L_6);
VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_6, ((int32_t)58));
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_7 = __this->___textWriter_1;
NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93* L_8 = __this->___nsStack_20;
int32_t L_9 = V_0;
NullCheck(L_8);
String_t* L_10 = ((L_8)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_9)))->___prefix_0;
NullCheck(L_7);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_7, L_10);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_11 = __this->___textWriter_1;
NullCheck(L_11);
VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_11, ((int32_t)61));
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_12 = __this->___textWriter_1;
Il2CppChar L_13 = __this->___quoteChar_14;
NullCheck(L_12);
VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_12, L_13);
XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* L_14 = __this->___xmlEncoder_2;
NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93* L_15 = __this->___nsStack_20;
int32_t L_16 = V_0;
NullCheck(L_15);
String_t* L_17 = ((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->___ns_1;
NullCheck(L_14);
XmlTextEncoder_Write_m50A8B7FD9B3EA8856AE8EA6EEE4FFD02E06726A4(L_14, L_17, NULL);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_18 = __this->___textWriter_1;
Il2CppChar L_19 = __this->___quoteChar_14;
NullCheck(L_18);
VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_18, L_19);
}
IL_00b2:
{
int32_t L_20 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_20, 1));
}
IL_00b6:
{
int32_t L_21 = V_0;
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_22 = __this->___stack_8;
int32_t L_23 = __this->___top_9;
NullCheck(L_22);
int32_t L_24 = ((L_22)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_23)))->___prevNsTop_6;
if ((((int32_t)L_21) > ((int32_t)L_24)))
{
goto IL_0018;
}
}
{
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_25 = __this->___stack_8;
int32_t L_26 = __this->___top_9;
NullCheck(L_25);
String_t* L_27 = ((L_25)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_26)))->___defaultNs_2;
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_28 = __this->___stack_8;
int32_t L_29 = __this->___top_9;
NullCheck(L_28);
String_t* L_30 = ((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract(L_29, 1)))))->___defaultNs_2;
bool L_31;
L_31 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_27, L_30, NULL);
if (!L_31)
{
goto IL_019a;
}
}
{
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_32 = __this->___stack_8;
int32_t L_33 = __this->___top_9;
NullCheck(L_32);
int32_t L_34 = ((L_32)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_33)))->___defaultNsState_3;
if ((!(((uint32_t)L_34) == ((uint32_t)2))))
{
goto IL_019a;
}
}
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_35 = __this->___textWriter_1;
NullCheck(L_35);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_35, _stringLiteral5C7DA3CBD254CB3BB9FCC98E58CF1A56E605861E);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_36 = __this->___textWriter_1;
NullCheck(L_36);
VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_36, ((int32_t)61));
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_37 = __this->___textWriter_1;
Il2CppChar L_38 = __this->___quoteChar_14;
NullCheck(L_37);
VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_37, L_38);
XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* L_39 = __this->___xmlEncoder_2;
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_40 = __this->___stack_8;
int32_t L_41 = __this->___top_9;
NullCheck(L_40);
String_t* L_42 = ((L_40)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_41)))->___defaultNs_2;
NullCheck(L_39);
XmlTextEncoder_Write_m50A8B7FD9B3EA8856AE8EA6EEE4FFD02E06726A4(L_39, L_42, NULL);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_43 = __this->___textWriter_1;
Il2CppChar L_44 = __this->___quoteChar_14;
NullCheck(L_43);
VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_43, L_44);
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_45 = __this->___stack_8;
int32_t L_46 = __this->___top_9;
NullCheck(L_45);
((L_45)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_46)))->___defaultNsState_3 = 3;
}
IL_019a:
{
XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* L_47 = __this->___xmlEncoder_2;
NullCheck(L_47);
XmlTextEncoder_EndAttribute_mAED2FFE742552CD2454B204481F9C43B113396FB(L_47, NULL);
bool L_48 = ___empty0;
if (!L_48)
{
goto IL_01b8;
}
}
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_49 = __this->___textWriter_1;
NullCheck(L_49);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_49, _stringLiteralCE63895ACF2B7A447477491E6E010B297DD75B0D);
}
IL_01b8:
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_50 = __this->___textWriter_1;
NullCheck(L_50);
VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_50, ((int32_t)62));
return;
}
}
// System.Void System.Xml.XmlTextWriter::WriteEndAttributeQuote()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteEndAttributeQuote_mB416CDC30D6D53A1CA083DB23889440E87AFF2AD (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___specialAttr_17;
if (!L_0)
{
goto IL_000e;
}
}
{
XmlTextWriter_HandleSpecialAttribute_m6E1B85CC5B5CE12883AE164DB945EBA54F7564A6(__this, NULL);
}
IL_000e:
{
XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* L_1 = __this->___xmlEncoder_2;
NullCheck(L_1);
XmlTextEncoder_EndAttribute_mAED2FFE742552CD2454B204481F9C43B113396FB(L_1, NULL);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_2 = __this->___textWriter_1;
Il2CppChar L_3 = __this->___curQuoteChar_15;
NullCheck(L_2);
VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_2, L_3);
return;
}
}
// System.Void System.Xml.XmlTextWriter::Indent(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_Indent_m8FDE99DA08161BAF95B52060FE665815467653AC (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, bool ___beforeEndElement0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t G_B6_0 = 0;
{
int32_t L_0 = __this->___top_9;
if (L_0)
{
goto IL_0014;
}
}
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_1 = __this->___textWriter_1;
NullCheck(L_1);
VirtualActionInvoker0::Invoke(30 /* System.Void System.IO.TextWriter::WriteLine() */, L_1);
return;
}
IL_0014:
{
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_2 = __this->___stack_8;
int32_t L_3 = __this->___top_9;
NullCheck(L_2);
bool L_4 = ((L_2)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_3)))->___mixed_8;
if (L_4)
{
goto IL_006f;
}
}
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_5 = __this->___textWriter_1;
NullCheck(L_5);
VirtualActionInvoker0::Invoke(30 /* System.Void System.IO.TextWriter::WriteLine() */, L_5);
bool L_6 = ___beforeEndElement0;
if (L_6)
{
goto IL_0042;
}
}
{
int32_t L_7 = __this->___top_9;
G_B6_0 = L_7;
goto IL_004a;
}
IL_0042:
{
int32_t L_8 = __this->___top_9;
G_B6_0 = ((int32_t)il2cpp_codegen_subtract(L_8, 1));
}
IL_004a:
{
V_0 = G_B6_0;
int32_t L_9 = V_0;
int32_t L_10 = __this->___indentation_6;
V_0 = ((int32_t)il2cpp_codegen_multiply(L_9, L_10));
goto IL_006b;
}
IL_0056:
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_11 = __this->___textWriter_1;
Il2CppChar L_12 = __this->___indentChar_7;
NullCheck(L_11);
VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_11, L_12);
int32_t L_13 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_13, 1));
}
IL_006b:
{
int32_t L_14 = V_0;
if ((((int32_t)L_14) > ((int32_t)0)))
{
goto IL_0056;
}
}
IL_006f:
{
return;
}
}
// System.Void System.Xml.XmlTextWriter::PushNamespace(System.String,System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_PushNamespace_m85B9B39621886474A21E929986FBB95C51ECC8FF (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, String_t* ___prefix0, String_t* ___ns1, bool ___declared2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
TagInfo_tDECE4D67D7F52936C9E8F58DE38BE11733108F5C* G_B9_0 = NULL;
TagInfo_tDECE4D67D7F52936C9E8F58DE38BE11733108F5C* G_B8_0 = NULL;
int32_t G_B10_0 = 0;
TagInfo_tDECE4D67D7F52936C9E8F58DE38BE11733108F5C* G_B10_1 = NULL;
{
String_t* L_0 = ___ns1;
bool L_1;
L_1 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(_stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE, L_0, NULL);
if (!L_1)
{
goto IL_001d;
}
}
{
String_t* L_2;
L_2 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral197DB4D12C3F8F844439AC8086D04A7E9906FD24)), 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*)&XmlTextWriter_PushNamespace_m85B9B39621886474A21E929986FBB95C51ECC8FF_RuntimeMethod_var)));
}
IL_001d:
{
String_t* L_4 = ___prefix0;
if (L_4)
{
goto IL_0075;
}
}
{
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_5 = __this->___stack_8;
int32_t L_6 = __this->___top_9;
NullCheck(L_5);
int32_t L_7 = ((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->___defaultNsState_3;
V_0 = L_7;
int32_t L_8 = V_0;
if ((!(((uint32_t)L_8) > ((uint32_t)1))))
{
goto IL_0040;
}
}
{
int32_t L_9 = V_0;
if ((((int32_t)L_9) == ((int32_t)2)))
{
goto IL_0057;
}
}
{
return;
}
IL_0040:
{
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_10 = __this->___stack_8;
int32_t L_11 = __this->___top_9;
NullCheck(L_10);
String_t* L_12 = ___ns1;
((L_10)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_11)))->___defaultNs_2 = L_12;
Il2CppCodeGenWriteBarrier((void**)(&((L_10)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_11)))->___defaultNs_2), (void*)L_12);
}
IL_0057:
{
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_13 = __this->___stack_8;
int32_t L_14 = __this->___top_9;
NullCheck(L_13);
bool L_15 = ___declared2;
G_B8_0 = ((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)));
if (L_15)
{
G_B9_0 = ((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)));
goto IL_006e;
}
}
{
G_B10_0 = 2;
G_B10_1 = G_B8_0;
goto IL_006f;
}
IL_006e:
{
G_B10_0 = 3;
G_B10_1 = G_B9_0;
}
IL_006f:
{
G_B10_1->___defaultNsState_3 = G_B10_0;
return;
}
IL_0075:
{
String_t* L_16 = ___prefix0;
NullCheck(L_16);
int32_t L_17;
L_17 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_16, NULL);
if (!L_17)
{
goto IL_0095;
}
}
{
String_t* L_18 = ___ns1;
NullCheck(L_18);
int32_t L_19;
L_19 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_18, NULL);
if (L_19)
{
goto IL_0095;
}
}
{
String_t* L_20;
L_20 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB63A1A23B65582B8791AA4E655E90AA5647D7298)), NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_21 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_21);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_21, L_20, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_PushNamespace_m85B9B39621886474A21E929986FBB95C51ECC8FF_RuntimeMethod_var)));
}
IL_0095:
{
String_t* L_22 = ___prefix0;
int32_t L_23;
L_23 = XmlTextWriter_LookupNamespace_m26D7A144D7D60165AA28DFB54EE15332AD26CB89(__this, L_22, NULL);
V_1 = L_23;
int32_t L_24 = V_1;
if ((((int32_t)L_24) == ((int32_t)(-1))))
{
goto IL_00d0;
}
}
{
NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93* L_25 = __this->___nsStack_20;
int32_t L_26 = V_1;
NullCheck(L_25);
String_t* L_27 = ((L_25)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_26)))->___ns_1;
String_t* L_28 = ___ns1;
bool L_29;
L_29 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_27, L_28, NULL);
if (!L_29)
{
goto IL_00d0;
}
}
{
bool L_30 = ___declared2;
if (!L_30)
{
goto IL_010b;
}
}
{
NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93* L_31 = __this->___nsStack_20;
int32_t L_32 = V_1;
NullCheck(L_31);
((L_31)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_32)))->___declared_2 = (bool)1;
return;
}
IL_00d0:
{
bool L_33 = ___declared2;
if (!L_33)
{
goto IL_0102;
}
}
{
int32_t L_34 = V_1;
if ((((int32_t)L_34) == ((int32_t)(-1))))
{
goto IL_0102;
}
}
{
int32_t L_35 = V_1;
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_36 = __this->___stack_8;
int32_t L_37 = __this->___top_9;
NullCheck(L_36);
int32_t L_38 = ((L_36)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_37)))->___prevNsTop_6;
if ((((int32_t)L_35) <= ((int32_t)L_38)))
{
goto IL_0102;
}
}
{
NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93* L_39 = __this->___nsStack_20;
int32_t L_40 = V_1;
NullCheck(L_39);
((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)))->___declared_2 = (bool)1;
}
IL_0102:
{
String_t* L_41 = ___prefix0;
String_t* L_42 = ___ns1;
bool L_43 = ___declared2;
XmlTextWriter_AddNamespace_mA9DF9F1648BEF737A3D46BE7A93EE57CED55DCB4(__this, L_41, L_42, L_43, NULL);
}
IL_010b:
{
return;
}
}
// System.Void System.Xml.XmlTextWriter::AddNamespace(System.String,System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_AddNamespace_mA9DF9F1648BEF737A3D46BE7A93EE57CED55DCB4 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, String_t* ___prefix0, String_t* ___ns1, bool ___declared2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m9804017B0F6F06DE8C8FAA9292240873CB450B2D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SecureStringHasher_t4052E73C966E6FE65426B19F4AF48AB9869F614E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93* V_2 = NULL;
int32_t V_3 = 0;
{
int32_t L_0 = __this->___nsTop_21;
V_1 = ((int32_t)il2cpp_codegen_add(L_0, 1));
int32_t L_1 = V_1;
__this->___nsTop_21 = L_1;
int32_t L_2 = V_1;
V_0 = L_2;
int32_t L_3 = V_0;
NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93* L_4 = __this->___nsStack_20;
NullCheck(L_4);
if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_003a;
}
}
{
int32_t L_5 = V_0;
NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93* L_6 = (NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93*)(NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93*)SZArrayNew(NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply(L_5, 2)));
V_2 = L_6;
NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93* L_7 = __this->___nsStack_20;
NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93* L_8 = V_2;
int32_t L_9 = V_0;
Array_Copy_m4239F97ECC23A71F4191B8722362A1AA38E2E98F((RuntimeArray*)L_7, (RuntimeArray*)L_8, L_9, NULL);
NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93* L_10 = V_2;
__this->___nsStack_20 = L_10;
Il2CppCodeGenWriteBarrier((void**)(&__this->___nsStack_20), (void*)L_10);
}
IL_003a:
{
NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93* L_11 = __this->___nsStack_20;
int32_t L_12 = V_0;
NullCheck(L_11);
String_t* L_13 = ___prefix0;
String_t* L_14 = ___ns1;
bool L_15 = ___declared2;
Namespace_Set_mA421F92F59A44FCD987802098A78CA52CA3867BD(((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12))), L_13, L_14, L_15, NULL);
bool L_16 = __this->___useNsHashtable_23;
if (!L_16)
{
goto IL_005e;
}
}
{
int32_t L_17 = V_0;
XmlTextWriter_AddToNamespaceHashtable_m8BCCD6D70601F264479A46D8259BDDC174AD233F(__this, L_17, NULL);
return;
}
IL_005e:
{
int32_t L_18 = V_0;
if ((!(((uint32_t)L_18) == ((uint32_t)((int32_t)16)))))
{
goto IL_008d;
}
}
{
SecureStringHasher_t4052E73C966E6FE65426B19F4AF48AB9869F614E* L_19 = (SecureStringHasher_t4052E73C966E6FE65426B19F4AF48AB9869F614E*)il2cpp_codegen_object_new(SecureStringHasher_t4052E73C966E6FE65426B19F4AF48AB9869F614E_il2cpp_TypeInfo_var);
NullCheck(L_19);
SecureStringHasher__ctor_m1F7C97F1DB5BEC1B80480E7CB4019B8E68CC4E92(L_19, NULL);
Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* L_20 = (Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588*)il2cpp_codegen_object_new(Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588_il2cpp_TypeInfo_var);
NullCheck(L_20);
Dictionary_2__ctor_m9804017B0F6F06DE8C8FAA9292240873CB450B2D(L_20, L_19, Dictionary_2__ctor_m9804017B0F6F06DE8C8FAA9292240873CB450B2D_RuntimeMethod_var);
__this->___nsHashtable_22 = L_20;
Il2CppCodeGenWriteBarrier((void**)(&__this->___nsHashtable_22), (void*)L_20);
V_3 = 0;
goto IL_0082;
}
IL_0077:
{
int32_t L_21 = V_3;
XmlTextWriter_AddToNamespaceHashtable_m8BCCD6D70601F264479A46D8259BDDC174AD233F(__this, L_21, NULL);
int32_t L_22 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_22, 1));
}
IL_0082:
{
int32_t L_23 = V_3;
int32_t L_24 = V_0;
if ((((int32_t)L_23) <= ((int32_t)L_24)))
{
goto IL_0077;
}
}
{
__this->___useNsHashtable_23 = (bool)1;
}
IL_008d:
{
return;
}
}
// System.Void System.Xml.XmlTextWriter::AddToNamespaceHashtable(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_AddToNamespaceHashtable_m8BCCD6D70601F264479A46D8259BDDC174AD233F (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, int32_t ___namespaceIndex0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_m835BB1E6EA8A8BF1242B51E28FD65B43FEF68E2A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_m038480C0EC13713DBD89A53BE69FF0359501B4C2_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
int32_t V_1 = 0;
{
NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93* L_0 = __this->___nsStack_20;
int32_t L_1 = ___namespaceIndex0;
NullCheck(L_0);
String_t* L_2 = ((L_0)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_1)))->___prefix_0;
V_0 = L_2;
Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* L_3 = __this->___nsHashtable_22;
String_t* L_4 = V_0;
NullCheck(L_3);
bool L_5;
L_5 = Dictionary_2_TryGetValue_m835BB1E6EA8A8BF1242B51E28FD65B43FEF68E2A(L_3, L_4, (&V_1), Dictionary_2_TryGetValue_m835BB1E6EA8A8BF1242B51E28FD65B43FEF68E2A_RuntimeMethod_var);
if (!L_5)
{
goto IL_0034;
}
}
{
NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93* L_6 = __this->___nsStack_20;
int32_t L_7 = ___namespaceIndex0;
NullCheck(L_6);
int32_t L_8 = V_1;
((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7)))->___prevNsIndex_3 = L_8;
}
IL_0034:
{
Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* L_9 = __this->___nsHashtable_22;
String_t* L_10 = V_0;
int32_t L_11 = ___namespaceIndex0;
NullCheck(L_9);
Dictionary_2_set_Item_m038480C0EC13713DBD89A53BE69FF0359501B4C2(L_9, L_10, L_11, Dictionary_2_set_Item_m038480C0EC13713DBD89A53BE69FF0359501B4C2_RuntimeMethod_var);
return;
}
}
// System.Void System.Xml.XmlTextWriter::PopNamespaces(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_PopNamespaces_mE1AF0C6EBC567887BAA9E6DD4175AEBF7464A046 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, int32_t ___indexFrom0, int32_t ___indexTo1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Remove_m0C90DB78F4134CDEB001F338AA2745F8D9651CAC_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_m038480C0EC13713DBD89A53BE69FF0359501B4C2_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___indexTo1;
V_0 = L_0;
goto IL_0068;
}
IL_0004:
{
NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93* L_1 = __this->___nsStack_20;
int32_t L_2 = V_0;
NullCheck(L_1);
int32_t L_3 = ((L_1)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_2)))->___prevNsIndex_3;
if ((!(((uint32_t)L_3) == ((uint32_t)(-1)))))
{
goto IL_0037;
}
}
{
Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* L_4 = __this->___nsHashtable_22;
NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93* L_5 = __this->___nsStack_20;
int32_t L_6 = V_0;
NullCheck(L_5);
String_t* L_7 = ((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->___prefix_0;
NullCheck(L_4);
bool L_8;
L_8 = Dictionary_2_Remove_m0C90DB78F4134CDEB001F338AA2745F8D9651CAC(L_4, L_7, Dictionary_2_Remove_m0C90DB78F4134CDEB001F338AA2745F8D9651CAC_RuntimeMethod_var);
goto IL_0064;
}
IL_0037:
{
Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* L_9 = __this->___nsHashtable_22;
NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93* L_10 = __this->___nsStack_20;
int32_t L_11 = V_0;
NullCheck(L_10);
String_t* L_12 = ((L_10)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_11)))->___prefix_0;
NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93* L_13 = __this->___nsStack_20;
int32_t L_14 = V_0;
NullCheck(L_13);
int32_t L_15 = ((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->___prevNsIndex_3;
NullCheck(L_9);
Dictionary_2_set_Item_m038480C0EC13713DBD89A53BE69FF0359501B4C2(L_9, L_12, L_15, Dictionary_2_set_Item_m038480C0EC13713DBD89A53BE69FF0359501B4C2_RuntimeMethod_var);
}
IL_0064:
{
int32_t L_16 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_16, 1));
}
IL_0068:
{
int32_t L_17 = V_0;
int32_t L_18 = ___indexFrom0;
if ((((int32_t)L_17) >= ((int32_t)L_18)))
{
goto IL_0004;
}
}
{
return;
}
}
// System.String System.Xml.XmlTextWriter::GeneratePrefix()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextWriter_GeneratePrefix_m4E75B06493E8E7259957E597AB761DFB5994543C (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, 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*)&_stringLiteral198AA065BF0F912BD6F5F93869BD5C361671F98B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA02431CF7C501A5B368C91E41283419D8FA9FB03);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_0 = __this->___stack_8;
int32_t L_1 = __this->___top_9;
NullCheck(L_0);
int32_t* L_2 = (&((L_0)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_1)))->___prefixCount_7);
int32_t* L_3 = L_2;
int32_t L_4 = *((int32_t*)L_3);
V_1 = L_4;
int32_t L_5 = V_1;
*((int32_t*)L_3) = (int32_t)((int32_t)il2cpp_codegen_add(L_5, 1));
int32_t L_6 = V_1;
V_0 = ((int32_t)il2cpp_codegen_add(L_6, 1));
int32_t* L_7 = (&__this->___top_9);
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_8;
L_8 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
String_t* L_9;
L_9 = Int32_ToString_mE871810BC163EE4EF88E7C7682A6AD39911173B8(L_7, _stringLiteralA02431CF7C501A5B368C91E41283419D8FA9FB03, L_8, NULL);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_10;
L_10 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
String_t* L_11;
L_11 = Int32_ToString_mE871810BC163EE4EF88E7C7682A6AD39911173B8((&V_0), _stringLiteralA02431CF7C501A5B368C91E41283419D8FA9FB03, L_10, NULL);
String_t* L_12;
L_12 = String_Concat_mF8B69BE42B5C5ABCAD3C176FBBE3010E0815D65D(_stringLiteralA02431CF7C501A5B368C91E41283419D8FA9FB03, L_9, _stringLiteral198AA065BF0F912BD6F5F93869BD5C361671F98B, L_11, NULL);
return L_12;
}
}
// System.Void System.Xml.XmlTextWriter::InternalWriteProcessingInstruction(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_InternalWriteProcessingInstruction_m7AB78E359BBCA2A8300278538C77A186803D9F00 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, String_t* ___name0, String_t* ___text1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6C80BE31B3A7206EDCC7D55B9B8DC0407E7A87EB);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD6B20E18FAA3BB0018B8BA0CFA581E711100C554);
s_Il2CppMethodInitialized = true;
}
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0 = __this->___textWriter_1;
NullCheck(L_0);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_0, _stringLiteralD6B20E18FAA3BB0018B8BA0CFA581E711100C554);
String_t* L_1 = ___name0;
XmlTextWriter_ValidateName_mC44A84A18156918489A8159BF9A8D56BE7B1C715(__this, L_1, (bool)0, NULL);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_2 = __this->___textWriter_1;
String_t* L_3 = ___name0;
NullCheck(L_2);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_2, L_3);
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_4 = __this->___textWriter_1;
NullCheck(L_4);
VirtualActionInvoker1< Il2CppChar >::Invoke(13 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_4, ((int32_t)32));
String_t* L_5 = ___text1;
if (!L_5)
{
goto IL_0040;
}
}
{
XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* L_6 = __this->___xmlEncoder_2;
String_t* L_7 = ___text1;
NullCheck(L_6);
XmlTextEncoder_WriteRawWithSurrogateChecking_m122F5F4DFF721F37C940433BCF8285391E51DA00(L_6, L_7, NULL);
}
IL_0040:
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_8 = __this->___textWriter_1;
NullCheck(L_8);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_8, _stringLiteral6C80BE31B3A7206EDCC7D55B9B8DC0407E7A87EB);
return;
}
}
// System.Int32 System.Xml.XmlTextWriter::LookupNamespace(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextWriter_LookupNamespace_m26D7A144D7D60165AA28DFB54EE15332AD26CB89 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, String_t* ___prefix0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_m835BB1E6EA8A8BF1242B51E28FD65B43FEF68E2A_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
bool L_0 = __this->___useNsHashtable_23;
if (!L_0)
{
goto IL_001a;
}
}
{
Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* L_1 = __this->___nsHashtable_22;
String_t* L_2 = ___prefix0;
NullCheck(L_1);
bool L_3;
L_3 = Dictionary_2_TryGetValue_m835BB1E6EA8A8BF1242B51E28FD65B43FEF68E2A(L_1, L_2, (&V_0), Dictionary_2_TryGetValue_m835BB1E6EA8A8BF1242B51E28FD65B43FEF68E2A_RuntimeMethod_var);
if (!L_3)
{
goto IL_0046;
}
}
{
int32_t L_4 = V_0;
return L_4;
}
IL_001a:
{
int32_t L_5 = __this->___nsTop_21;
V_1 = L_5;
goto IL_0042;
}
IL_0023:
{
NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93* L_6 = __this->___nsStack_20;
int32_t L_7 = V_1;
NullCheck(L_6);
String_t* L_8 = ((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7)))->___prefix_0;
String_t* L_9 = ___prefix0;
bool L_10;
L_10 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_8, L_9, NULL);
if (!L_10)
{
goto IL_003e;
}
}
{
int32_t L_11 = V_1;
return L_11;
}
IL_003e:
{
int32_t L_12 = V_1;
V_1 = ((int32_t)il2cpp_codegen_subtract(L_12, 1));
}
IL_0042:
{
int32_t L_13 = V_1;
if ((((int32_t)L_13) >= ((int32_t)0)))
{
goto IL_0023;
}
}
IL_0046:
{
return (-1);
}
}
// System.Int32 System.Xml.XmlTextWriter::LookupNamespaceInCurrentScope(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextWriter_LookupNamespaceInCurrentScope_m9B79AC784B0CD44E63F209682032370C60B2F6A9 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, String_t* ___prefix0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_m835BB1E6EA8A8BF1242B51E28FD65B43FEF68E2A_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
bool L_0 = __this->___useNsHashtable_23;
if (!L_0)
{
goto IL_0033;
}
}
{
Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* L_1 = __this->___nsHashtable_22;
String_t* L_2 = ___prefix0;
NullCheck(L_1);
bool L_3;
L_3 = Dictionary_2_TryGetValue_m835BB1E6EA8A8BF1242B51E28FD65B43FEF68E2A(L_1, L_2, (&V_0), Dictionary_2_TryGetValue_m835BB1E6EA8A8BF1242B51E28FD65B43FEF68E2A_RuntimeMethod_var);
if (!L_3)
{
goto IL_0074;
}
}
{
int32_t L_4 = V_0;
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_5 = __this->___stack_8;
int32_t L_6 = __this->___top_9;
NullCheck(L_5);
int32_t L_7 = ((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->___prevNsTop_6;
if ((((int32_t)L_4) <= ((int32_t)L_7)))
{
goto IL_0074;
}
}
{
int32_t L_8 = V_0;
return L_8;
}
IL_0033:
{
int32_t L_9 = __this->___nsTop_21;
V_1 = L_9;
goto IL_005b;
}
IL_003c:
{
NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93* L_10 = __this->___nsStack_20;
int32_t L_11 = V_1;
NullCheck(L_10);
String_t* L_12 = ((L_10)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_11)))->___prefix_0;
String_t* L_13 = ___prefix0;
bool L_14;
L_14 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_12, L_13, NULL);
if (!L_14)
{
goto IL_0057;
}
}
{
int32_t L_15 = V_1;
return L_15;
}
IL_0057:
{
int32_t L_16 = V_1;
V_1 = ((int32_t)il2cpp_codegen_subtract(L_16, 1));
}
IL_005b:
{
int32_t L_17 = V_1;
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_18 = __this->___stack_8;
int32_t L_19 = __this->___top_9;
NullCheck(L_18);
int32_t L_20 = ((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->___prevNsTop_6;
if ((((int32_t)L_17) > ((int32_t)L_20)))
{
goto IL_003c;
}
}
IL_0074:
{
return (-1);
}
}
// System.String System.Xml.XmlTextWriter::FindPrefix(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextWriter_FindPrefix_mC510C6C9162CD45A0BAED05D97C21A6CBCC326C7 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, String_t* ___ns0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->___nsTop_21;
V_0 = L_0;
goto IL_0052;
}
IL_0009:
{
NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93* L_1 = __this->___nsStack_20;
int32_t L_2 = V_0;
NullCheck(L_1);
String_t* L_3 = ((L_1)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_2)))->___ns_1;
String_t* L_4 = ___ns0;
bool L_5;
L_5 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_3, L_4, NULL);
if (!L_5)
{
goto IL_004e;
}
}
{
NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93* L_6 = __this->___nsStack_20;
int32_t L_7 = V_0;
NullCheck(L_6);
String_t* L_8 = ((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7)))->___prefix_0;
int32_t L_9;
L_9 = XmlTextWriter_LookupNamespace_m26D7A144D7D60165AA28DFB54EE15332AD26CB89(__this, L_8, NULL);
int32_t L_10 = V_0;
if ((!(((uint32_t)L_9) == ((uint32_t)L_10))))
{
goto IL_004e;
}
}
{
NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93* L_11 = __this->___nsStack_20;
int32_t L_12 = V_0;
NullCheck(L_11);
String_t* L_13 = ((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->___prefix_0;
return L_13;
}
IL_004e:
{
int32_t L_14 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_14, 1));
}
IL_0052:
{
int32_t L_15 = V_0;
if ((((int32_t)L_15) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
return (String_t*)NULL;
}
}
// System.Void System.Xml.XmlTextWriter::ValidateName(System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_ValidateName_mC44A84A18156918489A8159BF9A8D56BE7B1C715 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, String_t* ___name0, bool ___isNCName1, 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;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
String_t* L_0 = ___name0;
if (!L_0)
{
goto IL_000b;
}
}
{
String_t* L_1 = ___name0;
NullCheck(L_1);
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL);
if (L_2)
{
goto IL_001b;
}
}
IL_000b:
{
String_t* L_3;
L_3 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4F463628A5B55C40369849BC669644FDA7E2FD4E)), 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*)&XmlTextWriter_ValidateName_mC44A84A18156918489A8159BF9A8D56BE7B1C715_RuntimeMethod_var)));
}
IL_001b:
{
String_t* L_5 = ___name0;
NullCheck(L_5);
int32_t L_6;
L_6 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_5, NULL);
V_0 = L_6;
bool L_7 = __this->___namespaces_16;
if (!L_7)
{
goto IL_0066;
}
}
{
V_1 = (-1);
String_t* L_8 = ___name0;
il2cpp_codegen_runtime_class_init_inline(ValidateNames_tC1994E2C538F499DFEBBA2705010DC4C770E7598_il2cpp_TypeInfo_var);
int32_t L_9;
L_9 = ValidateNames_ParseNCName_mDF0240AB0FDDB3416896DED9C9B78E75BDA8CFEF(L_8, NULL);
V_2 = L_9;
}
IL_0033:
{
int32_t L_10 = V_2;
int32_t L_11 = V_0;
if ((!(((uint32_t)L_10) == ((uint32_t)L_11))))
{
goto IL_0038;
}
}
{
return;
}
IL_0038:
{
String_t* L_12 = ___name0;
int32_t L_13 = V_2;
NullCheck(L_12);
Il2CppChar L_14;
L_14 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_12, L_13, NULL);
if ((!(((uint32_t)L_14) == ((uint32_t)((int32_t)58)))))
{
goto IL_006f;
}
}
{
bool L_15 = ___isNCName1;
if (L_15)
{
goto IL_006f;
}
}
{
int32_t L_16 = V_1;
if ((!(((uint32_t)L_16) == ((uint32_t)(-1)))))
{
goto IL_006f;
}
}
{
int32_t L_17 = V_2;
if ((((int32_t)L_17) <= ((int32_t)0)))
{
goto IL_006f;
}
}
{
int32_t L_18 = V_2;
int32_t L_19 = V_0;
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_18, 1))) >= ((int32_t)L_19)))
{
goto IL_006f;
}
}
{
int32_t L_20 = V_2;
V_1 = L_20;
int32_t L_21 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_21, 1));
int32_t L_22 = V_2;
String_t* L_23 = ___name0;
int32_t L_24 = V_2;
il2cpp_codegen_runtime_class_init_inline(ValidateNames_tC1994E2C538F499DFEBBA2705010DC4C770E7598_il2cpp_TypeInfo_var);
int32_t L_25;
L_25 = ValidateNames_ParseNmtoken_m7C6554EAA0D5D41D6DDE5FA5669F1D54DE46B374(L_23, L_24, NULL);
V_2 = ((int32_t)il2cpp_codegen_add(L_22, L_25));
goto IL_0033;
}
IL_0066:
{
String_t* L_26 = ___name0;
il2cpp_codegen_runtime_class_init_inline(ValidateNames_tC1994E2C538F499DFEBBA2705010DC4C770E7598_il2cpp_TypeInfo_var);
bool L_27;
L_27 = ValidateNames_IsNameNoNamespaces_m41D3FD9FB53B3949C7E01A74C20C96B0B15DAC2B(L_26, NULL);
if (!L_27)
{
goto IL_006f;
}
}
{
return;
}
IL_006f:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_28 = (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_29 = L_28;
String_t* L_30 = ___name0;
NullCheck(L_29);
ArrayElementTypeCheck (L_29, L_30);
(L_29)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_30);
String_t* L_31;
L_31 = Res_GetString_mB929E696BF2E2F27CD03C0B61301A9DFE2FDEEF9(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral56F31E8137B998C532779DA5D2ACDD6E3B715C1E)), L_29, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_32 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_32);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_32, L_31, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_32, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_ValidateName_mC44A84A18156918489A8159BF9A8D56BE7B1C715_RuntimeMethod_var)));
}
}
// System.Void System.Xml.XmlTextWriter::HandleSpecialAttribute()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_HandleSpecialAttribute_m6E1B85CC5B5CE12883AE164DB945EBA54F7564A6 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral916F4E7879C25AF1EA844F7068842D5508777C48);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
int32_t V_1 = 0;
{
XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* L_0 = __this->___xmlEncoder_2;
NullCheck(L_0);
String_t* L_1;
L_1 = XmlTextEncoder_get_AttributeValue_m3DC77E08BDA49EFA196673E7625B43CBCE70DA96(L_0, NULL);
V_0 = L_1;
int32_t L_2 = __this->___specialAttr_17;
V_1 = L_2;
int32_t L_3 = V_1;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_3, 1)))
{
case 0:
{
goto IL_0040;
}
case 1:
{
goto IL_0028;
}
case 2:
{
goto IL_00ab;
}
}
}
{
return;
}
IL_0028:
{
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_4 = __this->___stack_8;
int32_t L_5 = __this->___top_9;
NullCheck(L_4);
String_t* L_6 = V_0;
((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->___xmlLang_5 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->___xmlLang_5), (void*)L_6);
return;
}
IL_0040:
{
String_t* L_7 = V_0;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
String_t* L_8;
L_8 = XmlConvert_TrimString_m10347633D50C56FCE0BFC58077D71AEBD88F9509(L_7, NULL);
V_0 = L_8;
String_t* L_9 = V_0;
bool L_10;
L_10 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_9, _stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044, NULL);
if (!L_10)
{
goto IL_006c;
}
}
{
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_11 = __this->___stack_8;
int32_t L_12 = __this->___top_9;
NullCheck(L_11);
((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->___xmlSpace_4 = 1;
return;
}
IL_006c:
{
String_t* L_13 = V_0;
bool L_14;
L_14 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_13, _stringLiteral916F4E7879C25AF1EA844F7068842D5508777C48, NULL);
if (!L_14)
{
goto IL_0091;
}
}
{
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_15 = __this->___stack_8;
int32_t L_16 = __this->___top_9;
NullCheck(L_15);
((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->___xmlSpace_4 = 2;
return;
}
IL_0091:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_17 = (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_18 = L_17;
String_t* L_19 = V_0;
NullCheck(L_18);
ArrayElementTypeCheck (L_18, L_19);
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_19);
String_t* L_20;
L_20 = Res_GetString_mB929E696BF2E2F27CD03C0B61301A9DFE2FDEEF9(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB76F93064E827FE764713C55F705D2E388DF17D7)), L_18, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_21 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_21);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_21, L_20, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_HandleSpecialAttribute_m6E1B85CC5B5CE12883AE164DB945EBA54F7564A6_RuntimeMethod_var)));
}
IL_00ab:
{
String_t* L_22 = __this->___prefixForXmlNs_18;
String_t* L_23 = V_0;
XmlTextWriter_VerifyPrefixXml_mB5720166A6E438017CE9C6677F77670ACF2BE661(__this, L_22, L_23, NULL);
String_t* L_24 = __this->___prefixForXmlNs_18;
String_t* L_25 = V_0;
XmlTextWriter_PushNamespace_m85B9B39621886474A21E929986FBB95C51ECC8FF(__this, L_24, L_25, (bool)1, NULL);
return;
}
}
// System.Void System.Xml.XmlTextWriter::VerifyPrefixXml(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_VerifyPrefixXml_mB5720166A6E438017CE9C6677F77670ACF2BE661 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, String_t* ___prefix0, String_t* ___ns1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral349C6DC0F34B9BA242E4C728EDD28CAB809D4917);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___prefix0;
if (!L_0)
{
goto IL_006b;
}
}
{
String_t* L_1 = ___prefix0;
NullCheck(L_1);
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL);
if ((!(((uint32_t)L_2) == ((uint32_t)3))))
{
goto IL_006b;
}
}
{
String_t* L_3 = ___prefix0;
NullCheck(L_3);
Il2CppChar L_4;
L_4 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_3, 0, NULL);
if ((((int32_t)L_4) == ((int32_t)((int32_t)120))))
{
goto IL_0022;
}
}
{
String_t* L_5 = ___prefix0;
NullCheck(L_5);
Il2CppChar L_6;
L_6 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_5, 0, NULL);
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)88)))))
{
goto IL_006b;
}
}
IL_0022:
{
String_t* L_7 = ___prefix0;
NullCheck(L_7);
Il2CppChar L_8;
L_8 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_7, 1, NULL);
if ((((int32_t)L_8) == ((int32_t)((int32_t)109))))
{
goto IL_0038;
}
}
{
String_t* L_9 = ___prefix0;
NullCheck(L_9);
Il2CppChar L_10;
L_10 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_9, 1, NULL);
if ((!(((uint32_t)L_10) == ((uint32_t)((int32_t)77)))))
{
goto IL_006b;
}
}
IL_0038:
{
String_t* L_11 = ___prefix0;
NullCheck(L_11);
Il2CppChar L_12;
L_12 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_11, 2, NULL);
if ((((int32_t)L_12) == ((int32_t)((int32_t)108))))
{
goto IL_004e;
}
}
{
String_t* L_13 = ___prefix0;
NullCheck(L_13);
Il2CppChar L_14;
L_14 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_13, 2, NULL);
if ((!(((uint32_t)L_14) == ((uint32_t)((int32_t)76)))))
{
goto IL_006b;
}
}
IL_004e:
{
String_t* L_15 = ___ns1;
bool L_16;
L_16 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(_stringLiteral349C6DC0F34B9BA242E4C728EDD28CAB809D4917, L_15, NULL);
if (!L_16)
{
goto IL_006b;
}
}
{
String_t* L_17;
L_17 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC3FBA6155AE85E3CB81F8437A6F1C503BB7D09B7)), NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_18 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_18);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_18, L_17, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_VerifyPrefixXml_mB5720166A6E438017CE9C6677F77670ACF2BE661_RuntimeMethod_var)));
}
IL_006b:
{
return;
}
}
// System.Void System.Xml.XmlTextWriter::PushStack()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_PushStack_mBD2ABBDE5ED58044028C83A9BD3648B2FE6D16AA (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* V_0 = NULL;
{
int32_t L_0 = __this->___top_9;
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_1 = __this->___stack_8;
NullCheck(L_1);
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_1)->max_length)), 1))))))
{
goto IL_0047;
}
}
{
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_2 = __this->___stack_8;
NullCheck(L_2);
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_3 = (TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776*)(TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776*)SZArrayNew(TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add(((int32_t)(((RuntimeArray*)L_2)->max_length)), ((int32_t)10))));
V_0 = L_3;
int32_t L_4 = __this->___top_9;
if ((((int32_t)L_4) <= ((int32_t)0)))
{
goto IL_0040;
}
}
{
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_5 = __this->___stack_8;
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_6 = V_0;
int32_t L_7 = __this->___top_9;
Array_Copy_m4239F97ECC23A71F4191B8722362A1AA38E2E98F((RuntimeArray*)L_5, (RuntimeArray*)L_6, ((int32_t)il2cpp_codegen_add(L_7, 1)), NULL);
}
IL_0040:
{
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_8 = V_0;
__this->___stack_8 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->___stack_8), (void*)L_8);
}
IL_0047:
{
int32_t L_9 = __this->___top_9;
__this->___top_9 = ((int32_t)il2cpp_codegen_add(L_9, 1));
TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* L_10 = __this->___stack_8;
int32_t L_11 = __this->___top_9;
NullCheck(L_10);
int32_t L_12 = __this->___nsTop_21;
TagInfo_Init_m351285BE790D79A15E824AE90114E1DD5734BAB6(((L_10)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_11))), L_12, NULL);
return;
}
}
// System.Void System.Xml.XmlTextWriter::FlushEncoders()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_FlushEncoders_mF122D55A7BB079E9DA00A0055CFC78277584A093 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, const RuntimeMethod* method)
{
{
XmlTextWriterBase64Encoder_tC7209F119916DF622459E830377C23D7BFA2B30D* L_0 = __this->___base64Encoder_13;
if (!L_0)
{
goto IL_0013;
}
}
{
XmlTextWriterBase64Encoder_tC7209F119916DF622459E830377C23D7BFA2B30D* L_1 = __this->___base64Encoder_13;
NullCheck(L_1);
Base64Encoder_Flush_mBCE3506CD0C1A9EF71FB84544496707BBC562324(L_1, NULL);
}
IL_0013:
{
__this->___flush_19 = (bool)0;
return;
}
}
// System.Void System.Xml.XmlTextWriter::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter__cctor_mA6E891498E2E3BBA1822F7FB1470BD9C39269C80 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_tBAB6DC40B1709E21296656960228A17F1BE57FD7____D1D9AF18AFC4E3074AF5E4C44B81B73889D033D7AF6DFEB387BBCC76B36FE8B9_28_FieldInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_tBAB6DC40B1709E21296656960228A17F1BE57FD7____DB7DD2341DB9D4574E432AAAFF03FB0A3E8FF2F645A337077EDF0C6FE902E660_32_FieldInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0FD08B3C99047786420F2D9A7AC37D5DC351C9C8);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral120472D8D40924F6F8355A94DB677A8F142E2EB6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1E1DB32AFA986C58B9ACC9C146BF83E67C0DCE66);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2343901946DDD83EFBB8B93C33F01CBD394063B2);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral23A6BF321FC205420788A7F2E1A1334F6C712C89);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral32189949CB1CA4A6EBB1A643EBE2DB69713D5407);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3D9E33C04AB4A0A0E8E88B74BB9D5F9003E15C78);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3EBF7CFEC7929F196835D5D12FBBE2F845BF2A5F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral41477B187466178A05A136C12F806B3EDCAB6349);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral45B9464D208C0A900770E5F7A95E5FE067CD4CCC);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4B4906CA939816C30A7D9C9A911CF6A9F506CCE3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5296173AB8D4E282E989F7B0B7B7C9A3ACF26E18);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral56EF1F2751B48DAA3EC7F762F420920B8E40757A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7BBD8C0287448D34297B233D6604618390BA9C38);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8243A16D425F93AF62CAAB2BFAE01A2D6246A5FE);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9932973D4B6AA1AA193C06D8D34B58B677685003);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB6F0795DD4F409C92875D0327F58FDEA357047F1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBBC1106D65ACC9B0DB541F4FAF5DBAF5B7F7BA1F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCD347E1307036F9337DFB643A0DA73051573F178);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD2B699E6F0658A4364F9D1A0F5A4EB7C94F6F656);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD6DCC897C02A857315752249765CB47ADDF4E5C7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE1C34BAD815D8104249A053C9455FA539CDF5036);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF41760006700B346FE970834ED6436CD21A1330F);
s_Il2CppMethodInitialized = true;
}
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)((int32_t)10));
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_1 = L_0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, _stringLiteral8243A16D425F93AF62CAAB2BFAE01A2D6246A5FE);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral8243A16D425F93AF62CAAB2BFAE01A2D6246A5FE);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_2 = L_1;
NullCheck(L_2);
ArrayElementTypeCheck (L_2, _stringLiteralD2B699E6F0658A4364F9D1A0F5A4EB7C94F6F656);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralD2B699E6F0658A4364F9D1A0F5A4EB7C94F6F656);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_3 = L_2;
NullCheck(L_3);
ArrayElementTypeCheck (L_3, _stringLiteralE1C34BAD815D8104249A053C9455FA539CDF5036);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteralE1C34BAD815D8104249A053C9455FA539CDF5036);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_4 = L_3;
NullCheck(L_4);
ArrayElementTypeCheck (L_4, _stringLiteral9932973D4B6AA1AA193C06D8D34B58B677685003);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral9932973D4B6AA1AA193C06D8D34B58B677685003);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_5 = L_4;
NullCheck(L_5);
ArrayElementTypeCheck (L_5, _stringLiteral120472D8D40924F6F8355A94DB677A8F142E2EB6);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral120472D8D40924F6F8355A94DB677A8F142E2EB6);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_6 = L_5;
NullCheck(L_6);
ArrayElementTypeCheck (L_6, _stringLiteralB6F0795DD4F409C92875D0327F58FDEA357047F1);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteralB6F0795DD4F409C92875D0327F58FDEA357047F1);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_7 = L_6;
NullCheck(L_7);
ArrayElementTypeCheck (L_7, _stringLiteral41477B187466178A05A136C12F806B3EDCAB6349);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteral41477B187466178A05A136C12F806B3EDCAB6349);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_8 = L_7;
NullCheck(L_8);
ArrayElementTypeCheck (L_8, _stringLiteralCD347E1307036F9337DFB643A0DA73051573F178);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(7), (String_t*)_stringLiteralCD347E1307036F9337DFB643A0DA73051573F178);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_9 = L_8;
NullCheck(L_9);
ArrayElementTypeCheck (L_9, _stringLiteralD6DCC897C02A857315752249765CB47ADDF4E5C7);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(8), (String_t*)_stringLiteralD6DCC897C02A857315752249765CB47ADDF4E5C7);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_10 = L_9;
NullCheck(L_10);
ArrayElementTypeCheck (L_10, _stringLiteralBBC1106D65ACC9B0DB541F4FAF5DBAF5B7F7BA1F);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)9)), (String_t*)_stringLiteralBBC1106D65ACC9B0DB541F4FAF5DBAF5B7F7BA1F);
((XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_StaticFields*)il2cpp_codegen_static_fields_for(XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var))->___stateName_25 = L_10;
Il2CppCodeGenWriteBarrier((void**)(&((XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_StaticFields*)il2cpp_codegen_static_fields_for(XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var))->___stateName_25), (void*)L_10);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_11 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)((int32_t)14));
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_12 = L_11;
NullCheck(L_12);
ArrayElementTypeCheck (L_12, _stringLiteral5296173AB8D4E282E989F7B0B7B7C9A3ACF26E18);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral5296173AB8D4E282E989F7B0B7B7C9A3ACF26E18);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_13 = L_12;
NullCheck(L_13);
ArrayElementTypeCheck (L_13, _stringLiteral3D9E33C04AB4A0A0E8E88B74BB9D5F9003E15C78);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral3D9E33C04AB4A0A0E8E88B74BB9D5F9003E15C78);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_14 = L_13;
NullCheck(L_14);
ArrayElementTypeCheck (L_14, _stringLiteral3EBF7CFEC7929F196835D5D12FBBE2F845BF2A5F);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral3EBF7CFEC7929F196835D5D12FBBE2F845BF2A5F);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_15 = L_14;
NullCheck(L_15);
ArrayElementTypeCheck (L_15, _stringLiteral4B4906CA939816C30A7D9C9A911CF6A9F506CCE3);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral4B4906CA939816C30A7D9C9A911CF6A9F506CCE3);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_16 = L_15;
NullCheck(L_16);
ArrayElementTypeCheck (L_16, _stringLiteral56EF1F2751B48DAA3EC7F762F420920B8E40757A);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral56EF1F2751B48DAA3EC7F762F420920B8E40757A);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_17 = L_16;
NullCheck(L_17);
ArrayElementTypeCheck (L_17, _stringLiteral7BBD8C0287448D34297B233D6604618390BA9C38);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral7BBD8C0287448D34297B233D6604618390BA9C38);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_18 = L_17;
NullCheck(L_18);
ArrayElementTypeCheck (L_18, _stringLiteral0FD08B3C99047786420F2D9A7AC37D5DC351C9C8);
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteral0FD08B3C99047786420F2D9A7AC37D5DC351C9C8);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_19 = L_18;
NullCheck(L_19);
ArrayElementTypeCheck (L_19, _stringLiteral23A6BF321FC205420788A7F2E1A1334F6C712C89);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(7), (String_t*)_stringLiteral23A6BF321FC205420788A7F2E1A1334F6C712C89);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_20 = L_19;
NullCheck(L_20);
ArrayElementTypeCheck (L_20, _stringLiteral2343901946DDD83EFBB8B93C33F01CBD394063B2);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(8), (String_t*)_stringLiteral2343901946DDD83EFBB8B93C33F01CBD394063B2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_21 = L_20;
NullCheck(L_21);
ArrayElementTypeCheck (L_21, _stringLiteralB6F0795DD4F409C92875D0327F58FDEA357047F1);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)9)), (String_t*)_stringLiteralB6F0795DD4F409C92875D0327F58FDEA357047F1);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_22 = L_21;
NullCheck(L_22);
ArrayElementTypeCheck (L_22, _stringLiteral45B9464D208C0A900770E5F7A95E5FE067CD4CCC);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)10)), (String_t*)_stringLiteral45B9464D208C0A900770E5F7A95E5FE067CD4CCC);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_23 = L_22;
NullCheck(L_23);
ArrayElementTypeCheck (L_23, _stringLiteralF41760006700B346FE970834ED6436CD21A1330F);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)11)), (String_t*)_stringLiteralF41760006700B346FE970834ED6436CD21A1330F);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_24 = L_23;
NullCheck(L_24);
ArrayElementTypeCheck (L_24, _stringLiteral1E1DB32AFA986C58B9ACC9C146BF83E67C0DCE66);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)12)), (String_t*)_stringLiteral1E1DB32AFA986C58B9ACC9C146BF83E67C0DCE66);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_25 = L_24;
NullCheck(L_25);
ArrayElementTypeCheck (L_25, _stringLiteral32189949CB1CA4A6EBB1A643EBE2DB69713D5407);
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)13)), (String_t*)_stringLiteral32189949CB1CA4A6EBB1A643EBE2DB69713D5407);
((XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_StaticFields*)il2cpp_codegen_static_fields_for(XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var))->___tokenName_26 = L_25;
Il2CppCodeGenWriteBarrier((void**)(&((XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_StaticFields*)il2cpp_codegen_static_fields_for(XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var))->___tokenName_26), (void*)L_25);
StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858* L_26 = (StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858*)(StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858*)SZArrayNew(StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858_il2cpp_TypeInfo_var, (uint32_t)((int32_t)104));
StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858* L_27 = L_26;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_28 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_tBAB6DC40B1709E21296656960228A17F1BE57FD7____DB7DD2341DB9D4574E432AAAFF03FB0A3E8FF2F645A337077EDF0C6FE902E660_32_FieldInfo_var) };
RuntimeHelpers_InitializeArray_mE10C3436BA703E4D9D41B3F8F365E4C34F9926EF((RuntimeArray*)L_27, L_28, NULL);
((XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_StaticFields*)il2cpp_codegen_static_fields_for(XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var))->___stateTableDefault_27 = L_27;
Il2CppCodeGenWriteBarrier((void**)(&((XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_StaticFields*)il2cpp_codegen_static_fields_for(XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var))->___stateTableDefault_27), (void*)L_27);
StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858* L_29 = (StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858*)(StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858*)SZArrayNew(StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858_il2cpp_TypeInfo_var, (uint32_t)((int32_t)104));
StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858* L_30 = L_29;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_31 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_tBAB6DC40B1709E21296656960228A17F1BE57FD7____D1D9AF18AFC4E3074AF5E4C44B81B73889D033D7AF6DFEB387BBCC76B36FE8B9_28_FieldInfo_var) };
RuntimeHelpers_InitializeArray_mE10C3436BA703E4D9D41B3F8F365E4C34F9926EF((RuntimeArray*)L_30, L_31, NULL);
((XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_StaticFields*)il2cpp_codegen_static_fields_for(XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var))->___stateTableDocument_28 = L_30;
Il2CppCodeGenWriteBarrier((void**)(&((XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_StaticFields*)il2cpp_codegen_static_fields_for(XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var))->___stateTableDocument_28), (void*)L_30);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: System.Xml.XmlTextWriter/TagInfo
IL2CPP_EXTERN_C void TagInfo_tDECE4D67D7F52936C9E8F58DE38BE11733108F5C_marshal_pinvoke(const TagInfo_tDECE4D67D7F52936C9E8F58DE38BE11733108F5C& unmarshaled, TagInfo_tDECE4D67D7F52936C9E8F58DE38BE11733108F5C_marshaled_pinvoke& marshaled)
{
marshaled.___name_0 = il2cpp_codegen_marshal_string(unmarshaled.___name_0);
marshaled.___prefix_1 = il2cpp_codegen_marshal_string(unmarshaled.___prefix_1);
marshaled.___defaultNs_2 = il2cpp_codegen_marshal_string(unmarshaled.___defaultNs_2);
marshaled.___defaultNsState_3 = unmarshaled.___defaultNsState_3;
marshaled.___xmlSpace_4 = unmarshaled.___xmlSpace_4;
marshaled.___xmlLang_5 = il2cpp_codegen_marshal_string(unmarshaled.___xmlLang_5);
marshaled.___prevNsTop_6 = unmarshaled.___prevNsTop_6;
marshaled.___prefixCount_7 = unmarshaled.___prefixCount_7;
marshaled.___mixed_8 = static_cast<int32_t>(unmarshaled.___mixed_8);
}
IL2CPP_EXTERN_C void TagInfo_tDECE4D67D7F52936C9E8F58DE38BE11733108F5C_marshal_pinvoke_back(const TagInfo_tDECE4D67D7F52936C9E8F58DE38BE11733108F5C_marshaled_pinvoke& marshaled, TagInfo_tDECE4D67D7F52936C9E8F58DE38BE11733108F5C& unmarshaled)
{
unmarshaled.___name_0 = il2cpp_codegen_marshal_string_result(marshaled.___name_0);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___name_0), (void*)il2cpp_codegen_marshal_string_result(marshaled.___name_0));
unmarshaled.___prefix_1 = il2cpp_codegen_marshal_string_result(marshaled.___prefix_1);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___prefix_1), (void*)il2cpp_codegen_marshal_string_result(marshaled.___prefix_1));
unmarshaled.___defaultNs_2 = il2cpp_codegen_marshal_string_result(marshaled.___defaultNs_2);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___defaultNs_2), (void*)il2cpp_codegen_marshal_string_result(marshaled.___defaultNs_2));
int32_t unmarshaleddefaultNsState_temp_3 = 0;
unmarshaleddefaultNsState_temp_3 = marshaled.___defaultNsState_3;
unmarshaled.___defaultNsState_3 = unmarshaleddefaultNsState_temp_3;
int32_t unmarshaledxmlSpace_temp_4 = 0;
unmarshaledxmlSpace_temp_4 = marshaled.___xmlSpace_4;
unmarshaled.___xmlSpace_4 = unmarshaledxmlSpace_temp_4;
unmarshaled.___xmlLang_5 = il2cpp_codegen_marshal_string_result(marshaled.___xmlLang_5);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___xmlLang_5), (void*)il2cpp_codegen_marshal_string_result(marshaled.___xmlLang_5));
int32_t unmarshaledprevNsTop_temp_6 = 0;
unmarshaledprevNsTop_temp_6 = marshaled.___prevNsTop_6;
unmarshaled.___prevNsTop_6 = unmarshaledprevNsTop_temp_6;
int32_t unmarshaledprefixCount_temp_7 = 0;
unmarshaledprefixCount_temp_7 = marshaled.___prefixCount_7;
unmarshaled.___prefixCount_7 = unmarshaledprefixCount_temp_7;
bool unmarshaledmixed_temp_8 = false;
unmarshaledmixed_temp_8 = static_cast<bool>(marshaled.___mixed_8);
unmarshaled.___mixed_8 = unmarshaledmixed_temp_8;
}
// Conversion method for clean up from marshalling of: System.Xml.XmlTextWriter/TagInfo
IL2CPP_EXTERN_C void TagInfo_tDECE4D67D7F52936C9E8F58DE38BE11733108F5C_marshal_pinvoke_cleanup(TagInfo_tDECE4D67D7F52936C9E8F58DE38BE11733108F5C_marshaled_pinvoke& marshaled)
{
il2cpp_codegen_marshal_free(marshaled.___name_0);
marshaled.___name_0 = NULL;
il2cpp_codegen_marshal_free(marshaled.___prefix_1);
marshaled.___prefix_1 = NULL;
il2cpp_codegen_marshal_free(marshaled.___defaultNs_2);
marshaled.___defaultNs_2 = NULL;
il2cpp_codegen_marshal_free(marshaled.___xmlLang_5);
marshaled.___xmlLang_5 = NULL;
}
// Conversion methods for marshalling of: System.Xml.XmlTextWriter/TagInfo
IL2CPP_EXTERN_C void TagInfo_tDECE4D67D7F52936C9E8F58DE38BE11733108F5C_marshal_com(const TagInfo_tDECE4D67D7F52936C9E8F58DE38BE11733108F5C& unmarshaled, TagInfo_tDECE4D67D7F52936C9E8F58DE38BE11733108F5C_marshaled_com& marshaled)
{
marshaled.___name_0 = il2cpp_codegen_marshal_bstring(unmarshaled.___name_0);
marshaled.___prefix_1 = il2cpp_codegen_marshal_bstring(unmarshaled.___prefix_1);
marshaled.___defaultNs_2 = il2cpp_codegen_marshal_bstring(unmarshaled.___defaultNs_2);
marshaled.___defaultNsState_3 = unmarshaled.___defaultNsState_3;
marshaled.___xmlSpace_4 = unmarshaled.___xmlSpace_4;
marshaled.___xmlLang_5 = il2cpp_codegen_marshal_bstring(unmarshaled.___xmlLang_5);
marshaled.___prevNsTop_6 = unmarshaled.___prevNsTop_6;
marshaled.___prefixCount_7 = unmarshaled.___prefixCount_7;
marshaled.___mixed_8 = static_cast<int32_t>(unmarshaled.___mixed_8);
}
IL2CPP_EXTERN_C void TagInfo_tDECE4D67D7F52936C9E8F58DE38BE11733108F5C_marshal_com_back(const TagInfo_tDECE4D67D7F52936C9E8F58DE38BE11733108F5C_marshaled_com& marshaled, TagInfo_tDECE4D67D7F52936C9E8F58DE38BE11733108F5C& unmarshaled)
{
unmarshaled.___name_0 = il2cpp_codegen_marshal_bstring_result(marshaled.___name_0);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___name_0), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___name_0));
unmarshaled.___prefix_1 = il2cpp_codegen_marshal_bstring_result(marshaled.___prefix_1);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___prefix_1), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___prefix_1));
unmarshaled.___defaultNs_2 = il2cpp_codegen_marshal_bstring_result(marshaled.___defaultNs_2);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___defaultNs_2), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___defaultNs_2));
int32_t unmarshaleddefaultNsState_temp_3 = 0;
unmarshaleddefaultNsState_temp_3 = marshaled.___defaultNsState_3;
unmarshaled.___defaultNsState_3 = unmarshaleddefaultNsState_temp_3;
int32_t unmarshaledxmlSpace_temp_4 = 0;
unmarshaledxmlSpace_temp_4 = marshaled.___xmlSpace_4;
unmarshaled.___xmlSpace_4 = unmarshaledxmlSpace_temp_4;
unmarshaled.___xmlLang_5 = il2cpp_codegen_marshal_bstring_result(marshaled.___xmlLang_5);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___xmlLang_5), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___xmlLang_5));
int32_t unmarshaledprevNsTop_temp_6 = 0;
unmarshaledprevNsTop_temp_6 = marshaled.___prevNsTop_6;
unmarshaled.___prevNsTop_6 = unmarshaledprevNsTop_temp_6;
int32_t unmarshaledprefixCount_temp_7 = 0;
unmarshaledprefixCount_temp_7 = marshaled.___prefixCount_7;
unmarshaled.___prefixCount_7 = unmarshaledprefixCount_temp_7;
bool unmarshaledmixed_temp_8 = false;
unmarshaledmixed_temp_8 = static_cast<bool>(marshaled.___mixed_8);
unmarshaled.___mixed_8 = unmarshaledmixed_temp_8;
}
// Conversion method for clean up from marshalling of: System.Xml.XmlTextWriter/TagInfo
IL2CPP_EXTERN_C void TagInfo_tDECE4D67D7F52936C9E8F58DE38BE11733108F5C_marshal_com_cleanup(TagInfo_tDECE4D67D7F52936C9E8F58DE38BE11733108F5C_marshaled_com& marshaled)
{
il2cpp_codegen_marshal_free_bstring(marshaled.___name_0);
marshaled.___name_0 = NULL;
il2cpp_codegen_marshal_free_bstring(marshaled.___prefix_1);
marshaled.___prefix_1 = NULL;
il2cpp_codegen_marshal_free_bstring(marshaled.___defaultNs_2);
marshaled.___defaultNs_2 = NULL;
il2cpp_codegen_marshal_free_bstring(marshaled.___xmlLang_5);
marshaled.___xmlLang_5 = NULL;
}
// System.Void System.Xml.XmlTextWriter/TagInfo::Init(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TagInfo_Init_m351285BE790D79A15E824AE90114E1DD5734BAB6 (TagInfo_tDECE4D67D7F52936C9E8F58DE38BE11733108F5C* __this, int32_t ___nsTop0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
__this->___name_0 = (String_t*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___name_0), (void*)(String_t*)NULL);
String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
__this->___defaultNs_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___defaultNs_2), (void*)L_0);
__this->___defaultNsState_3 = 0;
__this->___xmlSpace_4 = 0;
__this->___xmlLang_5 = (String_t*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlLang_5), (void*)(String_t*)NULL);
int32_t L_1 = ___nsTop0;
__this->___prevNsTop_6 = L_1;
__this->___prefixCount_7 = 0;
__this->___mixed_8 = (bool)0;
return;
}
}
IL2CPP_EXTERN_C void TagInfo_Init_m351285BE790D79A15E824AE90114E1DD5734BAB6_AdjustorThunk (RuntimeObject* __this, int32_t ___nsTop0, const RuntimeMethod* method)
{
TagInfo_tDECE4D67D7F52936C9E8F58DE38BE11733108F5C* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TagInfo_tDECE4D67D7F52936C9E8F58DE38BE11733108F5C*>(__this + _offset);
TagInfo_Init_m351285BE790D79A15E824AE90114E1DD5734BAB6(_thisAdjusted, ___nsTop0, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: System.Xml.XmlTextWriter/Namespace
IL2CPP_EXTERN_C void Namespace_t98C96E77A64CE0105E85EEF2416A270C2AFA6853_marshal_pinvoke(const Namespace_t98C96E77A64CE0105E85EEF2416A270C2AFA6853& unmarshaled, Namespace_t98C96E77A64CE0105E85EEF2416A270C2AFA6853_marshaled_pinvoke& marshaled)
{
marshaled.___prefix_0 = il2cpp_codegen_marshal_string(unmarshaled.___prefix_0);
marshaled.___ns_1 = il2cpp_codegen_marshal_string(unmarshaled.___ns_1);
marshaled.___declared_2 = static_cast<int32_t>(unmarshaled.___declared_2);
marshaled.___prevNsIndex_3 = unmarshaled.___prevNsIndex_3;
}
IL2CPP_EXTERN_C void Namespace_t98C96E77A64CE0105E85EEF2416A270C2AFA6853_marshal_pinvoke_back(const Namespace_t98C96E77A64CE0105E85EEF2416A270C2AFA6853_marshaled_pinvoke& marshaled, Namespace_t98C96E77A64CE0105E85EEF2416A270C2AFA6853& unmarshaled)
{
unmarshaled.___prefix_0 = il2cpp_codegen_marshal_string_result(marshaled.___prefix_0);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___prefix_0), (void*)il2cpp_codegen_marshal_string_result(marshaled.___prefix_0));
unmarshaled.___ns_1 = il2cpp_codegen_marshal_string_result(marshaled.___ns_1);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___ns_1), (void*)il2cpp_codegen_marshal_string_result(marshaled.___ns_1));
bool unmarshaleddeclared_temp_2 = false;
unmarshaleddeclared_temp_2 = static_cast<bool>(marshaled.___declared_2);
unmarshaled.___declared_2 = unmarshaleddeclared_temp_2;
int32_t unmarshaledprevNsIndex_temp_3 = 0;
unmarshaledprevNsIndex_temp_3 = marshaled.___prevNsIndex_3;
unmarshaled.___prevNsIndex_3 = unmarshaledprevNsIndex_temp_3;
}
// Conversion method for clean up from marshalling of: System.Xml.XmlTextWriter/Namespace
IL2CPP_EXTERN_C void Namespace_t98C96E77A64CE0105E85EEF2416A270C2AFA6853_marshal_pinvoke_cleanup(Namespace_t98C96E77A64CE0105E85EEF2416A270C2AFA6853_marshaled_pinvoke& marshaled)
{
il2cpp_codegen_marshal_free(marshaled.___prefix_0);
marshaled.___prefix_0 = NULL;
il2cpp_codegen_marshal_free(marshaled.___ns_1);
marshaled.___ns_1 = NULL;
}
// Conversion methods for marshalling of: System.Xml.XmlTextWriter/Namespace
IL2CPP_EXTERN_C void Namespace_t98C96E77A64CE0105E85EEF2416A270C2AFA6853_marshal_com(const Namespace_t98C96E77A64CE0105E85EEF2416A270C2AFA6853& unmarshaled, Namespace_t98C96E77A64CE0105E85EEF2416A270C2AFA6853_marshaled_com& marshaled)
{
marshaled.___prefix_0 = il2cpp_codegen_marshal_bstring(unmarshaled.___prefix_0);
marshaled.___ns_1 = il2cpp_codegen_marshal_bstring(unmarshaled.___ns_1);
marshaled.___declared_2 = static_cast<int32_t>(unmarshaled.___declared_2);
marshaled.___prevNsIndex_3 = unmarshaled.___prevNsIndex_3;
}
IL2CPP_EXTERN_C void Namespace_t98C96E77A64CE0105E85EEF2416A270C2AFA6853_marshal_com_back(const Namespace_t98C96E77A64CE0105E85EEF2416A270C2AFA6853_marshaled_com& marshaled, Namespace_t98C96E77A64CE0105E85EEF2416A270C2AFA6853& unmarshaled)
{
unmarshaled.___prefix_0 = il2cpp_codegen_marshal_bstring_result(marshaled.___prefix_0);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___prefix_0), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___prefix_0));
unmarshaled.___ns_1 = il2cpp_codegen_marshal_bstring_result(marshaled.___ns_1);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___ns_1), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___ns_1));
bool unmarshaleddeclared_temp_2 = false;
unmarshaleddeclared_temp_2 = static_cast<bool>(marshaled.___declared_2);
unmarshaled.___declared_2 = unmarshaleddeclared_temp_2;
int32_t unmarshaledprevNsIndex_temp_3 = 0;
unmarshaledprevNsIndex_temp_3 = marshaled.___prevNsIndex_3;
unmarshaled.___prevNsIndex_3 = unmarshaledprevNsIndex_temp_3;
}
// Conversion method for clean up from marshalling of: System.Xml.XmlTextWriter/Namespace
IL2CPP_EXTERN_C void Namespace_t98C96E77A64CE0105E85EEF2416A270C2AFA6853_marshal_com_cleanup(Namespace_t98C96E77A64CE0105E85EEF2416A270C2AFA6853_marshaled_com& marshaled)
{
il2cpp_codegen_marshal_free_bstring(marshaled.___prefix_0);
marshaled.___prefix_0 = NULL;
il2cpp_codegen_marshal_free_bstring(marshaled.___ns_1);
marshaled.___ns_1 = NULL;
}
// System.Void System.Xml.XmlTextWriter/Namespace::Set(System.String,System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Namespace_Set_mA421F92F59A44FCD987802098A78CA52CA3867BD (Namespace_t98C96E77A64CE0105E85EEF2416A270C2AFA6853* __this, String_t* ___prefix0, String_t* ___ns1, bool ___declared2, const RuntimeMethod* method)
{
{
String_t* L_0 = ___prefix0;
__this->___prefix_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___prefix_0), (void*)L_0);
String_t* L_1 = ___ns1;
__this->___ns_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___ns_1), (void*)L_1);
bool L_2 = ___declared2;
__this->___declared_2 = L_2;
__this->___prevNsIndex_3 = (-1);
return;
}
}
IL2CPP_EXTERN_C void Namespace_Set_mA421F92F59A44FCD987802098A78CA52CA3867BD_AdjustorThunk (RuntimeObject* __this, String_t* ___prefix0, String_t* ___ns1, bool ___declared2, const RuntimeMethod* method)
{
Namespace_t98C96E77A64CE0105E85EEF2416A270C2AFA6853* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Namespace_t98C96E77A64CE0105E85EEF2416A270C2AFA6853*>(__this + _offset);
Namespace_Set_mA421F92F59A44FCD987802098A78CA52CA3867BD(_thisAdjusted, ___prefix0, ___ns1, ___declared2, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Xml.XmlUtf8RawTextWriter::.ctor(System.Xml.XmlWriterSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter__ctor_mFA386D4802198974CCB06BC0DE6D2A89325A2794 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral13DB4394207994E4948B5E3FAE7BA705B9B8E7B3);
s_Il2CppMethodInitialized = true;
}
{
XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 L_0;
L_0 = XmlCharType_get_Instance_m2D4006A9AE9EB033F6A176E31CAFAC7EF30350AD(NULL);
__this->___xmlCharType_7 = L_0;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___xmlCharType_7))->___charProperties_2), (void*)NULL);
__this->___bufPos_8 = 1;
__this->___textPos_9 = 1;
__this->___bufLen_13 = ((int32_t)6144);
XmlRawWriter__ctor_mFB8EB6B94D64BD9F3093B42E36D60FADC66F9989(__this, NULL);
XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_1 = ___settings0;
NullCheck(L_1);
bool L_2;
L_2 = XmlWriterSettings_get_Async_m0444A26262668D76461EEBD468B622F8F5418A60_inline(L_1, NULL);
__this->___useAsync_3 = L_2;
XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_3 = ___settings0;
NullCheck(L_3);
int32_t L_4;
L_4 = XmlWriterSettings_get_NewLineHandling_mE5E642195853271BBF3F6EA8399789D675D6EBE0_inline(L_3, NULL);
__this->___newLineHandling_17 = L_4;
XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_5 = ___settings0;
NullCheck(L_5);
bool L_6;
L_6 = XmlWriterSettings_get_OmitXmlDeclaration_m4DDF4951F3229EB1DEEFABD680769ABB9BB881DF_inline(L_5, NULL);
__this->___omitXmlDeclaration_19 = L_6;
XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_7 = ___settings0;
NullCheck(L_7);
String_t* L_8;
L_8 = XmlWriterSettings_get_NewLineChars_m55DA9DDAED17162E8055730FE8047AEBFA5AC7F9_inline(L_7, NULL);
__this->___newLineChars_20 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->___newLineChars_20), (void*)L_8);
XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_9 = ___settings0;
NullCheck(L_9);
bool L_10;
L_10 = XmlWriterSettings_get_CheckCharacters_mD2E14381EBF36D4C56C13F1BF4846667B4CCBB31_inline(L_9, NULL);
__this->___checkCharacters_21 = L_10;
XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_11 = ___settings0;
NullCheck(L_11);
bool L_12;
L_12 = XmlWriterSettings_get_CloseOutput_m7676FD456B701FF93BCA6C3EADE2E5DF97D7A926_inline(L_11, NULL);
__this->___closeOutput_18 = L_12;
XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_13 = ___settings0;
NullCheck(L_13);
int32_t L_14;
L_14 = XmlWriterSettings_get_Standalone_mF6BD9C7DD44EDEA0EE1416AB92471C5374DBE26B_inline(L_13, NULL);
__this->___standalone_22 = L_14;
XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_15 = ___settings0;
NullCheck(L_15);
int32_t L_16;
L_16 = XmlWriterSettings_get_OutputMethod_mD033562BBB2BF636CD2B093DF43FFF69FCEB2BD1_inline(L_15, NULL);
__this->___outputMethod_23 = L_16;
XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_17 = ___settings0;
NullCheck(L_17);
bool L_18;
L_18 = XmlWriterSettings_get_MergeCDataSections_mA287AE0C1056022F4AE21AB1295026897C2BD817_inline(L_17, NULL);
__this->___mergeCDataSections_25 = L_18;
bool L_19 = __this->___checkCharacters_21;
if (!L_19)
{
goto IL_00b8;
}
}
{
int32_t L_20 = __this->___newLineHandling_17;
if (L_20)
{
goto IL_00b8;
}
}
{
String_t* L_21 = __this->___newLineChars_20;
XmlUtf8RawTextWriter_ValidateContentChars_m2D62E5A56C7DB286BB2FB52D93F53737272C62A4(__this, L_21, _stringLiteral13DB4394207994E4948B5E3FAE7BA705B9B8E7B3, (bool)0, NULL);
}
IL_00b8:
{
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::.ctor(System.IO.Stream,System.Xml.XmlWriterSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter__ctor_m3FED45E976C290A249ADEFDCB6B4D899997D6FB2 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings1, 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;
}
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
{
XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_0 = ___settings1;
XmlUtf8RawTextWriter__ctor_mFA386D4802198974CCB06BC0DE6D2A89325A2794(__this, L_0, NULL);
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_1 = ___stream0;
__this->___stream_5 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___stream_5), (void*)L_1);
XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_2 = ___settings1;
NullCheck(L_2);
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_3;
L_3 = XmlWriterSettings_get_Encoding_mC4E1AB9D49553D659321B2BEEA46AE5D343BCBEE_inline(L_2, NULL);
__this->___encoding_6 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___encoding_6), (void*)L_3);
XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_4 = ___settings1;
NullCheck(L_4);
bool L_5;
L_5 = XmlWriterSettings_get_Async_m0444A26262668D76461EEBD468B622F8F5418A60_inline(L_4, NULL);
if (!L_5)
{
goto IL_002d;
}
}
{
__this->___bufLen_13 = ((int32_t)65536);
}
IL_002d:
{
int32_t L_6 = __this->___bufLen_13;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add(L_6, ((int32_t)32))));
__this->___bufBytes_4 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&__this->___bufBytes_4), (void*)L_7);
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_8 = ___stream0;
NullCheck(L_8);
bool L_9;
L_9 = VirtualFuncInvoker0< bool >::Invoke(8 /* System.Boolean System.IO.Stream::get_CanSeek() */, L_8);
if (!L_9)
{
goto IL_0051;
}
}
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_10 = ___stream0;
NullCheck(L_10);
int64_t L_11;
L_11 = VirtualFuncInvoker0< int64_t >::Invoke(12 /* System.Int64 System.IO.Stream::get_Position() */, L_10);
if (L_11)
{
goto IL_0092;
}
}
IL_0051:
{
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_12 = __this->___encoding_6;
NullCheck(L_12);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_13;
L_13 = VirtualFuncInvoker0< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(6 /* System.Byte[] System.Text.Encoding::GetPreamble() */, L_12);
V_0 = L_13;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_14 = V_0;
NullCheck(L_14);
if (!(((RuntimeArray*)L_14)->max_length))
{
goto IL_0092;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_15 = V_0;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_16 = __this->___bufBytes_4;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_17 = V_0;
NullCheck(L_17);
Buffer_BlockCopy_mD8CF7EC96ADA7A542CCA3F3C73510624E10197A9((RuntimeArray*)L_15, 0, (RuntimeArray*)L_16, 1, ((int32_t)(((RuntimeArray*)L_17)->max_length)), NULL);
int32_t L_18 = __this->___bufPos_8;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_19 = V_0;
NullCheck(L_19);
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_18, ((int32_t)(((RuntimeArray*)L_19)->max_length))));
int32_t L_20 = __this->___textPos_9;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_21 = V_0;
NullCheck(L_21);
__this->___textPos_9 = ((int32_t)il2cpp_codegen_add(L_20, ((int32_t)(((RuntimeArray*)L_21)->max_length))));
}
IL_0092:
{
XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_22 = ___settings1;
NullCheck(L_22);
bool L_23;
L_23 = XmlWriterSettings_get_AutoXmlDeclaration_m99219BABCEECCC72F64FA0062E19B2628B806A9C_inline(L_22, NULL);
if (!L_23)
{
goto IL_00ad;
}
}
{
int32_t L_24 = __this->___standalone_22;
VirtualActionInvoker1< int32_t >::Invoke(36 /* System.Void System.Xml.XmlRawWriter::WriteXmlDeclaration(System.Xml.XmlStandalone) */, __this, L_24);
__this->___autoXmlDeclaration_24 = (bool)1;
}
IL_00ad:
{
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteXmlDeclaration(System.Xml.XmlStandalone)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteXmlDeclaration_m9C876199838F242C937A984AB8EC8340C1D44793 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, int32_t ___standalone0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral11AC5E2BD66016383281878F99D761B6B9AB5F11);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1C250646ACB5EAA28E079007EF6B9BECFDAEDC6E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral36D06DCF7061DEC1E8DF4C9D2BB8EB53DBD3087E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4C9D5EB3A2133DCF493D42AFE0769A5D81E10AF1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7BFA33A11F0B12AF1B7FA1D9BA996EAE1EF77B49);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB968B651B32BD07EAAB4CB96683980AF16C47C0B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralED7D39EDF70E08FE57B2522D102BF72B9E5D5331);
s_Il2CppMethodInitialized = true;
}
XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* G_B7_0 = NULL;
XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* G_B6_0 = NULL;
String_t* G_B8_0 = NULL;
XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* G_B8_1 = NULL;
{
bool L_0 = __this->___omitXmlDeclaration_19;
if (L_0)
{
goto IL_0079;
}
}
{
bool L_1 = __this->___autoXmlDeclaration_24;
if (L_1)
{
goto IL_0079;
}
}
{
XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, _stringLiteralB968B651B32BD07EAAB4CB96683980AF16C47C0B, NULL);
XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, _stringLiteral11AC5E2BD66016383281878F99D761B6B9AB5F11, NULL);
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_2 = __this->___encoding_6;
if (!L_2)
{
goto IL_004a;
}
}
{
XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, _stringLiteral36D06DCF7061DEC1E8DF4C9D2BB8EB53DBD3087E, NULL);
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_3 = __this->___encoding_6;
NullCheck(L_3);
String_t* L_4;
L_4 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Text.Encoding::get_WebName() */, L_3);
XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, L_4, NULL);
}
IL_004a:
{
int32_t L_5 = ___standalone0;
if (!L_5)
{
goto IL_006e;
}
}
{
XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, _stringLiteral1C250646ACB5EAA28E079007EF6B9BECFDAEDC6E, NULL);
int32_t L_6 = ___standalone0;
G_B6_0 = __this;
if ((((int32_t)L_6) == ((int32_t)1)))
{
G_B7_0 = __this;
goto IL_0064;
}
}
{
G_B8_0 = _stringLiteral7BFA33A11F0B12AF1B7FA1D9BA996EAE1EF77B49;
G_B8_1 = G_B6_0;
goto IL_0069;
}
IL_0064:
{
G_B8_0 = _stringLiteralED7D39EDF70E08FE57B2522D102BF72B9E5D5331;
G_B8_1 = G_B7_0;
}
IL_0069:
{
NullCheck(G_B8_1);
XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(G_B8_1, G_B8_0, NULL);
}
IL_006e:
{
XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, _stringLiteral4C9D5EB3A2133DCF493D42AFE0769A5D81E10AF1, NULL);
}
IL_0079:
{
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteXmlDeclaration(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteXmlDeclaration_mD1DF52731AA8C89BF1E05FEAE6F5FF3D59AC3711 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, String_t* ___xmldecl0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = __this->___omitXmlDeclaration_19;
if (L_0)
{
goto IL_001c;
}
}
{
bool L_1 = __this->___autoXmlDeclaration_24;
if (L_1)
{
goto IL_001c;
}
}
{
String_t* L_2 = ___xmldecl0;
VirtualActionInvoker2< String_t*, String_t* >::Invoke(16 /* System.Void System.Xml.XmlWriter::WriteProcessingInstruction(System.String,System.String) */, __this, _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158, L_2);
}
IL_001c:
{
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteDocType(System.String,System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteDocType_mF3CA63793EFA9CAF1D76AF06F0315DD56BF6739A (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, String_t* ___name0, String_t* ___pubid1, String_t* ___sysid2, String_t* ___subset3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7721A48ACA2DB6CF7BA1F50E38BE38587D4927BA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral88E0DBECA18651C0DE1E09C9B180E8C851A4F92B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC7C776080FBFB5F15E2EAAE9A4C65AE2C17FE00B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF3782EC504B73600A2DA83B623313BF6EC38CAE3);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, _stringLiteralC7C776080FBFB5F15E2EAAE9A4C65AE2C17FE00B, NULL);
String_t* L_0 = ___name0;
XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, L_0, NULL);
String_t* L_1 = ___pubid1;
if (!L_1)
{
goto IL_0058;
}
}
{
XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, _stringLiteral7721A48ACA2DB6CF7BA1F50E38BE38587D4927BA, NULL);
String_t* L_2 = ___pubid1;
XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, L_2, NULL);
XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, _stringLiteral88E0DBECA18651C0DE1E09C9B180E8C851A4F92B, NULL);
String_t* L_3 = ___sysid2;
if (!L_3)
{
goto IL_003c;
}
}
{
String_t* L_4 = ___sysid2;
XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, L_4, NULL);
}
IL_003c:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = __this->___bufBytes_4;
int32_t L_6 = __this->___bufPos_8;
V_0 = L_6;
int32_t L_7 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_7, 1));
int32_t L_8 = V_0;
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (uint8_t)((int32_t)34));
goto IL_00a3;
}
IL_0058:
{
String_t* L_9 = ___sysid2;
if (!L_9)
{
goto IL_0089;
}
}
{
XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, _stringLiteralF3782EC504B73600A2DA83B623313BF6EC38CAE3, NULL);
String_t* L_10 = ___sysid2;
XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, L_10, NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = __this->___bufBytes_4;
int32_t L_12 = __this->___bufPos_8;
V_0 = L_12;
int32_t L_13 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_13, 1));
int32_t L_14 = V_0;
NullCheck(L_11);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (uint8_t)((int32_t)34));
goto IL_00a3;
}
IL_0089:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_15 = __this->___bufBytes_4;
int32_t L_16 = __this->___bufPos_8;
V_0 = L_16;
int32_t L_17 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_17, 1));
int32_t L_18 = V_0;
NullCheck(L_15);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (uint8_t)((int32_t)32));
}
IL_00a3:
{
String_t* L_19 = ___subset3;
if (!L_19)
{
goto IL_00e3;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_20 = __this->___bufBytes_4;
int32_t L_21 = __this->___bufPos_8;
V_0 = L_21;
int32_t L_22 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_22, 1));
int32_t L_23 = V_0;
NullCheck(L_20);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (uint8_t)((int32_t)91));
String_t* L_24 = ___subset3;
XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, L_24, NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_25 = __this->___bufBytes_4;
int32_t L_26 = __this->___bufPos_8;
V_0 = L_26;
int32_t L_27 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_27, 1));
int32_t L_28 = V_0;
NullCheck(L_25);
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(L_28), (uint8_t)((int32_t)93));
}
IL_00e3:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_29 = __this->___bufBytes_4;
int32_t L_30 = __this->___bufPos_8;
V_0 = L_30;
int32_t L_31 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_31, 1));
int32_t L_32 = V_0;
NullCheck(L_29);
(L_29)->SetAt(static_cast<il2cpp_array_size_t>(L_32), (uint8_t)((int32_t)62));
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteStartElement(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteStartElement_m0379A794A0F655460F6E51460D8F650779795F6F (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = __this->___bufBytes_4;
int32_t L_1 = __this->___bufPos_8;
V_0 = L_1;
int32_t L_2 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_2, 1));
int32_t L_3 = V_0;
NullCheck(L_0);
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (uint8_t)((int32_t)60));
String_t* L_4 = ___prefix0;
if (!L_4)
{
goto IL_0046;
}
}
{
String_t* L_5 = ___prefix0;
NullCheck(L_5);
int32_t L_6;
L_6 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_5, NULL);
if (!L_6)
{
goto IL_0046;
}
}
{
String_t* L_7 = ___prefix0;
XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, L_7, NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = __this->___bufBytes_4;
int32_t L_9 = __this->___bufPos_8;
V_0 = L_9;
int32_t L_10 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_10, 1));
int32_t L_11 = V_0;
NullCheck(L_8);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(L_11), (uint8_t)((int32_t)58));
}
IL_0046:
{
String_t* L_12 = ___localName1;
XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, L_12, NULL);
int32_t L_13 = __this->___bufPos_8;
__this->___attrEndPos_12 = L_13;
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::StartElementContent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_StartElementContent_mE915245AC3F0BDA47F20DF6CC76BF72049C1F893 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = __this->___bufBytes_4;
int32_t L_1 = __this->___bufPos_8;
V_0 = L_1;
int32_t L_2 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_2, 1));
int32_t L_3 = V_0;
NullCheck(L_0);
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (uint8_t)((int32_t)62));
int32_t L_4 = __this->___bufPos_8;
__this->___contentPos_10 = L_4;
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteEndElement(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteEndElement_m5608AC0C69CDAAEF96F97DC4DA61BA4DD477479E (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->___contentPos_10;
int32_t L_1 = __this->___bufPos_8;
if ((((int32_t)L_0) == ((int32_t)L_1)))
{
goto IL_0093;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = __this->___bufBytes_4;
int32_t L_3 = __this->___bufPos_8;
V_0 = L_3;
int32_t L_4 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_4, 1));
int32_t L_5 = V_0;
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (uint8_t)((int32_t)60));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = __this->___bufBytes_4;
int32_t L_7 = __this->___bufPos_8;
V_0 = L_7;
int32_t L_8 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_8, 1));
int32_t L_9 = V_0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_9), (uint8_t)((int32_t)47));
String_t* L_10 = ___prefix0;
if (!L_10)
{
goto IL_0071;
}
}
{
String_t* L_11 = ___prefix0;
NullCheck(L_11);
int32_t L_12;
L_12 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_11, NULL);
if (!L_12)
{
goto IL_0071;
}
}
{
String_t* L_13 = ___prefix0;
XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, L_13, NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_14 = __this->___bufBytes_4;
int32_t L_15 = __this->___bufPos_8;
V_0 = L_15;
int32_t L_16 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_16, 1));
int32_t L_17 = V_0;
NullCheck(L_14);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(L_17), (uint8_t)((int32_t)58));
}
IL_0071:
{
String_t* L_18 = ___localName1;
XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, L_18, NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_19 = __this->___bufBytes_4;
int32_t L_20 = __this->___bufPos_8;
V_0 = L_20;
int32_t L_21 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_21, 1));
int32_t L_22 = V_0;
NullCheck(L_19);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(L_22), (uint8_t)((int32_t)62));
return;
}
IL_0093:
{
int32_t L_23 = __this->___bufPos_8;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_subtract(L_23, 1));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_24 = __this->___bufBytes_4;
int32_t L_25 = __this->___bufPos_8;
V_0 = L_25;
int32_t L_26 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_26, 1));
int32_t L_27 = V_0;
NullCheck(L_24);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(L_27), (uint8_t)((int32_t)32));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_28 = __this->___bufBytes_4;
int32_t L_29 = __this->___bufPos_8;
V_0 = L_29;
int32_t L_30 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_30, 1));
int32_t L_31 = V_0;
NullCheck(L_28);
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(L_31), (uint8_t)((int32_t)47));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_32 = __this->___bufBytes_4;
int32_t L_33 = __this->___bufPos_8;
V_0 = L_33;
int32_t L_34 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_34, 1));
int32_t L_35 = V_0;
NullCheck(L_32);
(L_32)->SetAt(static_cast<il2cpp_array_size_t>(L_35), (uint8_t)((int32_t)62));
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteFullEndElement(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteFullEndElement_mA2262354DD58A77D7D3422165A75016FB0B609F2 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = __this->___bufBytes_4;
int32_t L_1 = __this->___bufPos_8;
V_0 = L_1;
int32_t L_2 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_2, 1));
int32_t L_3 = V_0;
NullCheck(L_0);
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (uint8_t)((int32_t)60));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = __this->___bufBytes_4;
int32_t L_5 = __this->___bufPos_8;
V_0 = L_5;
int32_t L_6 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_6, 1));
int32_t L_7 = V_0;
NullCheck(L_4);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (uint8_t)((int32_t)47));
String_t* L_8 = ___prefix0;
if (!L_8)
{
goto IL_0060;
}
}
{
String_t* L_9 = ___prefix0;
NullCheck(L_9);
int32_t L_10;
L_10 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_9, NULL);
if (!L_10)
{
goto IL_0060;
}
}
{
String_t* L_11 = ___prefix0;
XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, L_11, NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12 = __this->___bufBytes_4;
int32_t L_13 = __this->___bufPos_8;
V_0 = L_13;
int32_t L_14 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_14, 1));
int32_t L_15 = V_0;
NullCheck(L_12);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_15), (uint8_t)((int32_t)58));
}
IL_0060:
{
String_t* L_16 = ___localName1;
XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, L_16, NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_17 = __this->___bufBytes_4;
int32_t L_18 = __this->___bufPos_8;
V_0 = L_18;
int32_t L_19 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_19, 1));
int32_t L_20 = V_0;
NullCheck(L_17);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_20), (uint8_t)((int32_t)62));
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteStartAttribute(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteStartAttribute_mFBD89332E58A89DAFA893BD88A09171AD963DFD8 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->___attrEndPos_12;
int32_t L_1 = __this->___bufPos_8;
if ((!(((uint32_t)L_0) == ((uint32_t)L_1))))
{
goto IL_0028;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = __this->___bufBytes_4;
int32_t L_3 = __this->___bufPos_8;
V_0 = L_3;
int32_t L_4 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_4, 1));
int32_t L_5 = V_0;
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (uint8_t)((int32_t)32));
}
IL_0028:
{
String_t* L_6 = ___prefix0;
if (!L_6)
{
goto IL_0055;
}
}
{
String_t* L_7 = ___prefix0;
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_0055;
}
}
{
String_t* L_9 = ___prefix0;
XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, L_9, NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = __this->___bufBytes_4;
int32_t L_11 = __this->___bufPos_8;
V_0 = L_11;
int32_t L_12 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_12, 1));
int32_t L_13 = V_0;
NullCheck(L_10);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (uint8_t)((int32_t)58));
}
IL_0055:
{
String_t* L_14 = ___localName1;
XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, L_14, NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_15 = __this->___bufBytes_4;
int32_t L_16 = __this->___bufPos_8;
V_0 = L_16;
int32_t L_17 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_17, 1));
int32_t L_18 = V_0;
NullCheck(L_15);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (uint8_t)((int32_t)61));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_19 = __this->___bufBytes_4;
int32_t L_20 = __this->___bufPos_8;
V_0 = L_20;
int32_t L_21 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_21, 1));
int32_t L_22 = V_0;
NullCheck(L_19);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(L_22), (uint8_t)((int32_t)34));
__this->___inAttributeValue_16 = (bool)1;
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteEndAttribute()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteEndAttribute_m97209AFB2533FAB3434EA7AFED6AAD666C18DA26 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = __this->___bufBytes_4;
int32_t L_1 = __this->___bufPos_8;
V_0 = L_1;
int32_t L_2 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_2, 1));
int32_t L_3 = V_0;
NullCheck(L_0);
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (uint8_t)((int32_t)34));
__this->___inAttributeValue_16 = (bool)0;
int32_t L_4 = __this->___bufPos_8;
__this->___attrEndPos_12 = L_4;
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteNamespaceDeclaration(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteNamespaceDeclaration_m67C8D129EF23DEDA7A2225C56FBA512BB5AB0024 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, String_t* ___prefix0, String_t* ___namespaceName1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___prefix0;
VirtualActionInvoker1< String_t* >::Invoke(44 /* System.Void System.Xml.XmlRawWriter::WriteStartNamespaceDeclaration(System.String) */, __this, L_0);
String_t* L_1 = ___namespaceName1;
VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, __this, L_1);
VirtualActionInvoker0::Invoke(45 /* System.Void System.Xml.XmlRawWriter::WriteEndNamespaceDeclaration() */, __this);
return;
}
}
// System.Boolean System.Xml.XmlUtf8RawTextWriter::get_SupportsNamespaceDeclarationInChunks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlUtf8RawTextWriter_get_SupportsNamespaceDeclarationInChunks_m30DDCAFFE7BF3D88A5F298F3B118A03803EC4DF1 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteStartNamespaceDeclaration(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteStartNamespaceDeclaration_m7188E73372AB58E0C20BE19FE6838C947331B419 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, String_t* ___prefix0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7445C16916FA3BA29CF130D3BC44506627A580F8);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD7BB4816F511937863E42D9A34BAB32B43210AE7);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
String_t* L_0 = ___prefix0;
NullCheck(L_0);
int32_t L_1;
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL);
if (L_1)
{
goto IL_0015;
}
}
{
XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, _stringLiteral7445C16916FA3BA29CF130D3BC44506627A580F8, NULL);
goto IL_005b;
}
IL_0015:
{
XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, _stringLiteralD7BB4816F511937863E42D9A34BAB32B43210AE7, NULL);
String_t* L_2 = ___prefix0;
XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, L_2, NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = __this->___bufBytes_4;
int32_t L_4 = __this->___bufPos_8;
V_0 = L_4;
int32_t L_5 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_5, 1));
int32_t L_6 = V_0;
NullCheck(L_3);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (uint8_t)((int32_t)61));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7 = __this->___bufBytes_4;
int32_t L_8 = __this->___bufPos_8;
V_0 = L_8;
int32_t L_9 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_9, 1));
int32_t L_10 = V_0;
NullCheck(L_7);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(L_10), (uint8_t)((int32_t)34));
}
IL_005b:
{
__this->___inAttributeValue_16 = (bool)1;
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteEndNamespaceDeclaration()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteEndNamespaceDeclaration_m0DEE5ABF65B9235B7B5BD12C5AEE8A7ADBB2BD5E (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
__this->___inAttributeValue_16 = (bool)0;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = __this->___bufBytes_4;
int32_t L_1 = __this->___bufPos_8;
V_0 = L_1;
int32_t L_2 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_2, 1));
int32_t L_3 = V_0;
NullCheck(L_0);
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (uint8_t)((int32_t)34));
int32_t L_4 = __this->___bufPos_8;
__this->___attrEndPos_12 = L_4;
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteCData(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteCData_m276E549C1CB22DB7B762AEB5473699A434F4998C (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, String_t* ___text0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
bool L_0 = __this->___mergeCDataSections_25;
if (!L_0)
{
goto IL_0029;
}
}
{
int32_t L_1 = __this->___bufPos_8;
int32_t L_2 = __this->___cdataPos_11;
if ((!(((uint32_t)L_1) == ((uint32_t)L_2))))
{
goto IL_0029;
}
}
{
int32_t L_3 = __this->___bufPos_8;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_subtract(L_3, 3));
goto IL_0113;
}
IL_0029:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = __this->___bufBytes_4;
int32_t L_5 = __this->___bufPos_8;
V_0 = L_5;
int32_t L_6 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_6, 1));
int32_t L_7 = V_0;
NullCheck(L_4);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (uint8_t)((int32_t)60));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = __this->___bufBytes_4;
int32_t L_9 = __this->___bufPos_8;
V_0 = L_9;
int32_t L_10 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_10, 1));
int32_t L_11 = V_0;
NullCheck(L_8);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(L_11), (uint8_t)((int32_t)33));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12 = __this->___bufBytes_4;
int32_t L_13 = __this->___bufPos_8;
V_0 = L_13;
int32_t L_14 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_14, 1));
int32_t L_15 = V_0;
NullCheck(L_12);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_15), (uint8_t)((int32_t)91));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_16 = __this->___bufBytes_4;
int32_t L_17 = __this->___bufPos_8;
V_0 = L_17;
int32_t L_18 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_18, 1));
int32_t L_19 = V_0;
NullCheck(L_16);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(L_19), (uint8_t)((int32_t)67));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_20 = __this->___bufBytes_4;
int32_t L_21 = __this->___bufPos_8;
V_0 = L_21;
int32_t L_22 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_22, 1));
int32_t L_23 = V_0;
NullCheck(L_20);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (uint8_t)((int32_t)68));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_24 = __this->___bufBytes_4;
int32_t L_25 = __this->___bufPos_8;
V_0 = L_25;
int32_t L_26 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_26, 1));
int32_t L_27 = V_0;
NullCheck(L_24);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(L_27), (uint8_t)((int32_t)65));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_28 = __this->___bufBytes_4;
int32_t L_29 = __this->___bufPos_8;
V_0 = L_29;
int32_t L_30 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_30, 1));
int32_t L_31 = V_0;
NullCheck(L_28);
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(L_31), (uint8_t)((int32_t)84));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_32 = __this->___bufBytes_4;
int32_t L_33 = __this->___bufPos_8;
V_0 = L_33;
int32_t L_34 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_34, 1));
int32_t L_35 = V_0;
NullCheck(L_32);
(L_32)->SetAt(static_cast<il2cpp_array_size_t>(L_35), (uint8_t)((int32_t)65));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_36 = __this->___bufBytes_4;
int32_t L_37 = __this->___bufPos_8;
V_0 = L_37;
int32_t L_38 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_38, 1));
int32_t L_39 = V_0;
NullCheck(L_36);
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_39), (uint8_t)((int32_t)91));
}
IL_0113:
{
String_t* L_40 = ___text0;
XmlUtf8RawTextWriter_WriteCDataSection_mE925886DFC2D61C6F69311708EA5C99D73E462F9(__this, L_40, NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_41 = __this->___bufBytes_4;
int32_t L_42 = __this->___bufPos_8;
V_0 = L_42;
int32_t L_43 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_43, 1));
int32_t L_44 = V_0;
NullCheck(L_41);
(L_41)->SetAt(static_cast<il2cpp_array_size_t>(L_44), (uint8_t)((int32_t)93));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_45 = __this->___bufBytes_4;
int32_t L_46 = __this->___bufPos_8;
V_0 = L_46;
int32_t L_47 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_47, 1));
int32_t L_48 = V_0;
NullCheck(L_45);
(L_45)->SetAt(static_cast<il2cpp_array_size_t>(L_48), (uint8_t)((int32_t)93));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_49 = __this->___bufBytes_4;
int32_t L_50 = __this->___bufPos_8;
V_0 = L_50;
int32_t L_51 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_51, 1));
int32_t L_52 = V_0;
NullCheck(L_49);
(L_49)->SetAt(static_cast<il2cpp_array_size_t>(L_52), (uint8_t)((int32_t)62));
int32_t L_53 = __this->___bufPos_8;
__this->___textPos_9 = L_53;
int32_t L_54 = __this->___bufPos_8;
__this->___cdataPos_11 = L_54;
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteComment(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteComment_mB7554706D5AB959EC657803CBF3F46A9F7B3B0F0 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, String_t* ___text0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = __this->___bufBytes_4;
int32_t L_1 = __this->___bufPos_8;
V_0 = L_1;
int32_t L_2 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_2, 1));
int32_t L_3 = V_0;
NullCheck(L_0);
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (uint8_t)((int32_t)60));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = __this->___bufBytes_4;
int32_t L_5 = __this->___bufPos_8;
V_0 = L_5;
int32_t L_6 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_6, 1));
int32_t L_7 = V_0;
NullCheck(L_4);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (uint8_t)((int32_t)33));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = __this->___bufBytes_4;
int32_t L_9 = __this->___bufPos_8;
V_0 = L_9;
int32_t L_10 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_10, 1));
int32_t L_11 = V_0;
NullCheck(L_8);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(L_11), (uint8_t)((int32_t)45));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12 = __this->___bufBytes_4;
int32_t L_13 = __this->___bufPos_8;
V_0 = L_13;
int32_t L_14 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_14, 1));
int32_t L_15 = V_0;
NullCheck(L_12);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_15), (uint8_t)((int32_t)45));
String_t* L_16 = ___text0;
XmlUtf8RawTextWriter_WriteCommentOrPi_m8683C7CE47F8B88FAECBACFF8FF741E26F11C041(__this, L_16, ((int32_t)45), NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_17 = __this->___bufBytes_4;
int32_t L_18 = __this->___bufPos_8;
V_0 = L_18;
int32_t L_19 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_19, 1));
int32_t L_20 = V_0;
NullCheck(L_17);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_20), (uint8_t)((int32_t)45));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_21 = __this->___bufBytes_4;
int32_t L_22 = __this->___bufPos_8;
V_0 = L_22;
int32_t L_23 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_23, 1));
int32_t L_24 = V_0;
NullCheck(L_21);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (uint8_t)((int32_t)45));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_25 = __this->___bufBytes_4;
int32_t L_26 = __this->___bufPos_8;
V_0 = L_26;
int32_t L_27 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_27, 1));
int32_t L_28 = V_0;
NullCheck(L_25);
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(L_28), (uint8_t)((int32_t)62));
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteProcessingInstruction(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteProcessingInstruction_m3FBDFD76690A07B4145020ABB521B6D0E0015C84 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, String_t* ___name0, String_t* ___text1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = __this->___bufBytes_4;
int32_t L_1 = __this->___bufPos_8;
V_0 = L_1;
int32_t L_2 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_2, 1));
int32_t L_3 = V_0;
NullCheck(L_0);
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (uint8_t)((int32_t)60));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = __this->___bufBytes_4;
int32_t L_5 = __this->___bufPos_8;
V_0 = L_5;
int32_t L_6 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_6, 1));
int32_t L_7 = V_0;
NullCheck(L_4);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (uint8_t)((int32_t)63));
String_t* L_8 = ___name0;
XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, L_8, NULL);
String_t* L_9 = ___text1;
NullCheck(L_9);
int32_t L_10;
L_10 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_9, NULL);
if ((((int32_t)L_10) <= ((int32_t)0)))
{
goto IL_0067;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = __this->___bufBytes_4;
int32_t L_12 = __this->___bufPos_8;
V_0 = L_12;
int32_t L_13 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_13, 1));
int32_t L_14 = V_0;
NullCheck(L_11);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (uint8_t)((int32_t)32));
String_t* L_15 = ___text1;
XmlUtf8RawTextWriter_WriteCommentOrPi_m8683C7CE47F8B88FAECBACFF8FF741E26F11C041(__this, L_15, ((int32_t)63), NULL);
}
IL_0067:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_16 = __this->___bufBytes_4;
int32_t L_17 = __this->___bufPos_8;
V_0 = L_17;
int32_t L_18 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_18, 1));
int32_t L_19 = V_0;
NullCheck(L_16);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(L_19), (uint8_t)((int32_t)63));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_20 = __this->___bufBytes_4;
int32_t L_21 = __this->___bufPos_8;
V_0 = L_21;
int32_t L_22 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_22, 1));
int32_t L_23 = V_0;
NullCheck(L_20);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (uint8_t)((int32_t)62));
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteEntityRef(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteEntityRef_mBB58E9588BA1D0830275543E726325234FCFD016 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, String_t* ___name0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = __this->___bufBytes_4;
int32_t L_1 = __this->___bufPos_8;
V_0 = L_1;
int32_t L_2 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_2, 1));
int32_t L_3 = V_0;
NullCheck(L_0);
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (uint8_t)((int32_t)38));
String_t* L_4 = ___name0;
XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, L_4, NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = __this->___bufBytes_4;
int32_t L_6 = __this->___bufPos_8;
V_0 = L_6;
int32_t L_7 = V_0;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_7, 1));
int32_t L_8 = V_0;
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (uint8_t)((int32_t)59));
int32_t L_9 = __this->___bufPos_8;
int32_t L_10 = __this->___bufLen_13;
if ((((int32_t)L_9) <= ((int32_t)L_10)))
{
goto IL_004f;
}
}
{
VirtualActionInvoker0::Invoke(48 /* System.Void System.Xml.XmlUtf8RawTextWriter::FlushBuffer() */, __this);
}
IL_004f:
{
int32_t L_11 = __this->___bufPos_8;
__this->___textPos_9 = L_11;
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteCharEntity(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteCharEntity_mCFA33DAFBB5CC7664DB5285C282CD17602A087EC (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, Il2CppChar ___ch0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
int32_t V_1 = 0;
{
Il2CppChar L_0 = ___ch0;
V_1 = L_0;
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_1;
L_1 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL);
String_t* L_2;
L_2 = Int32_ToString_mE871810BC163EE4EF88E7C7682A6AD39911173B8((&V_1), _stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE, L_1, NULL);
V_0 = L_2;
bool L_3 = __this->___checkCharacters_21;
if (!L_3)
{
goto IL_0032;
}
}
{
XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_4 = (&__this->___xmlCharType_7);
Il2CppChar L_5 = ___ch0;
bool L_6;
L_6 = XmlCharType_IsCharData_m39C87F830CD89F4F0029AA0338BB9AB5EFCC1AF5(L_4, L_5, NULL);
if (L_6)
{
goto IL_0032;
}
}
{
Il2CppChar L_7 = ___ch0;
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var)));
Exception_t* L_8;
L_8 = XmlConvert_CreateInvalidCharException_mDB4221F3CC7FE0F027C0BE5E94398367C6D528CF(L_7, 0, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUtf8RawTextWriter_WriteCharEntity_mCFA33DAFBB5CC7664DB5285C282CD17602A087EC_RuntimeMethod_var)));
}
IL_0032:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = __this->___bufBytes_4;
int32_t L_10 = __this->___bufPos_8;
V_1 = L_10;
int32_t L_11 = V_1;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_11, 1));
int32_t L_12 = V_1;
NullCheck(L_9);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(L_12), (uint8_t)((int32_t)38));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_13 = __this->___bufBytes_4;
int32_t L_14 = __this->___bufPos_8;
V_1 = L_14;
int32_t L_15 = V_1;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_15, 1));
int32_t L_16 = V_1;
NullCheck(L_13);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_16), (uint8_t)((int32_t)35));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_17 = __this->___bufBytes_4;
int32_t L_18 = __this->___bufPos_8;
V_1 = L_18;
int32_t L_19 = V_1;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_19, 1));
int32_t L_20 = V_1;
NullCheck(L_17);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_20), (uint8_t)((int32_t)120));
String_t* L_21 = V_0;
XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, L_21, NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_22 = __this->___bufBytes_4;
int32_t L_23 = __this->___bufPos_8;
V_1 = L_23;
int32_t L_24 = V_1;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_24, 1));
int32_t L_25 = V_1;
NullCheck(L_22);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(L_25), (uint8_t)((int32_t)59));
int32_t L_26 = __this->___bufPos_8;
int32_t L_27 = __this->___bufLen_13;
if ((((int32_t)L_26) <= ((int32_t)L_27)))
{
goto IL_00b5;
}
}
{
VirtualActionInvoker0::Invoke(48 /* System.Void System.Xml.XmlUtf8RawTextWriter::FlushBuffer() */, __this);
}
IL_00b5:
{
int32_t L_28 = __this->___bufPos_8;
__this->___textPos_9 = L_28;
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteWhitespace(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteWhitespace_m108C1B276821AE78EFBF52C9CEC9A7189A6A9E47 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, String_t* ___ws0, const RuntimeMethod* method)
{
Il2CppChar* V_0 = NULL;
String_t* V_1 = NULL;
Il2CppChar* V_2 = NULL;
{
String_t* L_0 = ___ws0;
V_1 = L_0;
String_t* L_1 = V_1;
V_0 = (Il2CppChar*)((uintptr_t)L_1);
Il2CppChar* L_2 = V_0;
if (!L_2)
{
goto IL_0010;
}
}
{
Il2CppChar* L_3 = V_0;
int32_t L_4;
L_4 = RuntimeHelpers_get_OffsetToStringData_mBBE58AEA702864FB006771F4600D1D99B1234460(NULL);
V_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_3, L_4));
}
IL_0010:
{
Il2CppChar* L_5 = V_0;
String_t* L_6 = ___ws0;
NullCheck(L_6);
int32_t L_7;
L_7 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_6, NULL);
V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_5, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_7), 2))));
bool L_8 = __this->___inAttributeValue_16;
if (!L_8)
{
goto IL_002e;
}
}
{
Il2CppChar* L_9 = V_0;
Il2CppChar* L_10 = V_2;
XmlUtf8RawTextWriter_WriteAttributeTextBlock_mE2D22AC1D27C0BFA841022E3C14C58567E2C9977(__this, L_9, L_10, NULL);
goto IL_0036;
}
IL_002e:
{
Il2CppChar* L_11 = V_0;
Il2CppChar* L_12 = V_2;
XmlUtf8RawTextWriter_WriteElementTextBlock_mE38367032B8ADFFA8A6F4F34598740F0E791575B(__this, L_11, L_12, NULL);
}
IL_0036:
{
V_1 = (String_t*)NULL;
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteString_m6617BD373BF048EBE187A1F03A3A8CD74534FF98 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, String_t* ___text0, const RuntimeMethod* method)
{
Il2CppChar* V_0 = NULL;
String_t* V_1 = NULL;
Il2CppChar* V_2 = NULL;
{
String_t* L_0 = ___text0;
V_1 = L_0;
String_t* L_1 = V_1;
V_0 = (Il2CppChar*)((uintptr_t)L_1);
Il2CppChar* L_2 = V_0;
if (!L_2)
{
goto IL_0010;
}
}
{
Il2CppChar* L_3 = V_0;
int32_t L_4;
L_4 = RuntimeHelpers_get_OffsetToStringData_mBBE58AEA702864FB006771F4600D1D99B1234460(NULL);
V_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_3, L_4));
}
IL_0010:
{
Il2CppChar* L_5 = V_0;
String_t* L_6 = ___text0;
NullCheck(L_6);
int32_t L_7;
L_7 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_6, NULL);
V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_5, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_7), 2))));
bool L_8 = __this->___inAttributeValue_16;
if (!L_8)
{
goto IL_002e;
}
}
{
Il2CppChar* L_9 = V_0;
Il2CppChar* L_10 = V_2;
XmlUtf8RawTextWriter_WriteAttributeTextBlock_mE2D22AC1D27C0BFA841022E3C14C58567E2C9977(__this, L_9, L_10, NULL);
goto IL_0036;
}
IL_002e:
{
Il2CppChar* L_11 = V_0;
Il2CppChar* L_12 = V_2;
XmlUtf8RawTextWriter_WriteElementTextBlock_mE38367032B8ADFFA8A6F4F34598740F0E791575B(__this, L_11, L_12, NULL);
}
IL_0036:
{
V_1 = (String_t*)NULL;
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteSurrogateCharEntity(System.Char,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteSurrogateCharEntity_m684718E512C7E54D584D19EA71D675C9201345F9 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, Il2CppChar ___lowChar0, Il2CppChar ___highChar1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
Il2CppChar L_0 = ___lowChar0;
Il2CppChar L_1 = ___highChar1;
int32_t L_2;
L_2 = XmlCharType_CombineSurrogateChar_mCCBF257D9AE510DB9D3AA852848DCEB8AE0B9512(L_0, L_1, NULL);
V_0 = L_2;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = __this->___bufBytes_4;
int32_t L_4 = __this->___bufPos_8;
V_1 = L_4;
int32_t L_5 = V_1;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_5, 1));
int32_t L_6 = V_1;
NullCheck(L_3);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (uint8_t)((int32_t)38));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7 = __this->___bufBytes_4;
int32_t L_8 = __this->___bufPos_8;
V_1 = L_8;
int32_t L_9 = V_1;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_9, 1));
int32_t L_10 = V_1;
NullCheck(L_7);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(L_10), (uint8_t)((int32_t)35));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = __this->___bufBytes_4;
int32_t L_12 = __this->___bufPos_8;
V_1 = L_12;
int32_t L_13 = V_1;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_13, 1));
int32_t L_14 = V_1;
NullCheck(L_11);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (uint8_t)((int32_t)120));
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_15;
L_15 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL);
String_t* L_16;
L_16 = Int32_ToString_mE871810BC163EE4EF88E7C7682A6AD39911173B8((&V_0), _stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE, L_15, NULL);
XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, L_16, NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_17 = __this->___bufBytes_4;
int32_t L_18 = __this->___bufPos_8;
V_1 = L_18;
int32_t L_19 = V_1;
__this->___bufPos_8 = ((int32_t)il2cpp_codegen_add(L_19, 1));
int32_t L_20 = V_1;
NullCheck(L_17);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_20), (uint8_t)((int32_t)59));
int32_t L_21 = __this->___bufPos_8;
__this->___textPos_9 = L_21;
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteChars(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteChars_m3D35BDDD9FF236EC73A0EB772343004B2C4B3C2B (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
Il2CppChar* V_0 = NULL;
Il2CppChar* V_1 = NULL;
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___buffer0;
int32_t L_1 = ___index1;
NullCheck(L_0);
V_1 = ((L_0)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_1)));
Il2CppChar* L_2 = V_1;
V_0 = (Il2CppChar*)((uintptr_t)L_2);
bool L_3 = __this->___inAttributeValue_16;
if (!L_3)
{
goto IL_0022;
}
}
{
Il2CppChar* L_4 = V_0;
Il2CppChar* L_5 = V_0;
int32_t L_6 = ___count2;
XmlUtf8RawTextWriter_WriteAttributeTextBlock_mE2D22AC1D27C0BFA841022E3C14C58567E2C9977(__this, L_4, ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_5, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_6), 2)))), NULL);
goto IL_002f;
}
IL_0022:
{
Il2CppChar* L_7 = V_0;
Il2CppChar* L_8 = V_0;
int32_t L_9 = ___count2;
XmlUtf8RawTextWriter_WriteElementTextBlock_mE38367032B8ADFFA8A6F4F34598740F0E791575B(__this, L_7, ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_8, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_9), 2)))), NULL);
}
IL_002f:
{
V_1 = (Il2CppChar*)((uintptr_t)0);
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteRaw(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteRaw_m1CD2BE14DD496B9EA6D2093F8555677CC1B52096 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
Il2CppChar* V_0 = NULL;
Il2CppChar* V_1 = NULL;
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___buffer0;
int32_t L_1 = ___index1;
NullCheck(L_0);
V_1 = ((L_0)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_1)));
Il2CppChar* L_2 = V_1;
V_0 = (Il2CppChar*)((uintptr_t)L_2);
Il2CppChar* L_3 = V_0;
Il2CppChar* L_4 = V_0;
int32_t L_5 = ___count2;
XmlUtf8RawTextWriter_WriteRawWithCharChecking_m312CDB6D9A7F9A965408839DAA06A50F74F79392(__this, L_3, ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_4, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_5), 2)))), NULL);
V_1 = (Il2CppChar*)((uintptr_t)0);
int32_t L_6 = __this->___bufPos_8;
__this->___textPos_9 = L_6;
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteRaw(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteRaw_m6CEED895A7A1E54D50BC0DF04ED0F7B7F64FDA94 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, String_t* ___data0, const RuntimeMethod* method)
{
Il2CppChar* V_0 = NULL;
String_t* V_1 = NULL;
{
String_t* L_0 = ___data0;
V_1 = L_0;
String_t* L_1 = V_1;
V_0 = (Il2CppChar*)((uintptr_t)L_1);
Il2CppChar* L_2 = V_0;
if (!L_2)
{
goto IL_0010;
}
}
{
Il2CppChar* L_3 = V_0;
int32_t L_4;
L_4 = RuntimeHelpers_get_OffsetToStringData_mBBE58AEA702864FB006771F4600D1D99B1234460(NULL);
V_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_3, L_4));
}
IL_0010:
{
Il2CppChar* L_5 = V_0;
Il2CppChar* L_6 = V_0;
String_t* L_7 = ___data0;
NullCheck(L_7);
int32_t L_8;
L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL);
XmlUtf8RawTextWriter_WriteRawWithCharChecking_m312CDB6D9A7F9A965408839DAA06A50F74F79392(__this, L_5, ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_6, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_8), 2)))), NULL);
V_1 = (String_t*)NULL;
int32_t L_9 = __this->___bufPos_8;
__this->___textPos_9 = L_9;
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::Close()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_Close_m1E9E2DD1B3904104E96BA3E75F437FA6907D300B (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, const RuntimeMethod* method)
{
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_000e:
{// begin finally (depth: 1)
{
__this->___writeToNull_14 = (bool)1;
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0 = __this->___stream_5;
if (!L_0)
{
goto IL_0049;
}
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_002a:
{// begin finally (depth: 2)
{
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0040:
{// begin finally (depth: 3)
__this->___stream_5 = (Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___stream_5), (void*)(Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE*)NULL);
return;
}// end finally (depth: 3)
});
try
{// begin try (depth: 3)
{
bool L_1 = __this->___closeOutput_18;
if (!L_1)
{
goto IL_003e_1;
}
}
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_2 = __this->___stream_5;
NullCheck(L_2);
VirtualActionInvoker0::Invoke(18 /* System.Void System.IO.Stream::Close() */, L_2);
}
IL_003e_1:
{
goto IL_0048;
}
}// end try (depth: 3)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0048:
{
return;
}
}// end finally (depth: 2)
});
try
{// begin try (depth: 2)
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_3 = __this->___stream_5;
NullCheck(L_3);
VirtualActionInvoker0::Invoke(20 /* System.Void System.IO.Stream::Flush() */, L_3);
goto IL_0049;
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0049:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
VirtualActionInvoker0::Invoke(48 /* System.Void System.Xml.XmlUtf8RawTextWriter::FlushBuffer() */, __this);
XmlUtf8RawTextWriter_FlushEncoder_m48C957E6B75EE03674B3DD29609304E5E794A565(__this, NULL);
goto IL_004a;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_004a:
{
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::Flush()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_Flush_m52C4545C88435BA0436536B6BDB50DB7EDFF353A (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, const RuntimeMethod* method)
{
{
VirtualActionInvoker0::Invoke(48 /* System.Void System.Xml.XmlUtf8RawTextWriter::FlushBuffer() */, __this);
XmlUtf8RawTextWriter_FlushEncoder_m48C957E6B75EE03674B3DD29609304E5E794A565(__this, NULL);
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0 = __this->___stream_5;
if (!L_0)
{
goto IL_001f;
}
}
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_1 = __this->___stream_5;
NullCheck(L_1);
VirtualActionInvoker0::Invoke(20 /* System.Void System.IO.Stream::Flush() */, L_1);
}
IL_001f:
{
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::FlushBuffer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_FlushBuffer_m380AF5AC857AFEFB88FD4D4A223CE2F61D0B624A (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* G_B8_0 = NULL;
XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* G_B7_0 = NULL;
int32_t G_B9_0 = 0;
XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* G_B9_1 = NULL;
XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* G_B11_0 = NULL;
XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* G_B10_0 = NULL;
int32_t G_B12_0 = 0;
XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* G_B12_1 = NULL;
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0031:
{// begin finally (depth: 1)
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = __this->___bufBytes_4;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = __this->___bufBytes_4;
int32_t L_2 = __this->___bufPos_8;
NullCheck(L_1);
int32_t L_3 = ((int32_t)il2cpp_codegen_subtract(L_2, 1));
uint8_t L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
NullCheck(L_0);
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)L_4);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = __this->___bufBytes_4;
NullCheck(L_5);
int32_t L_6 = 0;
uint8_t L_7 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
bool L_8;
L_8 = XmlUtf8RawTextWriter_IsSurrogateByte_m621EF957DE646EF6FCD643DEADBAC66AA29964D5(L_7, NULL);
if (!L_8)
{
goto IL_009a;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = __this->___bufBytes_4;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = __this->___bufBytes_4;
int32_t L_11 = __this->___bufPos_8;
NullCheck(L_10);
int32_t L_12 = L_11;
uint8_t L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
NullCheck(L_9);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(1), (uint8_t)L_13);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_14 = __this->___bufBytes_4;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_15 = __this->___bufBytes_4;
int32_t L_16 = __this->___bufPos_8;
NullCheck(L_15);
int32_t L_17 = ((int32_t)il2cpp_codegen_add(L_16, 1));
uint8_t L_18 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
NullCheck(L_14);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(2), (uint8_t)L_18);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_19 = __this->___bufBytes_4;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_20 = __this->___bufBytes_4;
int32_t L_21 = __this->___bufPos_8;
NullCheck(L_20);
int32_t L_22 = ((int32_t)il2cpp_codegen_add(L_21, 2));
uint8_t L_23 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
NullCheck(L_19);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(3), (uint8_t)L_23);
}
IL_009a:
{
int32_t L_24 = __this->___textPos_9;
int32_t L_25 = __this->___bufPos_8;
G_B7_0 = __this;
if ((((int32_t)L_24) == ((int32_t)L_25)))
{
G_B8_0 = __this;
goto IL_00ac;
}
}
{
G_B9_0 = 0;
G_B9_1 = G_B7_0;
goto IL_00ad;
}
IL_00ac:
{
G_B9_0 = 1;
G_B9_1 = G_B8_0;
}
IL_00ad:
{
NullCheck(G_B9_1);
G_B9_1->___textPos_9 = G_B9_0;
int32_t L_26 = __this->___attrEndPos_12;
int32_t L_27 = __this->___bufPos_8;
G_B10_0 = __this;
if ((((int32_t)L_26) == ((int32_t)L_27)))
{
G_B11_0 = __this;
goto IL_00c4;
}
}
{
G_B12_0 = 0;
G_B12_1 = G_B10_0;
goto IL_00c5;
}
IL_00c4:
{
G_B12_0 = 1;
G_B12_1 = G_B11_0;
}
IL_00c5:
{
NullCheck(G_B12_1);
G_B12_1->___attrEndPos_12 = G_B12_0;
__this->___contentPos_10 = 0;
__this->___cdataPos_11 = 0;
__this->___bufPos_8 = 1;
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
try
{// begin try (depth: 2)
{
bool L_28 = __this->___writeToNull_14;
if (L_28)
{
goto IL_0022_2;
}
}
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_29 = __this->___stream_5;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_30 = __this->___bufBytes_4;
int32_t L_31 = __this->___bufPos_8;
NullCheck(L_29);
VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(34 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_29, L_30, 1, ((int32_t)il2cpp_codegen_subtract(L_31, 1)));
}
IL_0022_2:
{
goto IL_00e0;
}
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0027_1;
}
throw e;
}
CATCH_0027_1:
{// begin catch(System.Object)
__this->___writeToNull_14 = (bool)1;
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUtf8RawTextWriter_FlushBuffer_m380AF5AC857AFEFB88FD4D4A223CE2F61D0B624A_RuntimeMethod_var)));
}// end catch (depth: 2)
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00e0:
{
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::FlushEncoder()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_FlushEncoder_m48C957E6B75EE03674B3DD29609304E5E794A565 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteAttributeTextBlock(System.Char*,System.Char*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteAttributeTextBlock_mE2D22AC1D27C0BFA841022E3C14C58567E2C9977 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, Il2CppChar* ___pSrc0, Il2CppChar* ___pSrcEnd1, const RuntimeMethod* method)
{
uint8_t* V_0 = NULL;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_1 = NULL;
uint8_t* V_2 = NULL;
int32_t V_3 = 0;
uint8_t* V_4 = NULL;
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = __this->___bufBytes_4;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = L_0;
V_1 = L_1;
if (!L_1)
{
goto IL_000f;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = V_1;
NullCheck(L_2);
if (((int32_t)(((RuntimeArray*)L_2)->max_length)))
{
goto IL_0014;
}
}
IL_000f:
{
V_0 = (uint8_t*)((uintptr_t)0);
goto IL_001d;
}
IL_0014:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = V_1;
NullCheck(L_3);
V_0 = (uint8_t*)((uintptr_t)((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))));
}
IL_001d:
{
uint8_t* L_4 = V_0;
int32_t L_5 = __this->___bufPos_8;
V_2 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_4, L_5));
V_3 = 0;
}
IL_0028:
{
uint8_t* L_6 = V_2;
Il2CppChar* L_7 = ___pSrcEnd1;
Il2CppChar* L_8 = ___pSrc0;
V_4 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_6, ((intptr_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_7, (intptr_t)L_8))/2))))));
uint8_t* L_9 = V_4;
uint8_t* L_10 = V_0;
int32_t L_11 = __this->___bufLen_13;
if ((!(((uintptr_t)L_9) > ((uintptr_t)((uint8_t*)il2cpp_codegen_add((intptr_t)L_10, L_11))))))
{
goto IL_0058;
}
}
{
uint8_t* L_12 = V_0;
int32_t L_13 = __this->___bufLen_13;
V_4 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_12, L_13));
goto IL_0058;
}
IL_004b:
{
uint8_t* L_14 = V_2;
int32_t L_15 = V_3;
*((int8_t*)L_14) = (int8_t)((int32_t)(uint8_t)L_15);
uint8_t* L_16 = V_2;
V_2 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_16, 1));
Il2CppChar* L_17 = ___pSrc0;
___pSrc0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_17, 2));
}
IL_0058:
{
uint8_t* L_18 = V_2;
uint8_t* L_19 = V_4;
if ((!(((uintptr_t)L_18) < ((uintptr_t)L_19))))
{
goto IL_007a;
}
}
{
XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_20 = (&__this->___xmlCharType_7);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_21 = L_20->___charProperties_2;
Il2CppChar* L_22 = ___pSrc0;
int32_t L_23 = *((uint16_t*)L_22);
int32_t L_24 = L_23;
V_3 = L_24;
NullCheck(L_21);
int32_t L_25 = L_24;
uint8_t L_26 = (L_21)->GetAt(static_cast<il2cpp_array_size_t>(L_25));
if (!((int32_t)((int32_t)L_26&((int32_t)128))))
{
goto IL_007a;
}
}
{
int32_t L_27 = V_3;
if ((((int32_t)L_27) <= ((int32_t)((int32_t)127))))
{
goto IL_004b;
}
}
IL_007a:
{
Il2CppChar* L_28 = ___pSrc0;
Il2CppChar* L_29 = ___pSrcEnd1;
if ((!(((uintptr_t)L_28) < ((uintptr_t)L_29))))
{
goto IL_01d6;
}
}
{
uint8_t* L_30 = V_2;
uint8_t* L_31 = V_4;
if ((!(((uintptr_t)L_30) >= ((uintptr_t)L_31))))
{
goto IL_009f;
}
}
{
uint8_t* L_32 = V_2;
uint8_t* L_33 = V_0;
__this->___bufPos_8 = ((int32_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_32, (intptr_t)L_33))/1))));
VirtualActionInvoker0::Invoke(48 /* System.Void System.Xml.XmlUtf8RawTextWriter::FlushBuffer() */, __this);
uint8_t* L_34 = V_0;
V_2 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_34, 1));
goto IL_0028;
}
IL_009f:
{
int32_t L_35 = V_3;
if ((((int32_t)L_35) > ((int32_t)((int32_t)38))))
{
goto IL_00d0;
}
}
{
int32_t L_36 = V_3;
switch (((int32_t)il2cpp_codegen_subtract(L_36, ((int32_t)9))))
{
case 0:
{
goto IL_0121;
}
case 1:
{
goto IL_015f;
}
case 2:
{
goto IL_017b;
}
case 3:
{
goto IL_017b;
}
case 4:
{
goto IL_0143;
}
}
}
{
int32_t L_37 = V_3;
if ((((int32_t)L_37) == ((int32_t)((int32_t)34))))
{
goto IL_0108;
}
}
{
int32_t L_38 = V_3;
if ((((int32_t)L_38) == ((int32_t)((int32_t)38))))
{
goto IL_00e4;
}
}
{
goto IL_017b;
}
IL_00d0:
{
int32_t L_39 = V_3;
if ((((int32_t)L_39) == ((int32_t)((int32_t)39))))
{
goto IL_0114;
}
}
{
int32_t L_40 = V_3;
if ((((int32_t)L_40) == ((int32_t)((int32_t)60))))
{
goto IL_00f0;
}
}
{
int32_t L_41 = V_3;
if ((((int32_t)L_41) == ((int32_t)((int32_t)62))))
{
goto IL_00fc;
}
}
{
goto IL_017b;
}
IL_00e4:
{
uint8_t* L_42 = V_2;
uint8_t* L_43;
L_43 = XmlUtf8RawTextWriter_AmpEntity_m74590A53CBA42775F424221B95509971DEBF4055(L_42, NULL);
V_2 = L_43;
goto IL_01cc;
}
IL_00f0:
{
uint8_t* L_44 = V_2;
uint8_t* L_45;
L_45 = XmlUtf8RawTextWriter_LtEntity_mA9BFD8D405525247FA29C251EF7F01F1F4A1B3F7(L_44, NULL);
V_2 = L_45;
goto IL_01cc;
}
IL_00fc:
{
uint8_t* L_46 = V_2;
uint8_t* L_47;
L_47 = XmlUtf8RawTextWriter_GtEntity_mE467C4BEDD017622FE63FDBDB02BC7FA0FED2A47(L_46, NULL);
V_2 = L_47;
goto IL_01cc;
}
IL_0108:
{
uint8_t* L_48 = V_2;
uint8_t* L_49;
L_49 = XmlUtf8RawTextWriter_QuoteEntity_mB6285E617BB7E7980D65FE8BAAF7BB39C0247034(L_48, NULL);
V_2 = L_49;
goto IL_01cc;
}
IL_0114:
{
uint8_t* L_50 = V_2;
int32_t L_51 = V_3;
*((int8_t*)L_50) = (int8_t)((int32_t)(uint8_t)L_51);
uint8_t* L_52 = V_2;
V_2 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_52, 1));
goto IL_01cc;
}
IL_0121:
{
int32_t L_53 = __this->___newLineHandling_17;
if ((!(((uint32_t)L_53) == ((uint32_t)2))))
{
goto IL_0137;
}
}
{
uint8_t* L_54 = V_2;
int32_t L_55 = V_3;
*((int8_t*)L_54) = (int8_t)((int32_t)(uint8_t)L_55);
uint8_t* L_56 = V_2;
V_2 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_56, 1));
goto IL_01cc;
}
IL_0137:
{
uint8_t* L_57 = V_2;
uint8_t* L_58;
L_58 = XmlUtf8RawTextWriter_TabEntity_m0F6FDA1300A85884C01CE27CB7AEEF644FA34C24(L_57, NULL);
V_2 = L_58;
goto IL_01cc;
}
IL_0143:
{
int32_t L_59 = __this->___newLineHandling_17;
if ((!(((uint32_t)L_59) == ((uint32_t)2))))
{
goto IL_0156;
}
}
{
uint8_t* L_60 = V_2;
int32_t L_61 = V_3;
*((int8_t*)L_60) = (int8_t)((int32_t)(uint8_t)L_61);
uint8_t* L_62 = V_2;
V_2 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_62, 1));
goto IL_01cc;
}
IL_0156:
{
uint8_t* L_63 = V_2;
uint8_t* L_64;
L_64 = XmlUtf8RawTextWriter_CarriageReturnEntity_m8F175764EF6A6E78B51FA6BBB4AEC5DB26A77CE3(L_63, NULL);
V_2 = L_64;
goto IL_01cc;
}
IL_015f:
{
int32_t L_65 = __this->___newLineHandling_17;
if ((!(((uint32_t)L_65) == ((uint32_t)2))))
{
goto IL_0172;
}
}
{
uint8_t* L_66 = V_2;
int32_t L_67 = V_3;
*((int8_t*)L_66) = (int8_t)((int32_t)(uint8_t)L_67);
uint8_t* L_68 = V_2;
V_2 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_68, 1));
goto IL_01cc;
}
IL_0172:
{
uint8_t* L_69 = V_2;
uint8_t* L_70;
L_70 = XmlUtf8RawTextWriter_LineFeedEntity_m510C2FCDDAFD3E6C1FB028DBA21B2D26ADC4C028(L_69, NULL);
V_2 = L_70;
goto IL_01cc;
}
IL_017b:
{
int32_t L_71 = V_3;
bool L_72;
L_72 = XmlCharType_IsSurrogate_m29FE0DF5EE1BEA1C1695EAD497896D2FD94173C0(L_71, NULL);
if (!L_72)
{
goto IL_0199;
}
}
{
Il2CppChar* L_73 = ___pSrc0;
Il2CppChar* L_74 = ___pSrcEnd1;
uint8_t* L_75 = V_2;
uint8_t* L_76;
L_76 = XmlUtf8RawTextWriter_EncodeSurrogate_mE846CA16E1AEF8E2DFFE51F53BA92D4E4E47CD0A(L_73, L_74, L_75, NULL);
V_2 = L_76;
Il2CppChar* L_77 = ___pSrc0;
___pSrc0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_77, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 2))));
goto IL_0028;
}
IL_0199:
{
int32_t L_78 = V_3;
if ((((int32_t)L_78) <= ((int32_t)((int32_t)127))))
{
goto IL_01a6;
}
}
{
int32_t L_79 = V_3;
if ((((int32_t)L_79) < ((int32_t)((int32_t)65534))))
{
goto IL_01ba;
}
}
IL_01a6:
{
int32_t L_80 = V_3;
uint8_t* L_81 = V_2;
uint8_t* L_82;
L_82 = XmlUtf8RawTextWriter_InvalidXmlChar_m4F7C6D47C50442CE83943650D69E14F9D1975D63(__this, L_80, L_81, (bool)1, NULL);
V_2 = L_82;
Il2CppChar* L_83 = ___pSrc0;
___pSrc0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_83, 2));
goto IL_0028;
}
IL_01ba:
{
int32_t L_84 = V_3;
uint8_t* L_85 = V_2;
uint8_t* L_86;
L_86 = XmlUtf8RawTextWriter_EncodeMultibyteUTF8_m23196496AF45D3C4E3DF800CDD8E9D7E47EDB2F0(L_84, L_85, NULL);
V_2 = L_86;
Il2CppChar* L_87 = ___pSrc0;
___pSrc0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_87, 2));
goto IL_0028;
}
IL_01cc:
{
Il2CppChar* L_88 = ___pSrc0;
___pSrc0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_88, 2));
goto IL_0028;
}
IL_01d6:
{
uint8_t* L_89 = V_2;
uint8_t* L_90 = V_0;
__this->___bufPos_8 = ((int32_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_89, (intptr_t)L_90))/1))));
V_1 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL;
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteElementTextBlock(System.Char*,System.Char*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteElementTextBlock_mE38367032B8ADFFA8A6F4F34598740F0E791575B (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, Il2CppChar* ___pSrc0, Il2CppChar* ___pSrcEnd1, const RuntimeMethod* method)
{
uint8_t* V_0 = NULL;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_1 = NULL;
uint8_t* V_2 = NULL;
int32_t V_3 = 0;
uint8_t* V_4 = NULL;
int32_t V_5 = 0;
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = __this->___bufBytes_4;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = L_0;
V_1 = L_1;
if (!L_1)
{
goto IL_000f;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = V_1;
NullCheck(L_2);
if (((int32_t)(((RuntimeArray*)L_2)->max_length)))
{
goto IL_0014;
}
}
IL_000f:
{
V_0 = (uint8_t*)((uintptr_t)0);
goto IL_001d;
}
IL_0014:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = V_1;
NullCheck(L_3);
V_0 = (uint8_t*)((uintptr_t)((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))));
}
IL_001d:
{
uint8_t* L_4 = V_0;
int32_t L_5 = __this->___bufPos_8;
V_2 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_4, L_5));
V_3 = 0;
}
IL_0028:
{
uint8_t* L_6 = V_2;
Il2CppChar* L_7 = ___pSrcEnd1;
Il2CppChar* L_8 = ___pSrc0;
V_4 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_6, ((intptr_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_7, (intptr_t)L_8))/2))))));
uint8_t* L_9 = V_4;
uint8_t* L_10 = V_0;
int32_t L_11 = __this->___bufLen_13;
if ((!(((uintptr_t)L_9) > ((uintptr_t)((uint8_t*)il2cpp_codegen_add((intptr_t)L_10, L_11))))))
{
goto IL_0058;
}
}
{
uint8_t* L_12 = V_0;
int32_t L_13 = __this->___bufLen_13;
V_4 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_12, L_13));
goto IL_0058;
}
IL_004b:
{
uint8_t* L_14 = V_2;
int32_t L_15 = V_3;
*((int8_t*)L_14) = (int8_t)((int32_t)(uint8_t)L_15);
uint8_t* L_16 = V_2;
V_2 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_16, 1));
Il2CppChar* L_17 = ___pSrc0;
___pSrc0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_17, 2));
}
IL_0058:
{
uint8_t* L_18 = V_2;
uint8_t* L_19 = V_4;
if ((!(((uintptr_t)L_18) < ((uintptr_t)L_19))))
{
goto IL_007a;
}
}
{
XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_20 = (&__this->___xmlCharType_7);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_21 = L_20->___charProperties_2;
Il2CppChar* L_22 = ___pSrc0;
int32_t L_23 = *((uint16_t*)L_22);
int32_t L_24 = L_23;
V_3 = L_24;
NullCheck(L_21);
int32_t L_25 = L_24;
uint8_t L_26 = (L_21)->GetAt(static_cast<il2cpp_array_size_t>(L_25));
if (!((int32_t)((int32_t)L_26&((int32_t)128))))
{
goto IL_007a;
}
}
{
int32_t L_27 = V_3;
if ((((int32_t)L_27) <= ((int32_t)((int32_t)127))))
{
goto IL_004b;
}
}
IL_007a:
{
Il2CppChar* L_28 = ___pSrc0;
Il2CppChar* L_29 = ___pSrcEnd1;
if ((!(((uintptr_t)L_28) < ((uintptr_t)L_29))))
{
goto IL_01d9;
}
}
{
uint8_t* L_30 = V_2;
uint8_t* L_31 = V_4;
if ((!(((uintptr_t)L_30) >= ((uintptr_t)L_31))))
{
goto IL_009f;
}
}
{
uint8_t* L_32 = V_2;
uint8_t* L_33 = V_0;
__this->___bufPos_8 = ((int32_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_32, (intptr_t)L_33))/1))));
VirtualActionInvoker0::Invoke(48 /* System.Void System.Xml.XmlUtf8RawTextWriter::FlushBuffer() */, __this);
uint8_t* L_34 = V_0;
V_2 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_34, 1));
goto IL_0028;
}
IL_009f:
{
int32_t L_35 = V_3;
if ((((int32_t)L_35) > ((int32_t)((int32_t)38))))
{
goto IL_00d0;
}
}
{
int32_t L_36 = V_3;
switch (((int32_t)il2cpp_codegen_subtract(L_36, ((int32_t)9))))
{
case 0:
{
goto IL_0108;
}
case 1:
{
goto IL_0115;
}
case 2:
{
goto IL_017e;
}
case 3:
{
goto IL_017e;
}
case 4:
{
goto IL_0137;
}
}
}
{
int32_t L_37 = V_3;
if ((((int32_t)L_37) == ((int32_t)((int32_t)34))))
{
goto IL_0108;
}
}
{
int32_t L_38 = V_3;
if ((((int32_t)L_38) == ((int32_t)((int32_t)38))))
{
goto IL_00e4;
}
}
{
goto IL_017e;
}
IL_00d0:
{
int32_t L_39 = V_3;
if ((((int32_t)L_39) == ((int32_t)((int32_t)39))))
{
goto IL_0108;
}
}
{
int32_t L_40 = V_3;
if ((((int32_t)L_40) == ((int32_t)((int32_t)60))))
{
goto IL_00f0;
}
}
{
int32_t L_41 = V_3;
if ((((int32_t)L_41) == ((int32_t)((int32_t)62))))
{
goto IL_00fc;
}
}
{
goto IL_017e;
}
IL_00e4:
{
uint8_t* L_42 = V_2;
uint8_t* L_43;
L_43 = XmlUtf8RawTextWriter_AmpEntity_m74590A53CBA42775F424221B95509971DEBF4055(L_42, NULL);
V_2 = L_43;
goto IL_01cf;
}
IL_00f0:
{
uint8_t* L_44 = V_2;
uint8_t* L_45;
L_45 = XmlUtf8RawTextWriter_LtEntity_mA9BFD8D405525247FA29C251EF7F01F1F4A1B3F7(L_44, NULL);
V_2 = L_45;
goto IL_01cf;
}
IL_00fc:
{
uint8_t* L_46 = V_2;
uint8_t* L_47;
L_47 = XmlUtf8RawTextWriter_GtEntity_mE467C4BEDD017622FE63FDBDB02BC7FA0FED2A47(L_46, NULL);
V_2 = L_47;
goto IL_01cf;
}
IL_0108:
{
uint8_t* L_48 = V_2;
int32_t L_49 = V_3;
*((int8_t*)L_48) = (int8_t)((int32_t)(uint8_t)L_49);
uint8_t* L_50 = V_2;
V_2 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_50, 1));
goto IL_01cf;
}
IL_0115:
{
int32_t L_51 = __this->___newLineHandling_17;
if (L_51)
{
goto IL_012a;
}
}
{
uint8_t* L_52 = V_2;
uint8_t* L_53;
L_53 = XmlUtf8RawTextWriter_WriteNewLine_mC85F5A7C864437D5CC59658B5BD2E107CD3A4BCC(__this, L_52, NULL);
V_2 = L_53;
goto IL_01cf;
}
IL_012a:
{
uint8_t* L_54 = V_2;
int32_t L_55 = V_3;
*((int8_t*)L_54) = (int8_t)((int32_t)(uint8_t)L_55);
uint8_t* L_56 = V_2;
V_2 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_56, 1));
goto IL_01cf;
}
IL_0137:
{
int32_t L_57 = __this->___newLineHandling_17;
V_5 = L_57;
int32_t L_58 = V_5;
switch (L_58)
{
case 0:
{
goto IL_0154;
}
case 1:
{
goto IL_016b;
}
case 2:
{
goto IL_0174;
}
}
}
{
goto IL_01cf;
}
IL_0154:
{
Il2CppChar* L_59 = ___pSrc0;
int32_t L_60 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_59, 2)));
if ((!(((uint32_t)L_60) == ((uint32_t)((int32_t)10)))))
{
goto IL_0161;
}
}
{
Il2CppChar* L_61 = ___pSrc0;
___pSrc0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_61, 2));
}
IL_0161:
{
uint8_t* L_62 = V_2;
uint8_t* L_63;
L_63 = XmlUtf8RawTextWriter_WriteNewLine_mC85F5A7C864437D5CC59658B5BD2E107CD3A4BCC(__this, L_62, NULL);
V_2 = L_63;
goto IL_01cf;
}
IL_016b:
{
uint8_t* L_64 = V_2;
uint8_t* L_65;
L_65 = XmlUtf8RawTextWriter_CarriageReturnEntity_m8F175764EF6A6E78B51FA6BBB4AEC5DB26A77CE3(L_64, NULL);
V_2 = L_65;
goto IL_01cf;
}
IL_0174:
{
uint8_t* L_66 = V_2;
int32_t L_67 = V_3;
*((int8_t*)L_66) = (int8_t)((int32_t)(uint8_t)L_67);
uint8_t* L_68 = V_2;
V_2 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_68, 1));
goto IL_01cf;
}
IL_017e:
{
int32_t L_69 = V_3;
bool L_70;
L_70 = XmlCharType_IsSurrogate_m29FE0DF5EE1BEA1C1695EAD497896D2FD94173C0(L_69, NULL);
if (!L_70)
{
goto IL_019c;
}
}
{
Il2CppChar* L_71 = ___pSrc0;
Il2CppChar* L_72 = ___pSrcEnd1;
uint8_t* L_73 = V_2;
uint8_t* L_74;
L_74 = XmlUtf8RawTextWriter_EncodeSurrogate_mE846CA16E1AEF8E2DFFE51F53BA92D4E4E47CD0A(L_71, L_72, L_73, NULL);
V_2 = L_74;
Il2CppChar* L_75 = ___pSrc0;
___pSrc0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_75, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 2))));
goto IL_0028;
}
IL_019c:
{
int32_t L_76 = V_3;
if ((((int32_t)L_76) <= ((int32_t)((int32_t)127))))
{
goto IL_01a9;
}
}
{
int32_t L_77 = V_3;
if ((((int32_t)L_77) < ((int32_t)((int32_t)65534))))
{
goto IL_01bd;
}
}
IL_01a9:
{
int32_t L_78 = V_3;
uint8_t* L_79 = V_2;
uint8_t* L_80;
L_80 = XmlUtf8RawTextWriter_InvalidXmlChar_m4F7C6D47C50442CE83943650D69E14F9D1975D63(__this, L_78, L_79, (bool)1, NULL);
V_2 = L_80;
Il2CppChar* L_81 = ___pSrc0;
___pSrc0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_81, 2));
goto IL_0028;
}
IL_01bd:
{
int32_t L_82 = V_3;
uint8_t* L_83 = V_2;
uint8_t* L_84;
L_84 = XmlUtf8RawTextWriter_EncodeMultibyteUTF8_m23196496AF45D3C4E3DF800CDD8E9D7E47EDB2F0(L_82, L_83, NULL);
V_2 = L_84;
Il2CppChar* L_85 = ___pSrc0;
___pSrc0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_85, 2));
goto IL_0028;
}
IL_01cf:
{
Il2CppChar* L_86 = ___pSrc0;
___pSrc0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_86, 2));
goto IL_0028;
}
IL_01d9:
{
uint8_t* L_87 = V_2;
uint8_t* L_88 = V_0;
__this->___bufPos_8 = ((int32_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_87, (intptr_t)L_88))/1))));
int32_t L_89 = __this->___bufPos_8;
__this->___textPos_9 = L_89;
__this->___contentPos_10 = 0;
V_1 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL;
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::RawText(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, String_t* ___s0, const RuntimeMethod* method)
{
Il2CppChar* V_0 = NULL;
String_t* V_1 = NULL;
{
String_t* L_0 = ___s0;
V_1 = L_0;
String_t* L_1 = V_1;
V_0 = (Il2CppChar*)((uintptr_t)L_1);
Il2CppChar* L_2 = V_0;
if (!L_2)
{
goto IL_0010;
}
}
{
Il2CppChar* L_3 = V_0;
int32_t L_4;
L_4 = RuntimeHelpers_get_OffsetToStringData_mBBE58AEA702864FB006771F4600D1D99B1234460(NULL);
V_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_3, L_4));
}
IL_0010:
{
Il2CppChar* L_5 = V_0;
Il2CppChar* L_6 = V_0;
String_t* L_7 = ___s0;
NullCheck(L_7);
int32_t L_8;
L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL);
XmlUtf8RawTextWriter_RawText_mF7942A3974C489D2F8D9301E56E77CEF5F500E07(__this, L_5, ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_6, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_8), 2)))), NULL);
V_1 = (String_t*)NULL;
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::RawText(System.Char*,System.Char*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_RawText_mF7942A3974C489D2F8D9301E56E77CEF5F500E07 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, Il2CppChar* ___pSrcBegin0, Il2CppChar* ___pSrcEnd1, const RuntimeMethod* method)
{
uint8_t* V_0 = NULL;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_1 = NULL;
uint8_t* V_2 = NULL;
Il2CppChar* V_3 = NULL;
int32_t V_4 = 0;
uint8_t* V_5 = NULL;
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = __this->___bufBytes_4;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = L_0;
V_1 = L_1;
if (!L_1)
{
goto IL_000f;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = V_1;
NullCheck(L_2);
if (((int32_t)(((RuntimeArray*)L_2)->max_length)))
{
goto IL_0014;
}
}
IL_000f:
{
V_0 = (uint8_t*)((uintptr_t)0);
goto IL_001d;
}
IL_0014:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = V_1;
NullCheck(L_3);
V_0 = (uint8_t*)((uintptr_t)((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))));
}
IL_001d:
{
uint8_t* L_4 = V_0;
int32_t L_5 = __this->___bufPos_8;
V_2 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_4, L_5));
Il2CppChar* L_6 = ___pSrcBegin0;
V_3 = L_6;
V_4 = 0;
}
IL_002b:
{
uint8_t* L_7 = V_2;
Il2CppChar* L_8 = ___pSrcEnd1;
Il2CppChar* L_9 = V_3;
V_5 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_7, ((intptr_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_8, (intptr_t)L_9))/2))))));
uint8_t* L_10 = V_5;
uint8_t* L_11 = V_0;
int32_t L_12 = __this->___bufLen_13;
if ((!(((uintptr_t)L_10) > ((uintptr_t)((uint8_t*)il2cpp_codegen_add((intptr_t)L_11, L_12))))))
{
goto IL_005b;
}
}
{
uint8_t* L_13 = V_0;
int32_t L_14 = __this->___bufLen_13;
V_5 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_13, L_14));
goto IL_005b;
}
IL_004e:
{
Il2CppChar* L_15 = V_3;
V_3 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_15, 2));
uint8_t* L_16 = V_2;
int32_t L_17 = V_4;
*((int8_t*)L_16) = (int8_t)((int32_t)(uint8_t)L_17);
uint8_t* L_18 = V_2;
V_2 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_18, 1));
}
IL_005b:
{
uint8_t* L_19 = V_2;
uint8_t* L_20 = V_5;
if ((!(((uintptr_t)L_19) < ((uintptr_t)L_20))))
{
goto IL_0069;
}
}
{
Il2CppChar* L_21 = V_3;
int32_t L_22 = *((uint16_t*)L_21);
int32_t L_23 = L_22;
V_4 = L_23;
if ((((int32_t)L_23) <= ((int32_t)((int32_t)127))))
{
goto IL_004e;
}
}
IL_0069:
{
Il2CppChar* L_24 = V_3;
Il2CppChar* L_25 = ___pSrcEnd1;
if ((!(((uintptr_t)L_24) < ((uintptr_t)L_25))))
{
goto IL_00db;
}
}
{
uint8_t* L_26 = V_2;
uint8_t* L_27 = V_5;
if ((!(((uintptr_t)L_26) >= ((uintptr_t)L_27))))
{
goto IL_008b;
}
}
{
uint8_t* L_28 = V_2;
uint8_t* L_29 = V_0;
__this->___bufPos_8 = ((int32_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_28, (intptr_t)L_29))/1))));
VirtualActionInvoker0::Invoke(48 /* System.Void System.Xml.XmlUtf8RawTextWriter::FlushBuffer() */, __this);
uint8_t* L_30 = V_0;
V_2 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_30, 1));
goto IL_002b;
}
IL_008b:
{
int32_t L_31 = V_4;
bool L_32;
L_32 = XmlCharType_IsSurrogate_m29FE0DF5EE1BEA1C1695EAD497896D2FD94173C0(L_31, NULL);
if (!L_32)
{
goto IL_00a6;
}
}
{
Il2CppChar* L_33 = V_3;
Il2CppChar* L_34 = ___pSrcEnd1;
uint8_t* L_35 = V_2;
uint8_t* L_36;
L_36 = XmlUtf8RawTextWriter_EncodeSurrogate_mE846CA16E1AEF8E2DFFE51F53BA92D4E4E47CD0A(L_33, L_34, L_35, NULL);
V_2 = L_36;
Il2CppChar* L_37 = V_3;
V_3 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_37, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 2))));
goto IL_002b;
}
IL_00a6:
{
int32_t L_38 = V_4;
if ((((int32_t)L_38) <= ((int32_t)((int32_t)127))))
{
goto IL_00b5;
}
}
{
int32_t L_39 = V_4;
if ((((int32_t)L_39) < ((int32_t)((int32_t)65534))))
{
goto IL_00c9;
}
}
IL_00b5:
{
int32_t L_40 = V_4;
uint8_t* L_41 = V_2;
uint8_t* L_42;
L_42 = XmlUtf8RawTextWriter_InvalidXmlChar_m4F7C6D47C50442CE83943650D69E14F9D1975D63(__this, L_40, L_41, (bool)0, NULL);
V_2 = L_42;
Il2CppChar* L_43 = V_3;
V_3 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_43, 2));
goto IL_002b;
}
IL_00c9:
{
int32_t L_44 = V_4;
uint8_t* L_45 = V_2;
uint8_t* L_46;
L_46 = XmlUtf8RawTextWriter_EncodeMultibyteUTF8_m23196496AF45D3C4E3DF800CDD8E9D7E47EDB2F0(L_44, L_45, NULL);
V_2 = L_46;
Il2CppChar* L_47 = V_3;
V_3 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_47, 2));
goto IL_002b;
}
IL_00db:
{
uint8_t* L_48 = V_2;
uint8_t* L_49 = V_0;
__this->___bufPos_8 = ((int32_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_48, (intptr_t)L_49))/1))));
V_1 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL;
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteRawWithCharChecking(System.Char*,System.Char*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteRawWithCharChecking_m312CDB6D9A7F9A965408839DAA06A50F74F79392 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, Il2CppChar* ___pSrcBegin0, Il2CppChar* ___pSrcEnd1, const RuntimeMethod* method)
{
uint8_t* V_0 = NULL;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_1 = NULL;
Il2CppChar* V_2 = NULL;
uint8_t* V_3 = NULL;
int32_t V_4 = 0;
uint8_t* V_5 = NULL;
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = __this->___bufBytes_4;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = L_0;
V_1 = L_1;
if (!L_1)
{
goto IL_000f;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = V_1;
NullCheck(L_2);
if (((int32_t)(((RuntimeArray*)L_2)->max_length)))
{
goto IL_0014;
}
}
IL_000f:
{
V_0 = (uint8_t*)((uintptr_t)0);
goto IL_001d;
}
IL_0014:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = V_1;
NullCheck(L_3);
V_0 = (uint8_t*)((uintptr_t)((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))));
}
IL_001d:
{
Il2CppChar* L_4 = ___pSrcBegin0;
V_2 = L_4;
uint8_t* L_5 = V_0;
int32_t L_6 = __this->___bufPos_8;
V_3 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_5, L_6));
V_4 = 0;
}
IL_002b:
{
uint8_t* L_7 = V_3;
Il2CppChar* L_8 = ___pSrcEnd1;
Il2CppChar* L_9 = V_2;
V_5 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_7, ((intptr_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_8, (intptr_t)L_9))/2))))));
uint8_t* L_10 = V_5;
uint8_t* L_11 = V_0;
int32_t L_12 = __this->___bufLen_13;
if ((!(((uintptr_t)L_10) > ((uintptr_t)((uint8_t*)il2cpp_codegen_add((intptr_t)L_11, L_12))))))
{
goto IL_005b;
}
}
{
uint8_t* L_13 = V_0;
int32_t L_14 = __this->___bufLen_13;
V_5 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_13, L_14));
goto IL_005b;
}
IL_004e:
{
uint8_t* L_15 = V_3;
int32_t L_16 = V_4;
*((int8_t*)L_15) = (int8_t)((int32_t)(uint8_t)L_16);
uint8_t* L_17 = V_3;
V_3 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_17, 1));
Il2CppChar* L_18 = V_2;
V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_18, 2));
}
IL_005b:
{
uint8_t* L_19 = V_3;
uint8_t* L_20 = V_5;
if ((!(((uintptr_t)L_19) < ((uintptr_t)L_20))))
{
goto IL_007c;
}
}
{
XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_21 = (&__this->___xmlCharType_7);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_22 = L_21->___charProperties_2;
Il2CppChar* L_23 = V_2;
int32_t L_24 = *((uint16_t*)L_23);
int32_t L_25 = L_24;
V_4 = L_25;
NullCheck(L_22);
int32_t L_26 = L_25;
uint8_t L_27 = (L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_26));
if (!((int32_t)((int32_t)L_27&((int32_t)64))))
{
goto IL_007c;
}
}
{
int32_t L_28 = V_4;
if ((((int32_t)L_28) <= ((int32_t)((int32_t)127))))
{
goto IL_004e;
}
}
IL_007c:
{
Il2CppChar* L_29 = V_2;
Il2CppChar* L_30 = ___pSrcEnd1;
if ((!(((uintptr_t)L_29) < ((uintptr_t)L_30))))
{
goto IL_0189;
}
}
{
uint8_t* L_31 = V_3;
uint8_t* L_32 = V_5;
if ((!(((uintptr_t)L_31) >= ((uintptr_t)L_32))))
{
goto IL_00a1;
}
}
{
uint8_t* L_33 = V_3;
uint8_t* L_34 = V_0;
__this->___bufPos_8 = ((int32_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_33, (intptr_t)L_34))/1))));
VirtualActionInvoker0::Invoke(48 /* System.Void System.Xml.XmlUtf8RawTextWriter::FlushBuffer() */, __this);
uint8_t* L_35 = V_0;
V_3 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_35, 1));
goto IL_002b;
}
IL_00a1:
{
int32_t L_36 = V_4;
if ((((int32_t)L_36) > ((int32_t)((int32_t)38))))
{
goto IL_00cd;
}
}
{
int32_t L_37 = V_4;
switch (((int32_t)il2cpp_codegen_subtract(L_37, ((int32_t)9))))
{
case 0:
{
goto IL_00d9;
}
case 1:
{
goto IL_0110;
}
case 2:
{
goto IL_012d;
}
case 3:
{
goto IL_012d;
}
case 4:
{
goto IL_00e7;
}
}
}
{
int32_t L_38 = V_4;
if ((((int32_t)L_38) == ((int32_t)((int32_t)38))))
{
goto IL_00d9;
}
}
{
goto IL_012d;
}
IL_00cd:
{
int32_t L_39 = V_4;
if ((((int32_t)L_39) == ((int32_t)((int32_t)60))))
{
goto IL_00d9;
}
}
{
int32_t L_40 = V_4;
if ((!(((uint32_t)L_40) == ((uint32_t)((int32_t)93)))))
{
goto IL_012d;
}
}
IL_00d9:
{
uint8_t* L_41 = V_3;
int32_t L_42 = V_4;
*((int8_t*)L_41) = (int8_t)((int32_t)(uint8_t)L_42);
uint8_t* L_43 = V_3;
V_3 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_43, 1));
goto IL_0180;
}
IL_00e7:
{
int32_t L_44 = __this->___newLineHandling_17;
if (L_44)
{
goto IL_0105;
}
}
{
Il2CppChar* L_45 = V_2;
int32_t L_46 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_45, 2)));
if ((!(((uint32_t)L_46) == ((uint32_t)((int32_t)10)))))
{
goto IL_00fb;
}
}
{
Il2CppChar* L_47 = V_2;
V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_47, 2));
}
IL_00fb:
{
uint8_t* L_48 = V_3;
uint8_t* L_49;
L_49 = XmlUtf8RawTextWriter_WriteNewLine_mC85F5A7C864437D5CC59658B5BD2E107CD3A4BCC(__this, L_48, NULL);
V_3 = L_49;
goto IL_0180;
}
IL_0105:
{
uint8_t* L_50 = V_3;
int32_t L_51 = V_4;
*((int8_t*)L_50) = (int8_t)((int32_t)(uint8_t)L_51);
uint8_t* L_52 = V_3;
V_3 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_52, 1));
goto IL_0180;
}
IL_0110:
{
int32_t L_53 = __this->___newLineHandling_17;
if (L_53)
{
goto IL_0122;
}
}
{
uint8_t* L_54 = V_3;
uint8_t* L_55;
L_55 = XmlUtf8RawTextWriter_WriteNewLine_mC85F5A7C864437D5CC59658B5BD2E107CD3A4BCC(__this, L_54, NULL);
V_3 = L_55;
goto IL_0180;
}
IL_0122:
{
uint8_t* L_56 = V_3;
int32_t L_57 = V_4;
*((int8_t*)L_56) = (int8_t)((int32_t)(uint8_t)L_57);
uint8_t* L_58 = V_3;
V_3 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_58, 1));
goto IL_0180;
}
IL_012d:
{
int32_t L_59 = V_4;
bool L_60;
L_60 = XmlCharType_IsSurrogate_m29FE0DF5EE1BEA1C1695EAD497896D2FD94173C0(L_59, NULL);
if (!L_60)
{
goto IL_014b;
}
}
{
Il2CppChar* L_61 = V_2;
Il2CppChar* L_62 = ___pSrcEnd1;
uint8_t* L_63 = V_3;
uint8_t* L_64;
L_64 = XmlUtf8RawTextWriter_EncodeSurrogate_mE846CA16E1AEF8E2DFFE51F53BA92D4E4E47CD0A(L_61, L_62, L_63, NULL);
V_3 = L_64;
Il2CppChar* L_65 = V_2;
V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_65, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 2))));
goto IL_002b;
}
IL_014b:
{
int32_t L_66 = V_4;
if ((((int32_t)L_66) <= ((int32_t)((int32_t)127))))
{
goto IL_015a;
}
}
{
int32_t L_67 = V_4;
if ((((int32_t)L_67) < ((int32_t)((int32_t)65534))))
{
goto IL_016e;
}
}
IL_015a:
{
int32_t L_68 = V_4;
uint8_t* L_69 = V_3;
uint8_t* L_70;
L_70 = XmlUtf8RawTextWriter_InvalidXmlChar_m4F7C6D47C50442CE83943650D69E14F9D1975D63(__this, L_68, L_69, (bool)0, NULL);
V_3 = L_70;
Il2CppChar* L_71 = V_2;
V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_71, 2));
goto IL_002b;
}
IL_016e:
{
int32_t L_72 = V_4;
uint8_t* L_73 = V_3;
uint8_t* L_74;
L_74 = XmlUtf8RawTextWriter_EncodeMultibyteUTF8_m23196496AF45D3C4E3DF800CDD8E9D7E47EDB2F0(L_72, L_73, NULL);
V_3 = L_74;
Il2CppChar* L_75 = V_2;
V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_75, 2));
goto IL_002b;
}
IL_0180:
{
Il2CppChar* L_76 = V_2;
V_2 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_76, 2));
goto IL_002b;
}
IL_0189:
{
uint8_t* L_77 = V_3;
uint8_t* L_78 = V_0;
__this->___bufPos_8 = ((int32_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_77, (intptr_t)L_78))/1))));
V_1 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL;
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteCommentOrPi(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteCommentOrPi_m8683C7CE47F8B88FAECBACFF8FF741E26F11C041 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, String_t* ___text0, int32_t ___stopChar1, const RuntimeMethod* method)
{
Il2CppChar* V_0 = NULL;
String_t* V_1 = NULL;
uint8_t* V_2 = NULL;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_3 = NULL;
Il2CppChar* V_4 = NULL;
Il2CppChar* V_5 = NULL;
uint8_t* V_6 = NULL;
int32_t V_7 = 0;
uint8_t* V_8 = NULL;
{
String_t* L_0 = ___text0;
NullCheck(L_0);
int32_t L_1;
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL);
if (L_1)
{
goto IL_001d;
}
}
{
int32_t L_2 = __this->___bufPos_8;
int32_t L_3 = __this->___bufLen_13;
if ((((int32_t)L_2) < ((int32_t)L_3)))
{
goto IL_001c;
}
}
{
VirtualActionInvoker0::Invoke(48 /* System.Void System.Xml.XmlUtf8RawTextWriter::FlushBuffer() */, __this);
}
IL_001c:
{
return;
}
IL_001d:
{
String_t* L_4 = ___text0;
V_1 = L_4;
String_t* L_5 = V_1;
V_0 = (Il2CppChar*)((uintptr_t)L_5);
Il2CppChar* L_6 = V_0;
if (!L_6)
{
goto IL_002d;
}
}
{
Il2CppChar* L_7 = V_0;
int32_t L_8;
L_8 = RuntimeHelpers_get_OffsetToStringData_mBBE58AEA702864FB006771F4600D1D99B1234460(NULL);
V_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_7, L_8));
}
IL_002d:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = __this->___bufBytes_4;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = L_9;
V_3 = L_10;
if (!L_10)
{
goto IL_003c;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = V_3;
NullCheck(L_11);
if (((int32_t)(((RuntimeArray*)L_11)->max_length)))
{
goto IL_0041;
}
}
IL_003c:
{
V_2 = (uint8_t*)((uintptr_t)0);
goto IL_004a;
}
IL_0041:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12 = V_3;
NullCheck(L_12);
V_2 = (uint8_t*)((uintptr_t)((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))));
}
IL_004a:
{
Il2CppChar* L_13 = V_0;
V_4 = L_13;
Il2CppChar* L_14 = V_0;
String_t* L_15 = ___text0;
NullCheck(L_15);
int32_t L_16;
L_16 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_15, NULL);
V_5 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_14, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_16), 2))));
uint8_t* L_17 = V_2;
int32_t L_18 = __this->___bufPos_8;
V_6 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_17, L_18));
V_7 = 0;
}
IL_0067:
{
uint8_t* L_19 = V_6;
Il2CppChar* L_20 = V_5;
Il2CppChar* L_21 = V_4;
V_8 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_19, ((intptr_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_20, (intptr_t)L_21))/2))))));
uint8_t* L_22 = V_8;
uint8_t* L_23 = V_2;
int32_t L_24 = __this->___bufLen_13;
if ((!(((uintptr_t)L_22) > ((uintptr_t)((uint8_t*)il2cpp_codegen_add((intptr_t)L_23, L_24))))))
{
goto IL_009f;
}
}
{
uint8_t* L_25 = V_2;
int32_t L_26 = __this->___bufLen_13;
V_8 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_25, L_26));
goto IL_009f;
}
IL_008d:
{
uint8_t* L_27 = V_6;
int32_t L_28 = V_7;
*((int8_t*)L_27) = (int8_t)((int32_t)(uint8_t)L_28);
uint8_t* L_29 = V_6;
V_6 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_29, 1));
Il2CppChar* L_30 = V_4;
V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_30, 2));
}
IL_009f:
{
uint8_t* L_31 = V_6;
uint8_t* L_32 = V_8;
if ((!(((uintptr_t)L_31) < ((uintptr_t)L_32))))
{
goto IL_00c7;
}
}
{
XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_33 = (&__this->___xmlCharType_7);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_34 = L_33->___charProperties_2;
Il2CppChar* L_35 = V_4;
int32_t L_36 = *((uint16_t*)L_35);
int32_t L_37 = L_36;
V_7 = L_37;
NullCheck(L_34);
int32_t L_38 = L_37;
uint8_t L_39 = (L_34)->GetAt(static_cast<il2cpp_array_size_t>(L_38));
if (!((int32_t)((int32_t)L_39&((int32_t)64))))
{
goto IL_00c7;
}
}
{
int32_t L_40 = V_7;
int32_t L_41 = ___stopChar1;
if ((((int32_t)L_40) == ((int32_t)L_41)))
{
goto IL_00c7;
}
}
{
int32_t L_42 = V_7;
if ((((int32_t)L_42) <= ((int32_t)((int32_t)127))))
{
goto IL_008d;
}
}
IL_00c7:
{
Il2CppChar* L_43 = V_4;
Il2CppChar* L_44 = V_5;
if ((!(((uintptr_t)L_43) < ((uintptr_t)L_44))))
{
goto IL_029a;
}
}
{
uint8_t* L_45 = V_6;
uint8_t* L_46 = V_8;
if ((!(((uintptr_t)L_45) >= ((uintptr_t)L_46))))
{
goto IL_00f4;
}
}
{
uint8_t* L_47 = V_6;
uint8_t* L_48 = V_2;
__this->___bufPos_8 = ((int32_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_47, (intptr_t)L_48))/1))));
VirtualActionInvoker0::Invoke(48 /* System.Void System.Xml.XmlUtf8RawTextWriter::FlushBuffer() */, __this);
uint8_t* L_49 = V_2;
V_6 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_49, 1));
goto IL_0067;
}
IL_00f4:
{
int32_t L_50 = V_7;
if ((((int32_t)L_50) > ((int32_t)((int32_t)45))))
{
goto IL_012c;
}
}
{
int32_t L_51 = V_7;
switch (((int32_t)il2cpp_codegen_subtract(L_51, ((int32_t)9))))
{
case 0:
{
goto IL_0220;
}
case 1:
{
goto IL_01fe;
}
case 2:
{
goto IL_022e;
}
case 3:
{
goto IL_022e;
}
case 4:
{
goto IL_01c7;
}
}
}
{
int32_t L_52 = V_7;
if ((((int32_t)L_52) == ((int32_t)((int32_t)38))))
{
goto IL_0220;
}
}
{
int32_t L_53 = V_7;
if ((((int32_t)L_53) == ((int32_t)((int32_t)45))))
{
goto IL_0146;
}
}
{
goto IL_022e;
}
IL_012c:
{
int32_t L_54 = V_7;
if ((((int32_t)L_54) == ((int32_t)((int32_t)60))))
{
goto IL_0220;
}
}
{
int32_t L_55 = V_7;
if ((((int32_t)L_55) == ((int32_t)((int32_t)63))))
{
goto IL_017d;
}
}
{
int32_t L_56 = V_7;
if ((((int32_t)L_56) == ((int32_t)((int32_t)93))))
{
goto IL_01b7;
}
}
{
goto IL_022e;
}
IL_0146:
{
uint8_t* L_57 = V_6;
*((int8_t*)L_57) = (int8_t)((int32_t)45);
uint8_t* L_58 = V_6;
V_6 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_58, 1));
int32_t L_59 = V_7;
int32_t L_60 = ___stopChar1;
if ((!(((uint32_t)L_59) == ((uint32_t)L_60))))
{
goto IL_028f;
}
}
{
Il2CppChar* L_61 = V_4;
Il2CppChar* L_62 = V_5;
if ((((intptr_t)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_61, 2))) == ((intptr_t)L_62)))
{
goto IL_016d;
}
}
{
Il2CppChar* L_63 = V_4;
int32_t L_64 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_63, 2)));
if ((!(((uint32_t)L_64) == ((uint32_t)((int32_t)45)))))
{
goto IL_028f;
}
}
IL_016d:
{
uint8_t* L_65 = V_6;
*((int8_t*)L_65) = (int8_t)((int32_t)32);
uint8_t* L_66 = V_6;
V_6 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_66, 1));
goto IL_028f;
}
IL_017d:
{
uint8_t* L_67 = V_6;
*((int8_t*)L_67) = (int8_t)((int32_t)63);
uint8_t* L_68 = V_6;
V_6 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_68, 1));
int32_t L_69 = V_7;
int32_t L_70 = ___stopChar1;
if ((!(((uint32_t)L_69) == ((uint32_t)L_70))))
{
goto IL_028f;
}
}
{
Il2CppChar* L_71 = V_4;
Il2CppChar* L_72 = V_5;
if ((!(((uintptr_t)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_71, 2))) < ((uintptr_t)L_72))))
{
goto IL_028f;
}
}
{
Il2CppChar* L_73 = V_4;
int32_t L_74 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_73, 2)));
if ((!(((uint32_t)L_74) == ((uint32_t)((int32_t)62)))))
{
goto IL_028f;
}
}
{
uint8_t* L_75 = V_6;
*((int8_t*)L_75) = (int8_t)((int32_t)32);
uint8_t* L_76 = V_6;
V_6 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_76, 1));
goto IL_028f;
}
IL_01b7:
{
uint8_t* L_77 = V_6;
*((int8_t*)L_77) = (int8_t)((int32_t)93);
uint8_t* L_78 = V_6;
V_6 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_78, 1));
goto IL_028f;
}
IL_01c7:
{
int32_t L_79 = __this->___newLineHandling_17;
if (L_79)
{
goto IL_01ed;
}
}
{
Il2CppChar* L_80 = V_4;
int32_t L_81 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_80, 2)));
if ((!(((uint32_t)L_81) == ((uint32_t)((int32_t)10)))))
{
goto IL_01de;
}
}
{
Il2CppChar* L_82 = V_4;
V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_82, 2));
}
IL_01de:
{
uint8_t* L_83 = V_6;
uint8_t* L_84;
L_84 = XmlUtf8RawTextWriter_WriteNewLine_mC85F5A7C864437D5CC59658B5BD2E107CD3A4BCC(__this, L_83, NULL);
V_6 = L_84;
goto IL_028f;
}
IL_01ed:
{
uint8_t* L_85 = V_6;
int32_t L_86 = V_7;
*((int8_t*)L_85) = (int8_t)((int32_t)(uint8_t)L_86);
uint8_t* L_87 = V_6;
V_6 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_87, 1));
goto IL_028f;
}
IL_01fe:
{
int32_t L_88 = __this->___newLineHandling_17;
if (L_88)
{
goto IL_0212;
}
}
{
uint8_t* L_89 = V_6;
uint8_t* L_90;
L_90 = XmlUtf8RawTextWriter_WriteNewLine_mC85F5A7C864437D5CC59658B5BD2E107CD3A4BCC(__this, L_89, NULL);
V_6 = L_90;
goto IL_028f;
}
IL_0212:
{
uint8_t* L_91 = V_6;
int32_t L_92 = V_7;
*((int8_t*)L_91) = (int8_t)((int32_t)(uint8_t)L_92);
uint8_t* L_93 = V_6;
V_6 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_93, 1));
goto IL_028f;
}
IL_0220:
{
uint8_t* L_94 = V_6;
int32_t L_95 = V_7;
*((int8_t*)L_94) = (int8_t)((int32_t)(uint8_t)L_95);
uint8_t* L_96 = V_6;
V_6 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_96, 1));
goto IL_028f;
}
IL_022e:
{
int32_t L_97 = V_7;
bool L_98;
L_98 = XmlCharType_IsSurrogate_m29FE0DF5EE1BEA1C1695EAD497896D2FD94173C0(L_97, NULL);
if (!L_98)
{
goto IL_0252;
}
}
{
Il2CppChar* L_99 = V_4;
Il2CppChar* L_100 = V_5;
uint8_t* L_101 = V_6;
uint8_t* L_102;
L_102 = XmlUtf8RawTextWriter_EncodeSurrogate_mE846CA16E1AEF8E2DFFE51F53BA92D4E4E47CD0A(L_99, L_100, L_101, NULL);
V_6 = L_102;
Il2CppChar* L_103 = V_4;
V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_103, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 2))));
goto IL_0067;
}
IL_0252:
{
int32_t L_104 = V_7;
if ((((int32_t)L_104) <= ((int32_t)((int32_t)127))))
{
goto IL_0261;
}
}
{
int32_t L_105 = V_7;
if ((((int32_t)L_105) < ((int32_t)((int32_t)65534))))
{
goto IL_0279;
}
}
IL_0261:
{
int32_t L_106 = V_7;
uint8_t* L_107 = V_6;
uint8_t* L_108;
L_108 = XmlUtf8RawTextWriter_InvalidXmlChar_m4F7C6D47C50442CE83943650D69E14F9D1975D63(__this, L_106, L_107, (bool)0, NULL);
V_6 = L_108;
Il2CppChar* L_109 = V_4;
V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_109, 2));
goto IL_0067;
}
IL_0279:
{
int32_t L_110 = V_7;
uint8_t* L_111 = V_6;
uint8_t* L_112;
L_112 = XmlUtf8RawTextWriter_EncodeMultibyteUTF8_m23196496AF45D3C4E3DF800CDD8E9D7E47EDB2F0(L_110, L_111, NULL);
V_6 = L_112;
Il2CppChar* L_113 = V_4;
V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_113, 2));
goto IL_0067;
}
IL_028f:
{
Il2CppChar* L_114 = V_4;
V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_114, 2));
goto IL_0067;
}
IL_029a:
{
uint8_t* L_115 = V_6;
uint8_t* L_116 = V_2;
__this->___bufPos_8 = ((int32_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_115, (intptr_t)L_116))/1))));
V_3 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL;
V_1 = (String_t*)NULL;
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::WriteCDataSection(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_WriteCDataSection_mE925886DFC2D61C6F69311708EA5C99D73E462F9 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, String_t* ___text0, const RuntimeMethod* method)
{
Il2CppChar* V_0 = NULL;
String_t* V_1 = NULL;
uint8_t* V_2 = NULL;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_3 = NULL;
Il2CppChar* V_4 = NULL;
Il2CppChar* V_5 = NULL;
uint8_t* V_6 = NULL;
int32_t V_7 = 0;
uint8_t* V_8 = NULL;
{
String_t* L_0 = ___text0;
NullCheck(L_0);
int32_t L_1;
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL);
if (L_1)
{
goto IL_001d;
}
}
{
int32_t L_2 = __this->___bufPos_8;
int32_t L_3 = __this->___bufLen_13;
if ((((int32_t)L_2) < ((int32_t)L_3)))
{
goto IL_001c;
}
}
{
VirtualActionInvoker0::Invoke(48 /* System.Void System.Xml.XmlUtf8RawTextWriter::FlushBuffer() */, __this);
}
IL_001c:
{
return;
}
IL_001d:
{
String_t* L_4 = ___text0;
V_1 = L_4;
String_t* L_5 = V_1;
V_0 = (Il2CppChar*)((uintptr_t)L_5);
Il2CppChar* L_6 = V_0;
if (!L_6)
{
goto IL_002d;
}
}
{
Il2CppChar* L_7 = V_0;
int32_t L_8;
L_8 = RuntimeHelpers_get_OffsetToStringData_mBBE58AEA702864FB006771F4600D1D99B1234460(NULL);
V_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_7, L_8));
}
IL_002d:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = __this->___bufBytes_4;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = L_9;
V_3 = L_10;
if (!L_10)
{
goto IL_003c;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = V_3;
NullCheck(L_11);
if (((int32_t)(((RuntimeArray*)L_11)->max_length)))
{
goto IL_0041;
}
}
IL_003c:
{
V_2 = (uint8_t*)((uintptr_t)0);
goto IL_004a;
}
IL_0041:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12 = V_3;
NullCheck(L_12);
V_2 = (uint8_t*)((uintptr_t)((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))));
}
IL_004a:
{
Il2CppChar* L_13 = V_0;
V_4 = L_13;
Il2CppChar* L_14 = V_0;
String_t* L_15 = ___text0;
NullCheck(L_15);
int32_t L_16;
L_16 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_15, NULL);
V_5 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_14, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_16), 2))));
uint8_t* L_17 = V_2;
int32_t L_18 = __this->___bufPos_8;
V_6 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_17, L_18));
V_7 = 0;
}
IL_0067:
{
uint8_t* L_19 = V_6;
Il2CppChar* L_20 = V_5;
Il2CppChar* L_21 = V_4;
V_8 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_19, ((intptr_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_20, (intptr_t)L_21))/2))))));
uint8_t* L_22 = V_8;
uint8_t* L_23 = V_2;
int32_t L_24 = __this->___bufLen_13;
if ((!(((uintptr_t)L_22) > ((uintptr_t)((uint8_t*)il2cpp_codegen_add((intptr_t)L_23, L_24))))))
{
goto IL_009f;
}
}
{
uint8_t* L_25 = V_2;
int32_t L_26 = __this->___bufLen_13;
V_8 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_25, L_26));
goto IL_009f;
}
IL_008d:
{
uint8_t* L_27 = V_6;
int32_t L_28 = V_7;
*((int8_t*)L_27) = (int8_t)((int32_t)(uint8_t)L_28);
uint8_t* L_29 = V_6;
V_6 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_29, 1));
Il2CppChar* L_30 = V_4;
V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_30, 2));
}
IL_009f:
{
uint8_t* L_31 = V_6;
uint8_t* L_32 = V_8;
if ((!(((uintptr_t)L_31) < ((uintptr_t)L_32))))
{
goto IL_00cb;
}
}
{
XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_33 = (&__this->___xmlCharType_7);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_34 = L_33->___charProperties_2;
Il2CppChar* L_35 = V_4;
int32_t L_36 = *((uint16_t*)L_35);
int32_t L_37 = L_36;
V_7 = L_37;
NullCheck(L_34);
int32_t L_38 = L_37;
uint8_t L_39 = (L_34)->GetAt(static_cast<il2cpp_array_size_t>(L_38));
if (!((int32_t)((int32_t)L_39&((int32_t)128))))
{
goto IL_00cb;
}
}
{
int32_t L_40 = V_7;
if ((((int32_t)L_40) == ((int32_t)((int32_t)93))))
{
goto IL_00cb;
}
}
{
int32_t L_41 = V_7;
if ((((int32_t)L_41) <= ((int32_t)((int32_t)127))))
{
goto IL_008d;
}
}
IL_00cb:
{
Il2CppChar* L_42 = V_4;
Il2CppChar* L_43 = V_5;
if ((!(((uintptr_t)L_42) < ((uintptr_t)L_43))))
{
goto IL_027e;
}
}
{
uint8_t* L_44 = V_6;
uint8_t* L_45 = V_8;
if ((!(((uintptr_t)L_44) >= ((uintptr_t)L_45))))
{
goto IL_00f8;
}
}
{
uint8_t* L_46 = V_6;
uint8_t* L_47 = V_2;
__this->___bufPos_8 = ((int32_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_46, (intptr_t)L_47))/1))));
VirtualActionInvoker0::Invoke(48 /* System.Void System.Xml.XmlUtf8RawTextWriter::FlushBuffer() */, __this);
uint8_t* L_48 = V_2;
V_6 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_48, 1));
goto IL_0067;
}
IL_00f8:
{
int32_t L_49 = V_7;
if ((((int32_t)L_49) > ((int32_t)((int32_t)39))))
{
goto IL_0135;
}
}
{
int32_t L_50 = V_7;
switch (((int32_t)il2cpp_codegen_subtract(L_50, ((int32_t)9))))
{
case 0:
{
goto IL_0204;
}
case 1:
{
goto IL_01e2;
}
case 2:
{
goto IL_0212;
}
case 3:
{
goto IL_0212;
}
case 4:
{
goto IL_01ab;
}
}
}
{
int32_t L_51 = V_7;
if ((((int32_t)L_51) == ((int32_t)((int32_t)34))))
{
goto IL_0204;
}
}
{
int32_t L_52 = V_7;
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract(L_52, ((int32_t)38)))) > ((uint32_t)1))))
{
goto IL_0204;
}
}
{
goto IL_0212;
}
IL_0135:
{
int32_t L_53 = V_7;
if ((((int32_t)L_53) == ((int32_t)((int32_t)60))))
{
goto IL_0204;
}
}
{
int32_t L_54 = V_7;
if ((((int32_t)L_54) == ((int32_t)((int32_t)62))))
{
goto IL_014f;
}
}
{
int32_t L_55 = V_7;
if ((((int32_t)L_55) == ((int32_t)((int32_t)93))))
{
goto IL_0182;
}
}
{
goto IL_0212;
}
IL_014f:
{
bool L_56 = __this->___hadDoubleBracket_15;
if (!L_56)
{
goto IL_0172;
}
}
{
uint8_t* L_57 = V_6;
int32_t L_58 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_57, (-1))));
if ((!(((uint32_t)L_58) == ((uint32_t)((int32_t)93)))))
{
goto IL_0172;
}
}
{
uint8_t* L_59 = V_6;
uint8_t* L_60;
L_60 = XmlUtf8RawTextWriter_RawEndCData_mAC87E304EEC6E5598A8DB9D65F60E110808AEFFA(L_59, NULL);
V_6 = L_60;
uint8_t* L_61 = V_6;
uint8_t* L_62;
L_62 = XmlUtf8RawTextWriter_RawStartCData_m885FCA9B181958D83B6A89E6ABC520FFFF6E2698(L_61, NULL);
V_6 = L_62;
}
IL_0172:
{
uint8_t* L_63 = V_6;
*((int8_t*)L_63) = (int8_t)((int32_t)62);
uint8_t* L_64 = V_6;
V_6 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_64, 1));
goto IL_0273;
}
IL_0182:
{
uint8_t* L_65 = V_6;
int32_t L_66 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_65, (-1))));
if ((!(((uint32_t)L_66) == ((uint32_t)((int32_t)93)))))
{
goto IL_0194;
}
}
{
__this->___hadDoubleBracket_15 = (bool)1;
goto IL_019b;
}
IL_0194:
{
__this->___hadDoubleBracket_15 = (bool)0;
}
IL_019b:
{
uint8_t* L_67 = V_6;
*((int8_t*)L_67) = (int8_t)((int32_t)93);
uint8_t* L_68 = V_6;
V_6 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_68, 1));
goto IL_0273;
}
IL_01ab:
{
int32_t L_69 = __this->___newLineHandling_17;
if (L_69)
{
goto IL_01d1;
}
}
{
Il2CppChar* L_70 = V_4;
int32_t L_71 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_70, 2)));
if ((!(((uint32_t)L_71) == ((uint32_t)((int32_t)10)))))
{
goto IL_01c2;
}
}
{
Il2CppChar* L_72 = V_4;
V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_72, 2));
}
IL_01c2:
{
uint8_t* L_73 = V_6;
uint8_t* L_74;
L_74 = XmlUtf8RawTextWriter_WriteNewLine_mC85F5A7C864437D5CC59658B5BD2E107CD3A4BCC(__this, L_73, NULL);
V_6 = L_74;
goto IL_0273;
}
IL_01d1:
{
uint8_t* L_75 = V_6;
int32_t L_76 = V_7;
*((int8_t*)L_75) = (int8_t)((int32_t)(uint8_t)L_76);
uint8_t* L_77 = V_6;
V_6 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_77, 1));
goto IL_0273;
}
IL_01e2:
{
int32_t L_78 = __this->___newLineHandling_17;
if (L_78)
{
goto IL_01f6;
}
}
{
uint8_t* L_79 = V_6;
uint8_t* L_80;
L_80 = XmlUtf8RawTextWriter_WriteNewLine_mC85F5A7C864437D5CC59658B5BD2E107CD3A4BCC(__this, L_79, NULL);
V_6 = L_80;
goto IL_0273;
}
IL_01f6:
{
uint8_t* L_81 = V_6;
int32_t L_82 = V_7;
*((int8_t*)L_81) = (int8_t)((int32_t)(uint8_t)L_82);
uint8_t* L_83 = V_6;
V_6 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_83, 1));
goto IL_0273;
}
IL_0204:
{
uint8_t* L_84 = V_6;
int32_t L_85 = V_7;
*((int8_t*)L_84) = (int8_t)((int32_t)(uint8_t)L_85);
uint8_t* L_86 = V_6;
V_6 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_86, 1));
goto IL_0273;
}
IL_0212:
{
int32_t L_87 = V_7;
bool L_88;
L_88 = XmlCharType_IsSurrogate_m29FE0DF5EE1BEA1C1695EAD497896D2FD94173C0(L_87, NULL);
if (!L_88)
{
goto IL_0236;
}
}
{
Il2CppChar* L_89 = V_4;
Il2CppChar* L_90 = V_5;
uint8_t* L_91 = V_6;
uint8_t* L_92;
L_92 = XmlUtf8RawTextWriter_EncodeSurrogate_mE846CA16E1AEF8E2DFFE51F53BA92D4E4E47CD0A(L_89, L_90, L_91, NULL);
V_6 = L_92;
Il2CppChar* L_93 = V_4;
V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_93, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 2))));
goto IL_0067;
}
IL_0236:
{
int32_t L_94 = V_7;
if ((((int32_t)L_94) <= ((int32_t)((int32_t)127))))
{
goto IL_0245;
}
}
{
int32_t L_95 = V_7;
if ((((int32_t)L_95) < ((int32_t)((int32_t)65534))))
{
goto IL_025d;
}
}
IL_0245:
{
int32_t L_96 = V_7;
uint8_t* L_97 = V_6;
uint8_t* L_98;
L_98 = XmlUtf8RawTextWriter_InvalidXmlChar_m4F7C6D47C50442CE83943650D69E14F9D1975D63(__this, L_96, L_97, (bool)0, NULL);
V_6 = L_98;
Il2CppChar* L_99 = V_4;
V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_99, 2));
goto IL_0067;
}
IL_025d:
{
int32_t L_100 = V_7;
uint8_t* L_101 = V_6;
uint8_t* L_102;
L_102 = XmlUtf8RawTextWriter_EncodeMultibyteUTF8_m23196496AF45D3C4E3DF800CDD8E9D7E47EDB2F0(L_100, L_101, NULL);
V_6 = L_102;
Il2CppChar* L_103 = V_4;
V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_103, 2));
goto IL_0067;
}
IL_0273:
{
Il2CppChar* L_104 = V_4;
V_4 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_104, 2));
goto IL_0067;
}
IL_027e:
{
uint8_t* L_105 = V_6;
uint8_t* L_106 = V_2;
__this->___bufPos_8 = ((int32_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_105, (intptr_t)L_106))/1))));
V_3 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL;
V_1 = (String_t*)NULL;
return;
}
}
// System.Boolean System.Xml.XmlUtf8RawTextWriter::IsSurrogateByte(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlUtf8RawTextWriter_IsSurrogateByte_m621EF957DE646EF6FCD643DEADBAC66AA29964D5 (uint8_t ___b0, const RuntimeMethod* method)
{
{
uint8_t L_0 = ___b0;
return (bool)((((int32_t)((int32_t)((int32_t)L_0&((int32_t)248)))) == ((int32_t)((int32_t)240)))? 1 : 0);
}
}
// System.Byte* System.Xml.XmlUtf8RawTextWriter::EncodeSurrogate(System.Char*,System.Char*,System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* XmlUtf8RawTextWriter_EncodeSurrogate_mE846CA16E1AEF8E2DFFE51F53BA92D4E4E47CD0A (Il2CppChar* ___pSrc0, Il2CppChar* ___pSrcEnd1, uint8_t* ___pDst2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LocalAppContextSwitches_tD4691F88F847A5F076065A6FEF10BBB5DB039434_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
Il2CppChar* L_0 = ___pSrc0;
int32_t L_1 = *((uint16_t*)L_0);
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) > ((int32_t)((int32_t)56319))))
{
goto IL_0098;
}
}
{
Il2CppChar* L_3 = ___pSrc0;
Il2CppChar* L_4 = ___pSrcEnd1;
if ((!(((uintptr_t)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_3, 2))) < ((uintptr_t)L_4))))
{
goto IL_0088;
}
}
{
Il2CppChar* L_5 = ___pSrc0;
int32_t L_6 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_5, 2)));
V_1 = L_6;
int32_t L_7 = V_1;
if ((((int32_t)L_7) < ((int32_t)((int32_t)56320))))
{
goto IL_007e;
}
}
{
bool L_8 = ((LocalAppContextSwitches_tD4691F88F847A5F076065A6FEF10BBB5DB039434_StaticFields*)il2cpp_codegen_static_fields_for(LocalAppContextSwitches_tD4691F88F847A5F076065A6FEF10BBB5DB039434_il2cpp_TypeInfo_var))->___DontThrowOnInvalidSurrogatePairs_1;
if (L_8)
{
goto IL_0030;
}
}
{
int32_t L_9 = V_1;
if ((((int32_t)L_9) > ((int32_t)((int32_t)57343))))
{
goto IL_007e;
}
}
IL_0030:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
int32_t L_12;
L_12 = XmlCharType_CombineSurrogateChar_mCCBF257D9AE510DB9D3AA852848DCEB8AE0B9512(L_10, L_11, NULL);
V_0 = L_12;
uint8_t* L_13 = ___pDst2;
int32_t L_14 = V_0;
*((int8_t*)L_13) = (int8_t)((int32_t)(uint8_t)((int32_t)(((int32_t)240)|((int32_t)(L_14>>((int32_t)18))))));
uint8_t* L_15 = ___pDst2;
int32_t L_16 = V_0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_15, 1))) = (int8_t)((int32_t)(uint8_t)((int32_t)(((int32_t)128)|((int32_t)(((int32_t)(L_16>>((int32_t)12)))&((int32_t)63))))));
uint8_t* L_17 = ___pDst2;
int32_t L_18 = V_0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_17, 2))) = (int8_t)((int32_t)(uint8_t)((int32_t)(((int32_t)128)|((int32_t)(((int32_t)(L_18>>6))&((int32_t)63))))));
uint8_t* L_19 = ___pDst2;
int32_t L_20 = V_0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_19, 3))) = (int8_t)((int32_t)(uint8_t)((int32_t)(((int32_t)128)|((int32_t)(L_20&((int32_t)63))))));
uint8_t* L_21 = ___pDst2;
___pDst2 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_21, 4));
uint8_t* L_22 = ___pDst2;
return L_22;
}
IL_007e:
{
int32_t L_23 = V_1;
int32_t L_24 = V_0;
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var)));
Exception_t* L_25;
L_25 = XmlConvert_CreateInvalidSurrogatePairException_m94EB7264908EDA03B0B9136F43A937B33FBB91CC(((int32_t)(uint16_t)L_23), ((int32_t)(uint16_t)L_24), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUtf8RawTextWriter_EncodeSurrogate_mE846CA16E1AEF8E2DFFE51F53BA92D4E4E47CD0A_RuntimeMethod_var)));
}
IL_0088:
{
String_t* L_26;
L_26 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFE53A3AF35DC43A86F8AA824C5449731805C32DD)), NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_27 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_27);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_27, L_26, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_27, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUtf8RawTextWriter_EncodeSurrogate_mE846CA16E1AEF8E2DFFE51F53BA92D4E4E47CD0A_RuntimeMethod_var)));
}
IL_0098:
{
int32_t L_28 = V_0;
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var)));
Exception_t* L_29;
L_29 = XmlConvert_CreateInvalidHighSurrogateCharException_mA7ECADE332FF612C80C9A49EDCECAFD6A181D20C(((int32_t)(uint16_t)L_28), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUtf8RawTextWriter_EncodeSurrogate_mE846CA16E1AEF8E2DFFE51F53BA92D4E4E47CD0A_RuntimeMethod_var)));
}
}
// System.Byte* System.Xml.XmlUtf8RawTextWriter::InvalidXmlChar(System.Int32,System.Byte*,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* XmlUtf8RawTextWriter_InvalidXmlChar_m4F7C6D47C50442CE83943650D69E14F9D1975D63 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, int32_t ___ch0, uint8_t* ___pDst1, bool ___entitize2, const RuntimeMethod* method)
{
{
bool L_0 = __this->___checkCharacters_21;
if (!L_0)
{
goto IL_0011;
}
}
{
int32_t L_1 = ___ch0;
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var)));
Exception_t* L_2;
L_2 = XmlConvert_CreateInvalidCharException_mDB4221F3CC7FE0F027C0BE5E94398367C6D528CF(((int32_t)(uint16_t)L_1), 0, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUtf8RawTextWriter_InvalidXmlChar_m4F7C6D47C50442CE83943650D69E14F9D1975D63_RuntimeMethod_var)));
}
IL_0011:
{
bool L_3 = ___entitize2;
if (!L_3)
{
goto IL_001d;
}
}
{
uint8_t* L_4 = ___pDst1;
int32_t L_5 = ___ch0;
uint8_t* L_6;
L_6 = XmlUtf8RawTextWriter_CharEntity_m0A23F5B065EFA3344692697742800B4E2FBF757F(L_4, ((int32_t)(uint16_t)L_5), NULL);
return L_6;
}
IL_001d:
{
int32_t L_7 = ___ch0;
if ((((int32_t)L_7) >= ((int32_t)((int32_t)128))))
{
goto IL_0030;
}
}
{
uint8_t* L_8 = ___pDst1;
int32_t L_9 = ___ch0;
*((int8_t*)L_8) = (int8_t)((int32_t)(uint8_t)L_9);
uint8_t* L_10 = ___pDst1;
___pDst1 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_10, 1));
goto IL_0039;
}
IL_0030:
{
int32_t L_11 = ___ch0;
uint8_t* L_12 = ___pDst1;
uint8_t* L_13;
L_13 = XmlUtf8RawTextWriter_EncodeMultibyteUTF8_m23196496AF45D3C4E3DF800CDD8E9D7E47EDB2F0(L_11, L_12, NULL);
___pDst1 = L_13;
}
IL_0039:
{
uint8_t* L_14 = ___pDst1;
return L_14;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::EncodeChar(System.Char*&,System.Char*,System.Byte*&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_EncodeChar_mCD76E36D29EAD5ABABBBB5B445B615D244DBC10D (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, Il2CppChar** ___pSrc0, Il2CppChar* ___pSrcEnd1, uint8_t** ___pDst2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
Il2CppChar** L_0 = ___pSrc0;
int32_t L_1 = *((uint16_t*)(*((intptr_t*)L_0)));
V_0 = L_1;
int32_t L_2 = V_0;
bool L_3;
L_3 = XmlCharType_IsSurrogate_m29FE0DF5EE1BEA1C1695EAD497896D2FD94173C0(L_2, NULL);
if (!L_3)
{
goto IL_0022;
}
}
{
uint8_t** L_4 = ___pDst2;
Il2CppChar** L_5 = ___pSrc0;
Il2CppChar* L_6 = ___pSrcEnd1;
uint8_t** L_7 = ___pDst2;
uint8_t* L_8;
L_8 = XmlUtf8RawTextWriter_EncodeSurrogate_mE846CA16E1AEF8E2DFFE51F53BA92D4E4E47CD0A((Il2CppChar*)(*((intptr_t*)L_5)), L_6, (uint8_t*)(*((intptr_t*)L_7)), NULL);
*((intptr_t*)L_4) = (intptr_t)L_8;
Il2CppChar** L_9 = ___pSrc0;
Il2CppChar** L_10 = ___pSrc0;
*((intptr_t*)L_9) = (intptr_t)((intptr_t)il2cpp_codegen_add((*((intptr_t*)L_10)), ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 2))));
return;
}
IL_0022:
{
int32_t L_11 = V_0;
if ((((int32_t)L_11) <= ((int32_t)((int32_t)127))))
{
goto IL_002f;
}
}
{
int32_t L_12 = V_0;
if ((((int32_t)L_12) < ((int32_t)((int32_t)65534))))
{
goto IL_0042;
}
}
IL_002f:
{
uint8_t** L_13 = ___pDst2;
int32_t L_14 = V_0;
uint8_t** L_15 = ___pDst2;
uint8_t* L_16;
L_16 = XmlUtf8RawTextWriter_InvalidXmlChar_m4F7C6D47C50442CE83943650D69E14F9D1975D63(__this, L_14, (uint8_t*)(*((intptr_t*)L_15)), (bool)0, NULL);
*((intptr_t*)L_13) = (intptr_t)L_16;
Il2CppChar** L_17 = ___pSrc0;
Il2CppChar** L_18 = ___pSrc0;
*((intptr_t*)L_17) = (intptr_t)((intptr_t)il2cpp_codegen_add((*((intptr_t*)L_18)), 2));
return;
}
IL_0042:
{
uint8_t** L_19 = ___pDst2;
int32_t L_20 = V_0;
uint8_t** L_21 = ___pDst2;
uint8_t* L_22;
L_22 = XmlUtf8RawTextWriter_EncodeMultibyteUTF8_m23196496AF45D3C4E3DF800CDD8E9D7E47EDB2F0(L_20, (uint8_t*)(*((intptr_t*)L_21)), NULL);
*((intptr_t*)L_19) = (intptr_t)L_22;
Il2CppChar** L_23 = ___pSrc0;
Il2CppChar** L_24 = ___pSrc0;
*((intptr_t*)L_23) = (intptr_t)((intptr_t)il2cpp_codegen_add((*((intptr_t*)L_24)), 2));
return;
}
}
// System.Byte* System.Xml.XmlUtf8RawTextWriter::EncodeMultibyteUTF8(System.Int32,System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* XmlUtf8RawTextWriter_EncodeMultibyteUTF8_m23196496AF45D3C4E3DF800CDD8E9D7E47EDB2F0 (int32_t ___ch0, uint8_t* ___pDst1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___ch0;
if ((((int32_t)L_0) >= ((int32_t)((int32_t)2048))))
{
goto IL_0013;
}
}
{
uint8_t* L_1 = ___pDst1;
int32_t L_2 = ___ch0;
*((int8_t*)L_1) = (int8_t)((int32_t)(uint8_t)((int32_t)(((int32_t)-64)|((int32_t)(L_2>>6)))));
goto IL_002e;
}
IL_0013:
{
uint8_t* L_3 = ___pDst1;
int32_t L_4 = ___ch0;
*((int8_t*)L_3) = (int8_t)((int32_t)(uint8_t)((int32_t)(((int32_t)-32)|((int32_t)(L_4>>((int32_t)12))))));
uint8_t* L_5 = ___pDst1;
___pDst1 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_5, 1));
uint8_t* L_6 = ___pDst1;
int32_t L_7 = ___ch0;
*((int8_t*)L_6) = (int8_t)((int32_t)(uint8_t)((int32_t)(((int32_t)-128)|((int32_t)(((int32_t)(L_7>>6))&((int32_t)63))))));
}
IL_002e:
{
uint8_t* L_8 = ___pDst1;
___pDst1 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_8, 1));
uint8_t* L_9 = ___pDst1;
int32_t L_10 = ___ch0;
*((int8_t*)L_9) = (int8_t)((int32_t)(uint8_t)((int32_t)(((int32_t)128)|((int32_t)(L_10&((int32_t)63))))));
uint8_t* L_11 = ___pDst1;
return ((uint8_t*)il2cpp_codegen_add((intptr_t)L_11, 1));
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::CharToUTF8(System.Char*&,System.Char*,System.Byte*&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_CharToUTF8_m80FB876E99C069AF65E8B444A41830BE26A68F14 (Il2CppChar** ___pSrc0, Il2CppChar* ___pSrcEnd1, uint8_t** ___pDst2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
Il2CppChar** L_0 = ___pSrc0;
int32_t L_1 = *((uint16_t*)(*((intptr_t*)L_0)));
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) > ((int32_t)((int32_t)127))))
{
goto IL_001b;
}
}
{
uint8_t** L_3 = ___pDst2;
int32_t L_4 = V_0;
*((int8_t*)(*((intptr_t*)L_3))) = (int8_t)((int32_t)(uint8_t)L_4);
uint8_t** L_5 = ___pDst2;
uint8_t** L_6 = ___pDst2;
*((intptr_t*)L_5) = (intptr_t)((intptr_t)il2cpp_codegen_add((*((intptr_t*)L_6)), 1));
Il2CppChar** L_7 = ___pSrc0;
Il2CppChar** L_8 = ___pSrc0;
*((intptr_t*)L_7) = (intptr_t)((intptr_t)il2cpp_codegen_add((*((intptr_t*)L_8)), 2));
return;
}
IL_001b:
{
int32_t L_9 = V_0;
bool L_10;
L_10 = XmlCharType_IsSurrogate_m29FE0DF5EE1BEA1C1695EAD497896D2FD94173C0(L_9, NULL);
if (!L_10)
{
goto IL_0039;
}
}
{
uint8_t** L_11 = ___pDst2;
Il2CppChar** L_12 = ___pSrc0;
Il2CppChar* L_13 = ___pSrcEnd1;
uint8_t** L_14 = ___pDst2;
uint8_t* L_15;
L_15 = XmlUtf8RawTextWriter_EncodeSurrogate_mE846CA16E1AEF8E2DFFE51F53BA92D4E4E47CD0A((Il2CppChar*)(*((intptr_t*)L_12)), L_13, (uint8_t*)(*((intptr_t*)L_14)), NULL);
*((intptr_t*)L_11) = (intptr_t)L_15;
Il2CppChar** L_16 = ___pSrc0;
Il2CppChar** L_17 = ___pSrc0;
*((intptr_t*)L_16) = (intptr_t)((intptr_t)il2cpp_codegen_add((*((intptr_t*)L_17)), ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 2))));
return;
}
IL_0039:
{
uint8_t** L_18 = ___pDst2;
int32_t L_19 = V_0;
uint8_t** L_20 = ___pDst2;
uint8_t* L_21;
L_21 = XmlUtf8RawTextWriter_EncodeMultibyteUTF8_m23196496AF45D3C4E3DF800CDD8E9D7E47EDB2F0(L_19, (uint8_t*)(*((intptr_t*)L_20)), NULL);
*((intptr_t*)L_18) = (intptr_t)L_21;
Il2CppChar** L_22 = ___pSrc0;
Il2CppChar** L_23 = ___pSrc0;
*((intptr_t*)L_22) = (intptr_t)((intptr_t)il2cpp_codegen_add((*((intptr_t*)L_23)), 2));
return;
}
}
// System.Byte* System.Xml.XmlUtf8RawTextWriter::WriteNewLine(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* XmlUtf8RawTextWriter_WriteNewLine_mC85F5A7C864437D5CC59658B5BD2E107CD3A4BCC (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, uint8_t* ___pDst0, const RuntimeMethod* method)
{
uint8_t* V_0 = NULL;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_1 = NULL;
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = __this->___bufBytes_4;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = L_0;
V_1 = L_1;
if (!L_1)
{
goto IL_000f;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = V_1;
NullCheck(L_2);
if (((int32_t)(((RuntimeArray*)L_2)->max_length)))
{
goto IL_0014;
}
}
IL_000f:
{
V_0 = (uint8_t*)((uintptr_t)0);
goto IL_001d;
}
IL_0014:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = V_1;
NullCheck(L_3);
V_0 = (uint8_t*)((uintptr_t)((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))));
}
IL_001d:
{
uint8_t* L_4 = ___pDst0;
uint8_t* L_5 = V_0;
__this->___bufPos_8 = ((int32_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_4, (intptr_t)L_5))/1))));
String_t* L_6 = __this->___newLineChars_20;
XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, L_6, NULL);
uint8_t* L_7 = V_0;
int32_t L_8 = __this->___bufPos_8;
return ((uint8_t*)il2cpp_codegen_add((intptr_t)L_7, L_8));
}
}
// System.Byte* System.Xml.XmlUtf8RawTextWriter::LtEntity(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* XmlUtf8RawTextWriter_LtEntity_mA9BFD8D405525247FA29C251EF7F01F1F4A1B3F7 (uint8_t* ___pDst0, const RuntimeMethod* method)
{
{
uint8_t* L_0 = ___pDst0;
*((int8_t*)L_0) = (int8_t)((int32_t)38);
uint8_t* L_1 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_1, 1))) = (int8_t)((int32_t)108);
uint8_t* L_2 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_2, 2))) = (int8_t)((int32_t)116);
uint8_t* L_3 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_3, 3))) = (int8_t)((int32_t)59);
uint8_t* L_4 = ___pDst0;
return ((uint8_t*)il2cpp_codegen_add((intptr_t)L_4, 4));
}
}
// System.Byte* System.Xml.XmlUtf8RawTextWriter::GtEntity(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* XmlUtf8RawTextWriter_GtEntity_mE467C4BEDD017622FE63FDBDB02BC7FA0FED2A47 (uint8_t* ___pDst0, const RuntimeMethod* method)
{
{
uint8_t* L_0 = ___pDst0;
*((int8_t*)L_0) = (int8_t)((int32_t)38);
uint8_t* L_1 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_1, 1))) = (int8_t)((int32_t)103);
uint8_t* L_2 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_2, 2))) = (int8_t)((int32_t)116);
uint8_t* L_3 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_3, 3))) = (int8_t)((int32_t)59);
uint8_t* L_4 = ___pDst0;
return ((uint8_t*)il2cpp_codegen_add((intptr_t)L_4, 4));
}
}
// System.Byte* System.Xml.XmlUtf8RawTextWriter::AmpEntity(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* XmlUtf8RawTextWriter_AmpEntity_m74590A53CBA42775F424221B95509971DEBF4055 (uint8_t* ___pDst0, const RuntimeMethod* method)
{
{
uint8_t* L_0 = ___pDst0;
*((int8_t*)L_0) = (int8_t)((int32_t)38);
uint8_t* L_1 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_1, 1))) = (int8_t)((int32_t)97);
uint8_t* L_2 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_2, 2))) = (int8_t)((int32_t)109);
uint8_t* L_3 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_3, 3))) = (int8_t)((int32_t)112);
uint8_t* L_4 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_4, 4))) = (int8_t)((int32_t)59);
uint8_t* L_5 = ___pDst0;
return ((uint8_t*)il2cpp_codegen_add((intptr_t)L_5, 5));
}
}
// System.Byte* System.Xml.XmlUtf8RawTextWriter::QuoteEntity(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* XmlUtf8RawTextWriter_QuoteEntity_mB6285E617BB7E7980D65FE8BAAF7BB39C0247034 (uint8_t* ___pDst0, const RuntimeMethod* method)
{
{
uint8_t* L_0 = ___pDst0;
*((int8_t*)L_0) = (int8_t)((int32_t)38);
uint8_t* L_1 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_1, 1))) = (int8_t)((int32_t)113);
uint8_t* L_2 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_2, 2))) = (int8_t)((int32_t)117);
uint8_t* L_3 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_3, 3))) = (int8_t)((int32_t)111);
uint8_t* L_4 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_4, 4))) = (int8_t)((int32_t)116);
uint8_t* L_5 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_5, 5))) = (int8_t)((int32_t)59);
uint8_t* L_6 = ___pDst0;
return ((uint8_t*)il2cpp_codegen_add((intptr_t)L_6, 6));
}
}
// System.Byte* System.Xml.XmlUtf8RawTextWriter::TabEntity(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* XmlUtf8RawTextWriter_TabEntity_m0F6FDA1300A85884C01CE27CB7AEEF644FA34C24 (uint8_t* ___pDst0, const RuntimeMethod* method)
{
{
uint8_t* L_0 = ___pDst0;
*((int8_t*)L_0) = (int8_t)((int32_t)38);
uint8_t* L_1 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_1, 1))) = (int8_t)((int32_t)35);
uint8_t* L_2 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_2, 2))) = (int8_t)((int32_t)120);
uint8_t* L_3 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_3, 3))) = (int8_t)((int32_t)57);
uint8_t* L_4 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_4, 4))) = (int8_t)((int32_t)59);
uint8_t* L_5 = ___pDst0;
return ((uint8_t*)il2cpp_codegen_add((intptr_t)L_5, 5));
}
}
// System.Byte* System.Xml.XmlUtf8RawTextWriter::LineFeedEntity(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* XmlUtf8RawTextWriter_LineFeedEntity_m510C2FCDDAFD3E6C1FB028DBA21B2D26ADC4C028 (uint8_t* ___pDst0, const RuntimeMethod* method)
{
{
uint8_t* L_0 = ___pDst0;
*((int8_t*)L_0) = (int8_t)((int32_t)38);
uint8_t* L_1 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_1, 1))) = (int8_t)((int32_t)35);
uint8_t* L_2 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_2, 2))) = (int8_t)((int32_t)120);
uint8_t* L_3 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_3, 3))) = (int8_t)((int32_t)65);
uint8_t* L_4 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_4, 4))) = (int8_t)((int32_t)59);
uint8_t* L_5 = ___pDst0;
return ((uint8_t*)il2cpp_codegen_add((intptr_t)L_5, 5));
}
}
// System.Byte* System.Xml.XmlUtf8RawTextWriter::CarriageReturnEntity(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* XmlUtf8RawTextWriter_CarriageReturnEntity_m8F175764EF6A6E78B51FA6BBB4AEC5DB26A77CE3 (uint8_t* ___pDst0, const RuntimeMethod* method)
{
{
uint8_t* L_0 = ___pDst0;
*((int8_t*)L_0) = (int8_t)((int32_t)38);
uint8_t* L_1 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_1, 1))) = (int8_t)((int32_t)35);
uint8_t* L_2 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_2, 2))) = (int8_t)((int32_t)120);
uint8_t* L_3 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_3, 3))) = (int8_t)((int32_t)68);
uint8_t* L_4 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_4, 4))) = (int8_t)((int32_t)59);
uint8_t* L_5 = ___pDst0;
return ((uint8_t*)il2cpp_codegen_add((intptr_t)L_5, 5));
}
}
// System.Byte* System.Xml.XmlUtf8RawTextWriter::CharEntity(System.Byte*,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* XmlUtf8RawTextWriter_CharEntity_m0A23F5B065EFA3344692697742800B4E2FBF757F (uint8_t* ___pDst0, Il2CppChar ___ch1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Il2CppChar* V_1 = NULL;
String_t* V_2 = NULL;
Il2CppChar* V_3 = NULL;
uint8_t V_4 = 0x0;
{
Il2CppChar L_0 = ___ch1;
V_0 = L_0;
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_1;
L_1 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL);
String_t* L_2;
L_2 = Int32_ToString_mE871810BC163EE4EF88E7C7682A6AD39911173B8((&V_0), _stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE, L_1, NULL);
uint8_t* L_3 = ___pDst0;
*((int8_t*)L_3) = (int8_t)((int32_t)38);
uint8_t* L_4 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_4, 1))) = (int8_t)((int32_t)35);
uint8_t* L_5 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_5, 2))) = (int8_t)((int32_t)120);
uint8_t* L_6 = ___pDst0;
___pDst0 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_6, 3));
V_2 = L_2;
String_t* L_7 = V_2;
V_1 = (Il2CppChar*)((uintptr_t)L_7);
Il2CppChar* L_8 = V_1;
if (!L_8)
{
goto IL_0037;
}
}
{
Il2CppChar* L_9 = V_1;
int32_t L_10;
L_10 = RuntimeHelpers_get_OffsetToStringData_mBBE58AEA702864FB006771F4600D1D99B1234460(NULL);
V_1 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_9, L_10));
}
IL_0037:
{
Il2CppChar* L_11 = V_1;
V_3 = L_11;
}
IL_0039:
{
uint8_t* L_12 = ___pDst0;
uint8_t* L_13 = L_12;
___pDst0 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_13, 1));
Il2CppChar* L_14 = V_3;
Il2CppChar* L_15 = L_14;
V_3 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_15, 2));
int32_t L_16 = *((uint16_t*)L_15);
int32_t L_17 = ((int32_t)(uint8_t)L_16);
V_4 = (uint8_t)L_17;
*((int8_t*)L_13) = (int8_t)L_17;
uint8_t L_18 = V_4;
if (L_18)
{
goto IL_0039;
}
}
{
V_2 = (String_t*)NULL;
uint8_t* L_19 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_19, (-1)))) = (int8_t)((int32_t)59);
uint8_t* L_20 = ___pDst0;
return L_20;
}
}
// System.Byte* System.Xml.XmlUtf8RawTextWriter::RawStartCData(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* XmlUtf8RawTextWriter_RawStartCData_m885FCA9B181958D83B6A89E6ABC520FFFF6E2698 (uint8_t* ___pDst0, const RuntimeMethod* method)
{
{
uint8_t* L_0 = ___pDst0;
*((int8_t*)L_0) = (int8_t)((int32_t)60);
uint8_t* L_1 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_1, 1))) = (int8_t)((int32_t)33);
uint8_t* L_2 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_2, 2))) = (int8_t)((int32_t)91);
uint8_t* L_3 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_3, 3))) = (int8_t)((int32_t)67);
uint8_t* L_4 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_4, 4))) = (int8_t)((int32_t)68);
uint8_t* L_5 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_5, 5))) = (int8_t)((int32_t)65);
uint8_t* L_6 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_6, 6))) = (int8_t)((int32_t)84);
uint8_t* L_7 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_7, 7))) = (int8_t)((int32_t)65);
uint8_t* L_8 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_8, 8))) = (int8_t)((int32_t)91);
uint8_t* L_9 = ___pDst0;
return ((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, ((int32_t)9)));
}
}
// System.Byte* System.Xml.XmlUtf8RawTextWriter::RawEndCData(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* XmlUtf8RawTextWriter_RawEndCData_mAC87E304EEC6E5598A8DB9D65F60E110808AEFFA (uint8_t* ___pDst0, const RuntimeMethod* method)
{
{
uint8_t* L_0 = ___pDst0;
*((int8_t*)L_0) = (int8_t)((int32_t)93);
uint8_t* L_1 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_1, 1))) = (int8_t)((int32_t)93);
uint8_t* L_2 = ___pDst0;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_2, 2))) = (int8_t)((int32_t)62);
uint8_t* L_3 = ___pDst0;
return ((uint8_t*)il2cpp_codegen_add((intptr_t)L_3, 3));
}
}
// System.Void System.Xml.XmlUtf8RawTextWriter::ValidateContentChars(System.String,System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriter_ValidateContentChars_m2D62E5A56C7DB286BB2FB52D93F53737272C62A4 (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* __this, String_t* ___chars0, String_t* ___propertyName1, bool ___allowOnlyWhitespace2, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
int32_t V_1 = 0;
Il2CppChar V_2 = 0x0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_3 = NULL;
uint32_t V_4 = 0;
{
bool L_0 = ___allowOnlyWhitespace2;
if (!L_0)
{
goto IL_002e;
}
}
{
XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_1 = (&__this->___xmlCharType_7);
String_t* L_2 = ___chars0;
bool L_3;
L_3 = XmlCharType_IsOnlyWhitespace_m6A7AD69BFF7BE6878F6984C952284C0755601490(L_1, L_2, NULL);
if (L_3)
{
goto IL_014d;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = (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_5 = L_4;
String_t* L_6 = ___propertyName1;
NullCheck(L_5);
ArrayElementTypeCheck (L_5, L_6);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_6);
String_t* L_7;
L_7 = Res_GetString_mB929E696BF2E2F27CD03C0B61301A9DFE2FDEEF9(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5520F0EAC899C656D9482CE97A660E8F8E28ED01)), L_5, 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*)&XmlUtf8RawTextWriter_ValidateContentChars_m2D62E5A56C7DB286BB2FB52D93F53737272C62A4_RuntimeMethod_var)));
}
IL_002e:
{
V_0 = (String_t*)NULL;
V_1 = 0;
goto IL_0120;
}
IL_0037:
{
XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_9 = (&__this->___xmlCharType_7);
String_t* L_10 = ___chars0;
int32_t L_11 = V_1;
NullCheck(L_10);
Il2CppChar L_12;
L_12 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_10, L_11, NULL);
bool L_13;
L_13 = XmlCharType_IsTextChar_mD4DD7B3C0E63D031A4EFFDD6635F68DDE166A4AB(L_9, L_12, NULL);
if (L_13)
{
goto IL_011c;
}
}
{
String_t* L_14 = ___chars0;
int32_t L_15 = V_1;
NullCheck(L_14);
Il2CppChar L_16;
L_16 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_14, L_15, NULL);
V_2 = L_16;
Il2CppChar L_17 = V_2;
if ((!(((uint32_t)L_17) <= ((uint32_t)((int32_t)38)))))
{
goto IL_007f;
}
}
{
Il2CppChar L_18 = V_2;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_18, ((int32_t)9))))
{
case 0:
{
goto IL_011c;
}
case 1:
{
goto IL_011c;
}
case 2:
{
goto IL_00a2;
}
case 3:
{
goto IL_00a2;
}
case 4:
{
goto IL_011c;
}
}
}
{
Il2CppChar L_19 = V_2;
if ((((int32_t)L_19) == ((int32_t)((int32_t)38))))
{
goto IL_0089;
}
}
{
goto IL_00a2;
}
IL_007f:
{
Il2CppChar L_20 = V_2;
if ((((int32_t)L_20) == ((int32_t)((int32_t)60))))
{
goto IL_0089;
}
}
{
Il2CppChar L_21 = V_2;
if ((!(((uint32_t)L_21) == ((uint32_t)((int32_t)93)))))
{
goto IL_00a2;
}
}
IL_0089:
{
String_t* L_22 = ___chars0;
int32_t L_23 = V_1;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_24;
L_24 = XmlException_BuildCharExceptionArgs_m392B50DC9155D9243FD05EF0287B06FCB408EA46(L_22, L_23, NULL);
V_3 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)L_24;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_25 = V_3;
String_t* L_26;
L_26 = Res_GetString_mB929E696BF2E2F27CD03C0B61301A9DFE2FDEEF9(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral37FDAAF1C91F947734553260891C6678930EDDA0)), L_25, NULL);
V_0 = L_26;
goto IL_012d;
}
IL_00a2:
{
String_t* L_27 = ___chars0;
int32_t L_28 = V_1;
NullCheck(L_27);
Il2CppChar L_29;
L_29 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_27, L_28, NULL);
bool L_30;
L_30 = XmlCharType_IsHighSurrogate_m9DE9C8AE82BE2FB2A8EA00142D2E5A7DFE6CC303(L_29, NULL);
if (!L_30)
{
goto IL_00de;
}
}
{
int32_t L_31 = V_1;
String_t* L_32 = ___chars0;
NullCheck(L_32);
int32_t L_33;
L_33 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_32, NULL);
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_31, 1))) >= ((int32_t)L_33)))
{
goto IL_00d1;
}
}
{
String_t* L_34 = ___chars0;
int32_t L_35 = V_1;
NullCheck(L_34);
Il2CppChar L_36;
L_36 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_34, ((int32_t)il2cpp_codegen_add(L_35, 1)), NULL);
bool L_37;
L_37 = XmlCharType_IsLowSurrogate_m062769B4A4869E4EDAC2EC6D0169BADCC2AC6C56(L_36, NULL);
if (!L_37)
{
goto IL_00d1;
}
}
{
int32_t L_38 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_38, 1));
goto IL_011c;
}
IL_00d1:
{
String_t* L_39;
L_39 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFE53A3AF35DC43A86F8AA824C5449731805C32DD)), NULL);
V_0 = L_39;
goto IL_012d;
}
IL_00de:
{
String_t* L_40 = ___chars0;
int32_t L_41 = V_1;
NullCheck(L_40);
Il2CppChar L_42;
L_42 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_40, L_41, NULL);
bool L_43;
L_43 = XmlCharType_IsLowSurrogate_m062769B4A4869E4EDAC2EC6D0169BADCC2AC6C56(L_42, NULL);
if (!L_43)
{
goto IL_011c;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_44 = (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_45 = L_44;
String_t* L_46 = ___chars0;
int32_t L_47 = V_1;
NullCheck(L_46);
Il2CppChar L_48;
L_48 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_46, L_47, NULL);
V_4 = L_48;
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var)));
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_49;
L_49 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
String_t* L_50;
L_50 = UInt32_ToString_m464396B0FE2115F3CEA38AEECDDB0FACC3AADADE((&V_4), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE)), L_49, NULL);
NullCheck(L_45);
ArrayElementTypeCheck (L_45, L_50);
(L_45)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_50);
String_t* L_51;
L_51 = Res_GetString_mB929E696BF2E2F27CD03C0B61301A9DFE2FDEEF9(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF4ED3BDF7EB24796E98DB0F3022D762D2C5EBFB0)), L_45, NULL);
V_0 = L_51;
goto IL_012d;
}
IL_011c:
{
int32_t L_52 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_52, 1));
}
IL_0120:
{
int32_t L_53 = V_1;
String_t* L_54 = ___chars0;
NullCheck(L_54);
int32_t L_55;
L_55 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_54, NULL);
if ((((int32_t)L_53) < ((int32_t)L_55)))
{
goto IL_0037;
}
}
{
return;
}
IL_012d:
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_56 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var)), (uint32_t)2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_57 = L_56;
String_t* L_58 = ___propertyName1;
NullCheck(L_57);
ArrayElementTypeCheck (L_57, L_58);
(L_57)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_58);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_59 = L_57;
String_t* L_60 = V_0;
NullCheck(L_59);
ArrayElementTypeCheck (L_59, L_60);
(L_59)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_60);
V_3 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)L_59;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_61 = V_3;
String_t* L_62;
L_62 = Res_GetString_mB929E696BF2E2F27CD03C0B61301A9DFE2FDEEF9(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE584C9688DCC7AEE34F2DA73D96EA113B211A93D)), L_61, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_63 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_63);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_63, L_62, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_63, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUtf8RawTextWriter_ValidateContentChars_m2D62E5A56C7DB286BB2FB52D93F53737272C62A4_RuntimeMethod_var)));
}
IL_014d:
{
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.XmlUtf8RawTextWriterIndent::.ctor(System.IO.Stream,System.Xml.XmlWriterSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriterIndent__ctor_m359ACF4D20F85FAA43B85868425F1AA4A53FFB9F (XmlUtf8RawTextWriterIndent_tEA3E110A4E275753FE5CC8F5FF17AA132DC66B41* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings1, const RuntimeMethod* method)
{
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0 = ___stream0;
XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_1 = ___settings1;
XmlUtf8RawTextWriter__ctor_m3FED45E976C290A249ADEFDCB6B4D899997D6FB2(__this, L_0, L_1, NULL);
XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_2 = ___settings1;
XmlUtf8RawTextWriterIndent_Init_m2B6D7FB0EDA0BF73910DF6645EB2CD33AB5305D9(__this, L_2, NULL);
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriterIndent::WriteDocType(System.String,System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriterIndent_WriteDocType_mAA96760976BE9AA458A6E06DCC960C782C6C95C7 (XmlUtf8RawTextWriterIndent_tEA3E110A4E275753FE5CC8F5FF17AA132DC66B41* __this, String_t* ___name0, String_t* ___pubid1, String_t* ___sysid2, String_t* ___subset3, const RuntimeMethod* method)
{
{
bool L_0 = __this->___mixedContent_29;
if (L_0)
{
goto IL_001c;
}
}
{
int32_t L_1 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___textPos_9;
int32_t L_2 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___bufPos_8;
if ((((int32_t)L_1) == ((int32_t)L_2)))
{
goto IL_001c;
}
}
{
XmlUtf8RawTextWriterIndent_WriteIndent_mFE6D30917351AA0FC42FC9D332ED0B17DC86C4E4(__this, NULL);
}
IL_001c:
{
String_t* L_3 = ___name0;
String_t* L_4 = ___pubid1;
String_t* L_5 = ___sysid2;
String_t* L_6 = ___subset3;
XmlUtf8RawTextWriter_WriteDocType_mF3CA63793EFA9CAF1D76AF06F0315DD56BF6739A(__this, L_3, L_4, L_5, L_6, NULL);
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriterIndent::WriteStartElement(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriterIndent_WriteStartElement_m936C4488471D8D59B5F76531D749CFEAC5C29A79 (XmlUtf8RawTextWriterIndent_tEA3E110A4E275753FE5CC8F5FF17AA132DC66B41* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method)
{
{
bool L_0 = __this->___mixedContent_29;
if (L_0)
{
goto IL_001c;
}
}
{
int32_t L_1 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___textPos_9;
int32_t L_2 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___bufPos_8;
if ((((int32_t)L_1) == ((int32_t)L_2)))
{
goto IL_001c;
}
}
{
XmlUtf8RawTextWriterIndent_WriteIndent_mFE6D30917351AA0FC42FC9D332ED0B17DC86C4E4(__this, NULL);
}
IL_001c:
{
int32_t L_3 = __this->___indentLevel_26;
__this->___indentLevel_26 = ((int32_t)il2cpp_codegen_add(L_3, 1));
BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C* L_4 = __this->___mixedContentStack_30;
bool L_5 = __this->___mixedContent_29;
NullCheck(L_4);
BitStack_PushBit_m1781C0D736A215362CD21AD07CAF39EE2909F718(L_4, L_5, NULL);
String_t* L_6 = ___prefix0;
String_t* L_7 = ___localName1;
String_t* L_8 = ___ns2;
XmlUtf8RawTextWriter_WriteStartElement_m0379A794A0F655460F6E51460D8F650779795F6F(__this, L_6, L_7, L_8, NULL);
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriterIndent::StartElementContent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriterIndent_StartElementContent_m2DB9D61A52AE3C1C55EE05768F22E857D2F0B5C7 (XmlUtf8RawTextWriterIndent_tEA3E110A4E275753FE5CC8F5FF17AA132DC66B41* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___indentLevel_26;
if ((!(((uint32_t)L_0) == ((uint32_t)1))))
{
goto IL_001b;
}
}
{
int32_t L_1 = __this->___conformanceLevel_31;
if ((!(((uint32_t)L_1) == ((uint32_t)2))))
{
goto IL_001b;
}
}
{
__this->___mixedContent_29 = (bool)0;
goto IL_002c;
}
IL_001b:
{
BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C* L_2 = __this->___mixedContentStack_30;
NullCheck(L_2);
bool L_3;
L_3 = BitStack_PeekBit_m416F1BB8F64059C924312B2416CBE09747B0E1E4(L_2, NULL);
__this->___mixedContent_29 = L_3;
}
IL_002c:
{
XmlUtf8RawTextWriter_StartElementContent_mE915245AC3F0BDA47F20DF6CC76BF72049C1F893(__this, NULL);
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriterIndent::OnRootElement(System.Xml.ConformanceLevel)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriterIndent_OnRootElement_m14F5E11974804583B9A1C7C7A9EFEA4AC952D52F (XmlUtf8RawTextWriterIndent_tEA3E110A4E275753FE5CC8F5FF17AA132DC66B41* __this, int32_t ___currentConformanceLevel0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___currentConformanceLevel0;
__this->___conformanceLevel_31 = L_0;
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriterIndent::WriteEndElement(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriterIndent_WriteEndElement_mB7E1B22A3B5CA090AD5C6C78E4AEADEAE6B66A0D (XmlUtf8RawTextWriterIndent_tEA3E110A4E275753FE5CC8F5FF17AA132DC66B41* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___indentLevel_26;
__this->___indentLevel_26 = ((int32_t)il2cpp_codegen_subtract(L_0, 1));
bool L_1 = __this->___mixedContent_29;
if (L_1)
{
goto IL_0038;
}
}
{
int32_t L_2 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___contentPos_10;
int32_t L_3 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___bufPos_8;
if ((((int32_t)L_2) == ((int32_t)L_3)))
{
goto IL_0038;
}
}
{
int32_t L_4 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___textPos_9;
int32_t L_5 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___bufPos_8;
if ((((int32_t)L_4) == ((int32_t)L_5)))
{
goto IL_0038;
}
}
{
XmlUtf8RawTextWriterIndent_WriteIndent_mFE6D30917351AA0FC42FC9D332ED0B17DC86C4E4(__this, NULL);
}
IL_0038:
{
BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C* L_6 = __this->___mixedContentStack_30;
NullCheck(L_6);
bool L_7;
L_7 = BitStack_PopBit_m0E661995EE53988E5F902D93C7C6BE02378021A3(L_6, NULL);
__this->___mixedContent_29 = L_7;
String_t* L_8 = ___prefix0;
String_t* L_9 = ___localName1;
String_t* L_10 = ___ns2;
XmlUtf8RawTextWriter_WriteEndElement_m5608AC0C69CDAAEF96F97DC4DA61BA4DD477479E(__this, L_8, L_9, L_10, NULL);
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriterIndent::WriteFullEndElement(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriterIndent_WriteFullEndElement_m4AA6CB8A464612D6DC9170AB2296B68D348AAEEB (XmlUtf8RawTextWriterIndent_tEA3E110A4E275753FE5CC8F5FF17AA132DC66B41* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___indentLevel_26;
__this->___indentLevel_26 = ((int32_t)il2cpp_codegen_subtract(L_0, 1));
bool L_1 = __this->___mixedContent_29;
if (L_1)
{
goto IL_0038;
}
}
{
int32_t L_2 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___contentPos_10;
int32_t L_3 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___bufPos_8;
if ((((int32_t)L_2) == ((int32_t)L_3)))
{
goto IL_0038;
}
}
{
int32_t L_4 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___textPos_9;
int32_t L_5 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___bufPos_8;
if ((((int32_t)L_4) == ((int32_t)L_5)))
{
goto IL_0038;
}
}
{
XmlUtf8RawTextWriterIndent_WriteIndent_mFE6D30917351AA0FC42FC9D332ED0B17DC86C4E4(__this, NULL);
}
IL_0038:
{
BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C* L_6 = __this->___mixedContentStack_30;
NullCheck(L_6);
bool L_7;
L_7 = BitStack_PopBit_m0E661995EE53988E5F902D93C7C6BE02378021A3(L_6, NULL);
__this->___mixedContent_29 = L_7;
String_t* L_8 = ___prefix0;
String_t* L_9 = ___localName1;
String_t* L_10 = ___ns2;
XmlUtf8RawTextWriter_WriteFullEndElement_mA2262354DD58A77D7D3422165A75016FB0B609F2(__this, L_8, L_9, L_10, NULL);
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriterIndent::WriteStartAttribute(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriterIndent_WriteStartAttribute_m12777B1787585AC4D29CC99B1CF83C09B4B109F8 (XmlUtf8RawTextWriterIndent_tEA3E110A4E275753FE5CC8F5FF17AA132DC66B41* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method)
{
{
bool L_0 = __this->___newLineOnAttributes_27;
if (!L_0)
{
goto IL_000e;
}
}
{
XmlUtf8RawTextWriterIndent_WriteIndent_mFE6D30917351AA0FC42FC9D332ED0B17DC86C4E4(__this, NULL);
}
IL_000e:
{
String_t* L_1 = ___prefix0;
String_t* L_2 = ___localName1;
String_t* L_3 = ___ns2;
XmlUtf8RawTextWriter_WriteStartAttribute_mFBD89332E58A89DAFA893BD88A09171AD963DFD8(__this, L_1, L_2, L_3, NULL);
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriterIndent::WriteCData(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriterIndent_WriteCData_mDC1A5E55FBB0568390B38B0A172201990910F328 (XmlUtf8RawTextWriterIndent_tEA3E110A4E275753FE5CC8F5FF17AA132DC66B41* __this, String_t* ___text0, const RuntimeMethod* method)
{
{
__this->___mixedContent_29 = (bool)1;
String_t* L_0 = ___text0;
XmlUtf8RawTextWriter_WriteCData_m276E549C1CB22DB7B762AEB5473699A434F4998C(__this, L_0, NULL);
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriterIndent::WriteComment(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriterIndent_WriteComment_m82C5DD7C896C619BBE53BDA8B2D20F916E7E3C23 (XmlUtf8RawTextWriterIndent_tEA3E110A4E275753FE5CC8F5FF17AA132DC66B41* __this, String_t* ___text0, const RuntimeMethod* method)
{
{
bool L_0 = __this->___mixedContent_29;
if (L_0)
{
goto IL_001c;
}
}
{
int32_t L_1 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___textPos_9;
int32_t L_2 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___bufPos_8;
if ((((int32_t)L_1) == ((int32_t)L_2)))
{
goto IL_001c;
}
}
{
XmlUtf8RawTextWriterIndent_WriteIndent_mFE6D30917351AA0FC42FC9D332ED0B17DC86C4E4(__this, NULL);
}
IL_001c:
{
String_t* L_3 = ___text0;
XmlUtf8RawTextWriter_WriteComment_mB7554706D5AB959EC657803CBF3F46A9F7B3B0F0(__this, L_3, NULL);
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriterIndent::WriteProcessingInstruction(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriterIndent_WriteProcessingInstruction_m00F4059525CCB382D0F1F5A3925BBBC16242DF4E (XmlUtf8RawTextWriterIndent_tEA3E110A4E275753FE5CC8F5FF17AA132DC66B41* __this, String_t* ___target0, String_t* ___text1, const RuntimeMethod* method)
{
{
bool L_0 = __this->___mixedContent_29;
if (L_0)
{
goto IL_001c;
}
}
{
int32_t L_1 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___textPos_9;
int32_t L_2 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___bufPos_8;
if ((((int32_t)L_1) == ((int32_t)L_2)))
{
goto IL_001c;
}
}
{
XmlUtf8RawTextWriterIndent_WriteIndent_mFE6D30917351AA0FC42FC9D332ED0B17DC86C4E4(__this, NULL);
}
IL_001c:
{
String_t* L_3 = ___target0;
String_t* L_4 = ___text1;
XmlUtf8RawTextWriter_WriteProcessingInstruction_m3FBDFD76690A07B4145020ABB521B6D0E0015C84(__this, L_3, L_4, NULL);
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriterIndent::WriteEntityRef(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriterIndent_WriteEntityRef_mE8AD8858EB82C4E891151DDD039AC2A9C4ABC72C (XmlUtf8RawTextWriterIndent_tEA3E110A4E275753FE5CC8F5FF17AA132DC66B41* __this, String_t* ___name0, const RuntimeMethod* method)
{
{
__this->___mixedContent_29 = (bool)1;
String_t* L_0 = ___name0;
XmlUtf8RawTextWriter_WriteEntityRef_mBB58E9588BA1D0830275543E726325234FCFD016(__this, L_0, NULL);
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriterIndent::WriteCharEntity(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriterIndent_WriteCharEntity_m29F9033E4E30339A26A70F0B0F6E67F390680FDB (XmlUtf8RawTextWriterIndent_tEA3E110A4E275753FE5CC8F5FF17AA132DC66B41* __this, Il2CppChar ___ch0, const RuntimeMethod* method)
{
{
__this->___mixedContent_29 = (bool)1;
Il2CppChar L_0 = ___ch0;
XmlUtf8RawTextWriter_WriteCharEntity_mCFA33DAFBB5CC7664DB5285C282CD17602A087EC(__this, L_0, NULL);
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriterIndent::WriteSurrogateCharEntity(System.Char,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriterIndent_WriteSurrogateCharEntity_mFD400691108649880473198BB4008444F4E8BF01 (XmlUtf8RawTextWriterIndent_tEA3E110A4E275753FE5CC8F5FF17AA132DC66B41* __this, Il2CppChar ___lowChar0, Il2CppChar ___highChar1, const RuntimeMethod* method)
{
{
__this->___mixedContent_29 = (bool)1;
Il2CppChar L_0 = ___lowChar0;
Il2CppChar L_1 = ___highChar1;
XmlUtf8RawTextWriter_WriteSurrogateCharEntity_m684718E512C7E54D584D19EA71D675C9201345F9(__this, L_0, L_1, NULL);
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriterIndent::WriteWhitespace(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriterIndent_WriteWhitespace_m8721DE8543E7E260213D44F461FC69350FA4E8AF (XmlUtf8RawTextWriterIndent_tEA3E110A4E275753FE5CC8F5FF17AA132DC66B41* __this, String_t* ___ws0, const RuntimeMethod* method)
{
{
__this->___mixedContent_29 = (bool)1;
String_t* L_0 = ___ws0;
XmlUtf8RawTextWriter_WriteWhitespace_m108C1B276821AE78EFBF52C9CEC9A7189A6A9E47(__this, L_0, NULL);
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriterIndent::WriteString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriterIndent_WriteString_m7DADD5B9374E282F88318C19E1186C4A225A93BC (XmlUtf8RawTextWriterIndent_tEA3E110A4E275753FE5CC8F5FF17AA132DC66B41* __this, String_t* ___text0, const RuntimeMethod* method)
{
{
__this->___mixedContent_29 = (bool)1;
String_t* L_0 = ___text0;
XmlUtf8RawTextWriter_WriteString_m6617BD373BF048EBE187A1F03A3A8CD74534FF98(__this, L_0, NULL);
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriterIndent::WriteChars(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriterIndent_WriteChars_mF7EE0E40616021389F5B1A07D99FBA34C34B58E6 (XmlUtf8RawTextWriterIndent_tEA3E110A4E275753FE5CC8F5FF17AA132DC66B41* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
{
__this->___mixedContent_29 = (bool)1;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___buffer0;
int32_t L_1 = ___index1;
int32_t L_2 = ___count2;
XmlUtf8RawTextWriter_WriteChars_m3D35BDDD9FF236EC73A0EB772343004B2C4B3C2B(__this, L_0, L_1, L_2, NULL);
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriterIndent::WriteRaw(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriterIndent_WriteRaw_mE97F539F09E8D9B070BFD831B86021E38FCD0C64 (XmlUtf8RawTextWriterIndent_tEA3E110A4E275753FE5CC8F5FF17AA132DC66B41* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
{
__this->___mixedContent_29 = (bool)1;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___buffer0;
int32_t L_1 = ___index1;
int32_t L_2 = ___count2;
XmlUtf8RawTextWriter_WriteRaw_m1CD2BE14DD496B9EA6D2093F8555677CC1B52096(__this, L_0, L_1, L_2, NULL);
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriterIndent::WriteRaw(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriterIndent_WriteRaw_m5DBB5694DAAC436CCF166B4CAC06057B3585E125 (XmlUtf8RawTextWriterIndent_tEA3E110A4E275753FE5CC8F5FF17AA132DC66B41* __this, String_t* ___data0, const RuntimeMethod* method)
{
{
__this->___mixedContent_29 = (bool)1;
String_t* L_0 = ___data0;
XmlUtf8RawTextWriter_WriteRaw_m6CEED895A7A1E54D50BC0DF04ED0F7B7F64FDA94(__this, L_0, NULL);
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriterIndent::WriteBase64(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriterIndent_WriteBase64_mC428124D6E22AAB0D924E6C35DA713A366D21634 (XmlUtf8RawTextWriterIndent_tEA3E110A4E275753FE5CC8F5FF17AA132DC66B41* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
{
__this->___mixedContent_29 = (bool)1;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___buffer0;
int32_t L_1 = ___index1;
int32_t L_2 = ___count2;
XmlRawWriter_WriteBase64_m3B717B23DDCA782AE1ECD2770444F8978EB12D4C(__this, L_0, L_1, L_2, NULL);
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriterIndent::Init(System.Xml.XmlWriterSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriterIndent_Init_m2B6D7FB0EDA0BF73910DF6645EB2CD33AB5305D9 (XmlUtf8RawTextWriterIndent_tEA3E110A4E275753FE5CC8F5FF17AA132DC66B41* __this, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral13DB4394207994E4948B5E3FAE7BA705B9B8E7B3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3C1E3A88F1DF442673E905BE97863155259D0CB5);
s_Il2CppMethodInitialized = true;
}
{
__this->___indentLevel_26 = 0;
XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_0 = ___settings0;
NullCheck(L_0);
String_t* L_1;
L_1 = XmlWriterSettings_get_IndentChars_mF26B2899F7718E3DC75CA62FDFB5915BAF5C158D_inline(L_0, NULL);
__this->___indentChars_28 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___indentChars_28), (void*)L_1);
XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_2 = ___settings0;
NullCheck(L_2);
bool L_3;
L_3 = XmlWriterSettings_get_NewLineOnAttributes_m3ACAFD8A94C15826E9DDC4F20B280C6AF3407F7D_inline(L_2, NULL);
__this->___newLineOnAttributes_27 = L_3;
BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C* L_4 = (BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C*)il2cpp_codegen_object_new(BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C_il2cpp_TypeInfo_var);
NullCheck(L_4);
BitStack__ctor_m9BADB5496087F772604E9F62D3B18C07630EA45A(L_4, NULL);
__this->___mixedContentStack_30 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->___mixedContentStack_30), (void*)L_4);
bool L_5 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___checkCharacters_21;
if (!L_5)
{
goto IL_008b;
}
}
{
bool L_6 = __this->___newLineOnAttributes_27;
if (!L_6)
{
goto IL_005f;
}
}
{
String_t* L_7 = __this->___indentChars_28;
XmlUtf8RawTextWriter_ValidateContentChars_m2D62E5A56C7DB286BB2FB52D93F53737272C62A4(__this, L_7, _stringLiteral3C1E3A88F1DF442673E905BE97863155259D0CB5, (bool)1, NULL);
String_t* L_8 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___newLineChars_20;
XmlUtf8RawTextWriter_ValidateContentChars_m2D62E5A56C7DB286BB2FB52D93F53737272C62A4(__this, L_8, _stringLiteral13DB4394207994E4948B5E3FAE7BA705B9B8E7B3, (bool)1, NULL);
return;
}
IL_005f:
{
String_t* L_9 = __this->___indentChars_28;
XmlUtf8RawTextWriter_ValidateContentChars_m2D62E5A56C7DB286BB2FB52D93F53737272C62A4(__this, L_9, _stringLiteral3C1E3A88F1DF442673E905BE97863155259D0CB5, (bool)0, NULL);
int32_t L_10 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___newLineHandling_17;
if (!L_10)
{
goto IL_008b;
}
}
{
String_t* L_11 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___newLineChars_20;
XmlUtf8RawTextWriter_ValidateContentChars_m2D62E5A56C7DB286BB2FB52D93F53737272C62A4(__this, L_11, _stringLiteral13DB4394207994E4948B5E3FAE7BA705B9B8E7B3, (bool)0, NULL);
}
IL_008b:
{
return;
}
}
// System.Void System.Xml.XmlUtf8RawTextWriterIndent::WriteIndent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUtf8RawTextWriterIndent_WriteIndent_mFE6D30917351AA0FC42FC9D332ED0B17DC86C4E4 (XmlUtf8RawTextWriterIndent_tEA3E110A4E275753FE5CC8F5FF17AA132DC66B41* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
String_t* L_0 = ((XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)__this)->___newLineChars_20;
XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, L_0, NULL);
int32_t L_1 = __this->___indentLevel_26;
V_0 = L_1;
goto IL_0025;
}
IL_0015:
{
String_t* L_2 = __this->___indentChars_28;
XmlUtf8RawTextWriter_RawText_m197BC9FFA1D58F16EEF25C7C133B803E40B7EF80(__this, L_2, NULL);
int32_t L_3 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_3, 1));
}
IL_0025:
{
int32_t L_4 = V_0;
if ((((int32_t)L_4) > ((int32_t)0)))
{
goto IL_0015;
}
}
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Xml.XmlNodeType System.Xml.XmlValidatingReader::get_NodeType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlValidatingReader_get_NodeType_mAF3765B4AC9841518828D5EC161183C4406DCA5C (XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9* __this, const RuntimeMethod* method)
{
{
XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* 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.XmlValidatingReader::get_LocalName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlValidatingReader_get_LocalName_mCBB39E66822EC770A0E3AE7DB453F28DD37CE250 (XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9* __this, const RuntimeMethod* method)
{
{
XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* 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.XmlValidatingReader::get_NamespaceURI()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlValidatingReader_get_NamespaceURI_mCE149ADA9B61980AA7CB3401077EF9075F16CB4E (XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9* __this, const RuntimeMethod* method)
{
{
XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* 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.XmlValidatingReader::get_Prefix()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlValidatingReader_get_Prefix_mE4ABA72D869E05B026E4BFE89F433AD27E6CE174 (XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9* __this, const RuntimeMethod* method)
{
{
XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* 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.XmlValidatingReader::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlValidatingReader_get_Value_m236A951CD11868469BE265FAE2A0B291FB40EA0B (XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9* __this, const RuntimeMethod* method)
{
{
XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* 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.Int32 System.Xml.XmlValidatingReader::get_Depth()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlValidatingReader_get_Depth_mE8BC3EE8EB045E920EDFA0FFBA482B175E068A0D (XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9* __this, const RuntimeMethod* method)
{
{
XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* L_0 = __this->___impl_3;
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* System.Int32 System.Xml.XmlReader::get_Depth() */, L_0);
return L_1;
}
}
// System.String System.Xml.XmlValidatingReader::get_BaseURI()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlValidatingReader_get_BaseURI_m1D32CAC20A880B003FBDFA8E20B771B07EBDB2EE (XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9* __this, const RuntimeMethod* method)
{
{
XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* L_0 = __this->___impl_3;
NullCheck(L_0);
String_t* L_1;
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(13 /* System.String System.Xml.XmlReader::get_BaseURI() */, L_0);
return L_1;
}
}
// System.Boolean System.Xml.XmlValidatingReader::get_IsEmptyElement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlValidatingReader_get_IsEmptyElement_mA8F8DD284E583518A6391038C027E202D091AA7B (XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9* __this, const RuntimeMethod* method)
{
{
XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* L_0 = __this->___impl_3;
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(14 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, L_0);
return L_1;
}
}
// System.Int32 System.Xml.XmlValidatingReader::get_AttributeCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlValidatingReader_get_AttributeCount_m2A0904D49A2D985790CE93CADE7050045EBF8C56 (XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9* __this, const RuntimeMethod* method)
{
{
XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* L_0 = __this->___impl_3;
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(21 /* System.Int32 System.Xml.XmlReader::get_AttributeCount() */, L_0);
return L_1;
}
}
// System.String System.Xml.XmlValidatingReader::GetAttribute(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlValidatingReader_GetAttribute_m5E5A6346601611468C2A3BD9920935A2D4D2AD38 (XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9* __this, String_t* ___name0, const RuntimeMethod* method)
{
{
XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* L_0 = __this->___impl_3;
String_t* L_1 = ___name0;
NullCheck(L_0);
String_t* L_2;
L_2 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(22 /* System.String System.Xml.XmlReader::GetAttribute(System.String) */, L_0, L_1);
return L_2;
}
}
// System.String System.Xml.XmlValidatingReader::GetAttribute(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlValidatingReader_GetAttribute_m93EEF0C5AD32F33CDD0A0500B5DC173B01DFEE75 (XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9* __this, String_t* ___localName0, String_t* ___namespaceURI1, const RuntimeMethod* method)
{
{
XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* L_0 = __this->___impl_3;
String_t* L_1 = ___localName0;
String_t* L_2 = ___namespaceURI1;
NullCheck(L_0);
String_t* L_3;
L_3 = VirtualFuncInvoker2< String_t*, String_t*, String_t* >::Invoke(23 /* System.String System.Xml.XmlReader::GetAttribute(System.String,System.String) */, L_0, L_1, L_2);
return L_3;
}
}
// System.String System.Xml.XmlValidatingReader::GetAttribute(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlValidatingReader_GetAttribute_m795D6E982C39D960B252A0C6E50613B07D00F4B9 (XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9* __this, int32_t ___i0, const RuntimeMethod* method)
{
{
XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* L_0 = __this->___impl_3;
int32_t L_1 = ___i0;
NullCheck(L_0);
String_t* L_2;
L_2 = VirtualFuncInvoker1< String_t*, int32_t >::Invoke(24 /* System.String System.Xml.XmlReader::GetAttribute(System.Int32) */, L_0, L_1);
return L_2;
}
}
// System.Boolean System.Xml.XmlValidatingReader::MoveToAttribute(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlValidatingReader_MoveToAttribute_m6AE87D9AE8C96783EBA26589022F8E24AB74C6D0 (XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9* __this, String_t* ___name0, const RuntimeMethod* method)
{
{
XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* L_0 = __this->___impl_3;
String_t* L_1 = ___name0;
NullCheck(L_0);
bool L_2;
L_2 = VirtualFuncInvoker1< bool, String_t* >::Invoke(25 /* System.Boolean System.Xml.XmlReader::MoveToAttribute(System.String) */, L_0, L_1);
return L_2;
}
}
// System.Boolean System.Xml.XmlValidatingReader::MoveToFirstAttribute()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlValidatingReader_MoveToFirstAttribute_m97251F4825A0129F45E769F7883476D734B0F4FF (XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9* __this, const RuntimeMethod* method)
{
{
XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* L_0 = __this->___impl_3;
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(27 /* System.Boolean System.Xml.XmlReader::MoveToFirstAttribute() */, L_0);
return L_1;
}
}
// System.Boolean System.Xml.XmlValidatingReader::MoveToNextAttribute()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlValidatingReader_MoveToNextAttribute_m3CCC26F43F738C7E388A5DF75679C519385C9AE7 (XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9* __this, const RuntimeMethod* method)
{
{
XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* L_0 = __this->___impl_3;
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(28 /* System.Boolean System.Xml.XmlReader::MoveToNextAttribute() */, L_0);
return L_1;
}
}
// System.Boolean System.Xml.XmlValidatingReader::MoveToElement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlValidatingReader_MoveToElement_m6971E20817A796DE438B9C73254C5700B4129167 (XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9* __this, const RuntimeMethod* method)
{
{
XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* L_0 = __this->___impl_3;
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(29 /* System.Boolean System.Xml.XmlReader::MoveToElement() */, L_0);
return L_1;
}
}
// System.Boolean System.Xml.XmlValidatingReader::ReadAttributeValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlValidatingReader_ReadAttributeValue_mEF840AEDDDF381AA50108FB39683607F51CB99B8 (XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9* __this, const RuntimeMethod* method)
{
{
XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* L_0 = __this->___impl_3;
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(30 /* System.Boolean System.Xml.XmlReader::ReadAttributeValue() */, L_0);
return L_1;
}
}
// System.Boolean System.Xml.XmlValidatingReader::Read()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlValidatingReader_Read_m33E0852D4F75E12D452FE299291273ACD3061AB3 (XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9* __this, const RuntimeMethod* method)
{
{
XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* L_0 = __this->___impl_3;
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, L_0);
return L_1;
}
}
// System.Boolean System.Xml.XmlValidatingReader::get_EOF()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlValidatingReader_get_EOF_m563954E9E5B16FD30F68A0CCB93BD0D8C612778C (XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9* __this, const RuntimeMethod* method)
{
{
XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* L_0 = __this->___impl_3;
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(32 /* System.Boolean System.Xml.XmlReader::get_EOF() */, L_0);
return L_1;
}
}
// System.Xml.ReadState System.Xml.XmlValidatingReader::get_ReadState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlValidatingReader_get_ReadState_m83F7A0A0CBBB7F6730994B4D8B5BD783B62DCF15 (XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9* __this, const RuntimeMethod* method)
{
{
XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* L_0 = __this->___impl_3;
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(34 /* System.Xml.ReadState System.Xml.XmlReader::get_ReadState() */, L_0);
return L_1;
}
}
// System.Xml.XmlNameTable System.Xml.XmlValidatingReader::get_NameTable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* XmlValidatingReader_get_NameTable_m917273B1CE2D8C531FFA16D35CD1509F55180C01 (XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9* __this, const RuntimeMethod* method)
{
{
XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* L_0 = __this->___impl_3;
NullCheck(L_0);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_1;
L_1 = VirtualFuncInvoker0< XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* >::Invoke(36 /* System.Xml.XmlNameTable System.Xml.XmlReader::get_NameTable() */, L_0);
return L_1;
}
}
// System.String System.Xml.XmlValidatingReader::LookupNamespace(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlValidatingReader_LookupNamespace_mD5FCF7E0552FFF68E9A7C87EA6E2A853C08DAC68 (XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9* __this, String_t* ___prefix0, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
{
XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* L_0 = __this->___impl_3;
String_t* L_1 = ___prefix0;
NullCheck(L_0);
String_t* L_2;
L_2 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(37 /* 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.Void System.Xml.XmlValidatingReader::ResolveEntity()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlValidatingReader_ResolveEntity_mDE64E0FBAD47C1529BF75EAFC4DA6520D8ECFD77 (XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9* __this, const RuntimeMethod* method)
{
{
XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* L_0 = __this->___impl_3;
NullCheck(L_0);
VirtualActionInvoker0::Invoke(39 /* System.Void System.Xml.XmlReader::ResolveEntity() */, L_0);
return;
}
}
// System.Boolean System.Xml.XmlValidatingReader::get_Namespaces()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlValidatingReader_get_Namespaces_mE9B13FB33252408970F9376B2FF440E9FB71D50F (XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9* __this, const RuntimeMethod* method)
{
{
XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* L_0 = __this->___impl_3;
NullCheck(L_0);
bool L_1;
L_1 = XmlValidatingReaderImpl_get_Namespaces_m4415C799078697BDACBD0FE115AD65DB6C0031A3(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.Void System.Xml.XmlValidatingReaderImpl::.ctor(System.Xml.XmlReader,System.Xml.Schema.ValidationEventHandler,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlValidatingReaderImpl__ctor_mB46D37CD4504EACF6A6E6AB65A3D0EB8A96CF950 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* ___settingsEventHandler1, bool ___processIdentityConstraints2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidationEventHandling_tE915576B71BADFBAC73B6C8CA5A99C0C5086E4C9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaCollection_t795483FF9909CCC596ADA560E1C1654E66CAEAAD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlValidatingReaderImpl_ValidateDefaultAttributeOnUse_mCBE87491A93DED04B04028C172FF60CA0D47F28B_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* V_0 = NULL;
XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* V_1 = NULL;
{
__this->___parsingFunction_10 = 1;
il2cpp_codegen_runtime_class_init_inline(XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var);
XmlReader__ctor_m4E3A6201CC692B2B2F05ED58652056E893995477(__this, NULL);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = ___reader0;
V_0 = ((XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4*)IsInstClass((RuntimeObject*)L_0, XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4_il2cpp_TypeInfo_var));
XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* L_1 = V_0;
if (!L_1)
{
goto IL_001f;
}
}
{
XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* L_2 = V_0;
NullCheck(L_2);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_3;
L_3 = XmlAsyncCheckReader_get_CoreReader_m7EEC14B20E5C6021736672F4DA2503B14E670A93_inline(L_2, NULL);
___reader0 = L_3;
}
IL_001f:
{
__this->___outerReader_14 = __this;
Il2CppCodeGenWriteBarrier((void**)(&__this->___outerReader_14), (void*)__this);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_4 = ___reader0;
__this->___coreReader_3 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->___coreReader_3), (void*)L_4);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_5 = ___reader0;
__this->___coreReaderImpl_4 = ((XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B*)IsInstClass((RuntimeObject*)L_5, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B_il2cpp_TypeInfo_var));
Il2CppCodeGenWriteBarrier((void**)(&__this->___coreReaderImpl_4), (void*)((XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B*)IsInstClass((RuntimeObject*)L_5, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B_il2cpp_TypeInfo_var)));
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_6 = __this->___coreReaderImpl_4;
if (L_6)
{
goto IL_0057;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_7 = ___reader0;
V_1 = ((XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B*)IsInstClass((RuntimeObject*)L_7, XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var));
XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* L_8 = V_1;
if (!L_8)
{
goto IL_0057;
}
}
{
XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* L_9 = V_1;
NullCheck(L_9);
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_10;
L_10 = XmlTextReader_get_Impl_m99AA88D6B2335764B7B4171CCC9D9C77329D72D8_inline(L_9, NULL);
__this->___coreReaderImpl_4 = L_10;
Il2CppCodeGenWriteBarrier((void**)(&__this->___coreReaderImpl_4), (void*)L_10);
}
IL_0057:
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_11 = __this->___coreReaderImpl_4;
if (L_11)
{
goto IL_0074;
}
}
{
String_t* L_12;
L_12 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6A0B1389EFC77FE507C0DA65C2DD744C4CFBED6C)), 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_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_13, L_12, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralECAC83771A00C701043A940F621CC1C765D30D31)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlValidatingReaderImpl__ctor_mB46D37CD4504EACF6A6E6AB65A3D0EB8A96CF950_RuntimeMethod_var)));
}
IL_0074:
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_14 = __this->___coreReaderImpl_4;
NullCheck(L_14);
XmlTextReaderImpl_set_XmlValidatingReaderCompatibilityMode_mBBE46175DBCCE969AC2B298119581E91A17FA380(L_14, (bool)1, NULL);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_15 = ___reader0;
__this->___coreReaderNSResolver_5 = ((RuntimeObject*)IsInst((RuntimeObject*)L_15, IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var));
Il2CppCodeGenWriteBarrier((void**)(&__this->___coreReaderNSResolver_5), (void*)((RuntimeObject*)IsInst((RuntimeObject*)L_15, IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var)));
bool L_16 = ___processIdentityConstraints2;
__this->___processIdentityConstraints_9 = L_16;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_17 = __this->___coreReader_3;
NullCheck(L_17);
il2cpp_codegen_runtime_class_init_inline(XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_18;
L_18 = VirtualFuncInvoker0< XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* >::Invoke(36 /* System.Xml.XmlNameTable System.Xml.XmlReader::get_NameTable() */, L_17);
XmlSchemaCollection_t795483FF9909CCC596ADA560E1C1654E66CAEAAD* L_19 = (XmlSchemaCollection_t795483FF9909CCC596ADA560E1C1654E66CAEAAD*)il2cpp_codegen_object_new(XmlSchemaCollection_t795483FF9909CCC596ADA560E1C1654E66CAEAAD_il2cpp_TypeInfo_var);
NullCheck(L_19);
XmlSchemaCollection__ctor_m6F80B88EF4F79E892FA72CDFA9B2ECF8226A49C8(L_19, L_18, NULL);
__this->___schemaCollection_8 = L_19;
Il2CppCodeGenWriteBarrier((void**)(&__this->___schemaCollection_8), (void*)L_19);
XmlSchemaCollection_t795483FF9909CCC596ADA560E1C1654E66CAEAAD* L_20 = __this->___schemaCollection_8;
XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_21;
L_21 = XmlValidatingReaderImpl_GetResolver_mFF19947EEC427CAC13D597CF19C3FD8C4CC6C6D1(__this, NULL);
NullCheck(L_20);
XmlSchemaCollection_set_XmlResolver_mCBCC7ABCA885FCDDBEB0255A49B17C8CB8BB0D62_inline(L_20, L_21, NULL);
ValidationEventHandling_tE915576B71BADFBAC73B6C8CA5A99C0C5086E4C9* L_22 = (ValidationEventHandling_tE915576B71BADFBAC73B6C8CA5A99C0C5086E4C9*)il2cpp_codegen_object_new(ValidationEventHandling_tE915576B71BADFBAC73B6C8CA5A99C0C5086E4C9_il2cpp_TypeInfo_var);
NullCheck(L_22);
ValidationEventHandling__ctor_m0DB14ABA2F484D38F4A85BC791A7833E61997DB9(L_22, __this, NULL);
__this->___eventHandling_11 = L_22;
Il2CppCodeGenWriteBarrier((void**)(&__this->___eventHandling_11), (void*)L_22);
ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* L_23 = ___settingsEventHandler1;
if (!L_23)
{
goto IL_00d5;
}
}
{
ValidationEventHandling_tE915576B71BADFBAC73B6C8CA5A99C0C5086E4C9* L_24 = __this->___eventHandling_11;
ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* L_25 = ___settingsEventHandler1;
NullCheck(L_24);
ValidationEventHandling_AddHandler_mD972A68DCBA2204B5EABDC54EEFF2F2479A68389(L_24, L_25, NULL);
}
IL_00d5:
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_26 = __this->___coreReaderImpl_4;
ValidationEventHandling_tE915576B71BADFBAC73B6C8CA5A99C0C5086E4C9* L_27 = __this->___eventHandling_11;
NullCheck(L_26);
XmlTextReaderImpl_set_ValidationEventHandling_mF8A66D6BE2B822997F486F4931B151B667863E59_inline(L_26, L_27, NULL);
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_28 = __this->___coreReaderImpl_4;
OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499* L_29 = (OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499*)il2cpp_codegen_object_new(OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499_il2cpp_TypeInfo_var);
NullCheck(L_29);
OnDefaultAttributeUseDelegate__ctor_m3276CA00C5467BC764348C5121B7E2106122CAA7(L_29, __this, (intptr_t)((void*)XmlValidatingReaderImpl_ValidateDefaultAttributeOnUse_mCBE87491A93DED04B04028C172FF60CA0D47F28B_RuntimeMethod_var), NULL);
NullCheck(L_28);
XmlTextReaderImpl_set_OnDefaultAttributeUse_m519352D6E61D34534B6790ECB3180B4B050B92FB_inline(L_28, L_29, NULL);
__this->___validationType_6 = 2;
XmlValidatingReaderImpl_SetupValidation_mAFA0AB6EE784D66A5DC3CE049E5EAF720F11A655(__this, 2, NULL);
return;
}
}
// System.Xml.XmlReaderSettings System.Xml.XmlValidatingReaderImpl::get_Settings()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* XmlValidatingReaderImpl_get_Settings_mF7E966ED5397F3AB14179C09C2EF833229FB5F8A (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* V_0 = NULL;
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___coreReaderImpl_4;
NullCheck(L_0);
bool L_1;
L_1 = XmlTextReaderImpl_get_V1Compat_m27698868D378A1241DCAA4E22251E930806781C7_inline(L_0, NULL);
if (!L_1)
{
goto IL_0011;
}
}
{
V_0 = (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA*)NULL;
goto IL_001d;
}
IL_0011:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_2 = __this->___coreReader_3;
NullCheck(L_2);
XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_3;
L_3 = VirtualFuncInvoker0< XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* >::Invoke(5 /* System.Xml.XmlReaderSettings System.Xml.XmlReader::get_Settings() */, L_2);
V_0 = L_3;
}
IL_001d:
{
XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_4 = V_0;
if (!L_4)
{
goto IL_0029;
}
}
{
XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_5 = V_0;
NullCheck(L_5);
XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_6;
L_6 = XmlReaderSettings_Clone_m6581889814EA9982ABCE97535D76722F81972101(L_5, NULL);
V_0 = L_6;
goto IL_002f;
}
IL_0029:
{
XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_7 = (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA*)il2cpp_codegen_object_new(XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_il2cpp_TypeInfo_var);
NullCheck(L_7);
XmlReaderSettings__ctor_m1BAF1E969D42F7C5D453B381FA763F333C715364(L_7, NULL);
V_0 = L_7;
}
IL_002f:
{
XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_8 = V_0;
NullCheck(L_8);
XmlReaderSettings_set_ValidationType_m651D049117DA5C80F75BEB925AB0E1FE40E25620(L_8, 2, NULL);
bool L_9 = __this->___processIdentityConstraints_9;
if (L_9)
{
goto IL_004d;
}
}
{
XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_10 = V_0;
XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_11 = L_10;
NullCheck(L_11);
int32_t L_12;
L_12 = XmlReaderSettings_get_ValidationFlags_m22A3C5CFDC1CBF2EF8B5975A581B00EDF4D8E876_inline(L_11, NULL);
NullCheck(L_11);
XmlReaderSettings_set_ValidationFlags_m846A17F2EB68AF5C850CDE3CA8218B2D6A400A02(L_11, ((int32_t)((int32_t)L_12&((int32_t)-9))), NULL);
}
IL_004d:
{
XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_13 = V_0;
NullCheck(L_13);
XmlReaderSettings_set_ReadOnly_mE9D803936E0E2E8A22464C57D96C71AB35D1A6CB_inline(L_13, (bool)1, NULL);
XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_14 = V_0;
return L_14;
}
}
// System.Xml.XmlNodeType System.Xml.XmlValidatingReaderImpl::get_NodeType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlValidatingReaderImpl_get_NodeType_m2B30205F925A318CAE31489B0D7F355633104332 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_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.XmlValidatingReaderImpl::get_Name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlValidatingReaderImpl_get_Name_mD7C2A88F82A39A3B9E24FC94F4E0EEB363A39BFD (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_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.XmlValidatingReaderImpl::get_LocalName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlValidatingReaderImpl_get_LocalName_m356B988EE825C9B3AD4E016AD7EB52ACBE0B4518 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_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.XmlValidatingReaderImpl::get_NamespaceURI()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlValidatingReaderImpl_get_NamespaceURI_m7BA98AD74FDEEAE5CB17F79AE8A6430782E2CE77 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_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.XmlValidatingReaderImpl::get_Prefix()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlValidatingReaderImpl_get_Prefix_mB674A1A64FBD1A0BFDC9B7FE6ECA60B799FDFAA3 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_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.XmlValidatingReaderImpl::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlValidatingReaderImpl_get_Value_mDF6D93AA62F430267D86FD71E870238B01AD6923 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_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.Int32 System.Xml.XmlValidatingReaderImpl::get_Depth()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlValidatingReaderImpl_get_Depth_m42BF7B6FC2E0436AA0D7D8483E3212664160FF14 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3;
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* System.Int32 System.Xml.XmlReader::get_Depth() */, L_0);
return L_1;
}
}
// System.String System.Xml.XmlValidatingReaderImpl::get_BaseURI()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlValidatingReaderImpl_get_BaseURI_mAF00DF67C7A11AFCCAB49543D43C9A90BD9833EB (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3;
NullCheck(L_0);
String_t* L_1;
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(13 /* System.String System.Xml.XmlReader::get_BaseURI() */, L_0);
return L_1;
}
}
// System.Boolean System.Xml.XmlValidatingReaderImpl::get_IsEmptyElement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlValidatingReaderImpl_get_IsEmptyElement_m48A924C02F84842F68B13A743B56DF8DFD72A866 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3;
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(14 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, L_0);
return L_1;
}
}
// System.Boolean System.Xml.XmlValidatingReaderImpl::get_IsDefault()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlValidatingReaderImpl_get_IsDefault_mF368FFE9714288BDC49073DC51B435EF243EE334 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3;
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(15 /* System.Boolean System.Xml.XmlReader::get_IsDefault() */, L_0);
return L_1;
}
}
// System.Char System.Xml.XmlValidatingReaderImpl::get_QuoteChar()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar XmlValidatingReaderImpl_get_QuoteChar_mBA4A9DBA7992623495D6DBEE1E29BBC3BC7BEA22 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3;
NullCheck(L_0);
Il2CppChar L_1;
L_1 = VirtualFuncInvoker0< Il2CppChar >::Invoke(16 /* System.Char System.Xml.XmlReader::get_QuoteChar() */, L_0);
return L_1;
}
}
// System.Xml.XmlSpace System.Xml.XmlValidatingReaderImpl::get_XmlSpace()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlValidatingReaderImpl_get_XmlSpace_mA725A4628BC998A91F1D679B7FDF14B6EF6DCD19 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3;
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(17 /* System.Xml.XmlSpace System.Xml.XmlReader::get_XmlSpace() */, L_0);
return L_1;
}
}
// System.String System.Xml.XmlValidatingReaderImpl::get_XmlLang()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlValidatingReaderImpl_get_XmlLang_m886BCE6B3F1818576BF6F02608550777FDDD706A (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3;
NullCheck(L_0);
String_t* L_1;
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.XmlReader::get_XmlLang() */, L_0);
return L_1;
}
}
// System.Xml.ReadState System.Xml.XmlValidatingReaderImpl::get_ReadState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlValidatingReaderImpl_get_ReadState_m3B1FE06B2F017E320D375035EABDB82CC5C1ECFC (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___parsingFunction_10;
if ((((int32_t)L_0) == ((int32_t)1)))
{
goto IL_0015;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1 = __this->___coreReader_3;
NullCheck(L_1);
int32_t L_2;
L_2 = VirtualFuncInvoker0< int32_t >::Invoke(34 /* System.Xml.ReadState System.Xml.XmlReader::get_ReadState() */, L_1);
return L_2;
}
IL_0015:
{
return (int32_t)(0);
}
}
// System.Boolean System.Xml.XmlValidatingReaderImpl::get_EOF()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlValidatingReaderImpl_get_EOF_m1A4CAC711F60714518F3E45CB3C1A9F723A7CB13 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3;
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(32 /* System.Boolean System.Xml.XmlReader::get_EOF() */, L_0);
return L_1;
}
}
// System.Xml.XmlNameTable System.Xml.XmlValidatingReaderImpl::get_NameTable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* XmlValidatingReaderImpl_get_NameTable_m1C5CAA6A2AFF3538AAB71CBF38294D13B5F9CAD2 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3;
NullCheck(L_0);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_1;
L_1 = VirtualFuncInvoker0< XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* >::Invoke(36 /* System.Xml.XmlNameTable System.Xml.XmlReader::get_NameTable() */, L_0);
return L_1;
}
}
// System.Int32 System.Xml.XmlValidatingReaderImpl::get_AttributeCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlValidatingReaderImpl_get_AttributeCount_m777CC80F493B826A1FB025CB210DF051C841B22D (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3;
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(21 /* System.Int32 System.Xml.XmlReader::get_AttributeCount() */, L_0);
return L_1;
}
}
// System.String System.Xml.XmlValidatingReaderImpl::GetAttribute(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlValidatingReaderImpl_GetAttribute_m7E837ED54D86D3A8A52CCC750DAB2B2621BE38FB (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, String_t* ___name0, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3;
String_t* L_1 = ___name0;
NullCheck(L_0);
String_t* L_2;
L_2 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(22 /* System.String System.Xml.XmlReader::GetAttribute(System.String) */, L_0, L_1);
return L_2;
}
}
// System.String System.Xml.XmlValidatingReaderImpl::GetAttribute(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlValidatingReaderImpl_GetAttribute_m4E2324A66CFCF7861A70335A674326966F0CBC61 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, String_t* ___localName0, String_t* ___namespaceURI1, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3;
String_t* L_1 = ___localName0;
String_t* L_2 = ___namespaceURI1;
NullCheck(L_0);
String_t* L_3;
L_3 = VirtualFuncInvoker2< String_t*, String_t*, String_t* >::Invoke(23 /* System.String System.Xml.XmlReader::GetAttribute(System.String,System.String) */, L_0, L_1, L_2);
return L_3;
}
}
// System.String System.Xml.XmlValidatingReaderImpl::GetAttribute(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlValidatingReaderImpl_GetAttribute_m2CCA57CED11CFF0697CD45CABDDBC4B2BA385CF1 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, int32_t ___i0, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3;
int32_t L_1 = ___i0;
NullCheck(L_0);
String_t* L_2;
L_2 = VirtualFuncInvoker1< String_t*, int32_t >::Invoke(24 /* System.String System.Xml.XmlReader::GetAttribute(System.Int32) */, L_0, L_1);
return L_2;
}
}
// System.Boolean System.Xml.XmlValidatingReaderImpl::MoveToAttribute(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlValidatingReaderImpl_MoveToAttribute_mEC80C2C336E4485DCE8E716F89D1E01A62832346 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, String_t* ___name0, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3;
String_t* L_1 = ___name0;
NullCheck(L_0);
bool L_2;
L_2 = VirtualFuncInvoker1< bool, String_t* >::Invoke(25 /* System.Boolean System.Xml.XmlReader::MoveToAttribute(System.String) */, L_0, L_1);
if (L_2)
{
goto IL_0010;
}
}
{
return (bool)0;
}
IL_0010:
{
__this->___parsingFunction_10 = 0;
return (bool)1;
}
}
// System.Void System.Xml.XmlValidatingReaderImpl::MoveToAttribute(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlValidatingReaderImpl_MoveToAttribute_m112D7F9A0FB7712288CDB3D7B54F893BE1E84416 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, int32_t ___i0, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3;
int32_t L_1 = ___i0;
NullCheck(L_0);
VirtualActionInvoker1< int32_t >::Invoke(26 /* System.Void System.Xml.XmlReader::MoveToAttribute(System.Int32) */, L_0, L_1);
__this->___parsingFunction_10 = 0;
return;
}
}
// System.Boolean System.Xml.XmlValidatingReaderImpl::MoveToFirstAttribute()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlValidatingReaderImpl_MoveToFirstAttribute_m0BDBB5C885D108A569335A20C8ACA2DB085BAD27 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3;
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(27 /* System.Boolean System.Xml.XmlReader::MoveToFirstAttribute() */, L_0);
if (L_1)
{
goto IL_000f;
}
}
{
return (bool)0;
}
IL_000f:
{
__this->___parsingFunction_10 = 0;
return (bool)1;
}
}
// System.Boolean System.Xml.XmlValidatingReaderImpl::MoveToNextAttribute()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlValidatingReaderImpl_MoveToNextAttribute_m70162E77E3EAC8AD18E85C8D2FC2899A9AA83984 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3;
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(28 /* System.Boolean System.Xml.XmlReader::MoveToNextAttribute() */, L_0);
if (L_1)
{
goto IL_000f;
}
}
{
return (bool)0;
}
IL_000f:
{
__this->___parsingFunction_10 = 0;
return (bool)1;
}
}
// System.Boolean System.Xml.XmlValidatingReaderImpl::MoveToElement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlValidatingReaderImpl_MoveToElement_m53431E31095A9FBC6C45E2F65A44B46D0B027276 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3;
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(29 /* System.Boolean System.Xml.XmlReader::MoveToElement() */, L_0);
if (L_1)
{
goto IL_000f;
}
}
{
return (bool)0;
}
IL_000f:
{
__this->___parsingFunction_10 = 0;
return (bool)1;
}
}
// System.Boolean System.Xml.XmlValidatingReaderImpl::Read()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlValidatingReaderImpl_Read_m230845DEF5EB5F2D08F57E390F618D936F3AA2BA (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->___parsingFunction_10;
V_0 = L_0;
int32_t L_1 = V_0;
switch (L_1)
{
case 0:
{
goto IL_002b;
}
case 1:
{
goto IL_005e;
}
case 2:
{
goto IL_004d;
}
case 3:
{
goto IL_007b;
}
case 4:
{
goto IL_008a;
}
case 5:
{
goto IL_005c;
}
case 6:
{
goto IL_005c;
}
}
}
{
goto IL_009e;
}
IL_002b:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_2 = __this->___coreReader_3;
NullCheck(L_2);
bool L_3;
L_3 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, L_2);
if (!L_3)
{
goto IL_0040;
}
}
{
XmlValidatingReaderImpl_ProcessCoreReaderEvent_mEA281802CAC44E6E8D5E9BF3CFA3AAA11B93151A(__this, NULL);
return (bool)1;
}
IL_0040:
{
BaseValidator_t76E42AEBD013AC709BA36D782908C7B708BA8DAB* L_4 = __this->___validator_7;
NullCheck(L_4);
VirtualActionInvoker0::Invoke(6 /* System.Void System.Xml.Schema.BaseValidator::CompleteValidation() */, L_4);
return (bool)0;
}
IL_004d:
{
__this->___parsingFunction_10 = 0;
XmlValidatingReaderImpl_ParseDtdFromParserContext_mD0948FC472BB3854DFC0A957393E188A06322560(__this, NULL);
goto IL_002b;
}
IL_005c:
{
return (bool)0;
}
IL_005e:
{
__this->___parsingFunction_10 = 0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_5 = __this->___coreReader_3;
NullCheck(L_5);
int32_t L_6;
L_6 = VirtualFuncInvoker0< int32_t >::Invoke(34 /* System.Xml.ReadState System.Xml.XmlReader::get_ReadState() */, L_5);
if ((!(((uint32_t)L_6) == ((uint32_t)1))))
{
goto IL_002b;
}
}
{
XmlValidatingReaderImpl_ProcessCoreReaderEvent_mEA281802CAC44E6E8D5E9BF3CFA3AAA11B93151A(__this, NULL);
return (bool)1;
}
IL_007b:
{
__this->___parsingFunction_10 = 0;
XmlValidatingReaderImpl_ResolveEntityInternally_mD0775B105AF53B906BCABA036AD93EB58D7CF74A(__this, NULL);
goto IL_002b;
}
IL_008a:
{
__this->___parsingFunction_10 = 0;
ReadContentAsBinaryHelper_t94D48E6891DEAC8DFE5DEA1B820091D277880897* L_7 = __this->___readBinaryHelper_13;
NullCheck(L_7);
ReadContentAsBinaryHelper_Finish_m56919E9B4A660955115D1C0680C0FF772DC649F9(L_7, NULL);
goto IL_002b;
}
IL_009e:
{
return (bool)0;
}
}
// System.Void System.Xml.XmlValidatingReaderImpl::Close()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlValidatingReaderImpl_Close_m11A95230FA4B80A980053D75F3E42C97BEA6B88D (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3;
NullCheck(L_0);
VirtualActionInvoker0::Invoke(33 /* System.Void System.Xml.XmlReader::Close() */, L_0);
__this->___parsingFunction_10 = 5;
return;
}
}
// System.String System.Xml.XmlValidatingReaderImpl::LookupNamespace(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlValidatingReaderImpl_LookupNamespace_m83374D6884E6D556EE9163A0E4C6F45534DF9FD9 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, String_t* ___prefix0, const RuntimeMethod* method)
{
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___coreReaderImpl_4;
String_t* L_1 = ___prefix0;
NullCheck(L_0);
String_t* L_2;
L_2 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(37 /* System.String System.Xml.XmlReader::LookupNamespace(System.String) */, L_0, L_1);
return L_2;
}
}
// System.Boolean System.Xml.XmlValidatingReaderImpl::ReadAttributeValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlValidatingReaderImpl_ReadAttributeValue_m5A2FA6B77DF3D313F6CD9E57B3E549439FE75F6B (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___parsingFunction_10;
if ((!(((uint32_t)L_0) == ((uint32_t)4))))
{
goto IL_001b;
}
}
{
__this->___parsingFunction_10 = 0;
ReadContentAsBinaryHelper_t94D48E6891DEAC8DFE5DEA1B820091D277880897* L_1 = __this->___readBinaryHelper_13;
NullCheck(L_1);
ReadContentAsBinaryHelper_Finish_m56919E9B4A660955115D1C0680C0FF772DC649F9(L_1, NULL);
}
IL_001b:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_2 = __this->___coreReader_3;
NullCheck(L_2);
bool L_3;
L_3 = VirtualFuncInvoker0< bool >::Invoke(30 /* System.Boolean System.Xml.XmlReader::ReadAttributeValue() */, L_2);
if (L_3)
{
goto IL_002a;
}
}
{
return (bool)0;
}
IL_002a:
{
__this->___parsingFunction_10 = 0;
return (bool)1;
}
}
// System.Boolean System.Xml.XmlValidatingReaderImpl::get_CanResolveEntity()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlValidatingReaderImpl_get_CanResolveEntity_m5E001039C0A218BAC3027EF1A58111D4C6E667EC (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Void System.Xml.XmlValidatingReaderImpl::ResolveEntity()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlValidatingReaderImpl_ResolveEntity_m7801A4E5C3E07FBB602822E0041C945EAE39AA1F (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___parsingFunction_10;
if ((!(((uint32_t)L_0) == ((uint32_t)3))))
{
goto IL_0010;
}
}
{
__this->___parsingFunction_10 = 0;
}
IL_0010:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1 = __this->___coreReader_3;
NullCheck(L_1);
VirtualActionInvoker0::Invoke(39 /* System.Void System.Xml.XmlReader::ResolveEntity() */, L_1);
return;
}
}
// System.Void System.Xml.XmlValidatingReaderImpl::MoveOffEntityReference()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlValidatingReaderImpl_MoveOffEntityReference_m7A96CFBEAE562C0E1CDBA013353183E2E71E442F (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___outerReader_14;
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_0);
if ((!(((uint32_t)L_1) == ((uint32_t)5))))
{
goto IL_0034;
}
}
{
int32_t L_2 = __this->___parsingFunction_10;
if ((((int32_t)L_2) == ((int32_t)3)))
{
goto IL_0034;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_3 = __this->___outerReader_14;
NullCheck(L_3);
bool L_4;
L_4 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, L_3);
if (L_4)
{
goto IL_0034;
}
}
{
String_t* L_5;
L_5 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFBD1A9745DCC4D80697D44756437CCB57698AE21)), NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_6 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_6);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_6, L_5, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlValidatingReaderImpl_MoveOffEntityReference_m7A96CFBEAE562C0E1CDBA013353183E2E71E442F_RuntimeMethod_var)));
}
IL_0034:
{
return;
}
}
// System.String System.Xml.XmlValidatingReaderImpl::ReadString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlValidatingReaderImpl_ReadString_m0169644280D600628D501C227BCB9E12987A0FBB (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
{
XmlValidatingReaderImpl_MoveOffEntityReference_m7A96CFBEAE562C0E1CDBA013353183E2E71E442F(__this, NULL);
String_t* L_0;
L_0 = XmlReader_ReadString_m8647B3401F5E5C93EF9F8F67AEC33422378E17EE(__this, NULL);
return L_0;
}
}
// System.Boolean System.Xml.XmlValidatingReaderImpl::HasLineInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlValidatingReaderImpl_HasLineInfo_mAB8A24FA1090BD56D2961B0684FD8C6A9741CC32 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Int32 System.Xml.XmlValidatingReaderImpl::get_LineNumber()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlValidatingReaderImpl_get_LineNumber_m0818403D0516C16147609ED0AFE824E11E29C007 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlLineInfo_tDD8332CE7D244FDA50A6C5744D7EAEC4A6CCBF05_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3;
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_0, IXmlLineInfo_tDD8332CE7D244FDA50A6C5744D7EAEC4A6CCBF05_il2cpp_TypeInfo_var)));
int32_t L_1;
L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Xml.IXmlLineInfo::get_LineNumber() */, IXmlLineInfo_tDD8332CE7D244FDA50A6C5744D7EAEC4A6CCBF05_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_0, IXmlLineInfo_tDD8332CE7D244FDA50A6C5744D7EAEC4A6CCBF05_il2cpp_TypeInfo_var)));
return L_1;
}
}
// System.Int32 System.Xml.XmlValidatingReaderImpl::get_LinePosition()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlValidatingReaderImpl_get_LinePosition_m6D781AB80BD2B2CDF083C384CD8A9A622BF76782 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlLineInfo_tDD8332CE7D244FDA50A6C5744D7EAEC4A6CCBF05_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3;
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_0, IXmlLineInfo_tDD8332CE7D244FDA50A6C5744D7EAEC4A6CCBF05_il2cpp_TypeInfo_var)));
int32_t L_1;
L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Xml.IXmlLineInfo::get_LinePosition() */, IXmlLineInfo_tDD8332CE7D244FDA50A6C5744D7EAEC4A6CCBF05_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_0, IXmlLineInfo_tDD8332CE7D244FDA50A6C5744D7EAEC4A6CCBF05_il2cpp_TypeInfo_var)));
return L_1;
}
}
// System.Collections.Generic.IDictionary`2<System.String,System.String> System.Xml.XmlValidatingReaderImpl::System.Xml.IXmlNamespaceResolver.GetNamespacesInScope(System.Xml.XmlNamespaceScope)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlValidatingReaderImpl_System_Xml_IXmlNamespaceResolver_GetNamespacesInScope_mA11E51A2365712FB0824E5BE7AC35B5753ACC0D9 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, int32_t ___scope0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___scope0;
RuntimeObject* L_1;
L_1 = XmlValidatingReaderImpl_GetNamespacesInScope_mB044F7CBE6BA7C78EEE3828DCC7F1124C4F48FEE(__this, L_0, NULL);
return L_1;
}
}
// System.String System.Xml.XmlValidatingReaderImpl::System.Xml.IXmlNamespaceResolver.LookupNamespace(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlValidatingReaderImpl_System_Xml_IXmlNamespaceResolver_LookupNamespace_m1DAD72082D214301E66DCB6650E00A6A17D6EA19 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, String_t* ___prefix0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___prefix0;
String_t* L_1;
L_1 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(37 /* System.String System.Xml.XmlReader::LookupNamespace(System.String) */, __this, L_0);
return L_1;
}
}
// System.String System.Xml.XmlValidatingReaderImpl::System.Xml.IXmlNamespaceResolver.LookupPrefix(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlValidatingReaderImpl_System_Xml_IXmlNamespaceResolver_LookupPrefix_m8FB89F64EAFDC0719EEE95F6B18EBC1D458A03BC (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, String_t* ___namespaceName0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___namespaceName0;
String_t* L_1;
L_1 = XmlValidatingReaderImpl_LookupPrefix_m156EDA380A9AFD40A807A081D268B551162CDD2D(__this, L_0, NULL);
return L_1;
}
}
// System.Collections.Generic.IDictionary`2<System.String,System.String> System.Xml.XmlValidatingReaderImpl::GetNamespacesInScope(System.Xml.XmlNamespaceScope)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlValidatingReaderImpl_GetNamespacesInScope_mB044F7CBE6BA7C78EEE3828DCC7F1124C4F48FEE (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, int32_t ___scope0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = __this->___coreReaderNSResolver_5;
int32_t L_1 = ___scope0;
NullCheck(L_0);
RuntimeObject* L_2;
L_2 = InterfaceFuncInvoker1< RuntimeObject*, int32_t >::Invoke(0 /* System.Collections.Generic.IDictionary`2<System.String,System.String> System.Xml.IXmlNamespaceResolver::GetNamespacesInScope(System.Xml.XmlNamespaceScope) */, IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var, L_0, L_1);
return L_2;
}
}
// System.String System.Xml.XmlValidatingReaderImpl::LookupPrefix(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlValidatingReaderImpl_LookupPrefix_m156EDA380A9AFD40A807A081D268B551162CDD2D (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, String_t* ___namespaceName0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = __this->___coreReaderNSResolver_5;
String_t* L_1 = ___namespaceName0;
NullCheck(L_0);
String_t* L_2;
L_2 = InterfaceFuncInvoker1< String_t*, String_t* >::Invoke(2 /* System.String System.Xml.IXmlNamespaceResolver::LookupPrefix(System.String) */, IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var, L_0, L_1);
return L_2;
}
}
// System.Xml.ValidationType System.Xml.XmlValidatingReaderImpl::get_ValidationType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlValidatingReaderImpl_get_ValidationType_m3F56E6463F6CA002AD75157D14E897A2F5230988 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___validationType_6;
return L_0;
}
}
// System.Xml.Schema.XmlSchemaCollection System.Xml.XmlValidatingReaderImpl::get_Schemas()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSchemaCollection_t795483FF9909CCC596ADA560E1C1654E66CAEAAD* XmlValidatingReaderImpl_get_Schemas_m09AA0952FA965FBB205AE3DA5766D8DC0CD24ED0 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
{
XmlSchemaCollection_t795483FF9909CCC596ADA560E1C1654E66CAEAAD* L_0 = __this->___schemaCollection_8;
return L_0;
}
}
// System.Boolean System.Xml.XmlValidatingReaderImpl::get_Namespaces()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlValidatingReaderImpl_get_Namespaces_m4415C799078697BDACBD0FE115AD65DB6C0031A3 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___coreReaderImpl_4;
NullCheck(L_0);
bool L_1;
L_1 = XmlTextReaderImpl_get_Namespaces_mCFAB7C99825041BA3C8ABD1752DF24D1F62B7122_inline(L_0, NULL);
return L_1;
}
}
// System.Void System.Xml.XmlValidatingReaderImpl::ParseDtdFromParserContext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlValidatingReaderImpl_ParseDtdFromParserContext_mD0948FC472BB3854DFC0A957393E188A06322560 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, 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);
s_Il2CppMethodInitialized = true;
}
DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* V_0 = NULL;
RuntimeObject* V_1 = NULL;
{
XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_0 = __this->___parserContext_12;
NullCheck(L_0);
String_t* L_1;
L_1 = XmlParserContext_get_DocTypeName_m8212FEC6DBA21A5B1E95538D40951B1CB0380CF0_inline(L_0, NULL);
if (!L_1)
{
goto IL_001f;
}
}
{
XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_2 = __this->___parserContext_12;
NullCheck(L_2);
String_t* L_3;
L_3 = XmlParserContext_get_DocTypeName_m8212FEC6DBA21A5B1E95538D40951B1CB0380CF0_inline(L_2, NULL);
NullCheck(L_3);
int32_t L_4;
L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL);
if (L_4)
{
goto IL_0020;
}
}
IL_001f:
{
return;
}
IL_0020:
{
RuntimeObject* L_5;
L_5 = DtdParser_Create_mEAB3483CB293C48815D7ED94E0EE32B2A175731B(NULL);
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_6 = __this->___coreReaderImpl_4;
DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* L_7 = (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3*)il2cpp_codegen_object_new(DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3_il2cpp_TypeInfo_var);
NullCheck(L_7);
DtdParserProxy__ctor_m442621DC14ECF6CAB169962B3CAAF479A5F18D90(L_7, L_6, NULL);
V_0 = L_7;
XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_8 = __this->___parserContext_12;
NullCheck(L_8);
String_t* L_9;
L_9 = XmlParserContext_get_BaseURI_m203B1A13A7DFA09528C49D2198E7B9382BA91892_inline(L_8, NULL);
XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_10 = __this->___parserContext_12;
NullCheck(L_10);
String_t* L_11;
L_11 = XmlParserContext_get_DocTypeName_m8212FEC6DBA21A5B1E95538D40951B1CB0380CF0_inline(L_10, NULL);
XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_12 = __this->___parserContext_12;
NullCheck(L_12);
String_t* L_13;
L_13 = XmlParserContext_get_PublicId_mCE67EDDC8A9D73A0AADB77E0F7CCF53DEB5E300D_inline(L_12, NULL);
XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_14 = __this->___parserContext_12;
NullCheck(L_14);
String_t* L_15;
L_15 = XmlParserContext_get_SystemId_mB4649C8C6DA52AFC5224E82BBD2B7C7A1D5CCB58_inline(L_14, NULL);
XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_16 = __this->___parserContext_12;
NullCheck(L_16);
String_t* L_17;
L_17 = XmlParserContext_get_InternalSubset_mDD9703E47510C335AD4940AE7F761F56AA00E9DC_inline(L_16, NULL);
DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* L_18 = V_0;
NullCheck(L_5);
RuntimeObject* L_19;
L_19 = 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_5, L_9, L_11, L_13, L_15, L_17, L_18);
V_1 = L_19;
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_20 = __this->___coreReaderImpl_4;
RuntimeObject* L_21 = V_1;
NullCheck(L_20);
XmlTextReaderImpl_SetDtdInfo_m8F11C3245888FFB1600893DBAD0135432EE06110(L_20, L_21, NULL);
XmlValidatingReaderImpl_ValidateDtd_m6CA931FBC3420A98A5897737D99761A6C92CE35D(__this, NULL);
return;
}
}
// System.Void System.Xml.XmlValidatingReaderImpl::ValidateDtd()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlValidatingReaderImpl_ValidateDtd_m6CA931FBC3420A98A5897737D99761A6C92CE35D (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
int32_t V_1 = 0;
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___coreReaderImpl_4;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(52 /* System.Xml.IDtdInfo System.Xml.XmlReader::get_DtdInfo() */, L_0);
V_0 = L_1;
RuntimeObject* L_2 = V_0;
if (!L_2)
{
goto IL_003c;
}
}
{
int32_t L_3 = __this->___validationType_6;
V_1 = L_3;
int32_t L_4 = V_1;
switch (L_4)
{
case 0:
{
goto IL_0030;
}
case 1:
{
goto IL_0029;
}
case 2:
{
goto IL_0030;
}
}
}
{
return;
}
IL_0029:
{
XmlValidatingReaderImpl_SetupValidation_mAFA0AB6EE784D66A5DC3CE049E5EAF720F11A655(__this, 2, NULL);
}
IL_0030:
{
BaseValidator_t76E42AEBD013AC709BA36D782908C7B708BA8DAB* L_5 = __this->___validator_7;
RuntimeObject* L_6 = V_0;
NullCheck(L_5);
BaseValidator_set_DtdInfo_m03794576278D86E171908C4CB4D4644B0DEE1D74(L_5, L_6, NULL);
}
IL_003c:
{
return;
}
}
// System.Void System.Xml.XmlValidatingReaderImpl::ResolveEntityInternally()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlValidatingReaderImpl_ResolveEntityInternally_mD0775B105AF53B906BCABA036AD93EB58D7CF74A (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3;
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* System.Int32 System.Xml.XmlReader::get_Depth() */, L_0);
V_0 = L_1;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_2 = __this->___outerReader_14;
NullCheck(L_2);
VirtualActionInvoker0::Invoke(39 /* System.Void System.Xml.XmlReader::ResolveEntity() */, L_2);
}
IL_0017:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_3 = __this->___outerReader_14;
NullCheck(L_3);
bool L_4;
L_4 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, L_3);
if (!L_4)
{
goto IL_0032;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_5 = __this->___coreReader_3;
NullCheck(L_5);
int32_t L_6;
L_6 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* System.Int32 System.Xml.XmlReader::get_Depth() */, L_5);
int32_t L_7 = V_0;
if ((((int32_t)L_6) > ((int32_t)L_7)))
{
goto IL_0017;
}
}
IL_0032:
{
return;
}
}
// System.Void System.Xml.XmlValidatingReaderImpl::SetupValidation(System.Xml.ValidationType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlValidatingReaderImpl_SetupValidation_mAFA0AB6EE784D66A5DC3CE049E5EAF720F11A655 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, int32_t ___valType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* V_0 = NULL;
BaseValidator_t76E42AEBD013AC709BA36D782908C7B708BA8DAB* G_B3_0 = NULL;
BaseValidator_t76E42AEBD013AC709BA36D782908C7B708BA8DAB* G_B2_0 = NULL;
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* G_B4_0 = NULL;
BaseValidator_t76E42AEBD013AC709BA36D782908C7B708BA8DAB* G_B4_1 = NULL;
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B7_0 = NULL;
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B6_0 = NULL;
ValidationEventHandling_tE915576B71BADFBAC73B6C8CA5A99C0C5086E4C9* G_B8_0 = NULL;
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* G_B8_1 = NULL;
{
int32_t L_0 = ___valType0;
XmlSchemaCollection_t795483FF9909CCC596ADA560E1C1654E66CAEAAD* L_1 = __this->___schemaCollection_8;
ValidationEventHandling_tE915576B71BADFBAC73B6C8CA5A99C0C5086E4C9* L_2 = __this->___eventHandling_11;
bool L_3 = __this->___processIdentityConstraints_9;
BaseValidator_t76E42AEBD013AC709BA36D782908C7B708BA8DAB* L_4;
L_4 = BaseValidator_CreateInstance_mE981B767E5103869A3BAA93AB7190F05522582FD(L_0, __this, L_1, L_2, L_3, NULL);
__this->___validator_7 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->___validator_7), (void*)L_4);
XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_5;
L_5 = XmlValidatingReaderImpl_GetResolver_mFF19947EEC427CAC13D597CF19C3FD8C4CC6C6D1(__this, NULL);
V_0 = L_5;
BaseValidator_t76E42AEBD013AC709BA36D782908C7B708BA8DAB* L_6 = __this->___validator_7;
XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_7 = V_0;
NullCheck(L_6);
BaseValidator_set_XmlResolver_m1D94109BE43E3C8A1738BC7C4A0A1A7233818FBF_inline(L_6, L_7, NULL);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_8 = __this->___outerReader_14;
NullCheck(L_8);
String_t* L_9;
L_9 = VirtualFuncInvoker0< String_t* >::Invoke(13 /* System.String System.Xml.XmlReader::get_BaseURI() */, L_8);
NullCheck(L_9);
int32_t L_10;
L_10 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_9, NULL);
if ((((int32_t)L_10) <= ((int32_t)0)))
{
goto IL_0078;
}
}
{
BaseValidator_t76E42AEBD013AC709BA36D782908C7B708BA8DAB* L_11 = __this->___validator_7;
XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_12 = V_0;
G_B2_0 = L_11;
if (!L_12)
{
G_B3_0 = L_11;
goto IL_0062;
}
}
{
XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_13 = V_0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_14 = __this->___outerReader_14;
NullCheck(L_14);
String_t* L_15;
L_15 = VirtualFuncInvoker0< String_t* >::Invoke(13 /* System.String System.Xml.XmlReader::get_BaseURI() */, L_14);
NullCheck(L_13);
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_16;
L_16 = VirtualFuncInvoker2< Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*, String_t* >::Invoke(5 /* System.Uri System.Xml.XmlResolver::ResolveUri(System.Uri,System.String) */, L_13, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, L_15);
G_B4_0 = L_16;
G_B4_1 = G_B2_0;
goto IL_0073;
}
IL_0062:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_17 = __this->___outerReader_14;
NullCheck(L_17);
String_t* L_18;
L_18 = VirtualFuncInvoker0< String_t* >::Invoke(13 /* System.String System.Xml.XmlReader::get_BaseURI() */, L_17);
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_19 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)il2cpp_codegen_object_new(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
NullCheck(L_19);
Uri__ctor_m24549041BC5661EAC10BA8CB35B60AD6512AF69B(L_19, L_18, 0, NULL);
G_B4_0 = L_19;
G_B4_1 = G_B3_0;
}
IL_0073:
{
NullCheck(G_B4_1);
BaseValidator_set_BaseUri_mA4B0ACD053F6B82E24AC7B4468CF425FFB0351EC_inline(G_B4_1, G_B4_0, NULL);
}
IL_0078:
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_20 = __this->___coreReaderImpl_4;
int32_t L_21 = __this->___validationType_6;
G_B6_0 = L_20;
if (!L_21)
{
G_B7_0 = L_20;
goto IL_008e;
}
}
{
ValidationEventHandling_tE915576B71BADFBAC73B6C8CA5A99C0C5086E4C9* L_22 = __this->___eventHandling_11;
G_B8_0 = L_22;
G_B8_1 = G_B6_0;
goto IL_008f;
}
IL_008e:
{
G_B8_0 = ((ValidationEventHandling_tE915576B71BADFBAC73B6C8CA5A99C0C5086E4C9*)(NULL));
G_B8_1 = G_B7_0;
}
IL_008f:
{
NullCheck(G_B8_1);
XmlTextReaderImpl_set_ValidationEventHandling_mF8A66D6BE2B822997F486F4931B151B667863E59_inline(G_B8_1, G_B8_0, NULL);
return;
}
}
// System.Xml.XmlResolver System.Xml.XmlValidatingReaderImpl::GetResolver()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* XmlValidatingReaderImpl_GetResolver_mFF19947EEC427CAC13D597CF19C3FD8C4CC6C6D1 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* V_0 = NULL;
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___coreReaderImpl_4;
NullCheck(L_0);
XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_1;
L_1 = XmlTextReaderImpl_GetResolver_m924CBFEF2845AFABF70D3E892450B7BA9C7659A0(L_0, NULL);
V_0 = L_1;
XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_2 = V_0;
if (L_2)
{
goto IL_003a;
}
}
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_3 = __this->___coreReaderImpl_4;
NullCheck(L_3);
bool L_4;
L_4 = XmlTextReaderImpl_get_IsResolverSet_mE4680CEFE9EF053C07E21CF5759C26EB7D7E2383_inline(L_3, NULL);
if (L_4)
{
goto IL_003a;
}
}
{
bool L_5;
L_5 = XmlReaderSettings_EnableLegacyXmlSettings_mAB5A87889CEC6170D507B650C62A448A30BA25EB(NULL);
if (L_5)
{
goto IL_003a;
}
}
{
XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_6 = ((XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8_StaticFields*)il2cpp_codegen_static_fields_for(XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8_il2cpp_TypeInfo_var))->___s_tempResolver_15;
if (L_6)
{
goto IL_0034;
}
}
{
XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E* L_7 = (XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E*)il2cpp_codegen_object_new(XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E_il2cpp_TypeInfo_var);
NullCheck(L_7);
XmlUrlResolver__ctor_m2BF23C41038D2825C0854A4C01DCE078E171A7BB(L_7, NULL);
((XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8_StaticFields*)il2cpp_codegen_static_fields_for(XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8_il2cpp_TypeInfo_var))->___s_tempResolver_15 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&((XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8_StaticFields*)il2cpp_codegen_static_fields_for(XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8_il2cpp_TypeInfo_var))->___s_tempResolver_15), (void*)L_7);
}
IL_0034:
{
XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_8 = ((XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8_StaticFields*)il2cpp_codegen_static_fields_for(XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8_il2cpp_TypeInfo_var))->___s_tempResolver_15;
return L_8;
}
IL_003a:
{
XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_9 = V_0;
return L_9;
}
}
// System.Void System.Xml.XmlValidatingReaderImpl::ProcessCoreReaderEvent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlValidatingReaderImpl_ProcessCoreReaderEvent_mEA281802CAC44E6E8D5E9BF3CFA3AAA11B93151A (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_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);
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)5)))
{
goto IL_005a;
}
}
{
int32_t L_3 = V_0;
if ((((int32_t)L_3) == ((int32_t)((int32_t)10))))
{
goto IL_0053;
}
}
{
int32_t L_4 = V_0;
if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)13)))))
{
goto IL_0061;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_5 = __this->___coreReader_3;
NullCheck(L_5);
int32_t L_6;
L_6 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* System.Int32 System.Xml.XmlReader::get_Depth() */, L_5);
if ((((int32_t)L_6) > ((int32_t)0)))
{
goto IL_0037;
}
}
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_7 = __this->___coreReaderImpl_4;
NullCheck(L_7);
int32_t L_8;
L_8 = XmlTextReaderImpl_get_FragmentType_m2A244AA6C26344D9FFD93C4431E5BB30846E3A10_inline(L_7, NULL);
if ((((int32_t)L_8) == ((int32_t)((int32_t)9))))
{
goto IL_0061;
}
}
IL_0037:
{
BaseValidator_t76E42AEBD013AC709BA36D782908C7B708BA8DAB* L_9 = __this->___validator_7;
NullCheck(L_9);
bool L_10;
L_10 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean System.Xml.Schema.BaseValidator::get_PreserveWhitespace() */, L_9);
if (!L_10)
{
goto IL_0061;
}
}
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_11 = __this->___coreReaderImpl_4;
NullCheck(L_11);
XmlTextReaderImpl_ChangeCurrentNodeType_m29E4ADDA760615A747D04FDC8A5352F7A676C0E3(L_11, ((int32_t)14), NULL);
goto IL_0061;
}
IL_0053:
{
XmlValidatingReaderImpl_ValidateDtd_m6CA931FBC3420A98A5897737D99761A6C92CE35D(__this, NULL);
return;
}
IL_005a:
{
__this->___parsingFunction_10 = 3;
}
IL_0061:
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_12 = __this->___coreReaderImpl_4;
NullCheck(L_12);
XmlTextReaderImpl_set_InternalSchemaType_m83D09B83500AB9C6EF14121ECDCD992347140B86(L_12, NULL, NULL);
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_13 = __this->___coreReaderImpl_4;
NullCheck(L_13);
XmlTextReaderImpl_set_InternalTypedValue_m395992CEA4999B2FA7370AD919D57A8F0A8B7662(L_13, NULL, NULL);
BaseValidator_t76E42AEBD013AC709BA36D782908C7B708BA8DAB* L_14 = __this->___validator_7;
NullCheck(L_14);
VirtualActionInvoker0::Invoke(5 /* System.Void System.Xml.Schema.BaseValidator::Validate() */, L_14);
return;
}
}
// System.Xml.Schema.BaseValidator System.Xml.XmlValidatingReaderImpl::get_Validator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseValidator_t76E42AEBD013AC709BA36D782908C7B708BA8DAB* XmlValidatingReaderImpl_get_Validator_m14576660E175E35CFBDF67B7BDC238581B02978B (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
{
BaseValidator_t76E42AEBD013AC709BA36D782908C7B708BA8DAB* L_0 = __this->___validator_7;
return L_0;
}
}
// System.Void System.Xml.XmlValidatingReaderImpl::set_Validator(System.Xml.Schema.BaseValidator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlValidatingReaderImpl_set_Validator_m70253B3ADBC097BB9213ABC9C6DE0446EA658D07 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, BaseValidator_t76E42AEBD013AC709BA36D782908C7B708BA8DAB* ___value0, const RuntimeMethod* method)
{
{
BaseValidator_t76E42AEBD013AC709BA36D782908C7B708BA8DAB* L_0 = ___value0;
__this->___validator_7 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___validator_7), (void*)L_0);
return;
}
}
// System.Xml.XmlNamespaceManager System.Xml.XmlValidatingReaderImpl::get_NamespaceManager()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* XmlValidatingReaderImpl_get_NamespaceManager_m28DAFE6B36CC230527857D41B84B36F4A0DB2FBA (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___coreReaderImpl_4;
NullCheck(L_0);
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_1;
L_1 = VirtualFuncInvoker0< XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* >::Invoke(51 /* System.Xml.XmlNamespaceManager System.Xml.XmlReader::get_NamespaceManager() */, L_0);
return L_1;
}
}
// System.Boolean System.Xml.XmlValidatingReaderImpl::get_StandAlone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlValidatingReaderImpl_get_StandAlone_mE9B14348DA3DF698C8AB86CF102C58F2FD0FE7A2 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___coreReaderImpl_4;
NullCheck(L_0);
bool L_1;
L_1 = XmlTextReaderImpl_get_StandAlone_mA576162454EF6AB6B5B442B1AF0FF6375F52EF2D_inline(L_0, NULL);
return L_1;
}
}
// System.Void System.Xml.XmlValidatingReaderImpl::set_SchemaTypeObject(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlValidatingReaderImpl_set_SchemaTypeObject_mCAB4AC252A3858BC3E87F13974542BCBA7FD10EB (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___coreReaderImpl_4;
RuntimeObject* L_1 = ___value0;
NullCheck(L_0);
XmlTextReaderImpl_set_InternalSchemaType_m83D09B83500AB9C6EF14121ECDCD992347140B86(L_0, L_1, NULL);
return;
}
}
// System.Object System.Xml.XmlValidatingReaderImpl::get_TypedValueObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlValidatingReaderImpl_get_TypedValueObject_m9602101F88DF1B7E38564233B194E3946813C834 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___coreReaderImpl_4;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = XmlTextReaderImpl_get_InternalTypedValue_mAC905D7C504F020F695087C8D0C675F100106900(L_0, NULL);
return L_1;
}
}
// System.Void System.Xml.XmlValidatingReaderImpl::set_TypedValueObject(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlValidatingReaderImpl_set_TypedValueObject_m5CE2EEB7B2C9DE75E771F9E622DE11650D4F0989 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___coreReaderImpl_4;
RuntimeObject* L_1 = ___value0;
NullCheck(L_0);
XmlTextReaderImpl_set_InternalTypedValue_m395992CEA4999B2FA7370AD919D57A8F0A8B7662(L_0, L_1, NULL);
return;
}
}
// System.Boolean System.Xml.XmlValidatingReaderImpl::AddDefaultAttribute(System.Xml.Schema.SchemaAttDef)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlValidatingReaderImpl_AddDefaultAttribute_m3287641B8372B30B8B658C9D448A138C4404936F (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* ___attdef0, const RuntimeMethod* method)
{
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___coreReaderImpl_4;
SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_1 = ___attdef0;
NullCheck(L_0);
bool L_2;
L_2 = XmlTextReaderImpl_AddDefaultAttributeNonDtd_m39693E225A68EB53B260ADBD16A020FDE741C2C5(L_0, L_1, NULL);
return L_2;
}
}
// System.Xml.IDtdInfo System.Xml.XmlValidatingReaderImpl::get_DtdInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlValidatingReaderImpl_get_DtdInfo_mB88A0FDADA4BCA164D0BBCC8ED51C679DFC8C184 (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___coreReaderImpl_4;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(52 /* System.Xml.IDtdInfo System.Xml.XmlReader::get_DtdInfo() */, L_0);
return L_1;
}
}
// System.Void System.Xml.XmlValidatingReaderImpl::ValidateDefaultAttributeOnUse(System.Xml.IDtdDefaultAttributeInfo,System.Xml.XmlTextReaderImpl)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlValidatingReaderImpl_ValidateDefaultAttributeOnUse_mCBE87491A93DED04B04028C172FF60CA0D47F28B (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, RuntimeObject* ___defaultAttribute0, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___coreReader1, 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*)&SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* V_0 = NULL;
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* V_1 = NULL;
{
RuntimeObject* L_0 = ___defaultAttribute0;
V_0 = ((SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553*)IsInstSealed((RuntimeObject*)L_0, SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553_il2cpp_TypeInfo_var));
SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_1 = V_0;
if (L_1)
{
goto IL_000b;
}
}
{
return;
}
IL_000b:
{
SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_2 = V_0;
NullCheck(L_2);
bool L_3;
L_3 = SchemaAttDef_get_DefaultValueChecked_m57D6252200749344E61A44A323A8082353DA4B8F_inline(L_2, NULL);
if (L_3)
{
goto IL_0036;
}
}
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_4 = ___coreReader1;
NullCheck(L_4);
RuntimeObject* L_5;
L_5 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(52 /* System.Xml.IDtdInfo System.Xml.XmlReader::get_DtdInfo() */, L_4);
V_1 = ((SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E*)IsInstClass((RuntimeObject*)L_5, SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E_il2cpp_TypeInfo_var));
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_6 = V_1;
if (L_6)
{
goto IL_0023;
}
}
{
return;
}
IL_0023:
{
SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_7 = V_0;
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_8 = V_1;
ValidationEventHandling_tE915576B71BADFBAC73B6C8CA5A99C0C5086E4C9* L_9 = __this->___eventHandling_11;
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_10 = ___coreReader1;
NullCheck(L_10);
String_t* L_11;
L_11 = VirtualFuncInvoker0< String_t* >::Invoke(13 /* System.String System.Xml.XmlReader::get_BaseURI() */, L_10);
il2cpp_codegen_runtime_class_init_inline(DtdValidator_tF916F1805E2290242B688583602409378173CF17_il2cpp_TypeInfo_var);
DtdValidator_CheckDefaultValue_mBD5C3F1CD5D27135CADEB155007D82923A8C9BB2(L_7, L_8, L_9, L_11, NULL);
}
IL_0036:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Xml.XmlValidatingReaderImpl/ValidationEventHandling::.ctor(System.Xml.XmlValidatingReaderImpl)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationEventHandling__ctor_m0DB14ABA2F484D38F4A85BC791A7833E61997DB9 (ValidationEventHandling_tE915576B71BADFBAC73B6C8CA5A99C0C5086E4C9* __this, XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* ___reader0, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* L_0 = ___reader0;
__this->___reader_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___reader_0), (void*)L_0);
return;
}
}
// System.Object System.Xml.XmlValidatingReaderImpl/ValidationEventHandling::System.Xml.IValidationEventHandling.get_EventHandler()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValidationEventHandling_System_Xml_IValidationEventHandling_get_EventHandler_m4A0F6CB0BFA867CB9E56E41969147FFF0747C604 (ValidationEventHandling_tE915576B71BADFBAC73B6C8CA5A99C0C5086E4C9* __this, const RuntimeMethod* method)
{
{
ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* L_0 = __this->___eventHandler_1;
return L_0;
}
}
// System.Void System.Xml.XmlValidatingReaderImpl/ValidationEventHandling::System.Xml.IValidationEventHandling.SendEvent(System.Exception,System.Xml.Schema.XmlSeverityType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationEventHandling_System_Xml_IValidationEventHandling_SendEvent_mF752F1F19E1809AA7E2CF9274F9F241C7D276A90 (ValidationEventHandling_tE915576B71BADFBAC73B6C8CA5A99C0C5086E4C9* __this, Exception_t* ___exception0, int32_t ___severity1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidationEventArgs_t9857F51592E50B7D14912FFA79909878DC603830_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* L_0 = __this->___eventHandler_1;
if (!L_0)
{
goto IL_0026;
}
}
{
ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* L_1 = __this->___eventHandler_1;
XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* L_2 = __this->___reader_0;
Exception_t* L_3 = ___exception0;
int32_t L_4 = ___severity1;
ValidationEventArgs_t9857F51592E50B7D14912FFA79909878DC603830* L_5 = (ValidationEventArgs_t9857F51592E50B7D14912FFA79909878DC603830*)il2cpp_codegen_object_new(ValidationEventArgs_t9857F51592E50B7D14912FFA79909878DC603830_il2cpp_TypeInfo_var);
NullCheck(L_5);
ValidationEventArgs__ctor_m8A0548B9124D82CD04A6E4C26CEE18443C47DDF9(L_5, ((XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B*)CastclassClass((RuntimeObject*)L_3, XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B_il2cpp_TypeInfo_var)), L_4, NULL);
NullCheck(L_1);
ValidationEventHandler_Invoke_m585F7368113F5FDF31F3C7C9C5B7F520CE46481B_inline(L_1, L_2, L_5, NULL);
return;
}
IL_0026:
{
XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* L_6 = __this->___reader_0;
NullCheck(L_6);
int32_t L_7;
L_7 = XmlValidatingReaderImpl_get_ValidationType_m3F56E6463F6CA002AD75157D14E897A2F5230988_inline(L_6, NULL);
if (!L_7)
{
goto IL_0038;
}
}
{
int32_t L_8 = ___severity1;
if (L_8)
{
goto IL_0038;
}
}
{
Exception_t* L_9 = ___exception0;
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValidationEventHandling_System_Xml_IValidationEventHandling_SendEvent_mF752F1F19E1809AA7E2CF9274F9F241C7D276A90_RuntimeMethod_var)));
}
IL_0038:
{
return;
}
}
// System.Void System.Xml.XmlValidatingReaderImpl/ValidationEventHandling::AddHandler(System.Xml.Schema.ValidationEventHandler)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationEventHandling_AddHandler_mD972A68DCBA2204B5EABDC54EEFF2F2479A68389 (ValidationEventHandling_tE915576B71BADFBAC73B6C8CA5A99C0C5086E4C9* __this, ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* ___handler0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* L_0 = __this->___eventHandler_1;
ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* L_1 = ___handler0;
Delegate_t* L_2;
L_2 = Delegate_Combine_m8B9D24CED35033C7FC56501DFE650F5CB7FF012C(L_0, L_1, NULL);
__this->___eventHandler_1 = ((ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A*)CastclassSealed((RuntimeObject*)L_2, ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A_il2cpp_TypeInfo_var));
Il2CppCodeGenWriteBarrier((void**)(&__this->___eventHandler_1), (void*)((ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A*)CastclassSealed((RuntimeObject*)L_2, ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A_il2cpp_TypeInfo_var)));
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.XmlWellFormedWriter::.ctor(System.Xml.XmlWriter,System.Xml.XmlWriterSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter__ctor_m15CD03B5614B921745BD07E2CC0E253AC3FB09FF (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___writer0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AttrNameU5BU5D_t501369F3E8EBC0B2B32AF603424921032B14A983_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ElementScopeU5BU5D_t68B3D6D2E3C34832F1D1BBDB096CCF5270D5DBD9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NamespaceResolverProxy_t21901D5C38330378CB1AA39393335948E0CADE44_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SecureStringHasher_t4052E73C966E6FE65426B19F4AF48AB9869F614E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral349C6DC0F34B9BA242E4C728EDD28CAB809D4917);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* G_B4_0 = NULL;
XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* G_B3_0 = NULL;
StateU5BU5D_t9E4189FBE1E6EF2CD6F60C94EE572FA8E522A375* G_B5_0 = NULL;
XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* G_B5_1 = NULL;
String_t* G_B9_0 = NULL;
Namespace_tC7546D20184E40E3566060C1246B764E4DBA55A0* G_B9_1 = NULL;
String_t* G_B8_0 = NULL;
Namespace_tC7546D20184E40E3566060C1246B764E4DBA55A0* G_B8_1 = NULL;
String_t* G_B10_0 = NULL;
String_t* G_B10_1 = NULL;
Namespace_tC7546D20184E40E3566060C1246B764E4DBA55A0* G_B10_2 = NULL;
{
XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 L_0;
L_0 = XmlCharType_get_Instance_m2D4006A9AE9EB033F6A176E31CAFAC7EF30350AD(NULL);
__this->___xmlCharType_24 = L_0;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___xmlCharType_24))->___charProperties_2), (void*)NULL);
XmlWriter__ctor_m8944C0C05D32C64DD68AE6641BA0943BE80CE714(__this, NULL);
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_1 = ___writer0;
__this->___writer_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___writer_1), (void*)L_1);
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_2 = ___writer0;
__this->___rawWriter_2 = ((XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B*)IsInstClass((RuntimeObject*)L_2, XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B_il2cpp_TypeInfo_var));
Il2CppCodeGenWriteBarrier((void**)(&__this->___rawWriter_2), (void*)((XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B*)IsInstClass((RuntimeObject*)L_2, XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B_il2cpp_TypeInfo_var)));
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_3 = ___writer0;
__this->___predefinedNamespaces_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_3, IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var));
Il2CppCodeGenWriteBarrier((void**)(&__this->___predefinedNamespaces_3), (void*)((RuntimeObject*)IsInst((RuntimeObject*)L_3, IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var)));
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_4 = __this->___rawWriter_2;
if (!L_4)
{
goto IL_0049;
}
}
{
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_5 = __this->___rawWriter_2;
NamespaceResolverProxy_t21901D5C38330378CB1AA39393335948E0CADE44* L_6 = (NamespaceResolverProxy_t21901D5C38330378CB1AA39393335948E0CADE44*)il2cpp_codegen_object_new(NamespaceResolverProxy_t21901D5C38330378CB1AA39393335948E0CADE44_il2cpp_TypeInfo_var);
NullCheck(L_6);
NamespaceResolverProxy__ctor_mF340DF659BB0437832979BFF6C9A91F1CA480177(L_6, __this, NULL);
NullCheck(L_5);
VirtualActionInvoker1< RuntimeObject* >::Invoke(35 /* System.Void System.Xml.XmlRawWriter::set_NamespaceResolver(System.Xml.IXmlNamespaceResolver) */, L_5, L_6);
}
IL_0049:
{
XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_7 = ___settings1;
NullCheck(L_7);
bool L_8;
L_8 = XmlWriterSettings_get_CheckCharacters_mD2E14381EBF36D4C56C13F1BF4846667B4CCBB31_inline(L_7, NULL);
__this->___checkCharacters_18 = L_8;
XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_9 = ___settings1;
NullCheck(L_9);
int32_t L_10;
L_10 = XmlWriterSettings_get_NamespaceHandling_m3A904C3E9BA1FED8C1A8BDA66A5FF9A93CB87F78_inline(L_9, NULL);
__this->___omitDuplNamespaces_19 = (bool)((!(((uint32_t)((int32_t)((int32_t)L_10&1))) <= ((uint32_t)0)))? 1 : 0);
XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_11 = ___settings1;
NullCheck(L_11);
bool L_12;
L_12 = XmlWriterSettings_get_WriteEndDocumentOnClose_m73A02E01FD8DB8AEBE545E9A60F92E5BFA1CBDB8_inline(L_11, NULL);
__this->___writeEndDocumentOnClose_20 = L_12;
XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_13 = ___settings1;
NullCheck(L_13);
int32_t L_14;
L_14 = XmlWriterSettings_get_ConformanceLevel_mAAD6F249DE7CF83E6F97F60C9FFDD0BC84AD9842_inline(L_13, NULL);
__this->___conformanceLevel_21 = L_14;
int32_t L_15 = __this->___conformanceLevel_21;
G_B3_0 = __this;
if ((((int32_t)L_15) == ((int32_t)2)))
{
G_B4_0 = __this;
goto IL_008f;
}
}
{
il2cpp_codegen_runtime_class_init_inline(XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var);
StateU5BU5D_t9E4189FBE1E6EF2CD6F60C94EE572FA8E522A375* L_16 = ((XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_StaticFields*)il2cpp_codegen_static_fields_for(XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var))->___StateTableAuto_30;
G_B5_0 = L_16;
G_B5_1 = G_B3_0;
goto IL_0094;
}
IL_008f:
{
il2cpp_codegen_runtime_class_init_inline(XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var);
StateU5BU5D_t9E4189FBE1E6EF2CD6F60C94EE572FA8E522A375* L_17 = ((XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_StaticFields*)il2cpp_codegen_static_fields_for(XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var))->___StateTableDocument_29;
G_B5_0 = L_17;
G_B5_1 = G_B4_0;
}
IL_0094:
{
NullCheck(G_B5_1);
G_B5_1->___stateTable_16 = G_B5_0;
Il2CppCodeGenWriteBarrier((void**)(&G_B5_1->___stateTable_16), (void*)G_B5_0);
__this->___currentState_17 = 0;
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* L_18 = (NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7*)(NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7*)SZArrayNew(NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7_il2cpp_TypeInfo_var, (uint32_t)8);
__this->___nsStack_4 = L_18;
Il2CppCodeGenWriteBarrier((void**)(&__this->___nsStack_4), (void*)L_18);
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* L_19 = __this->___nsStack_4;
NullCheck(L_19);
Namespace_Set_m88AB7EE7ADEBE72A65AB39AD226966CECB869A2C(((L_19)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))), _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3, _stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE, 3, NULL);
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* L_20 = __this->___nsStack_4;
NullCheck(L_20);
Namespace_Set_m88AB7EE7ADEBE72A65AB39AD226966CECB869A2C(((L_20)->GetAddressAt(static_cast<il2cpp_array_size_t>(1))), _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158, _stringLiteral349C6DC0F34B9BA242E4C728EDD28CAB809D4917, 3, NULL);
RuntimeObject* L_21 = __this->___predefinedNamespaces_3;
if (L_21)
{
goto IL_010a;
}
}
{
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* L_22 = __this->___nsStack_4;
NullCheck(L_22);
String_t* L_23 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
String_t* L_24 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
Namespace_Set_m88AB7EE7ADEBE72A65AB39AD226966CECB869A2C(((L_22)->GetAddressAt(static_cast<il2cpp_array_size_t>(2))), L_23, L_24, 2, NULL);
goto IL_013d;
}
IL_010a:
{
RuntimeObject* L_25 = __this->___predefinedNamespaces_3;
String_t* L_26 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
NullCheck(L_25);
String_t* L_27;
L_27 = InterfaceFuncInvoker1< String_t*, String_t* >::Invoke(1 /* System.String System.Xml.IXmlNamespaceResolver::LookupNamespace(System.String) */, IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var, L_25, L_26);
V_0 = L_27;
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* L_28 = __this->___nsStack_4;
NullCheck(L_28);
String_t* L_29 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
String_t* L_30 = V_0;
G_B8_0 = L_29;
G_B8_1 = ((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(2)));
if (!L_30)
{
G_B9_0 = L_29;
G_B9_1 = ((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(2)));
goto IL_0132;
}
}
{
String_t* L_31 = V_0;
G_B10_0 = L_31;
G_B10_1 = G_B8_0;
G_B10_2 = G_B8_1;
goto IL_0137;
}
IL_0132:
{
String_t* L_32 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
G_B10_0 = L_32;
G_B10_1 = G_B9_0;
G_B10_2 = G_B9_1;
}
IL_0137:
{
Namespace_Set_m88AB7EE7ADEBE72A65AB39AD226966CECB869A2C(G_B10_2, G_B10_1, G_B10_0, 2, NULL);
}
IL_013d:
{
__this->___nsTop_5 = 2;
ElementScopeU5BU5D_t68B3D6D2E3C34832F1D1BBDB096CCF5270D5DBD9* L_33 = (ElementScopeU5BU5D_t68B3D6D2E3C34832F1D1BBDB096CCF5270D5DBD9*)(ElementScopeU5BU5D_t68B3D6D2E3C34832F1D1BBDB096CCF5270D5DBD9*)SZArrayNew(ElementScopeU5BU5D_t68B3D6D2E3C34832F1D1BBDB096CCF5270D5DBD9_il2cpp_TypeInfo_var, (uint32_t)8);
__this->___elemScopeStack_8 = L_33;
Il2CppCodeGenWriteBarrier((void**)(&__this->___elemScopeStack_8), (void*)L_33);
ElementScopeU5BU5D_t68B3D6D2E3C34832F1D1BBDB096CCF5270D5DBD9* L_34 = __this->___elemScopeStack_8;
NullCheck(L_34);
String_t* L_35 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
String_t* L_36 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
String_t* L_37 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
int32_t L_38 = __this->___nsTop_5;
ElementScope_Set_m7BAE5CE51EBBE20E736A268E1E606C71B74CF8D0(((L_34)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))), L_35, L_36, L_37, L_38, NULL);
ElementScopeU5BU5D_t68B3D6D2E3C34832F1D1BBDB096CCF5270D5DBD9* L_39 = __this->___elemScopeStack_8;
NullCheck(L_39);
((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))->___xmlSpace_4 = 0;
ElementScopeU5BU5D_t68B3D6D2E3C34832F1D1BBDB096CCF5270D5DBD9* L_40 = __this->___elemScopeStack_8;
NullCheck(L_40);
((L_40)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))->___xmlLang_5 = (String_t*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&((L_40)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))->___xmlLang_5), (void*)(String_t*)NULL);
__this->___elemTop_9 = 0;
AttrNameU5BU5D_t501369F3E8EBC0B2B32AF603424921032B14A983* L_41 = (AttrNameU5BU5D_t501369F3E8EBC0B2B32AF603424921032B14A983*)(AttrNameU5BU5D_t501369F3E8EBC0B2B32AF603424921032B14A983*)SZArrayNew(AttrNameU5BU5D_t501369F3E8EBC0B2B32AF603424921032B14A983_il2cpp_TypeInfo_var, (uint32_t)8);
__this->___attrStack_10 = L_41;
Il2CppCodeGenWriteBarrier((void**)(&__this->___attrStack_10), (void*)L_41);
SecureStringHasher_t4052E73C966E6FE65426B19F4AF48AB9869F614E* L_42 = (SecureStringHasher_t4052E73C966E6FE65426B19F4AF48AB9869F614E*)il2cpp_codegen_object_new(SecureStringHasher_t4052E73C966E6FE65426B19F4AF48AB9869F614E_il2cpp_TypeInfo_var);
NullCheck(L_42);
SecureStringHasher__ctor_m1F7C97F1DB5BEC1B80480E7CB4019B8E68CC4E92(L_42, NULL);
__this->___hasher_25 = L_42;
Il2CppCodeGenWriteBarrier((void**)(&__this->___hasher_25), (void*)L_42);
return;
}
}
// System.Xml.WriteState System.Xml.XmlWellFormedWriter::get_WriteState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlWellFormedWriter_get_WriteState_m474574F7ACF3816F50B5B609C581856E56873BF9 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = __this->___currentState_17;
if ((((int32_t)L_0) > ((int32_t)((int32_t)16))))
{
goto IL_0017;
}
}
{
il2cpp_codegen_runtime_class_init_inline(XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var);
WriteStateU5BU5D_t2541ACA07B6DAA172C2D36B58A47A83DAC4375DF* L_1 = ((XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_StaticFields*)il2cpp_codegen_static_fields_for(XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var))->___state2WriteState_28;
int32_t L_2 = __this->___currentState_17;
NullCheck(L_1);
int32_t L_3 = L_2;
int32_t L_4 = (int32_t)(L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
return (int32_t)(L_4);
}
IL_0017:
{
return (int32_t)(6);
}
}
// System.Void System.Xml.XmlWellFormedWriter::WriteStartDocument()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_WriteStartDocument_mBE6599EBDAC0556EE3CDABB5E1DE88A6B4001F3D (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, const RuntimeMethod* method)
{
{
XmlWellFormedWriter_WriteStartDocumentImpl_mA52A83EB37B590FF5E0439A0EEF4607423783C0E(__this, 0, NULL);
return;
}
}
// System.Void System.Xml.XmlWellFormedWriter::WriteStartDocument(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_WriteStartDocument_m2B34E2DC91D38A57E7B504F3F5996C0EE5325317 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, bool ___standalone0, const RuntimeMethod* method)
{
XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* G_B2_0 = NULL;
XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* G_B1_0 = NULL;
int32_t G_B3_0 = 0;
XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* G_B3_1 = NULL;
{
bool L_0 = ___standalone0;
G_B1_0 = __this;
if (L_0)
{
G_B2_0 = __this;
goto IL_0007;
}
}
{
G_B3_0 = 2;
G_B3_1 = G_B1_0;
goto IL_0008;
}
IL_0007:
{
G_B3_0 = 1;
G_B3_1 = G_B2_0;
}
IL_0008:
{
NullCheck(G_B3_1);
XmlWellFormedWriter_WriteStartDocumentImpl_mA52A83EB37B590FF5E0439A0EEF4607423783C0E(G_B3_1, G_B3_0, NULL);
return;
}
}
// System.Void System.Xml.XmlWellFormedWriter::WriteEndDocument()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_WriteEndDocument_m5988C4D6DAB5E13684D81E96E3DEDDCD26A8DD66 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
{
goto IL_0008_1;
}
IL_0002_1:
{
VirtualActionInvoker0::Invoke(10 /* System.Void System.Xml.XmlWriter::WriteEndElement() */, __this);
}
IL_0008_1:
{
int32_t L_0 = __this->___elemTop_9;
if ((((int32_t)L_0) > ((int32_t)0)))
{
goto IL_0002_1;
}
}
{
int32_t L_1 = __this->___currentState_17;
XmlWellFormedWriter_AdvanceState_m0E77F31CDB1071771578075FC87D0BF0D208D8E1(__this, 1, NULL);
if ((((int32_t)L_1) == ((int32_t)7)))
{
goto IL_0031_1;
}
}
{
String_t* L_2;
L_2 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9413AC7CF6AB7E9B088B38F9FF76860CC990A952)), 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*)&XmlWellFormedWriter_WriteEndDocument_m5988C4D6DAB5E13684D81E96E3DEDDCD26A8DD66_RuntimeMethod_var)));
}
IL_0031_1:
{
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_4 = __this->___rawWriter_2;
if (L_4)
{
goto IL_0044_1;
}
}
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_5 = __this->___writer_1;
NullCheck(L_5);
VirtualActionInvoker0::Invoke(7 /* System.Void System.Xml.XmlWriter::WriteEndDocument() */, L_5);
}
IL_0044_1:
{
goto IL_0051;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0046;
}
throw e;
}
CATCH_0046:
{// begin catch(System.Object)
__this->___currentState_17 = ((int32_t)16);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteEndDocument_m5988C4D6DAB5E13684D81E96E3DEDDCD26A8DD66_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_0051:
{
return;
}
}
// System.Void System.Xml.XmlWellFormedWriter::WriteDocType(System.String,System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_WriteDocType_m67C4635BB824BBDA28E26A5F76698FA6BD703690 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, String_t* ___name0, String_t* ___pubid1, String_t* ___sysid2, String_t* ___subset3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_1 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
{
String_t* L_0 = ___name0;
if (!L_0)
{
goto IL_000b_1;
}
}
{
String_t* L_1 = ___name0;
NullCheck(L_1);
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL);
if (L_2)
{
goto IL_001b_1;
}
}
IL_000b_1:
{
String_t* L_3;
L_3 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4F463628A5B55C40369849BC669644FDA7E2FD4E)), 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*)&XmlWellFormedWriter_WriteDocType_m67C4635BB824BBDA28E26A5F76698FA6BD703690_RuntimeMethod_var)));
}
IL_001b_1:
{
String_t* L_5 = ___name0;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
String_t* L_6;
L_6 = XmlConvert_VerifyQName_mCDB9F07461E11258D09D3DFA02FF1834080A961A(L_5, 1, NULL);
int32_t L_7 = __this->___conformanceLevel_21;
if ((!(((uint32_t)L_7) == ((uint32_t)1))))
{
goto IL_003c_1;
}
}
{
String_t* L_8;
L_8 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF597846F2A44A6501BDA3166AC5D79811ACDFF43)), 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*)&XmlWellFormedWriter_WriteDocType_m67C4635BB824BBDA28E26A5F76698FA6BD703690_RuntimeMethod_var)));
}
IL_003c_1:
{
XmlWellFormedWriter_AdvanceState_m0E77F31CDB1071771578075FC87D0BF0D208D8E1(__this, 4, NULL);
bool L_10 = __this->___dtdWritten_22;
if (!L_10)
{
goto IL_0063_1;
}
}
{
__this->___currentState_17 = ((int32_t)16);
String_t* L_11;
L_11 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8D9B33043809B99EBBFA18076383BF612F0BA9C5)), NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_12 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_12);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_12, L_11, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteDocType_m67C4635BB824BBDA28E26A5F76698FA6BD703690_RuntimeMethod_var)));
}
IL_0063_1:
{
int32_t L_13 = __this->___conformanceLevel_21;
if (L_13)
{
goto IL_007d_1;
}
}
{
__this->___conformanceLevel_21 = 2;
il2cpp_codegen_runtime_class_init_inline(XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var);
StateU5BU5D_t9E4189FBE1E6EF2CD6F60C94EE572FA8E522A375* L_14 = ((XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_StaticFields*)il2cpp_codegen_static_fields_for(XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var))->___StateTableDocument_29;
__this->___stateTable_16 = L_14;
Il2CppCodeGenWriteBarrier((void**)(&__this->___stateTable_16), (void*)L_14);
}
IL_007d_1:
{
bool L_15 = __this->___checkCharacters_18;
if (!L_15)
{
goto IL_0121_1;
}
}
{
String_t* L_16 = ___pubid1;
if (!L_16)
{
goto IL_00ba_1;
}
}
{
XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_17 = (&__this->___xmlCharType_24);
String_t* L_18 = ___pubid1;
int32_t L_19;
L_19 = XmlCharType_IsPublicId_m1119A6921A99A357141333030F425EDD2AAFE2AE(L_17, L_18, NULL);
int32_t L_20 = L_19;
V_0 = L_20;
if ((((int32_t)L_20) < ((int32_t)0)))
{
goto IL_00ba_1;
}
}
{
String_t* L_21 = ___pubid1;
int32_t L_22 = V_0;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_23;
L_23 = XmlException_BuildCharExceptionArgs_m392B50DC9155D9243FD05EF0287B06FCB408EA46(L_21, L_22, NULL);
V_1 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)L_23;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_24 = V_1;
String_t* L_25;
L_25 = Res_GetString_mB929E696BF2E2F27CD03C0B61301A9DFE2FDEEF9(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral37FDAAF1C91F947734553260891C6678930EDDA0)), L_24, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_26 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_26);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_26, L_25, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB3DF8F23CCCF0FE02D810ECECE41BF9F4149155E)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_26, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteDocType_m67C4635BB824BBDA28E26A5F76698FA6BD703690_RuntimeMethod_var)));
}
IL_00ba_1:
{
String_t* L_27 = ___sysid2;
if (!L_27)
{
goto IL_00ec_1;
}
}
{
XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_28 = (&__this->___xmlCharType_24);
String_t* L_29 = ___sysid2;
int32_t L_30;
L_30 = XmlCharType_IsOnlyCharData_m5BFEFD55C4578A0117D1ED3305ACF4C062DCE9D3(L_28, L_29, NULL);
int32_t L_31 = L_30;
V_0 = L_31;
if ((((int32_t)L_31) < ((int32_t)0)))
{
goto IL_00ec_1;
}
}
{
String_t* L_32 = ___sysid2;
int32_t L_33 = V_0;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_34;
L_34 = XmlException_BuildCharExceptionArgs_m392B50DC9155D9243FD05EF0287B06FCB408EA46(L_32, L_33, NULL);
V_1 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)L_34;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_35 = V_1;
String_t* L_36;
L_36 = Res_GetString_mB929E696BF2E2F27CD03C0B61301A9DFE2FDEEF9(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral37FDAAF1C91F947734553260891C6678930EDDA0)), L_35, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_37 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_37);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_37, L_36, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0B285852A713F6D41AEFAA41E40A51FF58D6556E)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_37, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteDocType_m67C4635BB824BBDA28E26A5F76698FA6BD703690_RuntimeMethod_var)));
}
IL_00ec_1:
{
String_t* L_38 = ___subset3;
if (!L_38)
{
goto IL_0121_1;
}
}
{
XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_39 = (&__this->___xmlCharType_24);
String_t* L_40 = ___subset3;
int32_t L_41;
L_41 = XmlCharType_IsOnlyCharData_m5BFEFD55C4578A0117D1ED3305ACF4C062DCE9D3(L_39, L_40, NULL);
int32_t L_42 = L_41;
V_0 = L_42;
if ((((int32_t)L_42) < ((int32_t)0)))
{
goto IL_0121_1;
}
}
{
String_t* L_43 = ___subset3;
int32_t L_44 = V_0;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_45;
L_45 = XmlException_BuildCharExceptionArgs_m392B50DC9155D9243FD05EF0287B06FCB408EA46(L_43, L_44, NULL);
V_1 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)L_45;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_46 = V_1;
String_t* L_47;
L_47 = Res_GetString_mB929E696BF2E2F27CD03C0B61301A9DFE2FDEEF9(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral37FDAAF1C91F947734553260891C6678930EDDA0)), L_46, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_48 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_48);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_48, L_47, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7443383A37334A973AC921251F582494192A13B3)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_48, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteDocType_m67C4635BB824BBDA28E26A5F76698FA6BD703690_RuntimeMethod_var)));
}
IL_0121_1:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_49 = __this->___writer_1;
String_t* L_50 = ___name0;
String_t* L_51 = ___pubid1;
String_t* L_52 = ___sysid2;
String_t* L_53 = ___subset3;
NullCheck(L_49);
VirtualActionInvoker4< String_t*, String_t*, String_t*, String_t* >::Invoke(8 /* System.Void System.Xml.XmlWriter::WriteDocType(System.String,System.String,System.String,System.String) */, L_49, L_50, L_51, L_52, L_53);
__this->___dtdWritten_22 = (bool)1;
goto IL_0145;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_013a;
}
throw e;
}
CATCH_013a:
{// begin catch(System.Object)
__this->___currentState_17 = ((int32_t)16);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteDocType_m67C4635BB824BBDA28E26A5F76698FA6BD703690_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_0145:
{
return;
}
}
// System.Void System.Xml.XmlWellFormedWriter::WriteStartElement(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_WriteStartElement_m5E62BAA68C9A20CA088938BA5DA4453542D6F40D (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Clear_m841DBE29811833266CC127714688998A50D5F7CD_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ElementScopeU5BU5D_t68B3D6D2E3C34832F1D1BBDB096CCF5270D5DBD9_il2cpp_TypeInfo_var);
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;
ElementScopeU5BU5D_t68B3D6D2E3C34832F1D1BBDB096CCF5270D5DBD9* V_2 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
{
String_t* L_0 = ___localName1;
if (!L_0)
{
goto IL_000b_1;
}
}
{
String_t* L_1 = ___localName1;
NullCheck(L_1);
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL);
if (L_2)
{
goto IL_001b_1;
}
}
IL_000b_1:
{
String_t* L_3;
L_3 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBA9A59104E5E5C12D7BAC55D2460CE1CD56C7C08)), 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*)&XmlWellFormedWriter_WriteStartElement_m5E62BAA68C9A20CA088938BA5DA4453542D6F40D_RuntimeMethod_var)));
}
IL_001b_1:
{
String_t* L_5 = ___localName1;
XmlWellFormedWriter_CheckNCName_m60D4A447D593BEF77DFDAAA31CDD019361B55D2A(__this, L_5, NULL);
XmlWellFormedWriter_AdvanceState_m0E77F31CDB1071771578075FC87D0BF0D208D8E1(__this, 5, NULL);
String_t* L_6 = ___prefix0;
if (L_6)
{
goto IL_0044_1;
}
}
{
String_t* L_7 = ___ns2;
if (!L_7)
{
goto IL_0038_1;
}
}
{
String_t* L_8 = ___ns2;
String_t* L_9;
L_9 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(30 /* System.String System.Xml.XmlWriter::LookupPrefix(System.String) */, __this, L_8);
___prefix0 = L_9;
}
IL_0038_1:
{
String_t* L_10 = ___prefix0;
if (L_10)
{
goto IL_007e_1;
}
}
{
String_t* L_11 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
___prefix0 = L_11;
goto IL_007e_1;
}
IL_0044_1:
{
String_t* L_12 = ___prefix0;
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_007e_1;
}
}
{
String_t* L_14 = ___prefix0;
XmlWellFormedWriter_CheckNCName_m60D4A447D593BEF77DFDAAA31CDD019361B55D2A(__this, L_14, NULL);
String_t* L_15 = ___ns2;
if (L_15)
{
goto IL_0060_1;
}
}
{
String_t* L_16 = ___prefix0;
String_t* L_17;
L_17 = XmlWellFormedWriter_LookupNamespace_m501ADAA8012BE57824EAE59C5F58BE37E477A92A(__this, L_16, NULL);
___ns2 = L_17;
}
IL_0060_1:
{
String_t* L_18 = ___ns2;
if (!L_18)
{
goto IL_006e_1;
}
}
{
String_t* L_19 = ___ns2;
if (!L_19)
{
goto IL_007e_1;
}
}
{
String_t* L_20 = ___ns2;
NullCheck(L_20);
int32_t L_21;
L_21 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_20, NULL);
if (L_21)
{
goto IL_007e_1;
}
}
IL_006e_1:
{
String_t* L_22;
L_22 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB63A1A23B65582B8791AA4E655E90AA5647D7298)), 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*)&XmlWellFormedWriter_WriteStartElement_m5E62BAA68C9A20CA088938BA5DA4453542D6F40D_RuntimeMethod_var)));
}
IL_007e_1:
{
String_t* L_24 = ___ns2;
if (L_24)
{
goto IL_0094_1;
}
}
{
String_t* L_25 = ___prefix0;
String_t* L_26;
L_26 = XmlWellFormedWriter_LookupNamespace_m501ADAA8012BE57824EAE59C5F58BE37E477A92A(__this, L_25, NULL);
___ns2 = L_26;
String_t* L_27 = ___ns2;
if (L_27)
{
goto IL_0094_1;
}
}
{
String_t* L_28 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
___ns2 = L_28;
}
IL_0094_1:
{
int32_t L_29 = __this->___elemTop_9;
if (L_29)
{
goto IL_00b5_1;
}
}
{
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_30 = __this->___rawWriter_2;
if (!L_30)
{
goto IL_00b5_1;
}
}
{
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_31 = __this->___rawWriter_2;
int32_t L_32 = __this->___conformanceLevel_21;
NullCheck(L_31);
VirtualActionInvoker1< int32_t >::Invoke(39 /* System.Void System.Xml.XmlRawWriter::OnRootElement(System.Xml.ConformanceLevel) */, L_31, L_32);
}
IL_00b5_1:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_33 = __this->___writer_1;
String_t* L_34 = ___prefix0;
String_t* L_35 = ___localName1;
String_t* L_36 = ___ns2;
NullCheck(L_33);
VirtualActionInvoker3< String_t*, String_t*, String_t* >::Invoke(9 /* System.Void System.Xml.XmlWriter::WriteStartElement(System.String,System.String,System.String) */, L_33, L_34, L_35, L_36);
int32_t L_37 = __this->___elemTop_9;
V_1 = ((int32_t)il2cpp_codegen_add(L_37, 1));
int32_t L_38 = V_1;
__this->___elemTop_9 = L_38;
int32_t L_39 = V_1;
V_0 = L_39;
int32_t L_40 = V_0;
ElementScopeU5BU5D_t68B3D6D2E3C34832F1D1BBDB096CCF5270D5DBD9* L_41 = __this->___elemScopeStack_8;
NullCheck(L_41);
if ((!(((uint32_t)L_40) == ((uint32_t)((int32_t)(((RuntimeArray*)L_41)->max_length))))))
{
goto IL_00fd_1;
}
}
{
int32_t L_42 = V_0;
ElementScopeU5BU5D_t68B3D6D2E3C34832F1D1BBDB096CCF5270D5DBD9* L_43 = (ElementScopeU5BU5D_t68B3D6D2E3C34832F1D1BBDB096CCF5270D5DBD9*)(ElementScopeU5BU5D_t68B3D6D2E3C34832F1D1BBDB096CCF5270D5DBD9*)SZArrayNew(ElementScopeU5BU5D_t68B3D6D2E3C34832F1D1BBDB096CCF5270D5DBD9_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply(L_42, 2)));
V_2 = L_43;
ElementScopeU5BU5D_t68B3D6D2E3C34832F1D1BBDB096CCF5270D5DBD9* L_44 = __this->___elemScopeStack_8;
ElementScopeU5BU5D_t68B3D6D2E3C34832F1D1BBDB096CCF5270D5DBD9* L_45 = V_2;
int32_t L_46 = V_0;
Array_Copy_m4239F97ECC23A71F4191B8722362A1AA38E2E98F((RuntimeArray*)L_44, (RuntimeArray*)L_45, L_46, NULL);
ElementScopeU5BU5D_t68B3D6D2E3C34832F1D1BBDB096CCF5270D5DBD9* L_47 = V_2;
__this->___elemScopeStack_8 = L_47;
Il2CppCodeGenWriteBarrier((void**)(&__this->___elemScopeStack_8), (void*)L_47);
}
IL_00fd_1:
{
ElementScopeU5BU5D_t68B3D6D2E3C34832F1D1BBDB096CCF5270D5DBD9* L_48 = __this->___elemScopeStack_8;
int32_t L_49 = V_0;
NullCheck(L_48);
String_t* L_50 = ___prefix0;
String_t* L_51 = ___localName1;
String_t* L_52 = ___ns2;
int32_t L_53 = __this->___nsTop_5;
ElementScope_Set_m7BAE5CE51EBBE20E736A268E1E606C71B74CF8D0(((L_48)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_49))), L_50, L_51, L_52, L_53, NULL);
String_t* L_54 = ___prefix0;
String_t* L_55 = ___ns2;
XmlWellFormedWriter_PushNamespaceImplicit_mA1D3FFBB0CC8895E7237F3EFB2A6B425346D8267(__this, L_54, L_55, NULL);
int32_t L_56 = __this->___attrCount_11;
if ((((int32_t)L_56) < ((int32_t)((int32_t)14))))
{
goto IL_0134_1;
}
}
{
Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* L_57 = __this->___attrHashTable_12;
NullCheck(L_57);
Dictionary_2_Clear_m841DBE29811833266CC127714688998A50D5F7CD(L_57, Dictionary_2_Clear_m841DBE29811833266CC127714688998A50D5F7CD_RuntimeMethod_var);
}
IL_0134_1:
{
__this->___attrCount_11 = 0;
goto IL_0148;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_013d;
}
throw e;
}
CATCH_013d:
{// begin catch(System.Object)
__this->___currentState_17 = ((int32_t)16);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteStartElement_m5E62BAA68C9A20CA088938BA5DA4453542D6F40D_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_0148:
{
return;
}
}
// System.Void System.Xml.XmlWellFormedWriter::WriteEndElement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_WriteEndElement_mB572B5CC66D350D4A1A489D6DF7D922C6D55B228 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
{
XmlWellFormedWriter_AdvanceState_m0E77F31CDB1071771578075FC87D0BF0D208D8E1(__this, 6, NULL);
int32_t L_0 = __this->___elemTop_9;
V_0 = L_0;
int32_t L_1 = V_0;
if (L_1)
{
goto IL_0021_1;
}
}
{
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*)&_stringLiteral67171AD8B6817F7CF25B89C98234BCDA36D476FC)), L_2, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteEndElement_mB572B5CC66D350D4A1A489D6DF7D922C6D55B228_RuntimeMethod_var)));
}
IL_0021_1:
{
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_4 = __this->___rawWriter_2;
if (!L_4)
{
goto IL_0042_1;
}
}
{
ElementScopeU5BU5D_t68B3D6D2E3C34832F1D1BBDB096CCF5270D5DBD9* L_5 = __this->___elemScopeStack_8;
int32_t L_6 = V_0;
NullCheck(L_5);
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_7 = __this->___rawWriter_2;
ElementScope_WriteEndElement_mD162117056CFDD45A1DAEC3F76334847A29F7B57(((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6))), L_7, NULL);
goto IL_004d_1;
}
IL_0042_1:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_8 = __this->___writer_1;
NullCheck(L_8);
VirtualActionInvoker0::Invoke(10 /* System.Void System.Xml.XmlWriter::WriteEndElement() */, L_8);
}
IL_004d_1:
{
ElementScopeU5BU5D_t68B3D6D2E3C34832F1D1BBDB096CCF5270D5DBD9* L_9 = __this->___elemScopeStack_8;
int32_t L_10 = V_0;
NullCheck(L_9);
int32_t L_11 = ((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->___prevNSTop_0;
V_1 = L_11;
bool L_12 = __this->___useNsHashtable_7;
if (!L_12)
{
goto IL_007f_1;
}
}
{
int32_t L_13 = V_1;
int32_t L_14 = __this->___nsTop_5;
if ((((int32_t)L_13) >= ((int32_t)L_14)))
{
goto IL_007f_1;
}
}
{
int32_t L_15 = V_1;
int32_t L_16 = __this->___nsTop_5;
XmlWellFormedWriter_PopNamespaces_m21D460DB61EC4B7271262131A52536CAA398EB15(__this, ((int32_t)il2cpp_codegen_add(L_15, 1)), L_16, NULL);
}
IL_007f_1:
{
int32_t L_17 = V_1;
__this->___nsTop_5 = L_17;
int32_t L_18 = V_0;
int32_t L_19 = ((int32_t)il2cpp_codegen_subtract(L_18, 1));
V_0 = L_19;
__this->___elemTop_9 = L_19;
int32_t L_20 = V_0;
if (L_20)
{
goto IL_00ad_1;
}
}
{
int32_t L_21 = __this->___conformanceLevel_21;
if ((!(((uint32_t)L_21) == ((uint32_t)2))))
{
goto IL_00a6_1;
}
}
{
__this->___currentState_17 = 7;
goto IL_00ad_1;
}
IL_00a6_1:
{
__this->___currentState_17 = 1;
}
IL_00ad_1:
{
goto IL_00ba;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_00af;
}
throw e;
}
CATCH_00af:
{// begin catch(System.Object)
__this->___currentState_17 = ((int32_t)16);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteEndElement_mB572B5CC66D350D4A1A489D6DF7D922C6D55B228_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_00ba:
{
return;
}
}
// System.Void System.Xml.XmlWellFormedWriter::WriteFullEndElement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_WriteFullEndElement_m744A8E7FA66DC71F8AEBEB2ACAE643397303C655 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
{
XmlWellFormedWriter_AdvanceState_m0E77F31CDB1071771578075FC87D0BF0D208D8E1(__this, 6, NULL);
int32_t L_0 = __this->___elemTop_9;
V_0 = L_0;
int32_t L_1 = V_0;
if (L_1)
{
goto IL_0021_1;
}
}
{
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*)&_stringLiteral67171AD8B6817F7CF25B89C98234BCDA36D476FC)), L_2, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteFullEndElement_m744A8E7FA66DC71F8AEBEB2ACAE643397303C655_RuntimeMethod_var)));
}
IL_0021_1:
{
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_4 = __this->___rawWriter_2;
if (!L_4)
{
goto IL_0042_1;
}
}
{
ElementScopeU5BU5D_t68B3D6D2E3C34832F1D1BBDB096CCF5270D5DBD9* L_5 = __this->___elemScopeStack_8;
int32_t L_6 = V_0;
NullCheck(L_5);
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_7 = __this->___rawWriter_2;
ElementScope_WriteFullEndElement_m17FE706748E35B8903B1BCB6B172A2415AD989B4(((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6))), L_7, NULL);
goto IL_004d_1;
}
IL_0042_1:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_8 = __this->___writer_1;
NullCheck(L_8);
VirtualActionInvoker0::Invoke(11 /* System.Void System.Xml.XmlWriter::WriteFullEndElement() */, L_8);
}
IL_004d_1:
{
ElementScopeU5BU5D_t68B3D6D2E3C34832F1D1BBDB096CCF5270D5DBD9* L_9 = __this->___elemScopeStack_8;
int32_t L_10 = V_0;
NullCheck(L_9);
int32_t L_11 = ((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->___prevNSTop_0;
V_1 = L_11;
bool L_12 = __this->___useNsHashtable_7;
if (!L_12)
{
goto IL_007f_1;
}
}
{
int32_t L_13 = V_1;
int32_t L_14 = __this->___nsTop_5;
if ((((int32_t)L_13) >= ((int32_t)L_14)))
{
goto IL_007f_1;
}
}
{
int32_t L_15 = V_1;
int32_t L_16 = __this->___nsTop_5;
XmlWellFormedWriter_PopNamespaces_m21D460DB61EC4B7271262131A52536CAA398EB15(__this, ((int32_t)il2cpp_codegen_add(L_15, 1)), L_16, NULL);
}
IL_007f_1:
{
int32_t L_17 = V_1;
__this->___nsTop_5 = L_17;
int32_t L_18 = V_0;
int32_t L_19 = ((int32_t)il2cpp_codegen_subtract(L_18, 1));
V_0 = L_19;
__this->___elemTop_9 = L_19;
int32_t L_20 = V_0;
if (L_20)
{
goto IL_00ad_1;
}
}
{
int32_t L_21 = __this->___conformanceLevel_21;
if ((!(((uint32_t)L_21) == ((uint32_t)2))))
{
goto IL_00a6_1;
}
}
{
__this->___currentState_17 = 7;
goto IL_00ad_1;
}
IL_00a6_1:
{
__this->___currentState_17 = 1;
}
IL_00ad_1:
{
goto IL_00ba;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_00af;
}
throw e;
}
CATCH_00af:
{// begin catch(System.Object)
__this->___currentState_17 = ((int32_t)16);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteFullEndElement_m744A8E7FA66DC71F8AEBEB2ACAE643397303C655_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_00ba:
{
return;
}
}
// System.Void System.Xml.XmlWellFormedWriter::WriteStartAttribute(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_WriteStartAttribute_m083009DC319DE10D4F037AE40D27EB7F2CDB0481 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___namespaceName2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1CBC514CBF721C4C5F12F67F33B3E7694BCD1B29);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral349C6DC0F34B9BA242E4C728EDD28CAB809D4917);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE1291C4D47635E327ECFE39842BD1A93F58C61A2);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
{
String_t* L_0 = ___localName1;
if (!L_0)
{
goto IL_000b_1;
}
}
{
String_t* L_1 = ___localName1;
NullCheck(L_1);
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL);
if (L_2)
{
goto IL_0038_1;
}
}
IL_000b_1:
{
String_t* L_3 = ___prefix0;
bool L_4;
L_4 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_3, _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3, NULL);
if (!L_4)
{
goto IL_0028_1;
}
}
{
___localName1 = _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3;
String_t* L_5 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
___prefix0 = L_5;
goto IL_0038_1;
}
IL_0028_1:
{
String_t* L_6;
L_6 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBA9A59104E5E5C12D7BAC55D2460CE1CD56C7C08)), 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*)&XmlWellFormedWriter_WriteStartAttribute_m083009DC319DE10D4F037AE40D27EB7F2CDB0481_RuntimeMethod_var)));
}
IL_0038_1:
{
String_t* L_8 = ___localName1;
XmlWellFormedWriter_CheckNCName_m60D4A447D593BEF77DFDAAA31CDD019361B55D2A(__this, L_8, NULL);
XmlWellFormedWriter_AdvanceState_m0E77F31CDB1071771578075FC87D0BF0D208D8E1(__this, 7, NULL);
String_t* L_9 = ___prefix0;
if (L_9)
{
goto IL_0079_1;
}
}
{
String_t* L_10 = ___namespaceName2;
if (!L_10)
{
goto IL_006f_1;
}
}
{
String_t* L_11 = ___localName1;
bool L_12;
L_12 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_11, _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3, NULL);
if (!L_12)
{
goto IL_0066_1;
}
}
{
String_t* L_13 = ___namespaceName2;
bool L_14;
L_14 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_13, _stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE, NULL);
if (L_14)
{
goto IL_006f_1;
}
}
IL_0066_1:
{
String_t* L_15 = ___namespaceName2;
String_t* L_16;
L_16 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(30 /* System.String System.Xml.XmlWriter::LookupPrefix(System.String) */, __this, L_15);
___prefix0 = L_16;
}
IL_006f_1:
{
String_t* L_17 = ___prefix0;
if (L_17)
{
goto IL_0079_1;
}
}
{
String_t* L_18 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
___prefix0 = L_18;
}
IL_0079_1:
{
String_t* L_19 = ___namespaceName2;
if (L_19)
{
goto IL_009b_1;
}
}
{
String_t* L_20 = ___prefix0;
if (!L_20)
{
goto IL_0091_1;
}
}
{
String_t* L_21 = ___prefix0;
NullCheck(L_21);
int32_t L_22;
L_22 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_21, NULL);
if ((((int32_t)L_22) <= ((int32_t)0)))
{
goto IL_0091_1;
}
}
{
String_t* L_23 = ___prefix0;
String_t* L_24;
L_24 = XmlWellFormedWriter_LookupNamespace_m501ADAA8012BE57824EAE59C5F58BE37E477A92A(__this, L_23, NULL);
___namespaceName2 = L_24;
}
IL_0091_1:
{
String_t* L_25 = ___namespaceName2;
if (L_25)
{
goto IL_009b_1;
}
}
{
String_t* L_26 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
___namespaceName2 = L_26;
}
IL_009b_1:
{
String_t* L_27 = ___prefix0;
NullCheck(L_27);
int32_t L_28;
L_28 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_27, NULL);
if (L_28)
{
goto IL_012b_1;
}
}
{
String_t* L_29 = ___localName1;
NullCheck(L_29);
Il2CppChar L_30;
L_30 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_29, 0, NULL);
if ((!(((uint32_t)L_30) == ((uint32_t)((int32_t)120)))))
{
goto IL_00fb_1;
}
}
{
String_t* L_31 = ___localName1;
bool L_32;
L_32 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_31, _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3, NULL);
if (!L_32)
{
goto IL_00fb_1;
}
}
{
String_t* L_33 = ___namespaceName2;
NullCheck(L_33);
int32_t L_34;
L_34 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_33, NULL);
if ((((int32_t)L_34) <= ((int32_t)0)))
{
goto IL_00e4_1;
}
}
{
String_t* L_35 = ___namespaceName2;
bool L_36;
L_36 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_35, _stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE, NULL);
if (!L_36)
{
goto IL_00e4_1;
}
}
{
String_t* L_37;
L_37 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral33225D2308B5FA9B4FC47DE1A1D06D718E1911ED)), NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_38 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_38);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_38, L_37, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_38, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteStartAttribute_m083009DC319DE10D4F037AE40D27EB7F2CDB0481_RuntimeMethod_var)));
}
IL_00e4_1:
{
String_t* L_39 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
__this->___curDeclPrefix_15 = L_39;
Il2CppCodeGenWriteBarrier((void**)(&__this->___curDeclPrefix_15), (void*)L_39);
XmlWellFormedWriter_SetSpecialAttribute_mFEA92893370DC5628286BE51411265E4B192FC89(__this, 1, NULL);
goto IL_0224_1;
}
IL_00fb_1:
{
String_t* L_40 = ___namespaceName2;
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_0214_1;
}
}
{
String_t* L_42 = ___namespaceName2;
String_t* L_43;
L_43 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(30 /* System.String System.Xml.XmlWriter::LookupPrefix(System.String) */, __this, L_42);
___prefix0 = L_43;
String_t* L_44 = ___prefix0;
if (!L_44)
{
goto IL_011e_1;
}
}
{
String_t* L_45 = ___prefix0;
NullCheck(L_45);
int32_t L_46;
L_46 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_45, NULL);
if (L_46)
{
goto IL_0214_1;
}
}
IL_011e_1:
{
String_t* L_47;
L_47 = XmlWellFormedWriter_GeneratePrefix_m6F8B4A6EAE7C5C9DA82990E47A1F891F8F1E526C(__this, NULL);
___prefix0 = L_47;
goto IL_0214_1;
}
IL_012b_1:
{
String_t* L_48 = ___prefix0;
NullCheck(L_48);
Il2CppChar L_49;
L_49 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_48, 0, NULL);
if ((!(((uint32_t)L_49) == ((uint32_t)((int32_t)120)))))
{
goto IL_01e0_1;
}
}
{
String_t* L_50 = ___prefix0;
bool L_51;
L_51 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_50, _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3, NULL);
if (!L_51)
{
goto IL_017f_1;
}
}
{
String_t* L_52 = ___namespaceName2;
NullCheck(L_52);
int32_t L_53;
L_53 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_52, NULL);
if ((((int32_t)L_53) <= ((int32_t)0)))
{
goto IL_016c_1;
}
}
{
String_t* L_54 = ___namespaceName2;
bool L_55;
L_55 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_54, _stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE, NULL);
if (!L_55)
{
goto IL_016c_1;
}
}
{
String_t* L_56;
L_56 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral33225D2308B5FA9B4FC47DE1A1D06D718E1911ED)), NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_57 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_57);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_57, L_56, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_57, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteStartAttribute_m083009DC319DE10D4F037AE40D27EB7F2CDB0481_RuntimeMethod_var)));
}
IL_016c_1:
{
String_t* L_58 = ___localName1;
__this->___curDeclPrefix_15 = L_58;
Il2CppCodeGenWriteBarrier((void**)(&__this->___curDeclPrefix_15), (void*)L_58);
XmlWellFormedWriter_SetSpecialAttribute_mFEA92893370DC5628286BE51411265E4B192FC89(__this, 2, NULL);
goto IL_0224_1;
}
IL_017f_1:
{
String_t* L_59 = ___prefix0;
bool L_60;
L_60 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_59, _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158, NULL);
if (!L_60)
{
goto IL_01e0_1;
}
}
{
String_t* L_61 = ___namespaceName2;
NullCheck(L_61);
int32_t L_62;
L_62 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_61, NULL);
if ((((int32_t)L_62) <= ((int32_t)0)))
{
goto IL_01b2_1;
}
}
{
String_t* L_63 = ___namespaceName2;
bool L_64;
L_64 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_63, _stringLiteral349C6DC0F34B9BA242E4C728EDD28CAB809D4917, NULL);
if (!L_64)
{
goto IL_01b2_1;
}
}
{
String_t* L_65;
L_65 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8E7DF6980ECEA2C11D2FD74A57D449FC8CFA87AE)), NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_66 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_66);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_66, L_65, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_66, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteStartAttribute_m083009DC319DE10D4F037AE40D27EB7F2CDB0481_RuntimeMethod_var)));
}
IL_01b2_1:
{
String_t* L_67 = ___localName1;
bool L_68;
L_68 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_67, _stringLiteralE1291C4D47635E327ECFE39842BD1A93F58C61A2, NULL);
if (L_68)
{
goto IL_01ce_1;
}
}
{
String_t* L_69 = ___localName1;
bool L_70;
L_70 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_69, _stringLiteral1CBC514CBF721C4C5F12F67F33B3E7694BCD1B29, NULL);
if (L_70)
{
goto IL_01d7_1;
}
}
{
goto IL_01e0_1;
}
IL_01ce_1:
{
XmlWellFormedWriter_SetSpecialAttribute_mFEA92893370DC5628286BE51411265E4B192FC89(__this, 3, NULL);
goto IL_0224_1;
}
IL_01d7_1:
{
XmlWellFormedWriter_SetSpecialAttribute_mFEA92893370DC5628286BE51411265E4B192FC89(__this, 4, NULL);
goto IL_0224_1;
}
IL_01e0_1:
{
String_t* L_71 = ___prefix0;
XmlWellFormedWriter_CheckNCName_m60D4A447D593BEF77DFDAAA31CDD019361B55D2A(__this, L_71, NULL);
String_t* L_72 = ___namespaceName2;
NullCheck(L_72);
int32_t L_73;
L_73 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_72, NULL);
if (L_73)
{
goto IL_01f8_1;
}
}
{
String_t* L_74 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
___prefix0 = L_74;
goto IL_0214_1;
}
IL_01f8_1:
{
String_t* L_75 = ___prefix0;
String_t* L_76;
L_76 = XmlWellFormedWriter_LookupLocalNamespace_m9CB41195FFE549CD9D223709B79119038A67BC79(__this, L_75, NULL);
V_0 = L_76;
String_t* L_77 = V_0;
if (!L_77)
{
goto IL_0214_1;
}
}
{
String_t* L_78 = V_0;
String_t* L_79 = ___namespaceName2;
bool L_80;
L_80 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_78, L_79, NULL);
if (!L_80)
{
goto IL_0214_1;
}
}
{
String_t* L_81;
L_81 = XmlWellFormedWriter_GeneratePrefix_m6F8B4A6EAE7C5C9DA82990E47A1F891F8F1E526C(__this, NULL);
___prefix0 = L_81;
}
IL_0214_1:
{
String_t* L_82 = ___prefix0;
NullCheck(L_82);
int32_t L_83;
L_83 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_82, NULL);
if (!L_83)
{
goto IL_0224_1;
}
}
{
String_t* L_84 = ___prefix0;
String_t* L_85 = ___namespaceName2;
XmlWellFormedWriter_PushNamespaceImplicit_mA1D3FFBB0CC8895E7237F3EFB2A6B425346D8267(__this, L_84, L_85, NULL);
}
IL_0224_1:
{
String_t* L_86 = ___prefix0;
String_t* L_87 = ___localName1;
String_t* L_88 = ___namespaceName2;
XmlWellFormedWriter_AddAttribute_mAE42EFE8C45E46B4DBCEE7E95A75D860D35FC4D4(__this, L_86, L_87, L_88, NULL);
int32_t L_89 = __this->___specAttr_13;
if (L_89)
{
goto IL_0243_1;
}
}
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_90 = __this->___writer_1;
String_t* L_91 = ___prefix0;
String_t* L_92 = ___localName1;
String_t* L_93 = ___namespaceName2;
NullCheck(L_90);
VirtualActionInvoker3< String_t*, String_t*, String_t* >::Invoke(12 /* System.Void System.Xml.XmlWriter::WriteStartAttribute(System.String,System.String,System.String) */, L_90, L_91, L_92, L_93);
}
IL_0243_1:
{
goto IL_0250;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0245;
}
throw e;
}
CATCH_0245:
{// begin catch(System.Object)
__this->___currentState_17 = ((int32_t)16);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteStartAttribute_m083009DC319DE10D4F037AE40D27EB7F2CDB0481_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_0250:
{
return;
}
}
// System.Void System.Xml.XmlWellFormedWriter::WriteEndAttribute()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_WriteEndAttribute_mEFA1CC155A614CDB62294E2A5C34A36E657BAF10 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __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*)&_stringLiteral1CBC514CBF721C4C5F12F67F33B3E7694BCD1B29);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral349C6DC0F34B9BA242E4C728EDD28CAB809D4917);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral916F4E7879C25AF1EA844F7068842D5508777C48);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE1291C4D47635E327ECFE39842BD1A93F58C61A2);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
int32_t V_1 = 0;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
{
XmlWellFormedWriter_AdvanceState_m0E77F31CDB1071771578075FC87D0BF0D208D8E1(__this, 8, NULL);
int32_t L_0 = __this->___specAttr_13;
if (!L_0)
{
goto IL_031a_1;
}
}
{
int32_t L_1 = __this->___specAttr_13;
V_1 = L_1;
int32_t L_2 = V_1;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_2, 1)))
{
case 0:
{
goto IL_0036_1;
}
case 1:
{
goto IL_00eb_1;
}
case 2:
{
goto IL_01f8_1;
}
case 3:
{
goto IL_02ad_1;
}
}
}
{
goto IL_0306_1;
}
IL_0036_1:
{
AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* L_3 = __this->___attrValueCache_14;
NullCheck(L_3);
String_t* L_4;
L_4 = AttributeValueCache_get_StringValue_m369D8C130C793C4646C02209CF225F4B79F5A8F3(L_3, NULL);
V_0 = L_4;
String_t* L_5 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
String_t* L_6 = V_0;
bool L_7;
L_7 = XmlWellFormedWriter_PushNamespaceExplicit_m2D2DD37D41835C6CF41605F5DF0EFE69FD500A43(__this, L_5, L_6, NULL);
if (!L_7)
{
goto IL_00df_1;
}
}
{
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_8 = __this->___rawWriter_2;
if (!L_8)
{
goto IL_00a9_1;
}
}
{
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_9 = __this->___rawWriter_2;
NullCheck(L_9);
bool L_10;
L_10 = VirtualFuncInvoker0< bool >::Invoke(43 /* System.Boolean System.Xml.XmlRawWriter::get_SupportsNamespaceDeclarationInChunks() */, L_9);
if (!L_10)
{
goto IL_0096_1;
}
}
{
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_11 = __this->___rawWriter_2;
String_t* L_12 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
NullCheck(L_11);
VirtualActionInvoker1< String_t* >::Invoke(44 /* System.Void System.Xml.XmlRawWriter::WriteStartNamespaceDeclaration(System.String) */, L_11, L_12);
AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* L_13 = __this->___attrValueCache_14;
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_14 = __this->___rawWriter_2;
NullCheck(L_13);
AttributeValueCache_Replay_mE754CA61E7242ADAC63CD9F464D80C73E0588955(L_13, L_14, NULL);
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_15 = __this->___rawWriter_2;
NullCheck(L_15);
VirtualActionInvoker0::Invoke(45 /* System.Void System.Xml.XmlRawWriter::WriteEndNamespaceDeclaration() */, L_15);
goto IL_00df_1;
}
IL_0096_1:
{
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_16 = __this->___rawWriter_2;
String_t* L_17 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
String_t* L_18 = V_0;
NullCheck(L_16);
VirtualActionInvoker2< String_t*, String_t* >::Invoke(42 /* System.Void System.Xml.XmlRawWriter::WriteNamespaceDeclaration(System.String,System.String) */, L_16, L_17, L_18);
goto IL_00df_1;
}
IL_00a9_1:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_19 = __this->___writer_1;
String_t* L_20 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
NullCheck(L_19);
VirtualActionInvoker3< String_t*, String_t*, String_t* >::Invoke(12 /* System.Void System.Xml.XmlWriter::WriteStartAttribute(System.String,System.String,System.String) */, L_19, L_20, _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3, _stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE);
AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* L_21 = __this->___attrValueCache_14;
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_22 = __this->___writer_1;
NullCheck(L_21);
AttributeValueCache_Replay_mE754CA61E7242ADAC63CD9F464D80C73E0588955(L_21, L_22, NULL);
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_23 = __this->___writer_1;
NullCheck(L_23);
VirtualActionInvoker0::Invoke(13 /* System.Void System.Xml.XmlWriter::WriteEndAttribute() */, L_23);
}
IL_00df_1:
{
__this->___curDeclPrefix_15 = (String_t*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___curDeclPrefix_15), (void*)(String_t*)NULL);
goto IL_0306_1;
}
IL_00eb_1:
{
AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* L_24 = __this->___attrValueCache_14;
NullCheck(L_24);
String_t* L_25;
L_25 = AttributeValueCache_get_StringValue_m369D8C130C793C4646C02209CF225F4B79F5A8F3(L_24, NULL);
V_0 = L_25;
String_t* L_26 = V_0;
NullCheck(L_26);
int32_t L_27;
L_27 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_26, NULL);
if (L_27)
{
goto IL_010f_1;
}
}
{
String_t* L_28;
L_28 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB63A1A23B65582B8791AA4E655E90AA5647D7298)), NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_29 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_29);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_29, L_28, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteEndAttribute_mEFA1CC155A614CDB62294E2A5C34A36E657BAF10_RuntimeMethod_var)));
}
IL_010f_1:
{
String_t* L_30 = V_0;
bool L_31;
L_31 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_30, _stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE, NULL);
if (L_31)
{
goto IL_013b_1;
}
}
{
String_t* L_32 = V_0;
bool L_33;
L_33 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_32, _stringLiteral349C6DC0F34B9BA242E4C728EDD28CAB809D4917, NULL);
if (!L_33)
{
goto IL_014b_1;
}
}
{
String_t* L_34 = __this->___curDeclPrefix_15;
bool L_35;
L_35 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_34, _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158, NULL);
if (!L_35)
{
goto IL_014b_1;
}
}
IL_013b_1:
{
String_t* L_36;
L_36 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral197DB4D12C3F8F844439AC8086D04A7E9906FD24)), NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_37 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_37);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_37, L_36, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_37, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteEndAttribute_mEFA1CC155A614CDB62294E2A5C34A36E657BAF10_RuntimeMethod_var)));
}
IL_014b_1:
{
String_t* L_38 = __this->___curDeclPrefix_15;
String_t* L_39 = V_0;
bool L_40;
L_40 = XmlWellFormedWriter_PushNamespaceExplicit_m2D2DD37D41835C6CF41605F5DF0EFE69FD500A43(__this, L_38, L_39, NULL);
if (!L_40)
{
goto IL_01ec_1;
}
}
{
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_41 = __this->___rawWriter_2;
if (!L_41)
{
goto IL_01b5_1;
}
}
{
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_42 = __this->___rawWriter_2;
NullCheck(L_42);
bool L_43;
L_43 = VirtualFuncInvoker0< bool >::Invoke(43 /* System.Boolean System.Xml.XmlRawWriter::get_SupportsNamespaceDeclarationInChunks() */, L_42);
if (!L_43)
{
goto IL_01a1_1;
}
}
{
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_44 = __this->___rawWriter_2;
String_t* L_45 = __this->___curDeclPrefix_15;
NullCheck(L_44);
VirtualActionInvoker1< String_t* >::Invoke(44 /* System.Void System.Xml.XmlRawWriter::WriteStartNamespaceDeclaration(System.String) */, L_44, L_45);
AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* L_46 = __this->___attrValueCache_14;
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_47 = __this->___rawWriter_2;
NullCheck(L_46);
AttributeValueCache_Replay_mE754CA61E7242ADAC63CD9F464D80C73E0588955(L_46, L_47, NULL);
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_48 = __this->___rawWriter_2;
NullCheck(L_48);
VirtualActionInvoker0::Invoke(45 /* System.Void System.Xml.XmlRawWriter::WriteEndNamespaceDeclaration() */, L_48);
goto IL_01ec_1;
}
IL_01a1_1:
{
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_49 = __this->___rawWriter_2;
String_t* L_50 = __this->___curDeclPrefix_15;
String_t* L_51 = V_0;
NullCheck(L_49);
VirtualActionInvoker2< String_t*, String_t* >::Invoke(42 /* System.Void System.Xml.XmlRawWriter::WriteNamespaceDeclaration(System.String,System.String) */, L_49, L_50, L_51);
goto IL_01ec_1;
}
IL_01b5_1:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_52 = __this->___writer_1;
String_t* L_53 = __this->___curDeclPrefix_15;
NullCheck(L_52);
VirtualActionInvoker3< String_t*, String_t*, String_t* >::Invoke(12 /* System.Void System.Xml.XmlWriter::WriteStartAttribute(System.String,System.String,System.String) */, L_52, _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3, L_53, _stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE);
AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* L_54 = __this->___attrValueCache_14;
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_55 = __this->___writer_1;
NullCheck(L_54);
AttributeValueCache_Replay_mE754CA61E7242ADAC63CD9F464D80C73E0588955(L_54, L_55, NULL);
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_56 = __this->___writer_1;
NullCheck(L_56);
VirtualActionInvoker0::Invoke(13 /* System.Void System.Xml.XmlWriter::WriteEndAttribute() */, L_56);
}
IL_01ec_1:
{
__this->___curDeclPrefix_15 = (String_t*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___curDeclPrefix_15), (void*)(String_t*)NULL);
goto IL_0306_1;
}
IL_01f8_1:
{
AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* L_57 = __this->___attrValueCache_14;
NullCheck(L_57);
AttributeValueCache_Trim_m7508E1B61AAC65605922B79215050FA1BB874118(L_57, NULL);
AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* L_58 = __this->___attrValueCache_14;
NullCheck(L_58);
String_t* L_59;
L_59 = AttributeValueCache_get_StringValue_m369D8C130C793C4646C02209CF225F4B79F5A8F3(L_58, NULL);
V_0 = L_59;
String_t* L_60 = V_0;
bool L_61;
L_61 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_60, _stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044, NULL);
if (!L_61)
{
goto IL_0235_1;
}
}
{
ElementScopeU5BU5D_t68B3D6D2E3C34832F1D1BBDB096CCF5270D5DBD9* L_62 = __this->___elemScopeStack_8;
int32_t L_63 = __this->___elemTop_9;
NullCheck(L_62);
((L_62)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_63)))->___xmlSpace_4 = 1;
goto IL_0275_1;
}
IL_0235_1:
{
String_t* L_64 = V_0;
bool L_65;
L_65 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_64, _stringLiteral916F4E7879C25AF1EA844F7068842D5508777C48, NULL);
if (!L_65)
{
goto IL_025b_1;
}
}
{
ElementScopeU5BU5D_t68B3D6D2E3C34832F1D1BBDB096CCF5270D5DBD9* L_66 = __this->___elemScopeStack_8;
int32_t L_67 = __this->___elemTop_9;
NullCheck(L_66);
((L_66)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_67)))->___xmlSpace_4 = 2;
goto IL_0275_1;
}
IL_025b_1:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_68 = (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_69 = L_68;
String_t* L_70 = V_0;
NullCheck(L_69);
ArrayElementTypeCheck (L_69, L_70);
(L_69)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_70);
String_t* L_71;
L_71 = Res_GetString_mB929E696BF2E2F27CD03C0B61301A9DFE2FDEEF9(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB76F93064E827FE764713C55F705D2E388DF17D7)), L_69, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_72 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_72);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_72, L_71, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_72, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteEndAttribute_mEFA1CC155A614CDB62294E2A5C34A36E657BAF10_RuntimeMethod_var)));
}
IL_0275_1:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_73 = __this->___writer_1;
NullCheck(L_73);
VirtualActionInvoker3< String_t*, String_t*, String_t* >::Invoke(12 /* System.Void System.Xml.XmlWriter::WriteStartAttribute(System.String,System.String,System.String) */, L_73, _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158, _stringLiteralE1291C4D47635E327ECFE39842BD1A93F58C61A2, _stringLiteral349C6DC0F34B9BA242E4C728EDD28CAB809D4917);
AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* L_74 = __this->___attrValueCache_14;
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_75 = __this->___writer_1;
NullCheck(L_74);
AttributeValueCache_Replay_mE754CA61E7242ADAC63CD9F464D80C73E0588955(L_74, L_75, NULL);
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_76 = __this->___writer_1;
NullCheck(L_76);
VirtualActionInvoker0::Invoke(13 /* System.Void System.Xml.XmlWriter::WriteEndAttribute() */, L_76);
goto IL_0306_1;
}
IL_02ad_1:
{
AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* L_77 = __this->___attrValueCache_14;
NullCheck(L_77);
String_t* L_78;
L_78 = AttributeValueCache_get_StringValue_m369D8C130C793C4646C02209CF225F4B79F5A8F3(L_77, NULL);
V_0 = L_78;
ElementScopeU5BU5D_t68B3D6D2E3C34832F1D1BBDB096CCF5270D5DBD9* L_79 = __this->___elemScopeStack_8;
int32_t L_80 = __this->___elemTop_9;
NullCheck(L_79);
String_t* L_81 = V_0;
((L_79)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_80)))->___xmlLang_5 = L_81;
Il2CppCodeGenWriteBarrier((void**)(&((L_79)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_80)))->___xmlLang_5), (void*)L_81);
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_82 = __this->___writer_1;
NullCheck(L_82);
VirtualActionInvoker3< String_t*, String_t*, String_t* >::Invoke(12 /* System.Void System.Xml.XmlWriter::WriteStartAttribute(System.String,System.String,System.String) */, L_82, _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158, _stringLiteral1CBC514CBF721C4C5F12F67F33B3E7694BCD1B29, _stringLiteral349C6DC0F34B9BA242E4C728EDD28CAB809D4917);
AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* L_83 = __this->___attrValueCache_14;
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_84 = __this->___writer_1;
NullCheck(L_83);
AttributeValueCache_Replay_mE754CA61E7242ADAC63CD9F464D80C73E0588955(L_83, L_84, NULL);
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_85 = __this->___writer_1;
NullCheck(L_85);
VirtualActionInvoker0::Invoke(13 /* System.Void System.Xml.XmlWriter::WriteEndAttribute() */, L_85);
}
IL_0306_1:
{
__this->___specAttr_13 = 0;
AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* L_86 = __this->___attrValueCache_14;
NullCheck(L_86);
AttributeValueCache_Clear_m39DF6AD7750029A3BCD050BA64FE0EC44D3865E2(L_86, NULL);
goto IL_0325_1;
}
IL_031a_1:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_87 = __this->___writer_1;
NullCheck(L_87);
VirtualActionInvoker0::Invoke(13 /* System.Void System.Xml.XmlWriter::WriteEndAttribute() */, L_87);
}
IL_0325_1:
{
goto IL_0332;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0327;
}
throw e;
}
CATCH_0327:
{// begin catch(System.Object)
__this->___currentState_17 = ((int32_t)16);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteEndAttribute_mEFA1CC155A614CDB62294E2A5C34A36E657BAF10_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_0332:
{
return;
}
}
// System.Void System.Xml.XmlWellFormedWriter::WriteCData(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_WriteCData_mC23237FAE56E3DCD60B913A3F102ED0F6EA542AF (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, String_t* ___text0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
{
String_t* L_0 = ___text0;
if (L_0)
{
goto IL_000a_1;
}
}
{
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
___text0 = L_1;
}
IL_000a_1:
{
XmlWellFormedWriter_AdvanceState_m0E77F31CDB1071771578075FC87D0BF0D208D8E1(__this, ((int32_t)10), NULL);
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_2 = __this->___writer_1;
String_t* L_3 = ___text0;
NullCheck(L_2);
VirtualActionInvoker1< String_t* >::Invoke(14 /* System.Void System.Xml.XmlWriter::WriteCData(System.String) */, L_2, L_3);
goto IL_002b;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0020;
}
throw e;
}
CATCH_0020:
{// begin catch(System.Object)
__this->___currentState_17 = ((int32_t)16);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteCData_mC23237FAE56E3DCD60B913A3F102ED0F6EA542AF_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_002b:
{
return;
}
}
// System.Void System.Xml.XmlWellFormedWriter::WriteComment(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_WriteComment_m07DE2BC5A363CA4A037776A667A8F10A11FB5F8F (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, String_t* ___text0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
{
String_t* L_0 = ___text0;
if (L_0)
{
goto IL_000a_1;
}
}
{
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
___text0 = L_1;
}
IL_000a_1:
{
XmlWellFormedWriter_AdvanceState_m0E77F31CDB1071771578075FC87D0BF0D208D8E1(__this, 3, NULL);
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_2 = __this->___writer_1;
String_t* L_3 = ___text0;
NullCheck(L_2);
VirtualActionInvoker1< String_t* >::Invoke(15 /* System.Void System.Xml.XmlWriter::WriteComment(System.String) */, L_2, L_3);
goto IL_002a;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_001f;
}
throw e;
}
CATCH_001f:
{// begin catch(System.Object)
__this->___currentState_17 = ((int32_t)16);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteComment_m07DE2BC5A363CA4A037776A667A8F10A11FB5F8F_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_002a:
{
return;
}
}
// System.Void System.Xml.XmlWellFormedWriter::WriteProcessingInstruction(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_WriteProcessingInstruction_m95C599B96B8BBA61EA9AD3090DB72C6B9FE4EAD1 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, String_t* ___name0, String_t* ___text1, 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*)&_stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158);
s_Il2CppMethodInitialized = true;
}
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
String_t* G_B11_0 = NULL;
try
{// begin try (depth: 1)
{
String_t* L_0 = ___name0;
if (!L_0)
{
goto IL_000b_1;
}
}
{
String_t* L_1 = ___name0;
NullCheck(L_1);
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL);
if (L_2)
{
goto IL_001b_1;
}
}
IL_000b_1:
{
String_t* L_3;
L_3 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4F463628A5B55C40369849BC669644FDA7E2FD4E)), 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*)&XmlWellFormedWriter_WriteProcessingInstruction_m95C599B96B8BBA61EA9AD3090DB72C6B9FE4EAD1_RuntimeMethod_var)));
}
IL_001b_1:
{
String_t* L_5 = ___name0;
XmlWellFormedWriter_CheckNCName_m60D4A447D593BEF77DFDAAA31CDD019361B55D2A(__this, L_5, NULL);
String_t* L_6 = ___text1;
if (L_6)
{
goto IL_002c_1;
}
}
{
String_t* L_7 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
___text1 = L_7;
}
IL_002c_1:
{
String_t* L_8 = ___name0;
NullCheck(L_8);
int32_t L_9;
L_9 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_8, NULL);
if ((!(((uint32_t)L_9) == ((uint32_t)3))))
{
goto IL_009e_1;
}
}
{
String_t* L_10 = ___name0;
int32_t L_11;
L_11 = String_Compare_mC553A80AD870F5777F0E8B5E705B0205396B9D3E(L_10, _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158, 5, NULL);
if (L_11)
{
goto IL_009e_1;
}
}
{
int32_t L_12 = __this->___currentState_17;
if (!L_12)
{
goto IL_006b_1;
}
}
{
int32_t L_13 = __this->___conformanceLevel_21;
if ((((int32_t)L_13) == ((int32_t)2)))
{
goto IL_005b_1;
}
}
{
G_B11_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral05F052FB531BF7DCEB556C41188DF51428B5D59A));
goto IL_0060_1;
}
IL_005b_1:
{
G_B11_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2A5DB3F00E0A45A734A36392B86940BEE1159FC8));
}
IL_0060_1:
{
String_t* L_14;
L_14 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(G_B11_0, 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*)&XmlWellFormedWriter_WriteProcessingInstruction_m95C599B96B8BBA61EA9AD3090DB72C6B9FE4EAD1_RuntimeMethod_var)));
}
IL_006b_1:
{
__this->___xmlDeclFollows_23 = (bool)1;
XmlWellFormedWriter_AdvanceState_m0E77F31CDB1071771578075FC87D0BF0D208D8E1(__this, 2, NULL);
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_16 = __this->___rawWriter_2;
if (!L_16)
{
goto IL_008f_1;
}
}
{
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_17 = __this->___rawWriter_2;
String_t* L_18 = ___text1;
NullCheck(L_17);
VirtualActionInvoker1< String_t* >::Invoke(37 /* System.Void System.Xml.XmlRawWriter::WriteXmlDeclaration(System.String) */, L_17, L_18);
goto IL_00b2_1;
}
IL_008f_1:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_19 = __this->___writer_1;
String_t* L_20 = ___name0;
String_t* L_21 = ___text1;
NullCheck(L_19);
VirtualActionInvoker2< String_t*, String_t* >::Invoke(16 /* System.Void System.Xml.XmlWriter::WriteProcessingInstruction(System.String,System.String) */, L_19, L_20, L_21);
goto IL_00b2_1;
}
IL_009e_1:
{
XmlWellFormedWriter_AdvanceState_m0E77F31CDB1071771578075FC87D0BF0D208D8E1(__this, 2, NULL);
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_22 = __this->___writer_1;
String_t* L_23 = ___name0;
String_t* L_24 = ___text1;
NullCheck(L_22);
VirtualActionInvoker2< String_t*, String_t* >::Invoke(16 /* System.Void System.Xml.XmlWriter::WriteProcessingInstruction(System.String,System.String) */, L_22, L_23, L_24);
}
IL_00b2_1:
{
goto IL_00bf;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_00b4;
}
throw e;
}
CATCH_00b4:
{// begin catch(System.Object)
__this->___currentState_17 = ((int32_t)16);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteProcessingInstruction_m95C599B96B8BBA61EA9AD3090DB72C6B9FE4EAD1_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_00bf:
{
return;
}
}
// System.Void System.Xml.XmlWellFormedWriter::WriteEntityRef(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_WriteEntityRef_mF2FC7A2CADC2114DC7C862016781F9BFC54FABA8 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, String_t* ___name0, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
{
String_t* L_0 = ___name0;
if (!L_0)
{
goto IL_000b_1;
}
}
{
String_t* L_1 = ___name0;
NullCheck(L_1);
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL);
if (L_2)
{
goto IL_001b_1;
}
}
IL_000b_1:
{
String_t* L_3;
L_3 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4F463628A5B55C40369849BC669644FDA7E2FD4E)), 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*)&XmlWellFormedWriter_WriteEntityRef_mF2FC7A2CADC2114DC7C862016781F9BFC54FABA8_RuntimeMethod_var)));
}
IL_001b_1:
{
String_t* L_5 = ___name0;
XmlWellFormedWriter_CheckNCName_m60D4A447D593BEF77DFDAAA31CDD019361B55D2A(__this, L_5, NULL);
XmlWellFormedWriter_AdvanceState_m0E77F31CDB1071771578075FC87D0BF0D208D8E1(__this, ((int32_t)9), NULL);
bool L_6;
L_6 = XmlWellFormedWriter_get_SaveAttrValue_m308EBEC9707BA9CB0B0281395F7C6183FCCD84E6(__this, NULL);
if (!L_6)
{
goto IL_0040_1;
}
}
{
AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* L_7 = __this->___attrValueCache_14;
String_t* L_8 = ___name0;
NullCheck(L_7);
AttributeValueCache_WriteEntityRef_mD5EE425B29BE07E3E9744AAB845810875B245532(L_7, L_8, NULL);
goto IL_004c_1;
}
IL_0040_1:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_9 = __this->___writer_1;
String_t* L_10 = ___name0;
NullCheck(L_9);
VirtualActionInvoker1< String_t* >::Invoke(17 /* System.Void System.Xml.XmlWriter::WriteEntityRef(System.String) */, L_9, L_10);
}
IL_004c_1:
{
goto IL_0059;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_004e;
}
throw e;
}
CATCH_004e:
{// begin catch(System.Object)
__this->___currentState_17 = ((int32_t)16);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteEntityRef_mF2FC7A2CADC2114DC7C862016781F9BFC54FABA8_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_0059:
{
return;
}
}
// System.Void System.Xml.XmlWellFormedWriter::WriteCharEntity(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_WriteCharEntity_m99918CACFDC1943936AA750C9D403016BFC4EE38 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, Il2CppChar ___ch0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
{
Il2CppChar L_0 = ___ch0;
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Char_IsSurrogate_mAA37183DD9C3A6CB9B8107F24D00BCB9B76ECA02(L_0, NULL);
if (!L_1)
{
goto IL_0018_1;
}
}
{
String_t* L_2;
L_2 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFE53A3AF35DC43A86F8AA824C5449731805C32DD)), 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*)&XmlWellFormedWriter_WriteCharEntity_m99918CACFDC1943936AA750C9D403016BFC4EE38_RuntimeMethod_var)));
}
IL_0018_1:
{
XmlWellFormedWriter_AdvanceState_m0E77F31CDB1071771578075FC87D0BF0D208D8E1(__this, ((int32_t)9), NULL);
bool L_4;
L_4 = XmlWellFormedWriter_get_SaveAttrValue_m308EBEC9707BA9CB0B0281395F7C6183FCCD84E6(__this, NULL);
if (!L_4)
{
goto IL_0036_1;
}
}
{
AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* L_5 = __this->___attrValueCache_14;
Il2CppChar L_6 = ___ch0;
NullCheck(L_5);
AttributeValueCache_WriteCharEntity_m8C4986F0935BC85657B0765214E4B6C7D06874D4(L_5, L_6, NULL);
goto IL_0042_1;
}
IL_0036_1:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_7 = __this->___writer_1;
Il2CppChar L_8 = ___ch0;
NullCheck(L_7);
VirtualActionInvoker1< Il2CppChar >::Invoke(18 /* System.Void System.Xml.XmlWriter::WriteCharEntity(System.Char) */, L_7, L_8);
}
IL_0042_1:
{
goto IL_004f;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0044;
}
throw e;
}
CATCH_0044:
{// begin catch(System.Object)
__this->___currentState_17 = ((int32_t)16);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteCharEntity_m99918CACFDC1943936AA750C9D403016BFC4EE38_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_004f:
{
return;
}
}
// System.Void System.Xml.XmlWellFormedWriter::WriteSurrogateCharEntity(System.Char,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_WriteSurrogateCharEntity_m7C8E107B0B6825531FFA38267746849C88A914A3 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, Il2CppChar ___lowChar0, Il2CppChar ___highChar1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
{
Il2CppChar L_0 = ___highChar1;
Il2CppChar L_1 = ___lowChar0;
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
bool L_2;
L_2 = Char_IsSurrogatePair_m151511C02189357F58B62328B00F1C2BFA24F44E(L_0, L_1, NULL);
if (L_2)
{
goto IL_0011_1;
}
}
{
Il2CppChar L_3 = ___lowChar0;
Il2CppChar L_4 = ___highChar1;
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var)));
Exception_t* L_5;
L_5 = XmlConvert_CreateInvalidSurrogatePairException_m94EB7264908EDA03B0B9136F43A937B33FBB91CC(L_3, L_4, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteSurrogateCharEntity_m7C8E107B0B6825531FFA38267746849C88A914A3_RuntimeMethod_var)));
}
IL_0011_1:
{
XmlWellFormedWriter_AdvanceState_m0E77F31CDB1071771578075FC87D0BF0D208D8E1(__this, ((int32_t)9), NULL);
bool L_6;
L_6 = XmlWellFormedWriter_get_SaveAttrValue_m308EBEC9707BA9CB0B0281395F7C6183FCCD84E6(__this, NULL);
if (!L_6)
{
goto IL_0030_1;
}
}
{
AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* L_7 = __this->___attrValueCache_14;
Il2CppChar L_8 = ___lowChar0;
Il2CppChar L_9 = ___highChar1;
NullCheck(L_7);
AttributeValueCache_WriteSurrogateCharEntity_mF393DE85027E7D4FF1B08D98F0C6F324D986F570(L_7, L_8, L_9, NULL);
goto IL_003d_1;
}
IL_0030_1:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_10 = __this->___writer_1;
Il2CppChar L_11 = ___lowChar0;
Il2CppChar L_12 = ___highChar1;
NullCheck(L_10);
VirtualActionInvoker2< Il2CppChar, Il2CppChar >::Invoke(21 /* System.Void System.Xml.XmlWriter::WriteSurrogateCharEntity(System.Char,System.Char) */, L_10, L_11, L_12);
}
IL_003d_1:
{
goto IL_004a;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_003f;
}
throw e;
}
CATCH_003f:
{// begin catch(System.Object)
__this->___currentState_17 = ((int32_t)16);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteSurrogateCharEntity_m7C8E107B0B6825531FFA38267746849C88A914A3_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_004a:
{
return;
}
}
// System.Void System.Xml.XmlWellFormedWriter::WriteWhitespace(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_WriteWhitespace_m95434DCB8764139934630FE04DD05A87291FCFD9 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, String_t* ___ws0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 V_0;
memset((&V_0), 0, sizeof(V_0));
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
{
String_t* L_0 = ___ws0;
if (L_0)
{
goto IL_000a_1;
}
}
{
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
___ws0 = L_1;
}
IL_000a_1:
{
XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 L_2;
L_2 = XmlCharType_get_Instance_m2D4006A9AE9EB033F6A176E31CAFAC7EF30350AD(NULL);
V_0 = L_2;
String_t* L_3 = ___ws0;
bool L_4;
L_4 = XmlCharType_IsOnlyWhitespace_m6A7AD69BFF7BE6878F6984C952284C0755601490((&V_0), L_3, NULL);
if (L_4)
{
goto IL_002a_1;
}
}
{
String_t* L_5;
L_5 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral36C331EB963AAABADAA628EA959A95F64ED7976C)), 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*)&XmlWellFormedWriter_WriteWhitespace_m95434DCB8764139934630FE04DD05A87291FCFD9_RuntimeMethod_var)));
}
IL_002a_1:
{
XmlWellFormedWriter_AdvanceState_m0E77F31CDB1071771578075FC87D0BF0D208D8E1(__this, ((int32_t)14), NULL);
bool L_7;
L_7 = XmlWellFormedWriter_get_SaveAttrValue_m308EBEC9707BA9CB0B0281395F7C6183FCCD84E6(__this, NULL);
if (!L_7)
{
goto IL_0048_1;
}
}
{
AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* L_8 = __this->___attrValueCache_14;
String_t* L_9 = ___ws0;
NullCheck(L_8);
AttributeValueCache_WriteWhitespace_mC30BE0103D7630BC52110A52711F93B0EE77265C(L_8, L_9, NULL);
goto IL_0054_1;
}
IL_0048_1:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_10 = __this->___writer_1;
String_t* L_11 = ___ws0;
NullCheck(L_10);
VirtualActionInvoker1< String_t* >::Invoke(19 /* System.Void System.Xml.XmlWriter::WriteWhitespace(System.String) */, L_10, L_11);
}
IL_0054_1:
{
goto IL_0061;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0056;
}
throw e;
}
CATCH_0056:
{// begin catch(System.Object)
__this->___currentState_17 = ((int32_t)16);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteWhitespace_m95434DCB8764139934630FE04DD05A87291FCFD9_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_0061:
{
return;
}
}
// System.Void System.Xml.XmlWellFormedWriter::WriteString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_WriteString_m8B4E812A0CFAA843CC3FF8F57E1CD0B97748A9A4 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, String_t* ___text0, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
{
String_t* L_0 = ___text0;
if (L_0)
{
goto IL_0005_1;
}
}
{
goto IL_003c;
}
IL_0005_1:
{
XmlWellFormedWriter_AdvanceState_m0E77F31CDB1071771578075FC87D0BF0D208D8E1(__this, ((int32_t)9), NULL);
bool L_1;
L_1 = XmlWellFormedWriter_get_SaveAttrValue_m308EBEC9707BA9CB0B0281395F7C6183FCCD84E6(__this, NULL);
if (!L_1)
{
goto IL_0023_1;
}
}
{
AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* L_2 = __this->___attrValueCache_14;
String_t* L_3 = ___text0;
NullCheck(L_2);
AttributeValueCache_WriteString_mF0E506AB621BED0ED725E43A80743865DC1C7A95(L_2, L_3, NULL);
goto IL_002f_1;
}
IL_0023_1:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_4 = __this->___writer_1;
String_t* L_5 = ___text0;
NullCheck(L_4);
VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, L_4, L_5);
}
IL_002f_1:
{
goto IL_003c;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0031;
}
throw e;
}
CATCH_0031:
{// begin catch(System.Object)
__this->___currentState_17 = ((int32_t)16);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteString_m8B4E812A0CFAA843CC3FF8F57E1CD0B97748A9A4_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_003c:
{
return;
}
}
// System.Void System.Xml.XmlWellFormedWriter::WriteChars(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_WriteChars_mEF9E7BA1D6723E346954A7EA686A336B04EE0572 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___buffer0;
if (L_0)
{
goto IL_000e_1;
}
}
{
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*)&_stringLiteralC263EA29ADF3548CFEBC57B532EED28451A56C10)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteChars_mEF9E7BA1D6723E346954A7EA686A336B04EE0572_RuntimeMethod_var)));
}
IL_000e_1:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) >= ((int32_t)0)))
{
goto IL_001d_1;
}
}
{
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*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteChars_mEF9E7BA1D6723E346954A7EA686A336B04EE0572_RuntimeMethod_var)));
}
IL_001d_1:
{
int32_t L_4 = ___count2;
if ((((int32_t)L_4) >= ((int32_t)0)))
{
goto IL_002c_1;
}
}
{
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*)&XmlWellFormedWriter_WriteChars_mEF9E7BA1D6723E346954A7EA686A336B04EE0572_RuntimeMethod_var)));
}
IL_002c_1:
{
int32_t L_6 = ___count2;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_7 = ___buffer0;
NullCheck(L_7);
int32_t L_8 = ___index1;
if ((((int32_t)L_6) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_7)->max_length)), L_8)))))
{
goto IL_003f_1;
}
}
{
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*)&XmlWellFormedWriter_WriteChars_mEF9E7BA1D6723E346954A7EA686A336B04EE0572_RuntimeMethod_var)));
}
IL_003f_1:
{
XmlWellFormedWriter_AdvanceState_m0E77F31CDB1071771578075FC87D0BF0D208D8E1(__this, ((int32_t)9), NULL);
bool L_10;
L_10 = XmlWellFormedWriter_get_SaveAttrValue_m308EBEC9707BA9CB0B0281395F7C6183FCCD84E6(__this, NULL);
if (!L_10)
{
goto IL_005f_1;
}
}
{
AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* L_11 = __this->___attrValueCache_14;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_12 = ___buffer0;
int32_t L_13 = ___index1;
int32_t L_14 = ___count2;
NullCheck(L_11);
AttributeValueCache_WriteChars_mD4924FAFA5578EDBBA7121540F184F832B83E6B1(L_11, L_12, L_13, L_14, NULL);
goto IL_006d_1;
}
IL_005f_1:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_15 = __this->___writer_1;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_16 = ___buffer0;
int32_t L_17 = ___index1;
int32_t L_18 = ___count2;
NullCheck(L_15);
VirtualActionInvoker3< CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(22 /* System.Void System.Xml.XmlWriter::WriteChars(System.Char[],System.Int32,System.Int32) */, L_15, L_16, L_17, L_18);
}
IL_006d_1:
{
goto IL_007a;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_006f;
}
throw e;
}
CATCH_006f:
{// begin catch(System.Object)
__this->___currentState_17 = ((int32_t)16);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteChars_mEF9E7BA1D6723E346954A7EA686A336B04EE0572_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_007a:
{
return;
}
}
// System.Void System.Xml.XmlWellFormedWriter::WriteRaw(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_WriteRaw_mCA937B08EC0CB47BD8346501C463335AD122D275 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___buffer0;
if (L_0)
{
goto IL_000e_1;
}
}
{
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*)&_stringLiteralC263EA29ADF3548CFEBC57B532EED28451A56C10)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteRaw_mCA937B08EC0CB47BD8346501C463335AD122D275_RuntimeMethod_var)));
}
IL_000e_1:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) >= ((int32_t)0)))
{
goto IL_001d_1;
}
}
{
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*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteRaw_mCA937B08EC0CB47BD8346501C463335AD122D275_RuntimeMethod_var)));
}
IL_001d_1:
{
int32_t L_4 = ___count2;
if ((((int32_t)L_4) >= ((int32_t)0)))
{
goto IL_002c_1;
}
}
{
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*)&XmlWellFormedWriter_WriteRaw_mCA937B08EC0CB47BD8346501C463335AD122D275_RuntimeMethod_var)));
}
IL_002c_1:
{
int32_t L_6 = ___count2;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_7 = ___buffer0;
NullCheck(L_7);
int32_t L_8 = ___index1;
if ((((int32_t)L_6) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_7)->max_length)), L_8)))))
{
goto IL_003f_1;
}
}
{
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*)&XmlWellFormedWriter_WriteRaw_mCA937B08EC0CB47BD8346501C463335AD122D275_RuntimeMethod_var)));
}
IL_003f_1:
{
XmlWellFormedWriter_AdvanceState_m0E77F31CDB1071771578075FC87D0BF0D208D8E1(__this, ((int32_t)13), NULL);
bool L_10;
L_10 = XmlWellFormedWriter_get_SaveAttrValue_m308EBEC9707BA9CB0B0281395F7C6183FCCD84E6(__this, NULL);
if (!L_10)
{
goto IL_005f_1;
}
}
{
AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* L_11 = __this->___attrValueCache_14;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_12 = ___buffer0;
int32_t L_13 = ___index1;
int32_t L_14 = ___count2;
NullCheck(L_11);
AttributeValueCache_WriteRaw_mBCBECC9E06E2A67EFFFCFD6B5C97E65845B030D5(L_11, L_12, L_13, L_14, NULL);
goto IL_006d_1;
}
IL_005f_1:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_15 = __this->___writer_1;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_16 = ___buffer0;
int32_t L_17 = ___index1;
int32_t L_18 = ___count2;
NullCheck(L_15);
VirtualActionInvoker3< CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(23 /* System.Void System.Xml.XmlWriter::WriteRaw(System.Char[],System.Int32,System.Int32) */, L_15, L_16, L_17, L_18);
}
IL_006d_1:
{
goto IL_007a;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_006f;
}
throw e;
}
CATCH_006f:
{// begin catch(System.Object)
__this->___currentState_17 = ((int32_t)16);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteRaw_mCA937B08EC0CB47BD8346501C463335AD122D275_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_007a:
{
return;
}
}
// System.Void System.Xml.XmlWellFormedWriter::WriteRaw(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_WriteRaw_mBA71BF6CD36C24909F1F8FEC8E0A3C59220DD2CC (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, String_t* ___data0, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
{
String_t* L_0 = ___data0;
if (L_0)
{
goto IL_0005_1;
}
}
{
goto IL_003c;
}
IL_0005_1:
{
XmlWellFormedWriter_AdvanceState_m0E77F31CDB1071771578075FC87D0BF0D208D8E1(__this, ((int32_t)13), NULL);
bool L_1;
L_1 = XmlWellFormedWriter_get_SaveAttrValue_m308EBEC9707BA9CB0B0281395F7C6183FCCD84E6(__this, NULL);
if (!L_1)
{
goto IL_0023_1;
}
}
{
AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* L_2 = __this->___attrValueCache_14;
String_t* L_3 = ___data0;
NullCheck(L_2);
AttributeValueCache_WriteRaw_m5CA2F21771AD270BC564212DEEB305D7BEA1ADDF(L_2, L_3, NULL);
goto IL_002f_1;
}
IL_0023_1:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_4 = __this->___writer_1;
String_t* L_5 = ___data0;
NullCheck(L_4);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.Xml.XmlWriter::WriteRaw(System.String) */, L_4, L_5);
}
IL_002f_1:
{
goto IL_003c;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0031;
}
throw e;
}
CATCH_0031:
{// begin catch(System.Object)
__this->___currentState_17 = ((int32_t)16);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteRaw_mBA71BF6CD36C24909F1F8FEC8E0A3C59220DD2CC_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_003c:
{
return;
}
}
// System.Void System.Xml.XmlWellFormedWriter::WriteBase64(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_WriteBase64_mADFA00DF036CF336F703B88863EB2F818E06CB02 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___buffer0;
if (L_0)
{
goto IL_000e_1;
}
}
{
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*)&_stringLiteralC263EA29ADF3548CFEBC57B532EED28451A56C10)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteBase64_mADFA00DF036CF336F703B88863EB2F818E06CB02_RuntimeMethod_var)));
}
IL_000e_1:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) >= ((int32_t)0)))
{
goto IL_001d_1;
}
}
{
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*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteBase64_mADFA00DF036CF336F703B88863EB2F818E06CB02_RuntimeMethod_var)));
}
IL_001d_1:
{
int32_t L_4 = ___count2;
if ((((int32_t)L_4) >= ((int32_t)0)))
{
goto IL_002c_1;
}
}
{
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*)&XmlWellFormedWriter_WriteBase64_mADFA00DF036CF336F703B88863EB2F818E06CB02_RuntimeMethod_var)));
}
IL_002c_1:
{
int32_t L_6 = ___count2;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7 = ___buffer0;
NullCheck(L_7);
int32_t L_8 = ___index1;
if ((((int32_t)L_6) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_7)->max_length)), L_8)))))
{
goto IL_003f_1;
}
}
{
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*)&XmlWellFormedWriter_WriteBase64_mADFA00DF036CF336F703B88863EB2F818E06CB02_RuntimeMethod_var)));
}
IL_003f_1:
{
XmlWellFormedWriter_AdvanceState_m0E77F31CDB1071771578075FC87D0BF0D208D8E1(__this, ((int32_t)12), NULL);
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_10 = __this->___writer_1;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = ___buffer0;
int32_t L_12 = ___index1;
int32_t L_13 = ___count2;
NullCheck(L_10);
VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(25 /* System.Void System.Xml.XmlWriter::WriteBase64(System.Byte[],System.Int32,System.Int32) */, L_10, L_11, L_12, L_13);
goto IL_0062;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0057;
}
throw e;
}
CATCH_0057:
{// begin catch(System.Object)
__this->___currentState_17 = ((int32_t)16);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteBase64_mADFA00DF036CF336F703B88863EB2F818E06CB02_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_0062:
{
return;
}
}
// System.Void System.Xml.XmlWellFormedWriter::Close()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_Close_m3344F6BA8692113175966735E5D40577F16DC62F (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
int32_t L_0 = __this->___currentState_17;
if ((((int32_t)L_0) == ((int32_t)((int32_t)15))))
{
goto IL_00b4;
}
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0081:
{// begin finally (depth: 1)
{
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00aa:
{// begin finally (depth: 2)
__this->___currentState_17 = ((int32_t)15);
return;
}// end finally (depth: 2)
});
try
{// begin try (depth: 2)
{
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_1 = __this->___rawWriter_2;
if (!L_1)
{
goto IL_009d_1;
}
}
{
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_2 = __this->___rawWriter_2;
int32_t L_3;
L_3 = VirtualFuncInvoker0< int32_t >::Invoke(27 /* System.Xml.WriteState System.Xml.XmlWriter::get_WriteState() */, __this);
NullCheck(L_2);
VirtualActionInvoker1< int32_t >::Invoke(47 /* System.Void System.Xml.XmlRawWriter::Close(System.Xml.WriteState) */, L_2, L_3);
goto IL_00b3;
}
IL_009d_1:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_4 = __this->___writer_1;
NullCheck(L_4);
VirtualActionInvoker0::Invoke(28 /* System.Void System.Xml.XmlWriter::Close() */, L_4);
goto IL_00b3;
}
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00b3:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
bool L_5 = __this->___writeEndDocumentOnClose_20;
if (!L_5)
{
goto IL_0032_1;
}
}
{
goto IL_001d_1;
}
IL_0017_1:
{
VirtualActionInvoker0::Invoke(10 /* System.Void System.Xml.XmlWriter::WriteEndElement() */, __this);
}
IL_001d_1:
{
int32_t L_6 = __this->___currentState_17;
if ((((int32_t)L_6) == ((int32_t)((int32_t)16))))
{
goto IL_0059_1;
}
}
{
int32_t L_7 = __this->___elemTop_9;
if ((((int32_t)L_7) > ((int32_t)0)))
{
goto IL_0017_1;
}
}
{
goto IL_0059_1;
}
IL_0032_1:
{
int32_t L_8 = __this->___currentState_17;
if ((((int32_t)L_8) == ((int32_t)((int32_t)16))))
{
goto IL_0059_1;
}
}
{
int32_t L_9 = __this->___elemTop_9;
if ((((int32_t)L_9) <= ((int32_t)0)))
{
goto IL_0059_1;
}
}
try
{// begin try (depth: 2)
XmlWellFormedWriter_AdvanceState_m0E77F31CDB1071771578075FC87D0BF0D208D8E1(__this, 6, NULL);
goto IL_0059_1;
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_004e_1;
}
throw e;
}
CATCH_004e_1:
{// begin catch(System.Object)
__this->___currentState_17 = ((int32_t)16);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_Close_m3344F6BA8692113175966735E5D40577F16DC62F_RuntimeMethod_var)));
}// end catch (depth: 2)
IL_0059_1:
{
bool L_10;
L_10 = XmlWellFormedWriter_get_InBase64_mFF752AD78F8B2BAEB4EF3B014D665AA9F94C10C0(__this, NULL);
if (!L_10)
{
goto IL_0074_1;
}
}
{
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_11 = __this->___rawWriter_2;
if (!L_11)
{
goto IL_0074_1;
}
}
{
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_12 = __this->___rawWriter_2;
NullCheck(L_12);
VirtualActionInvoker0::Invoke(46 /* System.Void System.Xml.XmlRawWriter::WriteEndBase64() */, L_12);
}
IL_0074_1:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_13 = __this->___writer_1;
NullCheck(L_13);
VirtualActionInvoker0::Invoke(29 /* System.Void System.Xml.XmlWriter::Flush() */, L_13);
goto IL_00b4;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00b4:
{
return;
}
}
// System.Void System.Xml.XmlWellFormedWriter::Flush()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_Flush_m80648BA3FAB65ED58C7D221ADCA0F3E4440D5E6F (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = __this->___writer_1;
NullCheck(L_0);
VirtualActionInvoker0::Invoke(29 /* System.Void System.Xml.XmlWriter::Flush() */, L_0);
goto IL_0018;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_000d;
}
throw e;
}
CATCH_000d:
{// begin catch(System.Object)
__this->___currentState_17 = ((int32_t)16);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_Flush_m80648BA3FAB65ED58C7D221ADCA0F3E4440D5E6F_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_0018:
{
return;
}
}
// System.String System.Xml.XmlWellFormedWriter::LookupPrefix(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlWellFormedWriter_LookupPrefix_m7EFDF47EE856E0E261CA8E46E4B39D61DEF77852 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, String_t* ___ns0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
String_t* V_1 = NULL;
String_t* V_2 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
String_t* G_B15_0 = NULL;
try
{// begin try (depth: 1)
{
String_t* L_0 = ___ns0;
if (L_0)
{
goto IL_000e_1;
}
}
{
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*)&_stringLiteral79F2854B5115F837632CEA50C217D0F077D292CF)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_LookupPrefix_m7EFDF47EE856E0E261CA8E46E4B39D61DEF77852_RuntimeMethod_var)));
}
IL_000e_1:
{
int32_t L_2 = __this->___nsTop_5;
V_0 = L_2;
goto IL_007a_1;
}
IL_0017_1:
{
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* L_3 = __this->___nsStack_4;
int32_t L_4 = V_0;
NullCheck(L_3);
String_t* L_5 = ((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_4)))->___namespaceUri_1;
String_t* L_6 = ___ns0;
bool L_7;
L_7 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_5, L_6, NULL);
if (!L_7)
{
goto IL_0076_1;
}
}
{
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* L_8 = __this->___nsStack_4;
int32_t L_9 = V_0;
NullCheck(L_8);
String_t* L_10 = ((L_8)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_9)))->___prefix_0;
V_1 = L_10;
int32_t L_11 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_11, 1));
goto IL_0069_1;
}
IL_0048_1:
{
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* L_12 = __this->___nsStack_4;
int32_t L_13 = V_0;
NullCheck(L_12);
String_t* L_14 = ((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->___prefix_0;
String_t* L_15 = V_1;
bool L_16;
L_16 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_14, L_15, NULL);
if (!L_16)
{
goto IL_0065_1;
}
}
{
V_2 = (String_t*)NULL;
goto IL_00a3;
}
IL_0065_1:
{
int32_t L_17 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_17, 1));
}
IL_0069_1:
{
int32_t L_18 = V_0;
int32_t L_19 = __this->___nsTop_5;
if ((((int32_t)L_18) <= ((int32_t)L_19)))
{
goto IL_0048_1;
}
}
{
String_t* L_20 = V_1;
V_2 = L_20;
goto IL_00a3;
}
IL_0076_1:
{
int32_t L_21 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_21, 1));
}
IL_007a_1:
{
int32_t L_22 = V_0;
if ((((int32_t)L_22) >= ((int32_t)0)))
{
goto IL_0017_1;
}
}
{
RuntimeObject* L_23 = __this->___predefinedNamespaces_3;
if (L_23)
{
goto IL_0089_1;
}
}
{
G_B15_0 = ((String_t*)(NULL));
goto IL_0095_1;
}
IL_0089_1:
{
RuntimeObject* L_24 = __this->___predefinedNamespaces_3;
String_t* L_25 = ___ns0;
NullCheck(L_24);
String_t* L_26;
L_26 = InterfaceFuncInvoker1< String_t*, String_t* >::Invoke(2 /* System.String System.Xml.IXmlNamespaceResolver::LookupPrefix(System.String) */, IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var, L_24, L_25);
G_B15_0 = L_26;
}
IL_0095_1:
{
V_2 = G_B15_0;
goto IL_00a3;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0098;
}
throw e;
}
CATCH_0098:
{// begin catch(System.Object)
__this->___currentState_17 = ((int32_t)16);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_LookupPrefix_m7EFDF47EE856E0E261CA8E46E4B39D61DEF77852_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_00a3:
{
String_t* L_27 = V_2;
return L_27;
}
}
// System.Void System.Xml.XmlWellFormedWriter::WriteValue(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_WriteValue_m4DC703E7DB41C5A6A008A4DDF0A977D727835CC8 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, String_t* ___value0, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
{
String_t* L_0 = ___value0;
if (L_0)
{
goto IL_0005_1;
}
}
{
goto IL_0044;
}
IL_0005_1:
{
bool L_1;
L_1 = XmlWellFormedWriter_get_SaveAttrValue_m308EBEC9707BA9CB0B0281395F7C6183FCCD84E6(__this, NULL);
if (!L_1)
{
goto IL_0023_1;
}
}
{
XmlWellFormedWriter_AdvanceState_m0E77F31CDB1071771578075FC87D0BF0D208D8E1(__this, ((int32_t)9), NULL);
AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* L_2 = __this->___attrValueCache_14;
String_t* L_3 = ___value0;
NullCheck(L_2);
AttributeValueCache_WriteValue_mD25613C049E0066BAF633B2E635E56F1C7512C0A(L_2, L_3, NULL);
goto IL_0037_1;
}
IL_0023_1:
{
XmlWellFormedWriter_AdvanceState_m0E77F31CDB1071771578075FC87D0BF0D208D8E1(__this, ((int32_t)11), NULL);
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_4 = __this->___writer_1;
String_t* L_5 = ___value0;
NullCheck(L_4);
VirtualActionInvoker1< String_t* >::Invoke(31 /* System.Void System.Xml.XmlWriter::WriteValue(System.String) */, L_4, L_5);
}
IL_0037_1:
{
goto IL_0044;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0039;
}
throw e;
}
CATCH_0039:
{// begin catch(System.Object)
__this->___currentState_17 = ((int32_t)16);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteValue_m4DC703E7DB41C5A6A008A4DDF0A977D727835CC8_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_0044:
{
return;
}
}
// System.Void System.Xml.XmlWellFormedWriter::WriteBinHex(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_WriteBinHex_m903D1B72D56F33567D2FDE5FC7858FC8E5A3E31F (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
bool L_0;
L_0 = XmlWellFormedWriter_get_IsClosedOrErrorState_mDE9F00335629B981C8FFDBBCEC322D70FD1258CD(__this, NULL);
if (!L_0)
{
goto IL_0018;
}
}
{
String_t* L_1;
L_1 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2D7D9606D59C279ADCC84643F993B9FC22365566)), 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*)&XmlWellFormedWriter_WriteBinHex_m903D1B72D56F33567D2FDE5FC7858FC8E5A3E31F_RuntimeMethod_var)));
}
IL_0018:
{
}
try
{// begin try (depth: 1)
XmlWellFormedWriter_AdvanceState_m0E77F31CDB1071771578075FC87D0BF0D208D8E1(__this, ((int32_t)9), NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = ___buffer0;
int32_t L_4 = ___index1;
int32_t L_5 = ___count2;
XmlWriter_WriteBinHex_m2CFBF2D59073F981048E4FE0D0FEA6D456286495(__this, L_3, L_4, L_5, NULL);
goto IL_0037;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_002c;
}
throw e;
}
CATCH_002c:
{// begin catch(System.Object)
__this->___currentState_17 = ((int32_t)16);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteBinHex_m903D1B72D56F33567D2FDE5FC7858FC8E5A3E31F_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_0037:
{
return;
}
}
// System.Xml.XmlRawWriter System.Xml.XmlWellFormedWriter::get_RawWriter()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* XmlWellFormedWriter_get_RawWriter_m214811761EBBCB44F46CF8C3590C4611CFE134CA (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, const RuntimeMethod* method)
{
{
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = __this->___rawWriter_2;
return L_0;
}
}
// System.Boolean System.Xml.XmlWellFormedWriter::get_SaveAttrValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlWellFormedWriter_get_SaveAttrValue_m308EBEC9707BA9CB0B0281395F7C6183FCCD84E6 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___specAttr_13;
return (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0);
}
}
// System.Boolean System.Xml.XmlWellFormedWriter::get_InBase64()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlWellFormedWriter_get_InBase64_mFF752AD78F8B2BAEB4EF3B014D665AA9F94C10C0 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___currentState_17;
if ((((int32_t)L_0) == ((int32_t)5)))
{
goto IL_001d;
}
}
{
int32_t L_1 = __this->___currentState_17;
if ((((int32_t)L_1) == ((int32_t)6)))
{
goto IL_001d;
}
}
{
int32_t L_2 = __this->___currentState_17;
return (bool)((((int32_t)L_2) == ((int32_t)((int32_t)13)))? 1 : 0);
}
IL_001d:
{
return (bool)1;
}
}
// System.Void System.Xml.XmlWellFormedWriter::SetSpecialAttribute(System.Xml.XmlWellFormedWriter/SpecialAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_SetSpecialAttribute_mFEA92893370DC5628286BE51411265E4B192FC89 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, int32_t ___special0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___special0;
__this->___specAttr_13 = L_0;
int32_t L_1 = __this->___currentState_17;
if ((!(((uint32_t)8) == ((uint32_t)L_1))))
{
goto IL_001a;
}
}
{
__this->___currentState_17 = ((int32_t)9);
goto IL_002c;
}
IL_001a:
{
int32_t L_2 = __this->___currentState_17;
if ((!(((uint32_t)((int32_t)11)) == ((uint32_t)L_2))))
{
goto IL_002c;
}
}
{
__this->___currentState_17 = ((int32_t)12);
}
IL_002c:
{
AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* L_3 = __this->___attrValueCache_14;
if (L_3)
{
goto IL_003f;
}
}
{
AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* L_4 = (AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17*)il2cpp_codegen_object_new(AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17_il2cpp_TypeInfo_var);
NullCheck(L_4);
AttributeValueCache__ctor_m953F7E445860E3568CF1BCF095E1EECFC29938B9(L_4, NULL);
__this->___attrValueCache_14 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->___attrValueCache_14), (void*)L_4);
}
IL_003f:
{
return;
}
}
// System.Void System.Xml.XmlWellFormedWriter::WriteStartDocumentImpl(System.Xml.XmlStandalone)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_WriteStartDocumentImpl_mA52A83EB37B590FF5E0439A0EEF4607423783C0E (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, int32_t ___standalone0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
{
XmlWellFormedWriter_AdvanceState_m0E77F31CDB1071771578075FC87D0BF0D208D8E1(__this, 0, NULL);
int32_t L_0 = __this->___conformanceLevel_21;
if (L_0)
{
goto IL_0023_1;
}
}
{
__this->___conformanceLevel_21 = 2;
il2cpp_codegen_runtime_class_init_inline(XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var);
StateU5BU5D_t9E4189FBE1E6EF2CD6F60C94EE572FA8E522A375* L_1 = ((XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_StaticFields*)il2cpp_codegen_static_fields_for(XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var))->___StateTableDocument_29;
__this->___stateTable_16 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___stateTable_16), (void*)L_1);
goto IL_003c_1;
}
IL_0023_1:
{
int32_t L_2 = __this->___conformanceLevel_21;
if ((!(((uint32_t)L_2) == ((uint32_t)1))))
{
goto IL_003c_1;
}
}
{
String_t* L_3;
L_3 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral203878D5A9F10282BC47EC192B74A7FB1387D54C)), 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*)&XmlWellFormedWriter_WriteStartDocumentImpl_mA52A83EB37B590FF5E0439A0EEF4607423783C0E_RuntimeMethod_var)));
}
IL_003c_1:
{
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_5 = __this->___rawWriter_2;
if (!L_5)
{
goto IL_005a_1;
}
}
{
bool L_6 = __this->___xmlDeclFollows_23;
if (L_6)
{
goto IL_0065_1;
}
}
{
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_7 = __this->___rawWriter_2;
int32_t L_8 = ___standalone0;
NullCheck(L_7);
VirtualActionInvoker1< int32_t >::Invoke(36 /* System.Void System.Xml.XmlRawWriter::WriteXmlDeclaration(System.Xml.XmlStandalone) */, L_7, L_8);
goto IL_0065_1;
}
IL_005a_1:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_9 = __this->___writer_1;
NullCheck(L_9);
VirtualActionInvoker0::Invoke(5 /* System.Void System.Xml.XmlWriter::WriteStartDocument() */, L_9);
}
IL_0065_1:
{
goto IL_0072;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0067;
}
throw e;
}
CATCH_0067:
{// begin catch(System.Object)
__this->___currentState_17 = ((int32_t)16);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_WriteStartDocumentImpl_mA52A83EB37B590FF5E0439A0EEF4607423783C0E_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_0072:
{
return;
}
}
// System.Void System.Xml.XmlWellFormedWriter::StartFragment()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_StartFragment_m9E589E4D3AB9FE93C93E51A91ED2DDF6691A1BD2 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, const RuntimeMethod* method)
{
{
__this->___conformanceLevel_21 = 1;
return;
}
}
// System.Void System.Xml.XmlWellFormedWriter::PushNamespaceImplicit(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_PushNamespaceImplicit_mA1D3FFBB0CC8895E7237F3EFB2A6B425346D8267 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, String_t* ___prefix0, String_t* ___ns1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral349C6DC0F34B9BA242E4C728EDD28CAB809D4917);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t G_B14_0 = 0;
int32_t G_B24_0 = 0;
{
String_t* L_0 = ___prefix0;
int32_t L_1;
L_1 = XmlWellFormedWriter_LookupNamespaceIndex_m9236846AFB3139486F0DEAC5D1CCF53479286855(__this, L_0, NULL);
V_1 = L_1;
int32_t L_2 = V_1;
if ((((int32_t)L_2) == ((int32_t)(-1))))
{
goto IL_00f0;
}
}
{
int32_t L_3 = V_1;
ElementScopeU5BU5D_t68B3D6D2E3C34832F1D1BBDB096CCF5270D5DBD9* L_4 = __this->___elemScopeStack_8;
int32_t L_5 = __this->___elemTop_9;
NullCheck(L_4);
int32_t L_6 = ((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->___prevNSTop_0;
if ((((int32_t)L_3) <= ((int32_t)L_6)))
{
goto IL_006f;
}
}
{
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* L_7 = __this->___nsStack_4;
int32_t L_8 = V_1;
NullCheck(L_7);
String_t* L_9 = ((L_7)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_8)))->___namespaceUri_1;
String_t* L_10 = ___ns1;
bool L_11;
L_11 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_9, L_10, NULL);
if (!L_11)
{
goto IL_006e;
}
}
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_12 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var)), (uint32_t)3);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_13 = L_12;
String_t* L_14 = ___prefix0;
NullCheck(L_13);
ArrayElementTypeCheck (L_13, L_14);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_14);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_15 = L_13;
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* L_16 = __this->___nsStack_4;
int32_t L_17 = V_1;
NullCheck(L_16);
String_t* L_18 = ((L_16)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_17)))->___namespaceUri_1;
NullCheck(L_15);
ArrayElementTypeCheck (L_15, L_18);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_18);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_19 = L_15;
String_t* L_20 = ___ns1;
NullCheck(L_19);
ArrayElementTypeCheck (L_19, L_20);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_20);
XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_21 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var)));
NullCheck(L_21);
XmlException__ctor_mAAF5616098D1552646D4C4FDF1B381CB63822A21(L_21, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB7C276EDC5859626BDC1BA491A7689C71544D69A)), L_19, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_PushNamespaceImplicit_mA1D3FFBB0CC8895E7237F3EFB2A6B425346D8267_RuntimeMethod_var)));
}
IL_006e:
{
return;
}
IL_006f:
{
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* L_22 = __this->___nsStack_4;
int32_t L_23 = V_1;
NullCheck(L_22);
int32_t L_24 = ((L_22)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_23)))->___kind_2;
if ((!(((uint32_t)L_24) == ((uint32_t)3))))
{
goto IL_00d0;
}
}
{
String_t* L_25 = ___prefix0;
bool L_26;
L_26 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_25, _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158, NULL);
if (!L_26)
{
goto IL_00c0;
}
}
{
String_t* L_27 = ___ns1;
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* L_28 = __this->___nsStack_4;
int32_t L_29 = V_1;
NullCheck(L_28);
String_t* L_30 = ((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_29)))->___namespaceUri_1;
bool L_31;
L_31 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_27, L_30, NULL);
if (!L_31)
{
goto IL_00b9;
}
}
{
String_t* L_32;
L_32 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8E7DF6980ECEA2C11D2FD74A57D449FC8CFA87AE)), NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_33 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_33);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_33, L_32, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_33, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_PushNamespaceImplicit_mA1D3FFBB0CC8895E7237F3EFB2A6B425346D8267_RuntimeMethod_var)));
}
IL_00b9:
{
V_0 = 2;
goto IL_0163;
}
IL_00c0:
{
String_t* L_34;
L_34 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral33225D2308B5FA9B4FC47DE1A1D06D718E1911ED)), NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_35 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_35);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_35, L_34, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_35, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_PushNamespaceImplicit_mA1D3FFBB0CC8895E7237F3EFB2A6B425346D8267_RuntimeMethod_var)));
}
IL_00d0:
{
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* L_36 = __this->___nsStack_4;
int32_t L_37 = V_1;
NullCheck(L_36);
String_t* L_38 = ((L_36)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_37)))->___namespaceUri_1;
String_t* L_39 = ___ns1;
bool L_40;
L_40 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_38, L_39, NULL);
if (L_40)
{
goto IL_00ec;
}
}
{
G_B14_0 = 1;
goto IL_00ed;
}
IL_00ec:
{
G_B14_0 = 2;
}
IL_00ed:
{
V_0 = G_B14_0;
goto IL_0163;
}
IL_00f0:
{
String_t* L_41 = ___ns1;
bool L_42;
L_42 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_41, _stringLiteral349C6DC0F34B9BA242E4C728EDD28CAB809D4917, NULL);
if (!L_42)
{
goto IL_010a;
}
}
{
String_t* L_43 = ___prefix0;
bool L_44;
L_44 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_43, _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158, NULL);
if (L_44)
{
goto IL_0124;
}
}
IL_010a:
{
String_t* L_45 = ___ns1;
bool L_46;
L_46 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_45, _stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE, NULL);
if (!L_46)
{
goto IL_013e;
}
}
{
String_t* L_47 = ___prefix0;
bool L_48;
L_48 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_47, _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3, NULL);
if (!L_48)
{
goto IL_013e;
}
}
IL_0124:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_49 = (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_50 = L_49;
String_t* L_51 = ___prefix0;
NullCheck(L_50);
ArrayElementTypeCheck (L_50, L_51);
(L_50)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_51);
String_t* L_52;
L_52 = Res_GetString_mB929E696BF2E2F27CD03C0B61301A9DFE2FDEEF9(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0DD65E4164ECCDCC03EEEB4270914339DE878E09)), L_50, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_53 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_53);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_53, L_52, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_53, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_PushNamespaceImplicit_mA1D3FFBB0CC8895E7237F3EFB2A6B425346D8267_RuntimeMethod_var)));
}
IL_013e:
{
RuntimeObject* L_54 = __this->___predefinedNamespaces_3;
if (!L_54)
{
goto IL_0161;
}
}
{
RuntimeObject* L_55 = __this->___predefinedNamespaces_3;
String_t* L_56 = ___prefix0;
NullCheck(L_55);
String_t* L_57;
L_57 = InterfaceFuncInvoker1< String_t*, String_t* >::Invoke(1 /* System.String System.Xml.IXmlNamespaceResolver::LookupNamespace(System.String) */, IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var, L_55, L_56);
String_t* L_58 = ___ns1;
bool L_59;
L_59 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_57, L_58, NULL);
if (L_59)
{
goto IL_015d;
}
}
{
G_B24_0 = 1;
goto IL_015e;
}
IL_015d:
{
G_B24_0 = 2;
}
IL_015e:
{
V_0 = G_B24_0;
goto IL_0163;
}
IL_0161:
{
V_0 = 1;
}
IL_0163:
{
String_t* L_60 = ___prefix0;
String_t* L_61 = ___ns1;
int32_t L_62 = V_0;
XmlWellFormedWriter_AddNamespace_m8CF0599DA9B7CBC7944F0F2E25EB92A6EF933B4D(__this, L_60, L_61, L_62, NULL);
return;
}
}
// System.Boolean System.Xml.XmlWellFormedWriter::PushNamespaceExplicit(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlWellFormedWriter_PushNamespaceExplicit_m2D2DD37D41835C6CF41605F5DF0EFE69FD500A43 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, String_t* ___prefix0, String_t* ___ns1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral349C6DC0F34B9BA242E4C728EDD28CAB809D4917);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
int32_t V_2 = 0;
String_t* G_B8_0 = NULL;
String_t* G_B10_0 = NULL;
String_t* G_B9_0 = NULL;
String_t* G_B11_0 = NULL;
String_t* G_B11_1 = NULL;
{
V_0 = (bool)1;
String_t* L_0 = ___prefix0;
int32_t L_1;
L_1 = XmlWellFormedWriter_LookupNamespaceIndex_m9236846AFB3139486F0DEAC5D1CCF53479286855(__this, L_0, NULL);
V_1 = L_1;
int32_t L_2 = V_1;
if ((((int32_t)L_2) == ((int32_t)(-1))))
{
goto IL_00f9;
}
}
{
int32_t L_3 = V_1;
ElementScopeU5BU5D_t68B3D6D2E3C34832F1D1BBDB096CCF5270D5DBD9* L_4 = __this->___elemScopeStack_8;
int32_t L_5 = __this->___elemTop_9;
NullCheck(L_4);
int32_t L_6 = ((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->___prevNSTop_0;
if ((((int32_t)L_3) <= ((int32_t)L_6)))
{
goto IL_00d4;
}
}
{
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* L_7 = __this->___nsStack_4;
int32_t L_8 = V_1;
NullCheck(L_7);
String_t* L_9 = ((L_7)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_8)))->___namespaceUri_1;
String_t* L_10 = ___ns1;
bool L_11;
L_11 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_9, L_10, NULL);
if (!L_11)
{
goto IL_0073;
}
}
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_12 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var)), (uint32_t)3);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_13 = L_12;
String_t* L_14 = ___prefix0;
NullCheck(L_13);
ArrayElementTypeCheck (L_13, L_14);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_14);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_15 = L_13;
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* L_16 = __this->___nsStack_4;
int32_t L_17 = V_1;
NullCheck(L_16);
String_t* L_18 = ((L_16)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_17)))->___namespaceUri_1;
NullCheck(L_15);
ArrayElementTypeCheck (L_15, L_18);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_18);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_19 = L_15;
String_t* L_20 = ___ns1;
NullCheck(L_19);
ArrayElementTypeCheck (L_19, L_20);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_20);
XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_21 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var)));
NullCheck(L_21);
XmlException__ctor_mAAF5616098D1552646D4C4FDF1B381CB63822A21(L_21, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB7C276EDC5859626BDC1BA491A7689C71544D69A)), L_19, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_PushNamespaceExplicit_m2D2DD37D41835C6CF41605F5DF0EFE69FD500A43_RuntimeMethod_var)));
}
IL_0073:
{
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* L_22 = __this->___nsStack_4;
int32_t L_23 = V_1;
NullCheck(L_22);
int32_t L_24 = ((L_22)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_23)))->___kind_2;
V_2 = L_24;
int32_t L_25 = V_2;
if (L_25)
{
goto IL_00b2;
}
}
{
String_t* L_26 = ___prefix0;
NullCheck(L_26);
int32_t L_27;
L_27 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_26, NULL);
if (!L_27)
{
goto IL_0097;
}
}
{
G_B8_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3));
goto IL_009c;
}
IL_0097:
{
String_t* L_28 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_t_il2cpp_TypeInfo_var))))->___Empty_6;
G_B8_0 = L_28;
}
IL_009c:
{
String_t* L_29 = ___prefix0;
NullCheck(L_29);
int32_t L_30;
L_30 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_29, NULL);
G_B9_0 = G_B8_0;
if (!L_30)
{
G_B10_0 = G_B8_0;
goto IL_00a7;
}
}
{
String_t* L_31 = ___prefix0;
G_B11_0 = L_31;
G_B11_1 = G_B9_0;
goto IL_00ac;
}
IL_00a7:
{
G_B11_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3));
G_B11_1 = G_B10_0;
}
IL_00ac:
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var)));
XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_32;
L_32 = XmlWellFormedWriter_DupAttrException_m7A1A8C4A333D1D8C53DE3B03E35E1BB12B4E554A(G_B11_1, G_B11_0, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_32, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_PushNamespaceExplicit_m2D2DD37D41835C6CF41605F5DF0EFE69FD500A43_RuntimeMethod_var)));
}
IL_00b2:
{
bool L_33 = __this->___omitDuplNamespaces_19;
if (!L_33)
{
goto IL_00c0;
}
}
{
int32_t L_34 = V_2;
if ((((int32_t)L_34) == ((int32_t)1)))
{
goto IL_00c0;
}
}
{
V_0 = (bool)0;
}
IL_00c0:
{
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* L_35 = __this->___nsStack_4;
int32_t L_36 = V_1;
NullCheck(L_35);
((L_35)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_36)))->___kind_2 = 0;
bool L_37 = V_0;
return L_37;
}
IL_00d4:
{
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* L_38 = __this->___nsStack_4;
int32_t L_39 = V_1;
NullCheck(L_38);
String_t* L_40 = ((L_38)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_39)))->___namespaceUri_1;
String_t* L_41 = ___ns1;
bool L_42;
L_42 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_40, L_41, NULL);
if (!L_42)
{
goto IL_011f;
}
}
{
bool L_43 = __this->___omitDuplNamespaces_19;
if (!L_43)
{
goto IL_011f;
}
}
{
V_0 = (bool)0;
goto IL_011f;
}
IL_00f9:
{
RuntimeObject* L_44 = __this->___predefinedNamespaces_3;
if (!L_44)
{
goto IL_011f;
}
}
{
RuntimeObject* L_45 = __this->___predefinedNamespaces_3;
String_t* L_46 = ___prefix0;
NullCheck(L_45);
String_t* L_47;
L_47 = InterfaceFuncInvoker1< String_t*, String_t* >::Invoke(1 /* System.String System.Xml.IXmlNamespaceResolver::LookupNamespace(System.String) */, IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var, L_45, L_46);
String_t* L_48 = ___ns1;
bool L_49;
L_49 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_47, L_48, NULL);
if (!L_49)
{
goto IL_011f;
}
}
{
bool L_50 = __this->___omitDuplNamespaces_19;
if (!L_50)
{
goto IL_011f;
}
}
{
V_0 = (bool)0;
}
IL_011f:
{
String_t* L_51 = ___ns1;
bool L_52;
L_52 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_51, _stringLiteral349C6DC0F34B9BA242E4C728EDD28CAB809D4917, NULL);
if (!L_52)
{
goto IL_0139;
}
}
{
String_t* L_53 = ___prefix0;
bool L_54;
L_54 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_53, _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158, NULL);
if (L_54)
{
goto IL_0153;
}
}
IL_0139:
{
String_t* L_55 = ___ns1;
bool L_56;
L_56 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_55, _stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE, NULL);
if (!L_56)
{
goto IL_016d;
}
}
{
String_t* L_57 = ___prefix0;
bool L_58;
L_58 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_57, _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3, NULL);
if (!L_58)
{
goto IL_016d;
}
}
IL_0153:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_59 = (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_60 = L_59;
String_t* L_61 = ___prefix0;
NullCheck(L_60);
ArrayElementTypeCheck (L_60, L_61);
(L_60)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_61);
String_t* L_62;
L_62 = Res_GetString_mB929E696BF2E2F27CD03C0B61301A9DFE2FDEEF9(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0DD65E4164ECCDCC03EEEB4270914339DE878E09)), L_60, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_63 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_63);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_63, L_62, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_63, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_PushNamespaceExplicit_m2D2DD37D41835C6CF41605F5DF0EFE69FD500A43_RuntimeMethod_var)));
}
IL_016d:
{
String_t* L_64 = ___prefix0;
NullCheck(L_64);
int32_t L_65;
L_65 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_64, NULL);
if ((((int32_t)L_65) <= ((int32_t)0)))
{
goto IL_01c8;
}
}
{
String_t* L_66 = ___prefix0;
NullCheck(L_66);
Il2CppChar L_67;
L_67 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_66, 0, NULL);
if ((!(((uint32_t)L_67) == ((uint32_t)((int32_t)120)))))
{
goto IL_01c8;
}
}
{
String_t* L_68 = ___prefix0;
bool L_69;
L_69 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_68, _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158, NULL);
if (!L_69)
{
goto IL_01ab;
}
}
{
String_t* L_70 = ___ns1;
bool L_71;
L_71 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_70, _stringLiteral349C6DC0F34B9BA242E4C728EDD28CAB809D4917, NULL);
if (!L_71)
{
goto IL_01c8;
}
}
{
String_t* L_72;
L_72 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8E7DF6980ECEA2C11D2FD74A57D449FC8CFA87AE)), NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_73 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_73);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_73, L_72, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_73, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_PushNamespaceExplicit_m2D2DD37D41835C6CF41605F5DF0EFE69FD500A43_RuntimeMethod_var)));
}
IL_01ab:
{
String_t* L_74 = ___prefix0;
bool L_75;
L_75 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_74, _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3, NULL);
if (!L_75)
{
goto IL_01c8;
}
}
{
String_t* L_76;
L_76 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral33225D2308B5FA9B4FC47DE1A1D06D718E1911ED)), NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_77 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_77);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_77, L_76, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_77, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_PushNamespaceExplicit_m2D2DD37D41835C6CF41605F5DF0EFE69FD500A43_RuntimeMethod_var)));
}
IL_01c8:
{
String_t* L_78 = ___prefix0;
String_t* L_79 = ___ns1;
XmlWellFormedWriter_AddNamespace_m8CF0599DA9B7CBC7944F0F2E25EB92A6EF933B4D(__this, L_78, L_79, 0, NULL);
bool L_80 = V_0;
return L_80;
}
}
// System.Void System.Xml.XmlWellFormedWriter::AddNamespace(System.String,System.String,System.Xml.XmlWellFormedWriter/NamespaceKind)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_AddNamespace_m8CF0599DA9B7CBC7944F0F2E25EB92A6EF933B4D (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, String_t* ___prefix0, String_t* ___ns1, int32_t ___kind2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m9804017B0F6F06DE8C8FAA9292240873CB450B2D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* V_2 = NULL;
int32_t V_3 = 0;
{
int32_t L_0 = __this->___nsTop_5;
V_1 = ((int32_t)il2cpp_codegen_add(L_0, 1));
int32_t L_1 = V_1;
__this->___nsTop_5 = L_1;
int32_t L_2 = V_1;
V_0 = L_2;
int32_t L_3 = V_0;
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* L_4 = __this->___nsStack_4;
NullCheck(L_4);
if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_003a;
}
}
{
int32_t L_5 = V_0;
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* L_6 = (NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7*)(NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7*)SZArrayNew(NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply(L_5, 2)));
V_2 = L_6;
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* L_7 = __this->___nsStack_4;
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* L_8 = V_2;
int32_t L_9 = V_0;
Array_Copy_m4239F97ECC23A71F4191B8722362A1AA38E2E98F((RuntimeArray*)L_7, (RuntimeArray*)L_8, L_9, NULL);
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* L_10 = V_2;
__this->___nsStack_4 = L_10;
Il2CppCodeGenWriteBarrier((void**)(&__this->___nsStack_4), (void*)L_10);
}
IL_003a:
{
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* L_11 = __this->___nsStack_4;
int32_t L_12 = V_0;
NullCheck(L_11);
String_t* L_13 = ___prefix0;
String_t* L_14 = ___ns1;
int32_t L_15 = ___kind2;
Namespace_Set_m88AB7EE7ADEBE72A65AB39AD226966CECB869A2C(((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12))), L_13, L_14, L_15, NULL);
bool L_16 = __this->___useNsHashtable_7;
if (!L_16)
{
goto IL_0063;
}
}
{
int32_t L_17 = __this->___nsTop_5;
XmlWellFormedWriter_AddToNamespaceHashtable_mEAB12665C5565DAE811C054FEA0F96E624C494F0(__this, L_17, NULL);
return;
}
IL_0063:
{
int32_t L_18 = __this->___nsTop_5;
if ((!(((uint32_t)L_18) == ((uint32_t)((int32_t)16)))))
{
goto IL_009d;
}
}
{
SecureStringHasher_t4052E73C966E6FE65426B19F4AF48AB9869F614E* L_19 = __this->___hasher_25;
Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* L_20 = (Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588*)il2cpp_codegen_object_new(Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588_il2cpp_TypeInfo_var);
NullCheck(L_20);
Dictionary_2__ctor_m9804017B0F6F06DE8C8FAA9292240873CB450B2D(L_20, L_19, Dictionary_2__ctor_m9804017B0F6F06DE8C8FAA9292240873CB450B2D_RuntimeMethod_var);
__this->___nsHashtable_6 = L_20;
Il2CppCodeGenWriteBarrier((void**)(&__this->___nsHashtable_6), (void*)L_20);
V_3 = 0;
goto IL_008d;
}
IL_0082:
{
int32_t L_21 = V_3;
XmlWellFormedWriter_AddToNamespaceHashtable_mEAB12665C5565DAE811C054FEA0F96E624C494F0(__this, L_21, NULL);
int32_t L_22 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_22, 1));
}
IL_008d:
{
int32_t L_23 = V_3;
int32_t L_24 = __this->___nsTop_5;
if ((((int32_t)L_23) <= ((int32_t)L_24)))
{
goto IL_0082;
}
}
{
__this->___useNsHashtable_7 = (bool)1;
}
IL_009d:
{
return;
}
}
// System.Void System.Xml.XmlWellFormedWriter::AddToNamespaceHashtable(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_AddToNamespaceHashtable_mEAB12665C5565DAE811C054FEA0F96E624C494F0 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, int32_t ___namespaceIndex0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_m835BB1E6EA8A8BF1242B51E28FD65B43FEF68E2A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_m038480C0EC13713DBD89A53BE69FF0359501B4C2_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
int32_t V_1 = 0;
{
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* L_0 = __this->___nsStack_4;
int32_t L_1 = ___namespaceIndex0;
NullCheck(L_0);
String_t* L_2 = ((L_0)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_1)))->___prefix_0;
V_0 = L_2;
Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* L_3 = __this->___nsHashtable_6;
String_t* L_4 = V_0;
NullCheck(L_3);
bool L_5;
L_5 = Dictionary_2_TryGetValue_m835BB1E6EA8A8BF1242B51E28FD65B43FEF68E2A(L_3, L_4, (&V_1), Dictionary_2_TryGetValue_m835BB1E6EA8A8BF1242B51E28FD65B43FEF68E2A_RuntimeMethod_var);
if (!L_5)
{
goto IL_0034;
}
}
{
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* L_6 = __this->___nsStack_4;
int32_t L_7 = ___namespaceIndex0;
NullCheck(L_6);
int32_t L_8 = V_1;
((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7)))->___prevNsIndex_3 = L_8;
}
IL_0034:
{
Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* L_9 = __this->___nsHashtable_6;
String_t* L_10 = V_0;
int32_t L_11 = ___namespaceIndex0;
NullCheck(L_9);
Dictionary_2_set_Item_m038480C0EC13713DBD89A53BE69FF0359501B4C2(L_9, L_10, L_11, Dictionary_2_set_Item_m038480C0EC13713DBD89A53BE69FF0359501B4C2_RuntimeMethod_var);
return;
}
}
// System.Int32 System.Xml.XmlWellFormedWriter::LookupNamespaceIndex(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlWellFormedWriter_LookupNamespaceIndex_m9236846AFB3139486F0DEAC5D1CCF53479286855 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, String_t* ___prefix0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_m835BB1E6EA8A8BF1242B51E28FD65B43FEF68E2A_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
bool L_0 = __this->___useNsHashtable_7;
if (!L_0)
{
goto IL_001a;
}
}
{
Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* L_1 = __this->___nsHashtable_6;
String_t* L_2 = ___prefix0;
NullCheck(L_1);
bool L_3;
L_3 = Dictionary_2_TryGetValue_m835BB1E6EA8A8BF1242B51E28FD65B43FEF68E2A(L_1, L_2, (&V_0), Dictionary_2_TryGetValue_m835BB1E6EA8A8BF1242B51E28FD65B43FEF68E2A_RuntimeMethod_var);
if (!L_3)
{
goto IL_0046;
}
}
{
int32_t L_4 = V_0;
return L_4;
}
IL_001a:
{
int32_t L_5 = __this->___nsTop_5;
V_1 = L_5;
goto IL_0042;
}
IL_0023:
{
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* L_6 = __this->___nsStack_4;
int32_t L_7 = V_1;
NullCheck(L_6);
String_t* L_8 = ((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7)))->___prefix_0;
String_t* L_9 = ___prefix0;
bool L_10;
L_10 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_8, L_9, NULL);
if (!L_10)
{
goto IL_003e;
}
}
{
int32_t L_11 = V_1;
return L_11;
}
IL_003e:
{
int32_t L_12 = V_1;
V_1 = ((int32_t)il2cpp_codegen_subtract(L_12, 1));
}
IL_0042:
{
int32_t L_13 = V_1;
if ((((int32_t)L_13) >= ((int32_t)0)))
{
goto IL_0023;
}
}
IL_0046:
{
return (-1);
}
}
// System.Void System.Xml.XmlWellFormedWriter::PopNamespaces(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_PopNamespaces_m21D460DB61EC4B7271262131A52536CAA398EB15 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, int32_t ___indexFrom0, int32_t ___indexTo1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Remove_m0C90DB78F4134CDEB001F338AA2745F8D9651CAC_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_m038480C0EC13713DBD89A53BE69FF0359501B4C2_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___indexTo1;
V_0 = L_0;
goto IL_0068;
}
IL_0004:
{
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* L_1 = __this->___nsStack_4;
int32_t L_2 = V_0;
NullCheck(L_1);
int32_t L_3 = ((L_1)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_2)))->___prevNsIndex_3;
if ((!(((uint32_t)L_3) == ((uint32_t)(-1)))))
{
goto IL_0037;
}
}
{
Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* L_4 = __this->___nsHashtable_6;
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* L_5 = __this->___nsStack_4;
int32_t L_6 = V_0;
NullCheck(L_5);
String_t* L_7 = ((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->___prefix_0;
NullCheck(L_4);
bool L_8;
L_8 = Dictionary_2_Remove_m0C90DB78F4134CDEB001F338AA2745F8D9651CAC(L_4, L_7, Dictionary_2_Remove_m0C90DB78F4134CDEB001F338AA2745F8D9651CAC_RuntimeMethod_var);
goto IL_0064;
}
IL_0037:
{
Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* L_9 = __this->___nsHashtable_6;
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* L_10 = __this->___nsStack_4;
int32_t L_11 = V_0;
NullCheck(L_10);
String_t* L_12 = ((L_10)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_11)))->___prefix_0;
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* L_13 = __this->___nsStack_4;
int32_t L_14 = V_0;
NullCheck(L_13);
int32_t L_15 = ((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->___prevNsIndex_3;
NullCheck(L_9);
Dictionary_2_set_Item_m038480C0EC13713DBD89A53BE69FF0359501B4C2(L_9, L_12, L_15, Dictionary_2_set_Item_m038480C0EC13713DBD89A53BE69FF0359501B4C2_RuntimeMethod_var);
}
IL_0064:
{
int32_t L_16 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_16, 1));
}
IL_0068:
{
int32_t L_17 = V_0;
int32_t L_18 = ___indexFrom0;
if ((((int32_t)L_17) >= ((int32_t)L_18)))
{
goto IL_0004;
}
}
{
return;
}
}
// System.Xml.XmlException System.Xml.XmlWellFormedWriter::DupAttrException(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* XmlWellFormedWriter_DupAttrException_m7A1A8C4A333D1D8C53DE3B03E35E1BB12B4E554A (String_t* ___prefix0, String_t* ___localName1, 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*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE62BE30D60110348D9F0D3836744E95BD82775EF);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t* V_0 = NULL;
{
StringBuilder_t* L_0 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
NullCheck(L_0);
StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_0, NULL);
V_0 = L_0;
String_t* L_1 = ___prefix0;
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_0020;
}
}
{
StringBuilder_t* L_3 = V_0;
String_t* L_4 = ___prefix0;
NullCheck(L_3);
StringBuilder_t* L_5;
L_5 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_3, L_4, NULL);
StringBuilder_t* L_6 = V_0;
NullCheck(L_6);
StringBuilder_t* L_7;
L_7 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_6, ((int32_t)58), NULL);
}
IL_0020:
{
StringBuilder_t* L_8 = V_0;
String_t* L_9 = ___localName1;
NullCheck(L_8);
StringBuilder_t* L_10;
L_10 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_8, L_9, NULL);
StringBuilder_t* L_11 = V_0;
NullCheck(L_11);
String_t* L_12;
L_12 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_11);
XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_13 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var);
NullCheck(L_13);
XmlException__ctor_mD7C8E5B35C43BCEDBB41ADC035A38088DFE88A87(L_13, _stringLiteralE62BE30D60110348D9F0D3836744E95BD82775EF, L_12, NULL);
return L_13;
}
}
// System.Void System.Xml.XmlWellFormedWriter::AdvanceState(System.Xml.XmlWellFormedWriter/Token)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_AdvanceState_m0E77F31CDB1071771578075FC87D0BF0D208D8E1 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, int32_t ___token0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->___currentState_17;
if ((((int32_t)L_0) < ((int32_t)((int32_t)15))))
{
goto IL_005c;
}
}
{
int32_t L_1 = __this->___currentState_17;
if ((((int32_t)L_1) == ((int32_t)((int32_t)15))))
{
goto IL_001e;
}
}
{
int32_t L_2 = __this->___currentState_17;
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)16)))))
{
goto IL_002e;
}
}
IL_001e:
{
String_t* L_3;
L_3 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2D7D9606D59C279ADCC84643F993B9FC22365566)), 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*)&XmlWellFormedWriter_AdvanceState_m0E77F31CDB1071771578075FC87D0BF0D208D8E1_RuntimeMethod_var)));
}
IL_002e:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = L_5;
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var)));
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_7 = ((XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var))))->___tokenName_27;
int32_t L_8 = ___token0;
NullCheck(L_7);
int32_t L_9 = L_8;
String_t* L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
NullCheck(L_6);
ArrayElementTypeCheck (L_6, L_10);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_10);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_11 = L_6;
int32_t L_12 = __this->___currentState_17;
String_t* L_13;
L_13 = XmlWellFormedWriter_GetStateName_mB2B34367A725A79E4B3B521280CAA81BEA26DA78(L_12, NULL);
NullCheck(L_11);
ArrayElementTypeCheck (L_11, L_13);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_13);
String_t* L_14;
L_14 = Res_GetString_mB929E696BF2E2F27CD03C0B61301A9DFE2FDEEF9(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral23E65142459FB1BF5009AD8736318547A5DFE850)), L_11, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_15 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_15);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_15, L_14, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_AdvanceState_m0E77F31CDB1071771578075FC87D0BF0D208D8E1_RuntimeMethod_var)));
}
IL_005c:
{
StateU5BU5D_t9E4189FBE1E6EF2CD6F60C94EE572FA8E522A375* L_16 = __this->___stateTable_16;
int32_t L_17 = ___token0;
int32_t L_18 = __this->___currentState_17;
NullCheck(L_16);
int32_t L_19 = ((int32_t)il2cpp_codegen_add(((int32_t)((int32_t)L_17<<4)), (int32_t)L_18));
int32_t L_20 = (int32_t)(L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
V_0 = L_20;
int32_t L_21 = V_0;
if ((((int32_t)L_21) < ((int32_t)((int32_t)16))))
{
goto IL_01ef;
}
}
{
int32_t L_22 = V_0;
if ((((int32_t)L_22) == ((int32_t)((int32_t)16))))
{
goto IL_00d1;
}
}
{
int32_t L_23 = V_0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_23, ((int32_t)101))))
{
case 0:
{
goto IL_00e3;
}
case 1:
{
goto IL_00f0;
}
case 2:
{
goto IL_00fd;
}
case 3:
{
goto IL_010a;
}
case 4:
{
goto IL_01ef;
}
case 5:
{
goto IL_0117;
}
case 6:
{
goto IL_0124;
}
case 7:
{
goto IL_0137;
}
case 8:
{
goto IL_014a;
}
case 9:
{
goto IL_01ef;
}
case 10:
{
goto IL_015d;
}
case 11:
{
goto IL_016a;
}
case 12:
{
goto IL_0189;
}
case 13:
{
goto IL_01a8;
}
case 14:
{
goto IL_01c8;
}
case 15:
{
goto IL_01d2;
}
case 16:
{
goto IL_01dc;
}
case 17:
{
goto IL_01e6;
}
}
}
{
goto IL_01ef;
}
IL_00d1:
{
int32_t L_24 = ___token0;
int32_t L_25 = __this->___currentState_17;
XmlWellFormedWriter_ThrowInvalidStateTransition_mD1B039B1CB4593B86D6086945488E6F699289EA7(__this, L_24, L_25, NULL);
goto IL_01ef;
}
IL_00e3:
{
XmlWellFormedWriter_StartElementContent_mFB6A7CE162E6C7093EB48CDFA872C6D28E31861C(__this, NULL);
V_0 = 4;
goto IL_01ef;
}
IL_00f0:
{
XmlWellFormedWriter_StartElementContent_mFB6A7CE162E6C7093EB48CDFA872C6D28E31861C(__this, NULL);
V_0 = 3;
goto IL_01ef;
}
IL_00fd:
{
XmlWellFormedWriter_StartElementContent_mFB6A7CE162E6C7093EB48CDFA872C6D28E31861C(__this, NULL);
V_0 = 5;
goto IL_01ef;
}
IL_010a:
{
VirtualActionInvoker0::Invoke(5 /* System.Void System.Xml.XmlWriter::WriteStartDocument() */, __this);
V_0 = 2;
goto IL_01ef;
}
IL_0117:
{
VirtualActionInvoker0::Invoke(5 /* System.Void System.Xml.XmlWriter::WriteStartDocument() */, __this);
V_0 = 3;
goto IL_01ef;
}
IL_0124:
{
VirtualActionInvoker0::Invoke(13 /* System.Void System.Xml.XmlWriter::WriteEndAttribute() */, __this);
XmlWellFormedWriter_StartElementContent_mFB6A7CE162E6C7093EB48CDFA872C6D28E31861C(__this, NULL);
V_0 = 3;
goto IL_01ef;
}
IL_0137:
{
VirtualActionInvoker0::Invoke(13 /* System.Void System.Xml.XmlWriter::WriteEndAttribute() */, __this);
XmlWellFormedWriter_StartElementContent_mFB6A7CE162E6C7093EB48CDFA872C6D28E31861C(__this, NULL);
V_0 = 4;
goto IL_01ef;
}
IL_014a:
{
VirtualActionInvoker0::Invoke(13 /* System.Void System.Xml.XmlWriter::WriteEndAttribute() */, __this);
XmlWellFormedWriter_StartElementContent_mFB6A7CE162E6C7093EB48CDFA872C6D28E31861C(__this, NULL);
V_0 = 4;
goto IL_01ef;
}
IL_015d:
{
VirtualActionInvoker0::Invoke(13 /* System.Void System.Xml.XmlWriter::WriteEndAttribute() */, __this);
V_0 = 8;
goto IL_01ef;
}
IL_016a:
{
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_26 = __this->___rawWriter_2;
if (!L_26)
{
goto IL_017d;
}
}
{
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_27 = __this->___rawWriter_2;
NullCheck(L_27);
VirtualActionInvoker0::Invoke(46 /* System.Void System.Xml.XmlRawWriter::WriteEndBase64() */, L_27);
}
IL_017d:
{
__this->___currentState_17 = 4;
goto IL_005c;
}
IL_0189:
{
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_28 = __this->___rawWriter_2;
if (!L_28)
{
goto IL_019c;
}
}
{
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_29 = __this->___rawWriter_2;
NullCheck(L_29);
VirtualActionInvoker0::Invoke(46 /* System.Void System.Xml.XmlRawWriter::WriteEndBase64() */, L_29);
}
IL_019c:
{
__this->___currentState_17 = 8;
goto IL_005c;
}
IL_01a8:
{
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_30 = __this->___rawWriter_2;
if (!L_30)
{
goto IL_01bb;
}
}
{
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_31 = __this->___rawWriter_2;
NullCheck(L_31);
VirtualActionInvoker0::Invoke(46 /* System.Void System.Xml.XmlRawWriter::WriteEndBase64() */, L_31);
}
IL_01bb:
{
__this->___currentState_17 = ((int32_t)11);
goto IL_005c;
}
IL_01c8:
{
XmlWellFormedWriter_StartFragment_m9E589E4D3AB9FE93C93E51A91ED2DDF6691A1BD2(__this, NULL);
V_0 = 3;
goto IL_01ef;
}
IL_01d2:
{
XmlWellFormedWriter_StartFragment_m9E589E4D3AB9FE93C93E51A91ED2DDF6691A1BD2(__this, NULL);
V_0 = 4;
goto IL_01ef;
}
IL_01dc:
{
XmlWellFormedWriter_StartFragment_m9E589E4D3AB9FE93C93E51A91ED2DDF6691A1BD2(__this, NULL);
V_0 = 5;
goto IL_01ef;
}
IL_01e6:
{
VirtualActionInvoker0::Invoke(13 /* System.Void System.Xml.XmlWriter::WriteEndAttribute() */, __this);
V_0 = ((int32_t)11);
}
IL_01ef:
{
int32_t L_32 = V_0;
__this->___currentState_17 = L_32;
return;
}
}
// System.Void System.Xml.XmlWellFormedWriter::StartElementContent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_StartElementContent_mFB6A7CE162E6C7093EB48CDFA872C6D28E31861C (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
ElementScopeU5BU5D_t68B3D6D2E3C34832F1D1BBDB096CCF5270D5DBD9* L_0 = __this->___elemScopeStack_8;
int32_t L_1 = __this->___elemTop_9;
NullCheck(L_0);
int32_t L_2 = ((L_0)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_1)))->___prevNSTop_0;
V_0 = L_2;
int32_t L_3 = __this->___nsTop_5;
V_1 = L_3;
goto IL_0055;
}
IL_0020:
{
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* L_4 = __this->___nsStack_4;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = ((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->___kind_2;
if ((!(((uint32_t)L_6) == ((uint32_t)1))))
{
goto IL_0051;
}
}
{
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* L_7 = __this->___nsStack_4;
int32_t L_8 = V_1;
NullCheck(L_7);
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_9 = __this->___writer_1;
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_10 = __this->___rawWriter_2;
Namespace_WriteDecl_m9A844FFEDA4BE8790EB459FEDE11A8D8A5DAF100(((L_7)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_8))), L_9, L_10, NULL);
}
IL_0051:
{
int32_t L_11 = V_1;
V_1 = ((int32_t)il2cpp_codegen_subtract(L_11, 1));
}
IL_0055:
{
int32_t L_12 = V_1;
int32_t L_13 = V_0;
if ((((int32_t)L_12) > ((int32_t)L_13)))
{
goto IL_0020;
}
}
{
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_14 = __this->___rawWriter_2;
if (!L_14)
{
goto IL_006c;
}
}
{
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_15 = __this->___rawWriter_2;
NullCheck(L_15);
VirtualActionInvoker0::Invoke(38 /* System.Void System.Xml.XmlRawWriter::StartElementContent() */, L_15);
}
IL_006c:
{
return;
}
}
// System.String System.Xml.XmlWellFormedWriter::GetStateName(System.Xml.XmlWellFormedWriter/State)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlWellFormedWriter_GetStateName_mB2B34367A725A79E4B3B521280CAA81BEA26DA78 (int32_t ___state0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD6DCC897C02A857315752249765CB47ADDF4E5C7);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___state0;
if ((((int32_t)L_0) < ((int32_t)((int32_t)16))))
{
goto IL_000b;
}
}
{
return _stringLiteralD6DCC897C02A857315752249765CB47ADDF4E5C7;
}
IL_000b:
{
il2cpp_codegen_runtime_class_init_inline(XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_1 = ((XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_StaticFields*)il2cpp_codegen_static_fields_for(XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var))->___stateName_26;
int32_t L_2 = ___state0;
NullCheck(L_1);
int32_t L_3 = L_2;
String_t* L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
return L_4;
}
}
// System.String System.Xml.XmlWellFormedWriter::LookupNamespace(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlWellFormedWriter_LookupNamespace_m501ADAA8012BE57824EAE59C5F58BE37E477A92A (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, String_t* ___prefix0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = __this->___nsTop_5;
V_0 = L_0;
goto IL_0038;
}
IL_0009:
{
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* L_1 = __this->___nsStack_4;
int32_t L_2 = V_0;
NullCheck(L_1);
String_t* L_3 = ((L_1)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_2)))->___prefix_0;
String_t* L_4 = ___prefix0;
bool L_5;
L_5 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_3, L_4, NULL);
if (!L_5)
{
goto IL_0034;
}
}
{
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* L_6 = __this->___nsStack_4;
int32_t L_7 = V_0;
NullCheck(L_6);
String_t* L_8 = ((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7)))->___namespaceUri_1;
return L_8;
}
IL_0034:
{
int32_t L_9 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_9, 1));
}
IL_0038:
{
int32_t L_10 = V_0;
if ((((int32_t)L_10) >= ((int32_t)0)))
{
goto IL_0009;
}
}
{
RuntimeObject* L_11 = __this->___predefinedNamespaces_3;
if (L_11)
{
goto IL_0046;
}
}
{
return (String_t*)NULL;
}
IL_0046:
{
RuntimeObject* L_12 = __this->___predefinedNamespaces_3;
String_t* L_13 = ___prefix0;
NullCheck(L_12);
String_t* L_14;
L_14 = InterfaceFuncInvoker1< String_t*, String_t* >::Invoke(1 /* System.String System.Xml.IXmlNamespaceResolver::LookupNamespace(System.String) */, IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var, L_12, L_13);
return L_14;
}
}
// System.String System.Xml.XmlWellFormedWriter::LookupLocalNamespace(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlWellFormedWriter_LookupLocalNamespace_m9CB41195FFE549CD9D223709B79119038A67BC79 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, String_t* ___prefix0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->___nsTop_5;
V_0 = L_0;
goto IL_0038;
}
IL_0009:
{
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* L_1 = __this->___nsStack_4;
int32_t L_2 = V_0;
NullCheck(L_1);
String_t* L_3 = ((L_1)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_2)))->___prefix_0;
String_t* L_4 = ___prefix0;
bool L_5;
L_5 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_3, L_4, NULL);
if (!L_5)
{
goto IL_0034;
}
}
{
NamespaceU5BU5D_tA809858A8257718546DA87C05CA3DAF0B8C37AB7* L_6 = __this->___nsStack_4;
int32_t L_7 = V_0;
NullCheck(L_6);
String_t* L_8 = ((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7)))->___namespaceUri_1;
return L_8;
}
IL_0034:
{
int32_t L_9 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_9, 1));
}
IL_0038:
{
int32_t L_10 = V_0;
ElementScopeU5BU5D_t68B3D6D2E3C34832F1D1BBDB096CCF5270D5DBD9* L_11 = __this->___elemScopeStack_8;
int32_t L_12 = __this->___elemTop_9;
NullCheck(L_11);
int32_t L_13 = ((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->___prevNSTop_0;
if ((((int32_t)L_10) > ((int32_t)L_13)))
{
goto IL_0009;
}
}
{
return (String_t*)NULL;
}
}
// System.String System.Xml.XmlWellFormedWriter::GeneratePrefix()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlWellFormedWriter_GeneratePrefix_m6F8B4A6EAE7C5C9DA82990E47A1F891F8F1E526C (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, 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*)&_stringLiteral198AA065BF0F912BD6F5F93869BD5C361671F98B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA02431CF7C501A5B368C91E41283419D8FA9FB03);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
int32_t V_1 = 0;
String_t* V_2 = NULL;
int32_t V_3 = 0;
{
int32_t L_0 = __this->___nsTop_5;
V_3 = ((int32_t)il2cpp_codegen_subtract(L_0, 2));
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_1;
L_1 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
String_t* L_2;
L_2 = Int32_ToString_mE871810BC163EE4EF88E7C7682A6AD39911173B8((&V_3), _stringLiteralA02431CF7C501A5B368C91E41283419D8FA9FB03, L_1, NULL);
String_t* L_3;
L_3 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteral198AA065BF0F912BD6F5F93869BD5C361671F98B, L_2, NULL);
V_0 = L_3;
String_t* L_4 = V_0;
String_t* L_5;
L_5 = XmlWellFormedWriter_LookupNamespace_m501ADAA8012BE57824EAE59C5F58BE37E477A92A(__this, L_4, NULL);
if (L_5)
{
goto IL_0030;
}
}
{
String_t* L_6 = V_0;
return L_6;
}
IL_0030:
{
V_1 = 0;
}
IL_0032:
{
String_t* L_7 = V_0;
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_8;
L_8 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
String_t* L_9;
L_9 = Int32_ToString_m3B2730D9F5B0C1C57DCCC8B8DCFB8E5EC4E8979B((&V_1), L_8, NULL);
String_t* L_10;
L_10 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_7, L_9, NULL);
V_2 = L_10;
int32_t L_11 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_11, 1));
String_t* L_12 = V_2;
String_t* L_13;
L_13 = XmlWellFormedWriter_LookupNamespace_m501ADAA8012BE57824EAE59C5F58BE37E477A92A(__this, L_12, NULL);
if (L_13)
{
goto IL_0032;
}
}
{
String_t* L_14 = V_2;
return L_14;
}
}
// System.Void System.Xml.XmlWellFormedWriter::CheckNCName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_CheckNCName_m60D4A447D593BEF77DFDAAA31CDD019361B55D2A (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, String_t* ___ncname0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
String_t* L_0 = ___ncname0;
NullCheck(L_0);
int32_t L_1;
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL);
V_1 = L_1;
XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_2 = (&__this->___xmlCharType_24);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = L_2->___charProperties_2;
String_t* L_4 = ___ncname0;
NullCheck(L_4);
Il2CppChar L_5;
L_5 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_4, 0, NULL);
NullCheck(L_3);
Il2CppChar L_6 = L_5;
uint8_t L_7 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
if (!((int32_t)((int32_t)L_7&4)))
{
goto IL_0022;
}
}
{
V_0 = 1;
goto IL_004f;
}
IL_0022:
{
String_t* L_8 = ___ncname0;
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var)));
Exception_t* L_9;
L_9 = XmlWellFormedWriter_InvalidCharsException_mCBA78B82C723BB0F70B5ECAEA3534A4719B4B0C5(L_8, 0, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_CheckNCName_m60D4A447D593BEF77DFDAAA31CDD019361B55D2A_RuntimeMethod_var)));
}
IL_002a:
{
XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_10 = (&__this->___xmlCharType_24);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = L_10->___charProperties_2;
String_t* L_12 = ___ncname0;
int32_t L_13 = V_0;
NullCheck(L_12);
Il2CppChar L_14;
L_14 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_12, L_13, NULL);
NullCheck(L_11);
Il2CppChar L_15 = L_14;
uint8_t L_16 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
if (!((int32_t)((int32_t)L_16&8)))
{
goto IL_0047;
}
}
{
int32_t L_17 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_17, 1));
goto IL_004f;
}
IL_0047:
{
String_t* L_18 = ___ncname0;
int32_t L_19 = V_0;
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var)));
Exception_t* L_20;
L_20 = XmlWellFormedWriter_InvalidCharsException_mCBA78B82C723BB0F70B5ECAEA3534A4719B4B0C5(L_18, L_19, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_CheckNCName_m60D4A447D593BEF77DFDAAA31CDD019361B55D2A_RuntimeMethod_var)));
}
IL_004f:
{
int32_t L_21 = V_0;
int32_t L_22 = V_1;
if ((((int32_t)L_21) < ((int32_t)L_22)))
{
goto IL_002a;
}
}
{
return;
}
}
// System.Exception System.Xml.XmlWellFormedWriter::InvalidCharsException(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* XmlWellFormedWriter_InvalidCharsException_mCBA78B82C723BB0F70B5ECAEA3534A4719B4B0C5 (String_t* ___name0, int32_t ___badCharIndex1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral93E50C321A10920AEB9DABD4DBB251927D2FAF8C);
s_Il2CppMethodInitialized = true;
}
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_0 = NULL;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_1 = NULL;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_2 = NULL;
{
String_t* L_0 = ___name0;
int32_t L_1 = ___badCharIndex1;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_2;
L_2 = XmlException_BuildCharExceptionArgs_m392B50DC9155D9243FD05EF0287B06FCB408EA46(L_0, L_1, NULL);
V_0 = L_2;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_3 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)3);
V_1 = L_3;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_4 = V_1;
String_t* L_5 = ___name0;
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_5);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_5);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_6 = V_1;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_7 = V_0;
NullCheck(L_7);
int32_t L_8 = 0;
String_t* L_9 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
NullCheck(L_6);
ArrayElementTypeCheck (L_6, L_9);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_9);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_10 = V_1;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_11 = V_0;
NullCheck(L_11);
int32_t L_12 = 1;
String_t* L_13 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
NullCheck(L_10);
ArrayElementTypeCheck (L_10, L_13);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_13);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_14 = V_1;
V_2 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)L_14;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_15 = V_2;
String_t* L_16;
L_16 = Res_GetString_mB929E696BF2E2F27CD03C0B61301A9DFE2FDEEF9(_stringLiteral93E50C321A10920AEB9DABD4DBB251927D2FAF8C, L_15, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_17 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var);
NullCheck(L_17);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_17, L_16, NULL);
return L_17;
}
}
// System.Void System.Xml.XmlWellFormedWriter::ThrowInvalidStateTransition(System.Xml.XmlWellFormedWriter/Token,System.Xml.XmlWellFormedWriter/State)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_ThrowInvalidStateTransition_mD1B039B1CB4593B86D6086945488E6F699289EA7 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, int32_t ___token0, int32_t ___currentState1, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = L_0;
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var)));
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_2 = ((XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var))))->___tokenName_27;
int32_t L_3 = ___token0;
NullCheck(L_2);
int32_t L_4 = L_3;
String_t* L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_5);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_5);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = L_1;
int32_t L_7 = ___currentState1;
String_t* L_8;
L_8 = XmlWellFormedWriter_GetStateName_mB2B34367A725A79E4B3B521280CAA81BEA26DA78(L_7, NULL);
NullCheck(L_6);
ArrayElementTypeCheck (L_6, L_8);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_8);
String_t* L_9;
L_9 = Res_GetString_mB929E696BF2E2F27CD03C0B61301A9DFE2FDEEF9(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral23E65142459FB1BF5009AD8736318547A5DFE850)), L_6, NULL);
V_0 = L_9;
int32_t L_10 = ___currentState1;
if (!L_10)
{
goto IL_002b;
}
}
{
int32_t L_11 = ___currentState1;
if ((!(((uint32_t)L_11) == ((uint32_t)7))))
{
goto IL_004f;
}
}
IL_002b:
{
int32_t L_12 = __this->___conformanceLevel_21;
if ((!(((uint32_t)L_12) == ((uint32_t)2))))
{
goto IL_004f;
}
}
{
String_t* L_13 = V_0;
String_t* L_14;
L_14 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3B025A68D15E8C5AD48BD839D2CFAE9316DBB963)), NULL);
String_t* L_15;
L_15 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(L_13, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745)), L_14, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_16 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_16);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_16, L_15, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_ThrowInvalidStateTransition_mD1B039B1CB4593B86D6086945488E6F699289EA7_RuntimeMethod_var)));
}
IL_004f:
{
String_t* L_17 = V_0;
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_18 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_18);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_18, L_17, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_ThrowInvalidStateTransition_mD1B039B1CB4593B86D6086945488E6F699289EA7_RuntimeMethod_var)));
}
}
// System.Boolean System.Xml.XmlWellFormedWriter::get_IsClosedOrErrorState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlWellFormedWriter_get_IsClosedOrErrorState_mDE9F00335629B981C8FFDBBCEC322D70FD1258CD (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___currentState_17;
return (bool)((((int32_t)((((int32_t)L_0) < ((int32_t)((int32_t)15)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Void System.Xml.XmlWellFormedWriter::AddAttribute(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_AddAttribute_mAE42EFE8C45E46B4DBCEE7E95A75D860D35FC4D4 (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___namespaceName2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AttrNameU5BU5D_t501369F3E8EBC0B2B32AF603424921032B14A983_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m9804017B0F6F06DE8C8FAA9292240873CB450B2D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
AttrNameU5BU5D_t501369F3E8EBC0B2B32AF603424921032B14A983* V_2 = NULL;
int32_t V_3 = 0;
int32_t V_4 = 0;
int32_t V_5 = 0;
{
int32_t L_0 = __this->___attrCount_11;
V_1 = L_0;
int32_t L_1 = V_1;
__this->___attrCount_11 = ((int32_t)il2cpp_codegen_add(L_1, 1));
int32_t L_2 = V_1;
V_0 = L_2;
int32_t L_3 = V_0;
AttrNameU5BU5D_t501369F3E8EBC0B2B32AF603424921032B14A983* L_4 = __this->___attrStack_10;
NullCheck(L_4);
if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_003a;
}
}
{
int32_t L_5 = V_0;
AttrNameU5BU5D_t501369F3E8EBC0B2B32AF603424921032B14A983* L_6 = (AttrNameU5BU5D_t501369F3E8EBC0B2B32AF603424921032B14A983*)(AttrNameU5BU5D_t501369F3E8EBC0B2B32AF603424921032B14A983*)SZArrayNew(AttrNameU5BU5D_t501369F3E8EBC0B2B32AF603424921032B14A983_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply(L_5, 2)));
V_2 = L_6;
AttrNameU5BU5D_t501369F3E8EBC0B2B32AF603424921032B14A983* L_7 = __this->___attrStack_10;
AttrNameU5BU5D_t501369F3E8EBC0B2B32AF603424921032B14A983* L_8 = V_2;
int32_t L_9 = V_0;
Array_Copy_m4239F97ECC23A71F4191B8722362A1AA38E2E98F((RuntimeArray*)L_7, (RuntimeArray*)L_8, L_9, NULL);
AttrNameU5BU5D_t501369F3E8EBC0B2B32AF603424921032B14A983* L_10 = V_2;
__this->___attrStack_10 = L_10;
Il2CppCodeGenWriteBarrier((void**)(&__this->___attrStack_10), (void*)L_10);
}
IL_003a:
{
AttrNameU5BU5D_t501369F3E8EBC0B2B32AF603424921032B14A983* L_11 = __this->___attrStack_10;
int32_t L_12 = V_0;
NullCheck(L_11);
String_t* L_13 = ___prefix0;
String_t* L_14 = ___localName1;
String_t* L_15 = ___namespaceName2;
AttrName_Set_m2C5516E986819EB5B1B0084FA03E54A9C7354930(((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12))), L_13, L_14, L_15, NULL);
int32_t L_16 = __this->___attrCount_11;
if ((((int32_t)L_16) >= ((int32_t)((int32_t)14))))
{
goto IL_0083;
}
}
{
V_3 = 0;
goto IL_007e;
}
IL_005c:
{
AttrNameU5BU5D_t501369F3E8EBC0B2B32AF603424921032B14A983* L_17 = __this->___attrStack_10;
int32_t L_18 = V_3;
NullCheck(L_17);
String_t* L_19 = ___prefix0;
String_t* L_20 = ___localName1;
String_t* L_21 = ___namespaceName2;
bool L_22;
L_22 = AttrName_IsDuplicate_m201E2290AC6091EC056BEB923BFD9F35C1293F1C(((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18))), L_19, L_20, L_21, NULL);
if (!L_22)
{
goto IL_007a;
}
}
{
String_t* L_23 = ___prefix0;
String_t* L_24 = ___localName1;
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var)));
XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_25;
L_25 = XmlWellFormedWriter_DupAttrException_m7A1A8C4A333D1D8C53DE3B03E35E1BB12B4E554A(L_23, L_24, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_AddAttribute_mAE42EFE8C45E46B4DBCEE7E95A75D860D35FC4D4_RuntimeMethod_var)));
}
IL_007a:
{
int32_t L_26 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_26, 1));
}
IL_007e:
{
int32_t L_27 = V_3;
int32_t L_28 = V_0;
if ((((int32_t)L_27) < ((int32_t)L_28)))
{
goto IL_005c;
}
}
{
return;
}
IL_0083:
{
int32_t L_29 = __this->___attrCount_11;
if ((!(((uint32_t)L_29) == ((uint32_t)((int32_t)14)))))
{
goto IL_00be;
}
}
{
Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* L_30 = __this->___attrHashTable_12;
if (L_30)
{
goto IL_00a6;
}
}
{
SecureStringHasher_t4052E73C966E6FE65426B19F4AF48AB9869F614E* L_31 = __this->___hasher_25;
Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* L_32 = (Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588*)il2cpp_codegen_object_new(Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588_il2cpp_TypeInfo_var);
NullCheck(L_32);
Dictionary_2__ctor_m9804017B0F6F06DE8C8FAA9292240873CB450B2D(L_32, L_31, Dictionary_2__ctor_m9804017B0F6F06DE8C8FAA9292240873CB450B2D_RuntimeMethod_var);
__this->___attrHashTable_12 = L_32;
Il2CppCodeGenWriteBarrier((void**)(&__this->___attrHashTable_12), (void*)L_32);
}
IL_00a6:
{
V_5 = 0;
goto IL_00b9;
}
IL_00ab:
{
int32_t L_33 = V_5;
XmlWellFormedWriter_AddToAttrHashTable_mCF2C8CBC325BDAE7F0A643DD23ADB94BF5DB840D(__this, L_33, NULL);
int32_t L_34 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add(L_34, 1));
}
IL_00b9:
{
int32_t L_35 = V_5;
int32_t L_36 = V_0;
if ((((int32_t)L_35) < ((int32_t)L_36)))
{
goto IL_00ab;
}
}
IL_00be:
{
int32_t L_37 = V_0;
XmlWellFormedWriter_AddToAttrHashTable_mCF2C8CBC325BDAE7F0A643DD23ADB94BF5DB840D(__this, L_37, NULL);
AttrNameU5BU5D_t501369F3E8EBC0B2B32AF603424921032B14A983* L_38 = __this->___attrStack_10;
int32_t L_39 = V_0;
NullCheck(L_38);
int32_t L_40 = ((L_38)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_39)))->___prev_3;
V_4 = L_40;
goto IL_0113;
}
IL_00da:
{
int32_t L_41 = V_4;
V_4 = ((int32_t)il2cpp_codegen_subtract(L_41, 1));
AttrNameU5BU5D_t501369F3E8EBC0B2B32AF603424921032B14A983* L_42 = __this->___attrStack_10;
int32_t L_43 = V_4;
NullCheck(L_42);
String_t* L_44 = ___prefix0;
String_t* L_45 = ___localName1;
String_t* L_46 = ___namespaceName2;
bool L_47;
L_47 = AttrName_IsDuplicate_m201E2290AC6091EC056BEB923BFD9F35C1293F1C(((L_42)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_43))), L_44, L_45, L_46, NULL);
if (!L_47)
{
goto IL_00ff;
}
}
{
String_t* L_48 = ___prefix0;
String_t* L_49 = ___localName1;
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var)));
XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_50;
L_50 = XmlWellFormedWriter_DupAttrException_m7A1A8C4A333D1D8C53DE3B03E35E1BB12B4E554A(L_48, L_49, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_50, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWellFormedWriter_AddAttribute_mAE42EFE8C45E46B4DBCEE7E95A75D860D35FC4D4_RuntimeMethod_var)));
}
IL_00ff:
{
AttrNameU5BU5D_t501369F3E8EBC0B2B32AF603424921032B14A983* L_51 = __this->___attrStack_10;
int32_t L_52 = V_4;
NullCheck(L_51);
int32_t L_53 = ((L_51)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_52)))->___prev_3;
V_4 = L_53;
}
IL_0113:
{
int32_t L_54 = V_4;
if ((((int32_t)L_54) > ((int32_t)0)))
{
goto IL_00da;
}
}
{
return;
}
}
// System.Void System.Xml.XmlWellFormedWriter::AddToAttrHashTable(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter_AddToAttrHashTable_mCF2C8CBC325BDAE7F0A643DD23ADB94BF5DB840D (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* __this, int32_t ___attributeIndex0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Count_m33C34E4F1C77B491E24DCCBF07C43639016B2247_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_m038480C0EC13713DBD89A53BE69FF0359501B4C2_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
int32_t V_1 = 0;
{
AttrNameU5BU5D_t501369F3E8EBC0B2B32AF603424921032B14A983* L_0 = __this->___attrStack_10;
int32_t L_1 = ___attributeIndex0;
NullCheck(L_0);
String_t* L_2 = ((L_0)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_1)))->___localName_2;
V_0 = L_2;
Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* L_3 = __this->___attrHashTable_12;
NullCheck(L_3);
int32_t L_4;
L_4 = Dictionary_2_get_Count_m33C34E4F1C77B491E24DCCBF07C43639016B2247(L_3, Dictionary_2_get_Count_m33C34E4F1C77B491E24DCCBF07C43639016B2247_RuntimeMethod_var);
Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* L_5 = __this->___attrHashTable_12;
String_t* L_6 = V_0;
NullCheck(L_5);
Dictionary_2_set_Item_m038480C0EC13713DBD89A53BE69FF0359501B4C2(L_5, L_6, 0, Dictionary_2_set_Item_m038480C0EC13713DBD89A53BE69FF0359501B4C2_RuntimeMethod_var);
Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* L_7 = __this->___attrHashTable_12;
NullCheck(L_7);
int32_t L_8;
L_8 = Dictionary_2_get_Count_m33C34E4F1C77B491E24DCCBF07C43639016B2247(L_7, Dictionary_2_get_Count_m33C34E4F1C77B491E24DCCBF07C43639016B2247_RuntimeMethod_var);
if ((((int32_t)L_4) == ((int32_t)L_8)))
{
goto IL_0038;
}
}
{
return;
}
IL_0038:
{
int32_t L_9 = ___attributeIndex0;
V_1 = ((int32_t)il2cpp_codegen_subtract(L_9, 1));
goto IL_005b;
}
IL_003e:
{
AttrNameU5BU5D_t501369F3E8EBC0B2B32AF603424921032B14A983* L_10 = __this->___attrStack_10;
int32_t L_11 = V_1;
NullCheck(L_10);
String_t* L_12 = ((L_10)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_11)))->___localName_2;
String_t* L_13 = V_0;
bool L_14;
L_14 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_12, L_13, NULL);
if (L_14)
{
goto IL_005f;
}
}
{
int32_t L_15 = V_1;
V_1 = ((int32_t)il2cpp_codegen_subtract(L_15, 1));
}
IL_005b:
{
int32_t L_16 = V_1;
if ((((int32_t)L_16) >= ((int32_t)0)))
{
goto IL_003e;
}
}
IL_005f:
{
AttrNameU5BU5D_t501369F3E8EBC0B2B32AF603424921032B14A983* L_17 = __this->___attrStack_10;
int32_t L_18 = ___attributeIndex0;
NullCheck(L_17);
int32_t L_19 = V_1;
((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->___prev_3 = ((int32_t)il2cpp_codegen_add(L_19, 1));
return;
}
}
// System.Void System.Xml.XmlWellFormedWriter::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWellFormedWriter__cctor_mCF1F3859488EFEFA3CE3F8A244B3AADD328D1377 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StateU5BU5D_t9E4189FBE1E6EF2CD6F60C94EE572FA8E522A375_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_tBAB6DC40B1709E21296656960228A17F1BE57FD7____21AFB7EF8B4B88C006C54601484BC15AE5A8DBD2C0DD8C6622109208F8511B82_2_FieldInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_tBAB6DC40B1709E21296656960228A17F1BE57FD7____58E18897FE5FF048E82310FB4F57ADB2D53AEE59CB49B1E7094439808A1EF3F6_14_FieldInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_tBAB6DC40B1709E21296656960228A17F1BE57FD7____77186ED8B389D5640B5AFAC4A22526ABA2422DCBE2986D0032E3B035D175758D_18_FieldInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WriteStateU5BU5D_t2541ACA07B6DAA172C2D36B58A47A83DAC4375DF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0E2995C1357F8579A0DC0E2A26B0D0CA703B5FB7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral107C050A992A643103C6C001E848316AB027D2E0);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral120472D8D40924F6F8355A94DB677A8F142E2EB6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral170766BABFD892AEC6CFB19EA06D35787C834FE9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral18D590EE2CB69EF580815DC0D279AC45B0F5FA2B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1A82671F2C34BEA09C35354DDB899812746CBCF9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1E1DB32AFA986C58B9ACC9C146BF83E67C0DCE66);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2343901946DDD83EFBB8B93C33F01CBD394063B2);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral23A6BF321FC205420788A7F2E1A1334F6C712C89);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral24099C824AA6B479B0B07139E7CFB04638C0AEDA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral38E75ABA96218667556E142D2773A67D1F846A95);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3C74CEADD0C37A5DAAFFF37CDB455A8EFD8304BF);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3EBF7CFEC7929F196835D5D12FBBE2F845BF2A5F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral45B9464D208C0A900770E5F7A95E5FE067CD4CCC);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral478E443AC6458DEF339E044E26A49ADE5A2AC1FE);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5296173AB8D4E282E989F7B0B7B7C9A3ACF26E18);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral56EF1F2751B48DAA3EC7F762F420920B8E40757A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral623A9F750825EB9F6FD1A2E4F3B121AF21D4CD0D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7BBD8C0287448D34297B233D6604618390BA9C38);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8243A16D425F93AF62CAAB2BFAE01A2D6246A5FE);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral90AC7861280D19EAA167EE136C29B61BD0F1A328);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral92EE0A9203C9B8F69CAE261B7FAF6C5AB705E49E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA10AFD0FBAD152979B3F2273DA98BA5C9686E69C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBA60BBAAF60E063761EDE850CC684D538D9A8573);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBBC1106D65ACC9B0DB541F4FAF5DBAF5B7F7BA1F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD6DCC897C02A857315752249765CB47ADDF4E5C7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE09B556D1A5AFFB258696FDDCFA2E54208034620);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF0321EB1FDF45432B1A8C835517C2DFFBB4AF5AC);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF41760006700B346FE970834ED6436CD21A1330F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF58ED4D45480346BA6783D48CF49AC351B2A1A5C);
s_Il2CppMethodInitialized = true;
}
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)((int32_t)17));
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_1 = L_0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, _stringLiteral8243A16D425F93AF62CAAB2BFAE01A2D6246A5FE);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral8243A16D425F93AF62CAAB2BFAE01A2D6246A5FE);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_2 = L_1;
NullCheck(L_2);
ArrayElementTypeCheck (L_2, _stringLiteralF0321EB1FDF45432B1A8C835517C2DFFBB4AF5AC);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralF0321EB1FDF45432B1A8C835517C2DFFBB4AF5AC);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_3 = L_2;
NullCheck(L_3);
ArrayElementTypeCheck (L_3, _stringLiteral18D590EE2CB69EF580815DC0D279AC45B0F5FA2B);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral18D590EE2CB69EF580815DC0D279AC45B0F5FA2B);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_4 = L_3;
NullCheck(L_4);
ArrayElementTypeCheck (L_4, _stringLiteral90AC7861280D19EAA167EE136C29B61BD0F1A328);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral90AC7861280D19EAA167EE136C29B61BD0F1A328);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_5 = L_4;
NullCheck(L_5);
ArrayElementTypeCheck (L_5, _stringLiteralF58ED4D45480346BA6783D48CF49AC351B2A1A5C);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteralF58ED4D45480346BA6783D48CF49AC351B2A1A5C);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_6 = L_5;
NullCheck(L_6);
ArrayElementTypeCheck (L_6, _stringLiteralF58ED4D45480346BA6783D48CF49AC351B2A1A5C);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteralF58ED4D45480346BA6783D48CF49AC351B2A1A5C);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_7 = L_6;
NullCheck(L_7);
ArrayElementTypeCheck (L_7, _stringLiteral120472D8D40924F6F8355A94DB677A8F142E2EB6);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteral120472D8D40924F6F8355A94DB677A8F142E2EB6);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_8 = L_7;
NullCheck(L_8);
ArrayElementTypeCheck (L_8, _stringLiteral0E2995C1357F8579A0DC0E2A26B0D0CA703B5FB7);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(7), (String_t*)_stringLiteral0E2995C1357F8579A0DC0E2A26B0D0CA703B5FB7);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_9 = L_8;
NullCheck(L_9);
ArrayElementTypeCheck (L_9, _stringLiteral120472D8D40924F6F8355A94DB677A8F142E2EB6);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(8), (String_t*)_stringLiteral120472D8D40924F6F8355A94DB677A8F142E2EB6);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_10 = L_9;
NullCheck(L_10);
ArrayElementTypeCheck (L_10, _stringLiteralBA60BBAAF60E063761EDE850CC684D538D9A8573);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)9)), (String_t*)_stringLiteralBA60BBAAF60E063761EDE850CC684D538D9A8573);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_11 = L_10;
NullCheck(L_11);
ArrayElementTypeCheck (L_11, _stringLiteral92EE0A9203C9B8F69CAE261B7FAF6C5AB705E49E);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)10)), (String_t*)_stringLiteral92EE0A9203C9B8F69CAE261B7FAF6C5AB705E49E);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_12 = L_11;
NullCheck(L_12);
ArrayElementTypeCheck (L_12, _stringLiteral38E75ABA96218667556E142D2773A67D1F846A95);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)11)), (String_t*)_stringLiteral38E75ABA96218667556E142D2773A67D1F846A95);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_13 = L_12;
NullCheck(L_13);
ArrayElementTypeCheck (L_13, _stringLiteralE09B556D1A5AFFB258696FDDCFA2E54208034620);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)12)), (String_t*)_stringLiteralE09B556D1A5AFFB258696FDDCFA2E54208034620);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_14 = L_13;
NullCheck(L_14);
ArrayElementTypeCheck (L_14, _stringLiteral107C050A992A643103C6C001E848316AB027D2E0);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)13)), (String_t*)_stringLiteral107C050A992A643103C6C001E848316AB027D2E0);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_15 = L_14;
NullCheck(L_15);
ArrayElementTypeCheck (L_15, _stringLiteral3C74CEADD0C37A5DAAFFF37CDB455A8EFD8304BF);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)14)), (String_t*)_stringLiteral3C74CEADD0C37A5DAAFFF37CDB455A8EFD8304BF);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_16 = L_15;
NullCheck(L_16);
ArrayElementTypeCheck (L_16, _stringLiteralBBC1106D65ACC9B0DB541F4FAF5DBAF5B7F7BA1F);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)15)), (String_t*)_stringLiteralBBC1106D65ACC9B0DB541F4FAF5DBAF5B7F7BA1F);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_17 = L_16;
NullCheck(L_17);
ArrayElementTypeCheck (L_17, _stringLiteralD6DCC897C02A857315752249765CB47ADDF4E5C7);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)16)), (String_t*)_stringLiteralD6DCC897C02A857315752249765CB47ADDF4E5C7);
((XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_StaticFields*)il2cpp_codegen_static_fields_for(XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var))->___stateName_26 = L_17;
Il2CppCodeGenWriteBarrier((void**)(&((XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_StaticFields*)il2cpp_codegen_static_fields_for(XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var))->___stateName_26), (void*)L_17);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_18 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)((int32_t)15));
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_19 = L_18;
NullCheck(L_19);
ArrayElementTypeCheck (L_19, _stringLiteral623A9F750825EB9F6FD1A2E4F3B121AF21D4CD0D);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral623A9F750825EB9F6FD1A2E4F3B121AF21D4CD0D);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_20 = L_19;
NullCheck(L_20);
ArrayElementTypeCheck (L_20, _stringLiteral478E443AC6458DEF339E044E26A49ADE5A2AC1FE);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral478E443AC6458DEF339E044E26A49ADE5A2AC1FE);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_21 = L_20;
NullCheck(L_21);
ArrayElementTypeCheck (L_21, _stringLiteral5296173AB8D4E282E989F7B0B7B7C9A3ACF26E18);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral5296173AB8D4E282E989F7B0B7B7C9A3ACF26E18);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_22 = L_21;
NullCheck(L_22);
ArrayElementTypeCheck (L_22, _stringLiteral3EBF7CFEC7929F196835D5D12FBBE2F845BF2A5F);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral3EBF7CFEC7929F196835D5D12FBBE2F845BF2A5F);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_23 = L_22;
NullCheck(L_23);
ArrayElementTypeCheck (L_23, _stringLiteral170766BABFD892AEC6CFB19EA06D35787C834FE9);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral170766BABFD892AEC6CFB19EA06D35787C834FE9);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_24 = L_23;
NullCheck(L_24);
ArrayElementTypeCheck (L_24, _stringLiteral56EF1F2751B48DAA3EC7F762F420920B8E40757A);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral56EF1F2751B48DAA3EC7F762F420920B8E40757A);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_25 = L_24;
NullCheck(L_25);
ArrayElementTypeCheck (L_25, _stringLiteral7BBD8C0287448D34297B233D6604618390BA9C38);
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteral7BBD8C0287448D34297B233D6604618390BA9C38);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_26 = L_25;
NullCheck(L_26);
ArrayElementTypeCheck (L_26, _stringLiteral23A6BF321FC205420788A7F2E1A1334F6C712C89);
(L_26)->SetAt(static_cast<il2cpp_array_size_t>(7), (String_t*)_stringLiteral23A6BF321FC205420788A7F2E1A1334F6C712C89);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_27 = L_26;
NullCheck(L_27);
ArrayElementTypeCheck (L_27, _stringLiteral2343901946DDD83EFBB8B93C33F01CBD394063B2);
(L_27)->SetAt(static_cast<il2cpp_array_size_t>(8), (String_t*)_stringLiteral2343901946DDD83EFBB8B93C33F01CBD394063B2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_28 = L_27;
NullCheck(L_28);
ArrayElementTypeCheck (L_28, _stringLiteral1A82671F2C34BEA09C35354DDB899812746CBCF9);
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)9)), (String_t*)_stringLiteral1A82671F2C34BEA09C35354DDB899812746CBCF9);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_29 = L_28;
NullCheck(L_29);
ArrayElementTypeCheck (L_29, _stringLiteralA10AFD0FBAD152979B3F2273DA98BA5C9686E69C);
(L_29)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)10)), (String_t*)_stringLiteralA10AFD0FBAD152979B3F2273DA98BA5C9686E69C);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_30 = L_29;
NullCheck(L_30);
ArrayElementTypeCheck (L_30, _stringLiteral24099C824AA6B479B0B07139E7CFB04638C0AEDA);
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)11)), (String_t*)_stringLiteral24099C824AA6B479B0B07139E7CFB04638C0AEDA);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_31 = L_30;
NullCheck(L_31);
ArrayElementTypeCheck (L_31, _stringLiteral45B9464D208C0A900770E5F7A95E5FE067CD4CCC);
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)12)), (String_t*)_stringLiteral45B9464D208C0A900770E5F7A95E5FE067CD4CCC);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_32 = L_31;
NullCheck(L_32);
ArrayElementTypeCheck (L_32, _stringLiteralF41760006700B346FE970834ED6436CD21A1330F);
(L_32)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)13)), (String_t*)_stringLiteralF41760006700B346FE970834ED6436CD21A1330F);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_33 = L_32;
NullCheck(L_33);
ArrayElementTypeCheck (L_33, _stringLiteral1E1DB32AFA986C58B9ACC9C146BF83E67C0DCE66);
(L_33)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)14)), (String_t*)_stringLiteral1E1DB32AFA986C58B9ACC9C146BF83E67C0DCE66);
((XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_StaticFields*)il2cpp_codegen_static_fields_for(XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var))->___tokenName_27 = L_33;
Il2CppCodeGenWriteBarrier((void**)(&((XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_StaticFields*)il2cpp_codegen_static_fields_for(XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var))->___tokenName_27), (void*)L_33);
WriteStateU5BU5D_t2541ACA07B6DAA172C2D36B58A47A83DAC4375DF* L_34 = (WriteStateU5BU5D_t2541ACA07B6DAA172C2D36B58A47A83DAC4375DF*)(WriteStateU5BU5D_t2541ACA07B6DAA172C2D36B58A47A83DAC4375DF*)SZArrayNew(WriteStateU5BU5D_t2541ACA07B6DAA172C2D36B58A47A83DAC4375DF_il2cpp_TypeInfo_var, (uint32_t)((int32_t)17));
WriteStateU5BU5D_t2541ACA07B6DAA172C2D36B58A47A83DAC4375DF* L_35 = L_34;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_36 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_tBAB6DC40B1709E21296656960228A17F1BE57FD7____58E18897FE5FF048E82310FB4F57ADB2D53AEE59CB49B1E7094439808A1EF3F6_14_FieldInfo_var) };
RuntimeHelpers_InitializeArray_mE10C3436BA703E4D9D41B3F8F365E4C34F9926EF((RuntimeArray*)L_35, L_36, NULL);
((XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_StaticFields*)il2cpp_codegen_static_fields_for(XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var))->___state2WriteState_28 = L_35;
Il2CppCodeGenWriteBarrier((void**)(&((XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_StaticFields*)il2cpp_codegen_static_fields_for(XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var))->___state2WriteState_28), (void*)L_35);
StateU5BU5D_t9E4189FBE1E6EF2CD6F60C94EE572FA8E522A375* L_37 = (StateU5BU5D_t9E4189FBE1E6EF2CD6F60C94EE572FA8E522A375*)(StateU5BU5D_t9E4189FBE1E6EF2CD6F60C94EE572FA8E522A375*)SZArrayNew(StateU5BU5D_t9E4189FBE1E6EF2CD6F60C94EE572FA8E522A375_il2cpp_TypeInfo_var, (uint32_t)((int32_t)240));
StateU5BU5D_t9E4189FBE1E6EF2CD6F60C94EE572FA8E522A375* L_38 = L_37;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_39 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_tBAB6DC40B1709E21296656960228A17F1BE57FD7____77186ED8B389D5640B5AFAC4A22526ABA2422DCBE2986D0032E3B035D175758D_18_FieldInfo_var) };
RuntimeHelpers_InitializeArray_mE10C3436BA703E4D9D41B3F8F365E4C34F9926EF((RuntimeArray*)L_38, L_39, NULL);
((XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_StaticFields*)il2cpp_codegen_static_fields_for(XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var))->___StateTableDocument_29 = L_38;
Il2CppCodeGenWriteBarrier((void**)(&((XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_StaticFields*)il2cpp_codegen_static_fields_for(XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var))->___StateTableDocument_29), (void*)L_38);
StateU5BU5D_t9E4189FBE1E6EF2CD6F60C94EE572FA8E522A375* L_40 = (StateU5BU5D_t9E4189FBE1E6EF2CD6F60C94EE572FA8E522A375*)(StateU5BU5D_t9E4189FBE1E6EF2CD6F60C94EE572FA8E522A375*)SZArrayNew(StateU5BU5D_t9E4189FBE1E6EF2CD6F60C94EE572FA8E522A375_il2cpp_TypeInfo_var, (uint32_t)((int32_t)240));
StateU5BU5D_t9E4189FBE1E6EF2CD6F60C94EE572FA8E522A375* L_41 = L_40;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_42 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_tBAB6DC40B1709E21296656960228A17F1BE57FD7____21AFB7EF8B4B88C006C54601484BC15AE5A8DBD2C0DD8C6622109208F8511B82_2_FieldInfo_var) };
RuntimeHelpers_InitializeArray_mE10C3436BA703E4D9D41B3F8F365E4C34F9926EF((RuntimeArray*)L_41, L_42, NULL);
((XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_StaticFields*)il2cpp_codegen_static_fields_for(XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var))->___StateTableAuto_30 = L_41;
Il2CppCodeGenWriteBarrier((void**)(&((XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_StaticFields*)il2cpp_codegen_static_fields_for(XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var))->___StateTableAuto_30), (void*)L_41);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
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_20;
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_38;
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_57;
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_24;
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_25;
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_37;
return L_0;
}
}
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 XmlTextEncoder_set_QuoteChar_mE15FB6ECB7FAF6CE0780E1FE421D0802BF38D627_inline (XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* __this, Il2CppChar ___value0, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___value0;
__this->___quoteChar_2 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_Async_m0444A26262668D76461EEBD468B622F8F5418A60_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___useAsync_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlWriterSettings_get_NewLineHandling_mE5E642195853271BBF3F6EA8399789D675D6EBE0_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___newLineHandling_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_OmitXmlDeclaration_m4DDF4951F3229EB1DEEFABD680769ABB9BB881DF_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___omitXmlDecl_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlWriterSettings_get_NewLineChars_m55DA9DDAED17162E8055730FE8047AEBFA5AC7F9_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___newLineChars_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_CheckCharacters_mD2E14381EBF36D4C56C13F1BF4846667B4CCBB31_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___checkCharacters_11;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_CloseOutput_m7676FD456B701FF93BCA6C3EADE2E5DF97D7A926_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___closeOutput_8;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlWriterSettings_get_Standalone_mF6BD9C7DD44EDEA0EE1416AB92471C5374DBE26B_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___standalone_20;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlWriterSettings_get_OutputMethod_mD033562BBB2BF636CD2B093DF43FFF69FCEB2BD1_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___outputMethod_13;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_MergeCDataSections_mA287AE0C1056022F4AE21AB1295026897C2BD817_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___mergeCDataSections_16;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* XmlWriterSettings_get_Encoding_mC4E1AB9D49553D659321B2BEEA46AE5D343BCBEE_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_0 = __this->___encoding_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_AutoXmlDeclaration_m99219BABCEECCC72F64FA0062E19B2628B806A9C_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___autoXmlDecl_21;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlWriterSettings_get_IndentChars_mF26B2899F7718E3DC75CA62FDFB5915BAF5C158D_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___indentChars_6;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_NewLineOnAttributes_m3ACAFD8A94C15826E9DDC4F20B280C6AF3407F7D_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___newLineOnAttributes_7;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* XmlAsyncCheckReader_get_CoreReader_m7EEC14B20E5C6021736672F4DA2503B14E670A93_inline (XmlAsyncCheckReader_t6568CCA31DC0FEB56DD621DAB293E3EB7C00C7F4* __this, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3;
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 void XmlSchemaCollection_set_XmlResolver_mCBCC7ABCA885FCDDBEB0255A49B17C8CB8BB0D62_inline (XmlSchemaCollection_t795483FF9909CCC596ADA560E1C1654E66CAEAAD* __this, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___value0, const RuntimeMethod* method)
{
{
XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_0 = ___value0;
__this->___xmlResolver_7 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlResolver_7), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_ValidationEventHandling_mF8A66D6BE2B822997F486F4931B151B667863E59_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->___validationEventHandling_57 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___validationEventHandling_57), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_OnDefaultAttributeUse_m519352D6E61D34534B6790ECB3180B4B050B92FB_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499* ___value0, const RuntimeMethod* method)
{
{
OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499* L_0 = ___value0;
__this->___onDefaultAttributeUse_58 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___onDefaultAttributeUse_58), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_V1Compat_m27698868D378A1241DCAA4E22251E930806781C7_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___v1Compat_37;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlReaderSettings_get_ValidationFlags_m22A3C5CFDC1CBF2EF8B5975A581B00EDF4D8E876_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___validationFlags_14;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlReaderSettings_set_ReadOnly_mE9D803936E0E2E8A22464C57D96C71AB35D1A6CB_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->___isReadOnly_18 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_Namespaces_mCFAB7C99825041BA3C8ABD1752DF24D1F62B7122_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___supportNamespaces_25;
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_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_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 void BaseValidator_set_XmlResolver_m1D94109BE43E3C8A1738BC7C4A0A1A7233818FBF_inline (BaseValidator_t76E42AEBD013AC709BA36D782908C7B708BA8DAB* __this, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___value0, const RuntimeMethod* method)
{
{
XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_0 = ___value0;
__this->___xmlResolver_5 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlResolver_5), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void BaseValidator_set_BaseUri_mA4B0ACD053F6B82E24AC7B4468CF425FFB0351EC_inline (BaseValidator_t76E42AEBD013AC709BA36D782908C7B708BA8DAB* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___value0, const RuntimeMethod* method)
{
{
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_0 = ___value0;
__this->___baseUri_6 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___baseUri_6), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_IsResolverSet_mE4680CEFE9EF053C07E21CF5759C26EB7D7E2383_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___xmlResolverIsSet_76;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_get_FragmentType_m2A244AA6C26344D9FFD93C4431E5BB30846E3A10_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___fragmentType_46;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_StandAlone_mA576162454EF6AB6B5B442B1AF0FF6375F52EF2D_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___standalone_63;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SchemaAttDef_get_DefaultValueChecked_m57D6252200749344E61A44A323A8082353DA4B8F_inline (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___defaultValueChecked_17;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ValidationEventHandler_Invoke_m585F7368113F5FDF31F3C7C9C5B7F520CE46481B_inline (ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* __this, RuntimeObject* ___sender0, ValidationEventArgs_t9857F51592E50B7D14912FFA79909878DC603830* ___e1, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* __this, RuntimeObject* ___sender0, ValidationEventArgs_t9857F51592E50B7D14912FFA79909878DC603830* ___e1, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___sender0, ___e1, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlValidatingReaderImpl_get_ValidationType_m3F56E6463F6CA002AD75157D14E897A2F5230988_inline (XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___validationType_6;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlWriterSettings_get_NamespaceHandling_m3A904C3E9BA1FED8C1A8BDA66A5FF9A93CB87F78_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___namespaceHandling_9;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_WriteEndDocumentOnClose_m73A02E01FD8DB8AEBE545E9A60F92E5BFA1CBDB8_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___writeEndDocumentOnClose_12;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlWriterSettings_get_ConformanceLevel_mAAD6F249DE7CF83E6F97F60C9FFDD0BC84AD9842_inline (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___conformanceLevel_10;
return L_0;
}
}