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

34013 行
1.5 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 R, typename T1, typename T2, typename T3>
struct VirtualFuncInvoker3
{
typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4>
struct VirtualFuncInvoker4
{
typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
struct VirtualFuncInvoker6
{
typedef R (*Func)(void*, T1, T2, T3, T4, T5, T6, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, p6, invokeData.method);
}
};
struct GenericVirtualActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
struct InterfaceActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <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);
}
};
struct GenericInterfaceActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1>
struct InvokerActionInvoker1;
template <typename T1>
struct InvokerActionInvoker1<T1*>
{
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1)
{
void* params[1] = { p1 };
method->invoker_method(methodPtr, method, obj, params, NULL);
}
};
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);
}
};
// System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo>
struct ConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858;
// 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.Object>
struct Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA;
// 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.Int32>
struct Dictionary_2_t873B9D79376C64DD27D1977E8F6391DD3DBDE426;
// 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.Dictionary`2<System.Xml.XmlQualifiedName,System.Xml.XmlQualifiedName>
struct Dictionary_2_t8E385BAD05584AB244D10E6FAAA2C60FB9BA5F64;
// System.Collections.Generic.IDictionary`2<System.String,System.String>
struct IDictionary_2_t51DBA2F8AFDC8E5CC588729B12034B8C4D30B0AF;
// System.Collections.Generic.IEnumerable`1<System.Object>
struct IEnumerable_1_tF95C9E01A913DD50575531C8305932628663D9E9;
// System.Collections.Generic.IEnumerable`1<System.Xml.XmlQualifiedName>
struct IEnumerable_1_tBDEAEA9BE3ACB66C88E2EB5FA0F90E052EF945C4;
// System.Collections.Generic.IEqualityComparer`1<System.String>
struct IEqualityComparer_1_tAE94C8F24AD5B94D4EE85CA9FC59E3409D41CAF7;
// System.Collections.Generic.IEqualityComparer`1<System.Xml.XmlQualifiedName>
struct IEqualityComparer_1_t34D541B5FA7B648B0BA88CB13474D1CE66138B8D;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.Xml.Schema.SchemaNotation>
struct KeyCollection_t5D8F69434F54ADB75F5F7E8F5F6C8EE84A3ACC5A;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaAttDef>
struct KeyCollection_t982B62EC18A65A3F52F0FA723D7A5B51D3EACE44;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaElementDecl>
struct KeyCollection_t2FCB408F1EB9CA12888AE6E0ACEA3FA995A5DAA3;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaEntity>
struct KeyCollection_t3F2FECD4AC086FD3ABAE5D31881677BABA02B0D0;
// System.Collections.Generic.List`1<System.Xml.IDtdDefaultAttributeInfo>
struct List_1_tF7608B82384542DEB200F8E211D9D36AE02EAB58;
// System.Collections.Generic.List`1<System.Object>
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D;
// 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.Object,System.Object>
struct ValueCollection_t038245E04B5D2A80048D9F8021A23E69A0C9DBAA;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.Xml.Schema.SchemaNotation>
struct ValueCollection_t8898F5330699C43BF4307CDFD83DB8DC4ED26F1F;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaAttDef>
struct ValueCollection_t16158FF974E6076F10354D4F3FC08E7FFF87086F;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaElementDecl>
struct ValueCollection_tBA3CDE187BE7665A5798B190605F306816272791;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaEntity>
struct ValueCollection_t5E6BEDEB2CEF7A818BACE8D90DFE44BE5DAC4431;
// System.Collections.Generic.Dictionary`2/Entry<System.String,System.Xml.Schema.SchemaNotation>[]
struct EntryU5BU5D_tD75588C64683EE9F29934F54AF3282733AA0E53A;
// System.Collections.Generic.Dictionary`2/Entry<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaAttDef>[]
struct EntryU5BU5D_tCAC26DCAE98AD40E0B5A1AA16EC1FC8F233ACDE3;
// System.Collections.Generic.Dictionary`2/Entry<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaElementDecl>[]
struct EntryU5BU5D_t0C8848FA8C979298F3C182D8EB03570D8FA26FA7;
// System.Collections.Generic.Dictionary`2/Entry<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaEntity>[]
struct EntryU5BU5D_tD59BF430101A4C2080228ED133FC9737B0A030EE;
// System.Xml.AttributePSVIInfo[]
struct AttributePSVIInfoU5BU5D_tC78F3BF4DD87E93F42D8DA640AA29B625F3644BD;
// System.Boolean[]
struct BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4;
// System.Byte[]
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
// System.Char[]
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
// System.Xml.Schema.CompiledIdentityConstraint[]
struct CompiledIdentityConstraintU5BU5D_tA8E35C25853FEF33AAE27549EE1E30F039429D16;
// System.Delegate[]
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
// System.Int32[]
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
// System.IntPtr[]
struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
// System.Object[]
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
// System.String[]
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
// System.Type[]
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
// System.Xml.ValidatingReaderNodeData[]
struct ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8;
// System.Xml.WriteState[]
struct WriteStateU5BU5D_t2541ACA07B6DAA172C2D36B58A47A83DAC4375DF;
// System.Xml.XmlAttribute[]
struct XmlAttributeU5BU5D_tFC0CF817A6D2131D94AB6387E4EAE7D97B3FFC40;
// System.Xml.XmlName[]
struct XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC;
// System.Xml.XmlQualifiedName[]
struct XmlQualifiedNameU5BU5D_t95C376ACDEA9261B842F45A4C4DF9ABEE0FB35D1;
// System.Xml.Schema.XmlSchemaAttribute[]
struct XmlSchemaAttributeU5BU5D_t18E825B9088A3BF3A732FD70EE9A586EF6347534;
// System.Xml.Schema.XmlSchemaParticle[]
struct XmlSchemaParticleU5BU5D_t9D1A2F6D01E06055F53C259F65E0980F90B3F90C;
// System.Collections.Hashtable/bucket[]
struct bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587;
// System.Xml.NameTable/Entry[]
struct EntryU5BU5D_tE4AE7874F9098D7C9B34C34630C2F2698981939A;
// System.Xml.XmlNamespaceManager/NamespaceDeclaration[]
struct NamespaceDeclarationU5BU5D_t4DF48D3A2EB82C491A60E8748DE4BAFAA95A0F60;
// System.Xml.XmlTextReaderImpl/NodeData[]
struct NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610;
// System.Xml.XmlTextReaderImpl/ParsingState[]
struct ParsingStateU5BU5D_t6DBF0A43B3A9658C0218546F90EC15DCF17F3E29;
// System.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.Boolean[,]
struct BooleanU5BU2CU5D_t0A96EF7DC71D7FB5C1757A719712D1DFB2D571B6;
// System.ArgumentException
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263;
// System.ArgumentNullException
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129;
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F;
// System.Collections.ArrayList
struct ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A;
// System.Xml.AttributePSVIInfo
struct AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE;
// System.Reflection.Binder
struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235;
// System.Xml.BitStack
struct BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C;
// System.Xml.ByteStack
struct ByteStack_tCA5C0427314E734C1847B4867CB3D1617CED0D49;
// System.Xml.CachingEventHandler
struct CachingEventHandler_t3531836C36E56CCAAB45B3B7DA1B4F94742FE74E;
// System.Globalization.Calendar
struct Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B;
// System.Xml.CharEntityEncoderFallback
struct CharEntityEncoderFallback_tB21A3AB1212CD1B53747CC36F7F96D6C64C87EE1;
// System.Globalization.CodePageDataItem
struct CodePageDataItem_t52460FA30AE37F4F26ACB81055E58002262F19F2;
// System.Globalization.CompareInfo
struct CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57;
// System.Xml.Schema.ContentValidator
struct ContentValidator_t42EB1802005FF0D871EE98A34ADB69091CCE48FE;
// System.Globalization.CultureData
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D;
// System.Globalization.CultureInfo
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0;
// System.Globalization.DateTimeFormatInfo
struct DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A;
// System.Text.Decoder
struct Decoder_tE16E789E38B25DD304004FC630EA8B21000ECBBC;
// System.Text.DecoderFallback
struct DecoderFallback_t7324102215E4ED41EC065C02EB501CB0BC23CD90;
// System.Delegate
struct Delegate_t;
// System.DelegateData
struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
// System.Xml.DomNameTable
struct DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45;
// System.Xml.EmptyEnumerator
struct EmptyEnumerator_t84EC9187C8460EE98E675ED9258AE4DF2A6776DA;
// System.Text.Encoder
struct Encoder_tAF9067231A76315584BDF4CD27990E2F485A78FA;
// System.Text.EncoderFallback
struct EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293;
// System.Text.Encoding
struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095;
// System.Enum
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2;
// System.Exception
struct Exception_t;
// System.Xml.HWStack
struct HWStack_tD40EE1D12E709BECF016469F161DC3071C020CC5;
// System.Collections.Hashtable
struct Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D;
// System.Xml.HtmlEncodedRawTextWriter
struct HtmlEncodedRawTextWriter_t452DCE7E1E6FBDF73AA28D611C4682E50A82E8C2;
// System.Xml.HtmlEncodedRawTextWriterIndent
struct HtmlEncodedRawTextWriterIndent_t6D9E69A027E84EE9EEDCFFC4021A6FEDA00AAF21;
// System.Xml.HtmlUtf8RawTextWriter
struct HtmlUtf8RawTextWriter_tBDA64D6572325D75C2E84DE787BC2D7C9A0AE850;
// System.Xml.HtmlUtf8RawTextWriterIndent
struct HtmlUtf8RawTextWriterIndent_tC066D5903C4C1015116223E4A62B64637E8971A6;
// System.Collections.ICollection
struct ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E;
// System.Collections.IDictionary
struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
// 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.Collections.IEqualityComparer
struct IEqualityComparer_tEF8F1EC76B9C8E76695BE848D41E6B147928D1C1;
// System.IFormatProvider
struct IFormatProvider_tC202922D43BFF3525109ABF3FB79625F5646AB52;
// System.Xml.IValidationEventHandling
struct IValidationEventHandling_t5929D7539D965D446556F7740F36A2BF7C6CC57E;
// System.Xml.IXmlLineInfo
struct IXmlLineInfo_tDD8332CE7D244FDA50A6C5744D7EAEC4A6CCBF05;
// System.Xml.IXmlNamespaceResolver
struct IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1;
// System.Xml.Schema.IXmlSchemaInfo
struct IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB;
// System.Xml.Schema.IdRefNode
struct IdRefNode_t06793D939FD3F484183D046CB2711557FBD5588D;
// System.Xml.IncrementalReadDecoder
struct IncrementalReadDecoder_t55EB8A2FB2A5FFCB1B68AE7F784C4E00DCE1E55B;
// System.IndexOutOfRangeException
struct IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82;
// System.InvalidOperationException
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB;
// System.Reflection.MemberFilter
struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.Xml.NameTable
struct NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46;
// System.Security.NamedPermissionSet
struct NamedPermissionSet_tE1762DB096B3A45291DA354EC7DD1C5A1F74B97C;
// System.NotImplementedException
struct NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8;
// System.Globalization.NumberFormatInfo
struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472;
// System.Xml.OnRemoveWriter
struct OnRemoveWriter_tF7CE4EBE235C3441FB9AE343E45CC311DE11C50F;
// System.Xml.Schema.Parser
struct Parser_t5A18E84F88E618D9E803A7768A7765BF17DB2C07;
// System.Security.PermissionSet
struct PermissionSet_t1E1A3526A8CB8CF06B47C292D349FC06F93A0240;
// System.Xml.PositionInfo
struct PositionInfo_t1695F015DE0C183D3B4CE5A1562AD8A8A373F5B5;
// System.Xml.QueryOutputWriter
struct QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2;
// System.Xml.ReadContentAsBinaryHelper
struct ReadContentAsBinaryHelper_t94D48E6891DEAC8DFE5DEA1B820091D277880897;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
// System.Xml.Schema.SchemaAttDef
struct SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553;
// System.Xml.Schema.SchemaBuilder
struct SchemaBuilder_t34D90A0220BB6F8965267938FB5E298526253B21;
// System.Xml.Schema.SchemaDeclBase
struct SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B;
// System.Xml.Schema.SchemaElementDecl
struct SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD;
// System.Xml.Schema.SchemaEntity
struct SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7;
// System.Xml.Schema.SchemaInfo
struct SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E;
// System.Xml.Schema.SchemaNames
struct SchemaNames_tF7A45B027D5759AA56D035F5962B4612A6B0902F;
// System.Xml.Schema.SchemaNotation
struct SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269;
// System.Xml.SecureStringHasher
struct SecureStringHasher_t4052E73C966E6FE65426B19F4AF48AB9869F614E;
// System.Security.SecurityException
struct SecurityException_t025CB4C23107E67E07CF085826B40EDE72F8165C;
// System.Threading.SemaphoreSlim
struct SemaphoreSlim_t0D5CB5685D9BFA5BF95CEC6E7395490F933E8DB2;
// System.Collections.SortedList
struct SortedList_t847331629BA06B518F1B5203BD22B59746EDDBF3;
// System.IO.Stream
struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE;
// System.String
struct String_t;
// System.Text.StringBuilder
struct StringBuilder_t;
// System.IO.StringReader
struct StringReader_t1A336148FF22A9584E759A9D720CC96C23E35DD8;
// System.Threading.Tasks.Task
struct Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572;
// System.Xml.TernaryTreeReadOnly
struct TernaryTreeReadOnly_tD06A8A7750282A366E59B387CAD80E8C606F0608;
// System.Xml.TextEncodedRawTextWriter
struct TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01;
// System.Globalization.TextInfo
struct TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4;
// System.IO.TextReader
struct TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7;
// System.Xml.TextUtf8RawTextWriter
struct TextUtf8RawTextWriter_t63B16D02A0D0351C035D28CF103BE455585F6B73;
// System.IO.TextWriter
struct TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3;
// System.Type
struct Type_t;
// System.Uri
struct Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E;
// System.UriParser
struct UriParser_t920B0868286118827C08B08A15A9456AF6C19D81;
// System.Xml.ValidatingReaderNodeData
struct ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C;
// 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.WeakReference
struct WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E;
// System.Xml.XmlAsyncCheckWriter
struct XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C;
// System.Xml.XmlAttribute
struct XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18;
// System.Xml.XmlAttributeCollection
struct XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0;
// System.Xml.XmlAutoDetectWriter
struct XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA;
// System.Xml.XmlCDataSection
struct XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA;
// System.Xml.XmlCharacterData
struct XmlCharacterData_t95604E2FDB152E89A58F9D51414A2903012E758B;
// System.Xml.XmlChildEnumerator
struct XmlChildEnumerator_tDD03B83EAA250AB86DFF4B53C1430DA942E85939;
// System.Xml.XmlChildNodes
struct XmlChildNodes_tBD3126123F4810D8B272B8201C07FE70CDC9C5E2;
// System.Xml.XmlComment
struct XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9;
// System.Xml.XmlDeclaration
struct XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79;
// System.Xml.XmlDocument
struct XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B;
// System.Xml.XmlDocumentFragment
struct XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD;
// System.Xml.XmlDocumentType
struct XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E;
// System.Xml.XmlElement
struct XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1;
// System.Xml.XmlEncodedRawTextWriter
struct XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4;
// System.Xml.XmlEncodedRawTextWriterIndent
struct XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008;
// System.Xml.XmlEntity
struct XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE;
// System.Xml.XmlEntityReference
struct XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684;
// System.Xml.XmlEventCache
struct XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF;
// System.Xml.XmlException
struct XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596;
// System.Xml.XmlImplementation
struct XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D;
// System.Xml.XmlLinkedNode
struct XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C;
// System.Xml.XmlLoader
struct XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D;
// System.Xml.XmlName
struct XmlName_t0704430D24D202146901D342E34D878246E14F33;
// System.Xml.XmlNameTable
struct XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8;
// System.Xml.XmlNamedNodeMap
struct XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C;
// System.Xml.XmlNamespaceManager
struct XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F;
// System.Xml.XmlNode
struct XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF;
// System.Xml.XmlNodeChangedEventArgs
struct XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A;
// System.Xml.XmlNodeChangedEventHandler
struct XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B;
// System.Xml.XmlNodeList
struct XmlNodeList_tFC0CEED3A006BEDF6A1A420F7CB55AC33E9B7F85;
// System.Xml.XmlNotation
struct XmlNotation_t0CB6B652D5F20BB51A8A299F67BEE3D6EC91CE4D;
// System.Xml.XmlParserContext
struct XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B;
// System.Xml.XmlProcessingInstruction
struct XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3;
// System.Xml.XmlQualifiedName
struct XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9;
// System.Xml.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.XmlSchema
struct XmlSchema_t5C9506D00418BF5FD524254D0C6C405C620C941D;
// System.Xml.Schema.XmlSchemaAnnotation
struct XmlSchemaAnnotation_t35947D4DA687AA3C531135CEC5EBE7AB1C3EF821;
// System.Xml.Schema.XmlSchemaAnyAttribute
struct XmlSchemaAnyAttribute_t2674CD673C9358AEDF1F318A8CF5DE9EB01AF601;
// System.Xml.Schema.XmlSchemaAttribute
struct XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F;
// System.Xml.Schema.XmlSchemaCompilationSettings
struct XmlSchemaCompilationSettings_tAD528503343C490A9030FEF019E313661390249C;
// System.Xml.Schema.XmlSchemaDatatype
struct XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D;
// System.Xml.Schema.XmlSchemaElement
struct XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970;
// System.Xml.Schema.XmlSchemaInfo
struct XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B;
// System.Xml.Schema.XmlSchemaObject
struct XmlSchemaObject_t82CCD87AADB4BEF4E9DFE4C501F09EDA372AA19D;
// System.Xml.Schema.XmlSchemaObjectCollection
struct XmlSchemaObjectCollection_tABB09091ECE50CA4C1B43A6E91D2CB04465B9388;
// System.Xml.Schema.XmlSchemaObjectTable
struct XmlSchemaObjectTable_tD5C00DB526C716DB38585522F2011F99FC66A583;
// System.Xml.Schema.XmlSchemaSet
struct XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1;
// System.Xml.Schema.XmlSchemaSimpleType
struct XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8;
// System.Xml.Schema.XmlSchemaSimpleTypeContent
struct XmlSchemaSimpleTypeContent_t84C9B4F059E687FBF7845373F5A6B2795F982091;
// System.Xml.Schema.XmlSchemaType
struct XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF;
// System.Xml.Schema.XmlSchemaValidator
struct XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24;
// System.Xml.Serialization.XmlSerializerNamespaces
struct XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93;
// System.Xml.XmlSignificantWhitespace
struct XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE;
// System.Xml.XmlText
struct XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A;
// System.Xml.XmlTextReader
struct XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B;
// System.Xml.XmlTextReaderImpl
struct XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B;
// System.Xml.XmlUnspecifiedAttribute
struct XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC;
// System.Xml.XmlUtf8RawTextWriter
struct XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB;
// System.Xml.XmlUtf8RawTextWriterIndent
struct XmlUtf8RawTextWriterIndent_tEA3E110A4E275753FE5CC8F5FF17AA132DC66B41;
// System.Xml.Schema.XmlValueConverter
struct XmlValueConverter_tAB12320D9B3994EBB077CA59A095458E60F3F57E;
// System.Xml.Schema.XmlValueGetter
struct XmlValueGetter_tB804924EEE98EA7F63E2B038A3CE3714DA155EB9;
// System.Xml.XmlWellFormedWriter
struct XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645;
// System.Xml.XmlWhitespace
struct XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24;
// System.Xml.XmlWriter
struct XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F;
// System.Xml.XmlWriterSettings
struct XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674;
// System.Xml.XsdCachingReader
struct XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43;
// System.Xml.XsdValidatingReader
struct XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E;
// System.IO.Stream/ReadWriteTask
struct ReadWriteTask_t0821BF49EE38596C7734E86E1A6A39D769BE2C05;
// System.Uri/UriInfo
struct UriInfo_t5F91F77A93545DDDA6BB24A609BAF5E232CC1A09;
// System.Xml.XmlQualifiedName/HashCodeOfStringDelegate
struct HashCodeOfStringDelegate_t25F1FA9B737C4313ED341BA7AAB31694DC3669DA;
// System.Xml.XmlTextReaderImpl/DtdParserProxy
struct DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3;
// System.Xml.XmlTextReaderImpl/LaterInitParam
struct LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6;
// System.Xml.XmlTextReaderImpl/NodeData
struct NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF;
// System.Xml.XmlTextReaderImpl/OnDefaultAttributeUseDelegate
struct OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499;
// System.Xml.XmlTextReaderImpl/XmlContext
struct XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE;
// System.Xml.XmlWellFormedWriter/AttributeValueCache
struct AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17;
// System.Xml.XmlWellFormedWriter/NamespaceResolverProxy
struct NamespaceResolverProxy_t21901D5C38330378CB1AA39393335948E0CADE44;
// System.Xml.XmlWellFormedWriter/AttributeValueCache/BufferChunk
struct BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD;
// System.Xml.XmlWellFormedWriter/AttributeValueCache/Item
struct Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9;
IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AttributePSVIInfoU5BU5D_tC78F3BF4DD87E93F42D8DA640AA29B625F3644BD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CachingEventHandler_t3531836C36E56CCAAB45B3B7DA1B4F94742FE74E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_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* DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EmptyEnumerator_t84EC9187C8460EE98E675ED9258AE4DF2A6776DA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Enumerator_t42F4E0E4BE9FD853E9D5EE3D3B048C8C08ECCD28_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Enumerator_tAFD022FCAA040EAEC1263E2EF82A45C956378717_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* HtmlEncodedRawTextWriterIndent_t6D9E69A027E84EE9EEDCFFC4021A6FEDA00AAF21_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* HtmlEncodedRawTextWriter_t452DCE7E1E6FBDF73AA28D611C4682E50A82E8C2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* HtmlUtf8RawTextWriterIndent_tC066D5903C4C1015116223E4A62B64637E8971A6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* HtmlUtf8RawTextWriter_tBDA64D6572325D75C2E84DE787BC2D7C9A0AE850_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDictionaryEnumerator_tE129D608FCDB7207E0F0ECE33473CC950A83AD16_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDtdParser_t91A29AF9801876CAFD81A0496F5AB8A65527B54B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_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* IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ItemU5BU5D_t73F5828D4F7289CE7330E03744883B67DA02047D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t43EC7C138A17FAAD7120408F039923082A70301A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NamedPermissionSet_tE1762DB096B3A45291DA354EC7DD1C5A1F74B97C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Parser_t5A18E84F88E618D9E803A7768A7765BF17DB2C07_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SecurityException_t025CB4C23107E67E07CF085826B40EDE72F8165C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringReader_t1A336148FF22A9584E759A9D720CC96C23E35DD8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TextUtf8RawTextWriter_t63B16D02A0D0351C035D28CF103BE455585F6B73_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ValidateNames_tC1994E2C538F499DFEBBA2705010DC4C770E7598_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlChildEnumerator_tDD03B83EAA250AB86DFF4B53C1430DA942E85939_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlName_t0704430D24D202146901D342E34D878246E14F33_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlNodeType_tCA25567E42A464038FDA6BA318EC0A9627B4CB95_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlNotation_t0CB6B652D5F20BB51A8A299F67BEE3D6EC91CE4D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* 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* XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlUtf8RawTextWriterIndent_tEA3E110A4E275753FE5CC8F5FF17AA132DC66B41_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlValueGetter_tB804924EEE98EA7F63E2B038A3CE3714DA155EB9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral033D1A6AEAFA549F3817926A246C7A61244A174C;
IL2CPP_EXTERN_C String_t* _stringLiteral044BADD70F84141B60AE555B5513ABA7D660F738;
IL2CPP_EXTERN_C String_t* _stringLiteral06C6EF334A248557A31ACC1740CAA2A6A788ECD5;
IL2CPP_EXTERN_C String_t* _stringLiteral09B11B6CC411D8B9FFB75EAAE9A35B2AF248CE40;
IL2CPP_EXTERN_C String_t* _stringLiteral10E3A7873DD45D61AB6068175777B54A049F04A1;
IL2CPP_EXTERN_C String_t* _stringLiteral11834E4FA4D4CDE4FFF1896BC2B609DB8CBF216A;
IL2CPP_EXTERN_C String_t* _stringLiteral1608C82B466107946B52772199E59009D15CA084;
IL2CPP_EXTERN_C String_t* _stringLiteral1710B4477A01FFE20514D8AA61891F364D71C25B;
IL2CPP_EXTERN_C String_t* _stringLiteral1B8590E2F95A4B0631E98EAF5F61AFD63A1C031E;
IL2CPP_EXTERN_C String_t* _stringLiteral1CBC514CBF721C4C5F12F67F33B3E7694BCD1B29;
IL2CPP_EXTERN_C String_t* _stringLiteral1F1BC4D23D8E5661364EBEC728BE303959F6CF91;
IL2CPP_EXTERN_C String_t* _stringLiteral25D1D73BA8562EE08FEEAC854199F8579DA2C728;
IL2CPP_EXTERN_C String_t* _stringLiteral26E478A40A804C5FF9FB7A90DCD4F5E8539E8E38;
IL2CPP_EXTERN_C String_t* _stringLiteral29988D0F9BCADFABFF66CBF5AB73096D1CAE3128;
IL2CPP_EXTERN_C String_t* _stringLiteral2CAB73EF57D40E8B63A7CA91D057C0B68DB59100;
IL2CPP_EXTERN_C String_t* _stringLiteral349C6DC0F34B9BA242E4C728EDD28CAB809D4917;
IL2CPP_EXTERN_C String_t* _stringLiteral35B44AA64754DEDC52915E7F763C081CF5B004D9;
IL2CPP_EXTERN_C String_t* _stringLiteral3AFC0DE819870B50AA0F59F4823CD7064A39BC72;
IL2CPP_EXTERN_C String_t* _stringLiteral3C67F6F3D5AD1DF5DD1E3B7F8583419767796154;
IL2CPP_EXTERN_C String_t* _stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE;
IL2CPP_EXTERN_C String_t* _stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D;
IL2CPP_EXTERN_C String_t* _stringLiteral44C14DBC6A9EE22DDA5FE2FABA5577B801DFAD89;
IL2CPP_EXTERN_C String_t* _stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8;
IL2CPP_EXTERN_C String_t* _stringLiteral4760011519A4AB7E8521F6795430114E80AA83E4;
IL2CPP_EXTERN_C String_t* _stringLiteral49457BCC8BD0CC8C758CAB29E29AAC6EE6A36D9A;
IL2CPP_EXTERN_C String_t* _stringLiteral504B0E499754BF3B42EAB4D1578B9F827FB4A495;
IL2CPP_EXTERN_C String_t* _stringLiteral513659CEF285C73478E9829E41D7E4C23DB53E12;
IL2CPP_EXTERN_C String_t* _stringLiteral52E7AA29D33516D76AAE995603260C880821A398;
IL2CPP_EXTERN_C String_t* _stringLiteral5BAA302A400A1B9C6F712ED9DBE1D7010A5034BF;
IL2CPP_EXTERN_C String_t* _stringLiteral63CBFAF32B506F8EA636D9CD08CD2EDAA1756BDE;
IL2CPP_EXTERN_C String_t* _stringLiteral6DF679FD2D20B0F2C6E93D0736075B7733773462;
IL2CPP_EXTERN_C String_t* _stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044;
IL2CPP_EXTERN_C String_t* _stringLiteral71443AC7CF5CC108984A138188DE915E32441BB2;
IL2CPP_EXTERN_C String_t* _stringLiteral7180DA204588CF41B56FA236B1DEFF0D3CB61C60;
IL2CPP_EXTERN_C String_t* _stringLiteral725B1CAFF9B49E1231FDA15B85166BBEFAA36A11;
IL2CPP_EXTERN_C String_t* _stringLiteral72CADF014178F14585E6950B62E1379BE17AA16A;
IL2CPP_EXTERN_C String_t* _stringLiteral791879DECB3477AD61FF2F50186DCF089516C2FA;
IL2CPP_EXTERN_C String_t* _stringLiteral7B99D512A2728329FF581D0CF25B3443E2EEEB78;
IL2CPP_EXTERN_C String_t* _stringLiteral7BFA33A11F0B12AF1B7FA1D9BA996EAE1EF77B49;
IL2CPP_EXTERN_C String_t* _stringLiteral7C014955313A7D33D5D04696B884B25325E6393C;
IL2CPP_EXTERN_C String_t* _stringLiteral7FF349F9C3C625219F1F7A7D29EEEF01064CD1C1;
IL2CPP_EXTERN_C String_t* _stringLiteral83B3ACB1C0AB14BABA0BD386F8695E096686811C;
IL2CPP_EXTERN_C String_t* _stringLiteral84567276A1D85E7AAD9B3A65F981930ECAFBE10B;
IL2CPP_EXTERN_C String_t* _stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D;
IL2CPP_EXTERN_C String_t* _stringLiteral88FE25385F8BFC1F8C027A8AD8AECE97C41561D6;
IL2CPP_EXTERN_C String_t* _stringLiteral893D84FF4ED81AC205FBC0C67CBEE1C0C752B406;
IL2CPP_EXTERN_C String_t* _stringLiteral8A8EFDA91C6C257127F8C8D526FAD7E7552766AA;
IL2CPP_EXTERN_C String_t* _stringLiteral8D004CCFB2C7F7062B882865483FF7F4DC36E04E;
IL2CPP_EXTERN_C String_t* _stringLiteral916F4E7879C25AF1EA844F7068842D5508777C48;
IL2CPP_EXTERN_C String_t* _stringLiteral93D87E1629A331F43CB25BB3CFE69C4D3418FA7E;
IL2CPP_EXTERN_C String_t* _stringLiteral951CCB49640C8F9E81FB4E0D82730321F4E15BB3;
IL2CPP_EXTERN_C String_t* _stringLiteral96930EC8C6FD5250BB36A5E1040AB06A9588FD62;
IL2CPP_EXTERN_C String_t* _stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694;
IL2CPP_EXTERN_C String_t* _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3;
IL2CPP_EXTERN_C String_t* _stringLiteral9FAB579E06FD5A2A9B62FE98BC75A44AD54D0411;
IL2CPP_EXTERN_C String_t* _stringLiteral9FEC92783BE6B523E2C117E0794061302D78945E;
IL2CPP_EXTERN_C String_t* _stringLiteralA2ADAC70CFE2DCB556D061A93CBD008778646655;
IL2CPP_EXTERN_C String_t* _stringLiteralA47E14F745683FCD155E0EB9F8B881D4FDB05B21;
IL2CPP_EXTERN_C String_t* _stringLiteralA73D573DF83D11DB88B9E63E9DF538F46194507D;
IL2CPP_EXTERN_C String_t* _stringLiteralA849558816A84F373F471C0275248DA08F91A4A6;
IL2CPP_EXTERN_C String_t* _stringLiteralB080109AD5D6C864D18C1BFD1A3B9116504CCC72;
IL2CPP_EXTERN_C String_t* _stringLiteralB66EDA098CD2E33A3EA4EAA0192B7D288FB4BE05;
IL2CPP_EXTERN_C String_t* _stringLiteralB7FD6B173F8DDB3354F28BB648CED69286F416C9;
IL2CPP_EXTERN_C String_t* _stringLiteralBE8285B3FBB68E69672F471D9C7CD01AFC710E52;
IL2CPP_EXTERN_C String_t* _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158;
IL2CPP_EXTERN_C String_t* _stringLiteralC5D6C64CCB50E5090409E08FDF71792E4E9A8F6D;
IL2CPP_EXTERN_C String_t* _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677;
IL2CPP_EXTERN_C String_t* _stringLiteralC84E568C2748F9FEA10B49CBF3076D4B6DA24940;
IL2CPP_EXTERN_C String_t* _stringLiteralCDFFBF7695883D821E64C727304FFE2682330A22;
IL2CPP_EXTERN_C String_t* _stringLiteralCE6A4511D58A9B6C235D9E76F3BADFD11EFD8892;
IL2CPP_EXTERN_C String_t* _stringLiteralCF06C8F24964E50FF1069A8CEE33E689908FFB7E;
IL2CPP_EXTERN_C String_t* _stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052;
IL2CPP_EXTERN_C String_t* _stringLiteralD4DAA1A26807E1A567D68B161E6A95701A3FD560;
IL2CPP_EXTERN_C String_t* _stringLiteralD5750306EEF268CDF7C94C9DB0356DB272D8B5C1;
IL2CPP_EXTERN_C String_t* _stringLiteralD5CF37169D518173369F326C4BECA4FF192E3DF4;
IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
IL2CPP_EXTERN_C String_t* _stringLiteralDB06DE16F44A88CD00ED1FDBEB9E9BFE0F4D1C2A;
IL2CPP_EXTERN_C String_t* _stringLiteralDB28C3D7E7F56FAA480CEF9C7D0E3BF741423901;
IL2CPP_EXTERN_C String_t* _stringLiteralE1291C4D47635E327ECFE39842BD1A93F58C61A2;
IL2CPP_EXTERN_C String_t* _stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF;
IL2CPP_EXTERN_C String_t* _stringLiteralEBEFE00D9826F57DF92563511F63A82DDD84B35E;
IL2CPP_EXTERN_C String_t* _stringLiteralECAC83771A00C701043A940F621CC1C765D30D31;
IL2CPP_EXTERN_C String_t* _stringLiteralED7D39EDF70E08FE57B2522D102BF72B9E5D5331;
IL2CPP_EXTERN_C String_t* _stringLiteralEF5E4E7AE49599D22FDECF4CBDE50AE7C9C1DD38;
IL2CPP_EXTERN_C String_t* _stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5;
IL2CPP_EXTERN_C String_t* _stringLiteralF011FDE885C7455F8FB042D3EC51AFA0D2624878;
IL2CPP_EXTERN_C String_t* _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7;
IL2CPP_EXTERN_C String_t* _stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D;
IL2CPP_EXTERN_C String_t* _stringLiteralF3FED9B982102FDD475F39E2487268020045A46E;
IL2CPP_EXTERN_C String_t* _stringLiteralF67CF5B59E32B552C2C143E0A3990B9794C84DA7;
IL2CPP_EXTERN_C String_t* _stringLiteralF6C0C11953123BBAC57A7E215512C2CA4CF68520;
IL2CPP_EXTERN_C String_t* _stringLiteralFBD1A9745DCC4D80697D44756437CCB57698AE21;
IL2CPP_EXTERN_C String_t* _stringLiteralFEE4613988B693DA6A4D82B4FB413453362FD0FD;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_GetEnumerator_mAFB53EF60E7055593407621A31F67B315FB25F80_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_GetEnumerator_mB2F07FA4420E7E08C4E8C50C4FB940647EE584AA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m15B366BD9B5A92299439677E2C60B2B46E07157A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Values_m7BA818B29BA9A89901482C6D5E24DAFD8495DBAA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Values_mA410F24C86421E016F25DFE10F06ED2CC94E8279_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m9C22E03CBE0A5943CB4EEED769A719610719A106_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mE25067D838FB5D1F613D8A1D7743D120ADB5BF1A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m2039C64E26497D750FE7545A20B128FDB78A87BC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mFB28D9AB4BB5B94192AFBCF8727A992DD8A3EA23_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m5F4A12451C66B8106D041A8FDF9254A9B563E0DB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mAD814A76564116AD71DFC76D3FCAF39F2A454DF2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m8B5B3A84C4C120283944FA6E7345B04B5409C673_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m3AC372485EEA21872FD76F60AE7CFE6F52F6EB74_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m3E0D05B58186A4BCD2EE0E2022AA1B95AE3DEA06_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m0EEF879BA3686583502A3D0CE4E388582415D0A6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NamespaceResolverProxy_System_Xml_IXmlNamespaceResolver_GetNamespacesInScope_m17AA1B35EFCA855BC450889E07514C832779BD3D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_GetEnumerator_m5C66A03B215EDB5E0833880DC07DA5A2C6283A0A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_GetEnumerator_mDF1A568A63118C3FCC8962A66BFF7CA4FD701F63_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlAttributeCollection_Append_mF5AFDC3C4547DA089353B76241A5B46437CA8484_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlAttributeCollection_SetNamedItem_m6FD982A7ED3D6A1148184B682A1382BFFFE25C2B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlAttributeCollection_get_ItemOf_m8F968C39C03DFEB9998B2122F4A26B76B1DB2EDB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlAttribute__ctor_m5043E9D85560FDFE80DED6438F97110608F1393B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlChildEnumerator_get_Current_m149208EFC92AEDC42F82839102B3D5F017DA4C46_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlDeclaration__ctor_mBAEA7104B9DA9F3DAE632B9063BF96BF6A40B116_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlDeclaration_set_InnerText_m29CC0B3D8586A44F0DE1725A2C85FFDA76C86C4E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlDeclaration_set_Standalone_m867389C9FBF0064E3FDA7EBDEAD4CF30E84F49C2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlDocumentFragment__ctor_m5DFF7FEE2576ED62871EDD2EE4B03279630D1BC2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlDocument_AddAttrXmlName_mB6D4F6DA50FBE350ABAC30CD5CE97D981506BB28_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlDocument_AppendChildForLoad_m9159EA6AC056C417AB1B80C23C770341FB454D22_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlDocument_CheckName_m8F3B57903F80A4309ACAF9C301ABA06B63702CA5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlDocument_ImportNodeInternal_m7E70DD674E7D0CB39DC6F14B5E806AE284E9C17B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlDocument_IsValidChildType_m9140E7E6187566178EBF6F505125509D5EDC9AC9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlDocument_set_InnerText_m698E1C5C70372B380CB9C9893F836ACCC879082D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlDocument_set_XmlResolver_m038B23D61224FC97587D7D23B4F8C8DA77CB79A2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlElement_SetAttributeNode_mE0B17D7E755A784A25152EAF2B67C5B45FB0698E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlElement__ctor_m44A8D5841FC2F1A5ACC6A03DD0ACA9AB37300588_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlEntityReference__ctor_m7AAF0A5672B04060ECEAFAB3DF7E93DA8A7B6A94_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlEntityReference_set_Value_m082BB4880A54A333C84B5FC04807FA3885BCE2A4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlEntity_CloneNode_m98D079EB599F50756351086C356E6010C0283C49_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlEntity_set_InnerText_mA4E62326E14966D84046065BE9BD22C86836E37B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlEntity_set_InnerXml_m0EFAA9C52B2F23F483E6F135D920BC04F46D19A1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlLoader_ExpandEntityReference_m99D6DCC2F0FA00E28E73698D333FCC12EFCA7B2F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlLoader_LoadAttributeNode_mD21D3FF205915C01F5EAA89291E816AEDE5E8567_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlLoader_LoadAttributeValue_m119C6C6063D71231F622A12A683078D77DA8B320_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlLoader_LoadDocumentType_mC301F9962BC7D2F1134EDE1CD6D71D2EE68E9247_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlLoader_LoadNodeDirect_m2C0D5301FFB96CA298EF768E2CE903B6C6D459B7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlLoader_LoadNode_mDFD824F250FA615C734180BF6141A472610F7E68_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlLoader_Load_m3B85C836D8C6DE323B85E868DED6E8E36D56C124_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlLoader_ReadCurrentNode_m9E1E110A0B31C77EC53393D8C51B497A2CD79241_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWriterSettings_CheckReadOnly_mC616438316DF17F77BA6941FE32E3A630BC5722B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWriterSettings_CreateWriter_m64B4BF7A010DD96A301DBB270C1461EB97F62C83_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWriterSettings_CreateWriter_m693DB4E22B11E11EA33191F7743554BD415BAB99_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWriterSettings_set_ConformanceLevel_m926D2A6BCDE9EBA5FB82B952692A51AC54E6A9A6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWriterSettings_set_NamespaceHandling_mEBB5E9023CBF48F8F386975EF787CE5C0F03BABA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWriter_WriteAttributes_m03FF7AB2A691CC944C7B3CEFA9D265F2700ED074_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XmlWriter_WriteNode_m9869B5DD6CA561087F3198228ADAF502FDF0253E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XsdCachingReader_GetAttribute_m67F6909057AB3D572DDE26EA565E4C877B995D4B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XsdCachingReader_MoveToAttribute_m52825E228EF437CCA66372B1A191F7E092B19BCB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XsdCachingReader_ResolveEntity_m5AC646CD89994073FF1468D11C1579ECCF90717E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XsdValidatingReader_CachingCallBack_m2F89694599D543E496C683B36C7FD1E57C322CDE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XsdValidatingReader_GetStringValue_m89CE0B2CF94DFBFF72B05031654EEE663470AB39_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XsdValidatingReader_MoveToAttribute_m7A609945B50B4395E8FCBB7BB237A745EE8607D1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XsdValidatingReader_ProcessReaderEvent_m6C0F7A68A7970883DC9787FE2F411BFF3B9FF31E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XsdValidatingReader_ResolveEntity_m92C88937F9CFFC00B35A077BA40F7B1BEA2ADF6B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeType* String_t_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_0_0_0_var;
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_com;
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_pinvoke;
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com;
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke;
struct Delegate_t_marshaled_com;
struct Delegate_t_marshaled_pinvoke;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
struct AttributePSVIInfoU5BU5D_tC78F3BF4DD87E93F42D8DA640AA29B625F3644BD;
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
struct ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8;
struct XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC;
struct ItemU5BU5D_t73F5828D4F7289CE7330E03744883B67DA02047D;
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.Xml.Schema.SchemaNotation>
struct Dictionary_2_t27DD7BC6C615A002762F178DF4446D10EF4486A1 : 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_tD75588C64683EE9F29934F54AF3282733AA0E53A* ____entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::_count
int32_t ____count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::_freeList
int32_t ____freeList_3;
// System.Int32 System.Collections.Generic.Dictionary`2::_freeCount
int32_t ____freeCount_4;
// System.Int32 System.Collections.Generic.Dictionary`2::_version
int32_t ____version_5;
// System.Collections.Generic.IEqualityComparer`1<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_t5D8F69434F54ADB75F5F7E8F5F6C8EE84A3ACC5A* ____keys_7;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_values
ValueCollection_t8898F5330699C43BF4307CDFD83DB8DC4ED26F1F* ____values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject* ____syncRoot_9;
};
// System.Collections.Generic.Dictionary`2<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaAttDef>
struct Dictionary_2_tB85C1B2FFF985BA01AD2B7199C083B43C1476CC1 : 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_tCAC26DCAE98AD40E0B5A1AA16EC1FC8F233ACDE3* ____entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::_count
int32_t ____count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::_freeList
int32_t ____freeList_3;
// System.Int32 System.Collections.Generic.Dictionary`2::_freeCount
int32_t ____freeCount_4;
// System.Int32 System.Collections.Generic.Dictionary`2::_version
int32_t ____version_5;
// System.Collections.Generic.IEqualityComparer`1<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_t982B62EC18A65A3F52F0FA723D7A5B51D3EACE44* ____keys_7;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_values
ValueCollection_t16158FF974E6076F10354D4F3FC08E7FFF87086F* ____values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject* ____syncRoot_9;
};
// System.Collections.Generic.Dictionary`2<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaElementDecl>
struct Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A : 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_t0C8848FA8C979298F3C182D8EB03570D8FA26FA7* ____entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::_count
int32_t ____count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::_freeList
int32_t ____freeList_3;
// System.Int32 System.Collections.Generic.Dictionary`2::_freeCount
int32_t ____freeCount_4;
// System.Int32 System.Collections.Generic.Dictionary`2::_version
int32_t ____version_5;
// System.Collections.Generic.IEqualityComparer`1<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_t2FCB408F1EB9CA12888AE6E0ACEA3FA995A5DAA3* ____keys_7;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_values
ValueCollection_tBA3CDE187BE7665A5798B190605F306816272791* ____values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject* ____syncRoot_9;
};
// System.Collections.Generic.Dictionary`2<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaEntity>
struct Dictionary_2_t129029582481E96143BD747690E92DB7E444261E : 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_tD59BF430101A4C2080228ED133FC9737B0A030EE* ____entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::_count
int32_t ____count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::_freeList
int32_t ____freeList_3;
// System.Int32 System.Collections.Generic.Dictionary`2::_freeCount
int32_t ____freeCount_4;
// System.Int32 System.Collections.Generic.Dictionary`2::_version
int32_t ____version_5;
// System.Collections.Generic.IEqualityComparer`1<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_t3F2FECD4AC086FD3ABAE5D31881677BABA02B0D0* ____keys_7;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_values
ValueCollection_t5E6BEDEB2CEF7A818BACE8D90DFE44BE5DAC4431* ____values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject* ____syncRoot_9;
};
// System.Collections.Generic.List`1<System.Object>
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<System.Xml.XmlQualifiedName>
struct List_1_t43EC7C138A17FAAD7120408F039923082A70301A : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
XmlQualifiedNameU5BU5D_t95C376ACDEA9261B842F45A4C4DF9ABEE0FB35D1* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_t43EC7C138A17FAAD7120408F039923082A70301A_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
XmlQualifiedNameU5BU5D_t95C376ACDEA9261B842F45A4C4DF9ABEE0FB35D1* ___s_emptyArray_5;
};
// System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.Xml.Schema.SchemaNotation>
struct ValueCollection_t8898F5330699C43BF4307CDFD83DB8DC4ED26F1F : public RuntimeObject
{
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection::_dictionary
Dictionary_2_t27DD7BC6C615A002762F178DF4446D10EF4486A1* ____dictionary_0;
};
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaEntity>
struct ValueCollection_t5E6BEDEB2CEF7A818BACE8D90DFE44BE5DAC4431 : public RuntimeObject
{
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection::_dictionary
Dictionary_2_t129029582481E96143BD747690E92DB7E444261E* ____dictionary_0;
};
struct Il2CppArrayBounds;
// System.Collections.ArrayList
struct ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A : public RuntimeObject
{
// System.Object[] System.Collections.ArrayList::_items
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items_0;
// System.Int32 System.Collections.ArrayList::_size
int32_t ____size_1;
// System.Int32 System.Collections.ArrayList::_version
int32_t ____version_2;
// System.Object System.Collections.ArrayList::_syncRoot
RuntimeObject* ____syncRoot_3;
};
// System.Xml.AttributePSVIInfo
struct AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE : public RuntimeObject
{
// System.String System.Xml.AttributePSVIInfo::localName
String_t* ___localName_0;
// System.String System.Xml.AttributePSVIInfo::namespaceUri
String_t* ___namespaceUri_1;
// System.Object System.Xml.AttributePSVIInfo::typedAttributeValue
RuntimeObject* ___typedAttributeValue_2;
// System.Xml.Schema.XmlSchemaInfo System.Xml.AttributePSVIInfo::attributeSchemaInfo
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* ___attributeSchemaInfo_3;
};
// 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.Xml.DomNameTable
struct DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45 : public RuntimeObject
{
// System.Xml.XmlName[] System.Xml.DomNameTable::entries
XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC* ___entries_0;
// System.Int32 System.Xml.DomNameTable::count
int32_t ___count_1;
// System.Int32 System.Xml.DomNameTable::mask
int32_t ___mask_2;
// System.Xml.XmlDocument System.Xml.DomNameTable::ownerDocument
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___ownerDocument_3;
// System.Xml.XmlNameTable System.Xml.DomNameTable::nameTable
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nameTable_4;
};
// System.Xml.EmptyEnumerator
struct EmptyEnumerator_t84EC9187C8460EE98E675ED9258AE4DF2A6776DA : public RuntimeObject
{
};
// System.Text.Encoding
struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095 : public RuntimeObject
{
// System.Int32 System.Text.Encoding::m_codePage
int32_t ___m_codePage_9;
// System.Globalization.CodePageDataItem System.Text.Encoding::dataItem
CodePageDataItem_t52460FA30AE37F4F26ACB81055E58002262F19F2* ___dataItem_10;
// System.Boolean System.Text.Encoding::m_deserializedFromEverett
bool ___m_deserializedFromEverett_11;
// System.Boolean System.Text.Encoding::m_isReadOnly
bool ___m_isReadOnly_12;
// System.Text.EncoderFallback System.Text.Encoding::encoderFallback
EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293* ___encoderFallback_13;
// System.Text.DecoderFallback System.Text.Encoding::decoderFallback
DecoderFallback_t7324102215E4ED41EC065C02EB501CB0BC23CD90* ___decoderFallback_14;
};
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.MarshalByRefObject
struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE : public RuntimeObject
{
// System.Object System.MarshalByRefObject::_identity
RuntimeObject* ____identity_0;
};
// Native definition for P/Invoke marshalling of System.MarshalByRefObject
struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_pinvoke
{
Il2CppIUnknown* ____identity_0;
};
// Native definition for COM marshalling of System.MarshalByRefObject
struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_com
{
Il2CppIUnknown* ____identity_0;
};
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
};
// System.Xml.Schema.SchemaEntity
struct SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7 : public RuntimeObject
{
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaEntity::qname
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___qname_0;
// System.String System.Xml.Schema.SchemaEntity::url
String_t* ___url_1;
// System.String System.Xml.Schema.SchemaEntity::pubid
String_t* ___pubid_2;
// System.String System.Xml.Schema.SchemaEntity::text
String_t* ___text_3;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaEntity::ndata
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___ndata_4;
// System.Int32 System.Xml.Schema.SchemaEntity::lineNumber
int32_t ___lineNumber_5;
// System.Int32 System.Xml.Schema.SchemaEntity::linePosition
int32_t ___linePosition_6;
// System.Boolean System.Xml.Schema.SchemaEntity::isParameter
bool ___isParameter_7;
// System.Boolean System.Xml.Schema.SchemaEntity::isExternal
bool ___isExternal_8;
// System.Boolean System.Xml.Schema.SchemaEntity::parsingInProgress
bool ___parsingInProgress_9;
// System.Boolean System.Xml.Schema.SchemaEntity::isDeclaredInExternal
bool ___isDeclaredInExternal_10;
// System.String System.Xml.Schema.SchemaEntity::baseURI
String_t* ___baseURI_11;
// System.String System.Xml.Schema.SchemaEntity::declaredURI
String_t* ___declaredURI_12;
};
// System.Xml.Schema.SchemaNames
struct SchemaNames_tF7A45B027D5759AA56D035F5962B4612A6B0902F : public RuntimeObject
{
// System.Xml.XmlNameTable System.Xml.Schema.SchemaNames::nameTable
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nameTable_0;
// System.String System.Xml.Schema.SchemaNames::NsDataType
String_t* ___NsDataType_1;
// System.String System.Xml.Schema.SchemaNames::NsDataTypeAlias
String_t* ___NsDataTypeAlias_2;
// System.String System.Xml.Schema.SchemaNames::NsDataTypeOld
String_t* ___NsDataTypeOld_3;
// System.String System.Xml.Schema.SchemaNames::NsXml
String_t* ___NsXml_4;
// System.String System.Xml.Schema.SchemaNames::NsXmlNs
String_t* ___NsXmlNs_5;
// System.String System.Xml.Schema.SchemaNames::NsXdr
String_t* ___NsXdr_6;
// System.String System.Xml.Schema.SchemaNames::NsXdrAlias
String_t* ___NsXdrAlias_7;
// System.String System.Xml.Schema.SchemaNames::NsXs
String_t* ___NsXs_8;
// System.String System.Xml.Schema.SchemaNames::NsXsi
String_t* ___NsXsi_9;
// System.String System.Xml.Schema.SchemaNames::XsiType
String_t* ___XsiType_10;
// System.String System.Xml.Schema.SchemaNames::XsiNil
String_t* ___XsiNil_11;
// System.String System.Xml.Schema.SchemaNames::XsiSchemaLocation
String_t* ___XsiSchemaLocation_12;
// System.String System.Xml.Schema.SchemaNames::XsiNoNamespaceSchemaLocation
String_t* ___XsiNoNamespaceSchemaLocation_13;
// System.String System.Xml.Schema.SchemaNames::XsdSchema
String_t* ___XsdSchema_14;
// System.String System.Xml.Schema.SchemaNames::XdrSchema
String_t* ___XdrSchema_15;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnPCData
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnPCData_16;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXml
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXml_17;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXmlNs
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXmlNs_18;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnDtDt
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnDtDt_19;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXmlLang
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXmlLang_20;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnName
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnName_21;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnType
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnType_22;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnMaxOccurs
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnMaxOccurs_23;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnMinOccurs
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnMinOccurs_24;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnInfinite
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnInfinite_25;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnModel
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnModel_26;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnOpen
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnOpen_27;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnClosed
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnClosed_28;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnContent
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnContent_29;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnMixed
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnMixed_30;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnEmpty
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnEmpty_31;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnEltOnly
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnEltOnly_32;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnTextOnly
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnTextOnly_33;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnOrder
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnOrder_34;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnSeq
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnSeq_35;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnOne
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnOne_36;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnMany
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnMany_37;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnRequired
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnRequired_38;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnYes
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnYes_39;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnNo
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnNo_40;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnString
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnString_41;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnID
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnID_42;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnIDRef
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnIDRef_43;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnIDRefs
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnIDRefs_44;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnEntity
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnEntity_45;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnEntities
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnEntities_46;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnNmToken
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnNmToken_47;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnNmTokens
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnNmTokens_48;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnEnumeration
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnEnumeration_49;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnDefault
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnDefault_50;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXdrSchema
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXdrSchema_51;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXdrElementType
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXdrElementType_52;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXdrElement
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXdrElement_53;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXdrGroup
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXdrGroup_54;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXdrAttributeType
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXdrAttributeType_55;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXdrAttribute
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXdrAttribute_56;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXdrDataType
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXdrDataType_57;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXdrDescription
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXdrDescription_58;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXdrExtends
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXdrExtends_59;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXdrAliasSchema
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXdrAliasSchema_60;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnDtType
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnDtType_61;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnDtValues
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnDtValues_62;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnDtMaxLength
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnDtMaxLength_63;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnDtMinLength
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnDtMinLength_64;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnDtMax
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnDtMax_65;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnDtMin
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnDtMin_66;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnDtMinExclusive
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnDtMinExclusive_67;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnDtMaxExclusive
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnDtMaxExclusive_68;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnTargetNamespace
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnTargetNamespace_69;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnVersion
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnVersion_70;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnFinalDefault
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnFinalDefault_71;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnBlockDefault
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnBlockDefault_72;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnFixed
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnFixed_73;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnAbstract
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnAbstract_74;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnBlock
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnBlock_75;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnSubstitutionGroup
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnSubstitutionGroup_76;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnFinal
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnFinal_77;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnNillable
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnNillable_78;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnRef
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnRef_79;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnBase
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnBase_80;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnDerivedBy
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnDerivedBy_81;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnNamespace
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnNamespace_82;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnProcessContents
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnProcessContents_83;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnRefer
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnRefer_84;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnPublic
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnPublic_85;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnSystem
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnSystem_86;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnSchemaLocation
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnSchemaLocation_87;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnValue
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnValue_88;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnUse
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnUse_89;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnForm
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnForm_90;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnElementFormDefault
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnElementFormDefault_91;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnAttributeFormDefault
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnAttributeFormDefault_92;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnItemType
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnItemType_93;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnMemberTypes
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnMemberTypes_94;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXPath
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXPath_95;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdSchema
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdSchema_96;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdAnnotation
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdAnnotation_97;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdInclude
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdInclude_98;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdImport
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdImport_99;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdElement
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdElement_100;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdAttribute
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdAttribute_101;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdAttributeGroup
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdAttributeGroup_102;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdAnyAttribute
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdAnyAttribute_103;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdGroup
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdGroup_104;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdAll
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdAll_105;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdChoice
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdChoice_106;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdSequence
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdSequence_107;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdAny
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdAny_108;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdNotation
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdNotation_109;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdSimpleType
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdSimpleType_110;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdComplexType
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdComplexType_111;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdUnique
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdUnique_112;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdKey
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdKey_113;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdKeyRef
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdKeyRef_114;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdSelector
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdSelector_115;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdField
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdField_116;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdMinExclusive
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdMinExclusive_117;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdMinInclusive
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdMinInclusive_118;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdMaxInclusive
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdMaxInclusive_119;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdMaxExclusive
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdMaxExclusive_120;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdTotalDigits
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdTotalDigits_121;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdFractionDigits
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdFractionDigits_122;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdLength
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdLength_123;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdMinLength
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdMinLength_124;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdMaxLength
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdMaxLength_125;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdEnumeration
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdEnumeration_126;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdPattern
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdPattern_127;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdDocumentation
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdDocumentation_128;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdAppinfo
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdAppinfo_129;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnSource
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnSource_130;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdComplexContent
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdComplexContent_131;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdSimpleContent
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdSimpleContent_132;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdRestriction
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdRestriction_133;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdExtension
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdExtension_134;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdUnion
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdUnion_135;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdList
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdList_136;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdWhiteSpace
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdWhiteSpace_137;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdRedefine
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdRedefine_138;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNames::QnXsdAnyType
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___QnXsdAnyType_139;
// System.Xml.XmlQualifiedName[] System.Xml.Schema.SchemaNames::TokenToQName
XmlQualifiedNameU5BU5D_t95C376ACDEA9261B842F45A4C4DF9ABEE0FB35D1* ___TokenToQName_140;
};
// System.Xml.Schema.SchemaNotation
struct SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269 : public RuntimeObject
{
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNotation::name
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___name_0;
// System.String System.Xml.Schema.SchemaNotation::systemLiteral
String_t* ___systemLiteral_1;
// System.String System.Xml.Schema.SchemaNotation::pubid
String_t* ___pubid_2;
};
// System.String
struct String_t : public RuntimeObject
{
// System.Int32 System.String::_stringLength
int32_t ____stringLength_4;
// System.Char System.String::_firstChar
Il2CppChar ____firstChar_5;
};
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.XmlChildEnumerator
struct XmlChildEnumerator_tDD03B83EAA250AB86DFF4B53C1430DA942E85939 : public RuntimeObject
{
// System.Xml.XmlNode System.Xml.XmlChildEnumerator::container
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___container_0;
// System.Xml.XmlNode System.Xml.XmlChildEnumerator::child
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___child_1;
// System.Boolean System.Xml.XmlChildEnumerator::isFirst
bool ___isFirst_2;
};
// System.Xml.XmlImplementation
struct XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D : public RuntimeObject
{
// System.Xml.XmlNameTable System.Xml.XmlImplementation::nameTable
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nameTable_0;
};
// System.Xml.XmlLoader
struct XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D : public RuntimeObject
{
// System.Xml.XmlDocument System.Xml.XmlLoader::doc
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc_0;
// System.Xml.XmlReader System.Xml.XmlLoader::reader
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader_1;
// System.Boolean System.Xml.XmlLoader::preserveWhitespace
bool ___preserveWhitespace_2;
};
// System.Xml.XmlName
struct XmlName_t0704430D24D202146901D342E34D878246E14F33 : public RuntimeObject
{
// System.String System.Xml.XmlName::prefix
String_t* ___prefix_0;
// System.String System.Xml.XmlName::localName
String_t* ___localName_1;
// System.String System.Xml.XmlName::ns
String_t* ___ns_2;
// System.String System.Xml.XmlName::name
String_t* ___name_3;
// System.Int32 System.Xml.XmlName::hashCode
int32_t ___hashCode_4;
// System.Xml.XmlDocument System.Xml.XmlName::ownerDoc
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___ownerDoc_5;
// System.Xml.XmlName System.Xml.XmlName::next
XmlName_t0704430D24D202146901D342E34D878246E14F33* ___next_6;
};
// System.Xml.XmlNameTable
struct XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8 : public RuntimeObject
{
};
// System.Xml.XmlNamespaceManager
struct XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F : public RuntimeObject
{
// System.Xml.XmlNamespaceManager/NamespaceDeclaration[] System.Xml.XmlNamespaceManager::nsdecls
NamespaceDeclarationU5BU5D_t4DF48D3A2EB82C491A60E8748DE4BAFAA95A0F60* ___nsdecls_0;
// System.Int32 System.Xml.XmlNamespaceManager::lastDecl
int32_t ___lastDecl_1;
// System.Xml.XmlNameTable System.Xml.XmlNamespaceManager::nameTable
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nameTable_2;
// System.Int32 System.Xml.XmlNamespaceManager::scopeId
int32_t ___scopeId_3;
// System.Collections.Generic.Dictionary`2<System.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.XmlNode
struct XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF : public RuntimeObject
{
// System.Xml.XmlNode System.Xml.XmlNode::parentNode
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___parentNode_0;
};
// System.Xml.XmlNodeList
struct XmlNodeList_tFC0CEED3A006BEDF6A1A420F7CB55AC33E9B7F85 : public RuntimeObject
{
};
// System.Xml.XmlQualifiedName
struct XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9 : public RuntimeObject
{
// System.String System.Xml.XmlQualifiedName::name
String_t* ___name_1;
// System.String System.Xml.XmlQualifiedName::ns
String_t* ___ns_2;
// System.Int32 System.Xml.XmlQualifiedName::hash
int32_t ___hash_3;
};
struct XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_StaticFields
{
// System.Xml.XmlQualifiedName/HashCodeOfStringDelegate System.Xml.XmlQualifiedName::hashCodeDelegate
HashCodeOfStringDelegate_t25F1FA9B737C4313ED341BA7AAB31694DC3669DA* ___hashCodeDelegate_0;
// System.Xml.XmlQualifiedName System.Xml.XmlQualifiedName::Empty
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___Empty_4;
};
// System.Xml.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.XmlSchemaDatatype
struct XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D : public RuntimeObject
{
};
// System.Xml.Schema.XmlSchemaObject
struct XmlSchemaObject_t82CCD87AADB4BEF4E9DFE4C501F09EDA372AA19D : public RuntimeObject
{
// System.Int32 System.Xml.Schema.XmlSchemaObject::lineNum
int32_t ___lineNum_0;
// System.Int32 System.Xml.Schema.XmlSchemaObject::linePos
int32_t ___linePos_1;
// System.String System.Xml.Schema.XmlSchemaObject::sourceUri
String_t* ___sourceUri_2;
// System.Xml.Serialization.XmlSerializerNamespaces System.Xml.Schema.XmlSchemaObject::namespaces
XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* ___namespaces_3;
// System.Xml.Schema.XmlSchemaObject System.Xml.Schema.XmlSchemaObject::parent
XmlSchemaObject_t82CCD87AADB4BEF4E9DFE4C501F09EDA372AA19D* ___parent_4;
// System.Boolean System.Xml.Schema.XmlSchemaObject::isProcessing
bool ___isProcessing_5;
};
// System.Xml.Schema.XmlSchemaSet
struct XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1 : public RuntimeObject
{
// System.Xml.XmlNameTable System.Xml.Schema.XmlSchemaSet::nameTable
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nameTable_0;
// System.Xml.Schema.SchemaNames System.Xml.Schema.XmlSchemaSet::schemaNames
SchemaNames_tF7A45B027D5759AA56D035F5962B4612A6B0902F* ___schemaNames_1;
// System.Collections.SortedList System.Xml.Schema.XmlSchemaSet::schemas
SortedList_t847331629BA06B518F1B5203BD22B59746EDDBF3* ___schemas_2;
// System.Xml.Schema.ValidationEventHandler System.Xml.Schema.XmlSchemaSet::internalEventHandler
ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* ___internalEventHandler_3;
// System.Xml.Schema.ValidationEventHandler System.Xml.Schema.XmlSchemaSet::eventHandler
ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* ___eventHandler_4;
// System.Boolean System.Xml.Schema.XmlSchemaSet::isCompiled
bool ___isCompiled_5;
// System.Collections.Hashtable System.Xml.Schema.XmlSchemaSet::schemaLocations
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___schemaLocations_6;
// System.Collections.Hashtable System.Xml.Schema.XmlSchemaSet::chameleonSchemas
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___chameleonSchemas_7;
// System.Collections.Hashtable System.Xml.Schema.XmlSchemaSet::targetNamespaces
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___targetNamespaces_8;
// System.Boolean System.Xml.Schema.XmlSchemaSet::compileAll
bool ___compileAll_9;
// System.Xml.Schema.SchemaInfo System.Xml.Schema.XmlSchemaSet::cachedCompiledInfo
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* ___cachedCompiledInfo_10;
// System.Xml.XmlReaderSettings System.Xml.Schema.XmlSchemaSet::readerSettings
XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* ___readerSettings_11;
// System.Xml.Schema.XmlSchema System.Xml.Schema.XmlSchemaSet::schemaForSchema
XmlSchema_t5C9506D00418BF5FD524254D0C6C405C620C941D* ___schemaForSchema_12;
// System.Xml.Schema.XmlSchemaCompilationSettings System.Xml.Schema.XmlSchemaSet::compilationSettings
XmlSchemaCompilationSettings_tAD528503343C490A9030FEF019E313661390249C* ___compilationSettings_13;
// System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchemaSet::elements
XmlSchemaObjectTable_tD5C00DB526C716DB38585522F2011F99FC66A583* ___elements_14;
// System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchemaSet::attributes
XmlSchemaObjectTable_tD5C00DB526C716DB38585522F2011F99FC66A583* ___attributes_15;
// System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchemaSet::schemaTypes
XmlSchemaObjectTable_tD5C00DB526C716DB38585522F2011F99FC66A583* ___schemaTypes_16;
// System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchemaSet::substitutionGroups
XmlSchemaObjectTable_tD5C00DB526C716DB38585522F2011F99FC66A583* ___substitutionGroups_17;
// System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchemaSet::typeExtensions
XmlSchemaObjectTable_tD5C00DB526C716DB38585522F2011F99FC66A583* ___typeExtensions_18;
// System.Object System.Xml.Schema.XmlSchemaSet::internalSyncObject
RuntimeObject* ___internalSyncObject_19;
};
// System.Xml.Schema.XmlValueConverter
struct XmlValueConverter_tAB12320D9B3994EBB077CA59A095458E60F3F57E : public RuntimeObject
{
};
// System.Xml.XmlWriter
struct XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F : public RuntimeObject
{
// System.Char[] System.Xml.XmlWriter::writeNodeBuffer
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___writeNodeBuffer_0;
};
// System.Xml.XmlTextReaderImpl/DtdParserProxy
struct DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3 : public RuntimeObject
{
// System.Xml.XmlTextReaderImpl System.Xml.XmlTextReaderImpl/DtdParserProxy::reader
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___reader_0;
};
// 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.Xml.XmlWellFormedWriter/AttributeValueCache/BufferChunk
struct BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD : public RuntimeObject
{
// System.Char[] System.Xml.XmlWellFormedWriter/AttributeValueCache/BufferChunk::buffer
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer_0;
// System.Int32 System.Xml.XmlWellFormedWriter/AttributeValueCache/BufferChunk::index
int32_t ___index_1;
// System.Int32 System.Xml.XmlWellFormedWriter/AttributeValueCache/BufferChunk::count
int32_t ___count_2;
};
// System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>
struct Enumerator_t44124D16E0B2F7308FF4069BE06369B5A83896EB
{
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::_dictionary
Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* ____dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::_version
int32_t ____version_2;
// TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::_currentValue
RuntimeObject* ____currentValue_3;
};
// System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.String,System.Xml.Schema.SchemaNotation>
struct Enumerator_t3E5D7CFA0D274E9F0E695069583F0C9A0FC06218
{
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::_dictionary
Dictionary_2_t27DD7BC6C615A002762F178DF4446D10EF4486A1* ____dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::_version
int32_t ____version_2;
// TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::_currentValue
SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* ____currentValue_3;
};
// System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaEntity>
struct Enumerator_t4BFAD24AD9D3103A06D8DE615BAC99DA84ED0A4F
{
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::_dictionary
Dictionary_2_t129029582481E96143BD747690E92DB7E444261E* ____dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::_version
int32_t ____version_2;
// TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::_currentValue
SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* ____currentValue_3;
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>
struct KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230
{
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject* ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject* ___value_1;
};
// System.Collections.Generic.KeyValuePair`2<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaAttDef>
struct KeyValuePair_2_t9111838FA7D6AE78EED02B65A1E8B97E42A8BE57
{
// TKey System.Collections.Generic.KeyValuePair`2::key
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* ___value_1;
};
// System.Collections.Generic.KeyValuePair`2<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaElementDecl>
struct KeyValuePair_2_t83E1B0BDF3436F091A5C09273711FD7CED0D2D4E
{
// TKey System.Collections.Generic.KeyValuePair`2::key
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* ___value_1;
};
// System.Nullable`1<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.Decimal
struct Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F
{
union
{
#pragma pack(push, tp, 1)
struct
{
// System.Int32 System.Decimal::flags
int32_t ___flags_8;
};
#pragma pack(pop, tp)
struct
{
int32_t ___flags_8_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___hi_9_OffsetPadding[4];
// System.Int32 System.Decimal::hi
int32_t ___hi_9;
};
#pragma pack(pop, tp)
struct
{
char ___hi_9_OffsetPadding_forAlignmentOnly[4];
int32_t ___hi_9_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___lo_10_OffsetPadding[8];
// System.Int32 System.Decimal::lo
int32_t ___lo_10;
};
#pragma pack(pop, tp)
struct
{
char ___lo_10_OffsetPadding_forAlignmentOnly[8];
int32_t ___lo_10_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___mid_11_OffsetPadding[12];
// System.Int32 System.Decimal::mid
int32_t ___mid_11;
};
#pragma pack(pop, tp)
struct
{
char ___mid_11_OffsetPadding_forAlignmentOnly[12];
int32_t ___mid_11_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___ulomidLE_12_OffsetPadding[8];
// System.UInt64 System.Decimal::ulomidLE
uint64_t ___ulomidLE_12;
};
#pragma pack(pop, tp)
struct
{
char ___ulomidLE_12_OffsetPadding_forAlignmentOnly[8];
uint64_t ___ulomidLE_12_forAlignmentOnly;
};
};
};
struct Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_StaticFields
{
// System.Decimal System.Decimal::Zero
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___Zero_3;
// System.Decimal System.Decimal::One
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___One_4;
// System.Decimal System.Decimal::MinusOne
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MinusOne_5;
// System.Decimal System.Decimal::MaxValue
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MaxValue_6;
// System.Decimal System.Decimal::MinValue
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MinValue_7;
};
// 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.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.Xml.NameTable
struct NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46 : public XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8
{
// System.Xml.NameTable/Entry[] System.Xml.NameTable::entries
EntryU5BU5D_tE4AE7874F9098D7C9B34C34630C2F2698981939A* ___entries_0;
// System.Int32 System.Xml.NameTable::count
int32_t ___count_1;
// System.Int32 System.Xml.NameTable::mask
int32_t ___mask_2;
// System.Int32 System.Xml.NameTable::hashCodeRandomizer
int32_t ___hashCodeRandomizer_3;
};
// System.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.Void
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
{
union
{
struct
{
};
uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
};
};
// System.Xml.XmlAsyncCheckWriter
struct XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C : public XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F
{
// System.Xml.XmlWriter System.Xml.XmlAsyncCheckWriter::coreWriter
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___coreWriter_1;
// System.Threading.Tasks.Task System.Xml.XmlAsyncCheckWriter::lastTask
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___lastTask_2;
};
// System.Xml.XmlAttribute
struct XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18 : public XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF
{
// System.Xml.XmlName System.Xml.XmlAttribute::name
XmlName_t0704430D24D202146901D342E34D878246E14F33* ___name_1;
// System.Xml.XmlLinkedNode System.Xml.XmlAttribute::lastChild
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* ___lastChild_2;
};
// System.Xml.XmlCharType
struct XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3
{
// System.Byte[] System.Xml.XmlCharType::charProperties
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___charProperties_2;
};
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.XmlChildNodes
struct XmlChildNodes_tBD3126123F4810D8B272B8201C07FE70CDC9C5E2 : public XmlNodeList_tFC0CEED3A006BEDF6A1A420F7CB55AC33E9B7F85
{
// System.Xml.XmlNode System.Xml.XmlChildNodes::container
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___container_0;
};
// System.Xml.XmlDocument
struct XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B : public XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF
{
// System.Xml.XmlImplementation System.Xml.XmlDocument::implementation
XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* ___implementation_1;
// System.Xml.DomNameTable System.Xml.XmlDocument::domNameTable
DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45* ___domNameTable_2;
// System.Xml.XmlLinkedNode System.Xml.XmlDocument::lastChild
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* ___lastChild_3;
// System.Xml.XmlNamedNodeMap System.Xml.XmlDocument::entities
XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* ___entities_4;
// System.Collections.Hashtable System.Xml.XmlDocument::htElementIdMap
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___htElementIdMap_5;
// System.Collections.Hashtable System.Xml.XmlDocument::htElementIDAttrDecl
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___htElementIDAttrDecl_6;
// System.Xml.Schema.SchemaInfo System.Xml.XmlDocument::schemaInfo
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* ___schemaInfo_7;
// System.Xml.Schema.XmlSchemaSet System.Xml.XmlDocument::schemas
XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* ___schemas_8;
// System.Boolean System.Xml.XmlDocument::reportValidity
bool ___reportValidity_9;
// System.Boolean System.Xml.XmlDocument::actualLoadingStatus
bool ___actualLoadingStatus_10;
// System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::onNodeInsertingDelegate
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* ___onNodeInsertingDelegate_11;
// System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::onNodeInsertedDelegate
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* ___onNodeInsertedDelegate_12;
// System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::onNodeRemovingDelegate
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* ___onNodeRemovingDelegate_13;
// System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::onNodeRemovedDelegate
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* ___onNodeRemovedDelegate_14;
// System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::onNodeChangingDelegate
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* ___onNodeChangingDelegate_15;
// System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::onNodeChangedDelegate
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* ___onNodeChangedDelegate_16;
// System.Boolean System.Xml.XmlDocument::fEntRefNodesPresent
bool ___fEntRefNodesPresent_17;
// System.Boolean System.Xml.XmlDocument::fCDataNodesPresent
bool ___fCDataNodesPresent_18;
// System.Boolean System.Xml.XmlDocument::preserveWhitespace
bool ___preserveWhitespace_19;
// System.Boolean System.Xml.XmlDocument::isLoading
bool ___isLoading_20;
// System.String System.Xml.XmlDocument::strDocumentName
String_t* ___strDocumentName_21;
// System.String System.Xml.XmlDocument::strDocumentFragmentName
String_t* ___strDocumentFragmentName_22;
// System.String System.Xml.XmlDocument::strCommentName
String_t* ___strCommentName_23;
// System.String System.Xml.XmlDocument::strTextName
String_t* ___strTextName_24;
// System.String System.Xml.XmlDocument::strCDataSectionName
String_t* ___strCDataSectionName_25;
// System.String System.Xml.XmlDocument::strEntityName
String_t* ___strEntityName_26;
// System.String System.Xml.XmlDocument::strID
String_t* ___strID_27;
// System.String System.Xml.XmlDocument::strXmlns
String_t* ___strXmlns_28;
// System.String System.Xml.XmlDocument::strXml
String_t* ___strXml_29;
// System.String System.Xml.XmlDocument::strSpace
String_t* ___strSpace_30;
// System.String System.Xml.XmlDocument::strLang
String_t* ___strLang_31;
// System.String System.Xml.XmlDocument::strEmpty
String_t* ___strEmpty_32;
// System.String System.Xml.XmlDocument::strNonSignificantWhitespaceName
String_t* ___strNonSignificantWhitespaceName_33;
// System.String System.Xml.XmlDocument::strSignificantWhitespaceName
String_t* ___strSignificantWhitespaceName_34;
// System.String System.Xml.XmlDocument::strReservedXmlns
String_t* ___strReservedXmlns_35;
// System.String System.Xml.XmlDocument::strReservedXml
String_t* ___strReservedXml_36;
// System.String System.Xml.XmlDocument::baseURI
String_t* ___baseURI_37;
// System.Xml.XmlResolver System.Xml.XmlDocument::resolver
XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___resolver_38;
// System.Boolean System.Xml.XmlDocument::bSetResolver
bool ___bSetResolver_39;
// System.Object System.Xml.XmlDocument::objLock
RuntimeObject* ___objLock_40;
};
struct XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_StaticFields
{
// System.Xml.EmptyEnumerator System.Xml.XmlDocument::EmptyEnumerator
EmptyEnumerator_t84EC9187C8460EE98E675ED9258AE4DF2A6776DA* ___EmptyEnumerator_41;
// System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlDocument::NotKnownSchemaInfo
RuntimeObject* ___NotKnownSchemaInfo_42;
// System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlDocument::ValidSchemaInfo
RuntimeObject* ___ValidSchemaInfo_43;
// System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlDocument::InvalidSchemaInfo
RuntimeObject* ___InvalidSchemaInfo_44;
};
// System.Xml.XmlDocumentFragment
struct XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD : public XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF
{
// System.Xml.XmlLinkedNode System.Xml.XmlDocumentFragment::lastChild
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* ___lastChild_1;
};
// System.Xml.XmlEntity
struct XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE : public XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF
{
// System.String System.Xml.XmlEntity::publicId
String_t* ___publicId_1;
// System.String System.Xml.XmlEntity::systemId
String_t* ___systemId_2;
// System.String System.Xml.XmlEntity::notationName
String_t* ___notationName_3;
// System.String System.Xml.XmlEntity::name
String_t* ___name_4;
// System.String System.Xml.XmlEntity::unparsedReplacementStr
String_t* ___unparsedReplacementStr_5;
// System.String System.Xml.XmlEntity::baseURI
String_t* ___baseURI_6;
// System.Xml.XmlLinkedNode System.Xml.XmlEntity::lastChild
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* ___lastChild_7;
// System.Boolean System.Xml.XmlEntity::childrenFoliating
bool ___childrenFoliating_8;
};
// System.Xml.XmlLinkedNode
struct XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C : public XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF
{
// System.Xml.XmlLinkedNode System.Xml.XmlLinkedNode::next
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* ___next_1;
};
// System.Xml.XmlNotation
struct XmlNotation_t0CB6B652D5F20BB51A8A299F67BEE3D6EC91CE4D : public XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF
{
// System.String System.Xml.XmlNotation::publicId
String_t* ___publicId_1;
// System.String System.Xml.XmlNotation::systemId
String_t* ___systemId_2;
// System.String System.Xml.XmlNotation::name
String_t* ___name_3;
};
// System.Xml.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.Schema.XmlSchemaAnnotated
struct XmlSchemaAnnotated_t41DBE9DF8776C6C639B33A712F25497C672B4E04 : public XmlSchemaObject_t82CCD87AADB4BEF4E9DFE4C501F09EDA372AA19D
{
// System.String System.Xml.Schema.XmlSchemaAnnotated::id
String_t* ___id_6;
// System.Xml.Schema.XmlSchemaAnnotation System.Xml.Schema.XmlSchemaAnnotated::annotation
XmlSchemaAnnotation_t35947D4DA687AA3C531135CEC5EBE7AB1C3EF821* ___annotation_7;
// System.Xml.XmlAttribute[] System.Xml.Schema.XmlSchemaAnnotated::moreAttributes
XmlAttributeU5BU5D_tFC0CF817A6D2131D94AB6387E4EAE7D97B3FFC40* ___moreAttributes_8;
};
// System.Xml.XmlTextReader
struct XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B : public XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD
{
// System.Xml.XmlTextReaderImpl System.Xml.XmlTextReader::impl
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___impl_3;
};
// System.Xml.XmlNamedNodeMap/SmallXmlNodeList
struct SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0
{
// System.Object System.Xml.XmlNamedNodeMap/SmallXmlNodeList::field
RuntimeObject* ___field_0;
};
// Native definition for P/Invoke marshalling of System.Xml.XmlNamedNodeMap/SmallXmlNodeList
struct SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0_marshaled_pinvoke
{
Il2CppIUnknown* ___field_0;
};
// Native definition for COM marshalling of System.Xml.XmlNamedNodeMap/SmallXmlNodeList
struct SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0_marshaled_com
{
Il2CppIUnknown* ___field_0;
};
// System.Xml.XmlTextReaderImpl/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.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.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>
struct Enumerator_tEA93FE2B778D098F590CA168BEFC4CD85D73A6B9
{
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::_dictionary
Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* ____dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_version
int32_t ____version_1;
// System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_index
int32_t ____index_2;
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::_current
KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 ____current_3;
// System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_getEnumeratorRetType
int32_t ____getEnumeratorRetType_4;
};
// System.Collections.Generic.Dictionary`2/Enumerator<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaAttDef>
struct Enumerator_tAFD022FCAA040EAEC1263E2EF82A45C956378717
{
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::_dictionary
Dictionary_2_tB85C1B2FFF985BA01AD2B7199C083B43C1476CC1* ____dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_version
int32_t ____version_1;
// System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_index
int32_t ____index_2;
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::_current
KeyValuePair_2_t9111838FA7D6AE78EED02B65A1E8B97E42A8BE57 ____current_3;
// System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_getEnumeratorRetType
int32_t ____getEnumeratorRetType_4;
};
// System.Collections.Generic.Dictionary`2/Enumerator<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaElementDecl>
struct Enumerator_t42F4E0E4BE9FD853E9D5EE3D3B048C8C08ECCD28
{
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::_dictionary
Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A* ____dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_version
int32_t ____version_1;
// System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_index
int32_t ____index_2;
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::_current
KeyValuePair_2_t83E1B0BDF3436F091A5C09273711FD7CED0D2D4E ____current_3;
// System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_getEnumeratorRetType
int32_t ____getEnumeratorRetType_4;
};
// System.Xml.AttributeProperties
struct AttributeProperties_tC54D85781EE1CC9EBDFCCFAAE8CD995F5C3D7C46
{
// System.UInt32 System.Xml.AttributeProperties::value__
uint32_t ___value___2;
};
// System.Reflection.BindingFlags
struct BindingFlags_t5DC2835E4AE9C1862B3AD172EF35B6A5F4F1812C
{
// System.Int32 System.Reflection.BindingFlags::value__
int32_t ___value___2;
};
// 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.ElementProperties
struct ElementProperties_t4E8E922B73BC72070A1C71FAC564B4318CC286B2
{
// System.UInt32 System.Xml.ElementProperties::value__
uint32_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.Runtime.InteropServices.GCHandle
struct GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC
{
// System.IntPtr System.Runtime.InteropServices.GCHandle::handle
intptr_t ___handle_0;
};
// System.Collections.Hashtable
struct Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D : public RuntimeObject
{
// System.Collections.Hashtable/bucket[] System.Collections.Hashtable::_buckets
bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* ____buckets_10;
// System.Int32 System.Collections.Hashtable::_count
int32_t ____count_11;
// System.Int32 System.Collections.Hashtable::_occupancy
int32_t ____occupancy_12;
// System.Int32 System.Collections.Hashtable::_loadsize
int32_t ____loadsize_13;
// System.Single System.Collections.Hashtable::_loadFactor
float ____loadFactor_14;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Hashtable::_version
int32_t ____version_15;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Hashtable::_isWriterInProgress
bool ____isWriterInProgress_16;
// System.Collections.ICollection System.Collections.Hashtable::_keys
RuntimeObject* ____keys_17;
// System.Collections.ICollection System.Collections.Hashtable::_values
RuntimeObject* ____values_18;
// System.Collections.IEqualityComparer System.Collections.Hashtable::_keycomparer
RuntimeObject* ____keycomparer_19;
// System.Object System.Collections.Hashtable::_syncRoot
RuntimeObject* ____syncRoot_20;
};
struct Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_StaticFields
{
// System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo> System.Collections.Hashtable::s_serializationInfoTable
ConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858* ___s_serializationInfoTable_21;
};
// 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.Security.Permissions.PermissionState
struct PermissionState_tBA97464FBBAF437426AAFD72AE10F12B79AE84E5
{
// System.Int32 System.Security.Permissions.PermissionState::value__
int32_t ___value___2;
};
// System.Xml.QueryOutputWriter
struct QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2 : public XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B
{
// System.Xml.XmlRawWriter System.Xml.QueryOutputWriter::wrapped
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* ___wrapped_3;
// System.Boolean System.Xml.QueryOutputWriter::inCDataSection
bool ___inCDataSection_4;
// System.Collections.Generic.Dictionary`2<System.Xml.XmlQualifiedName,System.Int32> System.Xml.QueryOutputWriter::lookupCDataElems
Dictionary_2_t873B9D79376C64DD27D1977E8F6391DD3DBDE426* ___lookupCDataElems_5;
// System.Xml.BitStack System.Xml.QueryOutputWriter::bitsCData
BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C* ___bitsCData_6;
// System.Xml.XmlQualifiedName System.Xml.QueryOutputWriter::qnameCData
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___qnameCData_7;
// System.Boolean System.Xml.QueryOutputWriter::outputDocType
bool ___outputDocType_8;
// System.Boolean System.Xml.QueryOutputWriter::checkWellFormedDoc
bool ___checkWellFormedDoc_9;
// System.Boolean System.Xml.QueryOutputWriter::hasDocElem
bool ___hasDocElem_10;
// System.Boolean System.Xml.QueryOutputWriter::inAttr
bool ___inAttr_11;
// System.String System.Xml.QueryOutputWriter::systemId
String_t* ___systemId_12;
// System.String System.Xml.QueryOutputWriter::publicId
String_t* ___publicId_13;
// System.Int32 System.Xml.QueryOutputWriter::depth
int32_t ___depth_14;
};
// System.Xml.ReadState
struct ReadState_t1D77BBA83B1B8C9A73F295AA02C60CF3E3E43960
{
// System.Int32 System.Xml.ReadState::value__
int32_t ___value___2;
};
// System.RuntimeTypeHandle
struct RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B
{
// System.IntPtr System.RuntimeTypeHandle::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.StringReader
struct StringReader_t1A336148FF22A9584E759A9D720CC96C23E35DD8 : public TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7
{
// System.String System.IO.StringReader::_s
String_t* ____s_2;
// System.Int32 System.IO.StringReader::_pos
int32_t ____pos_3;
// System.Int32 System.IO.StringReader::_length
int32_t ____length_4;
};
// System.Xml.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.Xml.ValidationType
struct ValidationType_t5866D5C0E60B27B092AB080025B9538AC97B4815
{
// System.Int32 System.Xml.ValidationType::value__
int32_t ___value___2;
};
// System.Xml.Schema.ValidatorState
struct ValidatorState_t204B83DD8CD7DFC6C0DAF08B0105A87E8D1EFDB8
{
// System.Int32 System.Xml.Schema.ValidatorState::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.XmlAutoDetectWriter
struct XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA : public XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B
{
// System.Xml.XmlRawWriter System.Xml.XmlAutoDetectWriter::wrapped
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* ___wrapped_3;
// System.Xml.OnRemoveWriter System.Xml.XmlAutoDetectWriter::onRemove
OnRemoveWriter_tF7CE4EBE235C3441FB9AE343E45CC311DE11C50F* ___onRemove_4;
// System.Xml.XmlWriterSettings System.Xml.XmlAutoDetectWriter::writerSettings
XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___writerSettings_5;
// System.Xml.XmlEventCache System.Xml.XmlAutoDetectWriter::eventCache
XmlEventCache_t8C2E7917F6C73E997AC8E3C4C6BCEC88E75ED6CF* ___eventCache_6;
// System.IO.TextWriter System.Xml.XmlAutoDetectWriter::textWriter
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___textWriter_7;
// System.IO.Stream System.Xml.XmlAutoDetectWriter::strm
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___strm_8;
};
// System.Xml.XmlCharacterData
struct XmlCharacterData_t95604E2FDB152E89A58F9D51414A2903012E758B : public XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C
{
// System.String System.Xml.XmlCharacterData::data
String_t* ___data_2;
};
// System.Xml.XmlDeclaration
struct XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79 : public XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C
{
// System.String System.Xml.XmlDeclaration::version
String_t* ___version_2;
// System.String System.Xml.XmlDeclaration::encoding
String_t* ___encoding_3;
// System.String System.Xml.XmlDeclaration::standalone
String_t* ___standalone_4;
};
// System.Xml.XmlDocumentType
struct XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E : public XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C
{
// System.String System.Xml.XmlDocumentType::name
String_t* ___name_2;
// System.String System.Xml.XmlDocumentType::publicId
String_t* ___publicId_3;
// System.String System.Xml.XmlDocumentType::systemId
String_t* ___systemId_4;
// System.String System.Xml.XmlDocumentType::internalSubset
String_t* ___internalSubset_5;
// System.Boolean System.Xml.XmlDocumentType::namespaces
bool ___namespaces_6;
// System.Xml.XmlNamedNodeMap System.Xml.XmlDocumentType::entities
XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* ___entities_7;
// System.Xml.XmlNamedNodeMap System.Xml.XmlDocumentType::notations
XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* ___notations_8;
// System.Xml.Schema.SchemaInfo System.Xml.XmlDocumentType::schemaInfo
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* ___schemaInfo_9;
};
// System.Xml.XmlElement
struct XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1 : public XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C
{
// System.Xml.XmlName System.Xml.XmlElement::name
XmlName_t0704430D24D202146901D342E34D878246E14F33* ___name_2;
// System.Xml.XmlAttributeCollection System.Xml.XmlElement::attributes
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* ___attributes_3;
// System.Xml.XmlLinkedNode System.Xml.XmlElement::lastChild
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* ___lastChild_4;
};
// System.Xml.XmlEntityReference
struct XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684 : public XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C
{
// System.String System.Xml.XmlEntityReference::name
String_t* ___name_2;
// System.Xml.XmlLinkedNode System.Xml.XmlEntityReference::lastChild
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* ___lastChild_3;
};
// System.Xml.XmlNamedNodeMap
struct XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C : public RuntimeObject
{
// System.Xml.XmlNode System.Xml.XmlNamedNodeMap::parent
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___parent_0;
// System.Xml.XmlNamedNodeMap/SmallXmlNodeList System.Xml.XmlNamedNodeMap::nodes
SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0 ___nodes_1;
};
// System.Xml.XmlNamespaceScope
struct XmlNamespaceScope_t9EB2A1CEC55CBA30A4612AD7EAAAF4106B96AD01
{
// System.Int32 System.Xml.XmlNamespaceScope::value__
int32_t ___value___2;
};
// System.Xml.XmlNodeChangedAction
struct XmlNodeChangedAction_tDF172D469BF61A7AF723976395070B130A65A233
{
// System.Int32 System.Xml.XmlNodeChangedAction::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.XmlProcessingInstruction
struct XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3 : public XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C
{
// System.String System.Xml.XmlProcessingInstruction::target
String_t* ___target_2;
// System.String System.Xml.XmlProcessingInstruction::data
String_t* ___data_3;
};
// System.Xml.Schema.XmlSchemaContentProcessing
struct XmlSchemaContentProcessing_tA79A7D20582EBEC1645AD8C1D5C5A42C1F947EE6
{
// System.Int32 System.Xml.Schema.XmlSchemaContentProcessing::value__
int32_t ___value___2;
};
// System.Xml.Schema.XmlSchemaContentType
struct XmlSchemaContentType_t30F65D76DF78B49262A67031AF1B166EDF032600
{
// System.Int32 System.Xml.Schema.XmlSchemaContentType::value__
int32_t ___value___2;
};
// System.Xml.Schema.XmlSchemaDerivationMethod
struct XmlSchemaDerivationMethod_t079141185E69D21187DC6E38FF803DFBDC9A173D
{
// System.Int32 System.Xml.Schema.XmlSchemaDerivationMethod::value__
int32_t ___value___2;
};
// System.Xml.Schema.XmlSchemaForm
struct XmlSchemaForm_tC5DCA5084B752EA562D9EB206F7F1C283BF4566B
{
// System.Int32 System.Xml.Schema.XmlSchemaForm::value__
int32_t ___value___2;
};
// System.Xml.Schema.XmlSchemaUse
struct XmlSchemaUse_t394B7F1B32DDD77B0ECC3E50AAA65501D0DE92D1
{
// System.Int32 System.Xml.Schema.XmlSchemaUse::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.XmlSchemaValidity
struct XmlSchemaValidity_t6A23BF5BB6AF73795630FCCCF46F0F600BA8B4F6
{
// System.Int32 System.Xml.Schema.XmlSchemaValidity::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.XmlTokenizedType
struct XmlTokenizedType_t30C36B69325D7EDF02900F00EB744EE6BA8D19E4
{
// System.Int32 System.Xml.XmlTokenizedType::value__
int32_t ___value___2;
};
// System.Xml.XmlUnspecifiedAttribute
struct XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC : public XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18
{
// System.Boolean System.Xml.XmlUnspecifiedAttribute::fSpecified
bool ___fSpecified_3;
};
// 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.Schema.XmlSchemaParticle/Occurs
struct Occurs_t74A6F69297E726614F92E08207C97DD6F27E86DF
{
// System.Int32 System.Xml.Schema.XmlSchemaParticle/Occurs::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/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.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.Xml.XsdCachingReader/CachingReaderState
struct CachingReaderState_t6D7984ED3692D8829CB397E390652D95980142FF
{
// System.Int32 System.Xml.XsdCachingReader/CachingReaderState::value__
int32_t ___value___2;
};
// System.Xml.XsdValidatingReader/ValidatingReaderState
struct ValidatingReaderState_t552412ED556AC2E46861163AB6FC77CD2754EF19
{
// System.Int32 System.Xml.XsdValidatingReader/ValidatingReaderState::value__
int32_t ___value___2;
};
// System.Xml.XmlWellFormedWriter/AttributeValueCache/ItemType
struct ItemType_t41A313CC70D4234DB8F3A32E5E395D80A26C65E2
{
// System.Int32 System.Xml.XmlWellFormedWriter/AttributeValueCache/ItemType::value__
int32_t ___value___2;
};
// 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.Xml.Schema.Parser
struct Parser_t5A18E84F88E618D9E803A7768A7765BF17DB2C07 : public RuntimeObject
{
// System.Xml.Schema.SchemaType System.Xml.Schema.Parser::schemaType
int32_t ___schemaType_0;
// System.Xml.XmlNameTable System.Xml.Schema.Parser::nameTable
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nameTable_1;
// System.Xml.Schema.SchemaNames System.Xml.Schema.Parser::schemaNames
SchemaNames_tF7A45B027D5759AA56D035F5962B4612A6B0902F* ___schemaNames_2;
// System.Xml.Schema.ValidationEventHandler System.Xml.Schema.Parser::eventHandler
ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* ___eventHandler_3;
// System.Xml.XmlNamespaceManager System.Xml.Schema.Parser::namespaceManager
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* ___namespaceManager_4;
// System.Xml.XmlReader System.Xml.Schema.Parser::reader
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader_5;
// System.Xml.PositionInfo System.Xml.Schema.Parser::positionInfo
PositionInfo_t1695F015DE0C183D3B4CE5A1562AD8A8A373F5B5* ___positionInfo_6;
// System.Boolean System.Xml.Schema.Parser::isProcessNamespaces
bool ___isProcessNamespaces_7;
// System.Int32 System.Xml.Schema.Parser::schemaXmlDepth
int32_t ___schemaXmlDepth_8;
// System.Int32 System.Xml.Schema.Parser::markupDepth
int32_t ___markupDepth_9;
// System.Xml.Schema.SchemaBuilder System.Xml.Schema.Parser::builder
SchemaBuilder_t34D90A0220BB6F8965267938FB5E298526253B21* ___builder_10;
// System.Xml.Schema.XmlSchema System.Xml.Schema.Parser::schema
XmlSchema_t5C9506D00418BF5FD524254D0C6C405C620C941D* ___schema_11;
// System.Xml.Schema.SchemaInfo System.Xml.Schema.Parser::xdrSchema
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* ___xdrSchema_12;
// System.Xml.XmlResolver System.Xml.Schema.Parser::xmlResolver
XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___xmlResolver_13;
// System.Xml.XmlDocument System.Xml.Schema.Parser::dummyDocument
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___dummyDocument_14;
// System.Boolean System.Xml.Schema.Parser::processMarkup
bool ___processMarkup_15;
// System.Xml.XmlNode System.Xml.Schema.Parser::parentNode
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___parentNode_16;
// System.Xml.XmlNamespaceManager System.Xml.Schema.Parser::annotationNSManager
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* ___annotationNSManager_17;
// System.String System.Xml.Schema.Parser::xmlns
String_t* ___xmlns_18;
// System.Xml.XmlCharType System.Xml.Schema.Parser::xmlCharType
XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 ___xmlCharType_19;
};
// System.Security.PermissionSet
struct PermissionSet_t1E1A3526A8CB8CF06B47C292D349FC06F93A0240 : public RuntimeObject
{
// System.Security.Permissions.PermissionState System.Security.PermissionSet::state
int32_t ___state_1;
// System.Collections.ArrayList System.Security.PermissionSet::list
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___list_2;
// System.Boolean System.Security.PermissionSet::_declsec
bool ____declsec_3;
// System.Boolean[] System.Security.PermissionSet::_ignored
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ____ignored_4;
};
struct PermissionSet_t1E1A3526A8CB8CF06B47C292D349FC06F93A0240_StaticFields
{
// System.Object[] System.Security.PermissionSet::psUnrestricted
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___psUnrestricted_0;
// System.Object[] System.Security.PermissionSet::action
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___action_5;
};
// 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.Type
struct Type_t : public MemberInfo_t
{
// System.RuntimeTypeHandle System.Type::_impl
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ____impl_8;
};
struct Type_t_StaticFields
{
// System.Reflection.Binder modreq(System.Runtime.CompilerServices.IsVolatile) System.Type::s_defaultBinder
Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235* ___s_defaultBinder_0;
// System.Char System.Type::Delimiter
Il2CppChar ___Delimiter_1;
// System.Type[] System.Type::EmptyTypes
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___EmptyTypes_2;
// System.Object System.Type::Missing
RuntimeObject* ___Missing_3;
// System.Reflection.MemberFilter System.Type::FilterAttribute
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterAttribute_4;
// System.Reflection.MemberFilter System.Type::FilterName
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterName_5;
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterNameIgnoreCase_6;
};
// System.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.ValidatingReaderNodeData
struct ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C : public RuntimeObject
{
// System.String System.Xml.ValidatingReaderNodeData::localName
String_t* ___localName_0;
// System.String System.Xml.ValidatingReaderNodeData::namespaceUri
String_t* ___namespaceUri_1;
// System.String System.Xml.ValidatingReaderNodeData::prefix
String_t* ___prefix_2;
// System.String System.Xml.ValidatingReaderNodeData::nameWPrefix
String_t* ___nameWPrefix_3;
// System.String System.Xml.ValidatingReaderNodeData::rawValue
String_t* ___rawValue_4;
// System.String System.Xml.ValidatingReaderNodeData::originalStringValue
String_t* ___originalStringValue_5;
// System.Int32 System.Xml.ValidatingReaderNodeData::depth
int32_t ___depth_6;
// System.Xml.AttributePSVIInfo System.Xml.ValidatingReaderNodeData::attributePSVIInfo
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* ___attributePSVIInfo_7;
// System.Xml.XmlNodeType System.Xml.ValidatingReaderNodeData::nodeType
int32_t ___nodeType_8;
// System.Int32 System.Xml.ValidatingReaderNodeData::lineNo
int32_t ___lineNo_9;
// System.Int32 System.Xml.ValidatingReaderNodeData::linePos
int32_t ___linePos_10;
};
// System.WeakReference
struct WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E : public RuntimeObject
{
// System.Boolean System.WeakReference::isLongReference
bool ___isLongReference_0;
// System.Runtime.InteropServices.GCHandle System.WeakReference::gcHandle
GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC ___gcHandle_1;
};
// System.Xml.XmlAttributeCollection
struct XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0 : public XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C
{
};
// System.Xml.XmlCDataSection
struct XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA : public XmlCharacterData_t95604E2FDB152E89A58F9D51414A2903012E758B
{
};
// System.Xml.XmlComment
struct XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9 : public XmlCharacterData_t95604E2FDB152E89A58F9D51414A2903012E758B
{
};
// System.Xml.XmlEncodedRawTextWriter
struct XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4 : public XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B
{
// System.Boolean System.Xml.XmlEncodedRawTextWriter::useAsync
bool ___useAsync_3;
// System.Byte[] System.Xml.XmlEncodedRawTextWriter::bufBytes
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___bufBytes_4;
// System.IO.Stream System.Xml.XmlEncodedRawTextWriter::stream
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream_5;
// System.Text.Encoding System.Xml.XmlEncodedRawTextWriter::encoding
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___encoding_6;
// System.Xml.XmlCharType System.Xml.XmlEncodedRawTextWriter::xmlCharType
XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 ___xmlCharType_7;
// System.Int32 System.Xml.XmlEncodedRawTextWriter::bufPos
int32_t ___bufPos_8;
// System.Int32 System.Xml.XmlEncodedRawTextWriter::textPos
int32_t ___textPos_9;
// System.Int32 System.Xml.XmlEncodedRawTextWriter::contentPos
int32_t ___contentPos_10;
// System.Int32 System.Xml.XmlEncodedRawTextWriter::cdataPos
int32_t ___cdataPos_11;
// System.Int32 System.Xml.XmlEncodedRawTextWriter::attrEndPos
int32_t ___attrEndPos_12;
// System.Int32 System.Xml.XmlEncodedRawTextWriter::bufLen
int32_t ___bufLen_13;
// System.Boolean System.Xml.XmlEncodedRawTextWriter::writeToNull
bool ___writeToNull_14;
// System.Boolean System.Xml.XmlEncodedRawTextWriter::hadDoubleBracket
bool ___hadDoubleBracket_15;
// System.Boolean System.Xml.XmlEncodedRawTextWriter::inAttributeValue
bool ___inAttributeValue_16;
// System.Int32 System.Xml.XmlEncodedRawTextWriter::bufBytesUsed
int32_t ___bufBytesUsed_17;
// System.Char[] System.Xml.XmlEncodedRawTextWriter::bufChars
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___bufChars_18;
// System.Text.Encoder System.Xml.XmlEncodedRawTextWriter::encoder
Encoder_tAF9067231A76315584BDF4CD27990E2F485A78FA* ___encoder_19;
// System.IO.TextWriter System.Xml.XmlEncodedRawTextWriter::writer
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer_20;
// System.Boolean System.Xml.XmlEncodedRawTextWriter::trackTextContent
bool ___trackTextContent_21;
// System.Boolean System.Xml.XmlEncodedRawTextWriter::inTextContent
bool ___inTextContent_22;
// System.Int32 System.Xml.XmlEncodedRawTextWriter::lastMarkPos
int32_t ___lastMarkPos_23;
// System.Int32[] System.Xml.XmlEncodedRawTextWriter::textContentMarks
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___textContentMarks_24;
// System.Xml.CharEntityEncoderFallback System.Xml.XmlEncodedRawTextWriter::charEntityFallback
CharEntityEncoderFallback_tB21A3AB1212CD1B53747CC36F7F96D6C64C87EE1* ___charEntityFallback_25;
// System.Xml.NewLineHandling System.Xml.XmlEncodedRawTextWriter::newLineHandling
int32_t ___newLineHandling_26;
// System.Boolean System.Xml.XmlEncodedRawTextWriter::closeOutput
bool ___closeOutput_27;
// System.Boolean System.Xml.XmlEncodedRawTextWriter::omitXmlDeclaration
bool ___omitXmlDeclaration_28;
// System.String System.Xml.XmlEncodedRawTextWriter::newLineChars
String_t* ___newLineChars_29;
// System.Boolean System.Xml.XmlEncodedRawTextWriter::checkCharacters
bool ___checkCharacters_30;
// System.Xml.XmlStandalone System.Xml.XmlEncodedRawTextWriter::standalone
int32_t ___standalone_31;
// System.Xml.XmlOutputMethod System.Xml.XmlEncodedRawTextWriter::outputMethod
int32_t ___outputMethod_32;
// System.Boolean System.Xml.XmlEncodedRawTextWriter::autoXmlDeclaration
bool ___autoXmlDeclaration_33;
// System.Boolean System.Xml.XmlEncodedRawTextWriter::mergeCDataSections
bool ___mergeCDataSections_34;
};
// System.Xml.XmlNodeChangedEventArgs
struct XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A : public EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377
{
// System.Xml.XmlNodeChangedAction System.Xml.XmlNodeChangedEventArgs::action
int32_t ___action_1;
// System.Xml.XmlNode System.Xml.XmlNodeChangedEventArgs::node
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___node_2;
// System.Xml.XmlNode System.Xml.XmlNodeChangedEventArgs::oldParent
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___oldParent_3;
// System.Xml.XmlNode System.Xml.XmlNodeChangedEventArgs::newParent
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___newParent_4;
// System.String System.Xml.XmlNodeChangedEventArgs::oldValue
String_t* ___oldValue_5;
// System.String System.Xml.XmlNodeChangedEventArgs::newValue
String_t* ___newValue_6;
};
// System.Xml.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.Schema.XmlSchema
struct XmlSchema_t5C9506D00418BF5FD524254D0C6C405C620C941D : public XmlSchemaObject_t82CCD87AADB4BEF4E9DFE4C501F09EDA372AA19D
{
// System.Xml.Schema.XmlSchemaForm System.Xml.Schema.XmlSchema::attributeFormDefault
int32_t ___attributeFormDefault_6;
// System.Xml.Schema.XmlSchemaForm System.Xml.Schema.XmlSchema::elementFormDefault
int32_t ___elementFormDefault_7;
// System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchema::blockDefault
int32_t ___blockDefault_8;
// System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchema::finalDefault
int32_t ___finalDefault_9;
// System.String System.Xml.Schema.XmlSchema::targetNs
String_t* ___targetNs_10;
// System.String System.Xml.Schema.XmlSchema::version
String_t* ___version_11;
// System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchema::includes
XmlSchemaObjectCollection_tABB09091ECE50CA4C1B43A6E91D2CB04465B9388* ___includes_12;
// System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchema::items
XmlSchemaObjectCollection_tABB09091ECE50CA4C1B43A6E91D2CB04465B9388* ___items_13;
// System.String System.Xml.Schema.XmlSchema::id
String_t* ___id_14;
// System.Xml.XmlAttribute[] System.Xml.Schema.XmlSchema::moreAttributes
XmlAttributeU5BU5D_tFC0CF817A6D2131D94AB6387E4EAE7D97B3FFC40* ___moreAttributes_15;
// System.Boolean System.Xml.Schema.XmlSchema::isCompiled
bool ___isCompiled_16;
// System.Boolean System.Xml.Schema.XmlSchema::isCompiledBySet
bool ___isCompiledBySet_17;
// System.Boolean System.Xml.Schema.XmlSchema::isPreprocessed
bool ___isPreprocessed_18;
// System.Boolean System.Xml.Schema.XmlSchema::isRedefined
bool ___isRedefined_19;
// System.Int32 System.Xml.Schema.XmlSchema::errorCount
int32_t ___errorCount_20;
// System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchema::attributes
XmlSchemaObjectTable_tD5C00DB526C716DB38585522F2011F99FC66A583* ___attributes_21;
// System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchema::attributeGroups
XmlSchemaObjectTable_tD5C00DB526C716DB38585522F2011F99FC66A583* ___attributeGroups_22;
// System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchema::elements
XmlSchemaObjectTable_tD5C00DB526C716DB38585522F2011F99FC66A583* ___elements_23;
// System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchema::types
XmlSchemaObjectTable_tD5C00DB526C716DB38585522F2011F99FC66A583* ___types_24;
// System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchema::groups
XmlSchemaObjectTable_tD5C00DB526C716DB38585522F2011F99FC66A583* ___groups_25;
// System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchema::notations
XmlSchemaObjectTable_tD5C00DB526C716DB38585522F2011F99FC66A583* ___notations_26;
// System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchema::identityConstraints
XmlSchemaObjectTable_tD5C00DB526C716DB38585522F2011F99FC66A583* ___identityConstraints_27;
// System.Collections.ArrayList System.Xml.Schema.XmlSchema::importedSchemas
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___importedSchemas_29;
// System.Collections.ArrayList System.Xml.Schema.XmlSchema::importedNamespaces
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___importedNamespaces_30;
// System.Int32 System.Xml.Schema.XmlSchema::schemaId
int32_t ___schemaId_31;
// System.Uri System.Xml.Schema.XmlSchema::baseUri
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___baseUri_32;
// System.Boolean System.Xml.Schema.XmlSchema::isChameleon
bool ___isChameleon_33;
// System.Collections.Hashtable System.Xml.Schema.XmlSchema::ids
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___ids_34;
// System.Xml.XmlDocument System.Xml.Schema.XmlSchema::document
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___document_35;
};
struct XmlSchema_t5C9506D00418BF5FD524254D0C6C405C620C941D_StaticFields
{
// System.Int32 System.Xml.Schema.XmlSchema::globalIdCounter
int32_t ___globalIdCounter_28;
};
// System.Xml.Schema.XmlSchemaAttribute
struct XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F : public XmlSchemaAnnotated_t41DBE9DF8776C6C639B33A712F25497C672B4E04
{
// System.String System.Xml.Schema.XmlSchemaAttribute::defaultValue
String_t* ___defaultValue_9;
// System.String System.Xml.Schema.XmlSchemaAttribute::fixedValue
String_t* ___fixedValue_10;
// System.String System.Xml.Schema.XmlSchemaAttribute::name
String_t* ___name_11;
// System.Xml.Schema.XmlSchemaForm System.Xml.Schema.XmlSchemaAttribute::form
int32_t ___form_12;
// System.Xml.Schema.XmlSchemaUse System.Xml.Schema.XmlSchemaAttribute::use
int32_t ___use_13;
// System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaAttribute::refName
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___refName_14;
// System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaAttribute::typeName
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___typeName_15;
// System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaAttribute::qualifiedName
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___qualifiedName_16;
// System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaAttribute::type
XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8* ___type_17;
// System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaAttribute::attributeType
XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8* ___attributeType_18;
// System.Xml.Schema.SchemaAttDef System.Xml.Schema.XmlSchemaAttribute::attDef
SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* ___attDef_19;
};
// System.Xml.Schema.XmlSchemaInfo
struct XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B : public RuntimeObject
{
// System.Boolean System.Xml.Schema.XmlSchemaInfo::isDefault
bool ___isDefault_0;
// System.Boolean System.Xml.Schema.XmlSchemaInfo::isNil
bool ___isNil_1;
// System.Xml.Schema.XmlSchemaElement System.Xml.Schema.XmlSchemaInfo::schemaElement
XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970* ___schemaElement_2;
// System.Xml.Schema.XmlSchemaAttribute System.Xml.Schema.XmlSchemaInfo::schemaAttribute
XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F* ___schemaAttribute_3;
// System.Xml.Schema.XmlSchemaType System.Xml.Schema.XmlSchemaInfo::schemaType
XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* ___schemaType_4;
// System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaInfo::memberType
XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8* ___memberType_5;
// System.Xml.Schema.XmlSchemaValidity System.Xml.Schema.XmlSchemaInfo::validity
int32_t ___validity_6;
// System.Xml.Schema.XmlSchemaContentType System.Xml.Schema.XmlSchemaInfo::contentType
int32_t ___contentType_7;
};
// System.Xml.Schema.XmlSchemaParticle
struct XmlSchemaParticle_t9A7544A3F66C6E4B8900456CF705A6F9D95655EE : public XmlSchemaAnnotated_t41DBE9DF8776C6C639B33A712F25497C672B4E04
{
// System.Decimal System.Xml.Schema.XmlSchemaParticle::minOccurs
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___minOccurs_9;
// System.Decimal System.Xml.Schema.XmlSchemaParticle::maxOccurs
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___maxOccurs_10;
// System.Xml.Schema.XmlSchemaParticle/Occurs System.Xml.Schema.XmlSchemaParticle::flags
int32_t ___flags_11;
};
struct XmlSchemaParticle_t9A7544A3F66C6E4B8900456CF705A6F9D95655EE_StaticFields
{
// System.Xml.Schema.XmlSchemaParticle System.Xml.Schema.XmlSchemaParticle::Empty
XmlSchemaParticle_t9A7544A3F66C6E4B8900456CF705A6F9D95655EE* ___Empty_12;
};
// System.Xml.Schema.XmlSchemaType
struct XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF : public XmlSchemaAnnotated_t41DBE9DF8776C6C639B33A712F25497C672B4E04
{
// System.String System.Xml.Schema.XmlSchemaType::name
String_t* ___name_9;
// System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaType::final
int32_t ___final_10;
// System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaType::derivedBy
int32_t ___derivedBy_11;
// System.Xml.Schema.XmlSchemaType System.Xml.Schema.XmlSchemaType::baseSchemaType
XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* ___baseSchemaType_12;
// System.Xml.Schema.XmlSchemaDatatype System.Xml.Schema.XmlSchemaType::datatype
XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D* ___datatype_13;
// System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaType::finalResolved
int32_t ___finalResolved_14;
// System.Xml.Schema.SchemaElementDecl modreq(System.Runtime.CompilerServices.IsVolatile) System.Xml.Schema.XmlSchemaType::elementDecl
SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* ___elementDecl_15;
// System.Xml.XmlQualifiedName modreq(System.Runtime.CompilerServices.IsVolatile) System.Xml.Schema.XmlSchemaType::qname
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___qname_16;
// System.Xml.Schema.XmlSchemaType System.Xml.Schema.XmlSchemaType::redefined
XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* ___redefined_17;
// System.Xml.Schema.XmlSchemaContentType System.Xml.Schema.XmlSchemaType::contentType
int32_t ___contentType_18;
};
// System.Xml.Schema.XmlSchemaValidator
struct XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24 : public RuntimeObject
{
// System.Xml.Schema.XmlSchemaSet System.Xml.Schema.XmlSchemaValidator::schemaSet
XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* ___schemaSet_0;
// System.Xml.Schema.XmlSchemaValidationFlags System.Xml.Schema.XmlSchemaValidator::validationFlags
int32_t ___validationFlags_1;
// System.Int32 System.Xml.Schema.XmlSchemaValidator::startIDConstraint
int32_t ___startIDConstraint_2;
// System.Boolean System.Xml.Schema.XmlSchemaValidator::isRoot
bool ___isRoot_3;
// System.Boolean System.Xml.Schema.XmlSchemaValidator::rootHasSchema
bool ___rootHasSchema_4;
// System.Boolean System.Xml.Schema.XmlSchemaValidator::attrValid
bool ___attrValid_5;
// System.Boolean System.Xml.Schema.XmlSchemaValidator::checkEntity
bool ___checkEntity_6;
// System.Xml.Schema.SchemaInfo System.Xml.Schema.XmlSchemaValidator::compiledSchemaInfo
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* ___compiledSchemaInfo_7;
// System.Xml.IDtdInfo System.Xml.Schema.XmlSchemaValidator::dtdSchemaInfo
RuntimeObject* ___dtdSchemaInfo_8;
// System.Collections.Hashtable System.Xml.Schema.XmlSchemaValidator::validatedNamespaces
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___validatedNamespaces_9;
// System.Xml.HWStack System.Xml.Schema.XmlSchemaValidator::validationStack
HWStack_tD40EE1D12E709BECF016469F161DC3071C020CC5* ___validationStack_10;
// System.Xml.Schema.ValidationState System.Xml.Schema.XmlSchemaValidator::context
ValidationState_t8C17DFED38ACA12FA20F24613BD3A3A4BB1E5D19* ___context_11;
// System.Xml.Schema.ValidatorState System.Xml.Schema.XmlSchemaValidator::currentState
int32_t ___currentState_12;
// System.Collections.Hashtable System.Xml.Schema.XmlSchemaValidator::attPresence
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___attPresence_13;
// System.Xml.Schema.SchemaAttDef System.Xml.Schema.XmlSchemaValidator::wildID
SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* ___wildID_14;
// System.Collections.Hashtable System.Xml.Schema.XmlSchemaValidator::IDs
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___IDs_15;
// System.Xml.Schema.IdRefNode System.Xml.Schema.XmlSchemaValidator::idRefListHead
IdRefNode_t06793D939FD3F484183D046CB2711557FBD5588D* ___idRefListHead_16;
// System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaValidator::contextQName
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___contextQName_17;
// System.String System.Xml.Schema.XmlSchemaValidator::NsXs
String_t* ___NsXs_18;
// System.String System.Xml.Schema.XmlSchemaValidator::NsXsi
String_t* ___NsXsi_19;
// System.String System.Xml.Schema.XmlSchemaValidator::NsXmlNs
String_t* ___NsXmlNs_20;
// System.String System.Xml.Schema.XmlSchemaValidator::NsXml
String_t* ___NsXml_21;
// System.Xml.Schema.XmlSchemaObject System.Xml.Schema.XmlSchemaValidator::partialValidationType
XmlSchemaObject_t82CCD87AADB4BEF4E9DFE4C501F09EDA372AA19D* ___partialValidationType_22;
// System.Text.StringBuilder System.Xml.Schema.XmlSchemaValidator::textValue
StringBuilder_t* ___textValue_23;
// System.Xml.Schema.ValidationEventHandler System.Xml.Schema.XmlSchemaValidator::eventHandler
ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* ___eventHandler_24;
// System.Object System.Xml.Schema.XmlSchemaValidator::validationEventSender
RuntimeObject* ___validationEventSender_25;
// System.Xml.XmlNameTable System.Xml.Schema.XmlSchemaValidator::nameTable
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nameTable_26;
// System.Xml.IXmlLineInfo System.Xml.Schema.XmlSchemaValidator::positionInfo
RuntimeObject* ___positionInfo_27;
// System.Xml.IXmlLineInfo System.Xml.Schema.XmlSchemaValidator::dummyPositionInfo
RuntimeObject* ___dummyPositionInfo_28;
// System.Xml.XmlResolver System.Xml.Schema.XmlSchemaValidator::xmlResolver
XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___xmlResolver_29;
// System.Uri System.Xml.Schema.XmlSchemaValidator::sourceUri
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___sourceUri_30;
// System.String System.Xml.Schema.XmlSchemaValidator::sourceUriString
String_t* ___sourceUriString_31;
// System.Xml.IXmlNamespaceResolver System.Xml.Schema.XmlSchemaValidator::nsResolver
RuntimeObject* ___nsResolver_32;
// System.Xml.Schema.XmlSchemaContentProcessing System.Xml.Schema.XmlSchemaValidator::processContents
int32_t ___processContents_33;
// System.String System.Xml.Schema.XmlSchemaValidator::xsiTypeString
String_t* ___xsiTypeString_34;
// System.String System.Xml.Schema.XmlSchemaValidator::xsiNilString
String_t* ___xsiNilString_35;
// System.String System.Xml.Schema.XmlSchemaValidator::xsiSchemaLocationString
String_t* ___xsiSchemaLocationString_36;
// System.String System.Xml.Schema.XmlSchemaValidator::xsiNoNamespaceSchemaLocationString
String_t* ___xsiNoNamespaceSchemaLocationString_37;
// System.Xml.XmlCharType System.Xml.Schema.XmlSchemaValidator::xmlCharType
XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 ___xmlCharType_43;
};
struct XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24_StaticFields
{
// System.Xml.Schema.XmlSchemaDatatype System.Xml.Schema.XmlSchemaValidator::dtQName
XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D* ___dtQName_38;
// System.Xml.Schema.XmlSchemaDatatype System.Xml.Schema.XmlSchemaValidator::dtCDATA
XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D* ___dtCDATA_39;
// System.Xml.Schema.XmlSchemaDatatype System.Xml.Schema.XmlSchemaValidator::dtStringArray
XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D* ___dtStringArray_40;
// System.Xml.Schema.XmlSchemaParticle[] System.Xml.Schema.XmlSchemaValidator::EmptyParticleArray
XmlSchemaParticleU5BU5D_t9D1A2F6D01E06055F53C259F65E0980F90B3F90C* ___EmptyParticleArray_41;
// System.Xml.Schema.XmlSchemaAttribute[] System.Xml.Schema.XmlSchemaValidator::EmptyAttributeArray
XmlSchemaAttributeU5BU5D_t18E825B9088A3BF3A732FD70EE9A586EF6347534* ___EmptyAttributeArray_42;
// System.Boolean[,] System.Xml.Schema.XmlSchemaValidator::ValidStates
BooleanU5BU2CU5D_t0A96EF7DC71D7FB5C1757A719712D1DFB2D571B6* ___ValidStates_44;
// System.String[] System.Xml.Schema.XmlSchemaValidator::MethodNames
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___MethodNames_45;
};
// System.Xml.XmlSignificantWhitespace
struct XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE : public XmlCharacterData_t95604E2FDB152E89A58F9D51414A2903012E758B
{
};
// System.Xml.XmlText
struct XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A : public XmlCharacterData_t95604E2FDB152E89A58F9D51414A2903012E758B
{
};
// 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.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.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.XmlWhitespace
struct XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24 : public XmlCharacterData_t95604E2FDB152E89A58F9D51414A2903012E758B
{
};
// 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.XsdCachingReader
struct XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43 : public XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD
{
// System.Xml.XmlReader System.Xml.XsdCachingReader::coreReader
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___coreReader_3;
// System.Xml.XmlNameTable System.Xml.XsdCachingReader::coreReaderNameTable
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___coreReaderNameTable_4;
// System.Xml.ValidatingReaderNodeData[] System.Xml.XsdCachingReader::contentEvents
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* ___contentEvents_5;
// System.Xml.ValidatingReaderNodeData[] System.Xml.XsdCachingReader::attributeEvents
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* ___attributeEvents_6;
// System.Xml.ValidatingReaderNodeData System.Xml.XsdCachingReader::cachedNode
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* ___cachedNode_7;
// System.Xml.XsdCachingReader/CachingReaderState System.Xml.XsdCachingReader::cacheState
int32_t ___cacheState_8;
// System.Int32 System.Xml.XsdCachingReader::contentIndex
int32_t ___contentIndex_9;
// System.Int32 System.Xml.XsdCachingReader::attributeCount
int32_t ___attributeCount_10;
// System.Boolean System.Xml.XsdCachingReader::returnOriginalStringValues
bool ___returnOriginalStringValues_11;
// System.Xml.CachingEventHandler System.Xml.XsdCachingReader::cacheHandler
CachingEventHandler_t3531836C36E56CCAAB45B3B7DA1B4F94742FE74E* ___cacheHandler_12;
// System.Int32 System.Xml.XsdCachingReader::currentAttrIndex
int32_t ___currentAttrIndex_13;
// System.Int32 System.Xml.XsdCachingReader::currentContentIndex
int32_t ___currentContentIndex_14;
// System.Boolean System.Xml.XsdCachingReader::readAhead
bool ___readAhead_15;
// System.Xml.IXmlLineInfo System.Xml.XsdCachingReader::lineInfo
RuntimeObject* ___lineInfo_16;
// System.Xml.ValidatingReaderNodeData System.Xml.XsdCachingReader::textNode
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* ___textNode_17;
};
// System.Xml.XsdValidatingReader
struct XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E : public XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD
{
// System.Xml.XmlReader System.Xml.XsdValidatingReader::coreReader
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___coreReader_3;
// System.Xml.IXmlNamespaceResolver System.Xml.XsdValidatingReader::coreReaderNSResolver
RuntimeObject* ___coreReaderNSResolver_4;
// System.Xml.IXmlNamespaceResolver System.Xml.XsdValidatingReader::thisNSResolver
RuntimeObject* ___thisNSResolver_5;
// System.Xml.Schema.XmlSchemaValidator System.Xml.XsdValidatingReader::validator
XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* ___validator_6;
// System.Xml.XmlResolver System.Xml.XsdValidatingReader::xmlResolver
XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___xmlResolver_7;
// System.Xml.Schema.ValidationEventHandler System.Xml.XsdValidatingReader::validationEvent
ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* ___validationEvent_8;
// System.Xml.XsdValidatingReader/ValidatingReaderState System.Xml.XsdValidatingReader::validationState
int32_t ___validationState_9;
// System.Xml.Schema.XmlValueGetter System.Xml.XsdValidatingReader::valueGetter
XmlValueGetter_tB804924EEE98EA7F63E2B038A3CE3714DA155EB9* ___valueGetter_10;
// System.Xml.XmlNamespaceManager System.Xml.XsdValidatingReader::nsManager
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* ___nsManager_11;
// System.Boolean System.Xml.XsdValidatingReader::manageNamespaces
bool ___manageNamespaces_12;
// System.Boolean System.Xml.XsdValidatingReader::processInlineSchema
bool ___processInlineSchema_13;
// System.Boolean System.Xml.XsdValidatingReader::replayCache
bool ___replayCache_14;
// System.Xml.ValidatingReaderNodeData System.Xml.XsdValidatingReader::cachedNode
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* ___cachedNode_15;
// System.Xml.AttributePSVIInfo System.Xml.XsdValidatingReader::attributePSVI
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* ___attributePSVI_16;
// System.Int32 System.Xml.XsdValidatingReader::attributeCount
int32_t ___attributeCount_17;
// System.Int32 System.Xml.XsdValidatingReader::coreReaderAttributeCount
int32_t ___coreReaderAttributeCount_18;
// System.Int32 System.Xml.XsdValidatingReader::currentAttrIndex
int32_t ___currentAttrIndex_19;
// System.Xml.AttributePSVIInfo[] System.Xml.XsdValidatingReader::attributePSVINodes
AttributePSVIInfoU5BU5D_tC78F3BF4DD87E93F42D8DA640AA29B625F3644BD* ___attributePSVINodes_20;
// System.Collections.ArrayList System.Xml.XsdValidatingReader::defaultAttributes
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___defaultAttributes_21;
// System.Xml.Schema.Parser System.Xml.XsdValidatingReader::inlineSchemaParser
Parser_t5A18E84F88E618D9E803A7768A7765BF17DB2C07* ___inlineSchemaParser_22;
// System.Object System.Xml.XsdValidatingReader::atomicValue
RuntimeObject* ___atomicValue_23;
// System.Xml.Schema.XmlSchemaInfo System.Xml.XsdValidatingReader::xmlSchemaInfo
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* ___xmlSchemaInfo_24;
// System.String System.Xml.XsdValidatingReader::originalAtomicValueString
String_t* ___originalAtomicValueString_25;
// System.Xml.XmlNameTable System.Xml.XsdValidatingReader::coreReaderNameTable
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___coreReaderNameTable_26;
// System.Xml.XsdCachingReader System.Xml.XsdValidatingReader::cachingReader
XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* ___cachingReader_27;
// System.Xml.ValidatingReaderNodeData System.Xml.XsdValidatingReader::textNode
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* ___textNode_28;
// System.String System.Xml.XsdValidatingReader::NsXmlNs
String_t* ___NsXmlNs_29;
// System.String System.Xml.XsdValidatingReader::NsXs
String_t* ___NsXs_30;
// System.String System.Xml.XsdValidatingReader::NsXsi
String_t* ___NsXsi_31;
// System.String System.Xml.XsdValidatingReader::XsiType
String_t* ___XsiType_32;
// System.String System.Xml.XsdValidatingReader::XsiNil
String_t* ___XsiNil_33;
// System.String System.Xml.XsdValidatingReader::XsdSchema
String_t* ___XsdSchema_34;
// System.String System.Xml.XsdValidatingReader::XsiSchemaLocation
String_t* ___XsiSchemaLocation_35;
// System.String System.Xml.XsdValidatingReader::XsiNoNamespaceSchemaLocation
String_t* ___XsiNoNamespaceSchemaLocation_36;
// System.Xml.XmlCharType System.Xml.XsdValidatingReader::xmlCharType
XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 ___xmlCharType_37;
// System.Xml.IXmlLineInfo System.Xml.XsdValidatingReader::lineInfo
RuntimeObject* ___lineInfo_38;
// System.Xml.ReadContentAsBinaryHelper System.Xml.XsdValidatingReader::readBinaryHelper
ReadContentAsBinaryHelper_t94D48E6891DEAC8DFE5DEA1B820091D277880897* ___readBinaryHelper_39;
// System.Xml.XsdValidatingReader/ValidatingReaderState System.Xml.XsdValidatingReader::savedState
int32_t ___savedState_40;
};
struct XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E_StaticFields
{
// System.Type modreq(System.Runtime.CompilerServices.IsVolatile) System.Xml.XsdValidatingReader::TypeOfString
Type_t* ___TypeOfString_41;
};
// 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.Xml.XmlWellFormedWriter/AttributeValueCache/Item
struct Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9 : public RuntimeObject
{
// System.Xml.XmlWellFormedWriter/AttributeValueCache/ItemType System.Xml.XmlWellFormedWriter/AttributeValueCache/Item::type
int32_t ___type_0;
// System.Object System.Xml.XmlWellFormedWriter/AttributeValueCache/Item::data
RuntimeObject* ___data_1;
};
// System.ArgumentException
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
// System.String System.ArgumentException::_paramName
String_t* ____paramName_18;
};
// System.Xml.CachingEventHandler
struct CachingEventHandler_t3531836C36E56CCAAB45B3B7DA1B4F94742FE74E : public MulticastDelegate_t
{
};
// System.Xml.HtmlEncodedRawTextWriter
struct HtmlEncodedRawTextWriter_t452DCE7E1E6FBDF73AA28D611C4682E50A82E8C2 : public XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4
{
// System.Xml.ByteStack System.Xml.HtmlEncodedRawTextWriter::elementScope
ByteStack_tCA5C0427314E734C1847B4867CB3D1617CED0D49* ___elementScope_35;
// System.Xml.ElementProperties System.Xml.HtmlEncodedRawTextWriter::currentElementProperties
uint32_t ___currentElementProperties_36;
// System.Xml.AttributeProperties System.Xml.HtmlEncodedRawTextWriter::currentAttributeProperties
uint32_t ___currentAttributeProperties_37;
// System.Boolean System.Xml.HtmlEncodedRawTextWriter::endsWithAmpersand
bool ___endsWithAmpersand_38;
// System.Byte[] System.Xml.HtmlEncodedRawTextWriter::uriEscapingBuffer
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___uriEscapingBuffer_39;
// System.String System.Xml.HtmlEncodedRawTextWriter::mediaType
String_t* ___mediaType_40;
// System.Boolean System.Xml.HtmlEncodedRawTextWriter::doNotEscapeUriAttributes
bool ___doNotEscapeUriAttributes_41;
};
struct HtmlEncodedRawTextWriter_t452DCE7E1E6FBDF73AA28D611C4682E50A82E8C2_StaticFields
{
// System.Xml.TernaryTreeReadOnly System.Xml.HtmlEncodedRawTextWriter::elementPropertySearch
TernaryTreeReadOnly_tD06A8A7750282A366E59B387CAD80E8C606F0608* ___elementPropertySearch_42;
// System.Xml.TernaryTreeReadOnly System.Xml.HtmlEncodedRawTextWriter::attributePropertySearch
TernaryTreeReadOnly_tD06A8A7750282A366E59B387CAD80E8C606F0608* ___attributePropertySearch_43;
};
// System.Xml.HtmlUtf8RawTextWriter
struct HtmlUtf8RawTextWriter_tBDA64D6572325D75C2E84DE787BC2D7C9A0AE850 : public XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB
{
// System.Xml.ByteStack System.Xml.HtmlUtf8RawTextWriter::elementScope
ByteStack_tCA5C0427314E734C1847B4867CB3D1617CED0D49* ___elementScope_26;
// System.Xml.ElementProperties System.Xml.HtmlUtf8RawTextWriter::currentElementProperties
uint32_t ___currentElementProperties_27;
// System.Xml.AttributeProperties System.Xml.HtmlUtf8RawTextWriter::currentAttributeProperties
uint32_t ___currentAttributeProperties_28;
// System.Boolean System.Xml.HtmlUtf8RawTextWriter::endsWithAmpersand
bool ___endsWithAmpersand_29;
// System.Byte[] System.Xml.HtmlUtf8RawTextWriter::uriEscapingBuffer
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___uriEscapingBuffer_30;
// System.String System.Xml.HtmlUtf8RawTextWriter::mediaType
String_t* ___mediaType_31;
// System.Boolean System.Xml.HtmlUtf8RawTextWriter::doNotEscapeUriAttributes
bool ___doNotEscapeUriAttributes_32;
};
struct HtmlUtf8RawTextWriter_tBDA64D6572325D75C2E84DE787BC2D7C9A0AE850_StaticFields
{
// System.Xml.TernaryTreeReadOnly System.Xml.HtmlUtf8RawTextWriter::elementPropertySearch
TernaryTreeReadOnly_tD06A8A7750282A366E59B387CAD80E8C606F0608* ___elementPropertySearch_33;
// System.Xml.TernaryTreeReadOnly System.Xml.HtmlUtf8RawTextWriter::attributePropertySearch
TernaryTreeReadOnly_tD06A8A7750282A366E59B387CAD80E8C606F0608* ___attributePropertySearch_34;
};
// System.IndexOutOfRangeException
struct IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.InvalidOperationException
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.Security.NamedPermissionSet
struct NamedPermissionSet_tE1762DB096B3A45291DA354EC7DD1C5A1F74B97C : public PermissionSet_t1E1A3526A8CB8CF06B47C292D349FC06F93A0240
{
// System.String System.Security.NamedPermissionSet::name
String_t* ___name_6;
// System.String System.Security.NamedPermissionSet::description
String_t* ___description_7;
};
// System.NotImplementedException
struct NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8 : 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.SchemaElementDecl
struct SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD : public SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B
{
// System.Collections.Generic.Dictionary`2<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaAttDef> System.Xml.Schema.SchemaElementDecl::attdefs
Dictionary_2_tB85C1B2FFF985BA01AD2B7199C083B43C1476CC1* ___attdefs_11;
// System.Collections.Generic.List`1<System.Xml.IDtdDefaultAttributeInfo> System.Xml.Schema.SchemaElementDecl::defaultAttdefs
List_1_tF7608B82384542DEB200F8E211D9D36AE02EAB58* ___defaultAttdefs_12;
// System.Boolean System.Xml.Schema.SchemaElementDecl::isIdDeclared
bool ___isIdDeclared_13;
// System.Boolean System.Xml.Schema.SchemaElementDecl::hasNonCDataAttribute
bool ___hasNonCDataAttribute_14;
// System.Boolean System.Xml.Schema.SchemaElementDecl::isAbstract
bool ___isAbstract_15;
// System.Boolean System.Xml.Schema.SchemaElementDecl::isNillable
bool ___isNillable_16;
// System.Boolean System.Xml.Schema.SchemaElementDecl::hasRequiredAttribute
bool ___hasRequiredAttribute_17;
// System.Boolean System.Xml.Schema.SchemaElementDecl::isNotationDeclared
bool ___isNotationDeclared_18;
// System.Collections.Generic.Dictionary`2<System.Xml.XmlQualifiedName,System.Xml.XmlQualifiedName> System.Xml.Schema.SchemaElementDecl::prohibitedAttributes
Dictionary_2_t8E385BAD05584AB244D10E6FAAA2C60FB9BA5F64* ___prohibitedAttributes_19;
// System.Xml.Schema.ContentValidator System.Xml.Schema.SchemaElementDecl::contentValidator
ContentValidator_t42EB1802005FF0D871EE98A34ADB69091CCE48FE* ___contentValidator_20;
// System.Xml.Schema.XmlSchemaAnyAttribute System.Xml.Schema.SchemaElementDecl::anyAttribute
XmlSchemaAnyAttribute_t2674CD673C9358AEDF1F318A8CF5DE9EB01AF601* ___anyAttribute_21;
// System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.SchemaElementDecl::block
int32_t ___block_22;
// System.Xml.Schema.CompiledIdentityConstraint[] System.Xml.Schema.SchemaElementDecl::constraints
CompiledIdentityConstraintU5BU5D_tA8E35C25853FEF33AAE27549EE1E30F039429D16* ___constraints_23;
// System.Xml.Schema.XmlSchemaElement System.Xml.Schema.SchemaElementDecl::schemaElement
XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970* ___schemaElement_24;
};
struct SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD_StaticFields
{
// System.Xml.Schema.SchemaElementDecl System.Xml.Schema.SchemaElementDecl::Empty
SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* ___Empty_25;
};
// System.Security.SecurityException
struct SecurityException_t025CB4C23107E67E07CF085826B40EDE72F8165C : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
// System.String System.Security.SecurityException::permissionState
String_t* ___permissionState_18;
};
// System.Xml.TextEncodedRawTextWriter
struct TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01 : public XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4
{
};
// System.Xml.TextUtf8RawTextWriter
struct TextUtf8RawTextWriter_t63B16D02A0D0351C035D28CF103BE455585F6B73 : public XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB
{
};
// System.Xml.Schema.ValidationEventHandler
struct ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A : public MulticastDelegate_t
{
};
// System.Xml.XmlEncodedRawTextWriterIndent
struct XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008 : public XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4
{
// System.Int32 System.Xml.XmlEncodedRawTextWriterIndent::indentLevel
int32_t ___indentLevel_35;
// System.Boolean System.Xml.XmlEncodedRawTextWriterIndent::newLineOnAttributes
bool ___newLineOnAttributes_36;
// System.String System.Xml.XmlEncodedRawTextWriterIndent::indentChars
String_t* ___indentChars_37;
// System.Boolean System.Xml.XmlEncodedRawTextWriterIndent::mixedContent
bool ___mixedContent_38;
// System.Xml.BitStack System.Xml.XmlEncodedRawTextWriterIndent::mixedContentStack
BitStack_t11BAF39DA304BA77E31BB65B8E3C4B5B46E1A10C* ___mixedContentStack_39;
// System.Xml.ConformanceLevel System.Xml.XmlEncodedRawTextWriterIndent::conformanceLevel
int32_t ___conformanceLevel_40;
};
// System.Xml.XmlException
struct XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
// System.String System.Xml.XmlException::res
String_t* ___res_18;
// System.String[] System.Xml.XmlException::args
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___args_19;
// System.Int32 System.Xml.XmlException::lineNumber
int32_t ___lineNumber_20;
// System.Int32 System.Xml.XmlException::linePosition
int32_t ___linePosition_21;
// System.String System.Xml.XmlException::sourceUri
String_t* ___sourceUri_22;
// System.String System.Xml.XmlException::message
String_t* ___message_23;
};
// System.Xml.XmlNodeChangedEventHandler
struct XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B : public MulticastDelegate_t
{
};
// System.Xml.Schema.XmlSchemaElement
struct XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970 : public XmlSchemaParticle_t9A7544A3F66C6E4B8900456CF705A6F9D95655EE
{
// System.Boolean System.Xml.Schema.XmlSchemaElement::isAbstract
bool ___isAbstract_13;
// System.Boolean System.Xml.Schema.XmlSchemaElement::hasAbstractAttribute
bool ___hasAbstractAttribute_14;
// System.Boolean System.Xml.Schema.XmlSchemaElement::isNillable
bool ___isNillable_15;
// System.Boolean System.Xml.Schema.XmlSchemaElement::hasNillableAttribute
bool ___hasNillableAttribute_16;
// System.Boolean System.Xml.Schema.XmlSchemaElement::isLocalTypeDerivationChecked
bool ___isLocalTypeDerivationChecked_17;
// System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaElement::block
int32_t ___block_18;
// System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaElement::final
int32_t ___final_19;
// System.Xml.Schema.XmlSchemaForm System.Xml.Schema.XmlSchemaElement::form
int32_t ___form_20;
// System.String System.Xml.Schema.XmlSchemaElement::defaultValue
String_t* ___defaultValue_21;
// System.String System.Xml.Schema.XmlSchemaElement::fixedValue
String_t* ___fixedValue_22;
// System.String System.Xml.Schema.XmlSchemaElement::name
String_t* ___name_23;
// System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaElement::refName
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___refName_24;
// System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaElement::substitutionGroup
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___substitutionGroup_25;
// System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaElement::typeName
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___typeName_26;
// System.Xml.Schema.XmlSchemaType System.Xml.Schema.XmlSchemaElement::type
XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* ___type_27;
// System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaElement::qualifiedName
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___qualifiedName_28;
// System.Xml.Schema.XmlSchemaType System.Xml.Schema.XmlSchemaElement::elementType
XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* ___elementType_29;
// System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaElement::blockResolved
int32_t ___blockResolved_30;
// System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaElement::finalResolved
int32_t ___finalResolved_31;
// System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaElement::constraints
XmlSchemaObjectCollection_tABB09091ECE50CA4C1B43A6E91D2CB04465B9388* ___constraints_32;
// System.Xml.Schema.SchemaElementDecl System.Xml.Schema.XmlSchemaElement::elementDecl
SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* ___elementDecl_33;
};
// System.Xml.Schema.XmlSchemaSimpleType
struct XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8 : public XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF
{
// System.Xml.Schema.XmlSchemaSimpleTypeContent System.Xml.Schema.XmlSchemaSimpleType::content
XmlSchemaSimpleTypeContent_t84C9B4F059E687FBF7845373F5A6B2795F982091* ___content_19;
};
// 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.Schema.XmlValueGetter
struct XmlValueGetter_tB804924EEE98EA7F63E2B038A3CE3714DA155EB9 : public MulticastDelegate_t
{
};
// System.ArgumentNullException
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129 : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
{
};
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
{
// System.Object System.ArgumentOutOfRangeException::_actualValue
RuntimeObject* ____actualValue_19;
};
// System.Xml.HtmlEncodedRawTextWriterIndent
struct HtmlEncodedRawTextWriterIndent_t6D9E69A027E84EE9EEDCFFC4021A6FEDA00AAF21 : public HtmlEncodedRawTextWriter_t452DCE7E1E6FBDF73AA28D611C4682E50A82E8C2
{
// System.Int32 System.Xml.HtmlEncodedRawTextWriterIndent::indentLevel
int32_t ___indentLevel_44;
// System.Int32 System.Xml.HtmlEncodedRawTextWriterIndent::endBlockPos
int32_t ___endBlockPos_45;
// System.String System.Xml.HtmlEncodedRawTextWriterIndent::indentChars
String_t* ___indentChars_46;
// System.Boolean System.Xml.HtmlEncodedRawTextWriterIndent::newLineOnAttributes
bool ___newLineOnAttributes_47;
};
// System.Xml.HtmlUtf8RawTextWriterIndent
struct HtmlUtf8RawTextWriterIndent_tC066D5903C4C1015116223E4A62B64637E8971A6 : public HtmlUtf8RawTextWriter_tBDA64D6572325D75C2E84DE787BC2D7C9A0AE850
{
// System.Int32 System.Xml.HtmlUtf8RawTextWriterIndent::indentLevel
int32_t ___indentLevel_35;
// System.Int32 System.Xml.HtmlUtf8RawTextWriterIndent::endBlockPos
int32_t ___endBlockPos_36;
// System.String System.Xml.HtmlUtf8RawTextWriterIndent::indentChars
String_t* ___indentChars_37;
// System.Boolean System.Xml.HtmlUtf8RawTextWriterIndent::newLineOnAttributes
bool ___newLineOnAttributes_38;
};
#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.Xml.XmlWellFormedWriter/AttributeValueCache/Item[]
struct ItemU5BU5D_t73F5828D4F7289CE7330E03744883B67DA02047D : public RuntimeArray
{
ALIGN_FIELD (8) Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* m_Items[1];
inline Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9** 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, Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)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.Xml.ValidatingReaderNodeData[]
struct ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8 : public RuntimeArray
{
ALIGN_FIELD (8) ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* m_Items[1];
inline ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C** 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, ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)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.AttributePSVIInfo[]
struct AttributePSVIInfoU5BU5D_tC78F3BF4DD87E93F42D8DA640AA29B625F3644BD : public RuntimeArray
{
ALIGN_FIELD (8) AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* m_Items[1];
inline AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE** 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, AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* 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.XmlName[]
struct XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC : public RuntimeArray
{
ALIGN_FIELD (8) XmlName_t0704430D24D202146901D342E34D878246E14F33* m_Items[1];
inline XmlName_t0704430D24D202146901D342E34D878246E14F33* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline XmlName_t0704430D24D202146901D342E34D878246E14F33** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, XmlName_t0704430D24D202146901D342E34D878246E14F33* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline XmlName_t0704430D24D202146901D342E34D878246E14F33* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline XmlName_t0704430D24D202146901D342E34D878246E14F33** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, XmlName_t0704430D24D202146901D342E34D878246E14F33* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.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.Void System.Collections.Generic.List`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor(System.Collections.Generic.IEnumerable`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mE097DBD72433D1AFC11733F5678602603A756424_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___collection0, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::Clear()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
// System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Object>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tEA93FE2B778D098F590CA168BEFC4CD85D73A6B9 Dictionary_2_GetEnumerator_m52AB12790B0B9B46B1DFB1F861C9DBEAB07C1FDA_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::TryGetValue(TKey,TValue&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___key0, RuntimeObject** ___value1, const RuntimeMethod* method) ;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Object>::get_Values()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueCollection_t038245E04B5D2A80048D9F8021A23E69A0C9DBAA* Dictionary_2_get_Values_mA0C01DEA55329E55380E96BBD04D4D228B437EC5_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, const RuntimeMethod* method) ;
// System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t44124D16E0B2F7308FF4069BE06369B5A83896EB ValueCollection_GetEnumerator_m025EE28BE2F31676E08BC3D7C8E39D8232BDBBF8_gshared (ValueCollection_t038245E04B5D2A80048D9F8021A23E69A0C9DBAA* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mFD8FAB8D9FF5EDF9AE3B14CF539A8A34AA9527A8_gshared (Enumerator_t44124D16E0B2F7308FF4069BE06369B5A83896EB* __this, const RuntimeMethod* method) ;
// TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_mB407E755F3B4C51C54D24338D00A352E5B16E7F3_gshared_inline (Enumerator_t44124D16E0B2F7308FF4069BE06369B5A83896EB* __this, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mBE11DA1DAFC756EB87E884AADC5EDC4BB72FB032_gshared (Enumerator_t44124D16E0B2F7308FF4069BE06369B5A83896EB* __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.NotImplementedException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotImplementedException__ctor_mDAB47BC6BD0E342E8F2171E5CABE3E67EA049F1C (NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* __this, 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/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/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/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/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.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.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.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.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.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/AttributeValueCache::StartComplexValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeValueCache_StartComplexValue_m87925DC78517289C6E00D7B389E3FD118ED6AC87 (AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* __this, const RuntimeMethod* method) ;
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1 (StringBuilder_t* __this, Il2CppChar ___value0, 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.Void System.Xml.XmlWellFormedWriter/AttributeValueCache::AddItem(System.Xml.XmlWellFormedWriter/AttributeValueCache/ItemType,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeValueCache_AddItem_mCCBDF145AB4C1B9086C6D51CBEEFEE3C1D52727A (AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* __this, int32_t ___type0, RuntimeObject* ___data1, 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.Void System.Xml.XmlWellFormedWriter/AttributeValueCache/BufferChunk::.ctor(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BufferChunk__ctor_m9EDC7D5AC6E379514A74A2ADA6546803AFA2DABF (BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, 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.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.Void System.Text.StringBuilder::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_mCD797D942316CB356205FD96415B0B7581CDAD60 (StringBuilder_t* __this, String_t* ___value0, 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.String System.Xml.XmlConvert::TrimStringStart(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_TrimStringStart_m8BC1528DC72AE253EEAB03563CB62C73A809AA75 (String_t* ___value0, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlCharType::IsWhiteSpace(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlCharType_IsWhiteSpace_m6F9F3A19B8A95FF5CBF1B197E400A0F194AC9387 (XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* __this, Il2CppChar ___ch0, const RuntimeMethod* method) ;
// System.String System.Xml.XmlConvert::TrimStringEnd(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_TrimStringEnd_m4DF67E30CF69E3757627C0169770B8BE09C007E9 (String_t* ___value0, const RuntimeMethod* method) ;
// System.Void System.Text.StringBuilder::set_Length(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_set_Length_mE2427BDAEF91C4E4A6C80F3BDF1F6E01DBCC2414 (StringBuilder_t* __this, int32_t ___value0, 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.XmlWellFormedWriter/AttributeValueCache/Item::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Item__ctor_m1E7121B2010DB84AD36DE26E6EE0BDD71817B3C0 (Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWellFormedWriter/AttributeValueCache/Item::Set(System.Xml.XmlWellFormedWriter/AttributeValueCache/ItemType,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Item_Set_m8579C16764397A1D513ABC700CE3615B4B6D0F9E (Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* __this, int32_t ___type0, RuntimeObject* ___data1, 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.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.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.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.Boolean System.Xml.XmlReader::get_IsDefaultInternal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlReader_get_IsDefaultInternal_mD8F1EBBDBC671A47D7A98D24979DEC7E2BC6336D (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWriter::WriteStartElement(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter_WriteStartElement_mAC8867077A8F222C966E6720B70F8808A655E3A0 (XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* __this, String_t* ___localName0, String_t* ___ns1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWriterSettings::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriterSettings__ctor_mD453709B5F0BA2D3E082FD52A309838171DF207C (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ;
// System.Xml.XmlWriter System.Xml.XmlWriterSettings::CreateWriter(System.IO.Stream)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* XmlWriterSettings_CreateWriter_m64B4BF7A010DD96A301DBB270C1461EB97F62C83 (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___output0, const RuntimeMethod* method) ;
// System.Xml.XmlWriter System.Xml.XmlWriterSettings::CreateWriter(System.IO.TextWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* XmlWriterSettings_CreateWriter_m693DB4E22B11E11EA33191F7743554BD415BAB99 (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___output0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Xml.XmlQualifiedName>::.ctor()
inline void List_1__ctor_m3AC372485EEA21872FD76F60AE7CFE6F52F6EB74 (List_1_t43EC7C138A17FAAD7120408F039923082A70301A* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t43EC7C138A17FAAD7120408F039923082A70301A*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
}
// System.Void System.Xml.XmlWriterSettings::Initialize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriterSettings_Initialize_m2995CAAF98DFAB3B3B6AC7219FE046DC5E3FD51A (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWriterSettings::CheckReadOnly(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriterSettings_CheckReadOnly_mC616438316DF17F77BA6941FE32E3A630BC5722B (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, String_t* ___propertyName0, 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.Object System.Object::MemberwiseClone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Object_MemberwiseClone_m0676AEE25C3CF7C09F15ECF9EC5CC407863617B3 (RuntimeObject* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Xml.XmlQualifiedName>::.ctor(System.Collections.Generic.IEnumerable`1<T>)
inline void List_1__ctor_m3E0D05B58186A4BCD2EE0E2022AA1B95AE3DEA06 (List_1_t43EC7C138A17FAAD7120408F039923082A70301A* __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
{
(( void (*) (List_1_t43EC7C138A17FAAD7120408F039923082A70301A*, RuntimeObject*, const RuntimeMethod*))List_1__ctor_mE097DBD72433D1AFC11733F5678602603A756424_gshared)(__this, ___collection0, method);
}
// System.Int32 System.Collections.Generic.List`1<System.Xml.XmlQualifiedName>::get_Count()
inline int32_t List_1_get_Count_m0EEF879BA3686583502A3D0CE4E388582415D0A6_inline (List_1_t43EC7C138A17FAAD7120408F039923082A70301A* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t43EC7C138A17FAAD7120408F039923082A70301A*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, 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.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_Indent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_Indent_mE585A2D946F32BFF63BBAD55DD3ABB00C818CDA2 (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ;
// 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) ;
// 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.HtmlUtf8RawTextWriterIndent::.ctor(System.IO.Stream,System.Xml.XmlWriterSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HtmlUtf8RawTextWriterIndent__ctor_m33278556F018B1C30908D7A77E38B07E0FC27B0C (HtmlUtf8RawTextWriterIndent_tC066D5903C4C1015116223E4A62B64637E8971A6* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings1, const RuntimeMethod* method) ;
// System.Void System.Xml.HtmlUtf8RawTextWriter::.ctor(System.IO.Stream,System.Xml.XmlWriterSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HtmlUtf8RawTextWriter__ctor_mA1F2A26D176CDD4BE7707C2E0226ACEB775735DD (HtmlUtf8RawTextWriter_tBDA64D6572325D75C2E84DE787BC2D7C9A0AE850* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings1, const RuntimeMethod* method) ;
// System.Void System.Xml.TextUtf8RawTextWriter::.ctor(System.IO.Stream,System.Xml.XmlWriterSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextUtf8RawTextWriter__ctor_m6220E9A18AC54E47143C779232F23C4B993DC467 (TextUtf8RawTextWriter_t63B16D02A0D0351C035D28CF103BE455585F6B73* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlAutoDetectWriter::.ctor(System.IO.Stream,System.Xml.XmlWriterSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter__ctor_m49BFF556FF8509246492598A7C8DBE081795C7B7 (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___strm0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___writerSettings1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlEncodedRawTextWriterIndent::.ctor(System.IO.Stream,System.Xml.XmlWriterSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriterIndent__ctor_m8EF4F1D5B307902AD9CEDB88765F784F2B46B8BE (XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlEncodedRawTextWriter::.ctor(System.IO.Stream,System.Xml.XmlWriterSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter__ctor_mEDAEC401E6AB69FC8728E0217038DFEBE2C3F564 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings1, const RuntimeMethod* method) ;
// System.Void System.Xml.HtmlEncodedRawTextWriterIndent::.ctor(System.IO.Stream,System.Xml.XmlWriterSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HtmlEncodedRawTextWriterIndent__ctor_m60E33631D199B14FC56F1DDED0AEBB25F7EE84F7 (HtmlEncodedRawTextWriterIndent_t6D9E69A027E84EE9EEDCFFC4021A6FEDA00AAF21* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings1, const RuntimeMethod* method) ;
// System.Void System.Xml.HtmlEncodedRawTextWriter::.ctor(System.IO.Stream,System.Xml.XmlWriterSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HtmlEncodedRawTextWriter__ctor_mF883AB9B78DC025B83B82805FD55574F5E8FDA29 (HtmlEncodedRawTextWriter_t452DCE7E1E6FBDF73AA28D611C4682E50A82E8C2* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings1, const RuntimeMethod* method) ;
// System.Void System.Xml.TextEncodedRawTextWriter::.ctor(System.IO.Stream,System.Xml.XmlWriterSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextEncodedRawTextWriter__ctor_m4C6DDBDA6F89D63BBB72AFCB2D4B5CCD52801A9E (TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings1, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlWriterSettings::get_IsQuerySpecific()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_IsQuerySpecific_m2346B74E5641852A0BF79829B235BE3019F68DFA (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.QueryOutputWriter::.ctor(System.Xml.XmlRawWriter,System.Xml.XmlWriterSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryOutputWriter__ctor_m719E09C06E20C2EC55BCEF055A8CB865EEFAAC25 (QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2* __this, XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* ___writer0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings1, const RuntimeMethod* method) ;
// 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) ;
// System.Void System.Xml.XmlAsyncCheckWriter::.ctor(System.Xml.XmlWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAsyncCheckWriter__ctor_mF26B7294DC235BD71761488DE271E04B72A4AA86 (XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___writer0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlEncodedRawTextWriterIndent::.ctor(System.IO.TextWriter,System.Xml.XmlWriterSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriterIndent__ctor_m7BFBA4A39946979954046339236C555015565A09 (XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008* __this, TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlEncodedRawTextWriter::.ctor(System.IO.TextWriter,System.Xml.XmlWriterSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEncodedRawTextWriter__ctor_mF6EBA0A44503EE7400D3901E059BDFEB8110B205 (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* __this, TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings1, const RuntimeMethod* method) ;
// System.Void System.Xml.HtmlEncodedRawTextWriterIndent::.ctor(System.IO.TextWriter,System.Xml.XmlWriterSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HtmlEncodedRawTextWriterIndent__ctor_m751B814A6AE947DD56855DB2CF0BC5532D79A657 (HtmlEncodedRawTextWriterIndent_t6D9E69A027E84EE9EEDCFFC4021A6FEDA00AAF21* __this, TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings1, const RuntimeMethod* method) ;
// System.Void System.Xml.HtmlEncodedRawTextWriter::.ctor(System.IO.TextWriter,System.Xml.XmlWriterSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HtmlEncodedRawTextWriter__ctor_m1EF2062FDFCDFFA4AAAC2801374E277C3D0C7A63 (HtmlEncodedRawTextWriter_t452DCE7E1E6FBDF73AA28D611C4682E50A82E8C2* __this, TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings1, const RuntimeMethod* method) ;
// System.Void System.Xml.TextEncodedRawTextWriter::.ctor(System.IO.TextWriter,System.Xml.XmlWriterSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextEncodedRawTextWriter__ctor_m0F3178F2FEB6E3D0034A426601B62115A33F3058 (TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01* __this, TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___writer0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlAutoDetectWriter::.ctor(System.IO.TextWriter,System.Xml.XmlWriterSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAutoDetectWriter__ctor_mBE391F3E538FC4006D2CDDA419CADB70323CDECC (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* __this, TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___textWriter0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___writerSettings1, const RuntimeMethod* method) ;
// System.Type System.Object::GetType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3 (RuntimeObject* __this, const RuntimeMethod* method) ;
// System.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.Text.Encoding System.Text.Encoding::get_UTF8()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* Encoding_get_UTF8_m9700ADA8E0F244002B2A89B483F1B2133B8FE336 (const RuntimeMethod* method) ;
// System.String System.Environment::get_NewLine()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_get_NewLine_m86172FA1FF2F93F740EFB5760938B35750DD35C0 (const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Xml.XmlQualifiedName>::Clear()
inline void List_1_Clear_m8B5B3A84C4C120283944FA6E7345B04B5409C673_inline (List_1_t43EC7C138A17FAAD7120408F039923082A70301A* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t43EC7C138A17FAAD7120408F039923082A70301A*, const RuntimeMethod*))List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline)(__this, method);
}
// System.Void System.Xml.XmlReader::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReader__ctor_m4E3A6201CC692B2B2F05ED58652056E893995477 (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XsdCachingReader::Init()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdCachingReader_Init_m87C292780A2459E8AB47E8323F73096E4E5EDC4D (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, const RuntimeMethod* method) ;
// System.Xml.ValidatingReaderNodeData System.Xml.XsdCachingReader::AddContent(System.Xml.XmlNodeType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* XsdCachingReader_AddContent_mFBDABE9A03291D95B7E8518BABACCC113E091EE2 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, int32_t ___nodeType0, const RuntimeMethod* method) ;
// System.Void System.Xml.ValidatingReaderNodeData::SetItemData(System.String,System.String,System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidatingReaderNodeData_SetItemData_m60B5ABC34768946CDA319A032F5B03A49D63D15A (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, String_t* ___localName0, String_t* ___prefix1, String_t* ___ns2, int32_t ___depth3, const RuntimeMethod* method) ;
// System.Void System.Xml.ValidatingReaderNodeData::SetLineInfo(System.Xml.IXmlLineInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidatingReaderNodeData_SetLineInfo_m5FDDF387540E6541CCC92AF98CE0A53C4BF564B0 (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, RuntimeObject* ___lineInfo0, const RuntimeMethod* method) ;
// System.Void System.Xml.XsdCachingReader::RecordAttributes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdCachingReader_RecordAttributes_mAE1CCD836B4FEEAB73D4CC725E4C4D6BD204F89A (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, const RuntimeMethod* method) ;
// System.Xml.XmlNodeType System.Xml.ValidatingReaderNodeData::get_NodeType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ValidatingReaderNodeData_get_NodeType_m3E275338D3EAE907A584E73F6C5E35EA6B932CE6_inline (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, const RuntimeMethod* method) ;
// System.String System.Xml.ValidatingReaderNodeData::GetAtomizedNameWPrefix(System.Xml.XmlNameTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValidatingReaderNodeData_GetAtomizedNameWPrefix_m46C836E6E3638B0C449430C2B5B9CCBF8F1A0BEE (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nameTable0, const RuntimeMethod* method) ;
// System.String System.Xml.ValidatingReaderNodeData::get_LocalName()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ValidatingReaderNodeData_get_LocalName_m1B5FCCE13DF4BA2F5CF1AD689A9186064EB5349D_inline (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, const RuntimeMethod* method) ;
// System.String System.Xml.ValidatingReaderNodeData::get_Namespace()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ValidatingReaderNodeData_get_Namespace_mE44583C79C6B1F0C5C6C2768590464A804E57FF6_inline (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, const RuntimeMethod* method) ;
// System.String System.Xml.ValidatingReaderNodeData::get_Prefix()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ValidatingReaderNodeData_get_Prefix_m47A65BB79C9FE8B2152542E47AB5DB9FDD0F3D34_inline (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, const RuntimeMethod* method) ;
// System.String System.Xml.ValidatingReaderNodeData::get_RawValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ValidatingReaderNodeData_get_RawValue_m910C83DC6975C87F12721378D46110F5A19B272B_inline (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, const RuntimeMethod* method) ;
// System.String System.Xml.ValidatingReaderNodeData::get_OriginalStringValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ValidatingReaderNodeData_get_OriginalStringValue_m7324BC2DF5C5339DA89755D74D480D7CD842D95C_inline (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, const RuntimeMethod* method) ;
// System.Int32 System.Xml.ValidatingReaderNodeData::get_Depth()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ValidatingReaderNodeData_get_Depth_m08B579D77C5CA1CEA934CD16CB8CB36040A1E59D_inline (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, const RuntimeMethod* method) ;
// System.Int32 System.String::IndexOf(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966 (String_t* __this, Il2CppChar ___value0, const RuntimeMethod* method) ;
// System.Int32 System.Xml.XsdCachingReader::GetAttributeIndexWithoutPrefix(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdCachingReader_GetAttributeIndexWithoutPrefix_m328281605B34AB0E22E43439B553EFD59C7DE87A (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, String_t* ___name0, const RuntimeMethod* method) ;
// System.Int32 System.Xml.XsdCachingReader::GetAttributeIndexWithPrefix(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdCachingReader_GetAttributeIndexWithPrefix_mF39DDFCF01078A069ADDAA2CC23418DE585EDDA5 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, String_t* ___name0, 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.Void System.Xml.ValidatingReaderNodeData::SetItemData(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidatingReaderNodeData_SetItemData_mA8A50401A6E8A82C6F5DB7D166EB1DACD0450FA4 (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.ValidatingReaderNodeData::set_Depth(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ValidatingReaderNodeData_set_Depth_m67104201A7E9C3E72FF18CD75CF28CCEEB349D8B_inline (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.CachingEventHandler::Invoke(System.Xml.XsdCachingReader)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void CachingEventHandler_Invoke_mE544A7147BAE33B6F1A434723ACF2C561F3CB02F_inline (CachingEventHandler_t3531836C36E56CCAAB45B3B7DA1B4F94742FE74E* __this, XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* ___cachingReader0, const RuntimeMethod* method) ;
// System.Void System.Xml.XsdCachingReader::ClearAttributesInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdCachingReader_ClearAttributesInfo_m12A17AE4AB19B7630EDF469E8E4946C1522AF0FB (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.ValidatingReaderNodeData::SetItemData(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidatingReaderNodeData_SetItemData_m6F20EE6D67B53597EFEE48860915168BD55FBF22 (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, String_t* ___value0, String_t* ___originalStringValue1, const RuntimeMethod* method) ;
// System.Void System.Xml.ValidatingReaderNodeData::SetLineInfo(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidatingReaderNodeData_SetLineInfo_m71C3928A3D901AA471D6BE00B632A1BF21C120B6 (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, int32_t ___lineNo0, int32_t ___linePos1, const RuntimeMethod* method) ;
// System.Xml.ValidatingReaderNodeData System.Xml.XsdCachingReader::RecordTextNode(System.String,System.String,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* XsdCachingReader_RecordTextNode_mAF5DE553DDDAF1FEF05AFDF4F3A66DE510FE0929 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, String_t* ___textValue0, String_t* ___originalStringValue1, int32_t ___depth2, int32_t ___lineNo3, int32_t ___linePos4, const RuntimeMethod* method) ;
// System.Void System.InvalidOperationException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m1BE9BD198B904AA1D94F4B10DA88077DFD44B7A5 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, const RuntimeMethod* method) ;
// System.Xml.ValidatingReaderNodeData System.Xml.XsdCachingReader::CreateDummyTextNode(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* XsdCachingReader_CreateDummyTextNode_m1300DDBA9E391A45E2EA5ABC8E33ED486E5B84DD (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, String_t* ___attributeValue0, int32_t ___depth1, const RuntimeMethod* method) ;
// System.Int32 System.Xml.ValidatingReaderNodeData::get_LineNumber()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ValidatingReaderNodeData_get_LineNumber_m60328F5D1F021D01F27CACC6AD42227DE2F2D515_inline (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, const RuntimeMethod* method) ;
// System.Int32 System.Xml.ValidatingReaderNodeData::get_LinePosition()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ValidatingReaderNodeData_get_LinePosition_mCA2EE6761998E637338A7D98AC7BD2CB7DD6FEA5_inline (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.ValidatingReaderNodeData::Clear(System.Xml.XmlNodeType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidatingReaderNodeData_Clear_m35EB71C9541236968A8C58B6F2E310C9F90B485B (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, int32_t ___nodeType0, const RuntimeMethod* method) ;
// System.Void System.Array::Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_m2CC3EA1129E9B8EA82E6FA31EDE0D4F87BF67EC7 (RuntimeArray* ___sourceArray0, int32_t ___sourceIndex1, RuntimeArray* ___destinationArray2, int32_t ___destinationIndex3, int32_t ___length4, const RuntimeMethod* method) ;
// System.Void System.Xml.ValidatingReaderNodeData::.ctor(System.Xml.XmlNodeType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidatingReaderNodeData__ctor_m6A898DD01B67F8F6F4B2E21FD45394E04AF38AAE (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, int32_t ___nodeType0, const RuntimeMethod* method) ;
// System.Xml.ValidatingReaderNodeData System.Xml.XsdCachingReader::AddAttribute(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* XsdCachingReader_AddAttribute_mCEBADC7108923AF4145B596A7E6C004532A11B16 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, int32_t ___attIndex0, const RuntimeMethod* method) ;
// System.Void System.Xml.ValidatingReaderNodeData::set_RawValue(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ValidatingReaderNodeData_set_RawValue_mEE082D1AA279EC32C842D3F17574B5839F42B4A4_inline (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.Schema.XmlSchemaInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSchemaInfo__ctor_mEEC95F1F490C5D62BF1CC6DB16FE4938E5C1C341 (XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Schema.XmlSchemaInfo::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSchemaInfo_Clear_m6EACF6A1BB70B47CBC2865B8CCC74BEA67F96FFE (XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlNamespaceManager::.ctor(System.Xml.XmlNameTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNamespaceManager__ctor_m18E69120CE5886E06630CCCC3215D2C67FC669DB (XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* __this, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nameTable0, 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.XsdValidatingReader::Init()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdValidatingReader_Init_mBB431A6A4326BBCF23366F943D4EE3012DADB879 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XsdValidatingReader::SetupValidator(System.Xml.XmlReaderSettings,System.Xml.XmlReader,System.Xml.Schema.XmlSchemaObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdValidatingReader_SetupValidator_mD8120140BD8D7D7020C6F3B1AC37B0C4160FAD9D (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* ___readerSettings0, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader1, XmlSchemaObject_t82CCD87AADB4BEF4E9DFE4C501F09EDA372AA19D* ___partialValidationType2, const RuntimeMethod* method) ;
// System.Xml.Schema.ValidationEventHandler System.Xml.XmlReaderSettings::GetEventHandler()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* XmlReaderSettings_GetEventHandler_m846EA87D263A6804F452088315D63F5FA898AC64_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XsdValidatingReader::.ctor(System.Xml.XmlReader,System.Xml.XmlResolver,System.Xml.XmlReaderSettings,System.Xml.Schema.XmlSchemaObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdValidatingReader__ctor_m4E4125D1D8F1A189D16044D54B88BF24EBA0216E (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___xmlResolver1, XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* ___readerSettings2, XmlSchemaObject_t82CCD87AADB4BEF4E9DFE4C501F09EDA372AA19D* ___partialValidationType3, const RuntimeMethod* method) ;
// System.Void System.Collections.ArrayList::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80 (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Schema.XmlValueGetter::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlValueGetter__ctor_mBE624F87E03B987FB93726999FDECD5A16A78856 (XmlValueGetter_tB804924EEE98EA7F63E2B038A3CE3714DA155EB9* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E (RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ___handle0, const RuntimeMethod* method) ;
// System.Xml.Schema.XmlSchemaSet System.Xml.XmlReaderSettings::get_Schemas()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* XmlReaderSettings_get_Schemas_mCA60590694647CFB542019784F457006B33D2C62 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Schema.XmlSchemaValidator::.ctor(System.Xml.XmlNameTable,System.Xml.Schema.XmlSchemaSet,System.Xml.IXmlNamespaceResolver,System.Xml.Schema.XmlSchemaValidationFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSchemaValidator__ctor_m56BB2CC33204184249C0FBAEFFB62360CE357D58 (XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* __this, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nameTable0, XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* ___schemas1, RuntimeObject* ___namespaceResolver2, int32_t ___validationFlags3, const RuntimeMethod* method) ;
// System.Void System.Xml.Schema.XmlSchemaValidator::set_XmlResolver(System.Xml.XmlResolver)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlSchemaValidator_set_XmlResolver_mDC237AD870BB422EBE00CABC121D6463BD83AC7B_inline (XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* __this, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___value0, const RuntimeMethod* method) ;
// System.Uri System.Xml.XmlConvert::ToUri(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* XmlConvert_ToUri_m8FB9C7F2427BDE686CDEB6A0A89A2291262377BA (String_t* ___s0, const RuntimeMethod* method) ;
// System.Void System.Xml.Schema.XmlSchemaValidator::set_SourceUri(System.Uri)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSchemaValidator_set_SourceUri_m9CE5DB7D7E96302E4A1EFB8AE9532E5A50943C6D (XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.Schema.XmlSchemaValidator::set_ValidationEventSender(System.Object)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlSchemaValidator_set_ValidationEventSender_m86BA6FEA0FF7C3084A563502919ED3AFC4B5FEF3_inline (XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* __this, RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.Schema.XmlSchemaValidator::add_ValidationEventHandler(System.Xml.Schema.ValidationEventHandler)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSchemaValidator_add_ValidationEventHandler_mE543B33598AD152106B6502A2BB811774E04C4FF (XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* __this, ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.Schema.XmlSchemaValidator::set_LineInfoProvider(System.Xml.IXmlLineInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSchemaValidator_set_LineInfoProvider_mCE8464C94CE62045B4E7E1D5E98CE08C5A133F7B (XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* __this, RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Schema.XmlSchemaValidator::get_ProcessSchemaHints()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlSchemaValidator_get_ProcessSchemaHints_m37A5B2EC6FEF8D19AC53A4444F8A86CB7442F491 (XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* __this, const RuntimeMethod* method) ;
// System.Xml.Schema.XmlSchemaSet System.Xml.Schema.XmlSchemaValidator::get_SchemaSet()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* XmlSchemaValidator_get_SchemaSet_m5FF824719184397EE034CEB9C75AA11723A6EF11_inline (XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* __this, const RuntimeMethod* method) ;
// System.Xml.XmlReaderSettings System.Xml.Schema.XmlSchemaSet::get_ReaderSettings()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* XmlSchemaSet_get_ReaderSettings_m93D79181C45DC697575A64806D2D47229BE1A7F5_inline (XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* __this, const RuntimeMethod* method) ;
// System.Xml.DtdProcessing System.Xml.XmlReaderSettings::get_DtdProcessing()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlReaderSettings_get_DtdProcessing_m6855A18AA93729899B666898C1FD7B46D3330C5F_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlReaderSettings::set_DtdProcessing(System.Xml.DtdProcessing)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_DtdProcessing_mDC4E1119E3381F9C237565E3FFFC5B2CFF7C0043 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.Schema.XmlSchemaValidator::SetDtdSchemaInfo(System.Xml.IDtdInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSchemaValidator_SetDtdSchemaInfo_m2B01EAA86B72F725DD85A03BE1E5C7807AD09552 (XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* __this, RuntimeObject* ___dtdSchemaInfo0, const RuntimeMethod* method) ;
// System.Void System.Xml.Schema.XmlSchemaValidator::Initialize(System.Xml.Schema.XmlSchemaObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSchemaValidator_Initialize_mE3D993BD39AE63C57ED26CDF333903F1A5FD0C82 (XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* __this, XmlSchemaObject_t82CCD87AADB4BEF4E9DFE4C501F09EDA372AA19D* ___partialValidationType0, const RuntimeMethod* method) ;
// System.Void System.Xml.Schema.XmlSchemaValidator::Initialize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSchemaValidator_Initialize_m7C9C522F9DD17BD23E1ED3A2B17FBC996F71EC3E (XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* __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_Schemas(System.Xml.Schema.XmlSchemaSet)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_Schemas_m4210C0E93B55A57E27BE2D71AC039E8D51DE2EA2 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* ___value0, 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.Schema.XmlSchemaValidator::get_ValidationFlags()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlSchemaValidator_get_ValidationFlags_m7AD61F111A15626C30081CCDD6A4D89C07478AF9_inline (XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* __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.Xml.Schema.XmlSchemaContentType System.Xml.Schema.XmlSchemaValidator::get_CurrentContentType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlSchemaValidator_get_CurrentContentType_m8C0D380365940F827814FEF5DC65CE61DB47EBF1 (XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* __this, const RuntimeMethod* method) ;
// System.String System.Xml.Schema.XmlSchemaValidator::GetDefaultAttributePrefix(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlSchemaValidator_GetDefaultAttributePrefix_m1620E7D1E70EC57BBD3DECA1B1B8C2BC4B31B620 (XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* __this, String_t* ___attributeNS0, const RuntimeMethod* method) ;
// System.String System.String::Concat(System.String[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m6B0734B65813C8EA093D78E5C2D16534EB6FE8C0 (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___values0, const RuntimeMethod* method) ;
// System.Xml.Schema.XmlSchemaContentType System.Xml.Schema.XmlSchemaInfo::get_ContentType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlSchemaInfo_get_ContentType_mCCA068AA3574842BD420262E10289905AEFF231B_inline (XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* __this, const RuntimeMethod* method) ;
// System.Xml.Schema.XmlSchemaType System.Xml.Schema.XmlSchemaInfo::get_SchemaType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* XmlSchemaInfo_get_SchemaType_mEB10A4E308F1E049AB929D5AB45087160B8A4979_inline (XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* __this, const RuntimeMethod* method) ;
// System.Xml.Schema.XmlSchemaDatatype System.Xml.Schema.XmlSchemaType::get_Datatype()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D* XmlSchemaType_get_Datatype_mECB5426C8F94D6BEF27D5E8648BCCDB17C5EAC16_inline (XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* __this, const RuntimeMethod* method) ;
// System.Xml.Schema.XmlSchemaInfo System.Xml.XsdValidatingReader::get_AttributeSchemaInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* XsdValidatingReader_get_AttributeSchemaInfo_m1EBC66056100FDAA9DC9A976F06BF72B6841A4CD (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method) ;
// System.Xml.ValidatingReaderNodeData System.Xml.XsdValidatingReader::GetDefaultAttribute(System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* XsdValidatingReader_GetDefaultAttribute_m800DE584E700B6AB7096FECEE9B8A1BE185F5B36 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, String_t* ___name0, bool ___updatePosition1, const RuntimeMethod* method) ;
// System.Xml.ValidatingReaderNodeData System.Xml.XsdValidatingReader::GetDefaultAttribute(System.String,System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* XsdValidatingReader_GetDefaultAttribute_m0365FFD5B3B5E7299CBB7E3AA34E9703F968D86A (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, String_t* ___attrLocalName0, String_t* ___ns1, bool ___updatePosition2, const RuntimeMethod* method) ;
// System.Xml.AttributePSVIInfo System.Xml.XsdValidatingReader::GetAttributePSVI(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* XsdValidatingReader_GetAttributePSVI_mA133A6CAD4FCA8731DDC805A1DA9A1132447436D (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, String_t* ___name0, const RuntimeMethod* method) ;
// System.Xml.AttributePSVIInfo System.Xml.ValidatingReaderNodeData::get_AttInfo()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* ValidatingReaderNodeData_get_AttInfo_m45ACBC84102E1D9D046D31FD457A3DCA98E2090F_inline (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __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.XsdValidatingReader::ProcessReaderEvent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdValidatingReader_ProcessReaderEvent_m6C0F7A68A7970883DC9787FE2F411BFF3B9FF31E (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Schema.XmlSchemaValidator::EndValidation()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSchemaValidator_EndValidation_m575836D703F3EC8F4F128F4E2CF8BABA4CDA8BFA (XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XsdValidatingReader::ProcessInlineSchema()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdValidatingReader_ProcessInlineSchema_m5A8D4859906CC9A3ADD6FD358FC7F3638CE0FD0F (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XsdValidatingReader::ClearAttributesInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdValidatingReader_ClearAttributesInfo_m49022431F4939F63130E671176FCEC4DFF03D80E (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Schema.XmlSchemaInfo::get_IsUnionType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlSchemaInfo_get_IsUnionType_m9027AA2A2DA360A6EFA0D2916B4B94307A2EB050 (XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Schema.XmlSchemaInfo::get_IsDefault()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlSchemaInfo_get_IsDefault_mB86867936914AAE6E3CD99B8826360233EA59B8C_inline (XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Schema.XmlSchemaValidator::SkipToEndElement(System.Xml.Schema.XmlSchemaInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSchemaValidator_SkipToEndElement_m06361D2BE6354B6243DBE69406A2E8E1EF0BFD31 (XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* __this, XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* ___schemaInfo0, const RuntimeMethod* method) ;
// System.Xml.ValidatingReaderNodeData System.Xml.XsdValidatingReader::CreateDummyTextNode(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* XsdValidatingReader_CreateDummyTextNode_mEC84A678995AC1AF508CECA0411B00EC45D982BA (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, String_t* ___attributeValue0, int32_t ___depth1, const RuntimeMethod* method) ;
// System.Void System.Xml.XsdValidatingReader::GetIsDefault()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdValidatingReader_GetIsDefault_mB9A0D7444277652C86A23B61DE9A30623B403FFD (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Schema.XmlSchemaInfo::get_IsNil()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlSchemaInfo_get_IsNil_m4F1DD1026DF6FADBEB26C570C07933519D4F8A2B_inline (XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* __this, const RuntimeMethod* method) ;
// System.Xml.Schema.XmlSchemaValidity System.Xml.Schema.XmlSchemaInfo::get_Validity()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlSchemaInfo_get_Validity_mE4869422758C55C3AEAD4058EA5DE33F20515B83_inline (XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XsdValidatingReader::GetMemberType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdValidatingReader_GetMemberType_m160C7064CFA3EDD992A142C23696FC10B89AFC99 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method) ;
// System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaInfo::get_MemberType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8* XmlSchemaInfo_get_MemberType_m4D8775934A4A9E0BFB886A913151C05237D79CCC_inline (XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* __this, const RuntimeMethod* method) ;
// System.Xml.Schema.XmlSchemaElement System.Xml.Schema.XmlSchemaInfo::get_SchemaElement()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970* XmlSchemaInfo_get_SchemaElement_m9E2ACC794E25FE2D5CC3DC433E8E389DE6934DDB_inline (XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* __this, const RuntimeMethod* method) ;
// System.Xml.Schema.XmlSchemaAttribute System.Xml.Schema.XmlSchemaInfo::get_SchemaAttribute()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F* XmlSchemaInfo_get_SchemaAttribute_m7DF2A831CAFA45AEC510A5C538426410AA7A9A49_inline (XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XsdValidatingReader::ProcessElementEvent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdValidatingReader_ProcessElementEvent_m40A41A70782E55B1D382E05074B3B7D3B7521E32 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Schema.XmlSchemaValidator::ValidateWhitespace(System.Xml.Schema.XmlValueGetter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSchemaValidator_ValidateWhitespace_mB80702282B9ECD2F20A8E2CE93E72D3790619BC6 (XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* __this, XmlValueGetter_tB804924EEE98EA7F63E2B038A3CE3714DA155EB9* ___elementValue0, const RuntimeMethod* method) ;
// System.Void System.Xml.Schema.XmlSchemaValidator::ValidateText(System.Xml.Schema.XmlValueGetter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSchemaValidator_ValidateText_mAFDA1D89FE72244D37356A8954ABF6549544C67E (XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* __this, XmlValueGetter_tB804924EEE98EA7F63E2B038A3CE3714DA155EB9* ___elementValue0, const RuntimeMethod* method) ;
// System.Void System.Xml.XsdValidatingReader::ProcessEndElementEvent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdValidatingReader_ProcessEndElementEvent_m075B59856F29DD9873C3E1CA81DF20C44FB27F26 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XsdValidatingReader::IsXSDRoot(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XsdValidatingReader_IsXSDRoot_mE0C20D5B7ACC607A88043AEDE83A3229D6AFF559 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, String_t* ___localName0, String_t* ___ns1, const RuntimeMethod* method) ;
// System.Xml.Schema.SchemaNames System.Xml.Schema.XmlSchemaSet::GetSchemaNames(System.Xml.XmlNameTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SchemaNames_tF7A45B027D5759AA56D035F5962B4612A6B0902F* XmlSchemaSet_GetSchemaNames_m3B8BB33E94ACD82E95D0D72E2E0098E5EB0F98C1 (XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* __this, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nt0, const RuntimeMethod* method) ;
// System.Void System.Xml.Schema.Parser::.ctor(System.Xml.Schema.SchemaType,System.Xml.XmlNameTable,System.Xml.Schema.SchemaNames,System.Xml.Schema.ValidationEventHandler)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Parser__ctor_mD0856FD6103718FD65B714D40D94187514405DDD (Parser_t5A18E84F88E618D9E803A7768A7765BF17DB2C07* __this, int32_t ___schemaType0, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nameTable1, SchemaNames_tF7A45B027D5759AA56D035F5962B4612A6B0902F* ___schemaNames2, ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* ___eventHandler3, const RuntimeMethod* method) ;
// System.Void System.Xml.Schema.Parser::StartParsing(System.Xml.XmlReader,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Parser_StartParsing_mF36C4EFCEEA4BFBDE0B95288FBA0074FD38ED92D (Parser_t5A18E84F88E618D9E803A7768A7765BF17DB2C07* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, String_t* ___targetNamespace1, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Schema.Parser::ParseReaderNode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Parser_ParseReaderNode_mDE124259DA600588C00200854794274AA5F8946A (Parser_t5A18E84F88E618D9E803A7768A7765BF17DB2C07* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Schema.XmlSchemaValidator::ValidateElement(System.String,System.String,System.Xml.Schema.XmlSchemaInfo,System.String,System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSchemaValidator_ValidateElement_m7F07F23618D0F91BC594DDAB30C1DA8E602F7375 (XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* __this, String_t* ___localName0, String_t* ___namespaceUri1, XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* ___schemaInfo2, String_t* ___xsiType3, String_t* ___xsiNil4, String_t* ___xsiSchemaLocation5, String_t* ___xsiNoNamespaceSchemaLocation6, const RuntimeMethod* method) ;
// System.Void System.Xml.XsdValidatingReader::ValidateAttributes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdValidatingReader_ValidateAttributes_mE729E6CB82F1724CCA8D4190B09CDC0D571681CB (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Schema.XmlSchemaValidator::ValidateEndOfAttributes(System.Xml.Schema.XmlSchemaInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSchemaValidator_ValidateEndOfAttributes_mAF7C1F3E173153067D4807790DC7DBBF204C0FF0 (XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* __this, XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* ___schemaInfo0, const RuntimeMethod* method) ;
// System.Object System.Xml.Schema.XmlSchemaValidator::ValidateEndElement(System.Xml.Schema.XmlSchemaInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSchemaValidator_ValidateEndElement_m643E1751AAD5253C99107E714616A317BFCB44DF (XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* __this, XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* ___schemaInfo0, const RuntimeMethod* method) ;
// System.String System.Xml.XsdValidatingReader::GetOriginalAtomicValueStringOfElement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsdValidatingReader_GetOriginalAtomicValueStringOfElement_mAFDDF8BA2F61A2EFA7A9F7F1033A5A48BFB790B6 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method) ;
// System.Xml.XsdCachingReader System.Xml.XsdValidatingReader::GetCachingReader()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* XsdValidatingReader_GetCachingReader_mE6F54A3681999D682EAE5D628386174D5E198A7D (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method) ;
// System.Xml.Schema.XmlSchemaType System.Xml.Schema.XmlSchemaInfo::get_XmlType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* XmlSchemaInfo_get_XmlType_mD9463B808F9551551B08914C7D69BD0AC499AA87 (XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* __this, const RuntimeMethod* method) ;
// System.Xml.Schema.XmlValueConverter System.Xml.Schema.XmlSchemaType::get_ValueConverter()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlValueConverter_tAB12320D9B3994EBB077CA59A095458E60F3F57E* XmlSchemaType_get_ValueConverter_mCCC5AAC678099B787A16302E74037FC05E0522C8 (XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XsdCachingReader::RecordEndElementNode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdCachingReader_RecordEndElementNode_m1A73002707673122C28F926D30BA5D385CAA52E8 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XsdCachingReader::SetToReplayMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdCachingReader_SetToReplayMode_m7FB04A844F6E68764C1DCF95F422804C3201B580 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, const RuntimeMethod* method) ;
// System.Xml.AttributePSVIInfo System.Xml.XsdValidatingReader::AddAttributePSVI(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* XsdValidatingReader_AddAttributePSVI_m228C486A3F1812D35D12E2459103A0263C13C327 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, int32_t ___attIndex0, const RuntimeMethod* method) ;
// System.Object System.Xml.Schema.XmlSchemaValidator::ValidateAttribute(System.String,System.String,System.Xml.Schema.XmlValueGetter,System.Xml.Schema.XmlSchemaInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSchemaValidator_ValidateAttribute_m66B0CED723BBCA9C5E799F49D208689C64B638E2 (XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* __this, String_t* ___localName0, String_t* ___namespaceUri1, XmlValueGetter_tB804924EEE98EA7F63E2B038A3CE3714DA155EB9* ___attributeValue2, XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* ___schemaInfo3, const RuntimeMethod* method) ;
// System.Void System.Xml.Schema.XmlSchemaInfo::set_Validity(System.Xml.Schema.XmlSchemaValidity)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlSchemaInfo_set_Validity_m21F774F33B817B448E04E511C20E746A107C20FD_inline (XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.Schema.XmlSchemaValidator::GetUnspecifiedDefaultAttributes(System.Collections.ArrayList,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSchemaValidator_GetUnspecifiedDefaultAttributes_mA4EB22BD4B62641581B86520F536FDC7AE05434F (XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* __this, ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___defaultAttributes0, bool ___createNodeData1, const RuntimeMethod* method) ;
// System.Void System.Xml.ValidateNames::SplitQName(System.String,System.String&,System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidateNames_SplitQName_m808CCD9614317080CFDC44BB0DE78CA077847498 (String_t* ___name0, String_t** ___prefix1, String_t** ___lname2, const RuntimeMethod* method) ;
// System.Xml.AttributePSVIInfo System.Xml.XsdValidatingReader::GetAttributePSVI(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* XsdValidatingReader_GetAttributePSVI_m4CE0E39724E5B0A517E1B403E16C617B7923A486 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, String_t* ___localName0, String_t* ___ns1, const RuntimeMethod* method) ;
// System.Void System.Xml.AttributePSVIInfo::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributePSVIInfo_Reset_m6BCB21E222189F063C0D2A7ECCB6D72AC9D086AA (AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.AttributePSVIInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributePSVIInfo__ctor_m7F80C7485761C2944605FA5E7184617318FE7034 (AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* __this, const RuntimeMethod* method) ;
// System.Xml.Schema.SchemaType System.Xml.Schema.Parser::FinishParsing()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Parser_FinishParsing_m06B8B06E4ABA5BE31AE936826C3E750F84FFC69F_inline (Parser_t5A18E84F88E618D9E803A7768A7765BF17DB2C07* __this, const RuntimeMethod* method) ;
// System.Xml.Schema.XmlSchema System.Xml.Schema.Parser::get_XmlSchema()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlSchema_t5C9506D00418BF5FD524254D0C6C405C620C941D* Parser_get_XmlSchema_mD5A4C6BA4B18957DA23830385DEAD714D09A9D4B_inline (Parser_t5A18E84F88E618D9E803A7768A7765BF17DB2C07* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Schema.XmlSchemaValidator::AddSchema(System.Xml.Schema.XmlSchema)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSchemaValidator_AddSchema_m747346B577999B374C38B98B0AE6A6306BF4A6CE (XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* __this, XmlSchema_t5C9506D00418BF5FD524254D0C6C405C620C941D* ___schema0, const RuntimeMethod* method) ;
// System.Void System.Xml.XsdCachingReader::SwitchTextNodeAndEndElement(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdCachingReader_SwitchTextNodeAndEndElement_m83841B62F3A33A5227D98E2597A544A846D15A8A (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, String_t* ___textValue0, String_t* ___originalStringValue1, const RuntimeMethod* method) ;
// System.Boolean System.Xml.Schema.XmlSchemaInfo::get_HasDefaultValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlSchemaInfo_get_HasDefaultValue_mA1B5032979D2D92E35B22811948D4D2F8C967DAA (XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XsdValidatingReader::ReadAheadForMemberType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdValidatingReader_ReadAheadForMemberType_m07A8DAC896606D650968F8AC04110BD30A6A9F5D (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.CachingEventHandler::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CachingEventHandler__ctor_mE381B83D69016CB82FEEBF79B9D911695986C7E5 (CachingEventHandler_t3531836C36E56CCAAB45B3B7DA1B4F94742FE74E* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Void System.Xml.XsdCachingReader::.ctor(System.Xml.XmlReader,System.Xml.IXmlLineInfo,System.Xml.CachingEventHandler)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdCachingReader__ctor_mA5C3DBB1AE966E01E356B395EF98F22FA8D4780F (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, RuntimeObject* ___lineInfo1, CachingEventHandler_t3531836C36E56CCAAB45B3B7DA1B4F94742FE74E* ___handlerMethod2, const RuntimeMethod* method) ;
// System.Void System.Xml.XsdCachingReader::Reset(System.Xml.XmlReader)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdCachingReader_Reset_m191DEFA89552471F15D279F6DB46B725E3D68483 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, const RuntimeMethod* method) ;
// System.Xml.XmlReader System.Xml.XsdCachingReader::GetCoreReader()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* XsdCachingReader_GetCoreReader_m96B2B679BBB13A94A254F003422ED29780C99431_inline (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, const RuntimeMethod* method) ;
// System.Xml.IXmlLineInfo System.Xml.XsdCachingReader::GetLineInfo()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* XsdCachingReader_GetLineInfo_m26C8F60794137010483127A2344B5456857FBEA1_inline (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, const RuntimeMethod* method) ;
// System.String System.Xml.Schema.XmlSchemaElement::get_DefaultValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlSchemaElement_get_DefaultValue_mA6F17331F4A7702DE9EB19DE943E43A3EF564766_inline (XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970* __this, const RuntimeMethod* method) ;
// System.String System.Xml.Schema.XmlSchemaElement::get_FixedValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlSchemaElement_get_FixedValue_mE6E6A8DE76B5B1D53AEBA9A683688D8462D22CE7_inline (XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970* __this, const RuntimeMethod* method) ;
// System.String System.Xml.Schema.XmlSchemaValidator::GetConcatenatedValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlSchemaValidator_GetConcatenatedValue_mA176D71D78B7C8968D619222BAB21972DAF12111 (XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* __this, const RuntimeMethod* method) ;
// System.Xml.XmlNameTable System.Xml.XmlDocument::get_NameTable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* XmlDocument_get_NameTable_m4B913865A24AEA917172F75CBDCE94C81CCB7E2C (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) ;
// System.Int32 System.Xml.XmlName::GetHashCode(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlName_GetHashCode_m972577ACE7EF83D4ADE98E056F1A05DD11A789F1 (String_t* ___name0, const RuntimeMethod* method) ;
// System.Int32 System.Xml.XmlName::get_HashCode()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlName_get_HashCode_m329A9FEAF3BDEAA5F1F40CB84F7E51E1BDE58B2D_inline (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, const RuntimeMethod* method) ;
// System.String System.Xml.XmlName::get_LocalName()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, const RuntimeMethod* method) ;
// System.Boolean System.String::Equals(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D (String_t* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.String System.Xml.XmlName::get_Prefix()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlName_get_Prefix_m42E3E78749764ECBE9586AFC0FC3EBFD2B7A2E4E_inline (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, const RuntimeMethod* method) ;
// System.String System.Xml.XmlName::get_NamespaceURI()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlName_get_NamespaceURI_mCF07F0E78CAF17DDF53DD8CD44C5D415B4E010D1_inline (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, const RuntimeMethod* method) ;
// System.Xml.XmlName System.Xml.XmlName::Create(System.String,System.String,System.String,System.Int32,System.Xml.XmlDocument,System.Xml.XmlName,System.Xml.Schema.IXmlSchemaInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* XmlName_Create_mC2946590436F4453D0E49D9DA15D12507BD47C12 (String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, int32_t ___hashCode3, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___ownerDoc4, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___next5, RuntimeObject* ___schemaInfo6, const RuntimeMethod* method) ;
// System.Void System.Xml.DomNameTable::Grow()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DomNameTable_Grow_m6D16497A6E2D1C44AB174DA56A974A7E3DDDE487 (DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlNode::.ctor(System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNode__ctor_m4EBED07EBE4C8D8191BE58A23594E381A8E43DCA (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc0, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlDocument::get_IsLoading()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlDocument_get_IsLoading_mD97F2D54DE1BD3B4F8B496F4D8D31C061FA8A52D_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlDocument::CheckName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_CheckName_m8F3B57903F80A4309ACAF9C301ABA06B63702CA5 (String_t* ___name0, 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.ArgumentException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Xml.XmlName System.Xml.XmlDocument::AddAttrXmlName(System.String,System.String,System.String,System.Xml.Schema.IXmlSchemaInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* XmlDocument_AddAttrXmlName_mB6D4F6DA50FBE350ABAC30CD5CE97D981506BB28 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___namespaceURI2, RuntimeObject* ___schemaInfo3, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlAttribute::.ctor(System.Xml.XmlName,System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttribute__ctor_m5043E9D85560FDFE80DED6438F97110608F1393B (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___name0, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc1, const RuntimeMethod* method) ;
// System.String System.Xml.XmlName::get_Name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlName_get_Name_m77B33DD36549E6E3E728EA1AD3325E339EC30435 (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, const RuntimeMethod* method) ;
// System.Xml.XmlDocument System.Xml.XmlName::get_OwnerDocument()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* XmlName_get_OwnerDocument_m330FA0574F04486B56352FA1E5F4336890C02A0C_inline (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlAttribute::PrepareOwnerElementInElementIdAttrMap()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAttribute_PrepareOwnerElementInElementIdAttrMap_m93CEBD56F06BD0F84212A081358EBB5E9453DA18 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method) ;
// System.String System.Xml.XmlNode::get_InnerText()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlNode_get_InnerText_mC66D119E27E20F4C1E473CB76C8209CDA7262C8D (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlNode::set_InnerText(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNode_set_InnerText_mDC4B982D0144C00BCC66CB0A3AE350712B16841D (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlAttribute::ResetOwnerElementInElementIdAttrMap(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttribute_ResetOwnerElementInElementIdAttrMap_m054D1FAF550A1B6DC9E061F3F20008686D6F143F (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, String_t* ___oldInnerText0, const RuntimeMethod* method) ;
// System.Xml.Schema.SchemaInfo System.Xml.XmlDocument::get_DtdSchemaInfo()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* XmlDocument_get_DtdSchemaInfo_mF52E9F32AB9D1914DBC6D91A8277AE843B6E1E6E_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlAttributeCollection::PrepareParentInElementIdAttrMap(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAttributeCollection_PrepareParentInElementIdAttrMap_m2E7B9A4254641950851BE28E96829160EEAABA04 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, String_t* ___attrPrefix0, String_t* ___attrLocalName1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlAttributeCollection::ResetParentInElementIdAttrMap(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributeCollection_ResetParentInElementIdAttrMap_m9E06B8B75D985035BA0C9E43A398206B8E7F59FD (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, String_t* ___oldVal0, String_t* ___newVal1, const RuntimeMethod* method) ;
// System.Xml.XmlNodeChangedEventArgs System.Xml.XmlDocument::GetInsertEventArgsForLoad(System.Xml.XmlNode,System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* XmlDocument_GetInsertEventArgsForLoad_mC008CD74A188F1B0ECBCFFBFD99A5F7B3DAB2661 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___node0, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___newParent1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlNode::NestTextNodes(System.Xml.XmlNode,System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNode_NestTextNodes_mA22ADE95FF5054D1DE4DC181E13E221F90F4B9A4 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___prevNode0, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___nextNode1, const RuntimeMethod* method) ;
// System.Xml.XmlNode System.Xml.XmlNode::InsertBefore(System.Xml.XmlNode,System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlNode_InsertBefore_m30BBB57DC302571F5AD7A73E2519E8AECBDE6085 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___newChild0, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___refChild1, const RuntimeMethod* method) ;
// System.Xml.XmlNode System.Xml.XmlNode::InsertAfter(System.Xml.XmlNode,System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlNode_InsertAfter_m1D0C8DF1B1E3ACB7C7773C1BF626259E04C3E130 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___newChild0, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___refChild1, const RuntimeMethod* method) ;
// System.Xml.XmlNode System.Xml.XmlNode::RemoveChild(System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlNode_RemoveChild_mC3FD98E0F9D7CF77B7CA309E39E67CB5128EFB6D (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___oldChild0, const RuntimeMethod* method) ;
// System.Xml.XmlNode System.Xml.XmlNode::PrependChild(System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlNode_PrependChild_m918DD10C201557A6BB4D291544B8250F836C2FC9 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___newChild0, const RuntimeMethod* method) ;
// System.Xml.XmlNode System.Xml.XmlNode::AppendChild(System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlNode_AppendChild_mABBDB6DB312AE2C3D643F91CA400745ED4317E61 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___newChild0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlLoader::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader__ctor_m388331A1FB63D316FDDF4D7312B6977BFEC1A050 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlLoader::LoadInnerXmlAttribute(System.Xml.XmlAttribute,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_LoadInnerXmlAttribute_mBCE3F2F2B11410937B71BA993E5E1151BE4B6C98 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___node0, String_t* ___innerxmltext1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlNamedNodeMap::.ctor(System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNamedNodeMap__ctor_mA91F36D1CB05380C6F5E60F31062962B6DE2FF08 (XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___parent0, const RuntimeMethod* method) ;
// System.Object System.Xml.XmlNamedNodeMap/SmallXmlNodeList::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SmallXmlNodeList_get_Item_mFE828A47A297981D034EFC9244E53B3D34FC9576 (SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Void System.IndexOutOfRangeException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IndexOutOfRangeException__ctor_mFD06819F05B815BE2D6E826D4E04F4C449D0A425 (IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Int32 System.Xml.XmlAttribute::get_LocalNameHash()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlAttribute_get_LocalNameHash_m09745CA0C4CEA4D07864D977FF90DEBD43C0AE46 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method) ;
// System.Int32 System.Xml.XmlNamedNodeMap/SmallXmlNodeList::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SmallXmlNodeList_get_Count_m79F61C89FC8ABD73BCB56938310461EFF1DF14BF (SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* __this, const RuntimeMethod* method) ;
// System.Int32 System.Xml.XmlNamedNodeMap::FindNodeOffset(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlNamedNodeMap_FindNodeOffset_mC74472DEDF90B693B1BB71E3B136CD32854E0A66 (XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* __this, String_t* ___localName0, String_t* ___namespaceURI1, const RuntimeMethod* method) ;
// System.Xml.XmlAttribute System.Xml.XmlAttributeCollection::InternalAppendAttribute(System.Xml.XmlAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlAttributeCollection_InternalAppendAttribute_m4F65B9C065CD96947359F97184962FD480989BCB (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___node0, const RuntimeMethod* method) ;
// System.Xml.XmlNode System.Xml.XmlNamedNodeMap::RemoveNodeAt(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlNamedNodeMap_RemoveNodeAt_mA1F6B64903412EDC18F19D1CCE1D890207C6FEF3 (XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* __this, int32_t ___i0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlAttributeCollection::Detach(System.Xml.XmlAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributeCollection_Detach_m1CF27E782F026A299CDBFB3CFCA08F4B615DF4B0 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___attr0, const RuntimeMethod* method) ;
// System.Xml.XmlNode System.Xml.XmlNamedNodeMap::AddNodeForLoad(System.Xml.XmlNode,System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlNamedNodeMap_AddNodeForLoad_m95A9C1624ACF142E0FD29FC4B572A750F5D600AF (XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___node0, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlAttributeCollection::InsertParentIntoElementIdAttrMap(System.Xml.XmlAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributeCollection_InsertParentIntoElementIdAttrMap_mE1B11EE0246D167AA4CB81F8BC7C0D5C00DFFBB9 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___attr0, const RuntimeMethod* method) ;
// System.Xml.XmlAttribute System.Xml.XmlAttributeCollection::RemoveAt(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlAttributeCollection_RemoveAt_m583E3956863E0E138940CEA8231B8491743785F0 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, int32_t ___i0, const RuntimeMethod* method) ;
// System.Void System.Array::SetValue(System.Object,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_mE9507B366ED84E91E92BF32649D36916F96C67B8 (RuntimeArray* __this, RuntimeObject* ___value0, int32_t ___index1, const RuntimeMethod* method) ;
// System.Int32 System.Xml.XmlNamedNodeMap::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlNamedNodeMap_get_Count_m383C4A91707F8FE7D905507CD35A043A5A7CFF29 (XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* __this, const RuntimeMethod* method) ;
// System.Int32 System.Xml.XmlAttributeCollection::RemoveDuplicateAttribute(System.Xml.XmlAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlAttributeCollection_RemoveDuplicateAttribute_m22D27663607A8A33332FA60A4FE2A0D122AE3F48 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___attr0, const RuntimeMethod* method) ;
// System.Xml.XmlNode System.Xml.XmlNamedNodeMap::AddNode(System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlNamedNodeMap_AddNode_m8312C3D9AAF475E11F679C7165079360BD04FA6D (XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___node0, const RuntimeMethod* method) ;
// System.Xml.XmlNode System.Xml.XmlNamedNodeMap::InsertNodeAt(System.Int32,System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlNamedNodeMap_InsertNodeAt_m72074E17CA4EC55CE99997C5BC15681BECBA0ACE (XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* __this, int32_t ___i0, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___node1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlAttributeCollection::RemoveParentFromElementIdAttrMap(System.Xml.XmlAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributeCollection_RemoveParentFromElementIdAttrMap_m40FD15B914F888F0EB42B6E35AD9DD95BE5C28BE (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___attr0, const RuntimeMethod* method) ;
// System.Xml.XmlAttribute System.Xml.XmlDocument::GetDefaultAttribute(System.Xml.XmlElement,System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlDocument_GetDefaultAttribute_m09254F3903D8971371770B085DEB0C8E4B879D96 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___elem0, String_t* ___attrPrefix1, String_t* ___attrLocalname2, String_t* ___attrNamespaceURI3, const RuntimeMethod* method) ;
// System.Xml.XmlAttribute System.Xml.XmlAttributeCollection::Remove(System.Xml.XmlAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlAttributeCollection_Remove_m9E8FF71B36C641EAB4EE1F08F6344DFB1E380235 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___node0, const RuntimeMethod* method) ;
// System.Xml.XmlName System.Xml.XmlElement::get_XmlName()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* XmlElement_get_XmlName_mA93482D1053CABDD02D7E3B23EBA56F74904101D_inline (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method) ;
// System.Xml.XmlName System.Xml.XmlDocument::GetIDInfoByElement(System.Xml.XmlName)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* XmlDocument_GetIDInfoByElement_mF4F7DDBFA3126D06D4AA526B1536BEC20D677AC8 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___eleName0, const RuntimeMethod* method) ;
// System.Xml.XmlName System.Xml.XmlAttribute::get_XmlName()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* XmlAttribute_get_XmlName_m27554E8E37DD8255E54A68102CE270316933FFB9_inline (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlDocument::AddElementWithId(System.String,System.Xml.XmlElement)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_AddElementWithId_m179458DD48014AD4C76126306A42F49A98433187 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___id0, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___elem1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlDocument::RemoveElementWithId(System.String,System.Xml.XmlElement)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_RemoveElementWithId_mD930DEA6A023E00A7D376D2F5B7D5283414ECE03 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___id0, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___elem1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlCharacterData::.ctor(System.String,System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlCharacterData__ctor_m8B84C0BD8FF7329F4C5190230FA2495D808B34AF (XmlCharacterData_t95604E2FDB152E89A58F9D51414A2903012E758B* __this, String_t* ___data0, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlLinkedNode::.ctor(System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLinkedNode__ctor_mBAF93AD97DBA998E16940918D8F7EF3E585C7633 (XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* __this, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc0, 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.Boolean System.Xml.XmlChildEnumerator::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlChildEnumerator_MoveNext_m038B637C00AC0482CAD4E35995F2CF2AE8E3D556 (XmlChildEnumerator_tDD03B83EAA250AB86DFF4B53C1430DA942E85939* __this, const RuntimeMethod* method) ;
// System.Xml.XmlNode System.Xml.XmlChildEnumerator::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlChildEnumerator_get_Current_m149208EFC92AEDC42F82839102B3D5F017DA4C46 (XmlChildEnumerator_tDD03B83EAA250AB86DFF4B53C1430DA942E85939* __this, const RuntimeMethod* method) ;
// System.Void System.InvalidOperationException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlNodeList::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNodeList__ctor_m29940F85BF8D20E6FFB9732648DC6DAD10539BD3 (XmlNodeList_tFC0CEED3A006BEDF6A1A420F7CB55AC33E9B7F85* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlChildEnumerator::.ctor(System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlChildEnumerator__ctor_mC51E8B709CB2FCB079D44B180D5EF3DF9DBC3671 (XmlChildEnumerator_tDD03B83EAA250AB86DFF4B53C1430DA942E85939* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___container0, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlDeclaration::IsValidXmlVersion(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDeclaration_IsValidXmlVersion_m215F8DC273DFBBD9077EF86BEAB9C3EC3C590684 (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, String_t* ___ver0, 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.XmlDeclaration::set_Encoding(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDeclaration_set_Encoding_m743178C17460B204CFFEFFC0960A77E4A6289A8B (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlDeclaration::set_Standalone(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDeclaration_set_Standalone_m867389C9FBF0064E3FDA7EBDEAD4CF30E84F49C2 (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlDeclaration::set_Version(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlDeclaration_set_Version_m0B2CCCDE1930526B6429925E8139340ED17C26D0_inline (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.String System.Xml.XmlDeclaration::get_Version()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlDeclaration_get_Version_m50261F1E46B645E69A99504F494FFD3BF915E633_inline (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, const RuntimeMethod* method) ;
// System.String System.Xml.XmlDeclaration::get_Encoding()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlDeclaration_get_Encoding_m09D89DCD8457C62A6E49B9506A65A271DDBD011F_inline (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, const RuntimeMethod* method) ;
// System.String System.Xml.XmlDeclaration::get_Standalone()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlDeclaration_get_Standalone_m46CC1833EE3C478318FF865E98A6899E440DDC6C_inline (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlLoader::ParseXmlDeclarationValue(System.String,System.String&,System.String&,System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_ParseXmlDeclarationValue_m54F41E02A882770049D8D02C68338A7B7AF9ABA6 (String_t* ___strValue0, String_t** ___version1, String_t** ___encoding2, String_t** ___standalone3, 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.Boolean System.Xml.XmlCharType::IsOnlyDigits(System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlCharType_IsOnlyDigits_m65AE71D9278E3F04A6625595F8DC3D0749D79DCC (String_t* ___str0, int32_t ___startPos1, int32_t ___len2, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlImplementation::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlImplementation__ctor_mEBE20EB37760F63620D9DFAEF3341D2F4E138DC9 (XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlDocument::.ctor(System.Xml.XmlImplementation)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument__ctor_m90653BB0CD6863B4328A3B32B72ED4383C97D1A8 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* ___imp0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlImplementation::.ctor(System.Xml.XmlNameTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlImplementation__ctor_mE5899D3C7EA30F9EDB19D07211588DB4FEDEC04D (XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* __this, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nt0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlNode::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNode__ctor_m48EA7E8280259972A9AE46D0220C05CEA99E9350 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.DomNameTable::.ctor(System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DomNameTable__ctor_m5A5BC654B5068463A5363A4C5F944DBA31D68C29 (DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45* __this, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___document0, 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.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.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.Xml.XmlName System.Xml.DomNameTable::AddName(System.String,System.String,System.String,System.Xml.Schema.IXmlSchemaInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* DomNameTable_AddName_m5EADC9D7600CB5AB4285BF18DCA911E042C7F4C2 (DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, RuntimeObject* ___schemaInfo3, const RuntimeMethod* method) ;
// System.Xml.XmlName System.Xml.DomNameTable::GetName(System.String,System.String,System.String,System.Xml.Schema.IXmlSchemaInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* DomNameTable_GetName_mCDD057C4F21297AF60F4C3E34DFB4A864067AD8C (DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, RuntimeObject* ___schemaInfo3, const RuntimeMethod* method) ;
// System.Xml.XmlName System.Xml.XmlDocument::AddXmlName(System.String,System.String,System.String,System.Xml.Schema.IXmlSchemaInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* XmlDocument_AddXmlName_m0B7D502F9AA6D43E0743106B90F9CE10F459A916 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___namespaceURI2, RuntimeObject* ___schemaInfo3, const RuntimeMethod* method) ;
// System.Void System.Collections.Hashtable::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_mD7E2F1EB1BFD683186ECD6EDBE1708AF35C3A87D (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, const RuntimeMethod* method) ;
// System.Xml.XmlName System.Xml.XmlDocument::GetXmlName(System.String,System.String,System.String,System.Xml.Schema.IXmlSchemaInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* XmlDocument_GetXmlName_m7145F5B6BE8E6CDB52918C96324CC489569932CB (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___namespaceURI2, RuntimeObject* ___schemaInfo3, const RuntimeMethod* method) ;
// System.Xml.XmlName System.Xml.XmlDocument::GetIDInfoByElement_(System.Xml.XmlName)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* XmlDocument_GetIDInfoByElement__mB6858B03EFABCE5F79DBACEF671D8A76948FA086 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___eleName0, const RuntimeMethod* method) ;
// System.Void System.WeakReference::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WeakReference__ctor_m5F9E2F970CD85965A003C0B37ABDBFAA1F5CF241 (WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* __this, RuntimeObject* ___target0, const RuntimeMethod* method) ;
// System.WeakReference System.Xml.XmlDocument::GetElement(System.Collections.ArrayList,System.Xml.XmlElement)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* XmlDocument_GetElement_mC0411EE67C03B9FD52F41B70C7320E51A67C2463 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___elementList0, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___elem1, const RuntimeMethod* method) ;
// System.Xml.XmlImplementation System.Xml.XmlDocument::get_Implementation()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* XmlDocument_get_Implementation_m627A29B6D4CA09108F494BBE9AE070155CA6AE10_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlDocument::SetBaseURI(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlDocument_SetBaseURI_mE44F99B7DFBF6C63E7041125703303F9146C146E_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___inBaseURI0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlDocument::ImportChildren(System.Xml.XmlNode,System.Xml.XmlNode,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_ImportChildren_mAB48DB0FA4C4964B00F4EC316E3942CE7AAB092B (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___fromNode0, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___toNode1, bool ___deep2, const RuntimeMethod* method) ;
// System.Void System.Security.NamedPermissionSet::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NamedPermissionSet__ctor_m1D5A76228715492C38EE3D9A2ED3169A8BD8D35C (NamedPermissionSet_tE1762DB096B3A45291DA354EC7DD1C5A1F74B97C* __this, String_t* ___name0, const RuntimeMethod* method) ;
// System.Void System.Security.PermissionSet::Demand()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PermissionSet_Demand_m55BF40577827F784ECC9F488DFD21EC44CB4F7A3 (PermissionSet_t1E1A3526A8CB8CF06B47C292D349FC06F93A0240* __this, const RuntimeMethod* method) ;
// System.Void System.Security.SecurityException::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SecurityException__ctor_m391348DD238BF0A84BA957ADB363F74EB7CF3059 (SecurityException_t025CB4C23107E67E07CF085826B40EDE72F8165C* __this, String_t* ___message0, Exception_t* ___inner1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlDocumentType::set_DtdSchemaInfo(System.Xml.Schema.SchemaInfo)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlDocumentType_set_DtdSchemaInfo_m6E419933465D42DAB30AD7C6FFF7ACCC6D78A4E6_inline (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* ___value0, const RuntimeMethod* method) ;
// System.Xml.XmlElement System.Xml.XmlDocument::get_DocumentElement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* XmlDocument_get_DocumentElement_mE87523DCD2D59F8BA6175DBA01D70133E202A2C8 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlDocument::HasNodeTypeInPrevSiblings(System.Xml.XmlNodeType,System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocument_HasNodeTypeInPrevSiblings_m62FDB4009BEF04A3D1A291575A005966E0E21AC3 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, int32_t ___nt0, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___refNode1, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlDocument::HasNodeTypeInNextSiblings(System.Xml.XmlNodeType,System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocument_HasNodeTypeInNextSiblings_mD65FA58F532B9875E1BB7AE149C98E608BAE44A4 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, int32_t ___nt0, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___refNode1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlNode::SplitName(System.String,System.String&,System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNode_SplitName_mEE1283C3D3F04DE2E00FC693046D9297678F4571 (String_t* ___name0, String_t** ___prefix1, String_t** ___localName2, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlDocument::SetDefaultNamespace(System.String,System.String,System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_SetDefaultNamespace_m29601B584036272B65DB2F31749975711A68E245 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___prefix0, String_t* ___localName1, String_t** ___namespaceURI2, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlCDataSection::.ctor(System.String,System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlCDataSection__ctor_m19CEC86EA9EFC8153A1293493E0B3E9EF89BE2BD (XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA* __this, String_t* ___data0, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlComment::.ctor(System.String,System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlComment__ctor_m74C0E3B050353E2B32B5218DF01F8EB8874BD819 (XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9* __this, String_t* ___comment0, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlDocumentType::.ctor(System.String,System.String,System.String,System.String,System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocumentType__ctor_m80A9D98B728A54F81611F785B3C6CB5E29D47344 (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, String_t* ___name0, String_t* ___publicId1, String_t* ___systemId2, String_t* ___internalSubset3, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc4, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlDocumentFragment::.ctor(System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocumentFragment__ctor_m5DFF7FEE2576ED62871EDD2EE4B03279630D1BC2 (XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* __this, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___ownerDocument0, const RuntimeMethod* method) ;
// System.Xml.Schema.SchemaElementDecl System.Xml.XmlDocument::GetSchemaElementDecl(System.Xml.XmlElement)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* XmlDocument_GetSchemaElementDecl_m8096E8CA8850D889EF774A9DC2596486DFBA00A6 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___elem0, const RuntimeMethod* method) ;
// System.Collections.Generic.Dictionary`2<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaAttDef> System.Xml.Schema.SchemaElementDecl::get_AttDefs()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Dictionary_2_tB85C1B2FFF985BA01AD2B7199C083B43C1476CC1* SchemaElementDecl_get_AttDefs_m2E3114DFAB8D978CBFAA6E31C2CD18A9AA9DAC50_inline (SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* __this, const RuntimeMethod* method) ;
// System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaAttDef>::GetEnumerator()
inline Enumerator_tAFD022FCAA040EAEC1263E2EF82A45C956378717 Dictionary_2_GetEnumerator_mAFB53EF60E7055593407621A31F67B315FB25F80 (Dictionary_2_tB85C1B2FFF985BA01AD2B7199C083B43C1476CC1* __this, const RuntimeMethod* method)
{
return (( Enumerator_tAFD022FCAA040EAEC1263E2EF82A45C956378717 (*) (Dictionary_2_tB85C1B2FFF985BA01AD2B7199C083B43C1476CC1*, const RuntimeMethod*))Dictionary_2_GetEnumerator_m52AB12790B0B9B46B1DFB1F861C9DBEAB07C1FDA_gshared)(__this, method);
}
// System.Xml.Schema.SchemaDeclBase/Use System.Xml.Schema.SchemaDeclBase::get_Presence()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SchemaDeclBase_get_Presence_mCF2610A186758B71CAFF2FC2586D9B604C2AE539_inline (SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B* __this, const RuntimeMethod* method) ;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaDeclBase::get_Name()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* SchemaDeclBase_get_Name_m013DF0DD721FE902399C2DF4D2E6F8DAD50ECFAE_inline (SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B* __this, const RuntimeMethod* method) ;
// System.String System.Xml.XmlQualifiedName::get_Name()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* __this, const RuntimeMethod* method) ;
// System.Xml.Schema.SchemaType System.Xml.Schema.SchemaInfo::get_SchemaType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SchemaInfo_get_SchemaType_m44BE9221A63C4D13AE45A2054A875B533518B0FC_inline (SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* __this, const RuntimeMethod* method) ;
// System.String System.Xml.XmlQualifiedName::get_Namespace()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* __this, const RuntimeMethod* method) ;
// System.String System.Xml.Schema.SchemaDeclBase::get_Prefix()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SchemaDeclBase_get_Prefix_mE72A285F12958A0C40F8CDEDA2838B3A09233455 (SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B* __this, const RuntimeMethod* method) ;
// System.Xml.XmlAttribute System.Xml.XmlDocument::PrepareDefaultAttribute(System.Xml.Schema.SchemaAttDef,System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlDocument_PrepareDefaultAttribute_mB209B5E427A134931A258026446829B816E9A526 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* ___attdef0, String_t* ___attrPrefix1, String_t* ___attrLocalname2, String_t* ___attrNamespaceURI3, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlQualifiedName::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlQualifiedName__ctor_m65632114A1726D9FAD0338BC2A8C28BB9D262C7B (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* __this, String_t* ___name0, String_t* ___ns1, const RuntimeMethod* method) ;
// System.Collections.Generic.Dictionary`2<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaElementDecl> System.Xml.Schema.SchemaInfo::get_ElementDecls()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A* SchemaInfo_get_ElementDecls_m238E5681BECA397E7010F7BEFBAC2D0FBEC43BD7_inline (SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* __this, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.Dictionary`2<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaElementDecl>::TryGetValue(TKey,TValue&)
inline bool Dictionary_2_TryGetValue_m15B366BD9B5A92299439677E2C60B2B46E07157A (Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___key0, SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD** ___value1, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A*, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*, SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD**, const RuntimeMethod*))Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared)(__this, ___key0, ___value1, method);
}
// System.String System.Xml.Schema.SchemaDeclBase::get_DefaultValueRaw()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SchemaDeclBase_get_DefaultValueRaw_m794A7DCEA1AE2B3B4D71DB45B913FCAA16657936 (SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlUnspecifiedAttribute::SetSpecified(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlUnspecifiedAttribute_SetSpecified_m1CF67FF3E90E62DC5B0983B8DE91B6E95228509B_inline (XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* __this, bool ___f0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlEntityReference::.ctor(System.String,System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEntityReference__ctor_m7AAF0A5672B04060ECEAFAB3DF7E93DA8A7B6A94 (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, String_t* ___name0, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlProcessingInstruction::.ctor(System.String,System.String,System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlProcessingInstruction__ctor_m80AB71B3DDC0E1164705B676AD06037ACEB2FD67 (XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3* __this, String_t* ___target0, String_t* ___data1, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc2, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlDeclaration::.ctor(System.String,System.String,System.String,System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDeclaration__ctor_mBAEA7104B9DA9F3DAE632B9063BF96BF6A40B116 (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, String_t* ___version0, String_t* ___encoding1, String_t* ___standalone2, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc3, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlText::.ctor(System.String,System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlText__ctor_m8FFB8DDBB2C9013F10FD94A1573DCF6A2F104059 (XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* __this, String_t* ___strData0, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlSignificantWhitespace::.ctor(System.String,System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSignificantWhitespace__ctor_mCE8AE4FC827464B5A5A54191D5D62E2AF41E078F (XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE* __this, String_t* ___strData0, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlWhitespace::.ctor(System.String,System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWhitespace__ctor_m95E6CA1AFEECB5C1B3EDDAA039864BDF315FD0AE (XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24* __this, String_t* ___strData0, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlDocument::ImportAttributes(System.Xml.XmlNode,System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_ImportAttributes_mD5D3157004F6C1B559E3FFF09F2D5FBBF916CC0A (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___fromElem0, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___toElem1, const RuntimeMethod* method) ;
// System.String System.Xml.XmlDocumentType::get_PublicId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlDocumentType_get_PublicId_m9E81FAF2D0AA9DC847D118813CBEB085F0CE1955_inline (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method) ;
// System.String System.Xml.XmlDocumentType::get_SystemId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlDocumentType_get_SystemId_m17B225C509C0F5A4ECBB838AA81D15DED4016909_inline (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method) ;
// System.String System.Xml.XmlDocumentType::get_InternalSubset()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlDocumentType_get_InternalSubset_mBD8D585ED0401EE1FC02F6FD5445E2109B083FEF_inline (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method) ;
// System.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.Enum::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741 (RuntimeObject* __this, const RuntimeMethod* method) ;
// System.String System.String::Format(System.IFormatProvider,System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m75580778A544C5C8DA0F2ACEE7972A2AC944063A (RuntimeObject* ___provider0, String_t* ___format1, RuntimeObject* ___arg02, const RuntimeMethod* method) ;
// System.Xml.XmlAttribute System.Xml.XmlAttributeCollection::get_ItemOf(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlAttributeCollection_get_ItemOf_m8F968C39C03DFEB9998B2122F4A26B76B1DB2EDB (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, int32_t ___i0, const RuntimeMethod* method) ;
// System.Xml.XmlNode System.Xml.XmlDocument::ImportNodeInternal(System.Xml.XmlNode,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlDocument_ImportNodeInternal_m7E70DD674E7D0CB39DC6F14B5E806AE284E9C17B (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___node0, bool ___deep1, const RuntimeMethod* method) ;
// System.Xml.XmlNameTable System.Xml.XmlImplementation::get_NameTable()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* XmlImplementation_get_NameTable_m8951702F59619310BD4A9528D2FF471352518CDF_inline (XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlUnspecifiedAttribute::.ctor(System.String,System.String,System.String,System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUnspecifiedAttribute__ctor_m44D3E93A1FE83F8B631B4BE61CC2EA76865E36A6 (XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___namespaceURI2, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc3, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlElement::.ctor(System.Xml.XmlName,System.Boolean,System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElement__ctor_m44A8D5841FC2F1A5ACC6A03DD0ACA9AB37300588 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___name0, bool ___empty1, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc2, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlDocument::AddDefaultAttributes(System.Xml.XmlElement)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_AddDefaultAttributes_mD1EF2D680D9891D533CBB7493E080240528F108C (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___elem0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlDocument::set_IsLoading(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Xml.XmlNode System.Xml.XmlLoader::ReadCurrentNode(System.Xml.XmlDocument,System.Xml.XmlReader)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlLoader_ReadCurrentNode_m9E1E110A0B31C77EC53393D8C51B497A2CD79241 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc0, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextReader::set_XmlValidatingReaderCompatibilityMode(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReader_set_XmlValidatingReaderCompatibilityMode_m485400A0FF8B647B0BA4D98CB46354AC258B7C00 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextReader::set_EntityHandling(System.Xml.EntityHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReader_set_EntityHandling_m577ABFEC373C39B83965619901EF1492C950C3BF (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlDocument::get_HasSetResolver()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlDocument_get_HasSetResolver_m7CBB11C7E27D95CD697F177B965CEB2E1E71358D_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) ;
// System.Xml.XmlResolver System.Xml.XmlDocument::GetResolver()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* XmlDocument_GetResolver_m0B1F443F2DF5510E0733052D42BC984CB83F9119_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextReader::set_XmlResolver(System.Xml.XmlResolver)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReader_set_XmlResolver_mF617E3EC08480FE4693FF9A473BB9528126FCCDA (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlLoader::Load(System.Xml.XmlDocument,System.Xml.XmlReader,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_Load_m3B85C836D8C6DE323B85E868DED6E8E36D56C124 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc0, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader1, bool ___preserveWhitespace2, const RuntimeMethod* method) ;
// System.Void System.IO.StringReader::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringReader__ctor_m72556EC1062F49E05CF41B0825AC7FA2DB2A81C0 (StringReader_t1A336148FF22A9584E759A9D720CC96C23E35DD8* __this, String_t* ___s0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextReader::.ctor(System.IO.TextReader,System.Xml.XmlNameTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReader__ctor_m71F11D57A03AFBB76268D2696DADFCAC582C0403 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___input0, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nt1, const RuntimeMethod* method) ;
// System.Xml.XmlTextReader System.Xml.XmlDocument::SetupReader(System.Xml.XmlTextReader)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* XmlDocument_SetupReader_mDBF0C1ECB089DCC5D892E790ED2ABBD794A4824E (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* ___tr0, const RuntimeMethod* method) ;
// System.String System.Xml.XmlDocument::get_Standalone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDocument_get_Standalone_mF1CE7F21F34BE23F6F5F4BE58CB74B7F89865B1B (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) ;
// System.Collections.IEnumerator System.Xml.XmlNode::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlNode_GetEnumerator_mB640F7F79C355C618D587137B685AFFE1F798ED8 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlNodeChangedEventArgs::.ctor(System.Xml.XmlNode,System.Xml.XmlNode,System.Xml.XmlNode,System.String,System.String,System.Xml.XmlNodeChangedAction)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNodeChangedEventArgs__ctor_m7EA3C66B1D0582A417E9ADE33F982B08ADDB69E9 (XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___node0, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___oldParent1, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___newParent2, String_t* ___oldValue3, String_t* ___newValue4, int32_t ___action5, const RuntimeMethod* method) ;
// System.Xml.XmlNodeChangedAction System.Xml.XmlNodeChangedEventArgs::get_Action()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlNodeChangedEventArgs_get_Action_mD307B00A56DE5422A4EE4915400EC966DF80BD04_inline (XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlNodeChangedEventHandler::Invoke(System.Object,System.Xml.XmlNodeChangedEventArgs)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlNodeChangedEventHandler_Invoke_m64C7CF87945A0BAEFCED39FC27B1D9F2E31C1480_inline (XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* __this, RuntimeObject* ___sender0, XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* ___e1, const RuntimeMethod* method) ;
// System.Xml.XmlNamedNodeMap System.Xml.XmlDocumentType::get_Entities()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* XmlDocumentType_get_Entities_m0864AACCFEB94E7E935580DB42D07F5C2058B1B0 (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.EmptyEnumerator::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyEnumerator__ctor_m05DA73C42354A4E549CCA7E9485B294057ABA981 (EmptyEnumerator_t84EC9187C8460EE98E675ED9258AE4DF2A6776DA* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.Schema.XmlSchemaInfo::.ctor(System.Xml.Schema.XmlSchemaValidity)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSchemaInfo__ctor_mEB56BD698D44A8AAA47668230E0CDFE8463ABD08 (XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* __this, int32_t ___validity0, const RuntimeMethod* method) ;
// System.Xml.XmlNamespaceManager System.Xml.XmlLoader::ParsePartialContent(System.Xml.XmlNode,System.String,System.Xml.XmlNodeType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* XmlLoader_ParsePartialContent_mB3EF08CD6158AD1D1CB317AA3A712DFF7252C1EC (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___parentNode0, String_t* ___innerxmltext1, int32_t ___nt2, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlLoader::ParseDocumentType(System.Xml.XmlDocumentType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_ParseDocumentType_m7E6901C3E8CF530A50BFE027DE91E999307F2A02 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* ___dtNode0, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlElement::get_IsEmpty()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlElement_get_IsEmpty_m3FD670ABE3BE49AF263E1B75875FA606CC671B5F (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlElement::set_IsEmpty(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElement_set_IsEmpty_mA8B835AE5541C20296A231855F3ABF4296A475F7 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlElement::RemoveAllChildren()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElement_RemoveAllChildren_mF16BCED4E253E003DAD07D4CCB2D02644666C6CD (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method) ;
// System.Void System.Threading.Monitor::Exit(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9 (RuntimeObject* ___obj0, const RuntimeMethod* method) ;
// System.Void System.Threading.Monitor::Enter(System.Object,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4 (RuntimeObject* ___obj0, bool* ___lockTaken1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlAttributeCollection::.ctor(System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributeCollection__ctor_m8308D817C07EF858304166193742564329293982 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___parent0, const RuntimeMethod* method) ;
// System.Xml.XmlAttribute System.Xml.XmlDocument::CreateAttribute(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlDocument_CreateAttribute_m42F583C11D788DB6E7B1C2EFAF112CB0C6118D06 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___name0, const RuntimeMethod* method) ;
// System.Xml.XmlAttribute System.Xml.XmlAttributeCollection::get_ItemOf(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlAttributeCollection_get_ItemOf_mE6997455F03EC8A99F4ECAFF32E4F212BE70D7CF (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, String_t* ___name0, const RuntimeMethod* method) ;
// System.Xml.XmlAttribute System.Xml.XmlAttributeCollection::get_ItemOf(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlAttributeCollection_get_ItemOf_m245B54FBA90E7BD011E098583819823AF7E06158 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, String_t* ___localName0, String_t* ___namespaceURI1, const RuntimeMethod* method) ;
// System.Boolean System.Type::op_Equality(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7 (Type_t* ___left0, Type_t* ___right1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlElement::WriteElementTo(System.Xml.XmlWriter,System.Xml.XmlElement)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElement_WriteElementTo_mD3B70D6DAF299D9BBB93162A9801C153755F1DAF (XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___writer0, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___e1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlElement::WriteStartElement(System.Xml.XmlWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElement_WriteStartElement_m2C7B3D5DD055CE83F1621264799CC65A1D834D1D (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___w0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlAttributeCollection::RemoveAll()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributeCollection_RemoveAll_mF68383A7E9C4F688F73A27EDCBC926799E66DE47 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlNode::RemoveAll()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNode_RemoveAll_mA708E0DA19F2C6D5BC6CD66D415EA2D966300EA0 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlLoader::LoadInnerXmlElement(System.Xml.XmlElement,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_LoadInnerXmlElement_mE78D161D2D91C2082F77B90FAA4DF5181915DDEB (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___node0, String_t* ___innerxmltext1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlLoader::ExpandEntity(System.Xml.XmlEntity)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_ExpandEntity_mF48C80ADCAA60579178B00F9BB747D3FDA3B2616 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* ___ent0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlNode::SetParent(System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNode_SetParent_mC2F3D8403B21789BAC584DC19C1AF0B59865E5A6 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___node0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlLoader::ExpandEntityReference(System.Xml.XmlEntityReference)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_ExpandEntityReference_m99D6DCC2F0FA00E28E73698D333FCC12EFCA7B2F (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* ___eref0, const RuntimeMethod* method) ;
// System.Int32 System.String::LastIndexOf(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_LastIndexOf_m6BB3E7E1B48702D4C715FA423F8A822C053B290E (String_t* __this, Il2CppChar ___value0, const RuntimeMethod* method) ;
// System.String System.String::Substring(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE (String_t* __this, int32_t ___startIndex0, int32_t ___length1, 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.String System.String::Replace(System.Char,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Replace_m86403DC5F422D8D5E1CFAAF255B103CB807EDAAF (String_t* __this, Il2CppChar ___oldChar0, Il2CppChar ___newChar1, const RuntimeMethod* method) ;
// System.Xml.XmlEntity System.Xml.XmlDocument::GetEntityNode(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* XmlDocument_GetEntityNode_m9A45EC68379AD8210E79FD8A88EB705D011E827A (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___name0, const RuntimeMethod* method) ;
// System.String System.Xml.XmlEntity::get_SystemId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlEntity_get_SystemId_mBD4E3AB5EBAE7C852E533B9E184A316BECF47FA7_inline (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, const RuntimeMethod* method) ;
// System.String System.Xml.XmlEntityReference::ConstructBaseURI(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlEntityReference_ConstructBaseURI_mCB7DDEFDCE5D272FA11026F4FE913CCA1339B4B2 (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, String_t* ___baseURI0, String_t* ___systemId1, const RuntimeMethod* method) ;
// System.Void System.Xml.NameTable::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NameTable__ctor_mB02EE27092095D81E839D51519C4FBDA2227C261 (NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46* __this, const RuntimeMethod* method) ;
// System.Xml.XmlTextReaderImpl System.Xml.XmlTextReader::get_Impl()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* XmlTextReader_get_Impl_m99AA88D6B2335764B7B4171CCC9D9C77329D72D8_inline (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) ;
// System.Xml.ValidationType System.Xml.XmlReaderSettings::get_ValidationType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlReaderSettings_get_ValidationType_mFF201BAC3A2B593BB69E691E0AA3814455185F8A_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlDocument::set_Schemas(System.Xml.Schema.XmlSchemaSet)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlDocument_set_Schemas_m434B1F13D18F926E959FCC426F4731C9AC385A3B_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlLoader::LoadDocSequence(System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_LoadDocSequence_m7A96D61FBF4996383D5339AB7B416CE0D51D4526 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___parentDoc0, const RuntimeMethod* method) ;
// System.Xml.XmlNode System.Xml.XmlLoader::LoadNode(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlLoader_LoadNode_mDFD824F250FA615C734180BF6141A472610F7E68 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, bool ___skipOverWhitespace0, const RuntimeMethod* method) ;
// System.Xml.XmlAttribute System.Xml.XmlLoader::LoadAttributeNode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlLoader_LoadAttributeNode_mD21D3FF205915C01F5EAA89291E816AEDE5E8567 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, const RuntimeMethod* method) ;
// System.Xml.XmlAttribute System.Xml.XmlAttributeCollection::Append(System.Xml.XmlAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlAttributeCollection_Append_mF5AFDC3C4547DA089353B76241A5B46437CA8484 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___node0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlElement::set_XmlName(System.Xml.XmlName)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlElement_set_XmlName_m15166904F386EAB60030EAB490CC0FD1CB624EFC_inline (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___value0, const RuntimeMethod* method) ;
// System.Xml.XmlEntityReference System.Xml.XmlLoader::LoadEntityReferenceNode(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* XmlLoader_LoadEntityReferenceNode_m26B083645AAB9B8E96E676B2EB5F19EADC24B628 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, bool ___direct0, const RuntimeMethod* method) ;
// System.Xml.XmlDeclaration System.Xml.XmlLoader::LoadDeclarationNode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* XmlLoader_LoadDeclarationNode_m43A2FAF27DCB6A1CBFEABB7508DD4C94523F1AE6 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, const RuntimeMethod* method) ;
// System.Xml.XmlDocumentType System.Xml.XmlLoader::LoadDocumentTypeNode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* XmlLoader_LoadDocumentTypeNode_m8869BA2D6837AF67F10647453EA32681AA71E3A9 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, const RuntimeMethod* method) ;
// System.Exception System.Xml.XmlLoader::UnexpectedNodeType(System.Xml.XmlNodeType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* XmlLoader_UnexpectedNodeType_mA83CDA29B169FEFBB014EAC94A0D4DBFB31F84E4 (int32_t ___nodetype0, const RuntimeMethod* method) ;
// System.Xml.XmlAttribute System.Xml.XmlLoader::LoadDefaultAttribute()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlLoader_LoadDefaultAttribute_m020283A6DBFA29FF4B5D4C7D03D56DF43E4216D7 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlAttribute::set_XmlName(System.Xml.XmlName)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlAttribute_set_XmlName_m8D259D5CC4750809EACB5E213333E1E55D8BB6BB_inline (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlLoader::LoadAttributeValue(System.Xml.XmlNode,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_LoadAttributeValue_m119C6C6063D71231F622A12A683078D77DA8B320 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___parent0, bool ___direct1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlText::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlText__ctor_mD1D12098F7364C006DAAC8E7700C0C729CDEACDE (XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* __this, String_t* ___strData0, const RuntimeMethod* method) ;
// System.Xml.XmlNode System.Xml.XmlLoader::LoadNodeDirect()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlLoader_LoadNodeDirect_m2C0D5301FFB96CA298EF768E2CE903B6C6D459B7 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlLoader::LoadDocumentType(System.Xml.IDtdInfo,System.Xml.XmlDocumentType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_LoadDocumentType_mC301F9962BC7D2F1134EDE1CD6D71D2EE68E9247 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, RuntimeObject* ___dtdInfo0, XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* ___dtNode1, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlElement::.ctor(System.String,System.String,System.String,System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElement__ctor_m1C80BD485FDDF4F947A67A6861C525E205D8F0C4 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___namespaceURI2, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc3, const RuntimeMethod* method) ;
// System.Xml.XmlAttribute System.Xml.XmlLoader::LoadAttributeNodeDirect()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlLoader_LoadAttributeNodeDirect_m700A4AD66233956704AA6D82F1D59A9204F50B4B (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlAttribute::.ctor(System.String,System.String,System.String,System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttribute__ctor_m11339257CF537ACBDA1BC5ED16CD45BF0C318971 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___namespaceURI2, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc3, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlLoader::ParseDocumentType(System.Xml.XmlDocumentType,System.Boolean,System.Xml.XmlResolver)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_ParseDocumentType_m19313190F3CDF2BBE2B717BFB84C5D86AE73DD41 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* ___dtNode0, bool ___bUseResolver1, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___resolver2, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlParserContext::.ctor(System.Xml.XmlNameTable,System.Xml.XmlNamespaceManager,System.String,System.String,System.String,System.String,System.String,System.String,System.Xml.XmlSpace)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlParserContext__ctor_mB2CD7CF0517A079CBB79700E6B410C8667AEA532 (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nt0, XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* ___nsMgr1, String_t* ___docTypeName2, String_t* ___pubId3, String_t* ___sysId4, String_t* ___internalSubset5, String_t* ___baseURI6, String_t* ___xmlLang7, int32_t ___xmlSpace8, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextReaderImpl::.ctor(System.String,System.Xml.XmlNodeType,System.Xml.XmlParserContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl__ctor_m1752EB0257B3129797C620899A5D76179EF65C85 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___xmlFragment0, int32_t ___fragType1, XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* ___context2, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlDocumentType::get_ParseWithNamespaces()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlDocumentType_get_ParseWithNamespaces_mC391046582C88CDC3C3496E4D2C0827C36D9B324_inline (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextReaderImpl::set_Namespaces(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_Namespaces_mBC1F7402DC209EE48DACECE94982BC6CC1E861CE (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextReaderImpl::set_XmlResolver(System.Xml.XmlResolver)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_XmlResolver_mE88E51BCF47AE861AAB9121C0B023EEE73D29775 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___value0, 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.Void System.Xml.XmlDocument::set_DtdSchemaInfo(System.Xml.Schema.SchemaInfo)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlDocument_set_DtdSchemaInfo_m95A0C58965F2B17BDA49D5F4E18304A11EEC7876_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* ___value0, const RuntimeMethod* method) ;
// System.Collections.Generic.Dictionary`2<System.String,System.Xml.Schema.SchemaNotation> System.Xml.Schema.SchemaInfo::get_Notations()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_t27DD7BC6C615A002762F178DF4446D10EF4486A1* SchemaInfo_get_Notations_m922CD199C8750B3D6F5662DB0EA272805A7EA3A1 (SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* __this, const RuntimeMethod* method) ;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.String,System.Xml.Schema.SchemaNotation>::get_Values()
inline ValueCollection_t8898F5330699C43BF4307CDFD83DB8DC4ED26F1F* Dictionary_2_get_Values_m7BA818B29BA9A89901482C6D5E24DAFD8495DBAA (Dictionary_2_t27DD7BC6C615A002762F178DF4446D10EF4486A1* __this, const RuntimeMethod* method)
{
return (( ValueCollection_t8898F5330699C43BF4307CDFD83DB8DC4ED26F1F* (*) (Dictionary_2_t27DD7BC6C615A002762F178DF4446D10EF4486A1*, const RuntimeMethod*))Dictionary_2_get_Values_mA0C01DEA55329E55380E96BBD04D4D228B437EC5_gshared)(__this, method);
}
// System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.Xml.Schema.SchemaNotation>::GetEnumerator()
inline Enumerator_t3E5D7CFA0D274E9F0E695069583F0C9A0FC06218 ValueCollection_GetEnumerator_m5C66A03B215EDB5E0833880DC07DA5A2C6283A0A (ValueCollection_t8898F5330699C43BF4307CDFD83DB8DC4ED26F1F* __this, const RuntimeMethod* method)
{
return (( Enumerator_t3E5D7CFA0D274E9F0E695069583F0C9A0FC06218 (*) (ValueCollection_t8898F5330699C43BF4307CDFD83DB8DC4ED26F1F*, const RuntimeMethod*))ValueCollection_GetEnumerator_m025EE28BE2F31676E08BC3D7C8E39D8232BDBBF8_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.String,System.Xml.Schema.SchemaNotation>::Dispose()
inline void Enumerator_Dispose_mE25067D838FB5D1F613D8A1D7743D120ADB5BF1A (Enumerator_t3E5D7CFA0D274E9F0E695069583F0C9A0FC06218* __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t3E5D7CFA0D274E9F0E695069583F0C9A0FC06218*, const RuntimeMethod*))Enumerator_Dispose_mFD8FAB8D9FF5EDF9AE3B14CF539A8A34AA9527A8_gshared)(__this, method);
}
// TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.String,System.Xml.Schema.SchemaNotation>::get_Current()
inline SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* Enumerator_get_Current_m5F4A12451C66B8106D041A8FDF9254A9B563E0DB_inline (Enumerator_t3E5D7CFA0D274E9F0E695069583F0C9A0FC06218* __this, const RuntimeMethod* method)
{
return (( SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* (*) (Enumerator_t3E5D7CFA0D274E9F0E695069583F0C9A0FC06218*, const RuntimeMethod*))Enumerator_get_Current_mB407E755F3B4C51C54D24338D00A352E5B16E7F3_gshared_inline)(__this, method);
}
// System.Xml.XmlNamedNodeMap System.Xml.XmlDocumentType::get_Notations()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* XmlDocumentType_get_Notations_mF39B90420713538FCE072C512A74575C6F25D117 (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method) ;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNotation::get_Name()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* SchemaNotation_get_Name_mF5CA9EBBD17ADAB3A31FC36FDB03B236C4847FCD_inline (SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* __this, const RuntimeMethod* method) ;
// System.String System.Xml.Schema.SchemaNotation::get_Pubid()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* SchemaNotation_get_Pubid_m28D7BB40FF192EDC5B5461FBE0FF7E690A3B6BFE_inline (SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* __this, const RuntimeMethod* method) ;
// System.String System.Xml.Schema.SchemaNotation::get_SystemLiteral()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* SchemaNotation_get_SystemLiteral_m0E99C9B3C22B1F8535F3C9334B91EEFD0C2F1DF3_inline (SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlNotation::.ctor(System.String,System.String,System.String,System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNotation__ctor_mB0560FA8AB3F3443FC6B1638265F00E268C4ED61 (XmlNotation_t0CB6B652D5F20BB51A8A299F67BEE3D6EC91CE4D* __this, String_t* ___name0, String_t* ___publicId1, String_t* ___systemId2, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc3, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.String,System.Xml.Schema.SchemaNotation>::MoveNext()
inline bool Enumerator_MoveNext_mFB28D9AB4BB5B94192AFBCF8727A992DD8A3EA23 (Enumerator_t3E5D7CFA0D274E9F0E695069583F0C9A0FC06218* __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t3E5D7CFA0D274E9F0E695069583F0C9A0FC06218*, const RuntimeMethod*))Enumerator_MoveNext_mBE11DA1DAFC756EB87E884AADC5EDC4BB72FB032_gshared)(__this, method);
}
// System.Collections.Generic.Dictionary`2<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaEntity> System.Xml.Schema.SchemaInfo::get_GeneralEntities()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_t129029582481E96143BD747690E92DB7E444261E* SchemaInfo_get_GeneralEntities_mB8E4E7E02EB79C03BDEEB06638EBFA631DE9C9D2 (SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* __this, const RuntimeMethod* method) ;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaEntity>::get_Values()
inline ValueCollection_t5E6BEDEB2CEF7A818BACE8D90DFE44BE5DAC4431* Dictionary_2_get_Values_mA410F24C86421E016F25DFE10F06ED2CC94E8279 (Dictionary_2_t129029582481E96143BD747690E92DB7E444261E* __this, const RuntimeMethod* method)
{
return (( ValueCollection_t5E6BEDEB2CEF7A818BACE8D90DFE44BE5DAC4431* (*) (Dictionary_2_t129029582481E96143BD747690E92DB7E444261E*, const RuntimeMethod*))Dictionary_2_get_Values_mA0C01DEA55329E55380E96BBD04D4D228B437EC5_gshared)(__this, method);
}
// System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaEntity>::GetEnumerator()
inline Enumerator_t4BFAD24AD9D3103A06D8DE615BAC99DA84ED0A4F ValueCollection_GetEnumerator_mDF1A568A63118C3FCC8962A66BFF7CA4FD701F63 (ValueCollection_t5E6BEDEB2CEF7A818BACE8D90DFE44BE5DAC4431* __this, const RuntimeMethod* method)
{
return (( Enumerator_t4BFAD24AD9D3103A06D8DE615BAC99DA84ED0A4F (*) (ValueCollection_t5E6BEDEB2CEF7A818BACE8D90DFE44BE5DAC4431*, const RuntimeMethod*))ValueCollection_GetEnumerator_m025EE28BE2F31676E08BC3D7C8E39D8232BDBBF8_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaEntity>::Dispose()
inline void Enumerator_Dispose_m9C22E03CBE0A5943CB4EEED769A719610719A106 (Enumerator_t4BFAD24AD9D3103A06D8DE615BAC99DA84ED0A4F* __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t4BFAD24AD9D3103A06D8DE615BAC99DA84ED0A4F*, const RuntimeMethod*))Enumerator_Dispose_mFD8FAB8D9FF5EDF9AE3B14CF539A8A34AA9527A8_gshared)(__this, method);
}
// TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaEntity>::get_Current()
inline SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* Enumerator_get_Current_mAD814A76564116AD71DFC76D3FCAF39F2A454DF2_inline (Enumerator_t4BFAD24AD9D3103A06D8DE615BAC99DA84ED0A4F* __this, const RuntimeMethod* method)
{
return (( SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* (*) (Enumerator_t4BFAD24AD9D3103A06D8DE615BAC99DA84ED0A4F*, const RuntimeMethod*))Enumerator_get_Current_mB407E755F3B4C51C54D24338D00A352E5B16E7F3_gshared_inline)(__this, method);
}
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaEntity::get_Name()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* SchemaEntity_get_Name_m8A17CC3B68A15DCD4C3ACEC6AE82AB7BF5CDBEAC_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, const RuntimeMethod* method) ;
// System.String System.Xml.Schema.SchemaEntity::get_Text()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* SchemaEntity_get_Text_mDCF201E623D7A98F87E859ACDEE9B5B6B4E953AE_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, const RuntimeMethod* method) ;
// System.String System.Xml.Schema.SchemaEntity::get_Pubid()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* SchemaEntity_get_Pubid_m9845E8CD129266AFA62E58F857D88D0941C88C82_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, const RuntimeMethod* method) ;
// System.String System.Xml.Schema.SchemaEntity::get_Url()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* SchemaEntity_get_Url_m7519C52A444DFD11468483C299A6C9D6A92F1CFB_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, const RuntimeMethod* method) ;
// System.Xml.XmlQualifiedName System.Xml.Schema.SchemaEntity::get_NData()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* SchemaEntity_get_NData_m7B05467BF6357AB27C1DAFBFE27F9720C79CEC3C_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlQualifiedName::get_IsEmpty()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlQualifiedName_get_IsEmpty_m37942163D9A870E85BE8762845953C6A6579A400 (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlEntity::.ctor(System.String,System.String,System.String,System.String,System.String,System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEntity__ctor_m3F8F45510F797944A6386162E16A5FF4EA5BCD12 (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, String_t* ___name0, String_t* ___strdata1, String_t* ___publicId2, String_t* ___systemId3, String_t* ___notationName4, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc5, const RuntimeMethod* method) ;
// System.String System.Xml.Schema.SchemaEntity::get_DeclaredURI()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SchemaEntity_get_DeclaredURI_mA5B2AACD3D552050C6318FD6383F32FB0CC0CEA0 (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlEntity::SetBaseURI(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlEntity_SetBaseURI_mFEBE0339CA3A522BDC09A278FFBA3A9D77A578B3_inline (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, String_t* ___inBaseURI0, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaEntity>::MoveNext()
inline bool Enumerator_MoveNext_m2039C64E26497D750FE7545A20B128FDB78A87BC (Enumerator_t4BFAD24AD9D3103A06D8DE615BAC99DA84ED0A4F* __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t4BFAD24AD9D3103A06D8DE615BAC99DA84ED0A4F*, const RuntimeMethod*))Enumerator_MoveNext_mBE11DA1DAFC756EB87E884AADC5EDC4BB72FB032_gshared)(__this, method);
}
// System.Collections.Generic.Dictionary`2<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaEntity> System.Xml.Schema.SchemaInfo::get_ParameterEntities()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_t129029582481E96143BD747690E92DB7E444261E* SchemaInfo_get_ParameterEntities_m54F4C298FA2B2AAE10FAA43965E9DD2C84E76FBB (SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlDocument::set_Entities(System.Xml.XmlNamedNodeMap)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlDocument_set_Entities_mBBF7C97889080847540A0F31B1751726E81FF756_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* ___value0, const RuntimeMethod* method) ;
// System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Xml.XmlQualifiedName,System.Xml.Schema.SchemaElementDecl>::GetEnumerator()
inline Enumerator_t42F4E0E4BE9FD853E9D5EE3D3B048C8C08ECCD28 Dictionary_2_GetEnumerator_mB2F07FA4420E7E08C4E8C50C4FB940647EE584AA (Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A* __this, const RuntimeMethod* method)
{
return (( Enumerator_t42F4E0E4BE9FD853E9D5EE3D3B048C8C08ECCD28 (*) (Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A*, const RuntimeMethod*))Dictionary_2_GetEnumerator_m52AB12790B0B9B46B1DFB1F861C9DBEAB07C1FDA_gshared)(__this, method);
}
// System.Xml.Schema.XmlSchemaDatatype System.Xml.Schema.SchemaDeclBase::get_Datatype()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D* SchemaDeclBase_get_Datatype_mE6DE13C3518B65A1CF6E464F12D7D7653247AF90_inline (SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlDocument::AddIdInfo(System.Xml.XmlName,System.Xml.XmlName)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocument_AddIdInfo_mF6E5BE7379C76DA2C5E4D292380086D04009CC0E (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___eleName0, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___attrName1, const RuntimeMethod* method) ;
// System.Xml.XmlParserContext System.Xml.XmlLoader::GetContext(System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* XmlLoader_GetContext_mC3CED072E1A2C5E1B94C8542BDFE5D0B3BA48934 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___node0, const RuntimeMethod* method) ;
// System.Xml.XmlReader System.Xml.XmlLoader::CreateInnerXmlReader(System.String,System.Xml.XmlNodeType,System.Xml.XmlParserContext,System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* XmlLoader_CreateInnerXmlReader_m9F7F526E3D4E37EAFA9469C1FE61159D2FE5CCC6 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, String_t* ___xmlFragment0, int32_t ___nt1, XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* ___context2, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc3, const RuntimeMethod* method) ;
// System.Xml.XmlNamespaceManager System.Xml.XmlParserContext::get_NamespaceManager()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* XmlParserContext_get_NamespaceManager_mB51E2BAE011C0C53FB2DF0C9DFF21EA17DCD58B7_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlLoader::RemoveDuplicateNamespace(System.Xml.XmlElement,System.Xml.XmlNamespaceManager,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_RemoveDuplicateNamespace_m451D261AC3A6D4918CA6661853B922BBBE39A148 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___elem0, XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* ___mgr1, bool ___fCheckElemAttrs2, const RuntimeMethod* method) ;
// System.String System.Xml.XmlLoader::EntitizeName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlLoader_EntitizeName_mA9639629370CE5837B6174542782588E6E1A682B (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, String_t* ___name0, const RuntimeMethod* method) ;
// System.Xml.XmlNamedNodeMap System.Xml.XmlDocument::get_Entities()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* XmlDocument_get_Entities_m72C0183C637A5D71BB38433D1D4CD9A4E87D3A80 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) ;
// System.Boolean System.Xml.XmlDocument::get_ActualLoadingStatus()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlDocument_get_ActualLoadingStatus_m63B8F5AD9C82FEF1D9EFA47926E4AABED6CD9D99_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextReaderImpl::set_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.XmlTextReaderImpl::set_DisableUndeclaredEntityCheck(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_DisableUndeclaredEntityCheck_m339683347E0D9F45C31C7602CBAF90F5497CACC5_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Xml.Schema.SchemaInfo System.Xml.XmlDocumentType::get_DtdSchemaInfo()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* XmlDocumentType_get_DtdSchemaInfo_mDF54B3A169B037A8C8A4F186206B143AF3068259_inline (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextReaderImpl::SetDtdInfo(System.Xml.IDtdInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_SetDtdInfo_m8F11C3245888FFB1600893DBAD0135432EE06110 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, RuntimeObject* ___newDtdInfo0, const RuntimeMethod* method) ;
// System.String System.Xml.XmlParserContext::get_BaseURI()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_BaseURI_m203B1A13A7DFA09528C49D2198E7B9382BA91892_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) ;
// System.String System.Xml.XmlParserContext::get_DocTypeName()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_DocTypeName_m8212FEC6DBA21A5B1E95538D40951B1CB0380CF0_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) ;
// System.String System.Xml.XmlParserContext::get_PublicId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_PublicId_mCE67EDDC8A9D73A0AADB77E0F7CCF53DEB5E300D_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) ;
// System.String System.Xml.XmlParserContext::get_SystemId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_SystemId_mB4649C8C6DA52AFC5224E82BBD2B7C7A1D5CCB58_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) ;
// System.String System.Xml.XmlParserContext::get_InternalSubset()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_InternalSubset_mDD9703E47510C335AD4940AE7F761F56AA00E9DC_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) ;
// System.Void System.Xml.XmlTextReaderImpl::.ctor(System.String,System.Xml.XmlParserContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl__ctor_mB17B348B4F2C16D6F06AB86A2803970CA0517303 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___xmlFragment0, XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* ___context1, const RuntimeMethod* method) ;
// System.Void System.Array::Clear(System.Array,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Clear_m48B57EC27CADC3463CA98A33373D557DA587FF1B (RuntimeArray* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method) ;
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#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/NamespaceResolverProxy::.ctor(System.Xml.XmlWellFormedWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NamespaceResolverProxy__ctor_mF340DF659BB0437832979BFF6C9A91F1CA480177 (NamespaceResolverProxy_t21901D5C38330378CB1AA39393335948E0CADE44* __this, XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* ___wfWriter0, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* L_0 = ___wfWriter0;
__this->___wfWriter_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___wfWriter_0), (void*)L_0);
return;
}
}
// System.Collections.Generic.IDictionary`2<System.String,System.String> System.Xml.XmlWellFormedWriter/NamespaceResolverProxy::System.Xml.IXmlNamespaceResolver.GetNamespacesInScope(System.Xml.XmlNamespaceScope)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* NamespaceResolverProxy_System_Xml_IXmlNamespaceResolver_GetNamespacesInScope_m17AA1B35EFCA855BC450889E07514C832779BD3D (NamespaceResolverProxy_t21901D5C38330378CB1AA39393335948E0CADE44* __this, int32_t ___scope0, const RuntimeMethod* method)
{
{
NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_0 = (NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8_il2cpp_TypeInfo_var)));
NullCheck(L_0);
NotImplementedException__ctor_mDAB47BC6BD0E342E8F2171E5CABE3E67EA049F1C(L_0, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NamespaceResolverProxy_System_Xml_IXmlNamespaceResolver_GetNamespacesInScope_m17AA1B35EFCA855BC450889E07514C832779BD3D_RuntimeMethod_var)));
}
}
// System.String System.Xml.XmlWellFormedWriter/NamespaceResolverProxy::System.Xml.IXmlNamespaceResolver.LookupNamespace(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NamespaceResolverProxy_System_Xml_IXmlNamespaceResolver_LookupNamespace_mCA6F123E1920EC744D1B42FB1B56DB0128F76121 (NamespaceResolverProxy_t21901D5C38330378CB1AA39393335948E0CADE44* __this, String_t* ___prefix0, const RuntimeMethod* method)
{
{
XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* L_0 = __this->___wfWriter_0;
String_t* L_1 = ___prefix0;
NullCheck(L_0);
String_t* L_2;
L_2 = XmlWellFormedWriter_LookupNamespace_m501ADAA8012BE57824EAE59C5F58BE37E477A92A(L_0, L_1, NULL);
return L_2;
}
}
// System.String System.Xml.XmlWellFormedWriter/NamespaceResolverProxy::System.Xml.IXmlNamespaceResolver.LookupPrefix(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NamespaceResolverProxy_System_Xml_IXmlNamespaceResolver_LookupPrefix_m48E999A31BE5C784E702B1E0D8E5E9D10C5854A5 (NamespaceResolverProxy_t21901D5C38330378CB1AA39393335948E0CADE44* __this, String_t* ___namespaceName0, const RuntimeMethod* method)
{
{
XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* L_0 = __this->___wfWriter_0;
String_t* L_1 = ___namespaceName0;
NullCheck(L_0);
String_t* L_2;
L_2 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(30 /* System.String System.Xml.XmlWriter::LookupPrefix(System.String) */, L_0, L_1);
return L_2;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: System.Xml.XmlWellFormedWriter/ElementScope
IL2CPP_EXTERN_C void ElementScope_t7BA86196EE58918EA5CA952D37FE3C7B19A33592_marshal_pinvoke(const ElementScope_t7BA86196EE58918EA5CA952D37FE3C7B19A33592& unmarshaled, ElementScope_t7BA86196EE58918EA5CA952D37FE3C7B19A33592_marshaled_pinvoke& marshaled)
{
marshaled.___prevNSTop_0 = unmarshaled.___prevNSTop_0;
marshaled.___prefix_1 = il2cpp_codegen_marshal_string(unmarshaled.___prefix_1);
marshaled.___localName_2 = il2cpp_codegen_marshal_string(unmarshaled.___localName_2);
marshaled.___namespaceUri_3 = il2cpp_codegen_marshal_string(unmarshaled.___namespaceUri_3);
marshaled.___xmlSpace_4 = unmarshaled.___xmlSpace_4;
marshaled.___xmlLang_5 = il2cpp_codegen_marshal_string(unmarshaled.___xmlLang_5);
}
IL2CPP_EXTERN_C void ElementScope_t7BA86196EE58918EA5CA952D37FE3C7B19A33592_marshal_pinvoke_back(const ElementScope_t7BA86196EE58918EA5CA952D37FE3C7B19A33592_marshaled_pinvoke& marshaled, ElementScope_t7BA86196EE58918EA5CA952D37FE3C7B19A33592& unmarshaled)
{
int32_t unmarshaledprevNSTop_temp_0 = 0;
unmarshaledprevNSTop_temp_0 = marshaled.___prevNSTop_0;
unmarshaled.___prevNSTop_0 = unmarshaledprevNSTop_temp_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.___localName_2 = il2cpp_codegen_marshal_string_result(marshaled.___localName_2);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___localName_2), (void*)il2cpp_codegen_marshal_string_result(marshaled.___localName_2));
unmarshaled.___namespaceUri_3 = il2cpp_codegen_marshal_string_result(marshaled.___namespaceUri_3);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___namespaceUri_3), (void*)il2cpp_codegen_marshal_string_result(marshaled.___namespaceUri_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));
}
// Conversion method for clean up from marshalling of: System.Xml.XmlWellFormedWriter/ElementScope
IL2CPP_EXTERN_C void ElementScope_t7BA86196EE58918EA5CA952D37FE3C7B19A33592_marshal_pinvoke_cleanup(ElementScope_t7BA86196EE58918EA5CA952D37FE3C7B19A33592_marshaled_pinvoke& marshaled)
{
il2cpp_codegen_marshal_free(marshaled.___prefix_1);
marshaled.___prefix_1 = NULL;
il2cpp_codegen_marshal_free(marshaled.___localName_2);
marshaled.___localName_2 = NULL;
il2cpp_codegen_marshal_free(marshaled.___namespaceUri_3);
marshaled.___namespaceUri_3 = NULL;
il2cpp_codegen_marshal_free(marshaled.___xmlLang_5);
marshaled.___xmlLang_5 = NULL;
}
// Conversion methods for marshalling of: System.Xml.XmlWellFormedWriter/ElementScope
IL2CPP_EXTERN_C void ElementScope_t7BA86196EE58918EA5CA952D37FE3C7B19A33592_marshal_com(const ElementScope_t7BA86196EE58918EA5CA952D37FE3C7B19A33592& unmarshaled, ElementScope_t7BA86196EE58918EA5CA952D37FE3C7B19A33592_marshaled_com& marshaled)
{
marshaled.___prevNSTop_0 = unmarshaled.___prevNSTop_0;
marshaled.___prefix_1 = il2cpp_codegen_marshal_bstring(unmarshaled.___prefix_1);
marshaled.___localName_2 = il2cpp_codegen_marshal_bstring(unmarshaled.___localName_2);
marshaled.___namespaceUri_3 = il2cpp_codegen_marshal_bstring(unmarshaled.___namespaceUri_3);
marshaled.___xmlSpace_4 = unmarshaled.___xmlSpace_4;
marshaled.___xmlLang_5 = il2cpp_codegen_marshal_bstring(unmarshaled.___xmlLang_5);
}
IL2CPP_EXTERN_C void ElementScope_t7BA86196EE58918EA5CA952D37FE3C7B19A33592_marshal_com_back(const ElementScope_t7BA86196EE58918EA5CA952D37FE3C7B19A33592_marshaled_com& marshaled, ElementScope_t7BA86196EE58918EA5CA952D37FE3C7B19A33592& unmarshaled)
{
int32_t unmarshaledprevNSTop_temp_0 = 0;
unmarshaledprevNSTop_temp_0 = marshaled.___prevNSTop_0;
unmarshaled.___prevNSTop_0 = unmarshaledprevNSTop_temp_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.___localName_2 = il2cpp_codegen_marshal_bstring_result(marshaled.___localName_2);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___localName_2), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___localName_2));
unmarshaled.___namespaceUri_3 = il2cpp_codegen_marshal_bstring_result(marshaled.___namespaceUri_3);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___namespaceUri_3), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___namespaceUri_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));
}
// Conversion method for clean up from marshalling of: System.Xml.XmlWellFormedWriter/ElementScope
IL2CPP_EXTERN_C void ElementScope_t7BA86196EE58918EA5CA952D37FE3C7B19A33592_marshal_com_cleanup(ElementScope_t7BA86196EE58918EA5CA952D37FE3C7B19A33592_marshaled_com& marshaled)
{
il2cpp_codegen_marshal_free_bstring(marshaled.___prefix_1);
marshaled.___prefix_1 = NULL;
il2cpp_codegen_marshal_free_bstring(marshaled.___localName_2);
marshaled.___localName_2 = NULL;
il2cpp_codegen_marshal_free_bstring(marshaled.___namespaceUri_3);
marshaled.___namespaceUri_3 = NULL;
il2cpp_codegen_marshal_free_bstring(marshaled.___xmlLang_5);
marshaled.___xmlLang_5 = NULL;
}
// 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)
{
{
int32_t L_0 = ___prevNSTop3;
__this->___prevNSTop_0 = L_0;
String_t* L_1 = ___prefix0;
__this->___prefix_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___prefix_1), (void*)L_1);
String_t* L_2 = ___namespaceUri2;
__this->___namespaceUri_3 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___namespaceUri_3), (void*)L_2);
String_t* L_3 = ___localName1;
__this->___localName_2 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___localName_2), (void*)L_3);
__this->___xmlSpace_4 = (-1);
__this->___xmlLang_5 = (String_t*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlLang_5), (void*)(String_t*)NULL);
return;
}
}
IL2CPP_EXTERN_C void ElementScope_Set_m7BAE5CE51EBBE20E736A268E1E606C71B74CF8D0_AdjustorThunk (RuntimeObject* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___namespaceUri2, int32_t ___prevNSTop3, const RuntimeMethod* method)
{
ElementScope_t7BA86196EE58918EA5CA952D37FE3C7B19A33592* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ElementScope_t7BA86196EE58918EA5CA952D37FE3C7B19A33592*>(__this + _offset);
ElementScope_Set_m7BAE5CE51EBBE20E736A268E1E606C71B74CF8D0(_thisAdjusted, ___prefix0, ___localName1, ___namespaceUri2, ___prevNSTop3, 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)
{
{
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = ___rawWriter0;
String_t* L_1 = __this->___prefix_1;
String_t* L_2 = __this->___localName_2;
String_t* L_3 = __this->___namespaceUri_3;
NullCheck(L_0);
VirtualActionInvoker3< String_t*, String_t*, String_t* >::Invoke(40 /* System.Void System.Xml.XmlRawWriter::WriteEndElement(System.String,System.String,System.String) */, L_0, L_1, L_2, L_3);
return;
}
}
IL2CPP_EXTERN_C void ElementScope_WriteEndElement_mD162117056CFDD45A1DAEC3F76334847A29F7B57_AdjustorThunk (RuntimeObject* __this, XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* ___rawWriter0, const RuntimeMethod* method)
{
ElementScope_t7BA86196EE58918EA5CA952D37FE3C7B19A33592* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ElementScope_t7BA86196EE58918EA5CA952D37FE3C7B19A33592*>(__this + _offset);
ElementScope_WriteEndElement_mD162117056CFDD45A1DAEC3F76334847A29F7B57(_thisAdjusted, ___rawWriter0, 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)
{
{
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = ___rawWriter0;
String_t* L_1 = __this->___prefix_1;
String_t* L_2 = __this->___localName_2;
String_t* L_3 = __this->___namespaceUri_3;
NullCheck(L_0);
VirtualActionInvoker3< String_t*, String_t*, String_t* >::Invoke(41 /* System.Void System.Xml.XmlRawWriter::WriteFullEndElement(System.String,System.String,System.String) */, L_0, L_1, L_2, L_3);
return;
}
}
IL2CPP_EXTERN_C void ElementScope_WriteFullEndElement_m17FE706748E35B8903B1BCB6B172A2415AD989B4_AdjustorThunk (RuntimeObject* __this, XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* ___rawWriter0, const RuntimeMethod* method)
{
ElementScope_t7BA86196EE58918EA5CA952D37FE3C7B19A33592* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ElementScope_t7BA86196EE58918EA5CA952D37FE3C7B19A33592*>(__this + _offset);
ElementScope_WriteFullEndElement_m17FE706748E35B8903B1BCB6B172A2415AD989B4(_thisAdjusted, ___rawWriter0, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: System.Xml.XmlWellFormedWriter/Namespace
IL2CPP_EXTERN_C void Namespace_tC7546D20184E40E3566060C1246B764E4DBA55A0_marshal_pinvoke(const Namespace_tC7546D20184E40E3566060C1246B764E4DBA55A0& unmarshaled, Namespace_tC7546D20184E40E3566060C1246B764E4DBA55A0_marshaled_pinvoke& marshaled)
{
marshaled.___prefix_0 = il2cpp_codegen_marshal_string(unmarshaled.___prefix_0);
marshaled.___namespaceUri_1 = il2cpp_codegen_marshal_string(unmarshaled.___namespaceUri_1);
marshaled.___kind_2 = unmarshaled.___kind_2;
marshaled.___prevNsIndex_3 = unmarshaled.___prevNsIndex_3;
}
IL2CPP_EXTERN_C void Namespace_tC7546D20184E40E3566060C1246B764E4DBA55A0_marshal_pinvoke_back(const Namespace_tC7546D20184E40E3566060C1246B764E4DBA55A0_marshaled_pinvoke& marshaled, Namespace_tC7546D20184E40E3566060C1246B764E4DBA55A0& 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.___namespaceUri_1 = il2cpp_codegen_marshal_string_result(marshaled.___namespaceUri_1);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___namespaceUri_1), (void*)il2cpp_codegen_marshal_string_result(marshaled.___namespaceUri_1));
int32_t unmarshaledkind_temp_2 = 0;
unmarshaledkind_temp_2 = marshaled.___kind_2;
unmarshaled.___kind_2 = unmarshaledkind_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.XmlWellFormedWriter/Namespace
IL2CPP_EXTERN_C void Namespace_tC7546D20184E40E3566060C1246B764E4DBA55A0_marshal_pinvoke_cleanup(Namespace_tC7546D20184E40E3566060C1246B764E4DBA55A0_marshaled_pinvoke& marshaled)
{
il2cpp_codegen_marshal_free(marshaled.___prefix_0);
marshaled.___prefix_0 = NULL;
il2cpp_codegen_marshal_free(marshaled.___namespaceUri_1);
marshaled.___namespaceUri_1 = NULL;
}
// Conversion methods for marshalling of: System.Xml.XmlWellFormedWriter/Namespace
IL2CPP_EXTERN_C void Namespace_tC7546D20184E40E3566060C1246B764E4DBA55A0_marshal_com(const Namespace_tC7546D20184E40E3566060C1246B764E4DBA55A0& unmarshaled, Namespace_tC7546D20184E40E3566060C1246B764E4DBA55A0_marshaled_com& marshaled)
{
marshaled.___prefix_0 = il2cpp_codegen_marshal_bstring(unmarshaled.___prefix_0);
marshaled.___namespaceUri_1 = il2cpp_codegen_marshal_bstring(unmarshaled.___namespaceUri_1);
marshaled.___kind_2 = unmarshaled.___kind_2;
marshaled.___prevNsIndex_3 = unmarshaled.___prevNsIndex_3;
}
IL2CPP_EXTERN_C void Namespace_tC7546D20184E40E3566060C1246B764E4DBA55A0_marshal_com_back(const Namespace_tC7546D20184E40E3566060C1246B764E4DBA55A0_marshaled_com& marshaled, Namespace_tC7546D20184E40E3566060C1246B764E4DBA55A0& 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.___namespaceUri_1 = il2cpp_codegen_marshal_bstring_result(marshaled.___namespaceUri_1);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___namespaceUri_1), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___namespaceUri_1));
int32_t unmarshaledkind_temp_2 = 0;
unmarshaledkind_temp_2 = marshaled.___kind_2;
unmarshaled.___kind_2 = unmarshaledkind_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.XmlWellFormedWriter/Namespace
IL2CPP_EXTERN_C void Namespace_tC7546D20184E40E3566060C1246B764E4DBA55A0_marshal_com_cleanup(Namespace_tC7546D20184E40E3566060C1246B764E4DBA55A0_marshaled_com& marshaled)
{
il2cpp_codegen_marshal_free_bstring(marshaled.___prefix_0);
marshaled.___prefix_0 = NULL;
il2cpp_codegen_marshal_free_bstring(marshaled.___namespaceUri_1);
marshaled.___namespaceUri_1 = NULL;
}
// 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)
{
{
String_t* L_0 = ___prefix0;
__this->___prefix_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___prefix_0), (void*)L_0);
String_t* L_1 = ___namespaceUri1;
__this->___namespaceUri_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___namespaceUri_1), (void*)L_1);
int32_t L_2 = ___kind2;
__this->___kind_2 = L_2;
__this->___prevNsIndex_3 = (-1);
return;
}
}
IL2CPP_EXTERN_C void Namespace_Set_m88AB7EE7ADEBE72A65AB39AD226966CECB869A2C_AdjustorThunk (RuntimeObject* __this, String_t* ___prefix0, String_t* ___namespaceUri1, int32_t ___kind2, const RuntimeMethod* method)
{
Namespace_tC7546D20184E40E3566060C1246B764E4DBA55A0* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Namespace_tC7546D20184E40E3566060C1246B764E4DBA55A0*>(__this + _offset);
Namespace_Set_m88AB7EE7ADEBE72A65AB39AD226966CECB869A2C(_thisAdjusted, ___prefix0, ___namespaceUri1, ___kind2, 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)
{
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*)&_stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3);
s_Il2CppMethodInitialized = true;
}
{
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_0 = ___rawWriter1;
if (!L_0)
{
goto IL_0016;
}
}
{
XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* L_1 = ___rawWriter1;
String_t* L_2 = __this->___prefix_0;
String_t* L_3 = __this->___namespaceUri_1;
NullCheck(L_1);
VirtualActionInvoker2< String_t*, String_t* >::Invoke(42 /* System.Void System.Xml.XmlRawWriter::WriteNamespaceDeclaration(System.String,System.String) */, L_1, L_2, L_3);
return;
}
IL_0016:
{
String_t* L_4 = __this->___prefix_0;
NullCheck(L_4);
int32_t L_5;
L_5 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_4, NULL);
if (L_5)
{
goto IL_003a;
}
}
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_6 = ___writer0;
String_t* L_7 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
NullCheck(L_6);
VirtualActionInvoker3< String_t*, String_t*, String_t* >::Invoke(12 /* System.Void System.Xml.XmlWriter::WriteStartAttribute(System.String,System.String,System.String) */, L_6, L_7, _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3, _stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE);
goto IL_0050;
}
IL_003a:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_8 = ___writer0;
String_t* L_9 = __this->___prefix_0;
NullCheck(L_8);
VirtualActionInvoker3< String_t*, String_t*, String_t* >::Invoke(12 /* System.Void System.Xml.XmlWriter::WriteStartAttribute(System.String,System.String,System.String) */, L_8, _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3, L_9, _stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE);
}
IL_0050:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_10 = ___writer0;
String_t* L_11 = __this->___namespaceUri_1;
NullCheck(L_10);
VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, L_10, L_11);
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_12 = ___writer0;
NullCheck(L_12);
VirtualActionInvoker0::Invoke(13 /* System.Void System.Xml.XmlWriter::WriteEndAttribute() */, L_12);
return;
}
}
IL2CPP_EXTERN_C void Namespace_WriteDecl_m9A844FFEDA4BE8790EB459FEDE11A8D8A5DAF100_AdjustorThunk (RuntimeObject* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___writer0, XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B* ___rawWriter1, const RuntimeMethod* method)
{
Namespace_tC7546D20184E40E3566060C1246B764E4DBA55A0* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Namespace_tC7546D20184E40E3566060C1246B764E4DBA55A0*>(__this + _offset);
Namespace_WriteDecl_m9A844FFEDA4BE8790EB459FEDE11A8D8A5DAF100(_thisAdjusted, ___writer0, ___rawWriter1, 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.XmlWellFormedWriter/AttrName
IL2CPP_EXTERN_C void AttrName_t0B37BBC030EEC83B4B00DFCDD9C1DB43A31675F2_marshal_pinvoke(const AttrName_t0B37BBC030EEC83B4B00DFCDD9C1DB43A31675F2& unmarshaled, AttrName_t0B37BBC030EEC83B4B00DFCDD9C1DB43A31675F2_marshaled_pinvoke& marshaled)
{
marshaled.___prefix_0 = il2cpp_codegen_marshal_string(unmarshaled.___prefix_0);
marshaled.___namespaceUri_1 = il2cpp_codegen_marshal_string(unmarshaled.___namespaceUri_1);
marshaled.___localName_2 = il2cpp_codegen_marshal_string(unmarshaled.___localName_2);
marshaled.___prev_3 = unmarshaled.___prev_3;
}
IL2CPP_EXTERN_C void AttrName_t0B37BBC030EEC83B4B00DFCDD9C1DB43A31675F2_marshal_pinvoke_back(const AttrName_t0B37BBC030EEC83B4B00DFCDD9C1DB43A31675F2_marshaled_pinvoke& marshaled, AttrName_t0B37BBC030EEC83B4B00DFCDD9C1DB43A31675F2& 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.___namespaceUri_1 = il2cpp_codegen_marshal_string_result(marshaled.___namespaceUri_1);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___namespaceUri_1), (void*)il2cpp_codegen_marshal_string_result(marshaled.___namespaceUri_1));
unmarshaled.___localName_2 = il2cpp_codegen_marshal_string_result(marshaled.___localName_2);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___localName_2), (void*)il2cpp_codegen_marshal_string_result(marshaled.___localName_2));
int32_t unmarshaledprev_temp_3 = 0;
unmarshaledprev_temp_3 = marshaled.___prev_3;
unmarshaled.___prev_3 = unmarshaledprev_temp_3;
}
// Conversion method for clean up from marshalling of: System.Xml.XmlWellFormedWriter/AttrName
IL2CPP_EXTERN_C void AttrName_t0B37BBC030EEC83B4B00DFCDD9C1DB43A31675F2_marshal_pinvoke_cleanup(AttrName_t0B37BBC030EEC83B4B00DFCDD9C1DB43A31675F2_marshaled_pinvoke& marshaled)
{
il2cpp_codegen_marshal_free(marshaled.___prefix_0);
marshaled.___prefix_0 = NULL;
il2cpp_codegen_marshal_free(marshaled.___namespaceUri_1);
marshaled.___namespaceUri_1 = NULL;
il2cpp_codegen_marshal_free(marshaled.___localName_2);
marshaled.___localName_2 = NULL;
}
// Conversion methods for marshalling of: System.Xml.XmlWellFormedWriter/AttrName
IL2CPP_EXTERN_C void AttrName_t0B37BBC030EEC83B4B00DFCDD9C1DB43A31675F2_marshal_com(const AttrName_t0B37BBC030EEC83B4B00DFCDD9C1DB43A31675F2& unmarshaled, AttrName_t0B37BBC030EEC83B4B00DFCDD9C1DB43A31675F2_marshaled_com& marshaled)
{
marshaled.___prefix_0 = il2cpp_codegen_marshal_bstring(unmarshaled.___prefix_0);
marshaled.___namespaceUri_1 = il2cpp_codegen_marshal_bstring(unmarshaled.___namespaceUri_1);
marshaled.___localName_2 = il2cpp_codegen_marshal_bstring(unmarshaled.___localName_2);
marshaled.___prev_3 = unmarshaled.___prev_3;
}
IL2CPP_EXTERN_C void AttrName_t0B37BBC030EEC83B4B00DFCDD9C1DB43A31675F2_marshal_com_back(const AttrName_t0B37BBC030EEC83B4B00DFCDD9C1DB43A31675F2_marshaled_com& marshaled, AttrName_t0B37BBC030EEC83B4B00DFCDD9C1DB43A31675F2& 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.___namespaceUri_1 = il2cpp_codegen_marshal_bstring_result(marshaled.___namespaceUri_1);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___namespaceUri_1), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___namespaceUri_1));
unmarshaled.___localName_2 = il2cpp_codegen_marshal_bstring_result(marshaled.___localName_2);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___localName_2), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___localName_2));
int32_t unmarshaledprev_temp_3 = 0;
unmarshaledprev_temp_3 = marshaled.___prev_3;
unmarshaled.___prev_3 = unmarshaledprev_temp_3;
}
// Conversion method for clean up from marshalling of: System.Xml.XmlWellFormedWriter/AttrName
IL2CPP_EXTERN_C void AttrName_t0B37BBC030EEC83B4B00DFCDD9C1DB43A31675F2_marshal_com_cleanup(AttrName_t0B37BBC030EEC83B4B00DFCDD9C1DB43A31675F2_marshaled_com& marshaled)
{
il2cpp_codegen_marshal_free_bstring(marshaled.___prefix_0);
marshaled.___prefix_0 = NULL;
il2cpp_codegen_marshal_free_bstring(marshaled.___namespaceUri_1);
marshaled.___namespaceUri_1 = NULL;
il2cpp_codegen_marshal_free_bstring(marshaled.___localName_2);
marshaled.___localName_2 = NULL;
}
// 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)
{
{
String_t* L_0 = ___prefix0;
__this->___prefix_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___prefix_0), (void*)L_0);
String_t* L_1 = ___namespaceUri2;
__this->___namespaceUri_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___namespaceUri_1), (void*)L_1);
String_t* L_2 = ___localName1;
__this->___localName_2 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___localName_2), (void*)L_2);
__this->___prev_3 = 0;
return;
}
}
IL2CPP_EXTERN_C void AttrName_Set_m2C5516E986819EB5B1B0084FA03E54A9C7354930_AdjustorThunk (RuntimeObject* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___namespaceUri2, const RuntimeMethod* method)
{
AttrName_t0B37BBC030EEC83B4B00DFCDD9C1DB43A31675F2* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<AttrName_t0B37BBC030EEC83B4B00DFCDD9C1DB43A31675F2*>(__this + _offset);
AttrName_Set_m2C5516E986819EB5B1B0084FA03E54A9C7354930(_thisAdjusted, ___prefix0, ___localName1, ___namespaceUri2, 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)
{
{
String_t* L_0 = __this->___localName_2;
String_t* L_1 = ___localName1;
bool L_2;
L_2 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_0, L_1, NULL);
if (!L_2)
{
goto IL_002b;
}
}
{
String_t* L_3 = __this->___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_0029;
}
}
{
String_t* L_6 = __this->___namespaceUri_1;
String_t* L_7 = ___namespaceUri2;
bool L_8;
L_8 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_6, L_7, NULL);
return L_8;
}
IL_0029:
{
return (bool)1;
}
IL_002b:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool AttrName_IsDuplicate_m201E2290AC6091EC056BEB923BFD9F35C1293F1C_AdjustorThunk (RuntimeObject* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___namespaceUri2, const RuntimeMethod* method)
{
AttrName_t0B37BBC030EEC83B4B00DFCDD9C1DB43A31675F2* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<AttrName_t0B37BBC030EEC83B4B00DFCDD9C1DB43A31675F2*>(__this + _offset);
bool _returnValue;
_returnValue = AttrName_IsDuplicate_m201E2290AC6091EC056BEB923BFD9F35C1293F1C(_thisAdjusted, ___prefix0, ___localName1, ___namespaceUri2, 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
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String System.Xml.XmlWellFormedWriter/AttributeValueCache::get_StringValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AttributeValueCache_get_StringValue_m369D8C130C793C4646C02209CF225F4B79F5A8F3 (AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___singleStringValue_1;
if (!L_0)
{
goto IL_000f;
}
}
{
String_t* L_1 = __this->___singleStringValue_1;
return L_1;
}
IL_000f:
{
StringBuilder_t* L_2 = __this->___stringValue_0;
NullCheck(L_2);
String_t* L_3;
L_3 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_2);
return L_3;
}
}
// 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)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1710B4477A01FFE20514D8AA61891F364D71C25B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral35B44AA64754DEDC52915E7F763C081CF5B004D9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral513659CEF285C73478E9829E41D7E4C23DB53E12);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral893D84FF4ED81AC205FBC0C67CBEE1C0C752B406);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral96930EC8C6FD5250BB36A5E1040AB06A9588FD62);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = __this->___singleStringValue_1;
if (!L_0)
{
goto IL_000e;
}
}
{
AttributeValueCache_StartComplexValue_m87925DC78517289C6E00D7B389E3FD118ED6AC87(__this, NULL);
}
IL_000e:
{
String_t* L_1 = ___name0;
bool L_2;
L_2 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_1, _stringLiteral35B44AA64754DEDC52915E7F763C081CF5B004D9, NULL);
if (L_2)
{
goto IL_0051;
}
}
{
String_t* L_3 = ___name0;
bool L_4;
L_4 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_3, _stringLiteral1710B4477A01FFE20514D8AA61891F364D71C25B, NULL);
if (L_4)
{
goto IL_0061;
}
}
{
String_t* L_5 = ___name0;
bool L_6;
L_6 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_5, _stringLiteral893D84FF4ED81AC205FBC0C67CBEE1C0C752B406, NULL);
if (L_6)
{
goto IL_0071;
}
}
{
String_t* L_7 = ___name0;
bool L_8;
L_8 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_7, _stringLiteral513659CEF285C73478E9829E41D7E4C23DB53E12, NULL);
if (L_8)
{
goto IL_0081;
}
}
{
String_t* L_9 = ___name0;
bool L_10;
L_10 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_9, _stringLiteral96930EC8C6FD5250BB36A5E1040AB06A9588FD62, NULL);
if (L_10)
{
goto IL_0091;
}
}
{
goto IL_00a1;
}
IL_0051:
{
StringBuilder_t* L_11 = __this->___stringValue_0;
NullCheck(L_11);
StringBuilder_t* L_12;
L_12 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_11, ((int32_t)60), NULL);
goto IL_00ca;
}
IL_0061:
{
StringBuilder_t* L_13 = __this->___stringValue_0;
NullCheck(L_13);
StringBuilder_t* L_14;
L_14 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_13, ((int32_t)62), NULL);
goto IL_00ca;
}
IL_0071:
{
StringBuilder_t* L_15 = __this->___stringValue_0;
NullCheck(L_15);
StringBuilder_t* L_16;
L_16 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_15, ((int32_t)34), NULL);
goto IL_00ca;
}
IL_0081:
{
StringBuilder_t* L_17 = __this->___stringValue_0;
NullCheck(L_17);
StringBuilder_t* L_18;
L_18 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_17, ((int32_t)39), NULL);
goto IL_00ca;
}
IL_0091:
{
StringBuilder_t* L_19 = __this->___stringValue_0;
NullCheck(L_19);
StringBuilder_t* L_20;
L_20 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_19, ((int32_t)38), NULL);
goto IL_00ca;
}
IL_00a1:
{
StringBuilder_t* L_21 = __this->___stringValue_0;
NullCheck(L_21);
StringBuilder_t* L_22;
L_22 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_21, ((int32_t)38), NULL);
StringBuilder_t* L_23 = __this->___stringValue_0;
String_t* L_24 = ___name0;
NullCheck(L_23);
StringBuilder_t* L_25;
L_25 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_23, L_24, NULL);
StringBuilder_t* L_26 = __this->___stringValue_0;
NullCheck(L_26);
StringBuilder_t* L_27;
L_27 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_26, ((int32_t)59), NULL);
}
IL_00ca:
{
String_t* L_28 = ___name0;
AttributeValueCache_AddItem_mCCBDF145AB4C1B9086C6D51CBEEFEE3C1D52727A(__this, 0, L_28, NULL);
return;
}
}
// 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)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = __this->___singleStringValue_1;
if (!L_0)
{
goto IL_000e;
}
}
{
AttributeValueCache_StartComplexValue_m87925DC78517289C6E00D7B389E3FD118ED6AC87(__this, NULL);
}
IL_000e:
{
StringBuilder_t* L_1 = __this->___stringValue_0;
Il2CppChar L_2 = ___ch0;
NullCheck(L_1);
StringBuilder_t* L_3;
L_3 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_1, L_2, NULL);
Il2CppChar L_4 = ___ch0;
Il2CppChar L_5 = L_4;
RuntimeObject* L_6 = Box(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var, &L_5);
AttributeValueCache_AddItem_mCCBDF145AB4C1B9086C6D51CBEEFEE3C1D52727A(__this, 1, L_6, NULL);
return;
}
}
// 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)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = __this->___singleStringValue_1;
if (!L_0)
{
goto IL_000e;
}
}
{
AttributeValueCache_StartComplexValue_m87925DC78517289C6E00D7B389E3FD118ED6AC87(__this, NULL);
}
IL_000e:
{
StringBuilder_t* L_1 = __this->___stringValue_0;
Il2CppChar L_2 = ___highChar1;
NullCheck(L_1);
StringBuilder_t* L_3;
L_3 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_1, L_2, NULL);
StringBuilder_t* L_4 = __this->___stringValue_0;
Il2CppChar L_5 = ___lowChar0;
NullCheck(L_4);
StringBuilder_t* L_6;
L_6 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_4, L_5, NULL);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_7 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)2);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_8 = L_7;
Il2CppChar L_9 = ___lowChar0;
NullCheck(L_8);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)L_9);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_10 = L_8;
Il2CppChar L_11 = ___highChar1;
NullCheck(L_10);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(1), (Il2CppChar)L_11);
AttributeValueCache_AddItem_mCCBDF145AB4C1B9086C6D51CBEEFEE3C1D52727A(__this, 2, (RuntimeObject*)L_10, NULL);
return;
}
}
// 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)
{
{
String_t* L_0 = __this->___singleStringValue_1;
if (!L_0)
{
goto IL_000e;
}
}
{
AttributeValueCache_StartComplexValue_m87925DC78517289C6E00D7B389E3FD118ED6AC87(__this, NULL);
}
IL_000e:
{
StringBuilder_t* L_1 = __this->___stringValue_0;
String_t* L_2 = ___ws0;
NullCheck(L_1);
StringBuilder_t* L_3;
L_3 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_1, L_2, NULL);
String_t* L_4 = ___ws0;
AttributeValueCache_AddItem_mCCBDF145AB4C1B9086C6D51CBEEFEE3C1D52727A(__this, 3, L_4, NULL);
return;
}
}
// 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)
{
{
String_t* L_0 = __this->___singleStringValue_1;
if (!L_0)
{
goto IL_0010;
}
}
{
AttributeValueCache_StartComplexValue_m87925DC78517289C6E00D7B389E3FD118ED6AC87(__this, NULL);
goto IL_0021;
}
IL_0010:
{
int32_t L_1 = __this->___lastItem_4;
if ((!(((uint32_t)L_1) == ((uint32_t)(-1)))))
{
goto IL_0021;
}
}
{
String_t* L_2 = ___text0;
__this->___singleStringValue_1 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___singleStringValue_1), (void*)L_2);
return;
}
IL_0021:
{
StringBuilder_t* L_3 = __this->___stringValue_0;
String_t* L_4 = ___text0;
NullCheck(L_3);
StringBuilder_t* L_5;
L_5 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_3, L_4, NULL);
String_t* L_6 = ___text0;
AttributeValueCache_AddItem_mCCBDF145AB4C1B9086C6D51CBEEFEE3C1D52727A(__this, 4, L_6, NULL);
return;
}
}
// 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)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = __this->___singleStringValue_1;
if (!L_0)
{
goto IL_000e;
}
}
{
AttributeValueCache_StartComplexValue_m87925DC78517289C6E00D7B389E3FD118ED6AC87(__this, NULL);
}
IL_000e:
{
StringBuilder_t* L_1 = __this->___stringValue_0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = ___buffer0;
int32_t L_3 = ___index1;
int32_t L_4 = ___count2;
NullCheck(L_1);
StringBuilder_t* L_5;
L_5 = StringBuilder_Append_mC09A30993B77CC4D8E906720683B6386F0E15747(L_1, L_2, L_3, L_4, NULL);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = ___buffer0;
int32_t L_7 = ___index1;
int32_t L_8 = ___count2;
BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD* L_9 = (BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD*)il2cpp_codegen_object_new(BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD_il2cpp_TypeInfo_var);
NullCheck(L_9);
BufferChunk__ctor_m9EDC7D5AC6E379514A74A2ADA6546803AFA2DABF(L_9, L_6, L_7, L_8, NULL);
AttributeValueCache_AddItem_mCCBDF145AB4C1B9086C6D51CBEEFEE3C1D52727A(__this, 5, L_9, NULL);
return;
}
}
// 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)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = __this->___singleStringValue_1;
if (!L_0)
{
goto IL_000e;
}
}
{
AttributeValueCache_StartComplexValue_m87925DC78517289C6E00D7B389E3FD118ED6AC87(__this, NULL);
}
IL_000e:
{
StringBuilder_t* L_1 = __this->___stringValue_0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = ___buffer0;
int32_t L_3 = ___index1;
int32_t L_4 = ___count2;
NullCheck(L_1);
StringBuilder_t* L_5;
L_5 = StringBuilder_Append_mC09A30993B77CC4D8E906720683B6386F0E15747(L_1, L_2, L_3, L_4, NULL);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = ___buffer0;
int32_t L_7 = ___index1;
int32_t L_8 = ___count2;
BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD* L_9 = (BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD*)il2cpp_codegen_object_new(BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD_il2cpp_TypeInfo_var);
NullCheck(L_9);
BufferChunk__ctor_m9EDC7D5AC6E379514A74A2ADA6546803AFA2DABF(L_9, L_6, L_7, L_8, NULL);
AttributeValueCache_AddItem_mCCBDF145AB4C1B9086C6D51CBEEFEE3C1D52727A(__this, 7, L_9, NULL);
return;
}
}
// 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)
{
{
String_t* L_0 = __this->___singleStringValue_1;
if (!L_0)
{
goto IL_000e;
}
}
{
AttributeValueCache_StartComplexValue_m87925DC78517289C6E00D7B389E3FD118ED6AC87(__this, NULL);
}
IL_000e:
{
StringBuilder_t* L_1 = __this->___stringValue_0;
String_t* L_2 = ___data0;
NullCheck(L_1);
StringBuilder_t* L_3;
L_3 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_1, L_2, NULL);
String_t* L_4 = ___data0;
AttributeValueCache_AddItem_mCCBDF145AB4C1B9086C6D51CBEEFEE3C1D52727A(__this, 6, L_4, NULL);
return;
}
}
// 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)
{
{
String_t* L_0 = __this->___singleStringValue_1;
if (!L_0)
{
goto IL_000e;
}
}
{
AttributeValueCache_StartComplexValue_m87925DC78517289C6E00D7B389E3FD118ED6AC87(__this, NULL);
}
IL_000e:
{
StringBuilder_t* L_1 = __this->___stringValue_0;
String_t* L_2 = ___value0;
NullCheck(L_1);
StringBuilder_t* L_3;
L_3 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_1, L_2, NULL);
String_t* L_4 = ___value0;
AttributeValueCache_AddItem_mCCBDF145AB4C1B9086C6D51CBEEFEE3C1D52727A(__this, 8, L_4, NULL);
return;
}
}
// 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)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD* V_0 = NULL;
int32_t V_1 = 0;
Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* V_2 = NULL;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_3 = NULL;
int32_t V_4 = 0;
{
String_t* L_0 = __this->___singleStringValue_1;
if (!L_0)
{
goto IL_0015;
}
}
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_1 = ___writer0;
String_t* L_2 = __this->___singleStringValue_1;
NullCheck(L_1);
VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, L_1, L_2);
return;
}
IL_0015:
{
int32_t L_3 = __this->___firstItem_3;
V_1 = L_3;
goto IL_0148;
}
IL_0021:
{
ItemU5BU5D_t73F5828D4F7289CE7330E03744883B67DA02047D* L_4 = __this->___items_2;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
V_2 = L_7;
Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* L_8 = V_2;
NullCheck(L_8);
int32_t L_9 = L_8->___type_0;
V_4 = L_9;
int32_t L_10 = V_4;
switch (L_10)
{
case 0:
{
goto IL_0062;
}
case 1:
{
goto IL_0078;
}
case 2:
{
goto IL_008e;
}
case 3:
{
goto IL_00ab;
}
case 4:
{
goto IL_00c1;
}
case 5:
{
goto IL_00d4;
}
case 6:
{
goto IL_00fa;
}
case 7:
{
goto IL_010d;
}
case 8:
{
goto IL_0133;
}
}
}
{
goto IL_0144;
}
IL_0062:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_11 = ___writer0;
Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* L_12 = V_2;
NullCheck(L_12);
RuntimeObject* L_13 = L_12->___data_1;
NullCheck(L_11);
VirtualActionInvoker1< String_t* >::Invoke(17 /* System.Void System.Xml.XmlWriter::WriteEntityRef(System.String) */, L_11, ((String_t*)CastclassSealed((RuntimeObject*)L_13, String_t_il2cpp_TypeInfo_var)));
goto IL_0144;
}
IL_0078:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_14 = ___writer0;
Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* L_15 = V_2;
NullCheck(L_15);
RuntimeObject* L_16 = L_15->___data_1;
NullCheck(L_14);
VirtualActionInvoker1< Il2CppChar >::Invoke(18 /* System.Void System.Xml.XmlWriter::WriteCharEntity(System.Char) */, L_14, ((*(Il2CppChar*)((Il2CppChar*)(Il2CppChar*)UnBox(L_16, Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var)))));
goto IL_0144;
}
IL_008e:
{
Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* L_17 = V_2;
NullCheck(L_17);
RuntimeObject* L_18 = L_17->___data_1;
V_3 = ((CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)Castclass((RuntimeObject*)L_18, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var));
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_19 = ___writer0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_20 = V_3;
NullCheck(L_20);
int32_t L_21 = 0;
uint16_t L_22 = (uint16_t)(L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_23 = V_3;
NullCheck(L_23);
int32_t L_24 = 1;
uint16_t L_25 = (uint16_t)(L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
NullCheck(L_19);
VirtualActionInvoker2< Il2CppChar, Il2CppChar >::Invoke(21 /* System.Void System.Xml.XmlWriter::WriteSurrogateCharEntity(System.Char,System.Char) */, L_19, L_22, L_25);
goto IL_0144;
}
IL_00ab:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_26 = ___writer0;
Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* L_27 = V_2;
NullCheck(L_27);
RuntimeObject* L_28 = L_27->___data_1;
NullCheck(L_26);
VirtualActionInvoker1< String_t* >::Invoke(19 /* System.Void System.Xml.XmlWriter::WriteWhitespace(System.String) */, L_26, ((String_t*)CastclassSealed((RuntimeObject*)L_28, String_t_il2cpp_TypeInfo_var)));
goto IL_0144;
}
IL_00c1:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_29 = ___writer0;
Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* L_30 = V_2;
NullCheck(L_30);
RuntimeObject* L_31 = L_30->___data_1;
NullCheck(L_29);
VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, L_29, ((String_t*)CastclassSealed((RuntimeObject*)L_31, String_t_il2cpp_TypeInfo_var)));
goto IL_0144;
}
IL_00d4:
{
Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* L_32 = V_2;
NullCheck(L_32);
RuntimeObject* L_33 = L_32->___data_1;
V_0 = ((BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD*)CastclassClass((RuntimeObject*)L_33, BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD_il2cpp_TypeInfo_var));
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_34 = ___writer0;
BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD* L_35 = V_0;
NullCheck(L_35);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_36 = L_35->___buffer_0;
BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD* L_37 = V_0;
NullCheck(L_37);
int32_t L_38 = L_37->___index_1;
BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD* L_39 = V_0;
NullCheck(L_39);
int32_t L_40 = L_39->___count_2;
NullCheck(L_34);
VirtualActionInvoker3< CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(22 /* System.Void System.Xml.XmlWriter::WriteChars(System.Char[],System.Int32,System.Int32) */, L_34, L_36, L_38, L_40);
goto IL_0144;
}
IL_00fa:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_41 = ___writer0;
Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* L_42 = V_2;
NullCheck(L_42);
RuntimeObject* L_43 = L_42->___data_1;
NullCheck(L_41);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.Xml.XmlWriter::WriteRaw(System.String) */, L_41, ((String_t*)CastclassSealed((RuntimeObject*)L_43, String_t_il2cpp_TypeInfo_var)));
goto IL_0144;
}
IL_010d:
{
Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* L_44 = V_2;
NullCheck(L_44);
RuntimeObject* L_45 = L_44->___data_1;
V_0 = ((BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD*)CastclassClass((RuntimeObject*)L_45, BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD_il2cpp_TypeInfo_var));
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_46 = ___writer0;
BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD* L_47 = V_0;
NullCheck(L_47);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_48 = L_47->___buffer_0;
BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD* L_49 = V_0;
NullCheck(L_49);
int32_t L_50 = L_49->___index_1;
BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD* L_51 = V_0;
NullCheck(L_51);
int32_t L_52 = L_51->___count_2;
NullCheck(L_46);
VirtualActionInvoker3< CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(22 /* System.Void System.Xml.XmlWriter::WriteChars(System.Char[],System.Int32,System.Int32) */, L_46, L_48, L_50, L_52);
goto IL_0144;
}
IL_0133:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_53 = ___writer0;
Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* L_54 = V_2;
NullCheck(L_54);
RuntimeObject* L_55 = L_54->___data_1;
NullCheck(L_53);
VirtualActionInvoker1< String_t* >::Invoke(31 /* System.Void System.Xml.XmlWriter::WriteValue(System.String) */, L_53, ((String_t*)CastclassSealed((RuntimeObject*)L_55, String_t_il2cpp_TypeInfo_var)));
}
IL_0144:
{
int32_t L_56 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_56, 1));
}
IL_0148:
{
int32_t L_57 = V_1;
int32_t L_58 = __this->___lastItem_4;
if ((((int32_t)L_57) <= ((int32_t)L_58)))
{
goto IL_0021;
}
}
{
return;
}
}
// System.Void System.Xml.XmlWellFormedWriter/AttributeValueCache::Trim()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeValueCache_Trim_m7508E1B61AAC65605922B79215050FA1BB874118 (AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 V_1;
memset((&V_1), 0, sizeof(V_1));
int32_t V_2 = 0;
Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* V_3 = NULL;
BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD* V_4 = NULL;
int32_t V_5 = 0;
int32_t V_6 = 0;
Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* V_7 = NULL;
BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD* V_8 = NULL;
{
String_t* L_0 = __this->___singleStringValue_1;
if (!L_0)
{
goto IL_001a;
}
}
{
String_t* L_1 = __this->___singleStringValue_1;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
String_t* L_2;
L_2 = XmlConvert_TrimString_m10347633D50C56FCE0BFC58077D71AEBD88F9509(L_1, NULL);
__this->___singleStringValue_1 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___singleStringValue_1), (void*)L_2);
return;
}
IL_001a:
{
StringBuilder_t* L_3 = __this->___stringValue_0;
NullCheck(L_3);
String_t* L_4;
L_4 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_3);
String_t* L_5 = L_4;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
String_t* L_6;
L_6 = XmlConvert_TrimString_m10347633D50C56FCE0BFC58077D71AEBD88F9509(L_5, NULL);
V_0 = L_6;
String_t* L_7 = V_0;
bool L_8;
L_8 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_5, L_7, NULL);
if (!L_8)
{
goto IL_0040;
}
}
{
String_t* L_9 = V_0;
StringBuilder_t* L_10 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
NullCheck(L_10);
StringBuilder__ctor_mCD797D942316CB356205FD96415B0B7581CDAD60(L_10, L_9, NULL);
__this->___stringValue_0 = L_10;
Il2CppCodeGenWriteBarrier((void**)(&__this->___stringValue_0), (void*)L_10);
}
IL_0040:
{
XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 L_11;
L_11 = XmlCharType_get_Instance_m2D4006A9AE9EB033F6A176E31CAFAC7EF30350AD(NULL);
V_1 = L_11;
int32_t L_12 = __this->___firstItem_3;
V_2 = L_12;
goto IL_0155;
}
IL_0052:
{
ItemU5BU5D_t73F5828D4F7289CE7330E03744883B67DA02047D* L_13 = __this->___items_2;
int32_t L_14 = V_2;
NullCheck(L_13);
int32_t L_15 = L_14;
Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
V_3 = L_16;
Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* L_17 = V_3;
NullCheck(L_17);
int32_t L_18 = L_17->___type_0;
V_6 = L_18;
int32_t L_19 = V_6;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_19, 3)))
{
case 0:
{
goto IL_0089;
}
case 1:
{
goto IL_009c;
}
case 2:
{
goto IL_00d7;
}
case 3:
{
goto IL_009c;
}
case 4:
{
goto IL_00d7;
}
case 5:
{
goto IL_009c;
}
}
}
{
goto IL_0151;
}
IL_0089:
{
int32_t L_20 = __this->___firstItem_3;
__this->___firstItem_3 = ((int32_t)il2cpp_codegen_add(L_20, 1));
goto IL_0151;
}
IL_009c:
{
Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* L_21 = V_3;
Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* L_22 = V_3;
NullCheck(L_22);
RuntimeObject* L_23 = L_22->___data_1;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
String_t* L_24;
L_24 = XmlConvert_TrimStringStart_m8BC1528DC72AE253EEAB03563CB62C73A809AA75(((String_t*)CastclassSealed((RuntimeObject*)L_23, String_t_il2cpp_TypeInfo_var)), NULL);
NullCheck(L_21);
L_21->___data_1 = L_24;
Il2CppCodeGenWriteBarrier((void**)(&L_21->___data_1), (void*)L_24);
Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* L_25 = V_3;
NullCheck(L_25);
RuntimeObject* L_26 = L_25->___data_1;
NullCheck(((String_t*)CastclassSealed((RuntimeObject*)L_26, String_t_il2cpp_TypeInfo_var)));
int32_t L_27;
L_27 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(((String_t*)CastclassSealed((RuntimeObject*)L_26, String_t_il2cpp_TypeInfo_var)), NULL);
if (L_27)
{
goto IL_0151;
}
}
{
int32_t L_28 = __this->___firstItem_3;
__this->___firstItem_3 = ((int32_t)il2cpp_codegen_add(L_28, 1));
goto IL_0151;
}
IL_00d7:
{
Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* L_29 = V_3;
NullCheck(L_29);
RuntimeObject* L_30 = L_29->___data_1;
V_4 = ((BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD*)CastclassClass((RuntimeObject*)L_30, BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD_il2cpp_TypeInfo_var));
BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD* L_31 = V_4;
NullCheck(L_31);
int32_t L_32 = L_31->___index_1;
BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD* L_33 = V_4;
NullCheck(L_33);
int32_t L_34 = L_33->___count_2;
V_5 = ((int32_t)il2cpp_codegen_add(L_32, L_34));
goto IL_0115;
}
IL_00f7:
{
BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD* L_35 = V_4;
BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD* L_36 = L_35;
NullCheck(L_36);
int32_t L_37 = L_36->___index_1;
NullCheck(L_36);
L_36->___index_1 = ((int32_t)il2cpp_codegen_add(L_37, 1));
BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD* L_38 = V_4;
BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD* L_39 = L_38;
NullCheck(L_39);
int32_t L_40 = L_39->___count_2;
NullCheck(L_39);
L_39->___count_2 = ((int32_t)il2cpp_codegen_subtract(L_40, 1));
}
IL_0115:
{
BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD* L_41 = V_4;
NullCheck(L_41);
int32_t L_42 = L_41->___index_1;
int32_t L_43 = V_5;
if ((((int32_t)L_42) >= ((int32_t)L_43)))
{
goto IL_0138;
}
}
{
BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD* L_44 = V_4;
NullCheck(L_44);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_45 = L_44->___buffer_0;
BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD* L_46 = V_4;
NullCheck(L_46);
int32_t L_47 = L_46->___index_1;
NullCheck(L_45);
int32_t L_48 = L_47;
uint16_t L_49 = (uint16_t)(L_45)->GetAt(static_cast<il2cpp_array_size_t>(L_48));
bool L_50;
L_50 = XmlCharType_IsWhiteSpace_m6F9F3A19B8A95FF5CBF1B197E400A0F194AC9387((&V_1), L_49, NULL);
if (L_50)
{
goto IL_00f7;
}
}
IL_0138:
{
BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD* L_51 = V_4;
NullCheck(L_51);
int32_t L_52 = L_51->___index_1;
int32_t L_53 = V_5;
if ((!(((uint32_t)L_52) == ((uint32_t)L_53))))
{
goto IL_0151;
}
}
{
int32_t L_54 = __this->___firstItem_3;
__this->___firstItem_3 = ((int32_t)il2cpp_codegen_add(L_54, 1));
}
IL_0151:
{
int32_t L_55 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_55, 1));
}
IL_0155:
{
int32_t L_56 = V_2;
int32_t L_57 = __this->___firstItem_3;
if ((!(((uint32_t)L_56) == ((uint32_t)L_57))))
{
goto IL_016a;
}
}
{
int32_t L_58 = V_2;
int32_t L_59 = __this->___lastItem_4;
if ((((int32_t)L_58) <= ((int32_t)L_59)))
{
goto IL_0052;
}
}
IL_016a:
{
int32_t L_60 = __this->___lastItem_4;
V_2 = L_60;
goto IL_0263;
}
IL_0176:
{
ItemU5BU5D_t73F5828D4F7289CE7330E03744883B67DA02047D* L_61 = __this->___items_2;
int32_t L_62 = V_2;
NullCheck(L_61);
int32_t L_63 = L_62;
Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* L_64 = (L_61)->GetAt(static_cast<il2cpp_array_size_t>(L_63));
V_7 = L_64;
Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* L_65 = V_7;
NullCheck(L_65);
int32_t L_66 = L_65->___type_0;
V_6 = L_66;
int32_t L_67 = V_6;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_67, 3)))
{
case 0:
{
goto IL_01af;
}
case 1:
{
goto IL_01c2;
}
case 2:
{
goto IL_01fd;
}
case 3:
{
goto IL_01c2;
}
case 4:
{
goto IL_01fd;
}
case 5:
{
goto IL_01c2;
}
}
}
{
goto IL_025f;
}
IL_01af:
{
int32_t L_68 = __this->___lastItem_4;
__this->___lastItem_4 = ((int32_t)il2cpp_codegen_subtract(L_68, 1));
goto IL_025f;
}
IL_01c2:
{
Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* L_69 = V_7;
Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* L_70 = V_7;
NullCheck(L_70);
RuntimeObject* L_71 = L_70->___data_1;
il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
String_t* L_72;
L_72 = XmlConvert_TrimStringEnd_m4DF67E30CF69E3757627C0169770B8BE09C007E9(((String_t*)CastclassSealed((RuntimeObject*)L_71, String_t_il2cpp_TypeInfo_var)), NULL);
NullCheck(L_69);
L_69->___data_1 = L_72;
Il2CppCodeGenWriteBarrier((void**)(&L_69->___data_1), (void*)L_72);
Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* L_73 = V_7;
NullCheck(L_73);
RuntimeObject* L_74 = L_73->___data_1;
NullCheck(((String_t*)CastclassSealed((RuntimeObject*)L_74, String_t_il2cpp_TypeInfo_var)));
int32_t L_75;
L_75 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(((String_t*)CastclassSealed((RuntimeObject*)L_74, String_t_il2cpp_TypeInfo_var)), NULL);
if (L_75)
{
goto IL_025f;
}
}
{
int32_t L_76 = __this->___lastItem_4;
__this->___lastItem_4 = ((int32_t)il2cpp_codegen_subtract(L_76, 1));
goto IL_025f;
}
IL_01fd:
{
Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* L_77 = V_7;
NullCheck(L_77);
RuntimeObject* L_78 = L_77->___data_1;
V_8 = ((BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD*)CastclassClass((RuntimeObject*)L_78, BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD_il2cpp_TypeInfo_var));
goto IL_021c;
}
IL_020d:
{
BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD* L_79 = V_8;
BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD* L_80 = L_79;
NullCheck(L_80);
int32_t L_81 = L_80->___count_2;
NullCheck(L_80);
L_80->___count_2 = ((int32_t)il2cpp_codegen_subtract(L_81, 1));
}
IL_021c:
{
BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD* L_82 = V_8;
NullCheck(L_82);
int32_t L_83 = L_82->___count_2;
if ((((int32_t)L_83) <= ((int32_t)0)))
{
goto IL_0248;
}
}
{
BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD* L_84 = V_8;
NullCheck(L_84);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_85 = L_84->___buffer_0;
BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD* L_86 = V_8;
NullCheck(L_86);
int32_t L_87 = L_86->___index_1;
BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD* L_88 = V_8;
NullCheck(L_88);
int32_t L_89 = L_88->___count_2;
NullCheck(L_85);
int32_t L_90 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_add(L_87, L_89)), 1));
uint16_t L_91 = (uint16_t)(L_85)->GetAt(static_cast<il2cpp_array_size_t>(L_90));
bool L_92;
L_92 = XmlCharType_IsWhiteSpace_m6F9F3A19B8A95FF5CBF1B197E400A0F194AC9387((&V_1), L_91, NULL);
if (L_92)
{
goto IL_020d;
}
}
IL_0248:
{
BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD* L_93 = V_8;
NullCheck(L_93);
int32_t L_94 = L_93->___count_2;
if (L_94)
{
goto IL_025f;
}
}
{
int32_t L_95 = __this->___lastItem_4;
__this->___lastItem_4 = ((int32_t)il2cpp_codegen_subtract(L_95, 1));
}
IL_025f:
{
int32_t L_96 = V_2;
V_2 = ((int32_t)il2cpp_codegen_subtract(L_96, 1));
}
IL_0263:
{
int32_t L_97 = V_2;
int32_t L_98 = __this->___lastItem_4;
if ((!(((uint32_t)L_97) == ((uint32_t)L_98))))
{
goto IL_0278;
}
}
{
int32_t L_99 = V_2;
int32_t L_100 = __this->___firstItem_3;
if ((((int32_t)L_99) >= ((int32_t)L_100)))
{
goto IL_0176;
}
}
IL_0278:
{
return;
}
}
// System.Void System.Xml.XmlWellFormedWriter/AttributeValueCache::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeValueCache_Clear_m39DF6AD7750029A3BCD050BA64FE0EC44D3865E2 (AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* __this, const RuntimeMethod* method)
{
{
__this->___singleStringValue_1 = (String_t*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___singleStringValue_1), (void*)(String_t*)NULL);
__this->___lastItem_4 = (-1);
__this->___firstItem_3 = 0;
StringBuilder_t* L_0 = __this->___stringValue_0;
NullCheck(L_0);
StringBuilder_set_Length_mE2427BDAEF91C4E4A6C80F3BDF1F6E01DBCC2414(L_0, 0, NULL);
return;
}
}
// System.Void System.Xml.XmlWellFormedWriter/AttributeValueCache::StartComplexValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeValueCache_StartComplexValue_m87925DC78517289C6E00D7B389E3FD118ED6AC87 (AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* __this, const RuntimeMethod* method)
{
{
StringBuilder_t* L_0 = __this->___stringValue_0;
String_t* L_1 = __this->___singleStringValue_1;
NullCheck(L_0);
StringBuilder_t* L_2;
L_2 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_0, L_1, NULL);
String_t* L_3 = __this->___singleStringValue_1;
AttributeValueCache_AddItem_mCCBDF145AB4C1B9086C6D51CBEEFEE3C1D52727A(__this, 4, L_3, NULL);
__this->___singleStringValue_1 = (String_t*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___singleStringValue_1), (void*)(String_t*)NULL);
return;
}
}
// System.Void System.Xml.XmlWellFormedWriter/AttributeValueCache::AddItem(System.Xml.XmlWellFormedWriter/AttributeValueCache/ItemType,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeValueCache_AddItem_mCCBDF145AB4C1B9086C6D51CBEEFEE3C1D52727A (AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* __this, int32_t ___type0, RuntimeObject* ___data1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ItemU5BU5D_t73F5828D4F7289CE7330E03744883B67DA02047D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
ItemU5BU5D_t73F5828D4F7289CE7330E03744883B67DA02047D* V_1 = NULL;
{
int32_t L_0 = __this->___lastItem_4;
V_0 = ((int32_t)il2cpp_codegen_add(L_0, 1));
ItemU5BU5D_t73F5828D4F7289CE7330E03744883B67DA02047D* L_1 = __this->___items_2;
if (L_1)
{
goto IL_001f;
}
}
{
ItemU5BU5D_t73F5828D4F7289CE7330E03744883B67DA02047D* L_2 = (ItemU5BU5D_t73F5828D4F7289CE7330E03744883B67DA02047D*)(ItemU5BU5D_t73F5828D4F7289CE7330E03744883B67DA02047D*)SZArrayNew(ItemU5BU5D_t73F5828D4F7289CE7330E03744883B67DA02047D_il2cpp_TypeInfo_var, (uint32_t)4);
__this->___items_2 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___items_2), (void*)L_2);
goto IL_0047;
}
IL_001f:
{
ItemU5BU5D_t73F5828D4F7289CE7330E03744883B67DA02047D* L_3 = __this->___items_2;
NullCheck(L_3);
int32_t L_4 = V_0;
if ((!(((uint32_t)((int32_t)(((RuntimeArray*)L_3)->max_length))) == ((uint32_t)L_4))))
{
goto IL_0047;
}
}
{
int32_t L_5 = V_0;
ItemU5BU5D_t73F5828D4F7289CE7330E03744883B67DA02047D* L_6 = (ItemU5BU5D_t73F5828D4F7289CE7330E03744883B67DA02047D*)(ItemU5BU5D_t73F5828D4F7289CE7330E03744883B67DA02047D*)SZArrayNew(ItemU5BU5D_t73F5828D4F7289CE7330E03744883B67DA02047D_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply(L_5, 2)));
V_1 = L_6;
ItemU5BU5D_t73F5828D4F7289CE7330E03744883B67DA02047D* L_7 = __this->___items_2;
ItemU5BU5D_t73F5828D4F7289CE7330E03744883B67DA02047D* L_8 = V_1;
int32_t L_9 = V_0;
Array_Copy_m4239F97ECC23A71F4191B8722362A1AA38E2E98F((RuntimeArray*)L_7, (RuntimeArray*)L_8, L_9, NULL);
ItemU5BU5D_t73F5828D4F7289CE7330E03744883B67DA02047D* L_10 = V_1;
__this->___items_2 = L_10;
Il2CppCodeGenWriteBarrier((void**)(&__this->___items_2), (void*)L_10);
}
IL_0047:
{
ItemU5BU5D_t73F5828D4F7289CE7330E03744883B67DA02047D* L_11 = __this->___items_2;
int32_t L_12 = V_0;
NullCheck(L_11);
int32_t L_13 = L_12;
Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13));
if (L_14)
{
goto IL_005e;
}
}
{
ItemU5BU5D_t73F5828D4F7289CE7330E03744883B67DA02047D* L_15 = __this->___items_2;
int32_t L_16 = V_0;
Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* L_17 = (Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9*)il2cpp_codegen_object_new(Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9_il2cpp_TypeInfo_var);
NullCheck(L_17);
Item__ctor_m1E7121B2010DB84AD36DE26E6EE0BDD71817B3C0(L_17, NULL);
NullCheck(L_15);
ArrayElementTypeCheck (L_15, L_17);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(L_16), (Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9*)L_17);
}
IL_005e:
{
ItemU5BU5D_t73F5828D4F7289CE7330E03744883B67DA02047D* L_18 = __this->___items_2;
int32_t L_19 = V_0;
NullCheck(L_18);
int32_t L_20 = L_19;
Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* L_21 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_20));
int32_t L_22 = ___type0;
RuntimeObject* L_23 = ___data1;
NullCheck(L_21);
Item_Set_m8579C16764397A1D513ABC700CE3615B4B6D0F9E(L_21, L_22, L_23, NULL);
int32_t L_24 = V_0;
__this->___lastItem_4 = L_24;
return;
}
}
// System.Void System.Xml.XmlWellFormedWriter/AttributeValueCache::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeValueCache__ctor_m953F7E445860E3568CF1BCF095E1EECFC29938B9 (AttributeValueCache_t94943B4FF19021C61EDF61250EAD2CAB3EDA7B17* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
StringBuilder_t* L_0 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
NullCheck(L_0);
StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_0, NULL);
__this->___stringValue_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___stringValue_0), (void*)L_0);
__this->___lastItem_4 = (-1);
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
// System.Void System.Xml.XmlWellFormedWriter/AttributeValueCache/Item::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Item__ctor_m1E7121B2010DB84AD36DE26E6EE0BDD71817B3C0 (Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Void System.Xml.XmlWellFormedWriter/AttributeValueCache/Item::Set(System.Xml.XmlWellFormedWriter/AttributeValueCache/ItemType,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Item_Set_m8579C16764397A1D513ABC700CE3615B4B6D0F9E (Item_t83B429BF9519C1549A177AB55612B3451D0E9FA9* __this, int32_t ___type0, RuntimeObject* ___data1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___type0;
__this->___type_0 = L_0;
RuntimeObject* L_1 = ___data1;
__this->___data_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___data_1), (void*)L_1);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Xml.XmlWellFormedWriter/AttributeValueCache/BufferChunk::.ctor(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BufferChunk__ctor_m9EDC7D5AC6E379514A74A2ADA6546803AFA2DABF (BufferChunk_t79063E28A0BFBA3482D097815C7449104AB9B6FD* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___buffer0;
__this->___buffer_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___buffer_0), (void*)L_0);
int32_t L_1 = ___index1;
__this->___index_1 = L_1;
int32_t L_2 = ___count2;
__this->___count_2 = L_2;
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Xml.XmlWriter::WriteStartElement(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter_WriteStartElement_mAC8867077A8F222C966E6720B70F8808A655E3A0 (XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* __this, String_t* ___localName0, String_t* ___ns1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___localName0;
String_t* L_1 = ___ns1;
VirtualActionInvoker3< String_t*, String_t*, String_t* >::Invoke(9 /* System.Void System.Xml.XmlWriter::WriteStartElement(System.String,System.String,System.String) */, __this, (String_t*)NULL, L_0, L_1);
return;
}
}
// System.Void System.Xml.XmlWriter::WriteStartElement(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter_WriteStartElement_m8A1F0E62C41858AAB73A7319FDD0081B49932124 (XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* __this, String_t* ___localName0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___localName0;
VirtualActionInvoker3< String_t*, String_t*, String_t* >::Invoke(9 /* System.Void System.Xml.XmlWriter::WriteStartElement(System.String,System.String,System.String) */, __this, (String_t*)NULL, L_0, (String_t*)NULL);
return;
}
}
// System.Void System.Xml.XmlWriter::WriteAttributeString(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter_WriteAttributeString_m1F3481B4EB9D711B7CAF93FB2B7D077A43D1AABB (XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* __this, String_t* ___localName0, String_t* ___ns1, String_t* ___value2, const RuntimeMethod* method)
{
{
String_t* L_0 = ___localName0;
String_t* L_1 = ___ns1;
VirtualActionInvoker3< String_t*, String_t*, String_t* >::Invoke(12 /* System.Void System.Xml.XmlWriter::WriteStartAttribute(System.String,System.String,System.String) */, __this, (String_t*)NULL, L_0, L_1);
String_t* L_2 = ___value2;
VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, __this, L_2);
VirtualActionInvoker0::Invoke(13 /* System.Void System.Xml.XmlWriter::WriteEndAttribute() */, __this);
return;
}
}
// System.Void System.Xml.XmlWriter::WriteAttributeString(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter_WriteAttributeString_m828C9640305961C835B4B9B3D5C62E76649A08A7 (XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* __this, String_t* ___localName0, String_t* ___value1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___localName0;
VirtualActionInvoker3< String_t*, String_t*, String_t* >::Invoke(12 /* System.Void System.Xml.XmlWriter::WriteStartAttribute(System.String,System.String,System.String) */, __this, (String_t*)NULL, L_0, (String_t*)NULL);
String_t* L_1 = ___value1;
VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, __this, L_1);
VirtualActionInvoker0::Invoke(13 /* System.Void System.Xml.XmlWriter::WriteEndAttribute() */, __this);
return;
}
}
// System.Void System.Xml.XmlWriter::WriteAttributeString(System.String,System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter_WriteAttributeString_m9BECE5A394F9A9601AB66932AF0D7EF25E16AE0B (XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, String_t* ___value3, const RuntimeMethod* method)
{
{
String_t* L_0 = ___prefix0;
String_t* L_1 = ___localName1;
String_t* L_2 = ___ns2;
VirtualActionInvoker3< String_t*, String_t*, String_t* >::Invoke(12 /* System.Void System.Xml.XmlWriter::WriteStartAttribute(System.String,System.String,System.String) */, __this, L_0, L_1, L_2);
String_t* L_3 = ___value3;
VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, __this, L_3);
VirtualActionInvoker0::Invoke(13 /* System.Void System.Xml.XmlWriter::WriteEndAttribute() */, __this);
return;
}
}
// 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)
{
{
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);
return;
}
}
// System.Void System.Xml.XmlWriter::Close()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter_Close_m70BFE83F2AD6CDF309ECA99E0880689C1CC68611 (XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Xml.XmlWriter::WriteValue(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter_WriteValue_m1415F462FECC87DE3C9D44BE3DE13D5D81F76C8C (XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
if (L_0)
{
goto IL_0004;
}
}
{
return;
}
IL_0004:
{
String_t* L_1 = ___value0;
VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, __this, L_1);
return;
}
}
// System.Void System.Xml.XmlWriter::WriteAttributes(System.Xml.XmlReader,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter_WriteAttributes_m03FF7AB2A691CC944C7B3CEFA9D265F2700ED074 (XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, bool ___defattr1, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = ___reader0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_1);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralECAC83771A00C701043A940F621CC1C765D30D31)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWriter_WriteAttributes_m03FF7AB2A691CC944C7B3CEFA9D265F2700ED074_RuntimeMethod_var)));
}
IL_000e:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_2 = ___reader0;
NullCheck(L_2);
int32_t L_3;
L_3 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_2);
if ((((int32_t)L_3) == ((int32_t)1)))
{
goto IL_0021;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_4 = ___reader0;
NullCheck(L_4);
int32_t L_5;
L_5 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_4);
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)17)))))
{
goto IL_003c;
}
}
IL_0021:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_6 = ___reader0;
NullCheck(L_6);
bool L_7;
L_7 = VirtualFuncInvoker0< bool >::Invoke(27 /* System.Boolean System.Xml.XmlReader::MoveToFirstAttribute() */, L_6);
if (!L_7)
{
goto IL_00b3;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_8 = ___reader0;
bool L_9 = ___defattr1;
VirtualActionInvoker2< XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD*, bool >::Invoke(32 /* System.Void System.Xml.XmlWriter::WriteAttributes(System.Xml.XmlReader,System.Boolean) */, __this, L_8, L_9);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_10 = ___reader0;
NullCheck(L_10);
bool L_11;
L_11 = VirtualFuncInvoker0< bool >::Invoke(29 /* System.Boolean System.Xml.XmlReader::MoveToElement() */, L_10);
return;
}
IL_003c:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_12 = ___reader0;
NullCheck(L_12);
int32_t L_13;
L_13 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_12);
if ((((int32_t)L_13) == ((int32_t)2)))
{
goto IL_0055;
}
}
{
String_t* L_14 = ((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_15 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var)));
NullCheck(L_15);
XmlException__ctor_mD7C8E5B35C43BCEDBB41ADC035A38088DFE88A87(L_15, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral72CADF014178F14585E6950B62E1379BE17AA16A)), L_14, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWriter_WriteAttributes_m03FF7AB2A691CC944C7B3CEFA9D265F2700ED074_RuntimeMethod_var)));
}
IL_0055:
{
bool L_16 = ___defattr1;
if (L_16)
{
goto IL_0060;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_17 = ___reader0;
NullCheck(L_17);
bool L_18;
L_18 = XmlReader_get_IsDefaultInternal_mD8F1EBBDBC671A47D7A98D24979DEC7E2BC6336D(L_17, NULL);
if (L_18)
{
goto IL_00ab;
}
}
IL_0060:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_19 = ___reader0;
NullCheck(L_19);
String_t* L_20;
L_20 = VirtualFuncInvoker0< String_t* >::Invoke(10 /* System.String System.Xml.XmlReader::get_Prefix() */, L_19);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_21 = ___reader0;
NullCheck(L_21);
String_t* L_22;
L_22 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_21);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_23 = ___reader0;
NullCheck(L_23);
String_t* L_24;
L_24 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_23);
VirtualActionInvoker3< String_t*, String_t*, String_t* >::Invoke(12 /* System.Void System.Xml.XmlWriter::WriteStartAttribute(System.String,System.String,System.String) */, __this, L_20, L_22, L_24);
goto IL_009d;
}
IL_007a:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_25 = ___reader0;
NullCheck(L_25);
int32_t L_26;
L_26 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_25);
if ((!(((uint32_t)L_26) == ((uint32_t)5))))
{
goto IL_0091;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_27 = ___reader0;
NullCheck(L_27);
String_t* L_28;
L_28 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlReader::get_Name() */, L_27);
VirtualActionInvoker1< String_t* >::Invoke(17 /* System.Void System.Xml.XmlWriter::WriteEntityRef(System.String) */, __this, L_28);
goto IL_009d;
}
IL_0091:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_29 = ___reader0;
NullCheck(L_29);
String_t* L_30;
L_30 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_29);
VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, __this, L_30);
}
IL_009d:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_31 = ___reader0;
NullCheck(L_31);
bool L_32;
L_32 = VirtualFuncInvoker0< bool >::Invoke(30 /* System.Boolean System.Xml.XmlReader::ReadAttributeValue() */, L_31);
if (L_32)
{
goto IL_007a;
}
}
{
VirtualActionInvoker0::Invoke(13 /* System.Void System.Xml.XmlWriter::WriteEndAttribute() */, __this);
}
IL_00ab:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_33 = ___reader0;
NullCheck(L_33);
bool L_34;
L_34 = VirtualFuncInvoker0< bool >::Invoke(28 /* System.Boolean System.Xml.XmlReader::MoveToNextAttribute() */, L_33);
if (L_34)
{
goto IL_0055;
}
}
IL_00b3:
{
return;
}
}
// System.Void System.Xml.XmlWriter::WriteNode(System.Xml.XmlReader,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter_WriteNode_m9869B5DD6CA561087F3198228ADAF502FDF0253E (XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, bool ___defattr1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1F1BC4D23D8E5661364EBEC728BE303959F6CF91);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD4DAA1A26807E1A567D68B161E6A95701A3FD560);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t G_B5_0 = 0;
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = ___reader0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_1);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralECAC83771A00C701043A940F621CC1C765D30D31)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWriter_WriteNode_m9869B5DD6CA561087F3198228ADAF502FDF0253E_RuntimeMethod_var)));
}
IL_000e:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_2 = ___reader0;
NullCheck(L_2);
bool L_3;
L_3 = VirtualFuncInvoker0< bool >::Invoke(40 /* System.Boolean System.Xml.XmlReader::get_CanReadValueChunk() */, L_2);
V_0 = L_3;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_4 = ___reader0;
NullCheck(L_4);
int32_t L_5;
L_5 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_4);
if (!L_5)
{
goto IL_0025;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_6 = ___reader0;
NullCheck(L_6);
int32_t L_7;
L_7 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* System.Int32 System.Xml.XmlReader::get_Depth() */, L_6);
G_B5_0 = L_7;
goto IL_0026;
}
IL_0025:
{
G_B5_0 = (-1);
}
IL_0026:
{
V_1 = G_B5_0;
}
IL_0027:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_8 = ___reader0;
NullCheck(L_8);
int32_t L_9;
L_9 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_8);
V_2 = L_9;
int32_t L_10 = V_2;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_10, 1)))
{
case 0:
{
goto IL_007f;
}
case 1:
{
goto IL_0186;
}
case 2:
{
goto IL_00b5;
}
case 3:
{
goto IL_0118;
}
case 4:
{
goto IL_0126;
}
case 5:
{
goto IL_0186;
}
case 6:
{
goto IL_0134;
}
case 7:
{
goto IL_0172;
}
case 8:
{
goto IL_0186;
}
case 9:
{
goto IL_0148;
}
case 10:
{
goto IL_0186;
}
case 11:
{
goto IL_0186;
}
case 12:
{
goto IL_010a;
}
case 13:
{
goto IL_010a;
}
case 14:
{
goto IL_0180;
}
case 15:
{
goto IL_0186;
}
case 16:
{
goto IL_0134;
}
}
}
{
goto IL_0186;
}
IL_007f:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_11 = ___reader0;
NullCheck(L_11);
String_t* L_12;
L_12 = VirtualFuncInvoker0< String_t* >::Invoke(10 /* System.String System.Xml.XmlReader::get_Prefix() */, L_11);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_13 = ___reader0;
NullCheck(L_13);
String_t* L_14;
L_14 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_13);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_15 = ___reader0;
NullCheck(L_15);
String_t* L_16;
L_16 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_15);
VirtualActionInvoker3< String_t*, String_t*, String_t* >::Invoke(9 /* System.Void System.Xml.XmlWriter::WriteStartElement(System.String,System.String,System.String) */, __this, L_12, L_14, L_16);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_17 = ___reader0;
bool L_18 = ___defattr1;
VirtualActionInvoker2< XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD*, bool >::Invoke(32 /* System.Void System.Xml.XmlWriter::WriteAttributes(System.Xml.XmlReader,System.Boolean) */, __this, L_17, L_18);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_19 = ___reader0;
NullCheck(L_19);
bool L_20;
L_20 = VirtualFuncInvoker0< bool >::Invoke(14 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, L_19);
if (!L_20)
{
goto IL_0186;
}
}
{
VirtualActionInvoker0::Invoke(10 /* System.Void System.Xml.XmlWriter::WriteEndElement() */, __this);
goto IL_0186;
}
IL_00b5:
{
bool L_21 = V_0;
if (!L_21)
{
goto IL_00fc;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_22 = __this->___writeNodeBuffer_0;
if (L_22)
{
goto IL_00e0;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_23 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)1024));
__this->___writeNodeBuffer_0 = L_23;
Il2CppCodeGenWriteBarrier((void**)(&__this->___writeNodeBuffer_0), (void*)L_23);
goto IL_00e0;
}
IL_00d2:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_24 = __this->___writeNodeBuffer_0;
int32_t L_25 = V_3;
VirtualActionInvoker3< CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(22 /* System.Void System.Xml.XmlWriter::WriteChars(System.Char[],System.Int32,System.Int32) */, __this, L_24, 0, L_25);
}
IL_00e0:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_26 = ___reader0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_27 = __this->___writeNodeBuffer_0;
NullCheck(L_26);
int32_t L_28;
L_28 = VirtualFuncInvoker3< int32_t, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(41 /* System.Int32 System.Xml.XmlReader::ReadValueChunk(System.Char[],System.Int32,System.Int32) */, L_26, L_27, 0, ((int32_t)1024));
int32_t L_29 = L_28;
V_3 = L_29;
if ((((int32_t)L_29) > ((int32_t)0)))
{
goto IL_00d2;
}
}
{
goto IL_0186;
}
IL_00fc:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_30 = ___reader0;
NullCheck(L_30);
String_t* L_31;
L_31 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_30);
VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, __this, L_31);
goto IL_0186;
}
IL_010a:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_32 = ___reader0;
NullCheck(L_32);
String_t* L_33;
L_33 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_32);
VirtualActionInvoker1< String_t* >::Invoke(19 /* System.Void System.Xml.XmlWriter::WriteWhitespace(System.String) */, __this, L_33);
goto IL_0186;
}
IL_0118:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_34 = ___reader0;
NullCheck(L_34);
String_t* L_35;
L_35 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_34);
VirtualActionInvoker1< String_t* >::Invoke(14 /* System.Void System.Xml.XmlWriter::WriteCData(System.String) */, __this, L_35);
goto IL_0186;
}
IL_0126:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_36 = ___reader0;
NullCheck(L_36);
String_t* L_37;
L_37 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlReader::get_Name() */, L_36);
VirtualActionInvoker1< String_t* >::Invoke(17 /* System.Void System.Xml.XmlWriter::WriteEntityRef(System.String) */, __this, L_37);
goto IL_0186;
}
IL_0134:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_38 = ___reader0;
NullCheck(L_38);
String_t* L_39;
L_39 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlReader::get_Name() */, L_38);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_40 = ___reader0;
NullCheck(L_40);
String_t* L_41;
L_41 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_40);
VirtualActionInvoker2< String_t*, String_t* >::Invoke(16 /* System.Void System.Xml.XmlWriter::WriteProcessingInstruction(System.String,System.String) */, __this, L_39, L_41);
goto IL_0186;
}
IL_0148:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_42 = ___reader0;
NullCheck(L_42);
String_t* L_43;
L_43 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlReader::get_Name() */, L_42);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_44 = ___reader0;
NullCheck(L_44);
String_t* L_45;
L_45 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(22 /* System.String System.Xml.XmlReader::GetAttribute(System.String) */, L_44, _stringLiteral1F1BC4D23D8E5661364EBEC728BE303959F6CF91);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_46 = ___reader0;
NullCheck(L_46);
String_t* L_47;
L_47 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(22 /* System.String System.Xml.XmlReader::GetAttribute(System.String) */, L_46, _stringLiteralD4DAA1A26807E1A567D68B161E6A95701A3FD560);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_48 = ___reader0;
NullCheck(L_48);
String_t* L_49;
L_49 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_48);
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) */, __this, L_43, L_45, L_47, L_49);
goto IL_0186;
}
IL_0172:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_50 = ___reader0;
NullCheck(L_50);
String_t* L_51;
L_51 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_50);
VirtualActionInvoker1< String_t* >::Invoke(15 /* System.Void System.Xml.XmlWriter::WriteComment(System.String) */, __this, L_51);
goto IL_0186;
}
IL_0180:
{
VirtualActionInvoker0::Invoke(11 /* System.Void System.Xml.XmlWriter::WriteFullEndElement() */, __this);
}
IL_0186:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_52 = ___reader0;
NullCheck(L_52);
bool L_53;
L_53 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, L_52);
if (!L_53)
{
goto IL_01b0;
}
}
{
int32_t L_54 = V_1;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_55 = ___reader0;
NullCheck(L_55);
int32_t L_56;
L_56 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* System.Int32 System.Xml.XmlReader::get_Depth() */, L_55);
if ((((int32_t)L_54) < ((int32_t)L_56)))
{
goto IL_0027;
}
}
{
int32_t L_57 = V_1;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_58 = ___reader0;
NullCheck(L_58);
int32_t L_59;
L_59 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* System.Int32 System.Xml.XmlReader::get_Depth() */, L_58);
if ((!(((uint32_t)L_57) == ((uint32_t)L_59))))
{
goto IL_01b0;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_60 = ___reader0;
NullCheck(L_60);
int32_t L_61;
L_61 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_60);
if ((((int32_t)L_61) == ((int32_t)((int32_t)15))))
{
goto IL_0027;
}
}
IL_01b0:
{
return;
}
}
// System.Void System.Xml.XmlWriter::WriteElementString(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter_WriteElementString_m35A6492D83CA4686148F3D39271BC94E29811C42 (XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* __this, String_t* ___localName0, String_t* ___ns1, String_t* ___value2, const RuntimeMethod* method)
{
{
String_t* L_0 = ___localName0;
String_t* L_1 = ___ns1;
XmlWriter_WriteStartElement_mAC8867077A8F222C966E6720B70F8808A655E3A0(__this, L_0, L_1, NULL);
String_t* L_2 = ___value2;
if (!L_2)
{
goto IL_001a;
}
}
{
String_t* L_3 = ___value2;
NullCheck(L_3);
int32_t L_4;
L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL);
if (!L_4)
{
goto IL_001a;
}
}
{
String_t* L_5 = ___value2;
VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, __this, L_5);
}
IL_001a:
{
VirtualActionInvoker0::Invoke(10 /* System.Void System.Xml.XmlWriter::WriteEndElement() */, __this);
return;
}
}
// System.Void System.Xml.XmlWriter::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter_Dispose_mA0416A9B156E8271B9E129F3E91FEF6EE0A2B373 (XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* __this, const RuntimeMethod* method)
{
{
VirtualActionInvoker1< bool >::Invoke(34 /* System.Void System.Xml.XmlWriter::Dispose(System.Boolean) */, __this, (bool)1);
return;
}
}
// System.Void System.Xml.XmlWriter::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter_Dispose_m85892819F0A87F253D548139924CE7950DA5D64D (XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* __this, bool ___disposing0, const RuntimeMethod* method)
{
{
bool L_0 = ___disposing0;
if (!L_0)
{
goto IL_0012;
}
}
{
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(27 /* System.Xml.WriteState System.Xml.XmlWriter::get_WriteState() */, __this);
if ((((int32_t)L_1) == ((int32_t)5)))
{
goto IL_0012;
}
}
{
VirtualActionInvoker0::Invoke(28 /* System.Void System.Xml.XmlWriter::Close() */, __this);
}
IL_0012:
{
return;
}
}
// System.Xml.XmlWriter System.Xml.XmlWriter::Create(System.IO.Stream,System.Xml.XmlWriterSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* XmlWriter_Create_mF8D6A7AF4B53BDB0896D95E0A6D9ECE6042C3856 (Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___output0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_0 = ___settings1;
if (L_0)
{
goto IL_000a;
}
}
{
XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_1 = (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674*)il2cpp_codegen_object_new(XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674_il2cpp_TypeInfo_var);
NullCheck(L_1);
XmlWriterSettings__ctor_mD453709B5F0BA2D3E082FD52A309838171DF207C(L_1, NULL);
___settings1 = L_1;
}
IL_000a:
{
XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_2 = ___settings1;
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_3 = ___output0;
NullCheck(L_2);
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_4;
L_4 = XmlWriterSettings_CreateWriter_m64B4BF7A010DD96A301DBB270C1461EB97F62C83(L_2, L_3, NULL);
return L_4;
}
}
// System.Xml.XmlWriter System.Xml.XmlWriter::Create(System.IO.TextWriter,System.Xml.XmlWriterSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* XmlWriter_Create_m6CA81400C565A5B8E379150404E136B42B4F69A9 (TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___output0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___settings1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_0 = ___settings1;
if (L_0)
{
goto IL_000a;
}
}
{
XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_1 = (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674*)il2cpp_codegen_object_new(XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674_il2cpp_TypeInfo_var);
NullCheck(L_1);
XmlWriterSettings__ctor_mD453709B5F0BA2D3E082FD52A309838171DF207C(L_1, NULL);
___settings1 = L_1;
}
IL_000a:
{
XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_2 = ___settings1;
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_3 = ___output0;
NullCheck(L_2);
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_4;
L_4 = XmlWriterSettings_CreateWriter_m693DB4E22B11E11EA33191F7743554BD415BAB99(L_2, L_3, NULL);
return L_4;
}
}
// System.Void System.Xml.XmlWriter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter__ctor_m8944C0C05D32C64DD68AE6641BA0943BE80CE714 (XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#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.XmlWriterSettings::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriterSettings__ctor_mD453709B5F0BA2D3E082FD52A309838171DF207C (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m3AC372485EEA21872FD76F60AE7CFE6F52F6EB74_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t43EC7C138A17FAAD7120408F039923082A70301A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
List_1_t43EC7C138A17FAAD7120408F039923082A70301A* L_0 = (List_1_t43EC7C138A17FAAD7120408F039923082A70301A*)il2cpp_codegen_object_new(List_1_t43EC7C138A17FAAD7120408F039923082A70301A_il2cpp_TypeInfo_var);
NullCheck(L_0);
List_1__ctor_m3AC372485EEA21872FD76F60AE7CFE6F52F6EB74(L_0, List_1__ctor_m3AC372485EEA21872FD76F60AE7CFE6F52F6EB74_RuntimeMethod_var);
__this->___cdataSections_14 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___cdataSections_14), (void*)L_0);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
XmlWriterSettings_Initialize_m2995CAAF98DFAB3B3B6AC7219FE046DC5E3FD51A(__this, NULL);
return;
}
}
// System.Boolean System.Xml.XmlWriterSettings::get_Async()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_Async_m0444A26262668D76461EEBD468B622F8F5418A60 (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___useAsync_0;
return L_0;
}
}
// System.Text.Encoding System.Xml.XmlWriterSettings::get_Encoding()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* XmlWriterSettings_get_Encoding_mC4E1AB9D49553D659321B2BEEA46AE5D343BCBEE (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_0 = __this->___encoding_1;
return L_0;
}
}
// System.Boolean System.Xml.XmlWriterSettings::get_OmitXmlDeclaration()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_OmitXmlDeclaration_m4DDF4951F3229EB1DEEFABD680769ABB9BB881DF (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___omitXmlDecl_2;
return L_0;
}
}
// System.Void System.Xml.XmlWriterSettings::set_OmitXmlDeclaration(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriterSettings_set_OmitXmlDeclaration_mD7550E855D01522D5DE4269FC3FE45EA136C7E74 (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, bool ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7B99D512A2728329FF581D0CF25B3443E2EEEB78);
s_Il2CppMethodInitialized = true;
}
{
XmlWriterSettings_CheckReadOnly_mC616438316DF17F77BA6941FE32E3A630BC5722B(__this, _stringLiteral7B99D512A2728329FF581D0CF25B3443E2EEEB78, NULL);
bool L_0 = ___value0;
__this->___omitXmlDecl_2 = L_0;
return;
}
}
// System.Xml.NewLineHandling System.Xml.XmlWriterSettings::get_NewLineHandling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlWriterSettings_get_NewLineHandling_mE5E642195853271BBF3F6EA8399789D675D6EBE0 (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___newLineHandling_3;
return L_0;
}
}
// System.String System.Xml.XmlWriterSettings::get_NewLineChars()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlWriterSettings_get_NewLineChars_m55DA9DDAED17162E8055730FE8047AEBFA5AC7F9 (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___newLineChars_4;
return L_0;
}
}
// System.Boolean System.Xml.XmlWriterSettings::get_Indent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_Indent_mE585A2D946F32BFF63BBAD55DD3ABB00C818CDA2 (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___indent_5;
return (bool)((((int32_t)L_0) == ((int32_t)1))? 1 : 0);
}
}
// System.Void System.Xml.XmlWriterSettings::set_Indent(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriterSettings_set_Indent_m4560606B33CB7EF5DEE0F5B50A81AC8E67622661 (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, bool ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA47E14F745683FCD155E0EB9F8B881D4FDB05B21);
s_Il2CppMethodInitialized = true;
}
XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* G_B2_0 = NULL;
XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* G_B1_0 = NULL;
int32_t G_B3_0 = 0;
XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* G_B3_1 = NULL;
{
XmlWriterSettings_CheckReadOnly_mC616438316DF17F77BA6941FE32E3A630BC5722B(__this, _stringLiteralA47E14F745683FCD155E0EB9F8B881D4FDB05B21, NULL);
bool L_0 = ___value0;
G_B1_0 = __this;
if (L_0)
{
G_B2_0 = __this;
goto IL_0012;
}
}
{
G_B3_0 = 0;
G_B3_1 = G_B1_0;
goto IL_0013;
}
IL_0012:
{
G_B3_0 = 1;
G_B3_1 = G_B2_0;
}
IL_0013:
{
NullCheck(G_B3_1);
G_B3_1->___indent_5 = G_B3_0;
return;
}
}
// System.String System.Xml.XmlWriterSettings::get_IndentChars()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlWriterSettings_get_IndentChars_mF26B2899F7718E3DC75CA62FDFB5915BAF5C158D (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___indentChars_6;
return L_0;
}
}
// System.Boolean System.Xml.XmlWriterSettings::get_NewLineOnAttributes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_NewLineOnAttributes_m3ACAFD8A94C15826E9DDC4F20B280C6AF3407F7D (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___newLineOnAttributes_7;
return L_0;
}
}
// System.Boolean System.Xml.XmlWriterSettings::get_CloseOutput()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_CloseOutput_m7676FD456B701FF93BCA6C3EADE2E5DF97D7A926 (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___closeOutput_8;
return L_0;
}
}
// System.Xml.ConformanceLevel System.Xml.XmlWriterSettings::get_ConformanceLevel()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlWriterSettings_get_ConformanceLevel_mAAD6F249DE7CF83E6F97F60C9FFDD0BC84AD9842 (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___conformanceLevel_10;
return L_0;
}
}
// System.Void System.Xml.XmlWriterSettings::set_ConformanceLevel(System.Xml.ConformanceLevel)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriterSettings_set_ConformanceLevel_m926D2A6BCDE9EBA5FB82B952692A51AC54E6A9A6 (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral93D87E1629A331F43CB25BB3CFE69C4D3418FA7E);
s_Il2CppMethodInitialized = true;
}
{
XmlWriterSettings_CheckReadOnly_mC616438316DF17F77BA6941FE32E3A630BC5722B(__this, _stringLiteral93D87E1629A331F43CB25BB3CFE69C4D3418FA7E, NULL);
int32_t L_0 = ___value0;
if ((!(((uint32_t)L_0) > ((uint32_t)2))))
{
goto IL_001a;
}
}
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_1);
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWriterSettings_set_ConformanceLevel_m926D2A6BCDE9EBA5FB82B952692A51AC54E6A9A6_RuntimeMethod_var)));
}
IL_001a:
{
int32_t L_2 = ___value0;
__this->___conformanceLevel_10 = L_2;
return;
}
}
// System.Boolean System.Xml.XmlWriterSettings::get_CheckCharacters()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_CheckCharacters_mD2E14381EBF36D4C56C13F1BF4846667B4CCBB31 (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___checkCharacters_11;
return L_0;
}
}
// System.Xml.NamespaceHandling System.Xml.XmlWriterSettings::get_NamespaceHandling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlWriterSettings_get_NamespaceHandling_m3A904C3E9BA1FED8C1A8BDA66A5FF9A93CB87F78 (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___namespaceHandling_9;
return L_0;
}
}
// System.Void System.Xml.XmlWriterSettings::set_NamespaceHandling(System.Xml.NamespaceHandling)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriterSettings_set_NamespaceHandling_mEBB5E9023CBF48F8F386975EF787CE5C0F03BABA (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral504B0E499754BF3B42EAB4D1578B9F827FB4A495);
s_Il2CppMethodInitialized = true;
}
{
XmlWriterSettings_CheckReadOnly_mC616438316DF17F77BA6941FE32E3A630BC5722B(__this, _stringLiteral504B0E499754BF3B42EAB4D1578B9F827FB4A495, NULL);
int32_t L_0 = ___value0;
if ((!(((uint32_t)L_0) > ((uint32_t)1))))
{
goto IL_001a;
}
}
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_1);
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWriterSettings_set_NamespaceHandling_mEBB5E9023CBF48F8F386975EF787CE5C0F03BABA_RuntimeMethod_var)));
}
IL_001a:
{
int32_t L_2 = ___value0;
__this->___namespaceHandling_9 = L_2;
return;
}
}
// System.Boolean System.Xml.XmlWriterSettings::get_WriteEndDocumentOnClose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_WriteEndDocumentOnClose_m73A02E01FD8DB8AEBE545E9A60F92E5BFA1CBDB8 (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___writeEndDocumentOnClose_12;
return L_0;
}
}
// System.Xml.XmlOutputMethod System.Xml.XmlWriterSettings::get_OutputMethod()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlWriterSettings_get_OutputMethod_mD033562BBB2BF636CD2B093DF43FFF69FCEB2BD1 (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___outputMethod_13;
return L_0;
}
}
// System.Void System.Xml.XmlWriterSettings::set_OutputMethod(System.Xml.XmlOutputMethod)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriterSettings_set_OutputMethod_m8A74B5EE11DD5C1D00D97B896E36AA504C142837 (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->___outputMethod_13 = L_0;
return;
}
}
// System.Xml.XmlWriterSettings System.Xml.XmlWriterSettings::Clone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* XmlWriterSettings_Clone_m7D2132EF36D234189EFE3E94A7EAE6A9E94404B8 (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m3E0D05B58186A4BCD2EE0E2022AA1B95AE3DEA06_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t43EC7C138A17FAAD7120408F039923082A70301A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0;
L_0 = Object_MemberwiseClone_m0676AEE25C3CF7C09F15ECF9EC5CC407863617B3(__this, NULL);
XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_1 = ((XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674*)IsInstSealed((RuntimeObject*)L_0, XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674_il2cpp_TypeInfo_var));
List_1_t43EC7C138A17FAAD7120408F039923082A70301A* L_2 = __this->___cdataSections_14;
List_1_t43EC7C138A17FAAD7120408F039923082A70301A* L_3 = (List_1_t43EC7C138A17FAAD7120408F039923082A70301A*)il2cpp_codegen_object_new(List_1_t43EC7C138A17FAAD7120408F039923082A70301A_il2cpp_TypeInfo_var);
NullCheck(L_3);
List_1__ctor_m3E0D05B58186A4BCD2EE0E2022AA1B95AE3DEA06(L_3, L_2, List_1__ctor_m3E0D05B58186A4BCD2EE0E2022AA1B95AE3DEA06_RuntimeMethod_var);
NullCheck(L_1);
L_1->___cdataSections_14 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&L_1->___cdataSections_14), (void*)L_3);
XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_4 = L_1;
NullCheck(L_4);
L_4->___isReadOnly_22 = (bool)0;
return L_4;
}
}
// System.Collections.Generic.List`1<System.Xml.XmlQualifiedName> System.Xml.XmlWriterSettings::get_CDataSectionElements()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t43EC7C138A17FAAD7120408F039923082A70301A* XmlWriterSettings_get_CDataSectionElements_m41A55F92925DE680C957E3E18CF5414EB8D6DF58 (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
List_1_t43EC7C138A17FAAD7120408F039923082A70301A* L_0 = __this->___cdataSections_14;
return L_0;
}
}
// System.Boolean System.Xml.XmlWriterSettings::get_DoNotEscapeUriAttributes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_DoNotEscapeUriAttributes_m58342EF68EB24B7A68EADBE549304604AB230564 (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___doNotEscapeUriAttributes_15;
return L_0;
}
}
// System.Boolean System.Xml.XmlWriterSettings::get_MergeCDataSections()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_MergeCDataSections_mA287AE0C1056022F4AE21AB1295026897C2BD817 (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___mergeCDataSections_16;
return L_0;
}
}
// System.String System.Xml.XmlWriterSettings::get_MediaType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlWriterSettings_get_MediaType_m46564F22D00EE2BC79D4FFA000E09A96F0C5A6CB (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___mediaType_17;
return L_0;
}
}
// System.String System.Xml.XmlWriterSettings::get_DocTypeSystem()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlWriterSettings_get_DocTypeSystem_mA52DF45898F37EFBFAFFB19C5FF0E85DB1D59AB1 (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___docTypeSystem_18;
return L_0;
}
}
// System.String System.Xml.XmlWriterSettings::get_DocTypePublic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlWriterSettings_get_DocTypePublic_mCD450846EDA3E29E0627CBFF9A694BC276C9D847 (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___docTypePublic_19;
return L_0;
}
}
// System.Xml.XmlStandalone System.Xml.XmlWriterSettings::get_Standalone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlWriterSettings_get_Standalone_mF6BD9C7DD44EDEA0EE1416AB92471C5374DBE26B (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___standalone_20;
return L_0;
}
}
// System.Boolean System.Xml.XmlWriterSettings::get_AutoXmlDeclaration()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_AutoXmlDeclaration_m99219BABCEECCC72F64FA0062E19B2628B806A9C (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___autoXmlDecl_21;
return L_0;
}
}
// System.Xml.TriState System.Xml.XmlWriterSettings::get_IndentInternal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlWriterSettings_get_IndentInternal_m3180E0936B1C9CB8252AE222C1D17BB1A0448C22 (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___indent_5;
return L_0;
}
}
// System.Boolean System.Xml.XmlWriterSettings::get_IsQuerySpecific()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlWriterSettings_get_IsQuerySpecific_m2346B74E5641852A0BF79829B235BE3019F68DFA (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m0EEF879BA3686583502A3D0CE4E388582415D0A6_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
List_1_t43EC7C138A17FAAD7120408F039923082A70301A* L_0 = __this->___cdataSections_14;
NullCheck(L_0);
int32_t L_1;
L_1 = List_1_get_Count_m0EEF879BA3686583502A3D0CE4E388582415D0A6_inline(L_0, List_1_get_Count_m0EEF879BA3686583502A3D0CE4E388582415D0A6_RuntimeMethod_var);
if (L_1)
{
goto IL_0027;
}
}
{
String_t* L_2 = __this->___docTypePublic_19;
if (L_2)
{
goto IL_0027;
}
}
{
String_t* L_3 = __this->___docTypeSystem_18;
if (L_3)
{
goto IL_0027;
}
}
{
int32_t L_4 = __this->___standalone_20;
return (bool)((((int32_t)L_4) == ((int32_t)1))? 1 : 0);
}
IL_0027:
{
return (bool)1;
}
}
// System.Xml.XmlWriter System.Xml.XmlWriterSettings::CreateWriter(System.IO.Stream)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* XmlWriterSettings_CreateWriter_m64B4BF7A010DD96A301DBB270C1461EB97F62C83 (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___output0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HtmlEncodedRawTextWriterIndent_t6D9E69A027E84EE9EEDCFFC4021A6FEDA00AAF21_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HtmlEncodedRawTextWriter_t452DCE7E1E6FBDF73AA28D611C4682E50A82E8C2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HtmlUtf8RawTextWriterIndent_tC066D5903C4C1015116223E4A62B64637E8971A6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HtmlUtf8RawTextWriter_tBDA64D6572325D75C2E84DE787BC2D7C9A0AE850_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextUtf8RawTextWriter_t63B16D02A0D0351C035D28CF103BE455585F6B73_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlUtf8RawTextWriterIndent_tEA3E110A4E275753FE5CC8F5FF17AA132DC66B41_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB7FD6B173F8DDB3354F28BB648CED69286F416C9);
s_Il2CppMethodInitialized = true;
}
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* V_0 = NULL;
int32_t V_1 = 0;
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0 = ___output0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_1);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral71443AC7CF5CC108984A138188DE915E32441BB2)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWriterSettings_CreateWriter_m64B4BF7A010DD96A301DBB270C1461EB97F62C83_RuntimeMethod_var)));
}
IL_000e:
{
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_2;
L_2 = XmlWriterSettings_get_Encoding_mC4E1AB9D49553D659321B2BEEA46AE5D343BCBEE_inline(__this, NULL);
NullCheck(L_2);
String_t* L_3;
L_3 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Text.Encoding::get_WebName() */, L_2);
bool L_4;
L_4 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_3, _stringLiteralB7FD6B173F8DDB3354F28BB648CED69286F416C9, NULL);
if (!L_4)
{
goto IL_009e;
}
}
{
int32_t L_5;
L_5 = XmlWriterSettings_get_OutputMethod_mD033562BBB2BF636CD2B093DF43FFF69FCEB2BD1_inline(__this, NULL);
V_1 = L_5;
int32_t L_6 = V_1;
switch (L_6)
{
case 0:
{
goto IL_0044;
}
case 1:
{
goto IL_0066;
}
case 2:
{
goto IL_0088;
}
case 3:
{
goto IL_0092;
}
}
}
{
goto IL_009c;
}
IL_0044:
{
bool L_7;
L_7 = XmlWriterSettings_get_Indent_mE585A2D946F32BFF63BBAD55DD3ABB00C818CDA2(__this, NULL);
if (!L_7)
{
goto IL_0059;
}
}
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_8 = ___output0;
XmlUtf8RawTextWriterIndent_tEA3E110A4E275753FE5CC8F5FF17AA132DC66B41* L_9 = (XmlUtf8RawTextWriterIndent_tEA3E110A4E275753FE5CC8F5FF17AA132DC66B41*)il2cpp_codegen_object_new(XmlUtf8RawTextWriterIndent_tEA3E110A4E275753FE5CC8F5FF17AA132DC66B41_il2cpp_TypeInfo_var);
NullCheck(L_9);
XmlUtf8RawTextWriterIndent__ctor_m359ACF4D20F85FAA43B85868425F1AA4A53FFB9F(L_9, L_8, __this, NULL);
V_0 = L_9;
goto IL_010b;
}
IL_0059:
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_10 = ___output0;
XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB* L_11 = (XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB*)il2cpp_codegen_object_new(XmlUtf8RawTextWriter_t509951DC424E22E80C9848992ACC324E94E264FB_il2cpp_TypeInfo_var);
NullCheck(L_11);
XmlUtf8RawTextWriter__ctor_m3FED45E976C290A249ADEFDCB6B4D899997D6FB2(L_11, L_10, __this, NULL);
V_0 = L_11;
goto IL_010b;
}
IL_0066:
{
bool L_12;
L_12 = XmlWriterSettings_get_Indent_mE585A2D946F32BFF63BBAD55DD3ABB00C818CDA2(__this, NULL);
if (!L_12)
{
goto IL_007b;
}
}
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_13 = ___output0;
HtmlUtf8RawTextWriterIndent_tC066D5903C4C1015116223E4A62B64637E8971A6* L_14 = (HtmlUtf8RawTextWriterIndent_tC066D5903C4C1015116223E4A62B64637E8971A6*)il2cpp_codegen_object_new(HtmlUtf8RawTextWriterIndent_tC066D5903C4C1015116223E4A62B64637E8971A6_il2cpp_TypeInfo_var);
NullCheck(L_14);
HtmlUtf8RawTextWriterIndent__ctor_m33278556F018B1C30908D7A77E38B07E0FC27B0C(L_14, L_13, __this, NULL);
V_0 = L_14;
goto IL_010b;
}
IL_007b:
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_15 = ___output0;
HtmlUtf8RawTextWriter_tBDA64D6572325D75C2E84DE787BC2D7C9A0AE850* L_16 = (HtmlUtf8RawTextWriter_tBDA64D6572325D75C2E84DE787BC2D7C9A0AE850*)il2cpp_codegen_object_new(HtmlUtf8RawTextWriter_tBDA64D6572325D75C2E84DE787BC2D7C9A0AE850_il2cpp_TypeInfo_var);
NullCheck(L_16);
HtmlUtf8RawTextWriter__ctor_mA1F2A26D176CDD4BE7707C2E0226ACEB775735DD(L_16, L_15, __this, NULL);
V_0 = L_16;
goto IL_010b;
}
IL_0088:
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_17 = ___output0;
TextUtf8RawTextWriter_t63B16D02A0D0351C035D28CF103BE455585F6B73* L_18 = (TextUtf8RawTextWriter_t63B16D02A0D0351C035D28CF103BE455585F6B73*)il2cpp_codegen_object_new(TextUtf8RawTextWriter_t63B16D02A0D0351C035D28CF103BE455585F6B73_il2cpp_TypeInfo_var);
NullCheck(L_18);
TextUtf8RawTextWriter__ctor_m6220E9A18AC54E47143C779232F23C4B993DC467(L_18, L_17, __this, NULL);
V_0 = L_18;
goto IL_010b;
}
IL_0092:
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_19 = ___output0;
XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* L_20 = (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA*)il2cpp_codegen_object_new(XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA_il2cpp_TypeInfo_var);
NullCheck(L_20);
XmlAutoDetectWriter__ctor_m49BFF556FF8509246492598A7C8DBE081795C7B7(L_20, L_19, __this, NULL);
V_0 = L_20;
goto IL_010b;
}
IL_009c:
{
return (XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F*)NULL;
}
IL_009e:
{
int32_t L_21;
L_21 = XmlWriterSettings_get_OutputMethod_mD033562BBB2BF636CD2B093DF43FFF69FCEB2BD1_inline(__this, NULL);
V_1 = L_21;
int32_t L_22 = V_1;
switch (L_22)
{
case 0:
{
goto IL_00bd;
}
case 1:
{
goto IL_00d9;
}
case 2:
{
goto IL_00f5;
}
case 3:
{
goto IL_00ff;
}
}
}
{
goto IL_0109;
}
IL_00bd:
{
bool L_23;
L_23 = XmlWriterSettings_get_Indent_mE585A2D946F32BFF63BBAD55DD3ABB00C818CDA2(__this, NULL);
if (!L_23)
{
goto IL_00cf;
}
}
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_24 = ___output0;
XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008* L_25 = (XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008*)il2cpp_codegen_object_new(XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008_il2cpp_TypeInfo_var);
NullCheck(L_25);
XmlEncodedRawTextWriterIndent__ctor_m8EF4F1D5B307902AD9CEDB88765F784F2B46B8BE(L_25, L_24, __this, NULL);
V_0 = L_25;
goto IL_010b;
}
IL_00cf:
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_26 = ___output0;
XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* L_27 = (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4*)il2cpp_codegen_object_new(XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4_il2cpp_TypeInfo_var);
NullCheck(L_27);
XmlEncodedRawTextWriter__ctor_mEDAEC401E6AB69FC8728E0217038DFEBE2C3F564(L_27, L_26, __this, NULL);
V_0 = L_27;
goto IL_010b;
}
IL_00d9:
{
bool L_28;
L_28 = XmlWriterSettings_get_Indent_mE585A2D946F32BFF63BBAD55DD3ABB00C818CDA2(__this, NULL);
if (!L_28)
{
goto IL_00eb;
}
}
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_29 = ___output0;
HtmlEncodedRawTextWriterIndent_t6D9E69A027E84EE9EEDCFFC4021A6FEDA00AAF21* L_30 = (HtmlEncodedRawTextWriterIndent_t6D9E69A027E84EE9EEDCFFC4021A6FEDA00AAF21*)il2cpp_codegen_object_new(HtmlEncodedRawTextWriterIndent_t6D9E69A027E84EE9EEDCFFC4021A6FEDA00AAF21_il2cpp_TypeInfo_var);
NullCheck(L_30);
HtmlEncodedRawTextWriterIndent__ctor_m60E33631D199B14FC56F1DDED0AEBB25F7EE84F7(L_30, L_29, __this, NULL);
V_0 = L_30;
goto IL_010b;
}
IL_00eb:
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_31 = ___output0;
HtmlEncodedRawTextWriter_t452DCE7E1E6FBDF73AA28D611C4682E50A82E8C2* L_32 = (HtmlEncodedRawTextWriter_t452DCE7E1E6FBDF73AA28D611C4682E50A82E8C2*)il2cpp_codegen_object_new(HtmlEncodedRawTextWriter_t452DCE7E1E6FBDF73AA28D611C4682E50A82E8C2_il2cpp_TypeInfo_var);
NullCheck(L_32);
HtmlEncodedRawTextWriter__ctor_mF883AB9B78DC025B83B82805FD55574F5E8FDA29(L_32, L_31, __this, NULL);
V_0 = L_32;
goto IL_010b;
}
IL_00f5:
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_33 = ___output0;
TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01* L_34 = (TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01*)il2cpp_codegen_object_new(TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01_il2cpp_TypeInfo_var);
NullCheck(L_34);
TextEncodedRawTextWriter__ctor_m4C6DDBDA6F89D63BBB72AFCB2D4B5CCD52801A9E(L_34, L_33, __this, NULL);
V_0 = L_34;
goto IL_010b;
}
IL_00ff:
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_35 = ___output0;
XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* L_36 = (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA*)il2cpp_codegen_object_new(XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA_il2cpp_TypeInfo_var);
NullCheck(L_36);
XmlAutoDetectWriter__ctor_m49BFF556FF8509246492598A7C8DBE081795C7B7(L_36, L_35, __this, NULL);
V_0 = L_36;
goto IL_010b;
}
IL_0109:
{
return (XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F*)NULL;
}
IL_010b:
{
int32_t L_37;
L_37 = XmlWriterSettings_get_OutputMethod_mD033562BBB2BF636CD2B093DF43FFF69FCEB2BD1_inline(__this, NULL);
if ((((int32_t)L_37) == ((int32_t)3)))
{
goto IL_0129;
}
}
{
bool L_38;
L_38 = XmlWriterSettings_get_IsQuerySpecific_m2346B74E5641852A0BF79829B235BE3019F68DFA(__this, NULL);
if (!L_38)
{
goto IL_0129;
}
}
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_39 = V_0;
QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2* L_40 = (QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2*)il2cpp_codegen_object_new(QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2_il2cpp_TypeInfo_var);
NullCheck(L_40);
QueryOutputWriter__ctor_m719E09C06E20C2EC55BCEF055A8CB865EEFAAC25(L_40, ((XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B*)CastclassClass((RuntimeObject*)L_39, XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B_il2cpp_TypeInfo_var)), __this, NULL);
V_0 = L_40;
}
IL_0129:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_41 = V_0;
XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* L_42 = (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645*)il2cpp_codegen_object_new(XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var);
NullCheck(L_42);
XmlWellFormedWriter__ctor_m15CD03B5614B921745BD07E2CC0E253AC3FB09FF(L_42, L_41, __this, NULL);
V_0 = L_42;
bool L_43 = __this->___useAsync_0;
if (!L_43)
{
goto IL_0140;
}
}
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_44 = V_0;
XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C* L_45 = (XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C*)il2cpp_codegen_object_new(XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C_il2cpp_TypeInfo_var);
NullCheck(L_45);
XmlAsyncCheckWriter__ctor_mF26B7294DC235BD71761488DE271E04B72A4AA86(L_45, L_44, NULL);
V_0 = L_45;
}
IL_0140:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_46 = V_0;
return L_46;
}
}
// System.Xml.XmlWriter System.Xml.XmlWriterSettings::CreateWriter(System.IO.TextWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* XmlWriterSettings_CreateWriter_m693DB4E22B11E11EA33191F7743554BD415BAB99 (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___output0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HtmlEncodedRawTextWriterIndent_t6D9E69A027E84EE9EEDCFFC4021A6FEDA00AAF21_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HtmlEncodedRawTextWriter_t452DCE7E1E6FBDF73AA28D611C4682E50A82E8C2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4_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);
s_Il2CppMethodInitialized = true;
}
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* V_0 = NULL;
int32_t V_1 = 0;
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0 = ___output0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_1);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral71443AC7CF5CC108984A138188DE915E32441BB2)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWriterSettings_CreateWriter_m693DB4E22B11E11EA33191F7743554BD415BAB99_RuntimeMethod_var)));
}
IL_000e:
{
int32_t L_2;
L_2 = XmlWriterSettings_get_OutputMethod_mD033562BBB2BF636CD2B093DF43FFF69FCEB2BD1_inline(__this, NULL);
V_1 = L_2;
int32_t L_3 = V_1;
switch (L_3)
{
case 0:
{
goto IL_002d;
}
case 1:
{
goto IL_0049;
}
case 2:
{
goto IL_0065;
}
case 3:
{
goto IL_006f;
}
}
}
{
goto IL_0079;
}
IL_002d:
{
bool L_4;
L_4 = XmlWriterSettings_get_Indent_mE585A2D946F32BFF63BBAD55DD3ABB00C818CDA2(__this, NULL);
if (!L_4)
{
goto IL_003f;
}
}
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_5 = ___output0;
XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008* L_6 = (XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008*)il2cpp_codegen_object_new(XmlEncodedRawTextWriterIndent_t494D77F8E0243711A6F758AA021A265C7DD70008_il2cpp_TypeInfo_var);
NullCheck(L_6);
XmlEncodedRawTextWriterIndent__ctor_m7BFBA4A39946979954046339236C555015565A09(L_6, L_5, __this, NULL);
V_0 = L_6;
goto IL_007b;
}
IL_003f:
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_7 = ___output0;
XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4* L_8 = (XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4*)il2cpp_codegen_object_new(XmlEncodedRawTextWriter_t555452A93F2FEFE35034BD8B5D65E979E729E1D4_il2cpp_TypeInfo_var);
NullCheck(L_8);
XmlEncodedRawTextWriter__ctor_mF6EBA0A44503EE7400D3901E059BDFEB8110B205(L_8, L_7, __this, NULL);
V_0 = L_8;
goto IL_007b;
}
IL_0049:
{
bool L_9;
L_9 = XmlWriterSettings_get_Indent_mE585A2D946F32BFF63BBAD55DD3ABB00C818CDA2(__this, NULL);
if (!L_9)
{
goto IL_005b;
}
}
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_10 = ___output0;
HtmlEncodedRawTextWriterIndent_t6D9E69A027E84EE9EEDCFFC4021A6FEDA00AAF21* L_11 = (HtmlEncodedRawTextWriterIndent_t6D9E69A027E84EE9EEDCFFC4021A6FEDA00AAF21*)il2cpp_codegen_object_new(HtmlEncodedRawTextWriterIndent_t6D9E69A027E84EE9EEDCFFC4021A6FEDA00AAF21_il2cpp_TypeInfo_var);
NullCheck(L_11);
HtmlEncodedRawTextWriterIndent__ctor_m751B814A6AE947DD56855DB2CF0BC5532D79A657(L_11, L_10, __this, NULL);
V_0 = L_11;
goto IL_007b;
}
IL_005b:
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_12 = ___output0;
HtmlEncodedRawTextWriter_t452DCE7E1E6FBDF73AA28D611C4682E50A82E8C2* L_13 = (HtmlEncodedRawTextWriter_t452DCE7E1E6FBDF73AA28D611C4682E50A82E8C2*)il2cpp_codegen_object_new(HtmlEncodedRawTextWriter_t452DCE7E1E6FBDF73AA28D611C4682E50A82E8C2_il2cpp_TypeInfo_var);
NullCheck(L_13);
HtmlEncodedRawTextWriter__ctor_m1EF2062FDFCDFFA4AAAC2801374E277C3D0C7A63(L_13, L_12, __this, NULL);
V_0 = L_13;
goto IL_007b;
}
IL_0065:
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_14 = ___output0;
TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01* L_15 = (TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01*)il2cpp_codegen_object_new(TextEncodedRawTextWriter_t12E89CB265B2C3A8511799332CBB269B597DEA01_il2cpp_TypeInfo_var);
NullCheck(L_15);
TextEncodedRawTextWriter__ctor_m0F3178F2FEB6E3D0034A426601B62115A33F3058(L_15, L_14, __this, NULL);
V_0 = L_15;
goto IL_007b;
}
IL_006f:
{
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_16 = ___output0;
XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA* L_17 = (XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA*)il2cpp_codegen_object_new(XmlAutoDetectWriter_tD652BD82D53729D3F906AD0A07FFAB4B62BB98DA_il2cpp_TypeInfo_var);
NullCheck(L_17);
XmlAutoDetectWriter__ctor_mBE391F3E538FC4006D2CDDA419CADB70323CDECC(L_17, L_16, __this, NULL);
V_0 = L_17;
goto IL_007b;
}
IL_0079:
{
return (XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F*)NULL;
}
IL_007b:
{
int32_t L_18;
L_18 = XmlWriterSettings_get_OutputMethod_mD033562BBB2BF636CD2B093DF43FFF69FCEB2BD1_inline(__this, NULL);
if ((((int32_t)L_18) == ((int32_t)3)))
{
goto IL_0099;
}
}
{
bool L_19;
L_19 = XmlWriterSettings_get_IsQuerySpecific_m2346B74E5641852A0BF79829B235BE3019F68DFA(__this, NULL);
if (!L_19)
{
goto IL_0099;
}
}
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_20 = V_0;
QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2* L_21 = (QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2*)il2cpp_codegen_object_new(QueryOutputWriter_t89F1627DE47F1B919E8451A6EDFB258AC61985E2_il2cpp_TypeInfo_var);
NullCheck(L_21);
QueryOutputWriter__ctor_m719E09C06E20C2EC55BCEF055A8CB865EEFAAC25(L_21, ((XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B*)CastclassClass((RuntimeObject*)L_20, XmlRawWriter_t030FA78C87BA4AA20BBC4507D0EEFAFD5AF3712B_il2cpp_TypeInfo_var)), __this, NULL);
V_0 = L_21;
}
IL_0099:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_22 = V_0;
XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645* L_23 = (XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645*)il2cpp_codegen_object_new(XmlWellFormedWriter_t15CF95499DCBB82CD642D36B9B9F83BAA18AA645_il2cpp_TypeInfo_var);
NullCheck(L_23);
XmlWellFormedWriter__ctor_m15CD03B5614B921745BD07E2CC0E253AC3FB09FF(L_23, L_22, __this, NULL);
V_0 = L_23;
bool L_24 = __this->___useAsync_0;
if (!L_24)
{
goto IL_00b0;
}
}
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_25 = V_0;
XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C* L_26 = (XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C*)il2cpp_codegen_object_new(XmlAsyncCheckWriter_t98A6D0BF4760A0189CE7B062959545425ABC847C_il2cpp_TypeInfo_var);
NullCheck(L_26);
XmlAsyncCheckWriter__ctor_mF26B7294DC235BD71761488DE271E04B72A4AA86(L_26, L_25, NULL);
V_0 = L_26;
}
IL_00b0:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_27 = V_0;
return L_27;
}
}
// System.Void System.Xml.XmlWriterSettings::set_ReadOnly(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriterSettings_set_ReadOnly_m912EC500806EE683803491EED4796F954F57AB42 (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->___isReadOnly_22 = L_0;
return;
}
}
// System.Void System.Xml.XmlWriterSettings::CheckReadOnly(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriterSettings_CheckReadOnly_mC616438316DF17F77BA6941FE32E3A630BC5722B (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, String_t* ___propertyName0, const RuntimeMethod* method)
{
{
bool L_0 = __this->___isReadOnly_22;
if (!L_0)
{
goto IL_0029;
}
}
{
Type_t* L_1;
L_1 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(__this, NULL);
NullCheck(L_1);
String_t* L_2;
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_1);
String_t* L_3 = ___propertyName0;
String_t* L_4;
L_4 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D)), L_3, NULL);
XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_5 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var)));
NullCheck(L_5);
XmlException__ctor_mD7C8E5B35C43BCEDBB41ADC035A38088DFE88A87(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral044BADD70F84141B60AE555B5513ABA7D660F738)), L_4, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWriterSettings_CheckReadOnly_mC616438316DF17F77BA6941FE32E3A630BC5722B_RuntimeMethod_var)));
}
IL_0029:
{
return;
}
}
// System.Void System.Xml.XmlWriterSettings::Initialize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriterSettings_Initialize_m2995CAAF98DFAB3B3B6AC7219FE046DC5E3FD51A (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m8B5B3A84C4C120283944FA6E7345B04B5409C673_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8A8EFDA91C6C257127F8C8D526FAD7E7552766AA);
s_Il2CppMethodInitialized = true;
}
{
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_0;
L_0 = Encoding_get_UTF8_m9700ADA8E0F244002B2A89B483F1B2133B8FE336(NULL);
__this->___encoding_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___encoding_1), (void*)L_0);
__this->___omitXmlDecl_2 = (bool)0;
__this->___newLineHandling_3 = 0;
String_t* L_1;
L_1 = Environment_get_NewLine_m86172FA1FF2F93F740EFB5760938B35750DD35C0(NULL);
__this->___newLineChars_4 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___newLineChars_4), (void*)L_1);
__this->___indent_5 = (-1);
__this->___indentChars_6 = _stringLiteral8A8EFDA91C6C257127F8C8D526FAD7E7552766AA;
Il2CppCodeGenWriteBarrier((void**)(&__this->___indentChars_6), (void*)_stringLiteral8A8EFDA91C6C257127F8C8D526FAD7E7552766AA);
__this->___newLineOnAttributes_7 = (bool)0;
__this->___closeOutput_8 = (bool)0;
__this->___namespaceHandling_9 = 0;
__this->___conformanceLevel_10 = 2;
__this->___checkCharacters_11 = (bool)1;
__this->___writeEndDocumentOnClose_12 = (bool)1;
__this->___outputMethod_13 = 0;
List_1_t43EC7C138A17FAAD7120408F039923082A70301A* L_2 = __this->___cdataSections_14;
NullCheck(L_2);
List_1_Clear_m8B5B3A84C4C120283944FA6E7345B04B5409C673_inline(L_2, List_1_Clear_m8B5B3A84C4C120283944FA6E7345B04B5409C673_RuntimeMethod_var);
__this->___mergeCDataSections_16 = (bool)0;
__this->___mediaType_17 = (String_t*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___mediaType_17), (void*)(String_t*)NULL);
__this->___docTypeSystem_18 = (String_t*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___docTypeSystem_18), (void*)(String_t*)NULL);
__this->___docTypePublic_19 = (String_t*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___docTypePublic_19), (void*)(String_t*)NULL);
__this->___standalone_20 = 0;
__this->___doNotEscapeUriAttributes_15 = (bool)0;
__this->___useAsync_0 = (bool)0;
__this->___isReadOnly_22 = (bool)0;
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Xml.XsdCachingReader::.ctor(System.Xml.XmlReader,System.Xml.IXmlLineInfo,System.Xml.CachingEventHandler)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdCachingReader__ctor_mA5C3DBB1AE966E01E356B395EF98F22FA8D4780F (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, RuntimeObject* ___lineInfo1, CachingEventHandler_t3531836C36E56CCAAB45B3B7DA1B4F94742FE74E* ___handlerMethod2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var);
XmlReader__ctor_m4E3A6201CC692B2B2F05ED58652056E893995477(__this, NULL);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = ___reader0;
__this->___coreReader_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___coreReader_3), (void*)L_0);
RuntimeObject* L_1 = ___lineInfo1;
__this->___lineInfo_16 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___lineInfo_16), (void*)L_1);
CachingEventHandler_t3531836C36E56CCAAB45B3B7DA1B4F94742FE74E* L_2 = ___handlerMethod2;
__this->___cacheHandler_12 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___cacheHandler_12), (void*)L_2);
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* L_3 = (ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8*)(ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8*)SZArrayNew(ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8_il2cpp_TypeInfo_var, (uint32_t)8);
__this->___attributeEvents_6 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___attributeEvents_6), (void*)L_3);
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* L_4 = (ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8*)(ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8*)SZArrayNew(ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8_il2cpp_TypeInfo_var, (uint32_t)4);
__this->___contentEvents_5 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->___contentEvents_5), (void*)L_4);
XsdCachingReader_Init_m87C292780A2459E8AB47E8323F73096E4E5EDC4D(__this, NULL);
return;
}
}
// System.Void System.Xml.XsdCachingReader::Init()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdCachingReader_Init_m87C292780A2459E8AB47E8323F73096E4E5EDC4D (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __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);
__this->___coreReaderNameTable_4 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___coreReaderNameTable_4), (void*)L_1);
__this->___cacheState_8 = 1;
__this->___contentIndex_9 = 0;
__this->___currentAttrIndex_13 = (-1);
__this->___currentContentIndex_14 = (-1);
__this->___attributeCount_10 = 0;
__this->___cachedNode_7 = (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___cachedNode_7), (void*)(ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C*)NULL);
__this->___readAhead_15 = (bool)0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_2 = __this->___coreReader_3;
NullCheck(L_2);
int32_t L_3;
L_3 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_2);
if ((!(((uint32_t)L_3) == ((uint32_t)1))))
{
goto IL_00a4;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_4 = __this->___coreReader_3;
NullCheck(L_4);
int32_t L_5;
L_5 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_4);
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_6;
L_6 = XsdCachingReader_AddContent_mFBDABE9A03291D95B7E8518BABACCC113E091EE2(__this, L_5, NULL);
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_7 = L_6;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_8 = __this->___coreReader_3;
NullCheck(L_8);
String_t* L_9;
L_9 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_8);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_10 = __this->___coreReader_3;
NullCheck(L_10);
String_t* L_11;
L_11 = VirtualFuncInvoker0< String_t* >::Invoke(10 /* System.String System.Xml.XmlReader::get_Prefix() */, L_10);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_12 = __this->___coreReader_3;
NullCheck(L_12);
String_t* L_13;
L_13 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_12);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_14 = __this->___coreReader_3;
NullCheck(L_14);
int32_t L_15;
L_15 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* System.Int32 System.Xml.XmlReader::get_Depth() */, L_14);
NullCheck(L_7);
ValidatingReaderNodeData_SetItemData_m60B5ABC34768946CDA319A032F5B03A49D63D15A(L_7, L_9, L_11, L_13, L_15, NULL);
RuntimeObject* L_16 = __this->___lineInfo_16;
NullCheck(L_7);
ValidatingReaderNodeData_SetLineInfo_m5FDDF387540E6541CCC92AF98CE0A53C4BF564B0(L_7, L_16, NULL);
XsdCachingReader_RecordAttributes_mAE1CCD836B4FEEAB73D4CC725E4C4D6BD204F89A(__this, NULL);
}
IL_00a4:
{
return;
}
}
// System.Void System.Xml.XsdCachingReader::Reset(System.Xml.XmlReader)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdCachingReader_Reset_m191DEFA89552471F15D279F6DB46B725E3D68483 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = ___reader0;
__this->___coreReader_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___coreReader_3), (void*)L_0);
XsdCachingReader_Init_m87C292780A2459E8AB47E8323F73096E4E5EDC4D(__this, NULL);
return;
}
}
// System.Xml.XmlReaderSettings System.Xml.XsdCachingReader::get_Settings()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* XsdCachingReader_get_Settings_mD9E074F7F3975CEF1B8E2B64D8CB2FC2FF2A8A08 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3;
NullCheck(L_0);
XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_1;
L_1 = VirtualFuncInvoker0< XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* >::Invoke(5 /* System.Xml.XmlReaderSettings System.Xml.XmlReader::get_Settings() */, L_0);
return L_1;
}
}
// System.Xml.XmlNodeType System.Xml.XsdCachingReader::get_NodeType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdCachingReader_get_NodeType_mF13CF19F026B1BD4CF9E46AF74CC6E739F2CA8F9 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, const RuntimeMethod* method)
{
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_0 = __this->___cachedNode_7;
NullCheck(L_0);
int32_t L_1;
L_1 = ValidatingReaderNodeData_get_NodeType_m3E275338D3EAE907A584E73F6C5E35EA6B932CE6_inline(L_0, NULL);
return L_1;
}
}
// System.String System.Xml.XsdCachingReader::get_Name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsdCachingReader_get_Name_m66CD0295EDC08383DBD077A75038DB75C6216F81 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, const RuntimeMethod* method)
{
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_0 = __this->___cachedNode_7;
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_1 = __this->___coreReaderNameTable_4;
NullCheck(L_0);
String_t* L_2;
L_2 = ValidatingReaderNodeData_GetAtomizedNameWPrefix_m46C836E6E3638B0C449430C2B5B9CCBF8F1A0BEE(L_0, L_1, NULL);
return L_2;
}
}
// System.String System.Xml.XsdCachingReader::get_LocalName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsdCachingReader_get_LocalName_mB7F7B44509B28A6F2A40731A59360988314A0F90 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, const RuntimeMethod* method)
{
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_0 = __this->___cachedNode_7;
NullCheck(L_0);
String_t* L_1;
L_1 = ValidatingReaderNodeData_get_LocalName_m1B5FCCE13DF4BA2F5CF1AD689A9186064EB5349D_inline(L_0, NULL);
return L_1;
}
}
// System.String System.Xml.XsdCachingReader::get_NamespaceURI()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsdCachingReader_get_NamespaceURI_m1D196B0F0B154D30AD24EEA59C5D64DC79885D24 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, const RuntimeMethod* method)
{
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_0 = __this->___cachedNode_7;
NullCheck(L_0);
String_t* L_1;
L_1 = ValidatingReaderNodeData_get_Namespace_mE44583C79C6B1F0C5C6C2768590464A804E57FF6_inline(L_0, NULL);
return L_1;
}
}
// System.String System.Xml.XsdCachingReader::get_Prefix()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsdCachingReader_get_Prefix_mB63568B6D52B898CC6367C5AA3FF4CD209C4FB80 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, const RuntimeMethod* method)
{
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_0 = __this->___cachedNode_7;
NullCheck(L_0);
String_t* L_1;
L_1 = ValidatingReaderNodeData_get_Prefix_m47A65BB79C9FE8B2152542E47AB5DB9FDD0F3D34_inline(L_0, NULL);
return L_1;
}
}
// System.String System.Xml.XsdCachingReader::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsdCachingReader_get_Value_m200C578A109BC95D4E13561E4A060F3233F44BC0 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___returnOriginalStringValues_11;
if (L_0)
{
goto IL_0014;
}
}
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_1 = __this->___cachedNode_7;
NullCheck(L_1);
String_t* L_2;
L_2 = ValidatingReaderNodeData_get_RawValue_m910C83DC6975C87F12721378D46110F5A19B272B_inline(L_1, NULL);
return L_2;
}
IL_0014:
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_3 = __this->___cachedNode_7;
NullCheck(L_3);
String_t* L_4;
L_4 = ValidatingReaderNodeData_get_OriginalStringValue_m7324BC2DF5C5339DA89755D74D480D7CD842D95C_inline(L_3, NULL);
return L_4;
}
}
// System.Int32 System.Xml.XsdCachingReader::get_Depth()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdCachingReader_get_Depth_mF92F899D3BA57C0B50D2A61E229B79FBE3D79D3F (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, const RuntimeMethod* method)
{
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_0 = __this->___cachedNode_7;
NullCheck(L_0);
int32_t L_1;
L_1 = ValidatingReaderNodeData_get_Depth_m08B579D77C5CA1CEA934CD16CB8CB36040A1E59D_inline(L_0, NULL);
return L_1;
}
}
// System.String System.Xml.XsdCachingReader::get_BaseURI()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsdCachingReader_get_BaseURI_m5626B0A79D2AD94BD273326CA225376FA52369B1 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __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.XsdCachingReader::get_IsEmptyElement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XsdCachingReader_get_IsEmptyElement_mF86C70B4E069C2FF89D5DCF184508D9A9B7A83A2 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Boolean System.Xml.XsdCachingReader::get_IsDefault()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XsdCachingReader_get_IsDefault_m16C091ECCDAB40D071D2535FFF3EF08AE8B9B07F (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Char System.Xml.XsdCachingReader::get_QuoteChar()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar XsdCachingReader_get_QuoteChar_mFC243842B9AF2304957080C46DB30B3E3F3ABBB5 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __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.XsdCachingReader::get_XmlSpace()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdCachingReader_get_XmlSpace_m89358D6C80877CDB89672EA870F2B1A54264BFEC (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __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.XsdCachingReader::get_XmlLang()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsdCachingReader_get_XmlLang_mD89D244CBD167C54E8F562967C9805D44750C8EA (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __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.Int32 System.Xml.XsdCachingReader::get_AttributeCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdCachingReader_get_AttributeCount_m68798CAD0744AD2CDE4A4E5D79AD33614F65B502 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___attributeCount_10;
return L_0;
}
}
// System.String System.Xml.XsdCachingReader::GetAttribute(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsdCachingReader_GetAttribute_mC7B0398B164C883136A01F690EE4ADC3A29F075D (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, String_t* ___name0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
String_t* L_0 = ___name0;
NullCheck(L_0);
int32_t L_1;
L_1 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_0, ((int32_t)58), NULL);
if ((!(((uint32_t)L_1) == ((uint32_t)(-1)))))
{
goto IL_0015;
}
}
{
String_t* L_2 = ___name0;
int32_t L_3;
L_3 = XsdCachingReader_GetAttributeIndexWithoutPrefix_m328281605B34AB0E22E43439B553EFD59C7DE87A(__this, L_2, NULL);
V_0 = L_3;
goto IL_001d;
}
IL_0015:
{
String_t* L_4 = ___name0;
int32_t L_5;
L_5 = XsdCachingReader_GetAttributeIndexWithPrefix_mF39DDFCF01078A069ADDAA2CC23418DE585EDDA5(__this, L_4, NULL);
V_0 = L_5;
}
IL_001d:
{
int32_t L_6 = V_0;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_0023;
}
}
{
return (String_t*)NULL;
}
IL_0023:
{
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* L_7 = __this->___attributeEvents_6;
int32_t L_8 = V_0;
NullCheck(L_7);
int32_t L_9 = L_8;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
NullCheck(L_10);
String_t* L_11;
L_11 = ValidatingReaderNodeData_get_RawValue_m910C83DC6975C87F12721378D46110F5A19B272B_inline(L_10, NULL);
return L_11;
}
}
// System.String System.Xml.XsdCachingReader::GetAttribute(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsdCachingReader_GetAttribute_m74B0A6642F81F21112728CD8F77D977E358669DD (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, String_t* ___name0, String_t* ___namespaceURI1, 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;
}
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* V_0 = NULL;
int32_t V_1 = 0;
String_t* G_B3_0 = NULL;
{
String_t* L_0 = ___namespaceURI1;
if (!L_0)
{
goto IL_0011;
}
}
{
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_1 = __this->___coreReaderNameTable_4;
String_t* L_2 = ___namespaceURI1;
NullCheck(L_1);
String_t* L_3;
L_3 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(4 /* System.String System.Xml.XmlNameTable::Get(System.String) */, L_1, L_2);
G_B3_0 = L_3;
goto IL_0016;
}
IL_0011:
{
String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
G_B3_0 = L_4;
}
IL_0016:
{
___namespaceURI1 = G_B3_0;
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_5 = __this->___coreReaderNameTable_4;
String_t* L_6 = ___name0;
NullCheck(L_5);
String_t* L_7;
L_7 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(4 /* System.String System.Xml.XmlNameTable::Get(System.String) */, L_5, L_6);
___name0 = L_7;
V_1 = 0;
goto IL_005a;
}
IL_002a:
{
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* L_8 = __this->___attributeEvents_6;
int32_t L_9 = V_1;
NullCheck(L_8);
int32_t L_10 = L_9;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
V_0 = L_11;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_12 = V_0;
NullCheck(L_12);
String_t* L_13;
L_13 = ValidatingReaderNodeData_get_LocalName_m1B5FCCE13DF4BA2F5CF1AD689A9186064EB5349D_inline(L_12, NULL);
String_t* L_14 = ___name0;
bool L_15;
L_15 = Ref_Equal_m91CE186A8D713DBCF387B2A4AA83138704C7B8B1(L_13, L_14, NULL);
if (!L_15)
{
goto IL_0056;
}
}
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_16 = V_0;
NullCheck(L_16);
String_t* L_17;
L_17 = ValidatingReaderNodeData_get_Namespace_mE44583C79C6B1F0C5C6C2768590464A804E57FF6_inline(L_16, NULL);
String_t* L_18 = ___namespaceURI1;
bool L_19;
L_19 = Ref_Equal_m91CE186A8D713DBCF387B2A4AA83138704C7B8B1(L_17, L_18, NULL);
if (!L_19)
{
goto IL_0056;
}
}
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_20 = V_0;
NullCheck(L_20);
String_t* L_21;
L_21 = ValidatingReaderNodeData_get_RawValue_m910C83DC6975C87F12721378D46110F5A19B272B_inline(L_20, NULL);
return L_21;
}
IL_0056:
{
int32_t L_22 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_22, 1));
}
IL_005a:
{
int32_t L_23 = V_1;
int32_t L_24 = __this->___attributeCount_10;
if ((((int32_t)L_23) < ((int32_t)L_24)))
{
goto IL_002a;
}
}
{
return (String_t*)NULL;
}
}
// System.String System.Xml.XsdCachingReader::GetAttribute(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsdCachingReader_GetAttribute_m67F6909057AB3D572DDE26EA565E4C877B995D4B (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, int32_t ___i0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___i0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_000d;
}
}
{
int32_t L_1 = ___i0;
int32_t L_2 = __this->___attributeCount_10;
if ((((int32_t)L_1) < ((int32_t)L_2)))
{
goto IL_0018;
}
}
IL_000d:
{
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*)&_stringLiteral1B8590E2F95A4B0631E98EAF5F61AFD63A1C031E)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XsdCachingReader_GetAttribute_m67F6909057AB3D572DDE26EA565E4C877B995D4B_RuntimeMethod_var)));
}
IL_0018:
{
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* L_4 = __this->___attributeEvents_6;
int32_t L_5 = ___i0;
NullCheck(L_4);
int32_t L_6 = L_5;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
NullCheck(L_7);
String_t* L_8;
L_8 = ValidatingReaderNodeData_get_RawValue_m910C83DC6975C87F12721378D46110F5A19B272B_inline(L_7, NULL);
return L_8;
}
}
// System.Boolean System.Xml.XsdCachingReader::MoveToAttribute(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XsdCachingReader_MoveToAttribute_mB649D45C8C8510111F2DB01BCB01512FC3DDEFD4 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, String_t* ___name0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
String_t* L_0 = ___name0;
NullCheck(L_0);
int32_t L_1;
L_1 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_0, ((int32_t)58), NULL);
if ((!(((uint32_t)L_1) == ((uint32_t)(-1)))))
{
goto IL_0015;
}
}
{
String_t* L_2 = ___name0;
int32_t L_3;
L_3 = XsdCachingReader_GetAttributeIndexWithoutPrefix_m328281605B34AB0E22E43439B553EFD59C7DE87A(__this, L_2, NULL);
V_0 = L_3;
goto IL_001d;
}
IL_0015:
{
String_t* L_4 = ___name0;
int32_t L_5;
L_5 = XsdCachingReader_GetAttributeIndexWithPrefix_mF39DDFCF01078A069ADDAA2CC23418DE585EDDA5(__this, L_4, NULL);
V_0 = L_5;
}
IL_001d:
{
int32_t L_6 = V_0;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0038;
}
}
{
int32_t L_7 = V_0;
__this->___currentAttrIndex_13 = L_7;
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* L_8 = __this->___attributeEvents_6;
int32_t L_9 = V_0;
NullCheck(L_8);
int32_t L_10 = L_9;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
__this->___cachedNode_7 = L_11;
Il2CppCodeGenWriteBarrier((void**)(&__this->___cachedNode_7), (void*)L_11);
return (bool)1;
}
IL_0038:
{
return (bool)0;
}
}
// System.Void System.Xml.XsdCachingReader::MoveToAttribute(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdCachingReader_MoveToAttribute_m52825E228EF437CCA66372B1A191F7E092B19BCB (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, int32_t ___i0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___i0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_000d;
}
}
{
int32_t L_1 = ___i0;
int32_t L_2 = __this->___attributeCount_10;
if ((((int32_t)L_1) < ((int32_t)L_2)))
{
goto IL_0018;
}
}
IL_000d:
{
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*)&_stringLiteral1B8590E2F95A4B0631E98EAF5F61AFD63A1C031E)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XsdCachingReader_MoveToAttribute_m52825E228EF437CCA66372B1A191F7E092B19BCB_RuntimeMethod_var)));
}
IL_0018:
{
int32_t L_4 = ___i0;
__this->___currentAttrIndex_13 = L_4;
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* L_5 = __this->___attributeEvents_6;
int32_t L_6 = ___i0;
NullCheck(L_5);
int32_t L_7 = L_6;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
__this->___cachedNode_7 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->___cachedNode_7), (void*)L_8);
return;
}
}
// System.Boolean System.Xml.XsdCachingReader::MoveToFirstAttribute()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XsdCachingReader_MoveToFirstAttribute_m86E4D9E391F4D1855330C2A6279194432382FD35 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___attributeCount_10;
if (L_0)
{
goto IL_000a;
}
}
{
return (bool)0;
}
IL_000a:
{
__this->___currentAttrIndex_13 = 0;
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* L_1 = __this->___attributeEvents_6;
NullCheck(L_1);
int32_t L_2 = 0;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_3 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
__this->___cachedNode_7 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___cachedNode_7), (void*)L_3);
return (bool)1;
}
}
// System.Boolean System.Xml.XsdCachingReader::MoveToNextAttribute()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XsdCachingReader_MoveToNextAttribute_m11E37725A8FDBCD5F63E111ADE8A1DC14B461E73 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->___currentAttrIndex_13;
int32_t L_1 = __this->___attributeCount_10;
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_0, 1))) >= ((int32_t)L_1)))
{
goto IL_0030;
}
}
{
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* L_2 = __this->___attributeEvents_6;
int32_t L_3 = __this->___currentAttrIndex_13;
V_0 = ((int32_t)il2cpp_codegen_add(L_3, 1));
int32_t L_4 = V_0;
__this->___currentAttrIndex_13 = L_4;
int32_t L_5 = V_0;
NullCheck(L_2);
int32_t L_6 = L_5;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_7 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
__this->___cachedNode_7 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&__this->___cachedNode_7), (void*)L_7);
return (bool)1;
}
IL_0030:
{
return (bool)0;
}
}
// System.Boolean System.Xml.XsdCachingReader::MoveToElement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XsdCachingReader_MoveToElement_m40822EABF55BFFD273A3F1A7741FE6E3EE02E1B5 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___cacheState_8;
if ((!(((uint32_t)L_0) == ((uint32_t)3))))
{
goto IL_0017;
}
}
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_1 = __this->___cachedNode_7;
NullCheck(L_1);
int32_t L_2;
L_2 = ValidatingReaderNodeData_get_NodeType_m3E275338D3EAE907A584E73F6C5E35EA6B932CE6_inline(L_1, NULL);
if ((((int32_t)L_2) == ((int32_t)2)))
{
goto IL_0019;
}
}
IL_0017:
{
return (bool)0;
}
IL_0019:
{
__this->___currentContentIndex_14 = 0;
__this->___currentAttrIndex_13 = (-1);
bool L_3;
L_3 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, __this);
return (bool)1;
}
}
// System.Boolean System.Xml.XsdCachingReader::Read()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XsdCachingReader_Read_m8E35559C38C5953E46A1C5133BE2E0389107C833 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, const RuntimeMethod* method)
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* V_0 = NULL;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = __this->___cacheState_8;
V_1 = L_0;
int32_t L_1 = V_1;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_1, 1)))
{
case 0:
{
goto IL_0020;
}
case 1:
{
goto IL_0027;
}
case 2:
{
goto IL_013b;
}
}
}
{
goto IL_01b2;
}
IL_0020:
{
__this->___cacheState_8 = 2;
}
IL_0027:
{
V_0 = (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C*)NULL;
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_0132;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_4 = __this->___coreReader_3;
NullCheck(L_4);
int32_t L_5;
L_5 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_4);
V_2 = L_5;
int32_t L_6 = V_2;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_6, 1)))
{
case 0:
{
goto IL_008e;
}
case 1:
{
goto IL_0129;
}
case 2:
{
goto IL_00e9;
}
case 3:
{
goto IL_00e9;
}
case 4:
{
goto IL_0129;
}
case 5:
{
goto IL_0129;
}
case 6:
{
goto IL_00e9;
}
case 7:
{
goto IL_00e9;
}
case 8:
{
goto IL_0129;
}
case 9:
{
goto IL_0129;
}
case 10:
{
goto IL_0129;
}
case 11:
{
goto IL_0129;
}
case 12:
{
goto IL_00e9;
}
case 13:
{
goto IL_00e9;
}
case 14:
{
goto IL_0097;
}
}
}
{
goto IL_0129;
}
IL_008e:
{
__this->___cacheState_8 = 4;
return (bool)0;
}
IL_0097:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_7 = __this->___coreReader_3;
NullCheck(L_7);
int32_t L_8;
L_8 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_7);
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_9;
L_9 = XsdCachingReader_AddContent_mFBDABE9A03291D95B7E8518BABACCC113E091EE2(__this, L_8, NULL);
V_0 = L_9;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_10 = V_0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_11 = __this->___coreReader_3;
NullCheck(L_11);
String_t* L_12;
L_12 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_11);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_13 = __this->___coreReader_3;
NullCheck(L_13);
String_t* L_14;
L_14 = VirtualFuncInvoker0< String_t* >::Invoke(10 /* System.String System.Xml.XmlReader::get_Prefix() */, L_13);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_15 = __this->___coreReader_3;
NullCheck(L_15);
String_t* L_16;
L_16 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_15);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_17 = __this->___coreReader_3;
NullCheck(L_17);
int32_t L_18;
L_18 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* System.Int32 System.Xml.XmlReader::get_Depth() */, L_17);
NullCheck(L_10);
ValidatingReaderNodeData_SetItemData_m60B5ABC34768946CDA319A032F5B03A49D63D15A(L_10, L_12, L_14, L_16, L_18, NULL);
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_19 = V_0;
RuntimeObject* L_20 = __this->___lineInfo_16;
NullCheck(L_19);
ValidatingReaderNodeData_SetLineInfo_m5FDDF387540E6541CCC92AF98CE0A53C4BF564B0(L_19, L_20, NULL);
goto IL_0129;
}
IL_00e9:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_21 = __this->___coreReader_3;
NullCheck(L_21);
int32_t L_22;
L_22 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_21);
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_23;
L_23 = XsdCachingReader_AddContent_mFBDABE9A03291D95B7E8518BABACCC113E091EE2(__this, L_22, NULL);
V_0 = L_23;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_24 = V_0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_25 = __this->___coreReader_3;
NullCheck(L_25);
String_t* L_26;
L_26 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_25);
NullCheck(L_24);
ValidatingReaderNodeData_SetItemData_mA8A50401A6E8A82C6F5DB7D166EB1DACD0450FA4(L_24, L_26, NULL);
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_27 = V_0;
RuntimeObject* L_28 = __this->___lineInfo_16;
NullCheck(L_27);
ValidatingReaderNodeData_SetLineInfo_m5FDDF387540E6541CCC92AF98CE0A53C4BF564B0(L_27, L_28, NULL);
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_29 = V_0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_30 = __this->___coreReader_3;
NullCheck(L_30);
int32_t L_31;
L_31 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* System.Int32 System.Xml.XmlReader::get_Depth() */, L_30);
NullCheck(L_29);
ValidatingReaderNodeData_set_Depth_m67104201A7E9C3E72FF18CD75CF28CCEEB349D8B_inline(L_29, L_31, NULL);
}
IL_0129:
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_32 = V_0;
__this->___cachedNode_7 = L_32;
Il2CppCodeGenWriteBarrier((void**)(&__this->___cachedNode_7), (void*)L_32);
return (bool)1;
}
IL_0132:
{
__this->___cacheState_8 = 4;
return (bool)0;
}
IL_013b:
{
int32_t L_33 = __this->___currentContentIndex_14;
int32_t L_34 = __this->___contentIndex_9;
if ((((int32_t)L_33) < ((int32_t)L_34)))
{
goto IL_0180;
}
}
{
__this->___cacheState_8 = 4;
CachingEventHandler_t3531836C36E56CCAAB45B3B7DA1B4F94742FE74E* L_35 = __this->___cacheHandler_12;
NullCheck(L_35);
CachingEventHandler_Invoke_mE544A7147BAE33B6F1A434723ACF2C561F3CB02F_inline(L_35, __this, NULL);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_36 = __this->___coreReader_3;
NullCheck(L_36);
int32_t L_37;
L_37 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_36);
if ((!(((uint32_t)L_37) == ((uint32_t)1))))
{
goto IL_0172;
}
}
{
bool L_38 = __this->___readAhead_15;
if (!L_38)
{
goto IL_017e;
}
}
IL_0172:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_39 = __this->___coreReader_3;
NullCheck(L_39);
bool L_40;
L_40 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, L_39);
return L_40;
}
IL_017e:
{
return (bool)1;
}
IL_0180:
{
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* L_41 = __this->___contentEvents_5;
int32_t L_42 = __this->___currentContentIndex_14;
NullCheck(L_41);
int32_t L_43 = L_42;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_44 = (L_41)->GetAt(static_cast<il2cpp_array_size_t>(L_43));
__this->___cachedNode_7 = L_44;
Il2CppCodeGenWriteBarrier((void**)(&__this->___cachedNode_7), (void*)L_44);
int32_t L_45 = __this->___currentContentIndex_14;
if ((((int32_t)L_45) <= ((int32_t)0)))
{
goto IL_01a2;
}
}
{
XsdCachingReader_ClearAttributesInfo_m12A17AE4AB19B7630EDF469E8E4946C1522AF0FB(__this, NULL);
}
IL_01a2:
{
int32_t L_46 = __this->___currentContentIndex_14;
__this->___currentContentIndex_14 = ((int32_t)il2cpp_codegen_add(L_46, 1));
return (bool)1;
}
IL_01b2:
{
return (bool)0;
}
}
// System.Xml.ValidatingReaderNodeData System.Xml.XsdCachingReader::RecordTextNode(System.String,System.String,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* XsdCachingReader_RecordTextNode_mAF5DE553DDDAF1FEF05AFDF4F3A66DE510FE0929 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, String_t* ___textValue0, String_t* ___originalStringValue1, int32_t ___depth2, int32_t ___lineNo3, int32_t ___linePos4, const RuntimeMethod* method)
{
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_0;
L_0 = XsdCachingReader_AddContent_mFBDABE9A03291D95B7E8518BABACCC113E091EE2(__this, 3, NULL);
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_1 = L_0;
String_t* L_2 = ___textValue0;
String_t* L_3 = ___originalStringValue1;
NullCheck(L_1);
ValidatingReaderNodeData_SetItemData_m6F20EE6D67B53597EFEE48860915168BD55FBF22(L_1, L_2, L_3, NULL);
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_4 = L_1;
int32_t L_5 = ___lineNo3;
int32_t L_6 = ___linePos4;
NullCheck(L_4);
ValidatingReaderNodeData_SetLineInfo_m71C3928A3D901AA471D6BE00B632A1BF21C120B6(L_4, L_5, L_6, NULL);
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_7 = L_4;
int32_t L_8 = ___depth2;
NullCheck(L_7);
ValidatingReaderNodeData_set_Depth_m67104201A7E9C3E72FF18CD75CF28CCEEB349D8B_inline(L_7, L_8, NULL);
return L_7;
}
}
// System.Void System.Xml.XsdCachingReader::SwitchTextNodeAndEndElement(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdCachingReader_SwitchTextNodeAndEndElement_m83841B62F3A33A5227D98E2597A544A846D15A8A (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, String_t* ___textValue0, String_t* ___originalStringValue1, const RuntimeMethod* method)
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* V_0 = NULL;
int32_t V_1 = 0;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* V_2 = NULL;
{
String_t* L_0 = ___textValue0;
String_t* L_1 = ___originalStringValue1;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_2 = __this->___coreReader_3;
NullCheck(L_2);
int32_t L_3;
L_3 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* System.Int32 System.Xml.XmlReader::get_Depth() */, L_2);
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_4;
L_4 = XsdCachingReader_RecordTextNode_mAF5DE553DDDAF1FEF05AFDF4F3A66DE510FE0929(__this, L_0, L_1, ((int32_t)il2cpp_codegen_add(L_3, 1)), 0, 0, NULL);
V_0 = L_4;
int32_t L_5 = __this->___contentIndex_9;
V_1 = ((int32_t)il2cpp_codegen_subtract(L_5, 2));
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* L_6 = __this->___contentEvents_5;
int32_t L_7 = V_1;
NullCheck(L_6);
int32_t L_8 = L_7;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
V_2 = L_9;
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* L_10 = __this->___contentEvents_5;
int32_t L_11 = V_1;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_12 = V_0;
NullCheck(L_10);
ArrayElementTypeCheck (L_10, L_12);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_11), (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C*)L_12);
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* L_13 = __this->___contentEvents_5;
int32_t L_14 = __this->___contentIndex_9;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_15 = V_2;
NullCheck(L_13);
ArrayElementTypeCheck (L_13, L_15);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract(L_14, 1))), (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C*)L_15);
return;
}
}
// System.Void System.Xml.XsdCachingReader::RecordEndElementNode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdCachingReader_RecordEndElementNode_m1A73002707673122C28F926D30BA5D385CAA52E8 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __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;
}
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_0;
L_0 = XsdCachingReader_AddContent_mFBDABE9A03291D95B7E8518BABACCC113E091EE2(__this, ((int32_t)15), NULL);
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_1 = L_0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_2 = __this->___coreReader_3;
NullCheck(L_2);
String_t* L_3;
L_3 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_2);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_4 = __this->___coreReader_3;
NullCheck(L_4);
String_t* L_5;
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(10 /* System.String System.Xml.XmlReader::get_Prefix() */, L_4);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_6 = __this->___coreReader_3;
NullCheck(L_6);
String_t* L_7;
L_7 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_6);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_8 = __this->___coreReader_3;
NullCheck(L_8);
int32_t L_9;
L_9 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* System.Int32 System.Xml.XmlReader::get_Depth() */, L_8);
NullCheck(L_1);
ValidatingReaderNodeData_SetItemData_m60B5ABC34768946CDA319A032F5B03A49D63D15A(L_1, L_3, L_5, L_7, L_9, NULL);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_10 = __this->___coreReader_3;
NullCheck(L_1);
ValidatingReaderNodeData_SetLineInfo_m5FDDF387540E6541CCC92AF98CE0A53C4BF564B0(L_1, ((RuntimeObject*)IsInst((RuntimeObject*)L_10, IXmlLineInfo_tDD8332CE7D244FDA50A6C5744D7EAEC4A6CCBF05_il2cpp_TypeInfo_var)), NULL);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_11 = __this->___coreReader_3;
NullCheck(L_11);
bool L_12;
L_12 = VirtualFuncInvoker0< bool >::Invoke(14 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, L_11);
if (!L_12)
{
goto IL_005e;
}
}
{
__this->___readAhead_15 = (bool)1;
}
IL_005e:
{
return;
}
}
// System.Boolean System.Xml.XsdCachingReader::get_EOF()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XsdCachingReader_get_EOF_m9CCB1A581AD7B9FF26A75A9E26FF7B63A71CCE6D (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___cacheState_8;
if ((!(((uint32_t)L_0) == ((uint32_t)4))))
{
goto IL_0015;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1 = __this->___coreReader_3;
NullCheck(L_1);
bool L_2;
L_2 = VirtualFuncInvoker0< bool >::Invoke(32 /* System.Boolean System.Xml.XmlReader::get_EOF() */, L_1);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
// System.Void System.Xml.XsdCachingReader::Close()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdCachingReader_Close_m79B3FA1006D932A99F683B5F23DE9A353ABBA53A (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __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->___cacheState_8 = 4;
return;
}
}
// System.Xml.ReadState System.Xml.XsdCachingReader::get_ReadState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdCachingReader_get_ReadState_m106A16F615C10EA5B5B67ADB9F3CD149EA51B927 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_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.Void System.Xml.XsdCachingReader::Skip()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdCachingReader_Skip_mCFAF46928329A578B26BFC39D7E34EA0687FCB07 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_0 = __this->___cachedNode_7;
NullCheck(L_0);
int32_t L_1;
L_1 = ValidatingReaderNodeData_get_NodeType_m3E275338D3EAE907A584E73F6C5E35EA6B932CE6_inline(L_0, NULL);
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)1)))
{
goto IL_0016;
}
}
{
int32_t L_3 = V_0;
if ((((int32_t)L_3) == ((int32_t)2)))
{
goto IL_0076;
}
}
{
goto IL_007f;
}
IL_0016:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_4 = __this->___coreReader_3;
NullCheck(L_4);
int32_t L_5;
L_5 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_4);
if ((((int32_t)L_5) == ((int32_t)((int32_t)15))))
{
goto IL_0056;
}
}
{
bool L_6 = __this->___readAhead_15;
if (L_6)
{
goto IL_0056;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_7 = __this->___coreReader_3;
NullCheck(L_7);
int32_t L_8;
L_8 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* System.Int32 System.Xml.XmlReader::get_Depth() */, L_7);
V_1 = ((int32_t)il2cpp_codegen_subtract(L_8, 1));
}
IL_003b:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_9 = __this->___coreReader_3;
NullCheck(L_9);
bool L_10;
L_10 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, L_9);
if (!L_10)
{
goto IL_0056;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_11 = __this->___coreReader_3;
NullCheck(L_11);
int32_t L_12;
L_12 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* System.Int32 System.Xml.XmlReader::get_Depth() */, L_11);
int32_t L_13 = V_1;
if ((((int32_t)L_12) > ((int32_t)L_13)))
{
goto IL_003b;
}
}
IL_0056:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_14 = __this->___coreReader_3;
NullCheck(L_14);
bool L_15;
L_15 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, L_14);
__this->___cacheState_8 = 4;
CachingEventHandler_t3531836C36E56CCAAB45B3B7DA1B4F94742FE74E* L_16 = __this->___cacheHandler_12;
NullCheck(L_16);
CachingEventHandler_Invoke_mE544A7147BAE33B6F1A434723ACF2C561F3CB02F_inline(L_16, __this, NULL);
return;
}
IL_0076:
{
bool L_17;
L_17 = VirtualFuncInvoker0< bool >::Invoke(29 /* System.Boolean System.Xml.XmlReader::MoveToElement() */, __this);
goto IL_0016;
}
IL_007f:
{
bool L_18;
L_18 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, __this);
return;
}
}
// System.Xml.XmlNameTable System.Xml.XsdCachingReader::get_NameTable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* XsdCachingReader_get_NameTable_mCF5F49EC87B6F60C34A94430D2B1C930541B26F3 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, const RuntimeMethod* method)
{
{
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_0 = __this->___coreReaderNameTable_4;
return L_0;
}
}
// System.String System.Xml.XsdCachingReader::LookupNamespace(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsdCachingReader_LookupNamespace_mFFE3DAC68D6243A2D41E587183A21A2D05077AD9 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, String_t* ___prefix0, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_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);
return L_2;
}
}
// System.Void System.Xml.XsdCachingReader::ResolveEntity()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdCachingReader_ResolveEntity_m5AC646CD89994073FF1468D11C1579ECCF90717E (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_0 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_0);
InvalidOperationException__ctor_m1BE9BD198B904AA1D94F4B10DA88077DFD44B7A5(L_0, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XsdCachingReader_ResolveEntity_m5AC646CD89994073FF1468D11C1579ECCF90717E_RuntimeMethod_var)));
}
}
// System.Boolean System.Xml.XsdCachingReader::ReadAttributeValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XsdCachingReader_ReadAttributeValue_m6C49EF97A7E10C060E04E3269B07CEA4D867BB38 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, const RuntimeMethod* method)
{
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_0 = __this->___cachedNode_7;
NullCheck(L_0);
int32_t L_1;
L_1 = ValidatingReaderNodeData_get_NodeType_m3E275338D3EAE907A584E73F6C5E35EA6B932CE6_inline(L_0, NULL);
if ((((int32_t)L_1) == ((int32_t)2)))
{
goto IL_0010;
}
}
{
return (bool)0;
}
IL_0010:
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_2 = __this->___cachedNode_7;
NullCheck(L_2);
String_t* L_3;
L_3 = ValidatingReaderNodeData_get_RawValue_m910C83DC6975C87F12721378D46110F5A19B272B_inline(L_2, NULL);
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_4 = __this->___cachedNode_7;
NullCheck(L_4);
int32_t L_5;
L_5 = ValidatingReaderNodeData_get_Depth_m08B579D77C5CA1CEA934CD16CB8CB36040A1E59D_inline(L_4, NULL);
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_6;
L_6 = XsdCachingReader_CreateDummyTextNode_m1300DDBA9E391A45E2EA5ABC8E33ED486E5B84DD(__this, L_3, ((int32_t)il2cpp_codegen_add(L_5, 1)), NULL);
__this->___cachedNode_7 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->___cachedNode_7), (void*)L_6);
return (bool)1;
}
}
// System.Boolean System.Xml.XsdCachingReader::System.Xml.IXmlLineInfo.HasLineInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XsdCachingReader_System_Xml_IXmlLineInfo_HasLineInfo_m4C25BDE881E0053CF42CBEDAC773062EC2482933 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Int32 System.Xml.XsdCachingReader::System.Xml.IXmlLineInfo.get_LineNumber()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdCachingReader_System_Xml_IXmlLineInfo_get_LineNumber_m4AB2836813E07D774FD9C276432D1584038A63AC (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, const RuntimeMethod* method)
{
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_0 = __this->___cachedNode_7;
NullCheck(L_0);
int32_t L_1;
L_1 = ValidatingReaderNodeData_get_LineNumber_m60328F5D1F021D01F27CACC6AD42227DE2F2D515_inline(L_0, NULL);
return L_1;
}
}
// System.Int32 System.Xml.XsdCachingReader::System.Xml.IXmlLineInfo.get_LinePosition()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdCachingReader_System_Xml_IXmlLineInfo_get_LinePosition_mC789832FFA904CCA900BB09231A28FF175A52BA2 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, const RuntimeMethod* method)
{
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_0 = __this->___cachedNode_7;
NullCheck(L_0);
int32_t L_1;
L_1 = ValidatingReaderNodeData_get_LinePosition_mCA2EE6761998E637338A7D98AC7BD2CB7DD6FEA5_inline(L_0, NULL);
return L_1;
}
}
// System.Void System.Xml.XsdCachingReader::SetToReplayMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdCachingReader_SetToReplayMode_m7FB04A844F6E68764C1DCF95F422804C3201B580 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, const RuntimeMethod* method)
{
{
__this->___cacheState_8 = 3;
__this->___currentContentIndex_14 = 0;
__this->___currentAttrIndex_13 = (-1);
bool L_0;
L_0 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, __this);
return;
}
}
// System.Xml.XmlReader System.Xml.XsdCachingReader::GetCoreReader()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* XsdCachingReader_GetCoreReader_m96B2B679BBB13A94A254F003422ED29780C99431 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3;
return L_0;
}
}
// System.Xml.IXmlLineInfo System.Xml.XsdCachingReader::GetLineInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XsdCachingReader_GetLineInfo_m26C8F60794137010483127A2344B5456857FBEA1 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___lineInfo_16;
return L_0;
}
}
// System.Void System.Xml.XsdCachingReader::ClearAttributesInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdCachingReader_ClearAttributesInfo_m12A17AE4AB19B7630EDF469E8E4946C1522AF0FB (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, const RuntimeMethod* method)
{
{
__this->___attributeCount_10 = 0;
__this->___currentAttrIndex_13 = (-1);
return;
}
}
// System.Xml.ValidatingReaderNodeData System.Xml.XsdCachingReader::AddAttribute(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* XsdCachingReader_AddAttribute_mCEBADC7108923AF4145B596A7E6C004532A11B16 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, int32_t ___attIndex0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* V_0 = NULL;
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* V_1 = NULL;
{
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* L_0 = __this->___attributeEvents_6;
int32_t L_1 = ___attIndex0;
NullCheck(L_0);
int32_t L_2 = L_1;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
V_0 = L_3;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_4 = V_0;
if (!L_4)
{
goto IL_0015;
}
}
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_5 = V_0;
NullCheck(L_5);
ValidatingReaderNodeData_Clear_m35EB71C9541236968A8C58B6F2E310C9F90B485B(L_5, 2, NULL);
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_6 = V_0;
return L_6;
}
IL_0015:
{
int32_t L_7 = ___attIndex0;
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* L_8 = __this->___attributeEvents_6;
NullCheck(L_8);
if ((((int32_t)L_7) < ((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_8)->max_length)), 1)))))
{
goto IL_004f;
}
}
{
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* L_9 = __this->___attributeEvents_6;
NullCheck(L_9);
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* L_10 = (ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8*)(ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8*)SZArrayNew(ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_9)->max_length)), 2)));
V_1 = L_10;
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* L_11 = __this->___attributeEvents_6;
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* L_12 = V_1;
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* L_13 = __this->___attributeEvents_6;
NullCheck(L_13);
Array_Copy_m2CC3EA1129E9B8EA82E6FA31EDE0D4F87BF67EC7((RuntimeArray*)L_11, 0, (RuntimeArray*)L_12, 0, ((int32_t)(((RuntimeArray*)L_13)->max_length)), NULL);
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* L_14 = V_1;
__this->___attributeEvents_6 = L_14;
Il2CppCodeGenWriteBarrier((void**)(&__this->___attributeEvents_6), (void*)L_14);
}
IL_004f:
{
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* L_15 = __this->___attributeEvents_6;
int32_t L_16 = ___attIndex0;
NullCheck(L_15);
int32_t L_17 = L_16;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_18 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
V_0 = L_18;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_19 = V_0;
if (L_19)
{
goto IL_006b;
}
}
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_20 = (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C*)il2cpp_codegen_object_new(ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C_il2cpp_TypeInfo_var);
NullCheck(L_20);
ValidatingReaderNodeData__ctor_m6A898DD01B67F8F6F4B2E21FD45394E04AF38AAE(L_20, 2, NULL);
V_0 = L_20;
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* L_21 = __this->___attributeEvents_6;
int32_t L_22 = ___attIndex0;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_23 = V_0;
NullCheck(L_21);
ArrayElementTypeCheck (L_21, L_23);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_22), (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C*)L_23);
}
IL_006b:
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_24 = V_0;
return L_24;
}
}
// System.Xml.ValidatingReaderNodeData System.Xml.XsdCachingReader::AddContent(System.Xml.XmlNodeType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* XsdCachingReader_AddContent_mFBDABE9A03291D95B7E8518BABACCC113E091EE2 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, int32_t ___nodeType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* V_0 = NULL;
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* V_1 = NULL;
{
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* L_0 = __this->___contentEvents_5;
int32_t L_1 = __this->___contentIndex_9;
NullCheck(L_0);
int32_t L_2 = L_1;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
V_0 = L_3;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_4 = V_0;
if (!L_4)
{
goto IL_0028;
}
}
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_5 = V_0;
int32_t L_6 = ___nodeType0;
NullCheck(L_5);
ValidatingReaderNodeData_Clear_m35EB71C9541236968A8C58B6F2E310C9F90B485B(L_5, L_6, NULL);
int32_t L_7 = __this->___contentIndex_9;
__this->___contentIndex_9 = ((int32_t)il2cpp_codegen_add(L_7, 1));
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_8 = V_0;
return L_8;
}
IL_0028:
{
int32_t L_9 = __this->___contentIndex_9;
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* L_10 = __this->___contentEvents_5;
NullCheck(L_10);
if ((((int32_t)L_9) < ((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_10)->max_length)), 1)))))
{
goto IL_0067;
}
}
{
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* L_11 = __this->___contentEvents_5;
NullCheck(L_11);
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* L_12 = (ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8*)(ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8*)SZArrayNew(ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_11)->max_length)), 2)));
V_1 = L_12;
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* L_13 = __this->___contentEvents_5;
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* L_14 = V_1;
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* L_15 = __this->___contentEvents_5;
NullCheck(L_15);
Array_Copy_m2CC3EA1129E9B8EA82E6FA31EDE0D4F87BF67EC7((RuntimeArray*)L_13, 0, (RuntimeArray*)L_14, 0, ((int32_t)(((RuntimeArray*)L_15)->max_length)), NULL);
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* L_16 = V_1;
__this->___contentEvents_5 = L_16;
Il2CppCodeGenWriteBarrier((void**)(&__this->___contentEvents_5), (void*)L_16);
}
IL_0067:
{
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* L_17 = __this->___contentEvents_5;
int32_t L_18 = __this->___contentIndex_9;
NullCheck(L_17);
int32_t L_19 = L_18;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
V_0 = L_20;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_21 = V_0;
if (L_21)
{
goto IL_008d;
}
}
{
int32_t L_22 = ___nodeType0;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_23 = (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C*)il2cpp_codegen_object_new(ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C_il2cpp_TypeInfo_var);
NullCheck(L_23);
ValidatingReaderNodeData__ctor_m6A898DD01B67F8F6F4B2E21FD45394E04AF38AAE(L_23, L_22, NULL);
V_0 = L_23;
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* L_24 = __this->___contentEvents_5;
int32_t L_25 = __this->___contentIndex_9;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_26 = V_0;
NullCheck(L_24);
ArrayElementTypeCheck (L_24, L_26);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(L_25), (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C*)L_26);
}
IL_008d:
{
int32_t L_27 = __this->___contentIndex_9;
__this->___contentIndex_9 = ((int32_t)il2cpp_codegen_add(L_27, 1));
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_28 = V_0;
return L_28;
}
}
// System.Void System.Xml.XsdCachingReader::RecordAttributes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdCachingReader_RecordAttributes_mAE1CCD836B4FEEAB73D4CC725E4C4D6BD204F89A (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __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(21 /* System.Int32 System.Xml.XmlReader::get_AttributeCount() */, L_0);
__this->___attributeCount_10 = L_1;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_2 = __this->___coreReader_3;
NullCheck(L_2);
bool L_3;
L_3 = VirtualFuncInvoker0< bool >::Invoke(27 /* System.Boolean System.Xml.XmlReader::MoveToFirstAttribute() */, L_2);
if (!L_3)
{
goto IL_0092;
}
}
{
V_0 = 0;
}
IL_0020:
{
int32_t L_4 = V_0;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_5;
L_5 = XsdCachingReader_AddAttribute_mCEBADC7108923AF4145B596A7E6C004532A11B16(__this, L_4, NULL);
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_6 = L_5;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_7 = __this->___coreReader_3;
NullCheck(L_7);
String_t* L_8;
L_8 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_7);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_9 = __this->___coreReader_3;
NullCheck(L_9);
String_t* L_10;
L_10 = VirtualFuncInvoker0< String_t* >::Invoke(10 /* System.String System.Xml.XmlReader::get_Prefix() */, L_9);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_11 = __this->___coreReader_3;
NullCheck(L_11);
String_t* L_12;
L_12 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_11);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_13 = __this->___coreReader_3;
NullCheck(L_13);
int32_t L_14;
L_14 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* System.Int32 System.Xml.XmlReader::get_Depth() */, L_13);
NullCheck(L_6);
ValidatingReaderNodeData_SetItemData_m60B5ABC34768946CDA319A032F5B03A49D63D15A(L_6, L_8, L_10, L_12, L_14, NULL);
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_15 = L_6;
RuntimeObject* L_16 = __this->___lineInfo_16;
NullCheck(L_15);
ValidatingReaderNodeData_SetLineInfo_m5FDDF387540E6541CCC92AF98CE0A53C4BF564B0(L_15, L_16, NULL);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_17 = __this->___coreReader_3;
NullCheck(L_17);
String_t* L_18;
L_18 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_17);
NullCheck(L_15);
ValidatingReaderNodeData_set_RawValue_mEE082D1AA279EC32C842D3F17574B5839F42B4A4_inline(L_15, L_18, NULL);
int32_t L_19 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_19, 1));
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_20 = __this->___coreReader_3;
NullCheck(L_20);
bool L_21;
L_21 = VirtualFuncInvoker0< bool >::Invoke(28 /* System.Boolean System.Xml.XmlReader::MoveToNextAttribute() */, L_20);
if (L_21)
{
goto IL_0020;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_22 = __this->___coreReader_3;
NullCheck(L_22);
bool L_23;
L_23 = VirtualFuncInvoker0< bool >::Invoke(29 /* System.Boolean System.Xml.XmlReader::MoveToElement() */, L_22);
}
IL_0092:
{
return;
}
}
// System.Int32 System.Xml.XsdCachingReader::GetAttributeIndexWithoutPrefix(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdCachingReader_GetAttributeIndexWithoutPrefix_m328281605B34AB0E22E43439B553EFD59C7DE87A (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, String_t* ___name0, const RuntimeMethod* method)
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* V_0 = NULL;
int32_t V_1 = 0;
{
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_0 = __this->___coreReaderNameTable_4;
String_t* L_1 = ___name0;
NullCheck(L_0);
String_t* L_2;
L_2 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(4 /* System.String System.Xml.XmlNameTable::Get(System.String) */, L_0, L_1);
___name0 = L_2;
String_t* L_3 = ___name0;
if (L_3)
{
goto IL_0013;
}
}
{
return (-1);
}
IL_0013:
{
V_1 = 0;
goto IL_0041;
}
IL_0017:
{
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* L_4 = __this->___attributeEvents_6;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
V_0 = L_7;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_8 = V_0;
NullCheck(L_8);
String_t* L_9;
L_9 = ValidatingReaderNodeData_get_LocalName_m1B5FCCE13DF4BA2F5CF1AD689A9186064EB5349D_inline(L_8, NULL);
String_t* L_10 = ___name0;
bool L_11;
L_11 = Ref_Equal_m91CE186A8D713DBCF387B2A4AA83138704C7B8B1(L_9, L_10, NULL);
if (!L_11)
{
goto IL_003d;
}
}
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_12 = V_0;
NullCheck(L_12);
String_t* L_13;
L_13 = ValidatingReaderNodeData_get_Prefix_m47A65BB79C9FE8B2152542E47AB5DB9FDD0F3D34_inline(L_12, NULL);
NullCheck(L_13);
int32_t L_14;
L_14 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_13, NULL);
if (L_14)
{
goto IL_003d;
}
}
{
int32_t L_15 = V_1;
return L_15;
}
IL_003d:
{
int32_t L_16 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_16, 1));
}
IL_0041:
{
int32_t L_17 = V_1;
int32_t L_18 = __this->___attributeCount_10;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0017;
}
}
{
return (-1);
}
}
// System.Int32 System.Xml.XsdCachingReader::GetAttributeIndexWithPrefix(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdCachingReader_GetAttributeIndexWithPrefix_mF39DDFCF01078A069ADDAA2CC23418DE585EDDA5 (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, String_t* ___name0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_0 = __this->___coreReaderNameTable_4;
String_t* L_1 = ___name0;
NullCheck(L_0);
String_t* L_2;
L_2 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(4 /* System.String System.Xml.XmlNameTable::Get(System.String) */, L_0, L_1);
___name0 = L_2;
String_t* L_3 = ___name0;
if (L_3)
{
goto IL_0013;
}
}
{
return (-1);
}
IL_0013:
{
V_0 = 0;
goto IL_0038;
}
IL_0017:
{
ValidatingReaderNodeDataU5BU5D_t9DA9A8304578044C3D4E58EED172855FEB000DE8* L_4 = __this->___attributeEvents_6;
int32_t L_5 = V_0;
NullCheck(L_4);
int32_t L_6 = L_5;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_8 = __this->___coreReaderNameTable_4;
NullCheck(L_7);
String_t* L_9;
L_9 = ValidatingReaderNodeData_GetAtomizedNameWPrefix_m46C836E6E3638B0C449430C2B5B9CCBF8F1A0BEE(L_7, L_8, NULL);
String_t* L_10 = ___name0;
bool L_11;
L_11 = Ref_Equal_m91CE186A8D713DBCF387B2A4AA83138704C7B8B1(L_9, L_10, NULL);
if (!L_11)
{
goto IL_0034;
}
}
{
int32_t L_12 = V_0;
return L_12;
}
IL_0034:
{
int32_t L_13 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_13, 1));
}
IL_0038:
{
int32_t L_14 = V_0;
int32_t L_15 = __this->___attributeCount_10;
if ((((int32_t)L_14) < ((int32_t)L_15)))
{
goto IL_0017;
}
}
{
return (-1);
}
}
// System.Xml.ValidatingReaderNodeData System.Xml.XsdCachingReader::CreateDummyTextNode(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* XsdCachingReader_CreateDummyTextNode_m1300DDBA9E391A45E2EA5ABC8E33ED486E5B84DD (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, String_t* ___attributeValue0, int32_t ___depth1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_0 = __this->___textNode_17;
if (L_0)
{
goto IL_0014;
}
}
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_1 = (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C*)il2cpp_codegen_object_new(ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C_il2cpp_TypeInfo_var);
NullCheck(L_1);
ValidatingReaderNodeData__ctor_m6A898DD01B67F8F6F4B2E21FD45394E04AF38AAE(L_1, 3, NULL);
__this->___textNode_17 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___textNode_17), (void*)L_1);
}
IL_0014:
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_2 = __this->___textNode_17;
int32_t L_3 = ___depth1;
NullCheck(L_2);
ValidatingReaderNodeData_set_Depth_m67104201A7E9C3E72FF18CD75CF28CCEEB349D8B_inline(L_2, L_3, NULL);
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_4 = __this->___textNode_17;
String_t* L_5 = ___attributeValue0;
NullCheck(L_4);
ValidatingReaderNodeData_set_RawValue_mEE082D1AA279EC32C842D3F17574B5839F42B4A4_inline(L_4, L_5, NULL);
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_6 = __this->___textNode_17;
return L_6;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#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 CachingEventHandler_Invoke_mE544A7147BAE33B6F1A434723ACF2C561F3CB02F_Multicast(CachingEventHandler_t3531836C36E56CCAAB45B3B7DA1B4F94742FE74E* __this, XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* ___cachingReader0, 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) (CachingEventHandler_t3531836C36E56CCAAB45B3B7DA1B4F94742FE74E* __this, XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* ___cachingReader0, const RuntimeMethod* method);
for (il2cpp_array_size_t i = 0; i < length; i++)
{
CachingEventHandler_t3531836C36E56CCAAB45B3B7DA1B4F94742FE74E* currentDelegate = reinterpret_cast<CachingEventHandler_t3531836C36E56CCAAB45B3B7DA1B4F94742FE74E*>(delegatesToInvoke[i]);
((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___cachingReader0, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
}
void CachingEventHandler_Invoke_mE544A7147BAE33B6F1A434723ACF2C561F3CB02F_Open(CachingEventHandler_t3531836C36E56CCAAB45B3B7DA1B4F94742FE74E* __this, XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* ___cachingReader0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(___cachingReader0, method);
}
void CachingEventHandler_Invoke_mE544A7147BAE33B6F1A434723ACF2C561F3CB02F_Closed(CachingEventHandler_t3531836C36E56CCAAB45B3B7DA1B4F94742FE74E* __this, XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* ___cachingReader0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___cachingReader0, method);
}
void CachingEventHandler_Invoke_mE544A7147BAE33B6F1A434723ACF2C561F3CB02F_OpenStaticInvoker(CachingEventHandler_t3531836C36E56CCAAB45B3B7DA1B4F94742FE74E* __this, XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* ___cachingReader0, const RuntimeMethod* method)
{
InvokerActionInvoker1< XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* >::Invoke(__this->___method_ptr_0, method, NULL, ___cachingReader0);
}
void CachingEventHandler_Invoke_mE544A7147BAE33B6F1A434723ACF2C561F3CB02F_ClosedStaticInvoker(CachingEventHandler_t3531836C36E56CCAAB45B3B7DA1B4F94742FE74E* __this, XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* ___cachingReader0, const RuntimeMethod* method)
{
InvokerActionInvoker2< RuntimeObject*, XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___cachingReader0);
}
void CachingEventHandler_Invoke_mE544A7147BAE33B6F1A434723ACF2C561F3CB02F_OpenVirtual(CachingEventHandler_t3531836C36E56CCAAB45B3B7DA1B4F94742FE74E* __this, XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* ___cachingReader0, const RuntimeMethod* method)
{
VirtualActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(method), ___cachingReader0);
}
void CachingEventHandler_Invoke_mE544A7147BAE33B6F1A434723ACF2C561F3CB02F_OpenInterface(CachingEventHandler_t3531836C36E56CCAAB45B3B7DA1B4F94742FE74E* __this, XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* ___cachingReader0, const RuntimeMethod* method)
{
InterfaceActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(method), il2cpp_codegen_method_get_declaring_type(method), ___cachingReader0);
}
void CachingEventHandler_Invoke_mE544A7147BAE33B6F1A434723ACF2C561F3CB02F_OpenGenericVirtual(CachingEventHandler_t3531836C36E56CCAAB45B3B7DA1B4F94742FE74E* __this, XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* ___cachingReader0, const RuntimeMethod* method)
{
GenericVirtualActionInvoker0::Invoke(method, ___cachingReader0);
}
void CachingEventHandler_Invoke_mE544A7147BAE33B6F1A434723ACF2C561F3CB02F_OpenGenericInterface(CachingEventHandler_t3531836C36E56CCAAB45B3B7DA1B4F94742FE74E* __this, XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* ___cachingReader0, const RuntimeMethod* method)
{
GenericInterfaceActionInvoker0::Invoke(method, ___cachingReader0);
}
// System.Void System.Xml.CachingEventHandler::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CachingEventHandler__ctor_mE381B83D69016CB82FEEBF79B9D911695986C7E5 (CachingEventHandler_t3531836C36E56CCAAB45B3B7DA1B4F94742FE74E* __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 == 1;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&CachingEventHandler_Invoke_mE544A7147BAE33B6F1A434723ACF2C561F3CB02F_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&CachingEventHandler_Invoke_mE544A7147BAE33B6F1A434723ACF2C561F3CB02F_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&CachingEventHandler_Invoke_mE544A7147BAE33B6F1A434723ACF2C561F3CB02F_Open;
else
__this->___invoke_impl_1 = (intptr_t)&CachingEventHandler_Invoke_mE544A7147BAE33B6F1A434723ACF2C561F3CB02F_Closed;
}
else
{
bool isOpen = methodCount == 0;
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)&CachingEventHandler_Invoke_mE544A7147BAE33B6F1A434723ACF2C561F3CB02F_OpenGenericInterface;
else
__this->___invoke_impl_1 = (intptr_t)&CachingEventHandler_Invoke_mE544A7147BAE33B6F1A434723ACF2C561F3CB02F_OpenGenericVirtual;
else
if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___method1))
__this->___invoke_impl_1 = (intptr_t)&CachingEventHandler_Invoke_mE544A7147BAE33B6F1A434723ACF2C561F3CB02F_OpenInterface;
else
__this->___invoke_impl_1 = (intptr_t)&CachingEventHandler_Invoke_mE544A7147BAE33B6F1A434723ACF2C561F3CB02F_OpenVirtual;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&CachingEventHandler_Invoke_mE544A7147BAE33B6F1A434723ACF2C561F3CB02F_Open;
}
}
else
{
__this->___invoke_impl_1 = (intptr_t)&CachingEventHandler_Invoke_mE544A7147BAE33B6F1A434723ACF2C561F3CB02F_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&CachingEventHandler_Invoke_mE544A7147BAE33B6F1A434723ACF2C561F3CB02F_Multicast;
}
// System.Void System.Xml.CachingEventHandler::Invoke(System.Xml.XsdCachingReader)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CachingEventHandler_Invoke_mE544A7147BAE33B6F1A434723ACF2C561F3CB02F (CachingEventHandler_t3531836C36E56CCAAB45B3B7DA1B4F94742FE74E* __this, XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* ___cachingReader0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (CachingEventHandler_t3531836C36E56CCAAB45B3B7DA1B4F94742FE74E* __this, XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* ___cachingReader0, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___cachingReader0, 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
// System.Void System.Xml.AttributePSVIInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributePSVIInfo__ctor_m7F80C7485761C2944605FA5E7184617318FE7034 (AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_0 = (XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B*)il2cpp_codegen_object_new(XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B_il2cpp_TypeInfo_var);
NullCheck(L_0);
XmlSchemaInfo__ctor_mEEC95F1F490C5D62BF1CC6DB16FE4938E5C1C341(L_0, NULL);
__this->___attributeSchemaInfo_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___attributeSchemaInfo_3), (void*)L_0);
return;
}
}
// System.Void System.Xml.AttributePSVIInfo::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributePSVIInfo_Reset_m6BCB21E222189F063C0D2A7ECCB6D72AC9D086AA (AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* __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->___typedAttributeValue_2 = NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___typedAttributeValue_2), (void*)NULL);
String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
__this->___localName_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___localName_0), (void*)L_0);
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
__this->___namespaceUri_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___namespaceUri_1), (void*)L_1);
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_2 = __this->___attributeSchemaInfo_3;
NullCheck(L_2);
XmlSchemaInfo_Clear_m6EACF6A1BB70B47CBC2865B8CCC74BEA67F96FFE(L_2, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Xml.XsdValidatingReader::.ctor(System.Xml.XmlReader,System.Xml.XmlResolver,System.Xml.XmlReaderSettings,System.Xml.Schema.XmlSchemaObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdValidatingReader__ctor_m4E4125D1D8F1A189D16044D54B88BF24EBA0216E (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___xmlResolver1, XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* ___readerSettings2, XmlSchemaObject_t82CCD87AADB4BEF4E9DFE4C501F09EDA372AA19D* ___partialValidationType3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlLineInfo_tDD8332CE7D244FDA50A6C5744D7EAEC4A6CCBF05_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 L_0;
L_0 = XmlCharType_get_Instance_m2D4006A9AE9EB033F6A176E31CAFAC7EF30350AD(NULL);
__this->___xmlCharType_37 = L_0;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___xmlCharType_37))->___charProperties_2), (void*)NULL);
il2cpp_codegen_runtime_class_init_inline(XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var);
XmlReader__ctor_m4E3A6201CC692B2B2F05ED58652056E893995477(__this, NULL);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1 = ___reader0;
__this->___coreReader_3 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___coreReader_3), (void*)L_1);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_2 = ___reader0;
__this->___coreReaderNSResolver_4 = ((RuntimeObject*)IsInst((RuntimeObject*)L_2, IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var));
Il2CppCodeGenWriteBarrier((void**)(&__this->___coreReaderNSResolver_4), (void*)((RuntimeObject*)IsInst((RuntimeObject*)L_2, IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var)));
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_3 = ___reader0;
__this->___lineInfo_38 = ((RuntimeObject*)IsInst((RuntimeObject*)L_3, IXmlLineInfo_tDD8332CE7D244FDA50A6C5744D7EAEC4A6CCBF05_il2cpp_TypeInfo_var));
Il2CppCodeGenWriteBarrier((void**)(&__this->___lineInfo_38), (void*)((RuntimeObject*)IsInst((RuntimeObject*)L_3, IXmlLineInfo_tDD8332CE7D244FDA50A6C5744D7EAEC4A6CCBF05_il2cpp_TypeInfo_var)));
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_4 = __this->___coreReader_3;
NullCheck(L_4);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_5;
L_5 = VirtualFuncInvoker0< XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* >::Invoke(36 /* System.Xml.XmlNameTable System.Xml.XmlReader::get_NameTable() */, L_4);
__this->___coreReaderNameTable_26 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&__this->___coreReaderNameTable_26), (void*)L_5);
RuntimeObject* L_6 = __this->___coreReaderNSResolver_4;
if (L_6)
{
goto IL_0061;
}
}
{
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_7 = __this->___coreReaderNameTable_26;
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_8 = (XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F*)il2cpp_codegen_object_new(XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F_il2cpp_TypeInfo_var);
NullCheck(L_8);
XmlNamespaceManager__ctor_m18E69120CE5886E06630CCCC3215D2C67FC669DB(L_8, L_7, NULL);
__this->___nsManager_11 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->___nsManager_11), (void*)L_8);
__this->___manageNamespaces_12 = (bool)1;
}
IL_0061:
{
__this->___thisNSResolver_5 = __this;
Il2CppCodeGenWriteBarrier((void**)(&__this->___thisNSResolver_5), (void*)__this);
XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_9 = ___xmlResolver1;
__this->___xmlResolver_7 = L_9;
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlResolver_7), (void*)L_9);
XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_10 = ___readerSettings2;
NullCheck(L_10);
int32_t L_11;
L_11 = XmlReaderSettings_get_ValidationFlags_m22A3C5CFDC1CBF2EF8B5975A581B00EDF4D8E876_inline(L_10, NULL);
__this->___processInlineSchema_13 = (bool)((!(((uint32_t)((int32_t)((int32_t)L_11&1))) <= ((uint32_t)0)))? 1 : 0);
XsdValidatingReader_Init_mBB431A6A4326BBCF23366F943D4EE3012DADB879(__this, NULL);
XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_12 = ___readerSettings2;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_13 = ___reader0;
XmlSchemaObject_t82CCD87AADB4BEF4E9DFE4C501F09EDA372AA19D* L_14 = ___partialValidationType3;
XsdValidatingReader_SetupValidator_mD8120140BD8D7D7020C6F3B1AC37B0C4160FAD9D(__this, L_12, L_13, L_14, NULL);
XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_15 = ___readerSettings2;
NullCheck(L_15);
ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* L_16;
L_16 = XmlReaderSettings_GetEventHandler_m846EA87D263A6804F452088315D63F5FA898AC64_inline(L_15, NULL);
__this->___validationEvent_8 = L_16;
Il2CppCodeGenWriteBarrier((void**)(&__this->___validationEvent_8), (void*)L_16);
return;
}
}
// System.Void System.Xml.XsdValidatingReader::.ctor(System.Xml.XmlReader,System.Xml.XmlResolver,System.Xml.XmlReaderSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdValidatingReader__ctor_mEFDFB844E2E2199663E2DD8906B0B4A74B3EF5F0 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___xmlResolver1, XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* ___readerSettings2, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = ___reader0;
XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_1 = ___xmlResolver1;
XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_2 = ___readerSettings2;
XsdValidatingReader__ctor_m4E4125D1D8F1A189D16044D54B88BF24EBA0216E(__this, L_0, L_1, L_2, (XmlSchemaObject_t82CCD87AADB4BEF4E9DFE4C501F09EDA372AA19D*)NULL, NULL);
return;
}
}
// System.Void System.Xml.XsdValidatingReader::Init()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdValidatingReader_Init_mBB431A6A4326BBCF23366F943D4EE3012DADB879 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AttributePSVIInfoU5BU5D_tC78F3BF4DD87E93F42D8DA640AA29B625F3644BD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlValueGetter_tB804924EEE98EA7F63E2B038A3CE3714DA155EB9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XsdValidatingReader_GetStringValue_m89CE0B2CF94DFBFF72B05031654EEE663470AB39_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2CAB73EF57D40E8B63A7CA91D057C0B68DB59100);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral63CBFAF32B506F8EA636D9CD08CD2EDAA1756BDE);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7C014955313A7D33D5D04696B884B25325E6393C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEBEFE00D9826F57DF92563511F63A82DDD84B35E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFEE4613988B693DA6A4D82B4FB413453362FD0FD);
s_Il2CppMethodInitialized = true;
}
{
__this->___validationState_9 = 1;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)il2cpp_codegen_object_new(ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var);
NullCheck(L_0);
ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80(L_0, NULL);
__this->___defaultAttributes_21 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___defaultAttributes_21), (void*)L_0);
__this->___currentAttrIndex_19 = (-1);
AttributePSVIInfoU5BU5D_tC78F3BF4DD87E93F42D8DA640AA29B625F3644BD* L_1 = (AttributePSVIInfoU5BU5D_tC78F3BF4DD87E93F42D8DA640AA29B625F3644BD*)(AttributePSVIInfoU5BU5D_tC78F3BF4DD87E93F42D8DA640AA29B625F3644BD*)SZArrayNew(AttributePSVIInfoU5BU5D_tC78F3BF4DD87E93F42D8DA640AA29B625F3644BD_il2cpp_TypeInfo_var, (uint32_t)8);
__this->___attributePSVINodes_20 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___attributePSVINodes_20), (void*)L_1);
XmlValueGetter_tB804924EEE98EA7F63E2B038A3CE3714DA155EB9* L_2 = (XmlValueGetter_tB804924EEE98EA7F63E2B038A3CE3714DA155EB9*)il2cpp_codegen_object_new(XmlValueGetter_tB804924EEE98EA7F63E2B038A3CE3714DA155EB9_il2cpp_TypeInfo_var);
NullCheck(L_2);
XmlValueGetter__ctor_mBE624F87E03B987FB93726999FDECD5A16A78856(L_2, __this, (intptr_t)((void*)XsdValidatingReader_GetStringValue_m89CE0B2CF94DFBFF72B05031654EEE663470AB39_RuntimeMethod_var), NULL);
__this->___valueGetter_10 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___valueGetter_10), (void*)L_2);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_4;
L_4 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_3, NULL);
il2cpp_codegen_memory_barrier();
((XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E_StaticFields*)il2cpp_codegen_static_fields_for(XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E_il2cpp_TypeInfo_var))->___TypeOfString_41 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&((XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E_StaticFields*)il2cpp_codegen_static_fields_for(XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E_il2cpp_TypeInfo_var))->___TypeOfString_41), (void*)L_4);
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_5 = (XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B*)il2cpp_codegen_object_new(XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B_il2cpp_TypeInfo_var);
NullCheck(L_5);
XmlSchemaInfo__ctor_mEEC95F1F490C5D62BF1CC6DB16FE4938E5C1C341(L_5, NULL);
__this->___xmlSchemaInfo_24 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlSchemaInfo_24), (void*)L_5);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_6 = __this->___coreReaderNameTable_26;
NullCheck(L_6);
String_t* L_7;
L_7 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_6, _stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE);
__this->___NsXmlNs_29 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&__this->___NsXmlNs_29), (void*)L_7);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_8 = __this->___coreReaderNameTable_26;
NullCheck(L_8);
String_t* L_9;
L_9 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_8, _stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF);
__this->___NsXs_30 = L_9;
Il2CppCodeGenWriteBarrier((void**)(&__this->___NsXs_30), (void*)L_9);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_10 = __this->___coreReaderNameTable_26;
NullCheck(L_10);
String_t* L_11;
L_11 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_10, _stringLiteral7C014955313A7D33D5D04696B884B25325E6393C);
__this->___NsXsi_31 = L_11;
Il2CppCodeGenWriteBarrier((void**)(&__this->___NsXsi_31), (void*)L_11);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_12 = __this->___coreReaderNameTable_26;
NullCheck(L_12);
String_t* L_13;
L_13 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_12, _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7);
__this->___XsiType_32 = L_13;
Il2CppCodeGenWriteBarrier((void**)(&__this->___XsiType_32), (void*)L_13);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_14 = __this->___coreReaderNameTable_26;
NullCheck(L_14);
String_t* L_15;
L_15 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_14, _stringLiteral2CAB73EF57D40E8B63A7CA91D057C0B68DB59100);
__this->___XsiNil_33 = L_15;
Il2CppCodeGenWriteBarrier((void**)(&__this->___XsiNil_33), (void*)L_15);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_16 = __this->___coreReaderNameTable_26;
NullCheck(L_16);
String_t* L_17;
L_17 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_16, _stringLiteralFEE4613988B693DA6A4D82B4FB413453362FD0FD);
__this->___XsiSchemaLocation_35 = L_17;
Il2CppCodeGenWriteBarrier((void**)(&__this->___XsiSchemaLocation_35), (void*)L_17);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_18 = __this->___coreReaderNameTable_26;
NullCheck(L_18);
String_t* L_19;
L_19 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_18, _stringLiteral63CBFAF32B506F8EA636D9CD08CD2EDAA1756BDE);
__this->___XsiNoNamespaceSchemaLocation_36 = L_19;
Il2CppCodeGenWriteBarrier((void**)(&__this->___XsiNoNamespaceSchemaLocation_36), (void*)L_19);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_20 = __this->___coreReaderNameTable_26;
NullCheck(L_20);
String_t* L_21;
L_21 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_20, _stringLiteralEBEFE00D9826F57DF92563511F63A82DDD84B35E);
__this->___XsdSchema_34 = L_21;
Il2CppCodeGenWriteBarrier((void**)(&__this->___XsdSchema_34), (void*)L_21);
return;
}
}
// System.Void System.Xml.XsdValidatingReader::SetupValidator(System.Xml.XmlReaderSettings,System.Xml.XmlReader,System.Xml.Schema.XmlSchemaObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdValidatingReader_SetupValidator_mD8120140BD8D7D7020C6F3B1AC37B0C4160FAD9D (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* ___readerSettings0, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader1, XmlSchemaObject_t82CCD87AADB4BEF4E9DFE4C501F09EDA372AA19D* ___partialValidationType2, 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*)&XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_0 = __this->___coreReaderNameTable_26;
XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_1 = ___readerSettings0;
NullCheck(L_1);
XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* L_2;
L_2 = XmlReaderSettings_get_Schemas_mCA60590694647CFB542019784F457006B33D2C62(L_1, NULL);
RuntimeObject* L_3 = __this->___thisNSResolver_5;
XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_4 = ___readerSettings0;
NullCheck(L_4);
int32_t L_5;
L_5 = XmlReaderSettings_get_ValidationFlags_m22A3C5CFDC1CBF2EF8B5975A581B00EDF4D8E876_inline(L_4, NULL);
XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* L_6 = (XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24*)il2cpp_codegen_object_new(XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24_il2cpp_TypeInfo_var);
NullCheck(L_6);
XmlSchemaValidator__ctor_m56BB2CC33204184249C0FBAEFFB62360CE357D58(L_6, L_0, L_2, L_3, L_5, NULL);
__this->___validator_6 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->___validator_6), (void*)L_6);
XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* L_7 = __this->___validator_6;
XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_8 = __this->___xmlResolver_7;
NullCheck(L_7);
XmlSchemaValidator_set_XmlResolver_mDC237AD870BB422EBE00CABC121D6463BD83AC7B_inline(L_7, L_8, NULL);
XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* L_9 = __this->___validator_6;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_10 = ___reader1;
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(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var);
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_12;
L_12 = XmlConvert_ToUri_m8FB9C7F2427BDE686CDEB6A0A89A2291262377BA(L_11, NULL);
NullCheck(L_9);
XmlSchemaValidator_set_SourceUri_m9CE5DB7D7E96302E4A1EFB8AE9532E5A50943C6D(L_9, L_12, NULL);
XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* L_13 = __this->___validator_6;
NullCheck(L_13);
XmlSchemaValidator_set_ValidationEventSender_m86BA6FEA0FF7C3084A563502919ED3AFC4B5FEF3_inline(L_13, __this, NULL);
XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* L_14 = __this->___validator_6;
XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_15 = ___readerSettings0;
NullCheck(L_15);
ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* L_16;
L_16 = XmlReaderSettings_GetEventHandler_m846EA87D263A6804F452088315D63F5FA898AC64_inline(L_15, NULL);
NullCheck(L_14);
XmlSchemaValidator_add_ValidationEventHandler_mE543B33598AD152106B6502A2BB811774E04C4FF(L_14, L_16, NULL);
XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* L_17 = __this->___validator_6;
RuntimeObject* L_18 = __this->___lineInfo_38;
NullCheck(L_17);
XmlSchemaValidator_set_LineInfoProvider_mCE8464C94CE62045B4E7E1D5E98CE08C5A133F7B(L_17, L_18, NULL);
XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* L_19 = __this->___validator_6;
NullCheck(L_19);
bool L_20;
L_20 = XmlSchemaValidator_get_ProcessSchemaHints_m37A5B2EC6FEF8D19AC53A4444F8A86CB7442F491(L_19, NULL);
if (!L_20)
{
goto IL_00a0;
}
}
{
XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* L_21 = __this->___validator_6;
NullCheck(L_21);
XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* L_22;
L_22 = XmlSchemaValidator_get_SchemaSet_m5FF824719184397EE034CEB9C75AA11723A6EF11_inline(L_21, NULL);
NullCheck(L_22);
XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_23;
L_23 = XmlSchemaSet_get_ReaderSettings_m93D79181C45DC697575A64806D2D47229BE1A7F5_inline(L_22, NULL);
XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_24 = ___readerSettings0;
NullCheck(L_24);
int32_t L_25;
L_25 = XmlReaderSettings_get_DtdProcessing_m6855A18AA93729899B666898C1FD7B46D3330C5F_inline(L_24, NULL);
NullCheck(L_23);
XmlReaderSettings_set_DtdProcessing_mDC4E1119E3381F9C237565E3FFFC5B2CFF7C0043(L_23, L_25, NULL);
}
IL_00a0:
{
XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* L_26 = __this->___validator_6;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_27 = ___reader1;
NullCheck(L_27);
RuntimeObject* L_28;
L_28 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(52 /* System.Xml.IDtdInfo System.Xml.XmlReader::get_DtdInfo() */, L_27);
NullCheck(L_26);
XmlSchemaValidator_SetDtdSchemaInfo_m2B01EAA86B72F725DD85A03BE1E5C7807AD09552(L_26, L_28, NULL);
XmlSchemaObject_t82CCD87AADB4BEF4E9DFE4C501F09EDA372AA19D* L_29 = ___partialValidationType2;
if (!L_29)
{
goto IL_00c1;
}
}
{
XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* L_30 = __this->___validator_6;
XmlSchemaObject_t82CCD87AADB4BEF4E9DFE4C501F09EDA372AA19D* L_31 = ___partialValidationType2;
NullCheck(L_30);
XmlSchemaValidator_Initialize_mE3D993BD39AE63C57ED26CDF333903F1A5FD0C82(L_30, L_31, NULL);
return;
}
IL_00c1:
{
XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* L_32 = __this->___validator_6;
NullCheck(L_32);
XmlSchemaValidator_Initialize_m7C9C522F9DD17BD23E1ED3A2B17FBC996F71EC3E(L_32, NULL);
return;
}
}
// System.Xml.XmlReaderSettings System.Xml.XsdValidatingReader::get_Settings()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* XsdValidatingReader_get_Settings_m03FC9B4A2400EFE70D27F759EE7EA707316EEB26 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __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;
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3;
NullCheck(L_0);
XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_1;
L_1 = VirtualFuncInvoker0< XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* >::Invoke(5 /* System.Xml.XmlReaderSettings System.Xml.XmlReader::get_Settings() */, L_0);
V_0 = L_1;
XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_2 = V_0;
if (!L_2)
{
goto IL_0016;
}
}
{
XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_3 = V_0;
NullCheck(L_3);
XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_4;
L_4 = XmlReaderSettings_Clone_m6581889814EA9982ABCE97535D76722F81972101(L_3, NULL);
V_0 = L_4;
}
IL_0016:
{
XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_5 = V_0;
if (L_5)
{
goto IL_001f;
}
}
{
XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_6 = (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA*)il2cpp_codegen_object_new(XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_il2cpp_TypeInfo_var);
NullCheck(L_6);
XmlReaderSettings__ctor_m1BAF1E969D42F7C5D453B381FA763F333C715364(L_6, NULL);
V_0 = L_6;
}
IL_001f:
{
XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_7 = V_0;
XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* L_8 = __this->___validator_6;
NullCheck(L_8);
XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* L_9;
L_9 = XmlSchemaValidator_get_SchemaSet_m5FF824719184397EE034CEB9C75AA11723A6EF11_inline(L_8, NULL);
NullCheck(L_7);
XmlReaderSettings_set_Schemas_m4210C0E93B55A57E27BE2D71AC039E8D51DE2EA2(L_7, L_9, NULL);
XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_10 = V_0;
NullCheck(L_10);
XmlReaderSettings_set_ValidationType_m651D049117DA5C80F75BEB925AB0E1FE40E25620(L_10, 4, NULL);
XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_11 = V_0;
XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* L_12 = __this->___validator_6;
NullCheck(L_12);
int32_t L_13;
L_13 = XmlSchemaValidator_get_ValidationFlags_m7AD61F111A15626C30081CCDD6A4D89C07478AF9_inline(L_12, NULL);
NullCheck(L_11);
XmlReaderSettings_set_ValidationFlags_m846A17F2EB68AF5C850CDE3CA8218B2D6A400A02(L_11, L_13, NULL);
XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_14 = V_0;
NullCheck(L_14);
XmlReaderSettings_set_ReadOnly_mE9D803936E0E2E8A22464C57D96C71AB35D1A6CB_inline(L_14, (bool)1, NULL);
XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_15 = V_0;
return L_15;
}
}
// System.Xml.XmlNodeType System.Xml.XsdValidatingReader::get_NodeType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdValidatingReader_get_NodeType_m58EC91F3A87623F816CAAA126E54E6B82DED479C (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->___validationState_9;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_1 = __this->___cachedNode_15;
NullCheck(L_1);
int32_t L_2;
L_2 = ValidatingReaderNodeData_get_NodeType_m3E275338D3EAE907A584E73F6C5E35EA6B932CE6_inline(L_1, NULL);
return L_2;
}
IL_0015:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_3 = __this->___coreReader_3;
NullCheck(L_3);
int32_t L_4;
L_4 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_3);
V_0 = L_4;
int32_t L_5 = V_0;
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)13)))))
{
goto IL_0044;
}
}
{
XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* L_6 = __this->___validator_6;
NullCheck(L_6);
int32_t L_7;
L_7 = XmlSchemaValidator_get_CurrentContentType_m8C0D380365940F827814FEF5DC65CE61DB47EBF1(L_6, NULL);
if (!L_7)
{
goto IL_0041;
}
}
{
XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* L_8 = __this->___validator_6;
NullCheck(L_8);
int32_t L_9;
L_9 = XmlSchemaValidator_get_CurrentContentType_m8C0D380365940F827814FEF5DC65CE61DB47EBF1(L_8, NULL);
if ((!(((uint32_t)L_9) == ((uint32_t)3))))
{
goto IL_0044;
}
}
IL_0041:
{
return (int32_t)(((int32_t)14));
}
IL_0044:
{
int32_t L_10 = V_0;
return L_10;
}
}
// System.String System.Xml.XsdValidatingReader::get_Name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsdValidatingReader_get_Name_m195DD56FFCCCB1AD8F180B289E3377FBE23045E0 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
int32_t L_0 = __this->___validationState_9;
if ((!(((uint32_t)L_0) == ((uint32_t)(-1)))))
{
goto IL_005c;
}
}
{
XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* L_1 = __this->___validator_6;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_2 = __this->___cachedNode_15;
NullCheck(L_2);
String_t* L_3;
L_3 = ValidatingReaderNodeData_get_Namespace_mE44583C79C6B1F0C5C6C2768590464A804E57FF6_inline(L_2, NULL);
NullCheck(L_1);
String_t* L_4;
L_4 = XmlSchemaValidator_GetDefaultAttributePrefix_m1620E7D1E70EC57BBD3DECA1B1B8C2BC4B31B620(L_1, L_3, NULL);
V_0 = L_4;
String_t* L_5 = V_0;
if (!L_5)
{
goto IL_0050;
}
}
{
String_t* L_6 = V_0;
NullCheck(L_6);
int32_t L_7;
L_7 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_6, NULL);
if (!L_7)
{
goto IL_0050;
}
}
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_8 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_9 = L_8;
String_t* L_10 = V_0;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_11 = __this->___cachedNode_15;
NullCheck(L_11);
String_t* L_12;
L_12 = ValidatingReaderNodeData_get_LocalName_m1B5FCCE13DF4BA2F5CF1AD689A9186064EB5349D_inline(L_11, NULL);
String_t* L_13;
L_13 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(L_10, _stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D, L_12, NULL);
NullCheck(L_9);
ArrayElementTypeCheck (L_9, L_13);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_13);
String_t* L_14;
L_14 = String_Concat_m6B0734B65813C8EA093D78E5C2D16534EB6FE8C0(L_9, NULL);
return L_14;
}
IL_0050:
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_15 = __this->___cachedNode_15;
NullCheck(L_15);
String_t* L_16;
L_16 = ValidatingReaderNodeData_get_LocalName_m1B5FCCE13DF4BA2F5CF1AD689A9186064EB5349D_inline(L_15, NULL);
return L_16;
}
IL_005c:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_17 = __this->___coreReader_3;
NullCheck(L_17);
String_t* L_18;
L_18 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlReader::get_Name() */, L_17);
return L_18;
}
}
// System.String System.Xml.XsdValidatingReader::get_LocalName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsdValidatingReader_get_LocalName_m4F229D27D7920DA0A502CA1BC87536C94B21FC96 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___validationState_9;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_1 = __this->___cachedNode_15;
NullCheck(L_1);
String_t* L_2;
L_2 = ValidatingReaderNodeData_get_LocalName_m1B5FCCE13DF4BA2F5CF1AD689A9186064EB5349D_inline(L_1, NULL);
return L_2;
}
IL_0015:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_3 = __this->___coreReader_3;
NullCheck(L_3);
String_t* L_4;
L_4 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_3);
return L_4;
}
}
// System.String System.Xml.XsdValidatingReader::get_NamespaceURI()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsdValidatingReader_get_NamespaceURI_mCB2F392A85F66F82120B8998EC6B305CE843A2A1 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___validationState_9;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_1 = __this->___cachedNode_15;
NullCheck(L_1);
String_t* L_2;
L_2 = ValidatingReaderNodeData_get_Namespace_mE44583C79C6B1F0C5C6C2768590464A804E57FF6_inline(L_1, NULL);
return L_2;
}
IL_0015:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_3 = __this->___coreReader_3;
NullCheck(L_3);
String_t* L_4;
L_4 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_3);
return L_4;
}
}
// System.String System.Xml.XsdValidatingReader::get_Prefix()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsdValidatingReader_get_Prefix_m47BBF0208E04F54E7EAEBD858650BF6E1C028A44 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___validationState_9;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_1 = __this->___cachedNode_15;
NullCheck(L_1);
String_t* L_2;
L_2 = ValidatingReaderNodeData_get_Prefix_m47A65BB79C9FE8B2152542E47AB5DB9FDD0F3D34_inline(L_1, NULL);
return L_2;
}
IL_0015:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_3 = __this->___coreReader_3;
NullCheck(L_3);
String_t* L_4;
L_4 = VirtualFuncInvoker0< String_t* >::Invoke(10 /* System.String System.Xml.XmlReader::get_Prefix() */, L_3);
return L_4;
}
}
// System.String System.Xml.XsdValidatingReader::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsdValidatingReader_get_Value_mE2BE3B8B3F315A8BFAD1EFE9A7C6A0FD43EBFC95 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___validationState_9;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_1 = __this->___cachedNode_15;
NullCheck(L_1);
String_t* L_2;
L_2 = ValidatingReaderNodeData_get_RawValue_m910C83DC6975C87F12721378D46110F5A19B272B_inline(L_1, NULL);
return L_2;
}
IL_0015:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_3 = __this->___coreReader_3;
NullCheck(L_3);
String_t* L_4;
L_4 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_3);
return L_4;
}
}
// System.Int32 System.Xml.XsdValidatingReader::get_Depth()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdValidatingReader_get_Depth_mCC4B6FC13C79E8F3DF2CEA3DCE0976312E0CE828 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___validationState_9;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_1 = __this->___cachedNode_15;
NullCheck(L_1);
int32_t L_2;
L_2 = ValidatingReaderNodeData_get_Depth_m08B579D77C5CA1CEA934CD16CB8CB36040A1E59D_inline(L_1, NULL);
return L_2;
}
IL_0015:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_3 = __this->___coreReader_3;
NullCheck(L_3);
int32_t L_4;
L_4 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* System.Int32 System.Xml.XmlReader::get_Depth() */, L_3);
return L_4;
}
}
// System.String System.Xml.XsdValidatingReader::get_BaseURI()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsdValidatingReader_get_BaseURI_mE226D52DF12E8EA83B76C7738B62731C6E9446ED (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __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.XsdValidatingReader::get_IsEmptyElement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XsdValidatingReader_get_IsEmptyElement_m66231CBF4E1AADA4AE1374CB22316A5A3A037C8F (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __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.XsdValidatingReader::get_IsDefault()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XsdValidatingReader_get_IsDefault_m220571EA133AD4070CF8276AD460DD27EA11EE9D (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___validationState_9;
if ((!(((uint32_t)L_0) == ((uint32_t)(-1)))))
{
goto IL_000b;
}
}
{
return (bool)1;
}
IL_000b:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1 = __this->___coreReader_3;
NullCheck(L_1);
bool L_2;
L_2 = VirtualFuncInvoker0< bool >::Invoke(15 /* System.Boolean System.Xml.XmlReader::get_IsDefault() */, L_1);
return L_2;
}
}
// System.Char System.Xml.XsdValidatingReader::get_QuoteChar()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar XsdValidatingReader_get_QuoteChar_mF7A3D355D639389E9DFA0EC1B1BABB8CC619C24F (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __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.XsdValidatingReader::get_XmlSpace()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdValidatingReader_get_XmlSpace_mC10F12BFF9CCEB88A13DCAA9DCE65EDCB9B4B878 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __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.XsdValidatingReader::get_XmlLang()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsdValidatingReader_get_XmlLang_m6DD3D2D51C16542AC745A5E0A616D47B5B820247 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __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.Schema.IXmlSchemaInfo System.Xml.XsdValidatingReader::get_SchemaInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XsdValidatingReader_get_SchemaInfo_m629AAC903A4D2BF957CBF2153C6AC140BCE7ECBF (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
{
return __this;
}
}
// System.Type System.Xml.XsdValidatingReader::get_ValueType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* XsdValidatingReader_get_ValueType_mF23B3788CE281D0F4E473F666107E78A20469EE6 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0;
L_0 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, __this);
V_0 = L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_0014;
}
}
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)2)))
{
goto IL_0037;
}
}
{
int32_t L_3 = V_0;
if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)15)))))
{
goto IL_0062;
}
}
IL_0014:
{
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_4 = __this->___xmlSchemaInfo_24;
NullCheck(L_4);
int32_t L_5;
L_5 = XmlSchemaInfo_get_ContentType_mCCA068AA3574842BD420262E10289905AEFF231B_inline(L_4, NULL);
if (L_5)
{
goto IL_0062;
}
}
{
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_6 = __this->___xmlSchemaInfo_24;
NullCheck(L_6);
XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* L_7;
L_7 = XmlSchemaInfo_get_SchemaType_mEB10A4E308F1E049AB929D5AB45087160B8A4979_inline(L_6, NULL);
NullCheck(L_7);
XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D* L_8;
L_8 = XmlSchemaType_get_Datatype_mECB5426C8F94D6BEF27D5E8648BCCDB17C5EAC16_inline(L_7, NULL);
NullCheck(L_8);
Type_t* L_9;
L_9 = VirtualFuncInvoker0< Type_t* >::Invoke(4 /* System.Type System.Xml.Schema.XmlSchemaDatatype::get_ValueType() */, L_8);
return L_9;
}
IL_0037:
{
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_10 = __this->___attributePSVI_16;
if (!L_10)
{
goto IL_0062;
}
}
{
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_11;
L_11 = XsdValidatingReader_get_AttributeSchemaInfo_m1EBC66056100FDAA9DC9A976F06BF72B6841A4CD(__this, NULL);
NullCheck(L_11);
int32_t L_12;
L_12 = XmlSchemaInfo_get_ContentType_mCCA068AA3574842BD420262E10289905AEFF231B_inline(L_11, NULL);
if (L_12)
{
goto IL_0062;
}
}
{
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_13;
L_13 = XsdValidatingReader_get_AttributeSchemaInfo_m1EBC66056100FDAA9DC9A976F06BF72B6841A4CD(__this, NULL);
NullCheck(L_13);
XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* L_14;
L_14 = XmlSchemaInfo_get_SchemaType_mEB10A4E308F1E049AB929D5AB45087160B8A4979_inline(L_13, NULL);
NullCheck(L_14);
XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D* L_15;
L_15 = XmlSchemaType_get_Datatype_mECB5426C8F94D6BEF27D5E8648BCCDB17C5EAC16_inline(L_14, NULL);
NullCheck(L_15);
Type_t* L_16;
L_16 = VirtualFuncInvoker0< Type_t* >::Invoke(4 /* System.Type System.Xml.Schema.XmlSchemaDatatype::get_ValueType() */, L_15);
return L_16;
}
IL_0062:
{
Type_t* L_17 = ((XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E_StaticFields*)il2cpp_codegen_static_fields_for(XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E_il2cpp_TypeInfo_var))->___TypeOfString_41;
il2cpp_codegen_memory_barrier();
return L_17;
}
}
// System.Int32 System.Xml.XsdValidatingReader::get_AttributeCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdValidatingReader_get_AttributeCount_m02A6DF21F71E3FB23EEFF9E9FB064A996C783995 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___attributeCount_17;
return L_0;
}
}
// System.String System.Xml.XsdValidatingReader::GetAttribute(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsdValidatingReader_GetAttribute_m33AC84FAFB3ACC43BAF26AECFA5C606C0C00C051 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, String_t* ___name0, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* V_1 = NULL;
{
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);
V_0 = L_2;
String_t* L_3 = V_0;
if (L_3)
{
goto IL_002c;
}
}
{
int32_t L_4 = __this->___attributeCount_17;
if ((((int32_t)L_4) <= ((int32_t)0)))
{
goto IL_002c;
}
}
{
String_t* L_5 = ___name0;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_6;
L_6 = XsdValidatingReader_GetDefaultAttribute_m800DE584E700B6AB7096FECEE9B8A1BE185F5B36(__this, L_5, (bool)0, NULL);
V_1 = L_6;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_7 = V_1;
if (!L_7)
{
goto IL_002c;
}
}
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_8 = V_1;
NullCheck(L_8);
String_t* L_9;
L_9 = ValidatingReaderNodeData_get_RawValue_m910C83DC6975C87F12721378D46110F5A19B272B_inline(L_8, NULL);
V_0 = L_9;
}
IL_002c:
{
String_t* L_10 = V_0;
return L_10;
}
}
// System.String System.Xml.XsdValidatingReader::GetAttribute(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsdValidatingReader_GetAttribute_mE706D23DB842946AE4F4E98CBCEAF50F3D3E96F3 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, String_t* ___name0, String_t* ___namespaceURI1, 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;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* V_1 = NULL;
String_t* G_B5_0 = NULL;
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3;
String_t* L_1 = ___name0;
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);
V_0 = L_3;
String_t* L_4 = V_0;
if (L_4)
{
goto IL_005c;
}
}
{
int32_t L_5 = __this->___attributeCount_17;
if ((((int32_t)L_5) <= ((int32_t)0)))
{
goto IL_005c;
}
}
{
String_t* L_6 = ___namespaceURI1;
if (!L_6)
{
goto IL_002b;
}
}
{
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_7 = __this->___coreReaderNameTable_26;
String_t* L_8 = ___namespaceURI1;
NullCheck(L_7);
String_t* L_9;
L_9 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(4 /* System.String System.Xml.XmlNameTable::Get(System.String) */, L_7, L_8);
G_B5_0 = L_9;
goto IL_0030;
}
IL_002b:
{
String_t* L_10 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
G_B5_0 = L_10;
}
IL_0030:
{
___namespaceURI1 = G_B5_0;
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_11 = __this->___coreReaderNameTable_26;
String_t* L_12 = ___name0;
NullCheck(L_11);
String_t* L_13;
L_13 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(4 /* System.String System.Xml.XmlNameTable::Get(System.String) */, L_11, L_12);
___name0 = L_13;
String_t* L_14 = ___name0;
if (!L_14)
{
goto IL_0046;
}
}
{
String_t* L_15 = ___namespaceURI1;
if (L_15)
{
goto IL_0048;
}
}
IL_0046:
{
return (String_t*)NULL;
}
IL_0048:
{
String_t* L_16 = ___name0;
String_t* L_17 = ___namespaceURI1;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_18;
L_18 = XsdValidatingReader_GetDefaultAttribute_m0365FFD5B3B5E7299CBB7E3AA34E9703F968D86A(__this, L_16, L_17, (bool)0, NULL);
V_1 = L_18;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_19 = V_1;
if (!L_19)
{
goto IL_005c;
}
}
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_20 = V_1;
NullCheck(L_20);
String_t* L_21;
L_21 = ValidatingReaderNodeData_get_RawValue_m910C83DC6975C87F12721378D46110F5A19B272B_inline(L_20, NULL);
return L_21;
}
IL_005c:
{
String_t* L_22 = V_0;
return L_22;
}
}
// System.String System.Xml.XsdValidatingReader::GetAttribute(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsdValidatingReader_GetAttribute_m1D35306001500EF7DD530ADD7AA9F7B698B59B3F (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, int32_t ___i0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = __this->___attributeCount_17;
if (L_0)
{
goto IL_000a;
}
}
{
return (String_t*)NULL;
}
IL_000a:
{
int32_t L_1 = ___i0;
int32_t L_2 = __this->___coreReaderAttributeCount_18;
if ((((int32_t)L_1) >= ((int32_t)L_2)))
{
goto IL_0020;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_3 = __this->___coreReader_3;
int32_t L_4 = ___i0;
NullCheck(L_3);
String_t* L_5;
L_5 = VirtualFuncInvoker1< String_t*, int32_t >::Invoke(24 /* System.String System.Xml.XmlReader::GetAttribute(System.Int32) */, L_3, L_4);
return L_5;
}
IL_0020:
{
int32_t L_6 = ___i0;
int32_t L_7 = __this->___coreReaderAttributeCount_18;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_6, L_7));
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_8 = __this->___defaultAttributes_21;
int32_t L_9 = V_0;
NullCheck(L_8);
RuntimeObject* L_10;
L_10 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_8, L_9);
NullCheck(((ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C*)CastclassClass((RuntimeObject*)L_10, ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C_il2cpp_TypeInfo_var)));
String_t* L_11;
L_11 = ValidatingReaderNodeData_get_RawValue_m910C83DC6975C87F12721378D46110F5A19B272B_inline(((ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C*)CastclassClass((RuntimeObject*)L_10, ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C_il2cpp_TypeInfo_var)), NULL);
return L_11;
}
}
// System.Boolean System.Xml.XsdValidatingReader::MoveToAttribute(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XsdValidatingReader_MoveToAttribute_m2EFF6E9E175FB6C00414E2439D9A20465AC60F00 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, String_t* ___name0, const RuntimeMethod* method)
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* V_0 = NULL;
{
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_0024;
}
}
{
__this->___validationState_9 = 3;
String_t* L_3 = ___name0;
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_4;
L_4 = XsdValidatingReader_GetAttributePSVI_mA133A6CAD4FCA8731DDC805A1DA9A1132447436D(__this, L_3, NULL);
__this->___attributePSVI_16 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->___attributePSVI_16), (void*)L_4);
goto IL_0057;
}
IL_0024:
{
int32_t L_5 = __this->___attributeCount_17;
if ((((int32_t)L_5) <= ((int32_t)0)))
{
goto IL_0055;
}
}
{
String_t* L_6 = ___name0;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_7;
L_7 = XsdValidatingReader_GetDefaultAttribute_m800DE584E700B6AB7096FECEE9B8A1BE185F5B36(__this, L_6, (bool)1, NULL);
V_0 = L_7;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_8 = V_0;
if (!L_8)
{
goto IL_0055;
}
}
{
__this->___validationState_9 = (-1);
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_9 = V_0;
NullCheck(L_9);
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_10;
L_10 = ValidatingReaderNodeData_get_AttInfo_m45ACBC84102E1D9D046D31FD457A3DCA98E2090F_inline(L_9, NULL);
__this->___attributePSVI_16 = L_10;
Il2CppCodeGenWriteBarrier((void**)(&__this->___attributePSVI_16), (void*)L_10);
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_11 = V_0;
__this->___cachedNode_15 = L_11;
Il2CppCodeGenWriteBarrier((void**)(&__this->___cachedNode_15), (void*)L_11);
goto IL_0057;
}
IL_0055:
{
return (bool)0;
}
IL_0057:
{
int32_t L_12 = __this->___validationState_9;
if ((!(((uint32_t)L_12) == ((uint32_t)7))))
{
goto IL_0077;
}
}
{
ReadContentAsBinaryHelper_t94D48E6891DEAC8DFE5DEA1B820091D277880897* L_13 = __this->___readBinaryHelper_39;
NullCheck(L_13);
ReadContentAsBinaryHelper_Finish_m56919E9B4A660955115D1C0680C0FF772DC649F9(L_13, NULL);
int32_t L_14 = __this->___savedState_40;
__this->___validationState_9 = L_14;
}
IL_0077:
{
return (bool)1;
}
}
// System.Void System.Xml.XsdValidatingReader::MoveToAttribute(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdValidatingReader_MoveToAttribute_m7A609945B50B4395E8FCBB7BB237A745EE8607D1 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, int32_t ___i0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___i0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_000d;
}
}
{
int32_t L_1 = ___i0;
int32_t L_2 = __this->___attributeCount_17;
if ((((int32_t)L_1) < ((int32_t)L_2)))
{
goto IL_0018;
}
}
IL_000d:
{
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*)&_stringLiteral1B8590E2F95A4B0631E98EAF5F61AFD63A1C031E)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XsdValidatingReader_MoveToAttribute_m7A609945B50B4395E8FCBB7BB237A745EE8607D1_RuntimeMethod_var)));
}
IL_0018:
{
int32_t L_4 = ___i0;
__this->___currentAttrIndex_19 = L_4;
int32_t L_5 = ___i0;
int32_t L_6 = __this->___coreReaderAttributeCount_18;
if ((((int32_t)L_5) >= ((int32_t)L_6)))
{
goto IL_005c;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_7 = __this->___coreReader_3;
int32_t L_8 = ___i0;
NullCheck(L_7);
VirtualActionInvoker1< int32_t >::Invoke(26 /* System.Void System.Xml.XmlReader::MoveToAttribute(System.Int32) */, L_7, L_8);
Parser_t5A18E84F88E618D9E803A7768A7765BF17DB2C07* L_9 = __this->___inlineSchemaParser_22;
if (L_9)
{
goto IL_004c;
}
}
{
AttributePSVIInfoU5BU5D_tC78F3BF4DD87E93F42D8DA640AA29B625F3644BD* L_10 = __this->___attributePSVINodes_20;
int32_t L_11 = ___i0;
NullCheck(L_10);
int32_t L_12 = L_11;
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
__this->___attributePSVI_16 = L_13;
Il2CppCodeGenWriteBarrier((void**)(&__this->___attributePSVI_16), (void*)L_13);
goto IL_0053;
}
IL_004c:
{
__this->___attributePSVI_16 = (AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___attributePSVI_16), (void*)(AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE*)NULL);
}
IL_0053:
{
__this->___validationState_9 = 3;
goto IL_0094;
}
IL_005c:
{
int32_t L_14 = ___i0;
int32_t L_15 = __this->___coreReaderAttributeCount_18;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_14, L_15));
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_16 = __this->___defaultAttributes_21;
int32_t L_17 = V_0;
NullCheck(L_16);
RuntimeObject* L_18;
L_18 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_16, L_17);
__this->___cachedNode_15 = ((ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C*)CastclassClass((RuntimeObject*)L_18, ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C_il2cpp_TypeInfo_var));
Il2CppCodeGenWriteBarrier((void**)(&__this->___cachedNode_15), (void*)((ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C*)CastclassClass((RuntimeObject*)L_18, ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C_il2cpp_TypeInfo_var)));
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_19 = __this->___cachedNode_15;
NullCheck(L_19);
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_20;
L_20 = ValidatingReaderNodeData_get_AttInfo_m45ACBC84102E1D9D046D31FD457A3DCA98E2090F_inline(L_19, NULL);
__this->___attributePSVI_16 = L_20;
Il2CppCodeGenWriteBarrier((void**)(&__this->___attributePSVI_16), (void*)L_20);
__this->___validationState_9 = (-1);
}
IL_0094:
{
int32_t L_21 = __this->___validationState_9;
if ((!(((uint32_t)L_21) == ((uint32_t)7))))
{
goto IL_00b4;
}
}
{
ReadContentAsBinaryHelper_t94D48E6891DEAC8DFE5DEA1B820091D277880897* L_22 = __this->___readBinaryHelper_39;
NullCheck(L_22);
ReadContentAsBinaryHelper_Finish_m56919E9B4A660955115D1C0680C0FF772DC649F9(L_22, NULL);
int32_t L_23 = __this->___savedState_40;
__this->___validationState_9 = L_23;
}
IL_00b4:
{
return;
}
}
// System.Boolean System.Xml.XsdValidatingReader::MoveToFirstAttribute()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XsdValidatingReader_MoveToFirstAttribute_mD5B23CD7DD30EFDBCBA15A8F620BD9F0AA5652B4 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
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_003c;
}
}
{
__this->___currentAttrIndex_19 = 0;
Parser_t5A18E84F88E618D9E803A7768A7765BF17DB2C07* L_2 = __this->___inlineSchemaParser_22;
if (L_2)
{
goto IL_002c;
}
}
{
AttributePSVIInfoU5BU5D_tC78F3BF4DD87E93F42D8DA640AA29B625F3644BD* L_3 = __this->___attributePSVINodes_20;
NullCheck(L_3);
int32_t L_4 = 0;
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_5 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
__this->___attributePSVI_16 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&__this->___attributePSVI_16), (void*)L_5);
goto IL_0033;
}
IL_002c:
{
__this->___attributePSVI_16 = (AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___attributePSVI_16), (void*)(AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE*)NULL);
}
IL_0033:
{
__this->___validationState_9 = 3;
goto IL_0084;
}
IL_003c:
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_6 = __this->___defaultAttributes_21;
NullCheck(L_6);
int32_t L_7;
L_7 = VirtualFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_6);
if ((((int32_t)L_7) <= ((int32_t)0)))
{
goto IL_0082;
}
}
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_8 = __this->___defaultAttributes_21;
NullCheck(L_8);
RuntimeObject* L_9;
L_9 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_8, 0);
__this->___cachedNode_15 = ((ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C*)CastclassClass((RuntimeObject*)L_9, ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C_il2cpp_TypeInfo_var));
Il2CppCodeGenWriteBarrier((void**)(&__this->___cachedNode_15), (void*)((ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C*)CastclassClass((RuntimeObject*)L_9, ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C_il2cpp_TypeInfo_var)));
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_10 = __this->___cachedNode_15;
NullCheck(L_10);
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_11;
L_11 = ValidatingReaderNodeData_get_AttInfo_m45ACBC84102E1D9D046D31FD457A3DCA98E2090F_inline(L_10, NULL);
__this->___attributePSVI_16 = L_11;
Il2CppCodeGenWriteBarrier((void**)(&__this->___attributePSVI_16), (void*)L_11);
__this->___currentAttrIndex_19 = 0;
__this->___validationState_9 = (-1);
goto IL_0084;
}
IL_0082:
{
return (bool)0;
}
IL_0084:
{
int32_t L_12 = __this->___validationState_9;
if ((!(((uint32_t)L_12) == ((uint32_t)7))))
{
goto IL_00a4;
}
}
{
ReadContentAsBinaryHelper_t94D48E6891DEAC8DFE5DEA1B820091D277880897* L_13 = __this->___readBinaryHelper_39;
NullCheck(L_13);
ReadContentAsBinaryHelper_Finish_m56919E9B4A660955115D1C0680C0FF772DC649F9(L_13, NULL);
int32_t L_14 = __this->___savedState_40;
__this->___validationState_9 = L_14;
}
IL_00a4:
{
return (bool)1;
}
}
// System.Boolean System.Xml.XsdValidatingReader::MoveToNextAttribute()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XsdValidatingReader_MoveToNextAttribute_m1F1CF5D8D1E86D9E9262E7E2DEF93BE315B25631 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
int32_t L_0 = __this->___currentAttrIndex_19;
int32_t L_1 = __this->___coreReaderAttributeCount_18;
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_0, 1))) >= ((int32_t)L_1)))
{
goto IL_0057;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_2 = __this->___coreReader_3;
NullCheck(L_2);
bool L_3;
L_3 = VirtualFuncInvoker0< bool >::Invoke(28 /* System.Boolean System.Xml.XmlReader::MoveToNextAttribute() */, L_2);
int32_t L_4 = __this->___currentAttrIndex_19;
__this->___currentAttrIndex_19 = ((int32_t)il2cpp_codegen_add(L_4, 1));
Parser_t5A18E84F88E618D9E803A7768A7765BF17DB2C07* L_5 = __this->___inlineSchemaParser_22;
if (L_5)
{
goto IL_0047;
}
}
{
AttributePSVIInfoU5BU5D_tC78F3BF4DD87E93F42D8DA640AA29B625F3644BD* L_6 = __this->___attributePSVINodes_20;
int32_t L_7 = __this->___currentAttrIndex_19;
NullCheck(L_6);
int32_t L_8 = L_7;
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
__this->___attributePSVI_16 = L_9;
Il2CppCodeGenWriteBarrier((void**)(&__this->___attributePSVI_16), (void*)L_9);
goto IL_004e;
}
IL_0047:
{
__this->___attributePSVI_16 = (AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___attributePSVI_16), (void*)(AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE*)NULL);
}
IL_004e:
{
__this->___validationState_9 = 3;
goto IL_00b3;
}
IL_0057:
{
int32_t L_10 = __this->___currentAttrIndex_19;
int32_t L_11 = __this->___attributeCount_17;
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_10, 1))) >= ((int32_t)L_11)))
{
goto IL_00b1;
}
}
{
int32_t L_12 = __this->___currentAttrIndex_19;
V_1 = ((int32_t)il2cpp_codegen_add(L_12, 1));
int32_t L_13 = V_1;
__this->___currentAttrIndex_19 = L_13;
int32_t L_14 = V_1;
int32_t L_15 = __this->___coreReaderAttributeCount_18;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_14, L_15));
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_16 = __this->___defaultAttributes_21;
int32_t L_17 = V_0;
NullCheck(L_16);
RuntimeObject* L_18;
L_18 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_16, L_17);
__this->___cachedNode_15 = ((ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C*)CastclassClass((RuntimeObject*)L_18, ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C_il2cpp_TypeInfo_var));
Il2CppCodeGenWriteBarrier((void**)(&__this->___cachedNode_15), (void*)((ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C*)CastclassClass((RuntimeObject*)L_18, ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C_il2cpp_TypeInfo_var)));
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_19 = __this->___cachedNode_15;
NullCheck(L_19);
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_20;
L_20 = ValidatingReaderNodeData_get_AttInfo_m45ACBC84102E1D9D046D31FD457A3DCA98E2090F_inline(L_19, NULL);
__this->___attributePSVI_16 = L_20;
Il2CppCodeGenWriteBarrier((void**)(&__this->___attributePSVI_16), (void*)L_20);
__this->___validationState_9 = (-1);
goto IL_00b3;
}
IL_00b1:
{
return (bool)0;
}
IL_00b3:
{
int32_t L_21 = __this->___validationState_9;
if ((!(((uint32_t)L_21) == ((uint32_t)7))))
{
goto IL_00d3;
}
}
{
ReadContentAsBinaryHelper_t94D48E6891DEAC8DFE5DEA1B820091D277880897* L_22 = __this->___readBinaryHelper_39;
NullCheck(L_22);
ReadContentAsBinaryHelper_Finish_m56919E9B4A660955115D1C0680C0FF772DC649F9(L_22, NULL);
int32_t L_23 = __this->___savedState_40;
__this->___validationState_9 = L_23;
}
IL_00d3:
{
return (bool)1;
}
}
// System.Boolean System.Xml.XsdValidatingReader::MoveToElement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XsdValidatingReader_MoveToElement_m48F8FC1FD603257B79C60708F53375202510CE28 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __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_0016;
}
}
{
int32_t L_2 = __this->___validationState_9;
if ((((int32_t)L_2) >= ((int32_t)0)))
{
goto IL_0026;
}
}
IL_0016:
{
__this->___currentAttrIndex_19 = (-1);
__this->___validationState_9 = 4;
return (bool)1;
}
IL_0026:
{
return (bool)0;
}
}
// System.Boolean System.Xml.XsdValidatingReader::Read()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XsdValidatingReader_Read_m13D4D02129EF66DD626CF8D3E2E3784B0B944DAF (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->___validationState_9;
V_0 = L_0;
int32_t L_1 = V_0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_1, ((int32_t)-2))))
{
case 0:
{
goto IL_0084;
}
case 1:
{
goto IL_0084;
}
case 2:
{
goto IL_00f9;
}
case 3:
{
goto IL_00d7;
}
case 4:
{
goto IL_0045;
}
case 5:
{
goto IL_0084;
}
case 6:
{
goto IL_0084;
}
case 7:
{
goto IL_007c;
}
case 8:
{
goto IL_00a4;
}
case 9:
{
goto IL_00b9;
}
case 10:
{
goto IL_00f7;
}
case 11:
{
goto IL_00f7;
}
}
}
{
goto IL_00f9;
}
IL_0045:
{
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_005a;
}
}
{
XsdValidatingReader_ProcessReaderEvent_m6C0F7A68A7970883DC9787FE2F411BFF3B9FF31E(__this, NULL);
return (bool)1;
}
IL_005a:
{
XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* L_4 = __this->___validator_6;
NullCheck(L_4);
XmlSchemaValidator_EndValidation_m575836D703F3EC8F4F128F4E2CF8BABA4CDA8BFA(L_4, NULL);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_5 = __this->___coreReader_3;
NullCheck(L_5);
bool L_6;
L_6 = VirtualFuncInvoker0< bool >::Invoke(32 /* System.Boolean System.Xml.XmlReader::get_EOF() */, L_5);
if (!L_6)
{
goto IL_007a;
}
}
{
__this->___validationState_9 = ((int32_t)9);
}
IL_007a:
{
return (bool)0;
}
IL_007c:
{
XsdValidatingReader_ProcessInlineSchema_m5A8D4859906CC9A3ADD6FD358FC7F3638CE0FD0F(__this, NULL);
return (bool)1;
}
IL_0084:
{
XsdValidatingReader_ClearAttributesInfo_m49022431F4939F63130E671176FCEC4DFF03D80E(__this, NULL);
Parser_t5A18E84F88E618D9E803A7768A7765BF17DB2C07* L_7 = __this->___inlineSchemaParser_22;
if (!L_7)
{
goto IL_009b;
}
}
{
__this->___validationState_9 = 5;
goto IL_007c;
}
IL_009b:
{
__this->___validationState_9 = 2;
goto IL_0045;
}
IL_00a4:
{
XsdValidatingReader_ClearAttributesInfo_m49022431F4939F63130E671176FCEC4DFF03D80E(__this, NULL);
XsdValidatingReader_ProcessReaderEvent_m6C0F7A68A7970883DC9787FE2F411BFF3B9FF31E(__this, NULL);
__this->___validationState_9 = 2;
return (bool)1;
}
IL_00b9:
{
int32_t L_8 = __this->___savedState_40;
__this->___validationState_9 = L_8;
ReadContentAsBinaryHelper_t94D48E6891DEAC8DFE5DEA1B820091D277880897* L_9 = __this->___readBinaryHelper_39;
NullCheck(L_9);
ReadContentAsBinaryHelper_Finish_m56919E9B4A660955115D1C0680C0FF772DC649F9(L_9, NULL);
bool L_10;
L_10 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, __this);
return L_10;
}
IL_00d7:
{
__this->___validationState_9 = 2;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_11 = __this->___coreReader_3;
NullCheck(L_11);
int32_t L_12;
L_12 = VirtualFuncInvoker0< int32_t >::Invoke(34 /* System.Xml.ReadState System.Xml.XmlReader::get_ReadState() */, L_11);
if ((!(((uint32_t)L_12) == ((uint32_t)1))))
{
goto IL_0045;
}
}
{
XsdValidatingReader_ProcessReaderEvent_m6C0F7A68A7970883DC9787FE2F411BFF3B9FF31E(__this, NULL);
return (bool)1;
}
IL_00f7:
{
return (bool)0;
}
IL_00f9:
{
return (bool)0;
}
}
// System.Boolean System.Xml.XsdValidatingReader::get_EOF()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XsdValidatingReader_get_EOF_m144DBB451F7F162A6DC19AF235B535B2D178DED5 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __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.Void System.Xml.XsdValidatingReader::Close()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdValidatingReader_Close_mB89BEBF10E0C648B066BCD7C8B5FBDBF1BEA22D0 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __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->___validationState_9 = 8;
return;
}
}
// System.Xml.ReadState System.Xml.XsdValidatingReader::get_ReadState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdValidatingReader_get_ReadState_m93900465F3CB3590243343EC17C1C51AB6C06FB5 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___validationState_9;
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.Void System.Xml.XsdValidatingReader::Skip()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdValidatingReader_Skip_mE31738F477EDCB6A7CADCEBD2F5631F224836FBD (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
{
int32_t L_0;
L_0 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* System.Int32 System.Xml.XmlReader::get_Depth() */, __this);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, __this);
V_1 = L_1;
int32_t L_2 = V_1;
if ((((int32_t)L_2) == ((int32_t)1)))
{
goto IL_0018;
}
}
{
int32_t L_3 = V_1;
if ((((int32_t)L_3) == ((int32_t)2)))
{
goto IL_0078;
}
}
{
goto IL_0081;
}
IL_0018:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_4 = __this->___coreReader_3;
NullCheck(L_4);
bool L_5;
L_5 = VirtualFuncInvoker0< bool >::Invoke(14 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, L_4);
if (L_5)
{
goto IL_0081;
}
}
{
V_0 = (bool)1;
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_6 = __this->___xmlSchemaInfo_24;
NullCheck(L_6);
bool L_7;
L_7 = XmlSchemaInfo_get_IsUnionType_m9027AA2A2DA360A6EFA0D2916B4B94307A2EB050(L_6, NULL);
if (L_7)
{
goto IL_0041;
}
}
{
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_8 = __this->___xmlSchemaInfo_24;
NullCheck(L_8);
bool L_9;
L_9 = XmlSchemaInfo_get_IsDefault_mB86867936914AAE6E3CD99B8826360233EA59B8C_inline(L_8, NULL);
if (!L_9)
{
goto IL_0050;
}
}
IL_0041:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_10 = __this->___coreReader_3;
if (!((XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43*)IsInstClass((RuntimeObject*)L_10, XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43_il2cpp_TypeInfo_var)))
{
goto IL_0050;
}
}
{
V_0 = (bool)0;
}
IL_0050:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_11 = __this->___coreReader_3;
NullCheck(L_11);
VirtualActionInvoker0::Invoke(35 /* System.Void System.Xml.XmlReader::Skip() */, L_11);
__this->___validationState_9 = 6;
bool L_12 = V_0;
if (!L_12)
{
goto IL_0081;
}
}
{
XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* L_13 = __this->___validator_6;
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_14 = __this->___xmlSchemaInfo_24;
NullCheck(L_13);
XmlSchemaValidator_SkipToEndElement_m06361D2BE6354B6243DBE69406A2E8E1EF0BFD31(L_13, L_14, NULL);
goto IL_0081;
}
IL_0078:
{
bool L_15;
L_15 = VirtualFuncInvoker0< bool >::Invoke(29 /* System.Boolean System.Xml.XmlReader::MoveToElement() */, __this);
goto IL_0018;
}
IL_0081:
{
bool L_16;
L_16 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, __this);
return;
}
}
// System.Xml.XmlNameTable System.Xml.XsdValidatingReader::get_NameTable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* XsdValidatingReader_get_NameTable_m663A5CDF172507B71BDBF5DF2704E3559EACB803 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
{
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_0 = __this->___coreReaderNameTable_26;
return L_0;
}
}
// System.String System.Xml.XsdValidatingReader::LookupNamespace(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsdValidatingReader_LookupNamespace_m9D331F42536717E4D8CE73DE89C044EF1CF2795D (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __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;
}
{
RuntimeObject* L_0 = __this->___thisNSResolver_5;
String_t* L_1 = ___prefix0;
NullCheck(L_0);
String_t* L_2;
L_2 = InterfaceFuncInvoker1< String_t*, String_t* >::Invoke(1 /* System.String System.Xml.IXmlNamespaceResolver::LookupNamespace(System.String) */, IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var, L_0, L_1);
return L_2;
}
}
// System.Void System.Xml.XsdValidatingReader::ResolveEntity()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdValidatingReader_ResolveEntity_m92C88937F9CFFC00B35A077BA40F7B1BEA2ADF6B (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_0 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_0);
InvalidOperationException__ctor_m1BE9BD198B904AA1D94F4B10DA88077DFD44B7A5(L_0, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XsdValidatingReader_ResolveEntity_m92C88937F9CFFC00B35A077BA40F7B1BEA2ADF6B_RuntimeMethod_var)));
}
}
// System.Boolean System.Xml.XsdValidatingReader::ReadAttributeValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XsdValidatingReader_ReadAttributeValue_m2190E001891FE91056BF9360E08F351E0C45E0E0 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___validationState_9;
if ((!(((uint32_t)L_0) == ((uint32_t)7))))
{
goto IL_0020;
}
}
{
ReadContentAsBinaryHelper_t94D48E6891DEAC8DFE5DEA1B820091D277880897* L_1 = __this->___readBinaryHelper_39;
NullCheck(L_1);
ReadContentAsBinaryHelper_Finish_m56919E9B4A660955115D1C0680C0FF772DC649F9(L_1, NULL);
int32_t L_2 = __this->___savedState_40;
__this->___validationState_9 = L_2;
}
IL_0020:
{
int32_t L_3;
L_3 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, __this);
if ((!(((uint32_t)L_3) == ((uint32_t)2))))
{
goto IL_006c;
}
}
{
int32_t L_4 = __this->___validationState_9;
if ((!(((uint32_t)L_4) == ((uint32_t)(-1)))))
{
goto IL_0060;
}
}
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_5 = __this->___cachedNode_15;
NullCheck(L_5);
String_t* L_6;
L_6 = ValidatingReaderNodeData_get_RawValue_m910C83DC6975C87F12721378D46110F5A19B272B_inline(L_5, NULL);
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_7 = __this->___cachedNode_15;
NullCheck(L_7);
int32_t L_8;
L_8 = ValidatingReaderNodeData_get_Depth_m08B579D77C5CA1CEA934CD16CB8CB36040A1E59D_inline(L_7, NULL);
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_9;
L_9 = XsdValidatingReader_CreateDummyTextNode_mEC84A678995AC1AF508CECA0411B00EC45D982BA(__this, L_6, ((int32_t)il2cpp_codegen_add(L_8, 1)), NULL);
__this->___cachedNode_15 = L_9;
Il2CppCodeGenWriteBarrier((void**)(&__this->___cachedNode_15), (void*)L_9);
__this->___validationState_9 = ((int32_t)-2);
return (bool)1;
}
IL_0060:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_10 = __this->___coreReader_3;
NullCheck(L_10);
bool L_11;
L_11 = VirtualFuncInvoker0< bool >::Invoke(30 /* System.Boolean System.Xml.XmlReader::ReadAttributeValue() */, L_10);
return L_11;
}
IL_006c:
{
return (bool)0;
}
}
// System.Boolean System.Xml.XsdValidatingReader::System.Xml.Schema.IXmlSchemaInfo.get_IsDefault()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XsdValidatingReader_System_Xml_Schema_IXmlSchemaInfo_get_IsDefault_mA19578E2CE8642CAA79E6CBC346F89C00BAD3FA1 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0;
L_0 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, __this);
V_0 = L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_0016;
}
}
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)2)))
{
goto IL_0041;
}
}
{
int32_t L_3 = V_0;
if ((((int32_t)L_3) == ((int32_t)((int32_t)15))))
{
goto IL_0035;
}
}
{
goto IL_0055;
}
IL_0016:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_4 = __this->___coreReader_3;
NullCheck(L_4);
bool L_5;
L_5 = VirtualFuncInvoker0< bool >::Invoke(14 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, L_4);
if (L_5)
{
goto IL_0029;
}
}
{
XsdValidatingReader_GetIsDefault_mB9A0D7444277652C86A23B61DE9A30623B403FFD(__this, NULL);
}
IL_0029:
{
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_6 = __this->___xmlSchemaInfo_24;
NullCheck(L_6);
bool L_7;
L_7 = XmlSchemaInfo_get_IsDefault_mB86867936914AAE6E3CD99B8826360233EA59B8C_inline(L_6, NULL);
return L_7;
}
IL_0035:
{
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_8 = __this->___xmlSchemaInfo_24;
NullCheck(L_8);
bool L_9;
L_9 = XmlSchemaInfo_get_IsDefault_mB86867936914AAE6E3CD99B8826360233EA59B8C_inline(L_8, NULL);
return L_9;
}
IL_0041:
{
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_10 = __this->___attributePSVI_16;
if (!L_10)
{
goto IL_0055;
}
}
{
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_11;
L_11 = XsdValidatingReader_get_AttributeSchemaInfo_m1EBC66056100FDAA9DC9A976F06BF72B6841A4CD(__this, NULL);
NullCheck(L_11);
bool L_12;
L_12 = XmlSchemaInfo_get_IsDefault_mB86867936914AAE6E3CD99B8826360233EA59B8C_inline(L_11, NULL);
return L_12;
}
IL_0055:
{
return (bool)0;
}
}
// System.Boolean System.Xml.XsdValidatingReader::System.Xml.Schema.IXmlSchemaInfo.get_IsNil()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XsdValidatingReader_System_Xml_Schema_IXmlSchemaInfo_get_IsNil_m4DFCB830CE4AD22FC0FF9EF88B87E4FF1F20B6FE (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0;
L_0 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, __this);
V_0 = L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_0010;
}
}
{
int32_t L_2 = V_0;
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)15)))))
{
goto IL_001c;
}
}
IL_0010:
{
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_3 = __this->___xmlSchemaInfo_24;
NullCheck(L_3);
bool L_4;
L_4 = XmlSchemaInfo_get_IsNil_m4F1DD1026DF6FADBEB26C570C07933519D4F8A2B_inline(L_3, NULL);
return L_4;
}
IL_001c:
{
return (bool)0;
}
}
// System.Xml.Schema.XmlSchemaValidity System.Xml.XsdValidatingReader::System.Xml.Schema.IXmlSchemaInfo.get_Validity()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdValidatingReader_System_Xml_Schema_IXmlSchemaInfo_get_Validity_mA5C31ADA93A6F4EF3C1ABC0AE1AE3F6A6529C868 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0;
L_0 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, __this);
V_0 = L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_0016;
}
}
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)2)))
{
goto IL_0057;
}
}
{
int32_t L_3 = V_0;
if ((((int32_t)L_3) == ((int32_t)((int32_t)15))))
{
goto IL_004b;
}
}
{
goto IL_006b;
}
IL_0016:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_4 = __this->___coreReader_3;
NullCheck(L_4);
bool L_5;
L_5 = VirtualFuncInvoker0< bool >::Invoke(14 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, L_4);
if (!L_5)
{
goto IL_002f;
}
}
{
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_6 = __this->___xmlSchemaInfo_24;
NullCheck(L_6);
int32_t L_7;
L_7 = XmlSchemaInfo_get_Validity_mE4869422758C55C3AEAD4058EA5DE33F20515B83_inline(L_6, NULL);
return L_7;
}
IL_002f:
{
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_8 = __this->___xmlSchemaInfo_24;
NullCheck(L_8);
int32_t L_9;
L_9 = XmlSchemaInfo_get_Validity_mE4869422758C55C3AEAD4058EA5DE33F20515B83_inline(L_8, NULL);
if ((!(((uint32_t)L_9) == ((uint32_t)1))))
{
goto IL_003f;
}
}
{
return (int32_t)(0);
}
IL_003f:
{
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_10 = __this->___xmlSchemaInfo_24;
NullCheck(L_10);
int32_t L_11;
L_11 = XmlSchemaInfo_get_Validity_mE4869422758C55C3AEAD4058EA5DE33F20515B83_inline(L_10, NULL);
return L_11;
}
IL_004b:
{
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_12 = __this->___xmlSchemaInfo_24;
NullCheck(L_12);
int32_t L_13;
L_13 = XmlSchemaInfo_get_Validity_mE4869422758C55C3AEAD4058EA5DE33F20515B83_inline(L_12, NULL);
return L_13;
}
IL_0057:
{
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_14 = __this->___attributePSVI_16;
if (!L_14)
{
goto IL_006b;
}
}
{
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_15;
L_15 = XsdValidatingReader_get_AttributeSchemaInfo_m1EBC66056100FDAA9DC9A976F06BF72B6841A4CD(__this, NULL);
NullCheck(L_15);
int32_t L_16;
L_16 = XmlSchemaInfo_get_Validity_mE4869422758C55C3AEAD4058EA5DE33F20515B83_inline(L_15, NULL);
return L_16;
}
IL_006b:
{
return (int32_t)(0);
}
}
// System.Xml.Schema.XmlSchemaSimpleType System.Xml.XsdValidatingReader::System.Xml.Schema.IXmlSchemaInfo.get_MemberType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8* XsdValidatingReader_System_Xml_Schema_IXmlSchemaInfo_get_MemberType_mD05ABF0EECBE695AF1FC3CD26AC537E979FBE2A0 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0;
L_0 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, __this);
V_0 = L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_0016;
}
}
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)2)))
{
goto IL_0041;
}
}
{
int32_t L_3 = V_0;
if ((((int32_t)L_3) == ((int32_t)((int32_t)15))))
{
goto IL_0035;
}
}
{
goto IL_0057;
}
IL_0016:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_4 = __this->___coreReader_3;
NullCheck(L_4);
bool L_5;
L_5 = VirtualFuncInvoker0< bool >::Invoke(14 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, L_4);
if (L_5)
{
goto IL_0029;
}
}
{
XsdValidatingReader_GetMemberType_m160C7064CFA3EDD992A142C23696FC10B89AFC99(__this, NULL);
}
IL_0029:
{
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_6 = __this->___xmlSchemaInfo_24;
NullCheck(L_6);
XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8* L_7;
L_7 = XmlSchemaInfo_get_MemberType_m4D8775934A4A9E0BFB886A913151C05237D79CCC_inline(L_6, NULL);
return L_7;
}
IL_0035:
{
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_8 = __this->___xmlSchemaInfo_24;
NullCheck(L_8);
XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8* L_9;
L_9 = XmlSchemaInfo_get_MemberType_m4D8775934A4A9E0BFB886A913151C05237D79CCC_inline(L_8, NULL);
return L_9;
}
IL_0041:
{
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_10 = __this->___attributePSVI_16;
if (!L_10)
{
goto IL_0055;
}
}
{
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_11;
L_11 = XsdValidatingReader_get_AttributeSchemaInfo_m1EBC66056100FDAA9DC9A976F06BF72B6841A4CD(__this, NULL);
NullCheck(L_11);
XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8* L_12;
L_12 = XmlSchemaInfo_get_MemberType_m4D8775934A4A9E0BFB886A913151C05237D79CCC_inline(L_11, NULL);
return L_12;
}
IL_0055:
{
return (XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8*)NULL;
}
IL_0057:
{
return (XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8*)NULL;
}
}
// System.Xml.Schema.XmlSchemaType System.Xml.XsdValidatingReader::System.Xml.Schema.IXmlSchemaInfo.get_SchemaType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* XsdValidatingReader_System_Xml_Schema_IXmlSchemaInfo_get_SchemaType_m34D4ECB3677E2DF88EBB701355006E50CD9500F4 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0;
L_0 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, __this);
V_0 = L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_0014;
}
}
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)2)))
{
goto IL_0020;
}
}
{
int32_t L_3 = V_0;
if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)15)))))
{
goto IL_0036;
}
}
IL_0014:
{
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_4 = __this->___xmlSchemaInfo_24;
NullCheck(L_4);
XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* L_5;
L_5 = XmlSchemaInfo_get_SchemaType_mEB10A4E308F1E049AB929D5AB45087160B8A4979_inline(L_4, NULL);
return L_5;
}
IL_0020:
{
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_6 = __this->___attributePSVI_16;
if (!L_6)
{
goto IL_0034;
}
}
{
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_7;
L_7 = XsdValidatingReader_get_AttributeSchemaInfo_m1EBC66056100FDAA9DC9A976F06BF72B6841A4CD(__this, NULL);
NullCheck(L_7);
XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* L_8;
L_8 = XmlSchemaInfo_get_SchemaType_mEB10A4E308F1E049AB929D5AB45087160B8A4979_inline(L_7, NULL);
return L_8;
}
IL_0034:
{
return (XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF*)NULL;
}
IL_0036:
{
return (XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF*)NULL;
}
}
// System.Xml.Schema.XmlSchemaElement System.Xml.XsdValidatingReader::System.Xml.Schema.IXmlSchemaInfo.get_SchemaElement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970* XsdValidatingReader_System_Xml_Schema_IXmlSchemaInfo_get_SchemaElement_mDAFA077B56888E9B8D6C72249283EEF3D3027184 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, __this);
if ((((int32_t)L_0) == ((int32_t)1)))
{
goto IL_0013;
}
}
{
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, __this);
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)15)))))
{
goto IL_001f;
}
}
IL_0013:
{
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_2 = __this->___xmlSchemaInfo_24;
NullCheck(L_2);
XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970* L_3;
L_3 = XmlSchemaInfo_get_SchemaElement_m9E2ACC794E25FE2D5CC3DC433E8E389DE6934DDB_inline(L_2, NULL);
return L_3;
}
IL_001f:
{
return (XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970*)NULL;
}
}
// System.Xml.Schema.XmlSchemaAttribute System.Xml.XsdValidatingReader::System.Xml.Schema.IXmlSchemaInfo.get_SchemaAttribute()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F* XsdValidatingReader_System_Xml_Schema_IXmlSchemaInfo_get_SchemaAttribute_mD78F5483A5C225302766EBF0F76881ADB0437E7D (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, __this);
if ((!(((uint32_t)L_0) == ((uint32_t)2))))
{
goto IL_001d;
}
}
{
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_1 = __this->___attributePSVI_16;
if (!L_1)
{
goto IL_001d;
}
}
{
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_2;
L_2 = XsdValidatingReader_get_AttributeSchemaInfo_m1EBC66056100FDAA9DC9A976F06BF72B6841A4CD(__this, NULL);
NullCheck(L_2);
XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F* L_3;
L_3 = XmlSchemaInfo_get_SchemaAttribute_m7DF2A831CAFA45AEC510A5C538426410AA7A9A49_inline(L_2, NULL);
return L_3;
}
IL_001d:
{
return (XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F*)NULL;
}
}
// System.Boolean System.Xml.XsdValidatingReader::HasLineInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XsdValidatingReader_HasLineInfo_mEE74D8EE396F24732C8C7F0F4684C802B8BEA831 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Int32 System.Xml.XsdValidatingReader::get_LineNumber()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdValidatingReader_get_LineNumber_m45EA30C57BC7DCA1494A3CDDFB9CBE5668E89538 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __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;
}
{
RuntimeObject* L_0 = __this->___lineInfo_38;
if (!L_0)
{
goto IL_0014;
}
}
{
RuntimeObject* L_1 = __this->___lineInfo_38;
NullCheck(L_1);
int32_t L_2;
L_2 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Xml.IXmlLineInfo::get_LineNumber() */, IXmlLineInfo_tDD8332CE7D244FDA50A6C5744D7EAEC4A6CCBF05_il2cpp_TypeInfo_var, L_1);
return L_2;
}
IL_0014:
{
return 0;
}
}
// System.Int32 System.Xml.XsdValidatingReader::get_LinePosition()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdValidatingReader_get_LinePosition_m5F8433D4A3F0D52EC7E47A8CE25FAF449BC224B7 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __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;
}
{
RuntimeObject* L_0 = __this->___lineInfo_38;
if (!L_0)
{
goto IL_0014;
}
}
{
RuntimeObject* L_1 = __this->___lineInfo_38;
NullCheck(L_1);
int32_t L_2;
L_2 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Xml.IXmlLineInfo::get_LinePosition() */, IXmlLineInfo_tDD8332CE7D244FDA50A6C5744D7EAEC4A6CCBF05_il2cpp_TypeInfo_var, L_1);
return L_2;
}
IL_0014:
{
return 0;
}
}
// System.Collections.Generic.IDictionary`2<System.String,System.String> System.Xml.XsdValidatingReader::System.Xml.IXmlNamespaceResolver.GetNamespacesInScope(System.Xml.XmlNamespaceScope)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XsdValidatingReader_System_Xml_IXmlNamespaceResolver_GetNamespacesInScope_mD1A652D2E34A49A9D7FB5961DC6599DB216C8DB6 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __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_4;
if (!L_0)
{
goto IL_0015;
}
}
{
RuntimeObject* L_1 = __this->___coreReaderNSResolver_4;
int32_t L_2 = ___scope0;
NullCheck(L_1);
RuntimeObject* L_3;
L_3 = 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_1, L_2);
return L_3;
}
IL_0015:
{
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_4 = __this->___nsManager_11;
int32_t L_5 = ___scope0;
NullCheck(L_4);
RuntimeObject* L_6;
L_6 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(15 /* System.Collections.Generic.IDictionary`2<System.String,System.String> System.Xml.XmlNamespaceManager::GetNamespacesInScope(System.Xml.XmlNamespaceScope) */, L_4, L_5);
return L_6;
}
}
// System.String System.Xml.XsdValidatingReader::System.Xml.IXmlNamespaceResolver.LookupNamespace(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsdValidatingReader_System_Xml_IXmlNamespaceResolver_LookupNamespace_m79239AE65DF42A4D168E03844BFD6DFFA47114EA (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __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;
}
{
RuntimeObject* L_0 = __this->___coreReaderNSResolver_4;
if (!L_0)
{
goto IL_0015;
}
}
{
RuntimeObject* L_1 = __this->___coreReaderNSResolver_4;
String_t* L_2 = ___prefix0;
NullCheck(L_1);
String_t* L_3;
L_3 = InterfaceFuncInvoker1< String_t*, String_t* >::Invoke(1 /* System.String System.Xml.IXmlNamespaceResolver::LookupNamespace(System.String) */, IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var, L_1, L_2);
return L_3;
}
IL_0015:
{
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_4 = __this->___nsManager_11;
String_t* L_5 = ___prefix0;
NullCheck(L_4);
String_t* L_6;
L_6 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(16 /* System.String System.Xml.XmlNamespaceManager::LookupNamespace(System.String) */, L_4, L_5);
return L_6;
}
}
// System.String System.Xml.XsdValidatingReader::System.Xml.IXmlNamespaceResolver.LookupPrefix(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsdValidatingReader_System_Xml_IXmlNamespaceResolver_LookupPrefix_mF844F37ECC3E33798698FAAEDCDF71FFE1B852F2 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __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_4;
if (!L_0)
{
goto IL_0015;
}
}
{
RuntimeObject* L_1 = __this->___coreReaderNSResolver_4;
String_t* L_2 = ___namespaceName0;
NullCheck(L_1);
String_t* L_3;
L_3 = InterfaceFuncInvoker1< String_t*, String_t* >::Invoke(2 /* System.String System.Xml.IXmlNamespaceResolver::LookupPrefix(System.String) */, IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var, L_1, L_2);
return L_3;
}
IL_0015:
{
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_4 = __this->___nsManager_11;
String_t* L_5 = ___namespaceName0;
NullCheck(L_4);
String_t* L_6;
L_6 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(17 /* System.String System.Xml.XmlNamespaceManager::LookupPrefix(System.String) */, L_4, L_5);
return L_6;
}
}
// System.Object System.Xml.XsdValidatingReader::GetStringValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XsdValidatingReader_GetStringValue_m89CE0B2CF94DFBFF72B05031654EEE663470AB39 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __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.Xml.Schema.XmlSchemaInfo System.Xml.XsdValidatingReader::get_AttributeSchemaInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* XsdValidatingReader_get_AttributeSchemaInfo_m1EBC66056100FDAA9DC9A976F06BF72B6841A4CD (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
{
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_0 = __this->___attributePSVI_16;
NullCheck(L_0);
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_1 = L_0->___attributeSchemaInfo_3;
return L_1;
}
}
// System.Void System.Xml.XsdValidatingReader::ProcessReaderEvent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdValidatingReader_ProcessReaderEvent_m6C0F7A68A7970883DC9787FE2F411BFF3B9FF31E (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlValueGetter_tB804924EEE98EA7F63E2B038A3CE3714DA155EB9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XsdValidatingReader_GetStringValue_m89CE0B2CF94DFBFF72B05031654EEE663470AB39_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
bool L_0 = __this->___replayCache_14;
if (!L_0)
{
goto IL_0009;
}
}
{
return;
}
IL_0009:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1 = __this->___coreReader_3;
NullCheck(L_1);
int32_t L_2;
L_2 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_1);
V_0 = L_2;
int32_t L_3 = V_0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_3, 1)))
{
case 0:
{
goto IL_005a;
}
case 1:
{
goto IL_00b4;
}
case 2:
{
goto IL_0079;
}
case 3:
{
goto IL_0079;
}
case 4:
{
goto IL_0098;
}
case 5:
{
goto IL_00b4;
}
case 6:
{
goto IL_00b4;
}
case 7:
{
goto IL_00b4;
}
case 8:
{
goto IL_00b4;
}
case 9:
{
goto IL_009e;
}
case 10:
{
goto IL_00b4;
}
case 11:
{
goto IL_00b4;
}
case 12:
{
goto IL_0061;
}
case 13:
{
goto IL_0061;
}
case 14:
{
goto IL_0091;
}
}
}
{
return;
}
IL_005a:
{
XsdValidatingReader_ProcessElementEvent_m40A41A70782E55B1D382E05074B3B7D3B7521E32(__this, NULL);
return;
}
IL_0061:
{
XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* L_4 = __this->___validator_6;
XmlValueGetter_tB804924EEE98EA7F63E2B038A3CE3714DA155EB9* L_5 = (XmlValueGetter_tB804924EEE98EA7F63E2B038A3CE3714DA155EB9*)il2cpp_codegen_object_new(XmlValueGetter_tB804924EEE98EA7F63E2B038A3CE3714DA155EB9_il2cpp_TypeInfo_var);
NullCheck(L_5);
XmlValueGetter__ctor_mBE624F87E03B987FB93726999FDECD5A16A78856(L_5, __this, (intptr_t)((void*)XsdValidatingReader_GetStringValue_m89CE0B2CF94DFBFF72B05031654EEE663470AB39_RuntimeMethod_var), NULL);
NullCheck(L_4);
XmlSchemaValidator_ValidateWhitespace_mB80702282B9ECD2F20A8E2CE93E72D3790619BC6(L_4, L_5, NULL);
return;
}
IL_0079:
{
XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* L_6 = __this->___validator_6;
XmlValueGetter_tB804924EEE98EA7F63E2B038A3CE3714DA155EB9* L_7 = (XmlValueGetter_tB804924EEE98EA7F63E2B038A3CE3714DA155EB9*)il2cpp_codegen_object_new(XmlValueGetter_tB804924EEE98EA7F63E2B038A3CE3714DA155EB9_il2cpp_TypeInfo_var);
NullCheck(L_7);
XmlValueGetter__ctor_mBE624F87E03B987FB93726999FDECD5A16A78856(L_7, __this, (intptr_t)((void*)XsdValidatingReader_GetStringValue_m89CE0B2CF94DFBFF72B05031654EEE663470AB39_RuntimeMethod_var), NULL);
NullCheck(L_6);
XmlSchemaValidator_ValidateText_mAFDA1D89FE72244D37356A8954ABF6549544C67E(L_6, L_7, NULL);
return;
}
IL_0091:
{
XsdValidatingReader_ProcessEndElementEvent_m075B59856F29DD9873C3E1CA81DF20C44FB27F26(__this, NULL);
return;
}
IL_0098:
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_8 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_8);
InvalidOperationException__ctor_m1BE9BD198B904AA1D94F4B10DA88077DFD44B7A5(L_8, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XsdValidatingReader_ProcessReaderEvent_m6C0F7A68A7970883DC9787FE2F411BFF3B9FF31E_RuntimeMethod_var)));
}
IL_009e:
{
XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* L_9 = __this->___validator_6;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_10 = __this->___coreReader_3;
NullCheck(L_10);
RuntimeObject* L_11;
L_11 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(52 /* System.Xml.IDtdInfo System.Xml.XmlReader::get_DtdInfo() */, L_10);
NullCheck(L_9);
XmlSchemaValidator_SetDtdSchemaInfo_m2B01EAA86B72F725DD85A03BE1E5C7807AD09552(L_9, L_11, NULL);
}
IL_00b4:
{
return;
}
}
// System.Void System.Xml.XsdValidatingReader::ProcessElementEvent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdValidatingReader_ProcessElementEvent_m40A41A70782E55B1D382E05074B3B7D3B7521E32 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Parser_t5A18E84F88E618D9E803A7768A7765BF17DB2C07_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
String_t* V_1 = NULL;
String_t* V_2 = NULL;
String_t* V_3 = NULL;
String_t* V_4 = NULL;
String_t* V_5 = NULL;
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* G_B22_0 = NULL;
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* G_B21_0 = NULL;
String_t* G_B23_0 = NULL;
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* G_B23_1 = NULL;
{
bool L_0 = __this->___processInlineSchema_13;
if (!L_0)
{
goto IL_00cb;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1 = __this->___coreReader_3;
NullCheck(L_1);
String_t* L_2;
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_1);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_3 = __this->___coreReader_3;
NullCheck(L_3);
String_t* L_4;
L_4 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_3);
bool L_5;
L_5 = XsdValidatingReader_IsXSDRoot_mE0C20D5B7ACC607A88043AEDE83A3229D6AFF559(__this, L_2, L_4, NULL);
if (!L_5)
{
goto IL_00cb;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_6 = __this->___coreReader_3;
NullCheck(L_6);
int32_t L_7;
L_7 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* System.Int32 System.Xml.XmlReader::get_Depth() */, L_6);
if ((((int32_t)L_7) <= ((int32_t)0)))
{
goto IL_00cb;
}
}
{
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_8 = __this->___xmlSchemaInfo_24;
NullCheck(L_8);
XmlSchemaInfo_Clear_m6EACF6A1BB70B47CBC2865B8CCC74BEA67F96FFE(L_8, NULL);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_9 = __this->___coreReader_3;
NullCheck(L_9);
int32_t L_10;
L_10 = VirtualFuncInvoker0< int32_t >::Invoke(21 /* System.Int32 System.Xml.XmlReader::get_AttributeCount() */, L_9);
int32_t L_11 = L_10;
V_0 = L_11;
__this->___coreReaderAttributeCount_18 = L_11;
int32_t L_12 = V_0;
__this->___attributeCount_17 = L_12;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_13 = __this->___coreReader_3;
NullCheck(L_13);
bool L_14;
L_14 = VirtualFuncInvoker0< bool >::Invoke(14 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, L_13);
if (L_14)
{
goto IL_00c3;
}
}
{
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_15 = __this->___coreReaderNameTable_26;
XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* L_16 = __this->___validator_6;
NullCheck(L_16);
XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* L_17;
L_17 = XmlSchemaValidator_get_SchemaSet_m5FF824719184397EE034CEB9C75AA11723A6EF11_inline(L_16, NULL);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_18 = __this->___coreReaderNameTable_26;
NullCheck(L_17);
SchemaNames_tF7A45B027D5759AA56D035F5962B4612A6B0902F* L_19;
L_19 = XmlSchemaSet_GetSchemaNames_m3B8BB33E94ACD82E95D0D72E2E0098E5EB0F98C1(L_17, L_18, NULL);
ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* L_20 = __this->___validationEvent_8;
Parser_t5A18E84F88E618D9E803A7768A7765BF17DB2C07* L_21 = (Parser_t5A18E84F88E618D9E803A7768A7765BF17DB2C07*)il2cpp_codegen_object_new(Parser_t5A18E84F88E618D9E803A7768A7765BF17DB2C07_il2cpp_TypeInfo_var);
NullCheck(L_21);
Parser__ctor_mD0856FD6103718FD65B714D40D94187514405DDD(L_21, 3, L_15, L_19, L_20, NULL);
__this->___inlineSchemaParser_22 = L_21;
Il2CppCodeGenWriteBarrier((void**)(&__this->___inlineSchemaParser_22), (void*)L_21);
Parser_t5A18E84F88E618D9E803A7768A7765BF17DB2C07* L_22 = __this->___inlineSchemaParser_22;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_23 = __this->___coreReader_3;
NullCheck(L_22);
Parser_StartParsing_mF36C4EFCEEA4BFBDE0B95288FBA0074FD38ED92D(L_22, L_23, (String_t*)NULL, NULL);
Parser_t5A18E84F88E618D9E803A7768A7765BF17DB2C07* L_24 = __this->___inlineSchemaParser_22;
NullCheck(L_24);
bool L_25;
L_25 = Parser_ParseReaderNode_mDE124259DA600588C00200854794274AA5F8946A(L_24, NULL);
__this->___validationState_9 = 5;
return;
}
IL_00c3:
{
__this->___validationState_9 = 4;
return;
}
IL_00cb:
{
__this->___atomicValue_23 = NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___atomicValue_23), (void*)NULL);
__this->___originalAtomicValueString_25 = (String_t*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___originalAtomicValueString_25), (void*)(String_t*)NULL);
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_26 = __this->___xmlSchemaInfo_24;
NullCheck(L_26);
XmlSchemaInfo_Clear_m6EACF6A1BB70B47CBC2865B8CCC74BEA67F96FFE(L_26, NULL);
bool L_27 = __this->___manageNamespaces_12;
if (!L_27)
{
goto IL_00f7;
}
}
{
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_28 = __this->___nsManager_11;
NullCheck(L_28);
VirtualActionInvoker0::Invoke(10 /* System.Void System.Xml.XmlNamespaceManager::PushScope() */, L_28);
}
IL_00f7:
{
V_1 = (String_t*)NULL;
V_2 = (String_t*)NULL;
V_3 = (String_t*)NULL;
V_4 = (String_t*)NULL;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_29 = __this->___coreReader_3;
NullCheck(L_29);
bool L_30;
L_30 = VirtualFuncInvoker0< bool >::Invoke(27 /* System.Boolean System.Xml.XmlReader::MoveToFirstAttribute() */, L_29);
if (!L_30)
{
goto IL_021e;
}
}
IL_0110:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_31 = __this->___coreReader_3;
NullCheck(L_31);
String_t* L_32;
L_32 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_31);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_33 = __this->___coreReader_3;
NullCheck(L_33);
String_t* L_34;
L_34 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_33);
V_5 = L_34;
String_t* L_35 = __this->___NsXsi_31;
bool L_36;
L_36 = Ref_Equal_m91CE186A8D713DBCF387B2A4AA83138704C7B8B1(L_32, L_35, NULL);
if (!L_36)
{
goto IL_01a8;
}
}
{
String_t* L_37 = V_5;
String_t* L_38 = __this->___XsiSchemaLocation_35;
bool L_39;
L_39 = Ref_Equal_m91CE186A8D713DBCF387B2A4AA83138704C7B8B1(L_37, L_38, NULL);
if (!L_39)
{
goto IL_0152;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_40 = __this->___coreReader_3;
NullCheck(L_40);
String_t* L_41;
L_41 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_40);
V_1 = L_41;
goto IL_01a8;
}
IL_0152:
{
String_t* L_42 = V_5;
String_t* L_43 = __this->___XsiNoNamespaceSchemaLocation_36;
bool L_44;
L_44 = Ref_Equal_m91CE186A8D713DBCF387B2A4AA83138704C7B8B1(L_42, L_43, NULL);
if (!L_44)
{
goto IL_016f;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_45 = __this->___coreReader_3;
NullCheck(L_45);
String_t* L_46;
L_46 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_45);
V_2 = L_46;
goto IL_01a8;
}
IL_016f:
{
String_t* L_47 = V_5;
String_t* L_48 = __this->___XsiType_32;
bool L_49;
L_49 = Ref_Equal_m91CE186A8D713DBCF387B2A4AA83138704C7B8B1(L_47, L_48, NULL);
if (!L_49)
{
goto IL_018d;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_50 = __this->___coreReader_3;
NullCheck(L_50);
String_t* L_51;
L_51 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_50);
V_4 = L_51;
goto IL_01a8;
}
IL_018d:
{
String_t* L_52 = V_5;
String_t* L_53 = __this->___XsiNil_33;
bool L_54;
L_54 = Ref_Equal_m91CE186A8D713DBCF387B2A4AA83138704C7B8B1(L_52, L_53, NULL);
if (!L_54)
{
goto IL_01a8;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_55 = __this->___coreReader_3;
NullCheck(L_55);
String_t* L_56;
L_56 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_55);
V_3 = L_56;
}
IL_01a8:
{
bool L_57 = __this->___manageNamespaces_12;
if (!L_57)
{
goto IL_0202;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_58 = __this->___coreReader_3;
NullCheck(L_58);
String_t* L_59;
L_59 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_58);
String_t* L_60 = __this->___NsXmlNs_29;
bool L_61;
L_61 = Ref_Equal_m91CE186A8D713DBCF387B2A4AA83138704C7B8B1(L_59, L_60, NULL);
if (!L_61)
{
goto IL_0202;
}
}
{
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_62 = __this->___nsManager_11;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_63 = __this->___coreReader_3;
NullCheck(L_63);
String_t* L_64;
L_64 = VirtualFuncInvoker0< String_t* >::Invoke(10 /* System.String System.Xml.XmlReader::get_Prefix() */, L_63);
NullCheck(L_64);
int32_t L_65;
L_65 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_64, NULL);
G_B21_0 = L_62;
if (!L_65)
{
G_B22_0 = L_62;
goto IL_01ed;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_66 = __this->___coreReader_3;
NullCheck(L_66);
String_t* L_67;
L_67 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_66);
G_B23_0 = L_67;
G_B23_1 = G_B21_0;
goto IL_01f2;
}
IL_01ed:
{
String_t* L_68 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
G_B23_0 = L_68;
G_B23_1 = G_B22_0;
}
IL_01f2:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_69 = __this->___coreReader_3;
NullCheck(L_69);
String_t* L_70;
L_70 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_69);
NullCheck(G_B23_1);
VirtualActionInvoker2< String_t*, String_t* >::Invoke(12 /* System.Void System.Xml.XmlNamespaceManager::AddNamespace(System.String,System.String) */, G_B23_1, G_B23_0, L_70);
}
IL_0202:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_71 = __this->___coreReader_3;
NullCheck(L_71);
bool L_72;
L_72 = VirtualFuncInvoker0< bool >::Invoke(28 /* System.Boolean System.Xml.XmlReader::MoveToNextAttribute() */, L_71);
if (L_72)
{
goto IL_0110;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_73 = __this->___coreReader_3;
NullCheck(L_73);
bool L_74;
L_74 = VirtualFuncInvoker0< bool >::Invoke(29 /* System.Boolean System.Xml.XmlReader::MoveToElement() */, L_73);
}
IL_021e:
{
XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* L_75 = __this->___validator_6;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_76 = __this->___coreReader_3;
NullCheck(L_76);
String_t* L_77;
L_77 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_76);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_78 = __this->___coreReader_3;
NullCheck(L_78);
String_t* L_79;
L_79 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_78);
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_80 = __this->___xmlSchemaInfo_24;
String_t* L_81 = V_4;
String_t* L_82 = V_3;
String_t* L_83 = V_1;
String_t* L_84 = V_2;
NullCheck(L_75);
XmlSchemaValidator_ValidateElement_m7F07F23618D0F91BC594DDAB30C1DA8E602F7375(L_75, L_77, L_79, L_80, L_81, L_82, L_83, L_84, NULL);
XsdValidatingReader_ValidateAttributes_mE729E6CB82F1724CCA8D4190B09CDC0D571681CB(__this, NULL);
XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* L_85 = __this->___validator_6;
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_86 = __this->___xmlSchemaInfo_24;
NullCheck(L_85);
XmlSchemaValidator_ValidateEndOfAttributes_mAF7C1F3E173153067D4807790DC7DBBF204C0FF0(L_85, L_86, NULL);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_87 = __this->___coreReader_3;
NullCheck(L_87);
bool L_88;
L_88 = VirtualFuncInvoker0< bool >::Invoke(14 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, L_87);
if (!L_88)
{
goto IL_0274;
}
}
{
XsdValidatingReader_ProcessEndElementEvent_m075B59856F29DD9873C3E1CA81DF20C44FB27F26(__this, NULL);
}
IL_0274:
{
__this->___validationState_9 = 4;
return;
}
}
// System.Void System.Xml.XsdValidatingReader::ProcessEndElementEvent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdValidatingReader_ProcessEndElementEvent_m075B59856F29DD9873C3E1CA81DF20C44FB27F26 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* L_0 = __this->___validator_6;
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_1 = __this->___xmlSchemaInfo_24;
NullCheck(L_0);
RuntimeObject* L_2;
L_2 = XmlSchemaValidator_ValidateEndElement_m643E1751AAD5253C99107E714616A317BFCB44DF(L_0, L_1, NULL);
__this->___atomicValue_23 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___atomicValue_23), (void*)L_2);
String_t* L_3;
L_3 = XsdValidatingReader_GetOriginalAtomicValueStringOfElement_mAFDDF8BA2F61A2EFA7A9F7F1033A5A48BFB790B6(__this, NULL);
__this->___originalAtomicValueString_25 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___originalAtomicValueString_25), (void*)L_3);
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_4 = __this->___xmlSchemaInfo_24;
NullCheck(L_4);
bool L_5;
L_5 = XmlSchemaInfo_get_IsDefault_mB86867936914AAE6E3CD99B8826360233EA59B8C_inline(L_4, NULL);
if (!L_5)
{
goto IL_0098;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_6 = __this->___coreReader_3;
NullCheck(L_6);
int32_t L_7;
L_7 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* System.Int32 System.Xml.XmlReader::get_Depth() */, L_6);
V_0 = L_7;
XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* L_8;
L_8 = XsdValidatingReader_GetCachingReader_mE6F54A3681999D682EAE5D628386174D5E198A7D(__this, NULL);
__this->___coreReader_3 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->___coreReader_3), (void*)L_8);
XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* L_9 = __this->___cachingReader_27;
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_10 = __this->___xmlSchemaInfo_24;
NullCheck(L_10);
XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* L_11;
L_11 = XmlSchemaInfo_get_XmlType_mD9463B808F9551551B08914C7D69BD0AC499AA87(L_10, NULL);
NullCheck(L_11);
XmlValueConverter_tAB12320D9B3994EBB077CA59A095458E60F3F57E* L_12;
L_12 = XmlSchemaType_get_ValueConverter_mCCC5AAC678099B787A16302E74037FC05E0522C8(L_11, NULL);
RuntimeObject* L_13 = __this->___atomicValue_23;
NullCheck(L_12);
String_t* L_14;
L_14 = VirtualFuncInvoker1< String_t*, RuntimeObject* >::Invoke(51 /* System.String System.Xml.Schema.XmlValueConverter::ToString(System.Object) */, L_12, L_13);
String_t* L_15 = __this->___originalAtomicValueString_25;
int32_t L_16 = V_0;
NullCheck(L_9);
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_17;
L_17 = XsdCachingReader_RecordTextNode_mAF5DE553DDDAF1FEF05AFDF4F3A66DE510FE0929(L_9, L_14, L_15, ((int32_t)il2cpp_codegen_add(L_16, 1)), 0, 0, NULL);
XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* L_18 = __this->___cachingReader_27;
NullCheck(L_18);
XsdCachingReader_RecordEndElementNode_m1A73002707673122C28F926D30BA5D385CAA52E8(L_18, NULL);
XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* L_19 = __this->___cachingReader_27;
NullCheck(L_19);
XsdCachingReader_SetToReplayMode_m7FB04A844F6E68764C1DCF95F422804C3201B580(L_19, NULL);
__this->___replayCache_14 = (bool)1;
return;
}
IL_0098:
{
bool L_20 = __this->___manageNamespaces_12;
if (!L_20)
{
goto IL_00ac;
}
}
{
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_21 = __this->___nsManager_11;
NullCheck(L_21);
bool L_22;
L_22 = VirtualFuncInvoker0< bool >::Invoke(11 /* System.Boolean System.Xml.XmlNamespaceManager::PopScope() */, L_21);
}
IL_00ac:
{
return;
}
}
// System.Void System.Xml.XsdValidatingReader::ValidateAttributes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdValidatingReader_ValidateAttributes_mE729E6CB82F1724CCA8D4190B09CDC0D571681CB (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* V_0 = NULL;
int32_t V_1 = 0;
bool V_2 = false;
int32_t V_3 = 0;
String_t* V_4 = NULL;
String_t* V_5 = NULL;
{
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);
int32_t L_2 = L_1;
V_3 = L_2;
__this->___coreReaderAttributeCount_18 = L_2;
int32_t L_3 = V_3;
__this->___attributeCount_17 = L_3;
V_1 = 0;
V_2 = (bool)0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_4 = __this->___coreReader_3;
NullCheck(L_4);
bool L_5;
L_5 = VirtualFuncInvoker0< bool >::Invoke(27 /* System.Boolean System.Xml.XmlReader::MoveToFirstAttribute() */, L_4);
if (!L_5)
{
goto IL_00b7;
}
}
IL_002e:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_6 = __this->___coreReader_3;
NullCheck(L_6);
String_t* L_7;
L_7 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_6);
V_4 = L_7;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_8 = __this->___coreReader_3;
NullCheck(L_8);
String_t* L_9;
L_9 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_8);
V_5 = L_9;
int32_t L_10 = V_1;
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_11;
L_11 = XsdValidatingReader_AddAttributePSVI_m228C486A3F1812D35D12E2459103A0263C13C327(__this, L_10, NULL);
V_0 = L_11;
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_12 = V_0;
String_t* L_13 = V_4;
NullCheck(L_12);
L_12->___localName_0 = L_13;
Il2CppCodeGenWriteBarrier((void**)(&L_12->___localName_0), (void*)L_13);
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_14 = V_0;
String_t* L_15 = V_5;
NullCheck(L_14);
L_14->___namespaceUri_1 = L_15;
Il2CppCodeGenWriteBarrier((void**)(&L_14->___namespaceUri_1), (void*)L_15);
String_t* L_16 = V_5;
String_t* L_17 = __this->___NsXmlNs_29;
if ((!(((RuntimeObject*)(String_t*)L_16) == ((RuntimeObject*)(String_t*)L_17))))
{
goto IL_0070;
}
}
{
int32_t L_18 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_18, 1));
goto IL_00a7;
}
IL_0070:
{
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_19 = V_0;
XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* L_20 = __this->___validator_6;
String_t* L_21 = V_4;
String_t* L_22 = V_5;
XmlValueGetter_tB804924EEE98EA7F63E2B038A3CE3714DA155EB9* L_23 = __this->___valueGetter_10;
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_24 = V_0;
NullCheck(L_24);
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_25 = L_24->___attributeSchemaInfo_3;
NullCheck(L_20);
RuntimeObject* L_26;
L_26 = XmlSchemaValidator_ValidateAttribute_m66B0CED723BBCA9C5E799F49D208689C64B638E2(L_20, L_21, L_22, L_23, L_25, NULL);
NullCheck(L_19);
L_19->___typedAttributeValue_2 = L_26;
Il2CppCodeGenWriteBarrier((void**)(&L_19->___typedAttributeValue_2), (void*)L_26);
bool L_27 = V_2;
if (L_27)
{
goto IL_00a3;
}
}
{
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_28 = V_0;
NullCheck(L_28);
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_29 = L_28->___attributeSchemaInfo_3;
NullCheck(L_29);
int32_t L_30;
L_30 = XmlSchemaInfo_get_Validity_mE4869422758C55C3AEAD4058EA5DE33F20515B83_inline(L_29, NULL);
V_2 = (bool)((((int32_t)L_30) == ((int32_t)2))? 1 : 0);
}
IL_00a3:
{
int32_t L_31 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_31, 1));
}
IL_00a7:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_32 = __this->___coreReader_3;
NullCheck(L_32);
bool L_33;
L_33 = VirtualFuncInvoker0< bool >::Invoke(28 /* System.Boolean System.Xml.XmlReader::MoveToNextAttribute() */, L_32);
if (L_33)
{
goto IL_002e;
}
}
IL_00b7:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_34 = __this->___coreReader_3;
NullCheck(L_34);
bool L_35;
L_35 = VirtualFuncInvoker0< bool >::Invoke(29 /* System.Boolean System.Xml.XmlReader::MoveToElement() */, L_34);
bool L_36 = V_2;
if (!L_36)
{
goto IL_00d2;
}
}
{
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_37 = __this->___xmlSchemaInfo_24;
NullCheck(L_37);
XmlSchemaInfo_set_Validity_m21F774F33B817B448E04E511C20E746A107C20FD_inline(L_37, 2, NULL);
}
IL_00d2:
{
XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* L_38 = __this->___validator_6;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_39 = __this->___defaultAttributes_21;
NullCheck(L_38);
XmlSchemaValidator_GetUnspecifiedDefaultAttributes_mA4EB22BD4B62641581B86520F536FDC7AE05434F(L_38, L_39, (bool)1, NULL);
int32_t L_40 = __this->___attributeCount_17;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_41 = __this->___defaultAttributes_21;
NullCheck(L_41);
int32_t L_42;
L_42 = VirtualFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_41);
__this->___attributeCount_17 = ((int32_t)il2cpp_codegen_add(L_40, L_42));
return;
}
}
// System.Void System.Xml.XsdValidatingReader::ClearAttributesInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdValidatingReader_ClearAttributesInfo_m49022431F4939F63130E671176FCEC4DFF03D80E (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
{
__this->___attributeCount_17 = 0;
__this->___coreReaderAttributeCount_18 = 0;
__this->___currentAttrIndex_19 = (-1);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->___defaultAttributes_21;
NullCheck(L_0);
VirtualActionInvoker0::Invoke(31 /* System.Void System.Collections.ArrayList::Clear() */, L_0);
__this->___attributePSVI_16 = (AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___attributePSVI_16), (void*)(AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE*)NULL);
return;
}
}
// System.Xml.AttributePSVIInfo System.Xml.XsdValidatingReader::GetAttributePSVI(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* XsdValidatingReader_GetAttributePSVI_mA133A6CAD4FCA8731DDC805A1DA9A1132447436D (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, String_t* ___name0, 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*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidateNames_tC1994E2C538F499DFEBBA2705010DC4C770E7598_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
String_t* V_2 = NULL;
{
Parser_t5A18E84F88E618D9E803A7768A7765BF17DB2C07* L_0 = __this->___inlineSchemaParser_22;
if (!L_0)
{
goto IL_000a;
}
}
{
return (AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE*)NULL;
}
IL_000a:
{
String_t* L_1 = ___name0;
il2cpp_codegen_runtime_class_init_inline(ValidateNames_tC1994E2C538F499DFEBBA2705010DC4C770E7598_il2cpp_TypeInfo_var);
ValidateNames_SplitQName_m808CCD9614317080CFDC44BB0DE78CA077847498(L_1, (&V_1), (&V_0), NULL);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_2 = __this->___coreReaderNameTable_26;
String_t* L_3 = V_1;
NullCheck(L_2);
String_t* L_4;
L_4 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_2, L_3);
V_1 = L_4;
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_5 = __this->___coreReaderNameTable_26;
String_t* L_6 = V_0;
NullCheck(L_5);
String_t* L_7;
L_7 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_5, L_6);
V_0 = L_7;
String_t* L_8 = V_1;
NullCheck(L_8);
int32_t L_9;
L_9 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_8, NULL);
if (L_9)
{
goto IL_003e;
}
}
{
String_t* L_10 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
V_2 = L_10;
goto IL_004b;
}
IL_003e:
{
RuntimeObject* L_11 = __this->___thisNSResolver_5;
String_t* L_12 = V_1;
NullCheck(L_11);
String_t* L_13;
L_13 = InterfaceFuncInvoker1< String_t*, String_t* >::Invoke(1 /* System.String System.Xml.IXmlNamespaceResolver::LookupNamespace(System.String) */, IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var, L_11, L_12);
V_2 = L_13;
}
IL_004b:
{
String_t* L_14 = V_0;
String_t* L_15 = V_2;
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_16;
L_16 = XsdValidatingReader_GetAttributePSVI_m4CE0E39724E5B0A517E1B403E16C617B7923A486(__this, L_14, L_15, NULL);
return L_16;
}
}
// System.Xml.AttributePSVIInfo System.Xml.XsdValidatingReader::GetAttributePSVI(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* XsdValidatingReader_GetAttributePSVI_m4CE0E39724E5B0A517E1B403E16C617B7923A486 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, String_t* ___localName0, String_t* ___ns1, const RuntimeMethod* method)
{
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* V_0 = NULL;
int32_t V_1 = 0;
{
V_0 = (AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE*)NULL;
V_1 = 0;
goto IL_003b;
}
IL_0006:
{
AttributePSVIInfoU5BU5D_tC78F3BF4DD87E93F42D8DA640AA29B625F3644BD* L_0 = __this->___attributePSVINodes_20;
int32_t L_1 = V_1;
NullCheck(L_0);
int32_t L_2 = L_1;
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
V_0 = L_3;
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_4 = V_0;
if (!L_4)
{
goto IL_0037;
}
}
{
String_t* L_5 = ___localName0;
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_6 = V_0;
NullCheck(L_6);
String_t* L_7 = L_6->___localName_0;
bool L_8;
L_8 = Ref_Equal_m91CE186A8D713DBCF387B2A4AA83138704C7B8B1(L_5, L_7, NULL);
if (!L_8)
{
goto IL_0037;
}
}
{
String_t* L_9 = ___ns1;
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_10 = V_0;
NullCheck(L_10);
String_t* L_11 = L_10->___namespaceUri_1;
bool L_12;
L_12 = Ref_Equal_m91CE186A8D713DBCF387B2A4AA83138704C7B8B1(L_9, L_11, NULL);
if (!L_12)
{
goto IL_0037;
}
}
{
int32_t L_13 = V_1;
__this->___currentAttrIndex_19 = L_13;
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_14 = V_0;
return L_14;
}
IL_0037:
{
int32_t L_15 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_15, 1));
}
IL_003b:
{
int32_t L_16 = V_1;
int32_t L_17 = __this->___coreReaderAttributeCount_18;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_0006;
}
}
{
return (AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE*)NULL;
}
}
// System.Xml.ValidatingReaderNodeData System.Xml.XsdValidatingReader::GetDefaultAttribute(System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* XsdValidatingReader_GetDefaultAttribute_m800DE584E700B6AB7096FECEE9B8A1BE185F5B36 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, String_t* ___name0, bool ___updatePosition1, 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*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidateNames_tC1994E2C538F499DFEBBA2705010DC4C770E7598_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
String_t* V_2 = NULL;
{
String_t* L_0 = ___name0;
il2cpp_codegen_runtime_class_init_inline(ValidateNames_tC1994E2C538F499DFEBBA2705010DC4C770E7598_il2cpp_TypeInfo_var);
ValidateNames_SplitQName_m808CCD9614317080CFDC44BB0DE78CA077847498(L_0, (&V_1), (&V_0), NULL);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_1 = __this->___coreReaderNameTable_26;
String_t* L_2 = V_1;
NullCheck(L_1);
String_t* L_3;
L_3 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_1, L_2);
V_1 = L_3;
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_4 = __this->___coreReaderNameTable_26;
String_t* L_5 = V_0;
NullCheck(L_4);
String_t* L_6;
L_6 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_4, L_5);
V_0 = L_6;
String_t* L_7 = V_1;
NullCheck(L_7);
int32_t L_8;
L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL);
if (L_8)
{
goto IL_0034;
}
}
{
String_t* L_9 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
V_2 = L_9;
goto IL_0041;
}
IL_0034:
{
RuntimeObject* L_10 = __this->___thisNSResolver_5;
String_t* L_11 = V_1;
NullCheck(L_10);
String_t* L_12;
L_12 = InterfaceFuncInvoker1< String_t*, String_t* >::Invoke(1 /* System.String System.Xml.IXmlNamespaceResolver::LookupNamespace(System.String) */, IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1_il2cpp_TypeInfo_var, L_10, L_11);
V_2 = L_12;
}
IL_0041:
{
String_t* L_13 = V_0;
String_t* L_14 = V_2;
bool L_15 = ___updatePosition1;
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_16;
L_16 = XsdValidatingReader_GetDefaultAttribute_m0365FFD5B3B5E7299CBB7E3AA34E9703F968D86A(__this, L_13, L_14, L_15, NULL);
return L_16;
}
}
// System.Xml.ValidatingReaderNodeData System.Xml.XsdValidatingReader::GetDefaultAttribute(System.String,System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* XsdValidatingReader_GetDefaultAttribute_m0365FFD5B3B5E7299CBB7E3AA34E9703F968D86A (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, String_t* ___attrLocalName0, String_t* ___ns1, bool ___updatePosition2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* V_0 = NULL;
int32_t V_1 = 0;
{
V_0 = (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C*)NULL;
V_1 = 0;
goto IL_0050;
}
IL_0006:
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->___defaultAttributes_21;
int32_t L_1 = V_1;
NullCheck(L_0);
RuntimeObject* L_2;
L_2 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_0, L_1);
V_0 = ((ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C*)CastclassClass((RuntimeObject*)L_2, ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C_il2cpp_TypeInfo_var));
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_3 = V_0;
NullCheck(L_3);
String_t* L_4;
L_4 = ValidatingReaderNodeData_get_LocalName_m1B5FCCE13DF4BA2F5CF1AD689A9186064EB5349D_inline(L_3, NULL);
String_t* L_5 = ___attrLocalName0;
bool L_6;
L_6 = Ref_Equal_m91CE186A8D713DBCF387B2A4AA83138704C7B8B1(L_4, L_5, NULL);
if (!L_6)
{
goto IL_004c;
}
}
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_7 = V_0;
NullCheck(L_7);
String_t* L_8;
L_8 = ValidatingReaderNodeData_get_Namespace_mE44583C79C6B1F0C5C6C2768590464A804E57FF6_inline(L_7, NULL);
String_t* L_9 = ___ns1;
bool L_10;
L_10 = Ref_Equal_m91CE186A8D713DBCF387B2A4AA83138704C7B8B1(L_8, L_9, NULL);
if (!L_10)
{
goto IL_004c;
}
}
{
bool L_11 = ___updatePosition2;
if (!L_11)
{
goto IL_004a;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_12 = __this->___coreReader_3;
NullCheck(L_12);
int32_t L_13;
L_13 = VirtualFuncInvoker0< int32_t >::Invoke(21 /* System.Int32 System.Xml.XmlReader::get_AttributeCount() */, L_12);
int32_t L_14 = V_1;
__this->___currentAttrIndex_19 = ((int32_t)il2cpp_codegen_add(L_13, L_14));
}
IL_004a:
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_15 = V_0;
return L_15;
}
IL_004c:
{
int32_t L_16 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_16, 1));
}
IL_0050:
{
int32_t L_17 = V_1;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_18 = __this->___defaultAttributes_21;
NullCheck(L_18);
int32_t L_19;
L_19 = VirtualFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_18);
if ((((int32_t)L_17) < ((int32_t)L_19)))
{
goto IL_0006;
}
}
{
return (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C*)NULL;
}
}
// System.Xml.AttributePSVIInfo System.Xml.XsdValidatingReader::AddAttributePSVI(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* XsdValidatingReader_AddAttributePSVI_m228C486A3F1812D35D12E2459103A0263C13C327 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, int32_t ___attIndex0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AttributePSVIInfoU5BU5D_tC78F3BF4DD87E93F42D8DA640AA29B625F3644BD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* V_0 = NULL;
AttributePSVIInfoU5BU5D_tC78F3BF4DD87E93F42D8DA640AA29B625F3644BD* V_1 = NULL;
{
AttributePSVIInfoU5BU5D_tC78F3BF4DD87E93F42D8DA640AA29B625F3644BD* L_0 = __this->___attributePSVINodes_20;
int32_t L_1 = ___attIndex0;
NullCheck(L_0);
int32_t L_2 = L_1;
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
V_0 = L_3;
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_4 = V_0;
if (!L_4)
{
goto IL_0014;
}
}
{
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_5 = V_0;
NullCheck(L_5);
AttributePSVIInfo_Reset_m6BCB21E222189F063C0D2A7ECCB6D72AC9D086AA(L_5, NULL);
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_6 = V_0;
return L_6;
}
IL_0014:
{
int32_t L_7 = ___attIndex0;
AttributePSVIInfoU5BU5D_tC78F3BF4DD87E93F42D8DA640AA29B625F3644BD* L_8 = __this->___attributePSVINodes_20;
NullCheck(L_8);
if ((((int32_t)L_7) < ((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_8)->max_length)), 1)))))
{
goto IL_004e;
}
}
{
AttributePSVIInfoU5BU5D_tC78F3BF4DD87E93F42D8DA640AA29B625F3644BD* L_9 = __this->___attributePSVINodes_20;
NullCheck(L_9);
AttributePSVIInfoU5BU5D_tC78F3BF4DD87E93F42D8DA640AA29B625F3644BD* L_10 = (AttributePSVIInfoU5BU5D_tC78F3BF4DD87E93F42D8DA640AA29B625F3644BD*)(AttributePSVIInfoU5BU5D_tC78F3BF4DD87E93F42D8DA640AA29B625F3644BD*)SZArrayNew(AttributePSVIInfoU5BU5D_tC78F3BF4DD87E93F42D8DA640AA29B625F3644BD_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_9)->max_length)), 2)));
V_1 = L_10;
AttributePSVIInfoU5BU5D_tC78F3BF4DD87E93F42D8DA640AA29B625F3644BD* L_11 = __this->___attributePSVINodes_20;
AttributePSVIInfoU5BU5D_tC78F3BF4DD87E93F42D8DA640AA29B625F3644BD* L_12 = V_1;
AttributePSVIInfoU5BU5D_tC78F3BF4DD87E93F42D8DA640AA29B625F3644BD* L_13 = __this->___attributePSVINodes_20;
NullCheck(L_13);
Array_Copy_m2CC3EA1129E9B8EA82E6FA31EDE0D4F87BF67EC7((RuntimeArray*)L_11, 0, (RuntimeArray*)L_12, 0, ((int32_t)(((RuntimeArray*)L_13)->max_length)), NULL);
AttributePSVIInfoU5BU5D_tC78F3BF4DD87E93F42D8DA640AA29B625F3644BD* L_14 = V_1;
__this->___attributePSVINodes_20 = L_14;
Il2CppCodeGenWriteBarrier((void**)(&__this->___attributePSVINodes_20), (void*)L_14);
}
IL_004e:
{
AttributePSVIInfoU5BU5D_tC78F3BF4DD87E93F42D8DA640AA29B625F3644BD* L_15 = __this->___attributePSVINodes_20;
int32_t L_16 = ___attIndex0;
NullCheck(L_15);
int32_t L_17 = L_16;
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_18 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
V_0 = L_18;
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_19 = V_0;
if (L_19)
{
goto IL_0069;
}
}
{
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_20 = (AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE*)il2cpp_codegen_object_new(AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE_il2cpp_TypeInfo_var);
NullCheck(L_20);
AttributePSVIInfo__ctor_m7F80C7485761C2944605FA5E7184617318FE7034(L_20, NULL);
V_0 = L_20;
AttributePSVIInfoU5BU5D_tC78F3BF4DD87E93F42D8DA640AA29B625F3644BD* L_21 = __this->___attributePSVINodes_20;
int32_t L_22 = ___attIndex0;
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_23 = V_0;
NullCheck(L_21);
ArrayElementTypeCheck (L_21, L_23);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_22), (AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE*)L_23);
}
IL_0069:
{
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_24 = V_0;
return L_24;
}
}
// System.Boolean System.Xml.XsdValidatingReader::IsXSDRoot(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XsdValidatingReader_IsXSDRoot_mE0C20D5B7ACC607A88043AEDE83A3229D6AFF559 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, String_t* ___localName0, String_t* ___ns1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___ns1;
String_t* L_1 = __this->___NsXs_30;
bool L_2;
L_2 = Ref_Equal_m91CE186A8D713DBCF387B2A4AA83138704C7B8B1(L_0, L_1, NULL);
if (!L_2)
{
goto IL_001b;
}
}
{
String_t* L_3 = ___localName0;
String_t* L_4 = __this->___XsdSchema_34;
bool L_5;
L_5 = Ref_Equal_m91CE186A8D713DBCF387B2A4AA83138704C7B8B1(L_3, L_4, NULL);
return L_5;
}
IL_001b:
{
return (bool)0;
}
}
// System.Void System.Xml.XsdValidatingReader::ProcessInlineSchema()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdValidatingReader_ProcessInlineSchema_m5A8D4859906CC9A3ADD6FD358FC7F3638CE0FD0F (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
XmlSchema_t5C9506D00418BF5FD524254D0C6C405C620C941D* V_1 = NULL;
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3;
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, L_0);
if (!L_1)
{
goto IL_007c;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_2 = __this->___coreReader_3;
NullCheck(L_2);
int32_t L_3;
L_3 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_2);
if ((!(((uint32_t)L_3) == ((uint32_t)1))))
{
goto IL_0037;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_4 = __this->___coreReader_3;
NullCheck(L_4);
int32_t L_5;
L_5 = VirtualFuncInvoker0< int32_t >::Invoke(21 /* System.Int32 System.Xml.XmlReader::get_AttributeCount() */, L_4);
int32_t L_6 = L_5;
V_0 = L_6;
__this->___coreReaderAttributeCount_18 = L_6;
int32_t L_7 = V_0;
__this->___attributeCount_17 = L_7;
goto IL_003d;
}
IL_0037:
{
XsdValidatingReader_ClearAttributesInfo_m49022431F4939F63130E671176FCEC4DFF03D80E(__this, NULL);
}
IL_003d:
{
Parser_t5A18E84F88E618D9E803A7768A7765BF17DB2C07* L_8 = __this->___inlineSchemaParser_22;
NullCheck(L_8);
bool L_9;
L_9 = Parser_ParseReaderNode_mDE124259DA600588C00200854794274AA5F8946A(L_8, NULL);
if (L_9)
{
goto IL_007c;
}
}
{
Parser_t5A18E84F88E618D9E803A7768A7765BF17DB2C07* L_10 = __this->___inlineSchemaParser_22;
NullCheck(L_10);
int32_t L_11;
L_11 = Parser_FinishParsing_m06B8B06E4ABA5BE31AE936826C3E750F84FFC69F_inline(L_10, NULL);
Parser_t5A18E84F88E618D9E803A7768A7765BF17DB2C07* L_12 = __this->___inlineSchemaParser_22;
NullCheck(L_12);
XmlSchema_t5C9506D00418BF5FD524254D0C6C405C620C941D* L_13;
L_13 = Parser_get_XmlSchema_mD5A4C6BA4B18957DA23830385DEAD714D09A9D4B_inline(L_12, NULL);
V_1 = L_13;
XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* L_14 = __this->___validator_6;
XmlSchema_t5C9506D00418BF5FD524254D0C6C405C620C941D* L_15 = V_1;
NullCheck(L_14);
XmlSchemaValidator_AddSchema_m747346B577999B374C38B98B0AE6A6306BF4A6CE(L_14, L_15, NULL);
__this->___inlineSchemaParser_22 = (Parser_t5A18E84F88E618D9E803A7768A7765BF17DB2C07*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___inlineSchemaParser_22), (void*)(Parser_t5A18E84F88E618D9E803A7768A7765BF17DB2C07*)NULL);
__this->___validationState_9 = 2;
}
IL_007c:
{
return;
}
}
// System.Void System.Xml.XsdValidatingReader::ReadAheadForMemberType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdValidatingReader_ReadAheadForMemberType_m07A8DAC896606D650968F8AC04110BD30A6A9F5D (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlValueGetter_tB804924EEE98EA7F63E2B038A3CE3714DA155EB9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XsdValidatingReader_GetStringValue_m89CE0B2CF94DFBFF72B05031654EEE663470AB39_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
goto IL_00fc;
}
IL_0005:
{
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;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_2, 1)))
{
case 0:
{
goto IL_00fc;
}
case 1:
{
goto IL_00fc;
}
case 2:
{
goto IL_005a;
}
case 3:
{
goto IL_005a;
}
case 4:
{
goto IL_00fc;
}
case 5:
{
goto IL_00fc;
}
case 6:
{
goto IL_00fc;
}
case 7:
{
goto IL_00fc;
}
case 8:
{
goto IL_00fc;
}
case 9:
{
goto IL_00fc;
}
case 10:
{
goto IL_00fc;
}
case 11:
{
goto IL_00fc;
}
case 12:
{
goto IL_0076;
}
case 13:
{
goto IL_0076;
}
case 14:
{
goto IL_008f;
}
}
}
{
goto IL_00fc;
}
IL_005a:
{
XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* L_3 = __this->___validator_6;
XmlValueGetter_tB804924EEE98EA7F63E2B038A3CE3714DA155EB9* L_4 = (XmlValueGetter_tB804924EEE98EA7F63E2B038A3CE3714DA155EB9*)il2cpp_codegen_object_new(XmlValueGetter_tB804924EEE98EA7F63E2B038A3CE3714DA155EB9_il2cpp_TypeInfo_var);
NullCheck(L_4);
XmlValueGetter__ctor_mBE624F87E03B987FB93726999FDECD5A16A78856(L_4, __this, (intptr_t)((void*)XsdValidatingReader_GetStringValue_m89CE0B2CF94DFBFF72B05031654EEE663470AB39_RuntimeMethod_var), NULL);
NullCheck(L_3);
XmlSchemaValidator_ValidateText_mAFDA1D89FE72244D37356A8954ABF6549544C67E(L_3, L_4, NULL);
goto IL_00fc;
}
IL_0076:
{
XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* L_5 = __this->___validator_6;
XmlValueGetter_tB804924EEE98EA7F63E2B038A3CE3714DA155EB9* L_6 = (XmlValueGetter_tB804924EEE98EA7F63E2B038A3CE3714DA155EB9*)il2cpp_codegen_object_new(XmlValueGetter_tB804924EEE98EA7F63E2B038A3CE3714DA155EB9_il2cpp_TypeInfo_var);
NullCheck(L_6);
XmlValueGetter__ctor_mBE624F87E03B987FB93726999FDECD5A16A78856(L_6, __this, (intptr_t)((void*)XsdValidatingReader_GetStringValue_m89CE0B2CF94DFBFF72B05031654EEE663470AB39_RuntimeMethod_var), NULL);
NullCheck(L_5);
XmlSchemaValidator_ValidateWhitespace_mB80702282B9ECD2F20A8E2CE93E72D3790619BC6(L_5, L_6, NULL);
goto IL_00fc;
}
IL_008f:
{
XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* L_7 = __this->___validator_6;
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_8 = __this->___xmlSchemaInfo_24;
NullCheck(L_7);
RuntimeObject* L_9;
L_9 = XmlSchemaValidator_ValidateEndElement_m643E1751AAD5253C99107E714616A317BFCB44DF(L_7, L_8, NULL);
__this->___atomicValue_23 = L_9;
Il2CppCodeGenWriteBarrier((void**)(&__this->___atomicValue_23), (void*)L_9);
String_t* L_10;
L_10 = XsdValidatingReader_GetOriginalAtomicValueStringOfElement_mAFDDF8BA2F61A2EFA7A9F7F1033A5A48BFB790B6(__this, NULL);
__this->___originalAtomicValueString_25 = L_10;
Il2CppCodeGenWriteBarrier((void**)(&__this->___originalAtomicValueString_25), (void*)L_10);
RuntimeObject* L_11 = __this->___atomicValue_23;
if (L_11)
{
goto IL_00c2;
}
}
{
__this->___atomicValue_23 = __this;
Il2CppCodeGenWriteBarrier((void**)(&__this->___atomicValue_23), (void*)__this);
return;
}
IL_00c2:
{
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_12 = __this->___xmlSchemaInfo_24;
NullCheck(L_12);
bool L_13;
L_13 = XmlSchemaInfo_get_IsDefault_mB86867936914AAE6E3CD99B8826360233EA59B8C_inline(L_12, NULL);
if (!L_13)
{
goto IL_010c;
}
}
{
XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* L_14 = __this->___cachingReader_27;
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_15 = __this->___xmlSchemaInfo_24;
NullCheck(L_15);
XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* L_16;
L_16 = XmlSchemaInfo_get_XmlType_mD9463B808F9551551B08914C7D69BD0AC499AA87(L_15, NULL);
NullCheck(L_16);
XmlValueConverter_tAB12320D9B3994EBB077CA59A095458E60F3F57E* L_17;
L_17 = XmlSchemaType_get_ValueConverter_mCCC5AAC678099B787A16302E74037FC05E0522C8(L_16, NULL);
RuntimeObject* L_18 = __this->___atomicValue_23;
NullCheck(L_17);
String_t* L_19;
L_19 = VirtualFuncInvoker1< String_t*, RuntimeObject* >::Invoke(51 /* System.String System.Xml.Schema.XmlValueConverter::ToString(System.Object) */, L_17, L_18);
String_t* L_20 = __this->___originalAtomicValueString_25;
NullCheck(L_14);
XsdCachingReader_SwitchTextNodeAndEndElement_m83841B62F3A33A5227D98E2597A544A846D15A8A(L_14, L_19, L_20, NULL);
return;
}
IL_00fc:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_21 = __this->___coreReader_3;
NullCheck(L_21);
bool L_22;
L_22 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, L_21);
if (L_22)
{
goto IL_0005;
}
}
IL_010c:
{
return;
}
}
// System.Void System.Xml.XsdValidatingReader::GetIsDefault()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdValidatingReader_GetIsDefault_mB9A0D7444277652C86A23B61DE9A30623B403FFD (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlValueGetter_tB804924EEE98EA7F63E2B038A3CE3714DA155EB9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XsdValidatingReader_GetStringValue_m89CE0B2CF94DFBFF72B05031654EEE663470AB39_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3;
if (((XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43*)IsInstClass((RuntimeObject*)L_0, XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43_il2cpp_TypeInfo_var)))
{
goto IL_0156;
}
}
{
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_1 = __this->___xmlSchemaInfo_24;
NullCheck(L_1);
bool L_2;
L_2 = XmlSchemaInfo_get_HasDefaultValue_mA1B5032979D2D92E35B22811948D4D2F8C967DAA(L_1, NULL);
if (!L_2)
{
goto IL_0156;
}
}
{
XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* L_3;
L_3 = XsdValidatingReader_GetCachingReader_mE6F54A3681999D682EAE5D628386174D5E198A7D(__this, NULL);
__this->___coreReader_3 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___coreReader_3), (void*)L_3);
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_4 = __this->___xmlSchemaInfo_24;
NullCheck(L_4);
bool L_5;
L_5 = XmlSchemaInfo_get_IsUnionType_m9027AA2A2DA360A6EFA0D2916B4B94307A2EB050(L_4, NULL);
if (!L_5)
{
goto IL_0051;
}
}
{
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_6 = __this->___xmlSchemaInfo_24;
NullCheck(L_6);
bool L_7;
L_7 = XmlSchemaInfo_get_IsNil_m4F1DD1026DF6FADBEB26C570C07933519D4F8A2B_inline(L_6, NULL);
if (L_7)
{
goto IL_0051;
}
}
{
XsdValidatingReader_ReadAheadForMemberType_m07A8DAC896606D650968F8AC04110BD30A6A9F5D(__this, NULL);
goto IL_0144;
}
IL_0051:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_8 = __this->___coreReader_3;
NullCheck(L_8);
bool L_9;
L_9 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, L_8);
if (!L_9)
{
goto IL_0144;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_10 = __this->___coreReader_3;
NullCheck(L_10);
int32_t L_11;
L_11 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_10);
V_0 = L_11;
int32_t L_12 = V_0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_12, 1)))
{
case 0:
{
goto IL_0144;
}
case 1:
{
goto IL_0144;
}
case 2:
{
goto IL_00b6;
}
case 3:
{
goto IL_00b6;
}
case 4:
{
goto IL_0144;
}
case 5:
{
goto IL_0144;
}
case 6:
{
goto IL_0144;
}
case 7:
{
goto IL_0144;
}
case 8:
{
goto IL_0144;
}
case 9:
{
goto IL_0144;
}
case 10:
{
goto IL_0144;
}
case 11:
{
goto IL_0144;
}
case 12:
{
goto IL_00cf;
}
case 13:
{
goto IL_00cf;
}
case 14:
{
goto IL_00e8;
}
}
}
{
goto IL_0144;
}
IL_00b6:
{
XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* L_13 = __this->___validator_6;
XmlValueGetter_tB804924EEE98EA7F63E2B038A3CE3714DA155EB9* L_14 = (XmlValueGetter_tB804924EEE98EA7F63E2B038A3CE3714DA155EB9*)il2cpp_codegen_object_new(XmlValueGetter_tB804924EEE98EA7F63E2B038A3CE3714DA155EB9_il2cpp_TypeInfo_var);
NullCheck(L_14);
XmlValueGetter__ctor_mBE624F87E03B987FB93726999FDECD5A16A78856(L_14, __this, (intptr_t)((void*)XsdValidatingReader_GetStringValue_m89CE0B2CF94DFBFF72B05031654EEE663470AB39_RuntimeMethod_var), NULL);
NullCheck(L_13);
XmlSchemaValidator_ValidateText_mAFDA1D89FE72244D37356A8954ABF6549544C67E(L_13, L_14, NULL);
goto IL_0144;
}
IL_00cf:
{
XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* L_15 = __this->___validator_6;
XmlValueGetter_tB804924EEE98EA7F63E2B038A3CE3714DA155EB9* L_16 = (XmlValueGetter_tB804924EEE98EA7F63E2B038A3CE3714DA155EB9*)il2cpp_codegen_object_new(XmlValueGetter_tB804924EEE98EA7F63E2B038A3CE3714DA155EB9_il2cpp_TypeInfo_var);
NullCheck(L_16);
XmlValueGetter__ctor_mBE624F87E03B987FB93726999FDECD5A16A78856(L_16, __this, (intptr_t)((void*)XsdValidatingReader_GetStringValue_m89CE0B2CF94DFBFF72B05031654EEE663470AB39_RuntimeMethod_var), NULL);
NullCheck(L_15);
XmlSchemaValidator_ValidateWhitespace_mB80702282B9ECD2F20A8E2CE93E72D3790619BC6(L_15, L_16, NULL);
goto IL_0144;
}
IL_00e8:
{
XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* L_17 = __this->___validator_6;
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_18 = __this->___xmlSchemaInfo_24;
NullCheck(L_17);
RuntimeObject* L_19;
L_19 = XmlSchemaValidator_ValidateEndElement_m643E1751AAD5253C99107E714616A317BFCB44DF(L_17, L_18, NULL);
__this->___atomicValue_23 = L_19;
Il2CppCodeGenWriteBarrier((void**)(&__this->___atomicValue_23), (void*)L_19);
String_t* L_20;
L_20 = XsdValidatingReader_GetOriginalAtomicValueStringOfElement_mAFDDF8BA2F61A2EFA7A9F7F1033A5A48BFB790B6(__this, NULL);
__this->___originalAtomicValueString_25 = L_20;
Il2CppCodeGenWriteBarrier((void**)(&__this->___originalAtomicValueString_25), (void*)L_20);
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_21 = __this->___xmlSchemaInfo_24;
NullCheck(L_21);
bool L_22;
L_22 = XmlSchemaInfo_get_IsDefault_mB86867936914AAE6E3CD99B8826360233EA59B8C_inline(L_21, NULL);
if (!L_22)
{
goto IL_0144;
}
}
{
XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* L_23 = __this->___cachingReader_27;
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_24 = __this->___xmlSchemaInfo_24;
NullCheck(L_24);
XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* L_25;
L_25 = XmlSchemaInfo_get_XmlType_mD9463B808F9551551B08914C7D69BD0AC499AA87(L_24, NULL);
NullCheck(L_25);
XmlValueConverter_tAB12320D9B3994EBB077CA59A095458E60F3F57E* L_26;
L_26 = XmlSchemaType_get_ValueConverter_mCCC5AAC678099B787A16302E74037FC05E0522C8(L_25, NULL);
RuntimeObject* L_27 = __this->___atomicValue_23;
NullCheck(L_26);
String_t* L_28;
L_28 = VirtualFuncInvoker1< String_t*, RuntimeObject* >::Invoke(51 /* System.String System.Xml.Schema.XmlValueConverter::ToString(System.Object) */, L_26, L_27);
String_t* L_29 = __this->___originalAtomicValueString_25;
NullCheck(L_23);
XsdCachingReader_SwitchTextNodeAndEndElement_m83841B62F3A33A5227D98E2597A544A846D15A8A(L_23, L_28, L_29, NULL);
}
IL_0144:
{
XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* L_30 = __this->___cachingReader_27;
NullCheck(L_30);
XsdCachingReader_SetToReplayMode_m7FB04A844F6E68764C1DCF95F422804C3201B580(L_30, NULL);
__this->___replayCache_14 = (bool)1;
}
IL_0156:
{
return;
}
}
// System.Void System.Xml.XsdValidatingReader::GetMemberType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdValidatingReader_GetMemberType_m160C7064CFA3EDD992A142C23696FC10B89AFC99 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_0 = __this->___xmlSchemaInfo_24;
NullCheck(L_0);
XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8* L_1;
L_1 = XmlSchemaInfo_get_MemberType_m4D8775934A4A9E0BFB886A913151C05237D79CCC_inline(L_0, NULL);
if (L_1)
{
goto IL_0016;
}
}
{
RuntimeObject* L_2 = __this->___atomicValue_23;
if ((!(((RuntimeObject*)(RuntimeObject*)L_2) == ((RuntimeObject*)(XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E*)__this))))
{
goto IL_0017;
}
}
IL_0016:
{
return;
}
IL_0017:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_3 = __this->___coreReader_3;
if (((XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43*)IsInstClass((RuntimeObject*)L_3, XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43_il2cpp_TypeInfo_var)))
{
goto IL_0062;
}
}
{
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_4 = __this->___xmlSchemaInfo_24;
NullCheck(L_4);
bool L_5;
L_5 = XmlSchemaInfo_get_IsUnionType_m9027AA2A2DA360A6EFA0D2916B4B94307A2EB050(L_4, NULL);
if (!L_5)
{
goto IL_0062;
}
}
{
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_6 = __this->___xmlSchemaInfo_24;
NullCheck(L_6);
bool L_7;
L_7 = XmlSchemaInfo_get_IsNil_m4F1DD1026DF6FADBEB26C570C07933519D4F8A2B_inline(L_6, NULL);
if (L_7)
{
goto IL_0062;
}
}
{
XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* L_8;
L_8 = XsdValidatingReader_GetCachingReader_mE6F54A3681999D682EAE5D628386174D5E198A7D(__this, NULL);
__this->___coreReader_3 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->___coreReader_3), (void*)L_8);
XsdValidatingReader_ReadAheadForMemberType_m07A8DAC896606D650968F8AC04110BD30A6A9F5D(__this, NULL);
XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* L_9 = __this->___cachingReader_27;
NullCheck(L_9);
XsdCachingReader_SetToReplayMode_m7FB04A844F6E68764C1DCF95F422804C3201B580(L_9, NULL);
__this->___replayCache_14 = (bool)1;
}
IL_0062:
{
return;
}
}
// System.Xml.XsdCachingReader System.Xml.XsdValidatingReader::GetCachingReader()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* XsdValidatingReader_GetCachingReader_mE6F54A3681999D682EAE5D628386174D5E198A7D (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CachingEventHandler_t3531836C36E56CCAAB45B3B7DA1B4F94742FE74E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XsdValidatingReader_CachingCallBack_m2F89694599D543E496C683B36C7FD1E57C322CDE_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* L_0 = __this->___cachingReader_27;
if (L_0)
{
goto IL_002d;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1 = __this->___coreReader_3;
RuntimeObject* L_2 = __this->___lineInfo_38;
CachingEventHandler_t3531836C36E56CCAAB45B3B7DA1B4F94742FE74E* L_3 = (CachingEventHandler_t3531836C36E56CCAAB45B3B7DA1B4F94742FE74E*)il2cpp_codegen_object_new(CachingEventHandler_t3531836C36E56CCAAB45B3B7DA1B4F94742FE74E_il2cpp_TypeInfo_var);
NullCheck(L_3);
CachingEventHandler__ctor_mE381B83D69016CB82FEEBF79B9D911695986C7E5(L_3, __this, (intptr_t)((void*)XsdValidatingReader_CachingCallBack_m2F89694599D543E496C683B36C7FD1E57C322CDE_RuntimeMethod_var), NULL);
XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* L_4 = (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43*)il2cpp_codegen_object_new(XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43_il2cpp_TypeInfo_var);
NullCheck(L_4);
XsdCachingReader__ctor_mA5C3DBB1AE966E01E356B395EF98F22FA8D4780F(L_4, L_1, L_2, L_3, NULL);
__this->___cachingReader_27 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->___cachingReader_27), (void*)L_4);
goto IL_003e;
}
IL_002d:
{
XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* L_5 = __this->___cachingReader_27;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_6 = __this->___coreReader_3;
NullCheck(L_5);
XsdCachingReader_Reset_m191DEFA89552471F15D279F6DB46B725E3D68483(L_5, L_6, NULL);
}
IL_003e:
{
XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* L_7 = __this->___cachingReader_27;
__this->___lineInfo_38 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&__this->___lineInfo_38), (void*)L_7);
XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* L_8 = __this->___cachingReader_27;
return L_8;
}
}
// System.Xml.ValidatingReaderNodeData System.Xml.XsdValidatingReader::CreateDummyTextNode(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* XsdValidatingReader_CreateDummyTextNode_mEC84A678995AC1AF508CECA0411B00EC45D982BA (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, String_t* ___attributeValue0, int32_t ___depth1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_0 = __this->___textNode_28;
if (L_0)
{
goto IL_0014;
}
}
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_1 = (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C*)il2cpp_codegen_object_new(ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C_il2cpp_TypeInfo_var);
NullCheck(L_1);
ValidatingReaderNodeData__ctor_m6A898DD01B67F8F6F4B2E21FD45394E04AF38AAE(L_1, 3, NULL);
__this->___textNode_28 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___textNode_28), (void*)L_1);
}
IL_0014:
{
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_2 = __this->___textNode_28;
int32_t L_3 = ___depth1;
NullCheck(L_2);
ValidatingReaderNodeData_set_Depth_m67104201A7E9C3E72FF18CD75CF28CCEEB349D8B_inline(L_2, L_3, NULL);
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_4 = __this->___textNode_28;
String_t* L_5 = ___attributeValue0;
NullCheck(L_4);
ValidatingReaderNodeData_set_RawValue_mEE082D1AA279EC32C842D3F17574B5839F42B4A4_inline(L_4, L_5, NULL);
ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* L_6 = __this->___textNode_28;
return L_6;
}
}
// System.Void System.Xml.XsdValidatingReader::CachingCallBack(System.Xml.XsdCachingReader)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdValidatingReader_CachingCallBack_m2F89694599D543E496C683B36C7FD1E57C322CDE (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __this, XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* ___cachingReader0, const RuntimeMethod* method)
{
{
XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* L_0 = ___cachingReader0;
NullCheck(L_0);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1;
L_1 = XsdCachingReader_GetCoreReader_m96B2B679BBB13A94A254F003422ED29780C99431_inline(L_0, NULL);
__this->___coreReader_3 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___coreReader_3), (void*)L_1);
XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* L_2 = ___cachingReader0;
NullCheck(L_2);
RuntimeObject* L_3;
L_3 = XsdCachingReader_GetLineInfo_m26C8F60794137010483127A2344B5456857FBEA1_inline(L_2, NULL);
__this->___lineInfo_38 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___lineInfo_38), (void*)L_3);
__this->___replayCache_14 = (bool)0;
return;
}
}
// System.String System.Xml.XsdValidatingReader::GetOriginalAtomicValueStringOfElement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsdValidatingReader_GetOriginalAtomicValueStringOfElement_mAFDDF8BA2F61A2EFA7A9F7F1033A5A48BFB790B6 (XsdValidatingReader_tC7C9B4A5D46184E4A548F7A12177D50D22CC361E* __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;
}
XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970* V_0 = NULL;
{
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_0 = __this->___xmlSchemaInfo_24;
NullCheck(L_0);
bool L_1;
L_1 = XmlSchemaInfo_get_IsDefault_mB86867936914AAE6E3CD99B8826360233EA59B8C_inline(L_0, NULL);
if (!L_1)
{
goto IL_0032;
}
}
{
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_2 = __this->___xmlSchemaInfo_24;
NullCheck(L_2);
XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970* L_3;
L_3 = XmlSchemaInfo_get_SchemaElement_m9E2ACC794E25FE2D5CC3DC433E8E389DE6934DDB_inline(L_2, NULL);
V_0 = L_3;
XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970* L_4 = V_0;
if (!L_4)
{
goto IL_003e;
}
}
{
XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970* L_5 = V_0;
NullCheck(L_5);
String_t* L_6;
L_6 = XmlSchemaElement_get_DefaultValue_mA6F17331F4A7702DE9EB19DE943E43A3EF564766_inline(L_5, NULL);
if (L_6)
{
goto IL_002b;
}
}
{
XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970* L_7 = V_0;
NullCheck(L_7);
String_t* L_8;
L_8 = XmlSchemaElement_get_FixedValue_mE6E6A8DE76B5B1D53AEBA9A683688D8462D22CE7_inline(L_7, NULL);
return L_8;
}
IL_002b:
{
XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970* L_9 = V_0;
NullCheck(L_9);
String_t* L_10;
L_10 = XmlSchemaElement_get_DefaultValue_mA6F17331F4A7702DE9EB19DE943E43A3EF564766_inline(L_9, NULL);
return L_10;
}
IL_0032:
{
XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* L_11 = __this->___validator_6;
NullCheck(L_11);
String_t* L_12;
L_12 = XmlSchemaValidator_GetConcatenatedValue_mA176D71D78B7C8968D619222BAB21972DAF12111(L_11, NULL);
return L_12;
}
IL_003e:
{
String_t* L_13 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_13;
}
}
#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.DomNameTable::.ctor(System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DomNameTable__ctor_m5A5BC654B5068463A5363A4C5F944DBA31D68C29 (DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45* __this, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___document0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___document0;
__this->___ownerDocument_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___ownerDocument_3), (void*)L_0);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1 = ___document0;
NullCheck(L_1);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_2;
L_2 = XmlDocument_get_NameTable_m4B913865A24AEA917172F75CBDCE94C81CCB7E2C(L_1, NULL);
__this->___nameTable_4 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___nameTable_4), (void*)L_2);
XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC* L_3 = (XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC*)(XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC*)SZArrayNew(XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC_il2cpp_TypeInfo_var, (uint32_t)((int32_t)64));
__this->___entries_0 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___entries_0), (void*)L_3);
__this->___mask_2 = ((int32_t)63);
return;
}
}
// System.Xml.XmlName System.Xml.DomNameTable::GetName(System.String,System.String,System.String,System.Xml.Schema.IXmlSchemaInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* DomNameTable_GetName_mCDD057C4F21297AF60F4C3E34DFB4A864067AD8C (DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, RuntimeObject* ___schemaInfo3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
XmlName_t0704430D24D202146901D342E34D878246E14F33* V_1 = NULL;
{
String_t* L_0 = ___prefix0;
if (L_0)
{
goto IL_000a;
}
}
{
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
___prefix0 = L_1;
}
IL_000a:
{
String_t* L_2 = ___ns2;
if (L_2)
{
goto IL_0014;
}
}
{
String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
___ns2 = L_3;
}
IL_0014:
{
String_t* L_4 = ___localName1;
int32_t L_5;
L_5 = XmlName_GetHashCode_m972577ACE7EF83D4ADE98E056F1A05DD11A789F1(L_4, NULL);
V_0 = L_5;
XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC* L_6 = __this->___entries_0;
int32_t L_7 = V_0;
int32_t L_8 = __this->___mask_2;
NullCheck(L_6);
int32_t L_9 = ((int32_t)(L_7&L_8));
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_10 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
V_1 = L_10;
goto IL_008e;
}
IL_002d:
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_11 = V_1;
NullCheck(L_11);
int32_t L_12;
L_12 = XmlName_get_HashCode_m329A9FEAF3BDEAA5F1F40CB84F7E51E1BDE58B2D_inline(L_11, NULL);
int32_t L_13 = V_0;
if ((!(((uint32_t)L_12) == ((uint32_t)L_13))))
{
goto IL_0087;
}
}
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_14 = V_1;
NullCheck(L_14);
String_t* L_15;
L_15 = XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline(L_14, NULL);
String_t* L_16 = ___localName1;
if ((((RuntimeObject*)(String_t*)L_15) == ((RuntimeObject*)(String_t*)L_16)))
{
goto IL_004d;
}
}
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_17 = V_1;
NullCheck(L_17);
String_t* L_18;
L_18 = XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline(L_17, NULL);
String_t* L_19 = ___localName1;
NullCheck(L_18);
bool L_20;
L_20 = String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D(L_18, L_19, NULL);
if (!L_20)
{
goto IL_0087;
}
}
IL_004d:
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_21 = V_1;
NullCheck(L_21);
String_t* L_22;
L_22 = XmlName_get_Prefix_m42E3E78749764ECBE9586AFC0FC3EBFD2B7A2E4E_inline(L_21, NULL);
String_t* L_23 = ___prefix0;
if ((((RuntimeObject*)(String_t*)L_22) == ((RuntimeObject*)(String_t*)L_23)))
{
goto IL_0064;
}
}
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_24 = V_1;
NullCheck(L_24);
String_t* L_25;
L_25 = XmlName_get_Prefix_m42E3E78749764ECBE9586AFC0FC3EBFD2B7A2E4E_inline(L_24, NULL);
String_t* L_26 = ___prefix0;
NullCheck(L_25);
bool L_27;
L_27 = String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D(L_25, L_26, NULL);
if (!L_27)
{
goto IL_0087;
}
}
IL_0064:
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_28 = V_1;
NullCheck(L_28);
String_t* L_29;
L_29 = XmlName_get_NamespaceURI_mCF07F0E78CAF17DDF53DD8CD44C5D415B4E010D1_inline(L_28, NULL);
String_t* L_30 = ___ns2;
if ((((RuntimeObject*)(String_t*)L_29) == ((RuntimeObject*)(String_t*)L_30)))
{
goto IL_007b;
}
}
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_31 = V_1;
NullCheck(L_31);
String_t* L_32;
L_32 = XmlName_get_NamespaceURI_mCF07F0E78CAF17DDF53DD8CD44C5D415B4E010D1_inline(L_31, NULL);
String_t* L_33 = ___ns2;
NullCheck(L_32);
bool L_34;
L_34 = String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D(L_32, L_33, NULL);
if (!L_34)
{
goto IL_0087;
}
}
IL_007b:
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_35 = V_1;
RuntimeObject* L_36 = ___schemaInfo3;
NullCheck(L_35);
bool L_37;
L_37 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(18 /* System.Boolean System.Xml.XmlName::Equals(System.Xml.Schema.IXmlSchemaInfo) */, L_35, L_36);
if (!L_37)
{
goto IL_0087;
}
}
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_38 = V_1;
return L_38;
}
IL_0087:
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_39 = V_1;
NullCheck(L_39);
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_40 = L_39->___next_6;
V_1 = L_40;
}
IL_008e:
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_41 = V_1;
if (L_41)
{
goto IL_002d;
}
}
{
return (XmlName_t0704430D24D202146901D342E34D878246E14F33*)NULL;
}
}
// System.Xml.XmlName System.Xml.DomNameTable::AddName(System.String,System.String,System.String,System.Xml.Schema.IXmlSchemaInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* DomNameTable_AddName_m5EADC9D7600CB5AB4285BF18DCA911E042C7F4C2 (DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, RuntimeObject* ___schemaInfo3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
XmlName_t0704430D24D202146901D342E34D878246E14F33* V_2 = NULL;
XmlName_t0704430D24D202146901D342E34D878246E14F33* V_3 = NULL;
int32_t V_4 = 0;
{
String_t* L_0 = ___prefix0;
if (L_0)
{
goto IL_000a;
}
}
{
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
___prefix0 = L_1;
}
IL_000a:
{
String_t* L_2 = ___ns2;
if (L_2)
{
goto IL_0014;
}
}
{
String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
___ns2 = L_3;
}
IL_0014:
{
String_t* L_4 = ___localName1;
int32_t L_5;
L_5 = XmlName_GetHashCode_m972577ACE7EF83D4ADE98E056F1A05DD11A789F1(L_4, NULL);
V_0 = L_5;
XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC* L_6 = __this->___entries_0;
int32_t L_7 = V_0;
int32_t L_8 = __this->___mask_2;
NullCheck(L_6);
int32_t L_9 = ((int32_t)(L_7&L_8));
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_10 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
V_3 = L_10;
goto IL_008e;
}
IL_002d:
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_11 = V_3;
NullCheck(L_11);
int32_t L_12;
L_12 = XmlName_get_HashCode_m329A9FEAF3BDEAA5F1F40CB84F7E51E1BDE58B2D_inline(L_11, NULL);
int32_t L_13 = V_0;
if ((!(((uint32_t)L_12) == ((uint32_t)L_13))))
{
goto IL_0087;
}
}
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_14 = V_3;
NullCheck(L_14);
String_t* L_15;
L_15 = XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline(L_14, NULL);
String_t* L_16 = ___localName1;
if ((((RuntimeObject*)(String_t*)L_15) == ((RuntimeObject*)(String_t*)L_16)))
{
goto IL_004d;
}
}
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_17 = V_3;
NullCheck(L_17);
String_t* L_18;
L_18 = XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline(L_17, NULL);
String_t* L_19 = ___localName1;
NullCheck(L_18);
bool L_20;
L_20 = String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D(L_18, L_19, NULL);
if (!L_20)
{
goto IL_0087;
}
}
IL_004d:
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_21 = V_3;
NullCheck(L_21);
String_t* L_22;
L_22 = XmlName_get_Prefix_m42E3E78749764ECBE9586AFC0FC3EBFD2B7A2E4E_inline(L_21, NULL);
String_t* L_23 = ___prefix0;
if ((((RuntimeObject*)(String_t*)L_22) == ((RuntimeObject*)(String_t*)L_23)))
{
goto IL_0064;
}
}
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_24 = V_3;
NullCheck(L_24);
String_t* L_25;
L_25 = XmlName_get_Prefix_m42E3E78749764ECBE9586AFC0FC3EBFD2B7A2E4E_inline(L_24, NULL);
String_t* L_26 = ___prefix0;
NullCheck(L_25);
bool L_27;
L_27 = String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D(L_25, L_26, NULL);
if (!L_27)
{
goto IL_0087;
}
}
IL_0064:
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_28 = V_3;
NullCheck(L_28);
String_t* L_29;
L_29 = XmlName_get_NamespaceURI_mCF07F0E78CAF17DDF53DD8CD44C5D415B4E010D1_inline(L_28, NULL);
String_t* L_30 = ___ns2;
if ((((RuntimeObject*)(String_t*)L_29) == ((RuntimeObject*)(String_t*)L_30)))
{
goto IL_007b;
}
}
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_31 = V_3;
NullCheck(L_31);
String_t* L_32;
L_32 = XmlName_get_NamespaceURI_mCF07F0E78CAF17DDF53DD8CD44C5D415B4E010D1_inline(L_31, NULL);
String_t* L_33 = ___ns2;
NullCheck(L_32);
bool L_34;
L_34 = String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D(L_32, L_33, NULL);
if (!L_34)
{
goto IL_0087;
}
}
IL_007b:
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_35 = V_3;
RuntimeObject* L_36 = ___schemaInfo3;
NullCheck(L_35);
bool L_37;
L_37 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(18 /* System.Boolean System.Xml.XmlName::Equals(System.Xml.Schema.IXmlSchemaInfo) */, L_35, L_36);
if (!L_37)
{
goto IL_0087;
}
}
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_38 = V_3;
return L_38;
}
IL_0087:
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_39 = V_3;
NullCheck(L_39);
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_40 = L_39->___next_6;
V_3 = L_40;
}
IL_008e:
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_41 = V_3;
if (L_41)
{
goto IL_002d;
}
}
{
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_42 = __this->___nameTable_4;
String_t* L_43 = ___prefix0;
NullCheck(L_42);
String_t* L_44;
L_44 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_42, L_43);
___prefix0 = L_44;
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_45 = __this->___nameTable_4;
String_t* L_46 = ___localName1;
NullCheck(L_45);
String_t* L_47;
L_47 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_45, L_46);
___localName1 = L_47;
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_48 = __this->___nameTable_4;
String_t* L_49 = ___ns2;
NullCheck(L_48);
String_t* L_50;
L_50 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_48, L_49);
___ns2 = L_50;
int32_t L_51 = V_0;
int32_t L_52 = __this->___mask_2;
V_1 = ((int32_t)(L_51&L_52));
String_t* L_53 = ___prefix0;
String_t* L_54 = ___localName1;
String_t* L_55 = ___ns2;
int32_t L_56 = V_0;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_57 = __this->___ownerDocument_3;
XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC* L_58 = __this->___entries_0;
int32_t L_59 = V_1;
NullCheck(L_58);
int32_t L_60 = L_59;
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_61 = (L_58)->GetAt(static_cast<il2cpp_array_size_t>(L_60));
RuntimeObject* L_62 = ___schemaInfo3;
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_63;
L_63 = XmlName_Create_mC2946590436F4453D0E49D9DA15D12507BD47C12(L_53, L_54, L_55, L_56, L_57, L_61, L_62, NULL);
V_2 = L_63;
XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC* L_64 = __this->___entries_0;
int32_t L_65 = V_1;
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_66 = V_2;
NullCheck(L_64);
ArrayElementTypeCheck (L_64, L_66);
(L_64)->SetAt(static_cast<il2cpp_array_size_t>(L_65), (XmlName_t0704430D24D202146901D342E34D878246E14F33*)L_66);
int32_t L_67 = __this->___count_1;
V_4 = L_67;
int32_t L_68 = V_4;
__this->___count_1 = ((int32_t)il2cpp_codegen_add(L_68, 1));
int32_t L_69 = V_4;
int32_t L_70 = __this->___mask_2;
if ((!(((uint32_t)L_69) == ((uint32_t)L_70))))
{
goto IL_0109;
}
}
{
DomNameTable_Grow_m6D16497A6E2D1C44AB174DA56A974A7E3DDDE487(__this, NULL);
}
IL_0109:
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_71 = V_2;
return L_71;
}
}
// System.Void System.Xml.DomNameTable::Grow()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DomNameTable_Grow_m6D16497A6E2D1C44AB174DA56A974A7E3DDDE487 (DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC* V_1 = NULL;
XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC* V_2 = NULL;
int32_t V_3 = 0;
XmlName_t0704430D24D202146901D342E34D878246E14F33* V_4 = NULL;
int32_t V_5 = 0;
{
int32_t L_0 = __this->___mask_2;
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_0, 2)), 1));
XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC* L_1 = __this->___entries_0;
V_1 = L_1;
int32_t L_2 = V_0;
XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC* L_3 = (XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC*)(XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC*)SZArrayNew(XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add(L_2, 1)));
V_2 = L_3;
V_3 = 0;
goto IL_0053;
}
IL_001f:
{
XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC* L_4 = V_1;
int32_t L_5 = V_3;
NullCheck(L_4);
int32_t L_6 = L_5;
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
V_4 = L_7;
goto IL_004b;
}
IL_0026:
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_8 = V_4;
NullCheck(L_8);
int32_t L_9;
L_9 = XmlName_get_HashCode_m329A9FEAF3BDEAA5F1F40CB84F7E51E1BDE58B2D_inline(L_8, NULL);
int32_t L_10 = V_0;
V_5 = ((int32_t)(L_9&L_10));
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_11 = V_4;
NullCheck(L_11);
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_12 = L_11->___next_6;
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_13 = V_4;
XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC* L_14 = V_2;
int32_t L_15 = V_5;
NullCheck(L_14);
int32_t L_16 = L_15;
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
NullCheck(L_13);
L_13->___next_6 = L_17;
Il2CppCodeGenWriteBarrier((void**)(&L_13->___next_6), (void*)L_17);
XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC* L_18 = V_2;
int32_t L_19 = V_5;
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_20 = V_4;
NullCheck(L_18);
ArrayElementTypeCheck (L_18, L_20);
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(L_19), (XmlName_t0704430D24D202146901D342E34D878246E14F33*)L_20);
V_4 = L_12;
}
IL_004b:
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_21 = V_4;
if (L_21)
{
goto IL_0026;
}
}
{
int32_t L_22 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_22, 1));
}
IL_0053:
{
int32_t L_23 = V_3;
XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC* L_24 = V_1;
NullCheck(L_24);
if ((((int32_t)L_23) < ((int32_t)((int32_t)(((RuntimeArray*)L_24)->max_length)))))
{
goto IL_001f;
}
}
{
XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC* L_25 = V_2;
__this->___entries_0 = L_25;
Il2CppCodeGenWriteBarrier((void**)(&__this->___entries_0), (void*)L_25);
int32_t L_26 = V_0;
__this->___mask_2 = L_26;
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Xml.XmlAttribute::.ctor(System.Xml.XmlName,System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttribute__ctor_m5043E9D85560FDFE80DED6438F97110608F1393B (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___name0, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___doc1;
XmlNode__ctor_m4EBED07EBE4C8D8191BE58A23594E381A8E43DCA(__this, L_0, NULL);
((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0 = (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0), (void*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1 = ___doc1;
NullCheck(L_1);
bool L_2;
L_2 = XmlDocument_get_IsLoading_mD97F2D54DE1BD3B4F8B496F4D8D31C061FA8A52D_inline(L_1, NULL);
if (L_2)
{
goto IL_002c;
}
}
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_3 = ___name0;
NullCheck(L_3);
String_t* L_4;
L_4 = XmlName_get_Prefix_m42E3E78749764ECBE9586AFC0FC3EBFD2B7A2E4E_inline(L_3, NULL);
il2cpp_codegen_runtime_class_init_inline(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var);
XmlDocument_CheckName_m8F3B57903F80A4309ACAF9C301ABA06B63702CA5(L_4, NULL);
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_5 = ___name0;
NullCheck(L_5);
String_t* L_6;
L_6 = XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline(L_5, NULL);
XmlDocument_CheckName_m8F3B57903F80A4309ACAF9C301ABA06B63702CA5(L_6, NULL);
}
IL_002c:
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_7 = ___name0;
NullCheck(L_7);
String_t* L_8;
L_8 = XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline(L_7, NULL);
NullCheck(L_8);
int32_t L_9;
L_9 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_8, NULL);
if (L_9)
{
goto IL_0049;
}
}
{
String_t* L_10;
L_10 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral11834E4FA4D4CDE4FFF1896BC2B609DB8CBF216A)), NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_11 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_11);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_11, L_10, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlAttribute__ctor_m5043E9D85560FDFE80DED6438F97110608F1393B_RuntimeMethod_var)));
}
IL_0049:
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_12 = ___name0;
__this->___name_1 = L_12;
Il2CppCodeGenWriteBarrier((void**)(&__this->___name_1), (void*)L_12);
return;
}
}
// System.Int32 System.Xml.XmlAttribute::get_LocalNameHash()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlAttribute_get_LocalNameHash_m09745CA0C4CEA4D07864D977FF90DEBD43C0AE46 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method)
{
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = __this->___name_1;
NullCheck(L_0);
int32_t L_1;
L_1 = XmlName_get_HashCode_m329A9FEAF3BDEAA5F1F40CB84F7E51E1BDE58B2D_inline(L_0, NULL);
return L_1;
}
}
// System.Void System.Xml.XmlAttribute::.ctor(System.String,System.String,System.String,System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttribute__ctor_m11339257CF537ACBDA1BC5ED16CD45BF0C318971 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___namespaceURI2, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc3, const RuntimeMethod* method)
{
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___doc3;
String_t* L_1 = ___prefix0;
String_t* L_2 = ___localName1;
String_t* L_3 = ___namespaceURI2;
NullCheck(L_0);
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_4;
L_4 = XmlDocument_AddAttrXmlName_mB6D4F6DA50FBE350ABAC30CD5CE97D981506BB28(L_0, L_1, L_2, L_3, (RuntimeObject*)NULL, NULL);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_5 = ___doc3;
XmlAttribute__ctor_m5043E9D85560FDFE80DED6438F97110608F1393B(__this, L_4, L_5, NULL);
return;
}
}
// System.Xml.XmlName System.Xml.XmlAttribute::get_XmlName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* XmlAttribute_get_XmlName_m27554E8E37DD8255E54A68102CE270316933FFB9 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method)
{
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = __this->___name_1;
return L_0;
}
}
// System.Void System.Xml.XmlAttribute::set_XmlName(System.Xml.XmlName)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttribute_set_XmlName_m8D259D5CC4750809EACB5E213333E1E55D8BB6BB (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___value0, const RuntimeMethod* method)
{
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = ___value0;
__this->___name_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___name_1), (void*)L_0);
return;
}
}
// System.Xml.XmlNode System.Xml.XmlAttribute::CloneNode(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlAttribute_CloneNode_m53F14957E83CD8E9A1738F92A8A2BF8C288BF902 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, bool ___deep0, const RuntimeMethod* method)
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* V_0 = NULL;
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0;
L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this);
V_0 = L_0;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1 = V_0;
String_t* L_2;
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(34 /* System.String System.Xml.XmlNode::get_Prefix() */, __this);
String_t* L_3;
L_3 = VirtualFuncInvoker0< String_t* >::Invoke(36 /* System.String System.Xml.XmlNode::get_LocalName() */, __this);
String_t* L_4;
L_4 = VirtualFuncInvoker0< String_t* >::Invoke(33 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, __this);
NullCheck(L_1);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_5;
L_5 = VirtualFuncInvoker3< XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*, String_t*, String_t*, String_t* >::Invoke(69 /* System.Xml.XmlAttribute System.Xml.XmlDocument::CreateAttribute(System.String,System.String,System.String) */, L_1, L_2, L_3, L_4);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_6 = L_5;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_7 = V_0;
NullCheck(L_6);
VirtualActionInvoker3< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, bool >::Invoke(32 /* System.Void System.Xml.XmlNode::CopyChildren(System.Xml.XmlDocument,System.Xml.XmlNode,System.Boolean) */, L_6, L_7, __this, (bool)1);
return L_6;
}
}
// System.Xml.XmlNode System.Xml.XmlAttribute::get_ParentNode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlAttribute_get_ParentNode_mA43C91D5745800819DB09579D4A0011FFAED2985 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method)
{
{
return (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL;
}
}
// System.String System.Xml.XmlAttribute::get_Name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAttribute_get_Name_m97BC4F92BC4CB9D0580EFA1339FD713B6C31DBC2 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method)
{
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = __this->___name_1;
NullCheck(L_0);
String_t* L_1;
L_1 = XmlName_get_Name_m77B33DD36549E6E3E728EA1AD3325E339EC30435(L_0, NULL);
return L_1;
}
}
// System.String System.Xml.XmlAttribute::get_LocalName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAttribute_get_LocalName_mC876CE8B71B1C4F72035B2843E3EE0FACB5FB3A3 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method)
{
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = __this->___name_1;
NullCheck(L_0);
String_t* L_1;
L_1 = XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline(L_0, NULL);
return L_1;
}
}
// System.String System.Xml.XmlAttribute::get_NamespaceURI()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAttribute_get_NamespaceURI_m99F13B6562EDA24EB5A95F97560040DA3575D43A (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method)
{
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = __this->___name_1;
NullCheck(L_0);
String_t* L_1;
L_1 = XmlName_get_NamespaceURI_mCF07F0E78CAF17DDF53DD8CD44C5D415B4E010D1_inline(L_0, NULL);
return L_1;
}
}
// System.String System.Xml.XmlAttribute::get_Prefix()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAttribute_get_Prefix_m0E88F7E1B100855B6383B298EF3D76541F0FF65F (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method)
{
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = __this->___name_1;
NullCheck(L_0);
String_t* L_1;
L_1 = XmlName_get_Prefix_m42E3E78749764ECBE9586AFC0FC3EBFD2B7A2E4E_inline(L_0, NULL);
return L_1;
}
}
// System.Void System.Xml.XmlAttribute::set_Prefix(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttribute_set_Prefix_mD4CA5284EFBBBCDBFCBAC55BDB0C7989F55EF06C (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = __this->___name_1;
NullCheck(L_0);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1;
L_1 = XmlName_get_OwnerDocument_m330FA0574F04486B56352FA1E5F4336890C02A0C_inline(L_0, NULL);
String_t* L_2 = ___value0;
String_t* L_3;
L_3 = VirtualFuncInvoker0< String_t* >::Invoke(36 /* System.String System.Xml.XmlNode::get_LocalName() */, __this);
String_t* L_4;
L_4 = VirtualFuncInvoker0< String_t* >::Invoke(33 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, __this);
RuntimeObject* L_5;
L_5 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(41 /* System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlNode::get_SchemaInfo() */, __this);
NullCheck(L_1);
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_6;
L_6 = XmlDocument_AddAttrXmlName_mB6D4F6DA50FBE350ABAC30CD5CE97D981506BB28(L_1, L_2, L_3, L_4, L_5, NULL);
__this->___name_1 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->___name_1), (void*)L_6);
return;
}
}
// System.Xml.XmlNodeType System.Xml.XmlAttribute::get_NodeType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlAttribute_get_NodeType_m8B876087E6C0E79E6E02A25D0580E678F0D8A14C (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method)
{
{
return (int32_t)(2);
}
}
// System.Xml.XmlDocument System.Xml.XmlAttribute::get_OwnerDocument()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* XmlAttribute_get_OwnerDocument_m557529B3DA0EAF089B89E8D7DB20ECF1E868146C (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method)
{
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = __this->___name_1;
NullCheck(L_0);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1;
L_1 = XmlName_get_OwnerDocument_m330FA0574F04486B56352FA1E5F4336890C02A0C_inline(L_0, NULL);
return L_1;
}
}
// System.String System.Xml.XmlAttribute::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAttribute_get_Value_m3927810F9734B17FB050A7776D6DBD84235385FA (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method)
{
{
String_t* L_0;
L_0 = VirtualFuncInvoker0< String_t* >::Invoke(38 /* System.String System.Xml.XmlNode::get_InnerText() */, __this);
return L_0;
}
}
// System.Void System.Xml.XmlAttribute::set_Value(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttribute_set_Value_m3ACA73B2392D76F58E97EC7975D9538773580A57 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
VirtualActionInvoker1< String_t* >::Invoke(39 /* System.Void System.Xml.XmlNode::set_InnerText(System.String) */, __this, L_0);
return;
}
}
// System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlAttribute::get_SchemaInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlAttribute_get_SchemaInfo_mB185AC8001361729836FD4D85B1246012B7AFC00 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method)
{
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = __this->___name_1;
return L_0;
}
}
// System.Void System.Xml.XmlAttribute::set_InnerText(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttribute_set_InnerText_m8C2905157BABDF6E243AE718524293A57422A9D2 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, String_t* ___value0, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
{
bool L_0;
L_0 = XmlAttribute_PrepareOwnerElementInElementIdAttrMap_m93CEBD56F06BD0F84212A081358EBB5E9453DA18(__this, NULL);
if (!L_0)
{
goto IL_001e;
}
}
{
String_t* L_1;
L_1 = XmlNode_get_InnerText_mC66D119E27E20F4C1E473CB76C8209CDA7262C8D(__this, NULL);
V_0 = L_1;
String_t* L_2 = ___value0;
XmlNode_set_InnerText_mDC4B982D0144C00BCC66CB0A3AE350712B16841D(__this, L_2, NULL);
String_t* L_3 = V_0;
XmlAttribute_ResetOwnerElementInElementIdAttrMap_m054D1FAF550A1B6DC9E061F3F20008686D6F143F(__this, L_3, NULL);
return;
}
IL_001e:
{
String_t* L_4 = ___value0;
XmlNode_set_InnerText_mDC4B982D0144C00BCC66CB0A3AE350712B16841D(__this, L_4, NULL);
return;
}
}
// System.Boolean System.Xml.XmlAttribute::PrepareOwnerElementInElementIdAttrMap()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAttribute_PrepareOwnerElementInElementIdAttrMap_m93CEBD56F06BD0F84212A081358EBB5E9453DA18 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method)
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* V_0 = NULL;
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0;
L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this);
NullCheck(L_0);
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_1;
L_1 = XmlDocument_get_DtdSchemaInfo_mF52E9F32AB9D1914DBC6D91A8277AE843B6E1E6E_inline(L_0, NULL);
if (!L_1)
{
goto IL_002f;
}
}
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_2;
L_2 = VirtualFuncInvoker0< XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* >::Invoke(57 /* System.Xml.XmlElement System.Xml.XmlAttribute::get_OwnerElement() */, __this);
V_0 = L_2;
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_3 = V_0;
if (!L_3)
{
goto IL_002f;
}
}
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_4 = V_0;
NullCheck(L_4);
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_5;
L_5 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(14 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, L_4);
String_t* L_6;
L_6 = VirtualFuncInvoker0< String_t* >::Invoke(34 /* System.String System.Xml.XmlNode::get_Prefix() */, __this);
String_t* L_7;
L_7 = VirtualFuncInvoker0< String_t* >::Invoke(36 /* System.String System.Xml.XmlNode::get_LocalName() */, __this);
NullCheck(L_5);
bool L_8;
L_8 = XmlAttributeCollection_PrepareParentInElementIdAttrMap_m2E7B9A4254641950851BE28E96829160EEAABA04(L_5, L_6, L_7, NULL);
return L_8;
}
IL_002f:
{
return (bool)0;
}
}
// System.Void System.Xml.XmlAttribute::ResetOwnerElementInElementIdAttrMap(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttribute_ResetOwnerElementInElementIdAttrMap_m054D1FAF550A1B6DC9E061F3F20008686D6F143F (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, String_t* ___oldInnerText0, const RuntimeMethod* method)
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* V_0 = NULL;
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_0;
L_0 = VirtualFuncInvoker0< XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* >::Invoke(57 /* System.Xml.XmlElement System.Xml.XmlAttribute::get_OwnerElement() */, __this);
V_0 = L_0;
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_1 = V_0;
if (!L_1)
{
goto IL_001c;
}
}
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_2 = V_0;
NullCheck(L_2);
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_3;
L_3 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(14 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, L_2);
String_t* L_4 = ___oldInnerText0;
String_t* L_5;
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(38 /* System.String System.Xml.XmlNode::get_InnerText() */, __this);
NullCheck(L_3);
XmlAttributeCollection_ResetParentInElementIdAttrMap_m9E06B8B75D985035BA0C9E43A398206B8E7F59FD(L_3, L_4, L_5, NULL);
}
IL_001c:
{
return;
}
}
// System.Boolean System.Xml.XmlAttribute::get_IsContainer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAttribute_get_IsContainer_mC050E80BE513E875B86A80FC718D5318757C752B (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Xml.XmlNode System.Xml.XmlAttribute::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlAttribute_AppendChildForLoad_mEA7C29DCA1CE9A17CD90214F7071F3297C401BD3 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___newChild0, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* V_0 = NULL;
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* V_1 = NULL;
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* V_2 = NULL;
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___doc1;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = ___newChild0;
NullCheck(L_0);
XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_2;
L_2 = XmlDocument_GetInsertEventArgsForLoad_mC008CD74A188F1B0ECBCFFBFD99A5F7B3DAB2661(L_0, L_1, __this, NULL);
V_0 = L_2;
XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_3 = V_0;
if (!L_3)
{
goto IL_0013;
}
}
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_4 = ___doc1;
XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_5 = V_0;
NullCheck(L_4);
VirtualActionInvoker1< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* >::Invoke(51 /* System.Void System.Xml.XmlNode::BeforeEvent(System.Xml.XmlNodeChangedEventArgs) */, L_4, L_5);
}
IL_0013:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6 = ___newChild0;
V_1 = ((XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)CastclassClass((RuntimeObject*)L_6, XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C_il2cpp_TypeInfo_var));
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_7 = __this->___lastChild_2;
if (L_7)
{
goto IL_0039;
}
}
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_8 = V_1;
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_9 = V_1;
NullCheck(L_8);
L_8->___next_1 = L_9;
Il2CppCodeGenWriteBarrier((void**)(&L_8->___next_1), (void*)L_9);
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_10 = V_1;
__this->___lastChild_2 = L_10;
Il2CppCodeGenWriteBarrier((void**)(&__this->___lastChild_2), (void*)L_10);
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_11 = V_1;
NullCheck(L_11);
VirtualActionInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(48 /* System.Void System.Xml.XmlNode::SetParentForLoad(System.Xml.XmlNode) */, L_11, __this);
goto IL_007a;
}
IL_0039:
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_12 = __this->___lastChild_2;
V_2 = L_12;
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_13 = V_1;
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_14 = V_2;
NullCheck(L_14);
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_15 = L_14->___next_1;
NullCheck(L_13);
L_13->___next_1 = L_15;
Il2CppCodeGenWriteBarrier((void**)(&L_13->___next_1), (void*)L_15);
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_16 = V_2;
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_17 = V_1;
NullCheck(L_16);
L_16->___next_1 = L_17;
Il2CppCodeGenWriteBarrier((void**)(&L_16->___next_1), (void*)L_17);
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_18 = V_1;
__this->___lastChild_2 = L_18;
Il2CppCodeGenWriteBarrier((void**)(&__this->___lastChild_2), (void*)L_18);
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_19 = V_2;
NullCheck(L_19);
bool L_20;
L_20 = VirtualFuncInvoker0< bool >::Invoke(55 /* System.Boolean System.Xml.XmlNode::get_IsText() */, L_19);
if (!L_20)
{
goto IL_0073;
}
}
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_21 = V_1;
NullCheck(L_21);
bool L_22;
L_22 = VirtualFuncInvoker0< bool >::Invoke(55 /* System.Boolean System.Xml.XmlNode::get_IsText() */, L_21);
if (!L_22)
{
goto IL_0073;
}
}
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_23 = V_2;
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_24 = V_1;
XmlNode_NestTextNodes_mA22ADE95FF5054D1DE4DC181E13E221F90F4B9A4(L_23, L_24, NULL);
goto IL_007a;
}
IL_0073:
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_25 = V_1;
NullCheck(L_25);
VirtualActionInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(48 /* System.Void System.Xml.XmlNode::SetParentForLoad(System.Xml.XmlNode) */, L_25, __this);
}
IL_007a:
{
XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_26 = V_0;
if (!L_26)
{
goto IL_0084;
}
}
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_27 = ___doc1;
XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_28 = V_0;
NullCheck(L_27);
VirtualActionInvoker1< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* >::Invoke(52 /* System.Void System.Xml.XmlNode::AfterEvent(System.Xml.XmlNodeChangedEventArgs) */, L_27, L_28);
}
IL_0084:
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_29 = V_1;
return L_29;
}
}
// System.Xml.XmlLinkedNode System.Xml.XmlAttribute::get_LastNode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* XmlAttribute_get_LastNode_m391E6CF74AAECF576D1773B7FCDAB01A48B3CCF6 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method)
{
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_0 = __this->___lastChild_2;
return L_0;
}
}
// System.Void System.Xml.XmlAttribute::set_LastNode(System.Xml.XmlLinkedNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttribute_set_LastNode_m443AB3D6EABFD2D03C5C0EC8742BFE106903ED0D (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* ___value0, const RuntimeMethod* method)
{
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_0 = ___value0;
__this->___lastChild_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___lastChild_2), (void*)L_0);
return;
}
}
// System.Boolean System.Xml.XmlAttribute::IsValidChildType(System.Xml.XmlNodeType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAttribute_IsValidChildType_mFF6C95E93EA9F60425B401A070EEFF113035390E (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, int32_t ___type0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___type0;
if ((((int32_t)L_0) == ((int32_t)3)))
{
goto IL_0009;
}
}
{
int32_t L_1 = ___type0;
return (bool)((((int32_t)L_1) == ((int32_t)5))? 1 : 0);
}
IL_0009:
{
return (bool)1;
}
}
// System.Boolean System.Xml.XmlAttribute::get_Specified()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAttribute_get_Specified_mCE057A8C09F0F504E5E3722F85298720E451EFA2 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Xml.XmlNode System.Xml.XmlAttribute::InsertBefore(System.Xml.XmlNode,System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlAttribute_InsertBefore_mF51E26B77E4EB104B339B6283F8179290E4FDB6F (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___newChild0, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___refChild1, const RuntimeMethod* method)
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL;
String_t* V_1 = NULL;
{
bool L_0;
L_0 = XmlAttribute_PrepareOwnerElementInElementIdAttrMap_m93CEBD56F06BD0F84212A081358EBB5E9453DA18(__this, NULL);
if (!L_0)
{
goto IL_0021;
}
}
{
String_t* L_1;
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(38 /* System.String System.Xml.XmlNode::get_InnerText() */, __this);
V_1 = L_1;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = ___newChild0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = ___refChild1;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4;
L_4 = XmlNode_InsertBefore_m30BBB57DC302571F5AD7A73E2519E8AECBDE6085(__this, L_2, L_3, NULL);
V_0 = L_4;
String_t* L_5 = V_1;
XmlAttribute_ResetOwnerElementInElementIdAttrMap_m054D1FAF550A1B6DC9E061F3F20008686D6F143F(__this, L_5, NULL);
goto IL_002a;
}
IL_0021:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6 = ___newChild0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_7 = ___refChild1;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_8;
L_8 = XmlNode_InsertBefore_m30BBB57DC302571F5AD7A73E2519E8AECBDE6085(__this, L_6, L_7, NULL);
V_0 = L_8;
}
IL_002a:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_9 = V_0;
return L_9;
}
}
// System.Xml.XmlNode System.Xml.XmlAttribute::InsertAfter(System.Xml.XmlNode,System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlAttribute_InsertAfter_m0530D37D6104506D276075FEF0963FCD76A98FBA (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___newChild0, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___refChild1, const RuntimeMethod* method)
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL;
String_t* V_1 = NULL;
{
bool L_0;
L_0 = XmlAttribute_PrepareOwnerElementInElementIdAttrMap_m93CEBD56F06BD0F84212A081358EBB5E9453DA18(__this, NULL);
if (!L_0)
{
goto IL_0021;
}
}
{
String_t* L_1;
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(38 /* System.String System.Xml.XmlNode::get_InnerText() */, __this);
V_1 = L_1;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = ___newChild0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = ___refChild1;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4;
L_4 = XmlNode_InsertAfter_m1D0C8DF1B1E3ACB7C7773C1BF626259E04C3E130(__this, L_2, L_3, NULL);
V_0 = L_4;
String_t* L_5 = V_1;
XmlAttribute_ResetOwnerElementInElementIdAttrMap_m054D1FAF550A1B6DC9E061F3F20008686D6F143F(__this, L_5, NULL);
goto IL_002a;
}
IL_0021:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6 = ___newChild0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_7 = ___refChild1;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_8;
L_8 = XmlNode_InsertAfter_m1D0C8DF1B1E3ACB7C7773C1BF626259E04C3E130(__this, L_6, L_7, NULL);
V_0 = L_8;
}
IL_002a:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_9 = V_0;
return L_9;
}
}
// System.Xml.XmlNode System.Xml.XmlAttribute::RemoveChild(System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlAttribute_RemoveChild_m81EEA6827E61E919CF45D3E4157ED643D3B81D18 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___oldChild0, const RuntimeMethod* method)
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL;
String_t* V_1 = NULL;
{
bool L_0;
L_0 = XmlAttribute_PrepareOwnerElementInElementIdAttrMap_m93CEBD56F06BD0F84212A081358EBB5E9453DA18(__this, NULL);
if (!L_0)
{
goto IL_0020;
}
}
{
String_t* L_1;
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(38 /* System.String System.Xml.XmlNode::get_InnerText() */, __this);
V_1 = L_1;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = ___oldChild0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3;
L_3 = XmlNode_RemoveChild_mC3FD98E0F9D7CF77B7CA309E39E67CB5128EFB6D(__this, L_2, NULL);
V_0 = L_3;
String_t* L_4 = V_1;
XmlAttribute_ResetOwnerElementInElementIdAttrMap_m054D1FAF550A1B6DC9E061F3F20008686D6F143F(__this, L_4, NULL);
goto IL_0028;
}
IL_0020:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5 = ___oldChild0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6;
L_6 = XmlNode_RemoveChild_mC3FD98E0F9D7CF77B7CA309E39E67CB5128EFB6D(__this, L_5, NULL);
V_0 = L_6;
}
IL_0028:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_7 = V_0;
return L_7;
}
}
// System.Xml.XmlNode System.Xml.XmlAttribute::PrependChild(System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlAttribute_PrependChild_m361DC4FB58712A8D6DC1F51A7496426A6AF57B9A (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___newChild0, const RuntimeMethod* method)
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL;
String_t* V_1 = NULL;
{
bool L_0;
L_0 = XmlAttribute_PrepareOwnerElementInElementIdAttrMap_m93CEBD56F06BD0F84212A081358EBB5E9453DA18(__this, NULL);
if (!L_0)
{
goto IL_0020;
}
}
{
String_t* L_1;
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(38 /* System.String System.Xml.XmlNode::get_InnerText() */, __this);
V_1 = L_1;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = ___newChild0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3;
L_3 = XmlNode_PrependChild_m918DD10C201557A6BB4D291544B8250F836C2FC9(__this, L_2, NULL);
V_0 = L_3;
String_t* L_4 = V_1;
XmlAttribute_ResetOwnerElementInElementIdAttrMap_m054D1FAF550A1B6DC9E061F3F20008686D6F143F(__this, L_4, NULL);
goto IL_0028;
}
IL_0020:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5 = ___newChild0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6;
L_6 = XmlNode_PrependChild_m918DD10C201557A6BB4D291544B8250F836C2FC9(__this, L_5, NULL);
V_0 = L_6;
}
IL_0028:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_7 = V_0;
return L_7;
}
}
// System.Xml.XmlNode System.Xml.XmlAttribute::AppendChild(System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlAttribute_AppendChild_mF31F0A172D904DEE1DF58B25093DCCF9E0C4CC75 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___newChild0, const RuntimeMethod* method)
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL;
String_t* V_1 = NULL;
{
bool L_0;
L_0 = XmlAttribute_PrepareOwnerElementInElementIdAttrMap_m93CEBD56F06BD0F84212A081358EBB5E9453DA18(__this, NULL);
if (!L_0)
{
goto IL_0020;
}
}
{
String_t* L_1;
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(38 /* System.String System.Xml.XmlNode::get_InnerText() */, __this);
V_1 = L_1;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = ___newChild0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3;
L_3 = XmlNode_AppendChild_mABBDB6DB312AE2C3D643F91CA400745ED4317E61(__this, L_2, NULL);
V_0 = L_3;
String_t* L_4 = V_1;
XmlAttribute_ResetOwnerElementInElementIdAttrMap_m054D1FAF550A1B6DC9E061F3F20008686D6F143F(__this, L_4, NULL);
goto IL_0028;
}
IL_0020:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5 = ___newChild0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6;
L_6 = XmlNode_AppendChild_mABBDB6DB312AE2C3D643F91CA400745ED4317E61(__this, L_5, NULL);
V_0 = L_6;
}
IL_0028:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_7 = V_0;
return L_7;
}
}
// System.Xml.XmlElement System.Xml.XmlAttribute::get_OwnerElement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* XmlAttribute_get_OwnerElement_mBC22346AF9CEAEC1FDD1F4C7F045D356A1CF8C15 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0;
return ((XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)IsInstClass((RuntimeObject*)L_0, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var));
}
}
// System.Void System.Xml.XmlAttribute::set_InnerXml(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttribute_set_InnerXml_m8E7AFB9D60408AF74338F8AE96FD3C347CF9139E (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
VirtualActionInvoker0::Invoke(45 /* System.Void System.Xml.XmlNode::RemoveAll() */, __this);
XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* L_0 = (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D*)il2cpp_codegen_object_new(XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D_il2cpp_TypeInfo_var);
NullCheck(L_0);
XmlLoader__ctor_m388331A1FB63D316FDDF4D7312B6977BFEC1A050(L_0, NULL);
String_t* L_1 = ___value0;
NullCheck(L_0);
XmlLoader_LoadInnerXmlAttribute_mBCE3F2F2B11410937B71BA993E5E1151BE4B6C98(L_0, __this, L_1, NULL);
return;
}
}
// System.Void System.Xml.XmlAttribute::WriteTo(System.Xml.XmlWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttribute_WriteTo_mD4DF594D7278F46E44DF3CC46453309F3D270578 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___w0, const RuntimeMethod* method)
{
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = ___w0;
String_t* L_1;
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(34 /* System.String System.Xml.XmlNode::get_Prefix() */, __this);
String_t* L_2;
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(36 /* System.String System.Xml.XmlNode::get_LocalName() */, __this);
String_t* L_3;
L_3 = VirtualFuncInvoker0< String_t* >::Invoke(33 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, __this);
NullCheck(L_0);
VirtualActionInvoker3< String_t*, String_t*, String_t* >::Invoke(12 /* System.Void System.Xml.XmlWriter::WriteStartAttribute(System.String,System.String,System.String) */, L_0, L_1, L_2, L_3);
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_4 = ___w0;
VirtualActionInvoker1< XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* >::Invoke(44 /* System.Void System.Xml.XmlNode::WriteContentTo(System.Xml.XmlWriter) */, __this, L_4);
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_5 = ___w0;
NullCheck(L_5);
VirtualActionInvoker0::Invoke(13 /* System.Void System.Xml.XmlWriter::WriteEndAttribute() */, L_5);
return;
}
}
// System.Void System.Xml.XmlAttribute::WriteContentTo(System.Xml.XmlWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttribute_WriteContentTo_m153693553E5187BC5E9B32B1C51973DA7CC100A1 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___w0, const RuntimeMethod* method)
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL;
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0;
L_0 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(16 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, __this);
V_0 = L_0;
goto IL_0017;
}
IL_0009:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = V_0;
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_2 = ___w0;
NullCheck(L_1);
VirtualActionInvoker1< XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* >::Invoke(43 /* System.Void System.Xml.XmlNode::WriteTo(System.Xml.XmlWriter) */, L_1, L_2);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = V_0;
NullCheck(L_3);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4;
L_4 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(13 /* System.Xml.XmlNode System.Xml.XmlNode::get_NextSibling() */, L_3);
V_0 = L_4;
}
IL_0017:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5 = V_0;
if (L_5)
{
goto IL_0009;
}
}
{
return;
}
}
// System.String System.Xml.XmlAttribute::get_BaseURI()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAttribute_get_BaseURI_mA86BC6FAC60E8ECBBC952DAA3ED7C5EE7D715EE6 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_0;
L_0 = VirtualFuncInvoker0< XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* >::Invoke(57 /* System.Xml.XmlElement System.Xml.XmlAttribute::get_OwnerElement() */, __this);
if (!L_0)
{
goto IL_0014;
}
}
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_1;
L_1 = VirtualFuncInvoker0< XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* >::Invoke(57 /* System.Xml.XmlElement System.Xml.XmlAttribute::get_OwnerElement() */, __this);
NullCheck(L_1);
String_t* L_2;
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(42 /* System.String System.Xml.XmlNode::get_BaseURI() */, L_1);
return L_2;
}
IL_0014:
{
String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_3;
}
}
// System.Void System.Xml.XmlAttribute::SetParent(System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttribute_SetParent_m6BEE6D90F291164E98E19304B6CB55578606CDB0 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___node0, const RuntimeMethod* method)
{
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___node0;
((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0), (void*)L_0);
return;
}
}
// System.Xml.XmlSpace System.Xml.XmlAttribute::get_XmlSpace()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlAttribute_get_XmlSpace_mD41668A1C4C422F0C65C6F71470F24094C7F168F (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method)
{
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_0;
L_0 = VirtualFuncInvoker0< XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* >::Invoke(57 /* System.Xml.XmlElement System.Xml.XmlAttribute::get_OwnerElement() */, __this);
if (!L_0)
{
goto IL_0014;
}
}
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_1;
L_1 = VirtualFuncInvoker0< XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* >::Invoke(57 /* System.Xml.XmlElement System.Xml.XmlAttribute::get_OwnerElement() */, __this);
NullCheck(L_1);
int32_t L_2;
L_2 = VirtualFuncInvoker0< int32_t >::Invoke(53 /* System.Xml.XmlSpace System.Xml.XmlNode::get_XmlSpace() */, L_1);
return L_2;
}
IL_0014:
{
return (int32_t)(0);
}
}
// System.String System.Xml.XmlAttribute::get_XmlLang()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAttribute_get_XmlLang_mAC924BF277BF141FEA1275071D3A06E039006EDF (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_0;
L_0 = VirtualFuncInvoker0< XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* >::Invoke(57 /* System.Xml.XmlElement System.Xml.XmlAttribute::get_OwnerElement() */, __this);
if (!L_0)
{
goto IL_0014;
}
}
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_1;
L_1 = VirtualFuncInvoker0< XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* >::Invoke(57 /* System.Xml.XmlElement System.Xml.XmlAttribute::get_OwnerElement() */, __this);
NullCheck(L_1);
String_t* L_2;
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(54 /* System.String System.Xml.XmlNode::get_XmlLang() */, L_1);
return L_2;
}
IL_0014:
{
String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_3;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Xml.XmlAttributeCollection::.ctor(System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributeCollection__ctor_m8308D817C07EF858304166193742564329293982 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___parent0, const RuntimeMethod* method)
{
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___parent0;
XmlNamedNodeMap__ctor_mA91F36D1CB05380C6F5E60F31062962B6DE2FF08(__this, L_0, NULL);
return;
}
}
// System.Xml.XmlAttribute System.Xml.XmlAttributeCollection::get_ItemOf(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlAttributeCollection_get_ItemOf_m8F968C39C03DFEB9998B2122F4A26B76B1DB2EDB (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, int32_t ___i0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_0 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* L_0 = (&((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___nodes_1);
int32_t L_1 = ___i0;
RuntimeObject* L_2;
L_2 = SmallXmlNodeList_get_Item_mFE828A47A297981D034EFC9244E53B3D34FC9576(L_0, L_1, NULL);
V_0 = ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_2, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var));
goto IL_0025;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0014;
}
throw e;
}
CATCH_0014:
{// begin catch(System.ArgumentOutOfRangeException)
String_t* L_3;
L_3 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3C67F6F3D5AD1DF5DD1E3B7F8583419767796154)), NULL);
IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82* L_4 = (IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82_il2cpp_TypeInfo_var)));
NullCheck(L_4);
IndexOutOfRangeException__ctor_mFD06819F05B815BE2D6E826D4E04F4C449D0A425(L_4, L_3, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlAttributeCollection_get_ItemOf_m8F968C39C03DFEB9998B2122F4A26B76B1DB2EDB_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_0025:
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_5 = V_0;
return L_5;
}
}
// System.Xml.XmlAttribute System.Xml.XmlAttributeCollection::get_ItemOf(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlAttributeCollection_get_ItemOf_mE6997455F03EC8A99F4ECAFF32E4F212BE70D7CF (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_2 = NULL;
{
String_t* L_0 = ___name0;
int32_t L_1;
L_1 = XmlName_GetHashCode_m972577ACE7EF83D4ADE98E056F1A05DD11A789F1(L_0, NULL);
V_0 = L_1;
V_1 = 0;
goto IL_003a;
}
IL_000b:
{
SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* L_2 = (&((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___nodes_1);
int32_t L_3 = V_1;
RuntimeObject* L_4;
L_4 = SmallXmlNodeList_get_Item_mFE828A47A297981D034EFC9244E53B3D34FC9576(L_2, L_3, NULL);
V_2 = ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_4, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var));
int32_t L_5 = V_0;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_6 = V_2;
NullCheck(L_6);
int32_t L_7;
L_7 = XmlAttribute_get_LocalNameHash_m09745CA0C4CEA4D07864D977FF90DEBD43C0AE46(L_6, NULL);
if ((!(((uint32_t)L_5) == ((uint32_t)L_7))))
{
goto IL_0036;
}
}
{
String_t* L_8 = ___name0;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_9 = V_2;
NullCheck(L_9);
String_t* L_10;
L_10 = VirtualFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.XmlNode::get_Name() */, L_9);
bool L_11;
L_11 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_8, L_10, NULL);
if (!L_11)
{
goto IL_0036;
}
}
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_12 = V_2;
return L_12;
}
IL_0036:
{
int32_t L_13 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_13, 1));
}
IL_003a:
{
int32_t L_14 = V_1;
SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* L_15 = (&((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___nodes_1);
int32_t L_16;
L_16 = SmallXmlNodeList_get_Count_m79F61C89FC8ABD73BCB56938310461EFF1DF14BF(L_15, NULL);
if ((((int32_t)L_14) < ((int32_t)L_16)))
{
goto IL_000b;
}
}
{
return (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)NULL;
}
}
// System.Xml.XmlAttribute System.Xml.XmlAttributeCollection::get_ItemOf(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlAttributeCollection_get_ItemOf_m245B54FBA90E7BD011E098583819823AF7E06158 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, String_t* ___localName0, String_t* ___namespaceURI1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_2 = NULL;
{
String_t* L_0 = ___localName0;
int32_t L_1;
L_1 = XmlName_GetHashCode_m972577ACE7EF83D4ADE98E056F1A05DD11A789F1(L_0, NULL);
V_0 = L_1;
V_1 = 0;
goto IL_0048;
}
IL_000b:
{
SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* L_2 = (&((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___nodes_1);
int32_t L_3 = V_1;
RuntimeObject* L_4;
L_4 = SmallXmlNodeList_get_Item_mFE828A47A297981D034EFC9244E53B3D34FC9576(L_2, L_3, NULL);
V_2 = ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_4, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var));
int32_t L_5 = V_0;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_6 = V_2;
NullCheck(L_6);
int32_t L_7;
L_7 = XmlAttribute_get_LocalNameHash_m09745CA0C4CEA4D07864D977FF90DEBD43C0AE46(L_6, NULL);
if ((!(((uint32_t)L_5) == ((uint32_t)L_7))))
{
goto IL_0044;
}
}
{
String_t* L_8 = ___localName0;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_9 = V_2;
NullCheck(L_9);
String_t* L_10;
L_10 = VirtualFuncInvoker0< String_t* >::Invoke(36 /* System.String System.Xml.XmlNode::get_LocalName() */, L_9);
bool L_11;
L_11 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_8, L_10, NULL);
if (!L_11)
{
goto IL_0044;
}
}
{
String_t* L_12 = ___namespaceURI1;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_13 = V_2;
NullCheck(L_13);
String_t* L_14;
L_14 = VirtualFuncInvoker0< String_t* >::Invoke(33 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_13);
bool L_15;
L_15 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_12, L_14, NULL);
if (!L_15)
{
goto IL_0044;
}
}
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_16 = V_2;
return L_16;
}
IL_0044:
{
int32_t L_17 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_17, 1));
}
IL_0048:
{
int32_t L_18 = V_1;
SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* L_19 = (&((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___nodes_1);
int32_t L_20;
L_20 = SmallXmlNodeList_get_Count_m79F61C89FC8ABD73BCB56938310461EFF1DF14BF(L_19, NULL);
if ((((int32_t)L_18) < ((int32_t)L_20)))
{
goto IL_000b;
}
}
{
return (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)NULL;
}
}
// System.Int32 System.Xml.XmlAttributeCollection::FindNodeOffsetNS(System.Xml.XmlAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlAttributeCollection_FindNodeOffsetNS_m04B3C64C2AFCDF3B66240C178B0A5233E6649A40 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___node0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_1 = NULL;
{
V_0 = 0;
goto IL_0050;
}
IL_0004:
{
SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* L_0 = (&((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___nodes_1);
int32_t L_1 = V_0;
RuntimeObject* L_2;
L_2 = SmallXmlNodeList_get_Item_mFE828A47A297981D034EFC9244E53B3D34FC9576(L_0, L_1, NULL);
V_1 = ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_2, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var));
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_3 = V_1;
NullCheck(L_3);
int32_t L_4;
L_4 = XmlAttribute_get_LocalNameHash_m09745CA0C4CEA4D07864D977FF90DEBD43C0AE46(L_3, NULL);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_5 = ___node0;
NullCheck(L_5);
int32_t L_6;
L_6 = XmlAttribute_get_LocalNameHash_m09745CA0C4CEA4D07864D977FF90DEBD43C0AE46(L_5, NULL);
if ((!(((uint32_t)L_4) == ((uint32_t)L_6))))
{
goto IL_004c;
}
}
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_7 = V_1;
NullCheck(L_7);
String_t* L_8;
L_8 = VirtualFuncInvoker0< String_t* >::Invoke(36 /* System.String System.Xml.XmlNode::get_LocalName() */, L_7);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_9 = ___node0;
NullCheck(L_9);
String_t* L_10;
L_10 = VirtualFuncInvoker0< String_t* >::Invoke(36 /* System.String System.Xml.XmlNode::get_LocalName() */, L_9);
bool L_11;
L_11 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_8, L_10, NULL);
if (!L_11)
{
goto IL_004c;
}
}
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_12 = V_1;
NullCheck(L_12);
String_t* L_13;
L_13 = VirtualFuncInvoker0< String_t* >::Invoke(33 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_12);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_14 = ___node0;
NullCheck(L_14);
String_t* L_15;
L_15 = VirtualFuncInvoker0< String_t* >::Invoke(33 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_14);
bool L_16;
L_16 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_13, L_15, NULL);
if (!L_16)
{
goto IL_004c;
}
}
{
int32_t L_17 = V_0;
return L_17;
}
IL_004c:
{
int32_t L_18 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_18, 1));
}
IL_0050:
{
int32_t L_19 = V_0;
SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* L_20 = (&((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___nodes_1);
int32_t L_21;
L_21 = SmallXmlNodeList_get_Count_m79F61C89FC8ABD73BCB56938310461EFF1DF14BF(L_20, NULL);
if ((((int32_t)L_19) < ((int32_t)L_21)))
{
goto IL_0004;
}
}
{
return (-1);
}
}
// System.Xml.XmlNode System.Xml.XmlAttributeCollection::SetNamedItem(System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlAttributeCollection_SetNamedItem_m6FD982A7ED3D6A1148184B682A1382BFFFE25C2B (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___node0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___node0;
if (!L_0)
{
goto IL_001b;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = ___node0;
if (((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)IsInstClass((RuntimeObject*)L_1, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var)))
{
goto IL_001b;
}
}
{
String_t* L_2;
L_2 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD5CF37169D518173369F326C4BECA4FF192E3DF4)), NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_3 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_3);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_3, L_2, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlAttributeCollection_SetNamedItem_m6FD982A7ED3D6A1148184B682A1382BFFFE25C2B_RuntimeMethod_var)));
}
IL_001b:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4 = ___node0;
NullCheck(L_4);
String_t* L_5;
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(36 /* System.String System.Xml.XmlNode::get_LocalName() */, L_4);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6 = ___node0;
NullCheck(L_6);
String_t* L_7;
L_7 = VirtualFuncInvoker0< String_t* >::Invoke(33 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_6);
int32_t L_8;
L_8 = XmlNamedNodeMap_FindNodeOffset_mC74472DEDF90B693B1BB71E3B136CD32854E0A66(__this, L_5, L_7, NULL);
V_0 = L_8;
int32_t L_9 = V_0;
if ((!(((uint32_t)L_9) == ((uint32_t)(-1)))))
{
goto IL_003f;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_10 = ___node0;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_11;
L_11 = XmlAttributeCollection_InternalAppendAttribute_m4F65B9C065CD96947359F97184962FD480989BCB(__this, ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_10, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var)), NULL);
return L_11;
}
IL_003f:
{
int32_t L_12 = V_0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_13;
L_13 = XmlNamedNodeMap_RemoveNodeAt_mA1F6B64903412EDC18F19D1CCE1D890207C6FEF3(__this, L_12, NULL);
int32_t L_14 = V_0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_15 = ___node0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_16;
L_16 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, int32_t, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(12 /* System.Xml.XmlNode System.Xml.XmlNamedNodeMap::InsertNodeAt(System.Int32,System.Xml.XmlNode) */, __this, L_14, L_15);
return L_13;
}
}
// System.Xml.XmlAttribute System.Xml.XmlAttributeCollection::Append(System.Xml.XmlAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlAttributeCollection_Append_mF5AFDC3C4547DA089353B76241A5B46437CA8484 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___node0, const RuntimeMethod* method)
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* V_0 = NULL;
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_0 = ___node0;
NullCheck(L_0);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1;
L_1 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, L_0);
V_0 = L_1;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_2 = V_0;
if (!L_2)
{
goto IL_0012;
}
}
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_3 = V_0;
NullCheck(L_3);
bool L_4;
L_4 = XmlDocument_get_IsLoading_mD97F2D54DE1BD3B4F8B496F4D8D31C061FA8A52D_inline(L_3, NULL);
if (L_4)
{
goto IL_004c;
}
}
IL_0012:
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_5 = V_0;
if (!L_5)
{
goto IL_0033;
}
}
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_6 = V_0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_7 = ((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___parent_0;
NullCheck(L_7);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_8;
L_8 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, L_7);
if ((((RuntimeObject*)(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B*)L_6) == ((RuntimeObject*)(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B*)L_8)))
{
goto IL_0033;
}
}
{
String_t* L_9;
L_9 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral10E3A7873DD45D61AB6068175777B54A049F04A1)), NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_10 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_10);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_10, L_9, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlAttributeCollection_Append_mF5AFDC3C4547DA089353B76241A5B46437CA8484_RuntimeMethod_var)));
}
IL_0033:
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_11 = ___node0;
NullCheck(L_11);
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_12;
L_12 = VirtualFuncInvoker0< XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* >::Invoke(57 /* System.Xml.XmlElement System.Xml.XmlAttribute::get_OwnerElement() */, L_11);
if (!L_12)
{
goto IL_0042;
}
}
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_13 = ___node0;
XmlAttributeCollection_Detach_m1CF27E782F026A299CDBFB3CFCA08F4B615DF4B0(__this, L_13, NULL);
}
IL_0042:
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_14 = ___node0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_15;
L_15 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(9 /* System.Xml.XmlNode System.Xml.XmlNamedNodeMap::AddNode(System.Xml.XmlNode) */, __this, L_14);
goto IL_005c;
}
IL_004c:
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_16 = ___node0;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_17 = V_0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_18;
L_18 = XmlNamedNodeMap_AddNodeForLoad_m95A9C1624ACF142E0FD29FC4B572A750F5D600AF(__this, L_16, L_17, NULL);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_19 = ___node0;
XmlAttributeCollection_InsertParentIntoElementIdAttrMap_mE1B11EE0246D167AA4CB81F8BC7C0D5C00DFFBB9(__this, L_19, NULL);
}
IL_005c:
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_20 = ___node0;
return L_20;
}
}
// System.Xml.XmlAttribute System.Xml.XmlAttributeCollection::Remove(System.Xml.XmlAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlAttributeCollection_Remove_m9E8FF71B36C641EAB4EE1F08F6344DFB1E380235 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___node0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* L_0 = (&((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___nodes_1);
int32_t L_1;
L_1 = SmallXmlNodeList_get_Count_m79F61C89FC8ABD73BCB56938310461EFF1DF14BF(L_0, NULL);
V_0 = L_1;
V_1 = 0;
goto IL_002d;
}
IL_0010:
{
SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* L_2 = (&((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___nodes_1);
int32_t L_3 = V_1;
RuntimeObject* L_4;
L_4 = SmallXmlNodeList_get_Item_mFE828A47A297981D034EFC9244E53B3D34FC9576(L_2, L_3, NULL);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_5 = ___node0;
if ((!(((RuntimeObject*)(RuntimeObject*)L_4) == ((RuntimeObject*)(XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)L_5))))
{
goto IL_0029;
}
}
{
int32_t L_6 = V_1;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_7;
L_7 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, int32_t >::Invoke(11 /* System.Xml.XmlNode System.Xml.XmlNamedNodeMap::RemoveNodeAt(System.Int32) */, __this, L_6);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_8 = ___node0;
return L_8;
}
IL_0029:
{
int32_t L_9 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_9, 1));
}
IL_002d:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_0010;
}
}
{
return (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)NULL;
}
}
// System.Xml.XmlAttribute System.Xml.XmlAttributeCollection::RemoveAt(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlAttributeCollection_RemoveAt_m583E3956863E0E138940CEA8231B8491743785F0 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, int32_t ___i0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___i0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_000d;
}
}
{
int32_t L_1 = ___i0;
int32_t L_2;
L_2 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 System.Xml.XmlNamedNodeMap::get_Count() */, __this);
if ((((int32_t)L_1) < ((int32_t)L_2)))
{
goto IL_000f;
}
}
IL_000d:
{
return (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)NULL;
}
IL_000f:
{
int32_t L_3 = ___i0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4;
L_4 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, int32_t >::Invoke(11 /* System.Xml.XmlNode System.Xml.XmlNamedNodeMap::RemoveNodeAt(System.Int32) */, __this, L_3);
return ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_4, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var));
}
}
// System.Void System.Xml.XmlAttributeCollection::RemoveAll()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributeCollection_RemoveAll_mF68383A7E9C4F688F73A27EDCBC926799E66DE47 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0;
L_0 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 System.Xml.XmlNamedNodeMap::get_Count() */, __this);
V_0 = L_0;
goto IL_0015;
}
IL_0009:
{
int32_t L_1 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_1, 1));
int32_t L_2 = V_0;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_3;
L_3 = XmlAttributeCollection_RemoveAt_m583E3956863E0E138940CEA8231B8491743785F0(__this, L_2, NULL);
}
IL_0015:
{
int32_t L_4 = V_0;
if ((((int32_t)L_4) > ((int32_t)0)))
{
goto IL_0009;
}
}
{
return;
}
}
// System.Void System.Xml.XmlAttributeCollection::System.Collections.ICollection.CopyTo(System.Array,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributeCollection_System_Collections_ICollection_CopyTo_mCE6F6C659719B2C8B224A881784DC1773895ACCE (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, RuntimeArray* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
V_0 = 0;
int32_t L_0;
L_0 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 System.Xml.XmlNamedNodeMap::get_Count() */, __this);
V_1 = L_0;
goto IL_0027;
}
IL_000b:
{
RuntimeArray* L_1 = ___array0;
SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* L_2 = (&((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___nodes_1);
int32_t L_3 = V_0;
RuntimeObject* L_4;
L_4 = SmallXmlNodeList_get_Item_mFE828A47A297981D034EFC9244E53B3D34FC9576(L_2, L_3, NULL);
int32_t L_5 = ___index1;
NullCheck(L_1);
Array_SetValue_mE9507B366ED84E91E92BF32649D36916F96C67B8(L_1, L_4, L_5, NULL);
int32_t L_6 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_6, 1));
int32_t L_7 = ___index1;
___index1 = ((int32_t)il2cpp_codegen_add(L_7, 1));
}
IL_0027:
{
int32_t L_8 = V_0;
int32_t L_9 = V_1;
if ((((int32_t)L_8) < ((int32_t)L_9)))
{
goto IL_000b;
}
}
{
return;
}
}
// System.Boolean System.Xml.XmlAttributeCollection::System.Collections.ICollection.get_IsSynchronized()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAttributeCollection_System_Collections_ICollection_get_IsSynchronized_m3622FAFE54ADE051023F578B1EF1D0D0AE4C7B74 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Object System.Xml.XmlAttributeCollection::System.Collections.ICollection.get_SyncRoot()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlAttributeCollection_System_Collections_ICollection_get_SyncRoot_m3BC4AC72765846A98383A5FF08A7D747F5E588BC (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, const RuntimeMethod* method)
{
{
return __this;
}
}
// System.Int32 System.Xml.XmlAttributeCollection::System.Collections.ICollection.get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlAttributeCollection_System_Collections_ICollection_get_Count_m70C89B8FC98B2EA13CFA2CBA59BE40723D8E8014 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = XmlNamedNodeMap_get_Count_m383C4A91707F8FE7D905507CD35A043A5A7CFF29(__this, NULL);
return L_0;
}
}
// System.Xml.XmlNode System.Xml.XmlAttributeCollection::AddNode(System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlAttributeCollection_AddNode_mB24F8CE4497E6991D673ADE92643A3B943FA1732 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___node0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___node0;
int32_t L_1;
L_1 = XmlAttributeCollection_RemoveDuplicateAttribute_m22D27663607A8A33332FA60A4FE2A0D122AE3F48(__this, ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_0, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var)), NULL);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = ___node0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3;
L_3 = XmlNamedNodeMap_AddNode_m8312C3D9AAF475E11F679C7165079360BD04FA6D(__this, L_2, NULL);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4 = ___node0;
XmlAttributeCollection_InsertParentIntoElementIdAttrMap_mE1B11EE0246D167AA4CB81F8BC7C0D5C00DFFBB9(__this, ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_4, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var)), NULL);
return L_3;
}
}
// System.Xml.XmlNode System.Xml.XmlAttributeCollection::InsertNodeAt(System.Int32,System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlAttributeCollection_InsertNodeAt_mDF6A4A42AEF430CFCFB98A2667F5F24883872BE8 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, int32_t ___i0, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___node1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___i0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = ___node1;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2;
L_2 = XmlNamedNodeMap_InsertNodeAt_m72074E17CA4EC55CE99997C5BC15681BECBA0ACE(__this, L_0, L_1, NULL);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = ___node1;
XmlAttributeCollection_InsertParentIntoElementIdAttrMap_mE1B11EE0246D167AA4CB81F8BC7C0D5C00DFFBB9(__this, ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_3, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var)), NULL);
return L_2;
}
}
// System.Xml.XmlNode System.Xml.XmlAttributeCollection::RemoveNodeAt(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlAttributeCollection_RemoveNodeAt_m8F9E6BC143D009DBC4D1BF87B60CB78AE27DD15A (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, int32_t ___i0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_1 = NULL;
{
int32_t L_0 = ___i0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1;
L_1 = XmlNamedNodeMap_RemoveNodeAt_mA1F6B64903412EDC18F19D1CCE1D890207C6FEF3(__this, L_0, NULL);
V_0 = L_1;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = V_0;
XmlAttributeCollection_RemoveParentFromElementIdAttrMap_m40FD15B914F888F0EB42B6E35AD9DD95BE5C28BE(__this, ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_2, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var)), NULL);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = ((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___parent_0;
NullCheck(L_3);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_4;
L_4 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, L_3);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5 = ((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___parent_0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6 = V_0;
NullCheck(L_6);
String_t* L_7;
L_7 = VirtualFuncInvoker0< String_t* >::Invoke(34 /* System.String System.Xml.XmlNode::get_Prefix() */, L_6);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_8 = V_0;
NullCheck(L_8);
String_t* L_9;
L_9 = VirtualFuncInvoker0< String_t* >::Invoke(36 /* System.String System.Xml.XmlNode::get_LocalName() */, L_8);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_10 = V_0;
NullCheck(L_10);
String_t* L_11;
L_11 = VirtualFuncInvoker0< String_t* >::Invoke(33 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_10);
NullCheck(L_4);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_12;
L_12 = XmlDocument_GetDefaultAttribute_m09254F3903D8971371770B085DEB0C8E4B879D96(L_4, ((XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)CastclassClass((RuntimeObject*)L_5, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var)), L_7, L_9, L_11, NULL);
V_1 = L_12;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_13 = V_1;
if (!L_13)
{
goto IL_004e;
}
}
{
int32_t L_14 = ___i0;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_15 = V_1;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_16;
L_16 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, int32_t, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(12 /* System.Xml.XmlNode System.Xml.XmlNamedNodeMap::InsertNodeAt(System.Int32,System.Xml.XmlNode) */, __this, L_14, L_15);
}
IL_004e:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_17 = V_0;
return L_17;
}
}
// System.Void System.Xml.XmlAttributeCollection::Detach(System.Xml.XmlAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributeCollection_Detach_m1CF27E782F026A299CDBFB3CFCA08F4B615DF4B0 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___attr0, const RuntimeMethod* method)
{
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_0 = ___attr0;
NullCheck(L_0);
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_1;
L_1 = VirtualFuncInvoker0< XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* >::Invoke(57 /* System.Xml.XmlElement System.Xml.XmlAttribute::get_OwnerElement() */, L_0);
NullCheck(L_1);
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_2;
L_2 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(14 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, L_1);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_3 = ___attr0;
NullCheck(L_2);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_4;
L_4 = XmlAttributeCollection_Remove_m9E8FF71B36C641EAB4EE1F08F6344DFB1E380235(L_2, L_3, NULL);
return;
}
}
// System.Void System.Xml.XmlAttributeCollection::InsertParentIntoElementIdAttrMap(System.Xml.XmlAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributeCollection_InsertParentIntoElementIdAttrMap_mE1B11EE0246D167AA4CB81F8BC7C0D5C00DFFBB9 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___attr0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* V_0 = NULL;
XmlName_t0704430D24D202146901D342E34D878246E14F33* V_1 = NULL;
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___parent_0;
V_0 = ((XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)IsInstClass((RuntimeObject*)L_0, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var));
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_1 = V_0;
if (!L_1)
{
goto IL_007e;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = ((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___parent_0;
NullCheck(L_2);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_3;
L_3 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, L_2);
if (L_3)
{
goto IL_001d;
}
}
{
return;
}
IL_001d:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4 = ((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___parent_0;
NullCheck(L_4);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_5;
L_5 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, L_4);
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_6 = V_0;
NullCheck(L_6);
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_7;
L_7 = XmlElement_get_XmlName_mA93482D1053CABDD02D7E3B23EBA56F74904101D_inline(L_6, NULL);
NullCheck(L_5);
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_8;
L_8 = XmlDocument_GetIDInfoByElement_mF4F7DDBFA3126D06D4AA526B1536BEC20D677AC8(L_5, L_7, NULL);
V_1 = L_8;
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_9 = V_1;
if (!L_9)
{
goto IL_007e;
}
}
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_10 = V_1;
NullCheck(L_10);
String_t* L_11;
L_11 = XmlName_get_Prefix_m42E3E78749764ECBE9586AFC0FC3EBFD2B7A2E4E_inline(L_10, NULL);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_12 = ___attr0;
NullCheck(L_12);
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_13;
L_13 = XmlAttribute_get_XmlName_m27554E8E37DD8255E54A68102CE270316933FFB9_inline(L_12, NULL);
NullCheck(L_13);
String_t* L_14;
L_14 = XmlName_get_Prefix_m42E3E78749764ECBE9586AFC0FC3EBFD2B7A2E4E_inline(L_13, NULL);
bool L_15;
L_15 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_11, L_14, NULL);
if (!L_15)
{
goto IL_007e;
}
}
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_16 = V_1;
NullCheck(L_16);
String_t* L_17;
L_17 = XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline(L_16, NULL);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_18 = ___attr0;
NullCheck(L_18);
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_19;
L_19 = XmlAttribute_get_XmlName_m27554E8E37DD8255E54A68102CE270316933FFB9_inline(L_18, NULL);
NullCheck(L_19);
String_t* L_20;
L_20 = XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline(L_19, NULL);
bool L_21;
L_21 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_17, L_20, NULL);
if (!L_21)
{
goto IL_007e;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_22 = ((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___parent_0;
NullCheck(L_22);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_23;
L_23 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, L_22);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_24 = ___attr0;
NullCheck(L_24);
String_t* L_25;
L_25 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_24);
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_26 = V_0;
NullCheck(L_23);
XmlDocument_AddElementWithId_m179458DD48014AD4C76126306A42F49A98433187(L_23, L_25, L_26, NULL);
}
IL_007e:
{
return;
}
}
// System.Void System.Xml.XmlAttributeCollection::RemoveParentFromElementIdAttrMap(System.Xml.XmlAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributeCollection_RemoveParentFromElementIdAttrMap_m40FD15B914F888F0EB42B6E35AD9DD95BE5C28BE (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___attr0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* V_0 = NULL;
XmlName_t0704430D24D202146901D342E34D878246E14F33* V_1 = NULL;
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___parent_0;
V_0 = ((XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)IsInstClass((RuntimeObject*)L_0, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var));
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_1 = V_0;
if (!L_1)
{
goto IL_007e;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = ((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___parent_0;
NullCheck(L_2);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_3;
L_3 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, L_2);
if (L_3)
{
goto IL_001d;
}
}
{
return;
}
IL_001d:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4 = ((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___parent_0;
NullCheck(L_4);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_5;
L_5 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, L_4);
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_6 = V_0;
NullCheck(L_6);
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_7;
L_7 = XmlElement_get_XmlName_mA93482D1053CABDD02D7E3B23EBA56F74904101D_inline(L_6, NULL);
NullCheck(L_5);
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_8;
L_8 = XmlDocument_GetIDInfoByElement_mF4F7DDBFA3126D06D4AA526B1536BEC20D677AC8(L_5, L_7, NULL);
V_1 = L_8;
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_9 = V_1;
if (!L_9)
{
goto IL_007e;
}
}
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_10 = V_1;
NullCheck(L_10);
String_t* L_11;
L_11 = XmlName_get_Prefix_m42E3E78749764ECBE9586AFC0FC3EBFD2B7A2E4E_inline(L_10, NULL);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_12 = ___attr0;
NullCheck(L_12);
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_13;
L_13 = XmlAttribute_get_XmlName_m27554E8E37DD8255E54A68102CE270316933FFB9_inline(L_12, NULL);
NullCheck(L_13);
String_t* L_14;
L_14 = XmlName_get_Prefix_m42E3E78749764ECBE9586AFC0FC3EBFD2B7A2E4E_inline(L_13, NULL);
bool L_15;
L_15 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_11, L_14, NULL);
if (!L_15)
{
goto IL_007e;
}
}
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_16 = V_1;
NullCheck(L_16);
String_t* L_17;
L_17 = XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline(L_16, NULL);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_18 = ___attr0;
NullCheck(L_18);
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_19;
L_19 = XmlAttribute_get_XmlName_m27554E8E37DD8255E54A68102CE270316933FFB9_inline(L_18, NULL);
NullCheck(L_19);
String_t* L_20;
L_20 = XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline(L_19, NULL);
bool L_21;
L_21 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_17, L_20, NULL);
if (!L_21)
{
goto IL_007e;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_22 = ((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___parent_0;
NullCheck(L_22);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_23;
L_23 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, L_22);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_24 = ___attr0;
NullCheck(L_24);
String_t* L_25;
L_25 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_24);
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_26 = V_0;
NullCheck(L_23);
XmlDocument_RemoveElementWithId_mD930DEA6A023E00A7D376D2F5B7D5283414ECE03(L_23, L_25, L_26, NULL);
}
IL_007e:
{
return;
}
}
// System.Int32 System.Xml.XmlAttributeCollection::RemoveDuplicateAttribute(System.Xml.XmlAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlAttributeCollection_RemoveDuplicateAttribute_m22D27663607A8A33332FA60A4FE2A0D122AE3F48 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___attr0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_1 = NULL;
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_0 = ___attr0;
NullCheck(L_0);
String_t* L_1;
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(36 /* System.String System.Xml.XmlNode::get_LocalName() */, L_0);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_2 = ___attr0;
NullCheck(L_2);
String_t* L_3;
L_3 = VirtualFuncInvoker0< String_t* >::Invoke(33 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_2);
int32_t L_4;
L_4 = XmlNamedNodeMap_FindNodeOffset_mC74472DEDF90B693B1BB71E3B136CD32854E0A66(__this, L_1, L_3, NULL);
V_0 = L_4;
int32_t L_5 = V_0;
if ((((int32_t)L_5) == ((int32_t)(-1))))
{
goto IL_0038;
}
}
{
SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* L_6 = (&((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___nodes_1);
int32_t L_7 = V_0;
RuntimeObject* L_8;
L_8 = SmallXmlNodeList_get_Item_mFE828A47A297981D034EFC9244E53B3D34FC9576(L_6, L_7, NULL);
V_1 = ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_8, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var));
int32_t L_9 = V_0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_10;
L_10 = XmlNamedNodeMap_RemoveNodeAt_mA1F6B64903412EDC18F19D1CCE1D890207C6FEF3(__this, L_9, NULL);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_11 = V_1;
XmlAttributeCollection_RemoveParentFromElementIdAttrMap_m40FD15B914F888F0EB42B6E35AD9DD95BE5C28BE(__this, L_11, NULL);
}
IL_0038:
{
int32_t L_12 = V_0;
return L_12;
}
}
// System.Boolean System.Xml.XmlAttributeCollection::PrepareParentInElementIdAttrMap(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAttributeCollection_PrepareParentInElementIdAttrMap_m2E7B9A4254641950851BE28E96829160EEAABA04 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, String_t* ___attrPrefix0, String_t* ___attrLocalName1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* V_0 = NULL;
XmlName_t0704430D24D202146901D342E34D878246E14F33* V_1 = NULL;
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___parent_0;
V_0 = ((XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)IsInstClass((RuntimeObject*)L_0, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var));
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = ((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___parent_0;
NullCheck(L_1);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_2;
L_2 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, L_1);
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_3 = V_0;
NullCheck(L_3);
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_4;
L_4 = XmlElement_get_XmlName_mA93482D1053CABDD02D7E3B23EBA56F74904101D_inline(L_3, NULL);
NullCheck(L_2);
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_5;
L_5 = XmlDocument_GetIDInfoByElement_mF4F7DDBFA3126D06D4AA526B1536BEC20D677AC8(L_2, L_4, NULL);
V_1 = L_5;
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_6 = V_1;
if (!L_6)
{
goto IL_0044;
}
}
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_7 = V_1;
NullCheck(L_7);
String_t* L_8;
L_8 = XmlName_get_Prefix_m42E3E78749764ECBE9586AFC0FC3EBFD2B7A2E4E_inline(L_7, NULL);
String_t* L_9 = ___attrPrefix0;
bool L_10;
L_10 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_8, L_9, NULL);
if (!L_10)
{
goto IL_0044;
}
}
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_11 = V_1;
NullCheck(L_11);
String_t* L_12;
L_12 = XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline(L_11, NULL);
String_t* L_13 = ___attrLocalName1;
bool L_14;
L_14 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_12, L_13, NULL);
if (!L_14)
{
goto IL_0044;
}
}
{
return (bool)1;
}
IL_0044:
{
return (bool)0;
}
}
// System.Void System.Xml.XmlAttributeCollection::ResetParentInElementIdAttrMap(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributeCollection_ResetParentInElementIdAttrMap_m9E06B8B75D985035BA0C9E43A398206B8E7F59FD (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, String_t* ___oldVal0, String_t* ___newVal1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* V_0 = NULL;
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___parent_0;
V_0 = ((XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)IsInstClass((RuntimeObject*)L_0, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var));
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = ((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___parent_0;
NullCheck(L_1);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_2;
L_2 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, L_1);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_3 = L_2;
String_t* L_4 = ___oldVal0;
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_5 = V_0;
NullCheck(L_3);
XmlDocument_RemoveElementWithId_mD930DEA6A023E00A7D376D2F5B7D5283414ECE03(L_3, L_4, L_5, NULL);
String_t* L_6 = ___newVal1;
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_7 = V_0;
NullCheck(L_3);
XmlDocument_AddElementWithId_m179458DD48014AD4C76126306A42F49A98433187(L_3, L_6, L_7, NULL);
return;
}
}
// System.Xml.XmlAttribute System.Xml.XmlAttributeCollection::InternalAppendAttribute(System.Xml.XmlAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlAttributeCollection_InternalAppendAttribute_m4F65B9C065CD96947359F97184962FD480989BCB (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___node0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_0 = ___node0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1;
L_1 = XmlNamedNodeMap_AddNode_m8312C3D9AAF475E11F679C7165079360BD04FA6D(__this, L_0, NULL);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_2 = ___node0;
XmlAttributeCollection_InsertParentIntoElementIdAttrMap_mE1B11EE0246D167AA4CB81F8BC7C0D5C00DFFBB9(__this, L_2, NULL);
return ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_1, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var));
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Xml.XmlCDataSection::.ctor(System.String,System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlCDataSection__ctor_m19CEC86EA9EFC8153A1293493E0B3E9EF89BE2BD (XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA* __this, String_t* ___data0, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___data0;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1 = ___doc1;
XmlCharacterData__ctor_m8B84C0BD8FF7329F4C5190230FA2495D808B34AF(__this, L_0, L_1, NULL);
return;
}
}
// System.String System.Xml.XmlCDataSection::get_Name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlCDataSection_get_Name_m20246A785A9CF1B60411B52EFFCB47DC829E0D5F (XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA* __this, const RuntimeMethod* method)
{
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0;
L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this);
NullCheck(L_0);
String_t* L_1 = L_0->___strCDataSectionName_25;
return L_1;
}
}
// System.String System.Xml.XmlCDataSection::get_LocalName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlCDataSection_get_LocalName_m3C561F75CCC3D9AE2486AC061D8ED599E4695C85 (XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA* __this, const RuntimeMethod* method)
{
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0;
L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this);
NullCheck(L_0);
String_t* L_1 = L_0->___strCDataSectionName_25;
return L_1;
}
}
// System.Xml.XmlNodeType System.Xml.XmlCDataSection::get_NodeType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlCDataSection_get_NodeType_m212ECD27BC43FF5C814C7ADC32022343EA1D98A5 (XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA* __this, const RuntimeMethod* method)
{
{
return (int32_t)(4);
}
}
// System.Xml.XmlNode System.Xml.XmlCDataSection::get_ParentNode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlCDataSection_get_ParentNode_m74E52E9B99CA53C276ACA1F3E8BB90087D02ED08 (XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA* __this, const RuntimeMethod* method)
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL;
int32_t V_1 = 0;
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0;
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(9 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_0);
V_1 = L_1;
int32_t L_2 = V_1;
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, 3))) > ((uint32_t)1))))
{
goto IL_0022;
}
}
{
int32_t L_3 = V_1;
if ((((int32_t)L_3) == ((int32_t)((int32_t)9))))
{
goto IL_0020;
}
}
{
int32_t L_4 = V_1;
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, ((int32_t)13)))) > ((uint32_t)1))))
{
goto IL_0022;
}
}
{
goto IL_0041;
}
IL_0020:
{
return (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL;
}
IL_0022:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5 = ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0;
NullCheck(L_5);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6 = L_5->___parentNode_0;
V_0 = L_6;
goto IL_0037;
}
IL_0030:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_7 = V_0;
NullCheck(L_7);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_8 = L_7->___parentNode_0;
V_0 = L_8;
}
IL_0037:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_9 = V_0;
NullCheck(L_9);
bool L_10;
L_10 = VirtualFuncInvoker0< bool >::Invoke(55 /* System.Boolean System.Xml.XmlNode::get_IsText() */, L_9);
if (L_10)
{
goto IL_0030;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_11 = V_0;
return L_11;
}
IL_0041:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_12 = ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0;
return L_12;
}
}
// System.Xml.XmlNode System.Xml.XmlCDataSection::CloneNode(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlCDataSection_CloneNode_mB7E9C5D6FFC36ACC06CFD9C52149365EF78C92EB (XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA* __this, bool ___deep0, const RuntimeMethod* method)
{
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0;
L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this);
String_t* L_1;
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(56 /* System.String System.Xml.XmlCharacterData::get_Data() */, __this);
NullCheck(L_0);
XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA* L_2;
L_2 = VirtualFuncInvoker1< XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA*, String_t* >::Invoke(59 /* System.Xml.XmlCDataSection System.Xml.XmlDocument::CreateCDataSection(System.String) */, L_0, L_1);
return L_2;
}
}
// System.Void System.Xml.XmlCDataSection::WriteTo(System.Xml.XmlWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlCDataSection_WriteTo_mF1BE529D49F7B1ECFA447D761801316168C91BD2 (XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___w0, const RuntimeMethod* method)
{
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = ___w0;
String_t* L_1;
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(56 /* System.String System.Xml.XmlCharacterData::get_Data() */, __this);
NullCheck(L_0);
VirtualActionInvoker1< String_t* >::Invoke(14 /* System.Void System.Xml.XmlWriter::WriteCData(System.String) */, L_0, L_1);
return;
}
}
// System.Void System.Xml.XmlCDataSection::WriteContentTo(System.Xml.XmlWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlCDataSection_WriteContentTo_mCBC70D9EA59E48879AA7E184A6A1C26E1EC9A557 (XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___w0, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Xml.XmlCDataSection::get_IsText()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlCDataSection_get_IsText_mDE82E0C263A248CD8BB4302DE15F62B5B0FA933C (XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA* __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Xml.XmlCharacterData::.ctor(System.String,System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlCharacterData__ctor_m8B84C0BD8FF7329F4C5190230FA2495D808B34AF (XmlCharacterData_t95604E2FDB152E89A58F9D51414A2903012E758B* __this, String_t* ___data0, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc1, const RuntimeMethod* method)
{
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___doc1;
XmlLinkedNode__ctor_mBAF93AD97DBA998E16940918D8F7EF3E585C7633(__this, L_0, NULL);
String_t* L_1 = ___data0;
__this->___data_2 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___data_2), (void*)L_1);
return;
}
}
// System.String System.Xml.XmlCharacterData::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlCharacterData_get_Value_mEAD3EB1F56BA6B8CBE30131AE088F213CBB1CEB6 (XmlCharacterData_t95604E2FDB152E89A58F9D51414A2903012E758B* __this, const RuntimeMethod* method)
{
{
String_t* L_0;
L_0 = VirtualFuncInvoker0< String_t* >::Invoke(56 /* System.String System.Xml.XmlCharacterData::get_Data() */, __this);
return L_0;
}
}
// System.Void System.Xml.XmlCharacterData::set_Value(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlCharacterData_set_Value_mBC989B04FDDE3AD80DF3853B397E4ECDA16941F9 (XmlCharacterData_t95604E2FDB152E89A58F9D51414A2903012E758B* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
VirtualActionInvoker1< String_t* >::Invoke(57 /* System.Void System.Xml.XmlCharacterData::set_Data(System.String) */, __this, L_0);
return;
}
}
// System.String System.Xml.XmlCharacterData::get_InnerText()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlCharacterData_get_InnerText_mE89F9D4F4F9FBE0CD112A2A408E05253C60DBB41 (XmlCharacterData_t95604E2FDB152E89A58F9D51414A2903012E758B* __this, const RuntimeMethod* method)
{
{
String_t* L_0;
L_0 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, __this);
return L_0;
}
}
// System.Void System.Xml.XmlCharacterData::set_InnerText(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlCharacterData_set_InnerText_m271FEAFFAF9EA583A6EA215218BA494437C3DF2C (XmlCharacterData_t95604E2FDB152E89A58F9D51414A2903012E758B* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
VirtualActionInvoker1< String_t* >::Invoke(8 /* System.Void System.Xml.XmlNode::set_Value(System.String) */, __this, L_0);
return;
}
}
// System.String System.Xml.XmlCharacterData::get_Data()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlCharacterData_get_Data_m02C9E5790F331311CB810471F6475AC610962114 (XmlCharacterData_t95604E2FDB152E89A58F9D51414A2903012E758B* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = __this->___data_2;
if (!L_0)
{
goto IL_000f;
}
}
{
String_t* L_1 = __this->___data_2;
return L_1;
}
IL_000f:
{
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_2;
}
}
// System.Void System.Xml.XmlCharacterData::set_Data(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlCharacterData_set_Data_mFED6CF424D79C891E9F827B7F5A1AB4EBE8F9550 (XmlCharacterData_t95604E2FDB152E89A58F9D51414A2903012E758B* __this, String_t* ___value0, const RuntimeMethod* method)
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL;
XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* V_1 = NULL;
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0;
L_0 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(10 /* System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() */, __this);
V_0 = L_0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = V_0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = V_0;
String_t* L_3 = __this->___data_2;
String_t* L_4 = ___value0;
XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_5;
L_5 = VirtualFuncInvoker6< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, String_t*, String_t*, int32_t >::Invoke(50 /* System.Xml.XmlNodeChangedEventArgs System.Xml.XmlNode::GetEventArgs(System.Xml.XmlNode,System.Xml.XmlNode,System.Xml.XmlNode,System.String,System.String,System.Xml.XmlNodeChangedAction) */, __this, __this, L_1, L_2, L_3, L_4, 2);
V_1 = L_5;
XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_6 = V_1;
if (!L_6)
{
goto IL_0023;
}
}
{
XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_7 = V_1;
VirtualActionInvoker1< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* >::Invoke(51 /* System.Void System.Xml.XmlNode::BeforeEvent(System.Xml.XmlNodeChangedEventArgs) */, __this, L_7);
}
IL_0023:
{
String_t* L_8 = ___value0;
__this->___data_2 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->___data_2), (void*)L_8);
XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_9 = V_1;
if (!L_9)
{
goto IL_0034;
}
}
{
XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_10 = V_1;
VirtualActionInvoker1< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* >::Invoke(52 /* System.Void System.Xml.XmlNode::AfterEvent(System.Xml.XmlNodeChangedEventArgs) */, __this, L_10);
}
IL_0034:
{
return;
}
}
// System.Boolean System.Xml.XmlCharacterData::CheckOnData(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlCharacterData_CheckOnData_mD20947276C3B576599E015E4E19C0F2779862FBA (XmlCharacterData_t95604E2FDB152E89A58F9D51414A2903012E758B* __this, String_t* ___data0, const RuntimeMethod* method)
{
XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 V_0;
memset((&V_0), 0, sizeof(V_0));
{
XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 L_0;
L_0 = XmlCharType_get_Instance_m2D4006A9AE9EB033F6A176E31CAFAC7EF30350AD(NULL);
V_0 = L_0;
String_t* L_1 = ___data0;
bool L_2;
L_2 = XmlCharType_IsOnlyWhitespace_m6A7AD69BFF7BE6878F6984C952284C0755601490((&V_0), L_1, NULL);
return L_2;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Xml.XmlChildEnumerator::.ctor(System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlChildEnumerator__ctor_mC51E8B709CB2FCB079D44B180D5EF3DF9DBC3671 (XmlChildEnumerator_tDD03B83EAA250AB86DFF4B53C1430DA942E85939* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___container0, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___container0;
__this->___container_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___container_0), (void*)L_0);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = ___container0;
NullCheck(L_1);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2;
L_2 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(16 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, L_1);
__this->___child_1 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___child_1), (void*)L_2);
__this->___isFirst_2 = (bool)1;
return;
}
}
// System.Boolean System.Xml.XmlChildEnumerator::System.Collections.IEnumerator.MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlChildEnumerator_System_Collections_IEnumerator_MoveNext_m9DF8D71649BD5173C9E9859A12E9E6777450A55D (XmlChildEnumerator_tDD03B83EAA250AB86DFF4B53C1430DA942E85939* __this, const RuntimeMethod* method)
{
{
bool L_0;
L_0 = XmlChildEnumerator_MoveNext_m038B637C00AC0482CAD4E35995F2CF2AE8E3D556(__this, NULL);
return L_0;
}
}
// System.Boolean System.Xml.XmlChildEnumerator::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlChildEnumerator_MoveNext_m038B637C00AC0482CAD4E35995F2CF2AE8E3D556 (XmlChildEnumerator_tDD03B83EAA250AB86DFF4B53C1430DA942E85939* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___isFirst_2;
if (!L_0)
{
goto IL_0022;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = __this->___container_0;
NullCheck(L_1);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2;
L_2 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(16 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, L_1);
__this->___child_1 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___child_1), (void*)L_2);
__this->___isFirst_2 = (bool)0;
goto IL_003b;
}
IL_0022:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = __this->___child_1;
if (!L_3)
{
goto IL_003b;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4 = __this->___child_1;
NullCheck(L_4);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5;
L_5 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(13 /* System.Xml.XmlNode System.Xml.XmlNode::get_NextSibling() */, L_4);
__this->___child_1 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&__this->___child_1), (void*)L_5);
}
IL_003b:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6 = __this->___child_1;
return (bool)((!(((RuntimeObject*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)L_6) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
}
}
// System.Void System.Xml.XmlChildEnumerator::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlChildEnumerator_System_Collections_IEnumerator_Reset_m3E1BD7C0BE0E5576593A8C53ABC11109F275C4EF (XmlChildEnumerator_tDD03B83EAA250AB86DFF4B53C1430DA942E85939* __this, const RuntimeMethod* method)
{
{
__this->___isFirst_2 = (bool)1;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = __this->___container_0;
NullCheck(L_0);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1;
L_1 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(16 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, L_0);
__this->___child_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___child_1), (void*)L_1);
return;
}
}
// System.Object System.Xml.XmlChildEnumerator::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlChildEnumerator_System_Collections_IEnumerator_get_Current_mEC0FD9B4CD70461AD71D93AB21025A3D83AE0418 (XmlChildEnumerator_tDD03B83EAA250AB86DFF4B53C1430DA942E85939* __this, const RuntimeMethod* method)
{
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0;
L_0 = XmlChildEnumerator_get_Current_m149208EFC92AEDC42F82839102B3D5F017DA4C46(__this, NULL);
return L_0;
}
}
// System.Xml.XmlNode System.Xml.XmlChildEnumerator::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlChildEnumerator_get_Current_m149208EFC92AEDC42F82839102B3D5F017DA4C46 (XmlChildEnumerator_tDD03B83EAA250AB86DFF4B53C1430DA942E85939* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___isFirst_2;
if (L_0)
{
goto IL_0010;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = __this->___child_1;
if (L_1)
{
goto IL_0020;
}
}
IL_0010:
{
String_t* L_2;
L_2 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFBD1A9745DCC4D80697D44756437CCB57698AE21)), NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_3 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_3);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_3, L_2, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlChildEnumerator_get_Current_m149208EFC92AEDC42F82839102B3D5F017DA4C46_RuntimeMethod_var)));
}
IL_0020:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4 = __this->___child_1;
return L_4;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Xml.XmlChildNodes::.ctor(System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlChildNodes__ctor_mE297CC7E680D376A26339D6067C7E434271234B5 (XmlChildNodes_tBD3126123F4810D8B272B8201C07FE70CDC9C5E2* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___container0, const RuntimeMethod* method)
{
{
XmlNodeList__ctor_m29940F85BF8D20E6FFB9732648DC6DAD10539BD3(__this, NULL);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___container0;
__this->___container_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___container_0), (void*)L_0);
return;
}
}
// System.Xml.XmlNode System.Xml.XmlChildNodes::Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlChildNodes_Item_mC376232EA8A8E9BC59F9DCAC9E2FED6A72DB6102 (XmlChildNodes_tBD3126123F4810D8B272B8201C07FE70CDC9C5E2* __this, int32_t ___i0, const RuntimeMethod* method)
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL;
{
int32_t L_0 = ___i0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0006;
}
}
{
return (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL;
}
IL_0006:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = __this->___container_0;
NullCheck(L_1);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2;
L_2 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(16 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, L_1);
V_0 = L_2;
goto IL_0025;
}
IL_0014:
{
int32_t L_3 = ___i0;
if (L_3)
{
goto IL_0019;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4 = V_0;
return L_4;
}
IL_0019:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5 = V_0;
NullCheck(L_5);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6;
L_6 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(13 /* System.Xml.XmlNode System.Xml.XmlNode::get_NextSibling() */, L_5);
V_0 = L_6;
int32_t L_7 = ___i0;
___i0 = ((int32_t)il2cpp_codegen_subtract(L_7, 1));
}
IL_0025:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_8 = V_0;
if (L_8)
{
goto IL_0014;
}
}
{
return (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL;
}
}
// System.Int32 System.Xml.XmlChildNodes::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlChildNodes_get_Count_m0B5B57A96632585A0612CF84ADBCB45557F7D8E4 (XmlChildNodes_tBD3126123F4810D8B272B8201C07FE70CDC9C5E2* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_1 = NULL;
{
V_0 = 0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = __this->___container_0;
NullCheck(L_0);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1;
L_1 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(16 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, L_0);
V_1 = L_1;
goto IL_001b;
}
IL_0010:
{
int32_t L_2 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_2, 1));
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = V_1;
NullCheck(L_3);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4;
L_4 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(13 /* System.Xml.XmlNode System.Xml.XmlNode::get_NextSibling() */, L_3);
V_1 = L_4;
}
IL_001b:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5 = V_1;
if (L_5)
{
goto IL_0010;
}
}
{
int32_t L_6 = V_0;
return L_6;
}
}
// System.Collections.IEnumerator System.Xml.XmlChildNodes::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlChildNodes_GetEnumerator_m79ACE972A13482959B5E446059C899FC9988A81C (XmlChildNodes_tBD3126123F4810D8B272B8201C07FE70CDC9C5E2* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlChildEnumerator_tDD03B83EAA250AB86DFF4B53C1430DA942E85939_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = __this->___container_0;
NullCheck(L_0);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1;
L_1 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(16 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, L_0);
if (L_1)
{
goto IL_0013;
}
}
{
il2cpp_codegen_runtime_class_init_inline(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var);
EmptyEnumerator_t84EC9187C8460EE98E675ED9258AE4DF2A6776DA* L_2 = ((XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_StaticFields*)il2cpp_codegen_static_fields_for(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var))->___EmptyEnumerator_41;
return L_2;
}
IL_0013:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = __this->___container_0;
XmlChildEnumerator_tDD03B83EAA250AB86DFF4B53C1430DA942E85939* L_4 = (XmlChildEnumerator_tDD03B83EAA250AB86DFF4B53C1430DA942E85939*)il2cpp_codegen_object_new(XmlChildEnumerator_tDD03B83EAA250AB86DFF4B53C1430DA942E85939_il2cpp_TypeInfo_var);
NullCheck(L_4);
XmlChildEnumerator__ctor_mC51E8B709CB2FCB079D44B180D5EF3DF9DBC3671(L_4, L_3, NULL);
return L_4;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Xml.XmlComment::.ctor(System.String,System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlComment__ctor_m74C0E3B050353E2B32B5218DF01F8EB8874BD819 (XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9* __this, String_t* ___comment0, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___comment0;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1 = ___doc1;
XmlCharacterData__ctor_m8B84C0BD8FF7329F4C5190230FA2495D808B34AF(__this, L_0, L_1, NULL);
return;
}
}
// System.String System.Xml.XmlComment::get_Name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlComment_get_Name_mC7F751487F2DAE35E3142370436EA9B980F09D25 (XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9* __this, const RuntimeMethod* method)
{
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0;
L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this);
NullCheck(L_0);
String_t* L_1 = L_0->___strCommentName_23;
return L_1;
}
}
// System.String System.Xml.XmlComment::get_LocalName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlComment_get_LocalName_m7F13D283B7982A359227153DB8FE16FB9E818D07 (XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9* __this, const RuntimeMethod* method)
{
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0;
L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this);
NullCheck(L_0);
String_t* L_1 = L_0->___strCommentName_23;
return L_1;
}
}
// System.Xml.XmlNodeType System.Xml.XmlComment::get_NodeType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlComment_get_NodeType_m2D707F1D87A2739654AAE27A0373D30DC3C05422 (XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9* __this, const RuntimeMethod* method)
{
{
return (int32_t)(8);
}
}
// System.Xml.XmlNode System.Xml.XmlComment::CloneNode(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlComment_CloneNode_m0497FF82E6523952EE0D5DF5E61F5DC9AC1400CD (XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9* __this, bool ___deep0, const RuntimeMethod* method)
{
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0;
L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this);
String_t* L_1;
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(56 /* System.String System.Xml.XmlCharacterData::get_Data() */, __this);
NullCheck(L_0);
XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9* L_2;
L_2 = VirtualFuncInvoker1< XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9*, String_t* >::Invoke(60 /* System.Xml.XmlComment System.Xml.XmlDocument::CreateComment(System.String) */, L_0, L_1);
return L_2;
}
}
// System.Void System.Xml.XmlComment::WriteTo(System.Xml.XmlWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlComment_WriteTo_m0EFD8476B3C8FDB142408D3225BE5172BCEF3357 (XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___w0, const RuntimeMethod* method)
{
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = ___w0;
String_t* L_1;
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(56 /* System.String System.Xml.XmlCharacterData::get_Data() */, __this);
NullCheck(L_0);
VirtualActionInvoker1< String_t* >::Invoke(15 /* System.Void System.Xml.XmlWriter::WriteComment(System.String) */, L_0, L_1);
return;
}
}
// System.Void System.Xml.XmlComment::WriteContentTo(System.Xml.XmlWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlComment_WriteContentTo_m2321FC33BF9A442FA9478240492C4292879774AD (XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___w0, const RuntimeMethod* method)
{
{
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.XmlDeclaration::.ctor(System.String,System.String,System.String,System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDeclaration__ctor_mBAEA7104B9DA9F3DAE632B9063BF96BF6A40B116 (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, String_t* ___version0, String_t* ___encoding1, String_t* ___standalone2, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7BFA33A11F0B12AF1B7FA1D9BA996EAE1EF77B49);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralED7D39EDF70E08FE57B2522D102BF72B9E5D5331);
s_Il2CppMethodInitialized = true;
}
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___doc3;
XmlLinkedNode__ctor_mBAF93AD97DBA998E16940918D8F7EF3E585C7633(__this, L_0, NULL);
String_t* L_1 = ___version0;
bool L_2;
L_2 = XmlDeclaration_IsValidXmlVersion_m215F8DC273DFBBD9077EF86BEAB9C3EC3C590684(__this, L_1, NULL);
if (L_2)
{
goto IL_0021;
}
}
{
String_t* L_3;
L_3 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC84E568C2748F9FEA10B49CBF3076D4B6DA24940)), NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_4 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_4);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_4, L_3, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlDeclaration__ctor_mBAEA7104B9DA9F3DAE632B9063BF96BF6A40B116_RuntimeMethod_var)));
}
IL_0021:
{
String_t* L_5 = ___standalone2;
if (!L_5)
{
goto IL_0061;
}
}
{
String_t* L_6 = ___standalone2;
NullCheck(L_6);
int32_t L_7;
L_7 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_6, NULL);
if ((((int32_t)L_7) <= ((int32_t)0)))
{
goto IL_0061;
}
}
{
String_t* L_8 = ___standalone2;
bool L_9;
L_9 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_8, _stringLiteralED7D39EDF70E08FE57B2522D102BF72B9E5D5331, NULL);
if (!L_9)
{
goto IL_0061;
}
}
{
String_t* L_10 = ___standalone2;
bool L_11;
L_11 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_10, _stringLiteral7BFA33A11F0B12AF1B7FA1D9BA996EAE1EF77B49, NULL);
if (!L_11)
{
goto IL_0061;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_12 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_13 = L_12;
String_t* L_14 = ___standalone2;
NullCheck(L_13);
ArrayElementTypeCheck (L_13, L_14);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_14);
String_t* L_15;
L_15 = Res_GetString_mB929E696BF2E2F27CD03C0B61301A9DFE2FDEEF9(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD5750306EEF268CDF7C94C9DB0356DB272D8B5C1)), L_13, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_16 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_16);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_16, L_15, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlDeclaration__ctor_mBAEA7104B9DA9F3DAE632B9063BF96BF6A40B116_RuntimeMethod_var)));
}
IL_0061:
{
String_t* L_17 = ___encoding1;
XmlDeclaration_set_Encoding_m743178C17460B204CFFEFFC0960A77E4A6289A8B(__this, L_17, NULL);
String_t* L_18 = ___standalone2;
XmlDeclaration_set_Standalone_m867389C9FBF0064E3FDA7EBDEAD4CF30E84F49C2(__this, L_18, NULL);
String_t* L_19 = ___version0;
XmlDeclaration_set_Version_m0B2CCCDE1930526B6429925E8139340ED17C26D0_inline(__this, L_19, NULL);
return;
}
}
// System.String System.Xml.XmlDeclaration::get_Version()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDeclaration_get_Version_m50261F1E46B645E69A99504F494FFD3BF915E633 (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___version_2;
return L_0;
}
}
// System.Void System.Xml.XmlDeclaration::set_Version(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDeclaration_set_Version_m0B2CCCDE1930526B6429925E8139340ED17C26D0 (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___version_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___version_2), (void*)L_0);
return;
}
}
// System.String System.Xml.XmlDeclaration::get_Encoding()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDeclaration_get_Encoding_m09D89DCD8457C62A6E49B9506A65A271DDBD011F (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___encoding_3;
return L_0;
}
}
// System.Void System.Xml.XmlDeclaration::set_Encoding(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDeclaration_set_Encoding_m743178C17460B204CFFEFFC0960A77E4A6289A8B (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* G_B2_0 = NULL;
XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* G_B1_0 = NULL;
String_t* G_B3_0 = NULL;
XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* G_B3_1 = NULL;
{
String_t* L_0 = ___value0;
G_B1_0 = __this;
if (!L_0)
{
G_B2_0 = __this;
goto IL_0007;
}
}
{
String_t* L_1 = ___value0;
G_B3_0 = L_1;
G_B3_1 = G_B1_0;
goto IL_000c;
}
IL_0007:
{
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
G_B3_0 = L_2;
G_B3_1 = G_B2_0;
}
IL_000c:
{
NullCheck(G_B3_1);
G_B3_1->___encoding_3 = G_B3_0;
Il2CppCodeGenWriteBarrier((void**)(&G_B3_1->___encoding_3), (void*)G_B3_0);
return;
}
}
// System.String System.Xml.XmlDeclaration::get_Standalone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDeclaration_get_Standalone_m46CC1833EE3C478318FF865E98A6899E440DDC6C (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___standalone_4;
return L_0;
}
}
// System.Void System.Xml.XmlDeclaration::set_Standalone(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDeclaration_set_Standalone_m867389C9FBF0064E3FDA7EBDEAD4CF30E84F49C2 (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7BFA33A11F0B12AF1B7FA1D9BA996EAE1EF77B49);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralED7D39EDF70E08FE57B2522D102BF72B9E5D5331);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___value0;
if (L_0)
{
goto IL_000f;
}
}
{
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
__this->___standalone_4 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___standalone_4), (void*)L_1);
return;
}
IL_000f:
{
String_t* L_2 = ___value0;
NullCheck(L_2);
int32_t L_3;
L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL);
if (!L_3)
{
goto IL_0031;
}
}
{
String_t* L_4 = ___value0;
bool L_5;
L_5 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_4, _stringLiteralED7D39EDF70E08FE57B2522D102BF72B9E5D5331, NULL);
if (L_5)
{
goto IL_0031;
}
}
{
String_t* L_6 = ___value0;
bool L_7;
L_7 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_6, _stringLiteral7BFA33A11F0B12AF1B7FA1D9BA996EAE1EF77B49, NULL);
if (!L_7)
{
goto IL_0039;
}
}
IL_0031:
{
String_t* L_8 = ___value0;
__this->___standalone_4 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->___standalone_4), (void*)L_8);
return;
}
IL_0039:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_9 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_10 = L_9;
String_t* L_11 = ___value0;
NullCheck(L_10);
ArrayElementTypeCheck (L_10, L_11);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_11);
String_t* L_12;
L_12 = Res_GetString_mB929E696BF2E2F27CD03C0B61301A9DFE2FDEEF9(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD5750306EEF268CDF7C94C9DB0356DB272D8B5C1)), L_10, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_13 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_13);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_13, L_12, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlDeclaration_set_Standalone_m867389C9FBF0064E3FDA7EBDEAD4CF30E84F49C2_RuntimeMethod_var)));
}
}
// System.String System.Xml.XmlDeclaration::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDeclaration_get_Value_m5ABC71244CFA7343F6AB7C5B896D28B5A33827AF (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, const RuntimeMethod* method)
{
{
String_t* L_0;
L_0 = VirtualFuncInvoker0< String_t* >::Invoke(38 /* System.String System.Xml.XmlNode::get_InnerText() */, __this);
return L_0;
}
}
// System.Void System.Xml.XmlDeclaration::set_Value(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDeclaration_set_Value_m913DD901FB7A8E1656EEF04C0E394A3E4E85B867 (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
VirtualActionInvoker1< String_t* >::Invoke(39 /* System.Void System.Xml.XmlNode::set_InnerText(System.String) */, __this, L_0);
return;
}
}
// System.String System.Xml.XmlDeclaration::get_InnerText()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDeclaration_get_InnerText_mB8C98E0ECE11ED01970D6EBD5A14DE181A843F3A (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3AFC0DE819870B50AA0F59F4823CD7064A39BC72);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA849558816A84F373F471C0275248DA08F91A4A6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF67CF5B59E32B552C2C143E0A3990B9794C84DA7);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t* V_0 = NULL;
{
String_t* L_0;
L_0 = XmlDeclaration_get_Version_m50261F1E46B645E69A99504F494FFD3BF915E633_inline(__this, NULL);
String_t* L_1;
L_1 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(_stringLiteralF67CF5B59E32B552C2C143E0A3990B9794C84DA7, L_0, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677, NULL);
StringBuilder_t* L_2 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
NullCheck(L_2);
StringBuilder__ctor_mCD797D942316CB356205FD96415B0B7581CDAD60(L_2, L_1, NULL);
V_0 = L_2;
String_t* L_3;
L_3 = XmlDeclaration_get_Encoding_m09D89DCD8457C62A6E49B9506A65A271DDBD011F_inline(__this, NULL);
NullCheck(L_3);
int32_t L_4;
L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL);
if ((((int32_t)L_4) <= ((int32_t)0)))
{
goto IL_004e;
}
}
{
StringBuilder_t* L_5 = V_0;
NullCheck(L_5);
StringBuilder_t* L_6;
L_6 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_5, _stringLiteralA849558816A84F373F471C0275248DA08F91A4A6, NULL);
StringBuilder_t* L_7 = V_0;
String_t* L_8;
L_8 = XmlDeclaration_get_Encoding_m09D89DCD8457C62A6E49B9506A65A271DDBD011F_inline(__this, NULL);
NullCheck(L_7);
StringBuilder_t* L_9;
L_9 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_7, L_8, NULL);
StringBuilder_t* L_10 = V_0;
NullCheck(L_10);
StringBuilder_t* L_11;
L_11 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_10, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677, NULL);
}
IL_004e:
{
String_t* L_12;
L_12 = XmlDeclaration_get_Standalone_m46CC1833EE3C478318FF865E98A6899E440DDC6C_inline(__this, NULL);
NullCheck(L_12);
int32_t L_13;
L_13 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_12, NULL);
if ((((int32_t)L_13) <= ((int32_t)0)))
{
goto IL_0081;
}
}
{
StringBuilder_t* L_14 = V_0;
NullCheck(L_14);
StringBuilder_t* L_15;
L_15 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_14, _stringLiteral3AFC0DE819870B50AA0F59F4823CD7064A39BC72, NULL);
StringBuilder_t* L_16 = V_0;
String_t* L_17;
L_17 = XmlDeclaration_get_Standalone_m46CC1833EE3C478318FF865E98A6899E440DDC6C_inline(__this, NULL);
NullCheck(L_16);
StringBuilder_t* L_18;
L_18 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_16, L_17, NULL);
StringBuilder_t* L_19 = V_0;
NullCheck(L_19);
StringBuilder_t* L_20;
L_20 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_19, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677, NULL);
}
IL_0081:
{
StringBuilder_t* L_21 = V_0;
NullCheck(L_21);
String_t* L_22;
L_22 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_21);
return L_22;
}
}
// System.Void System.Xml.XmlDeclaration::set_InnerText(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDeclaration_set_InnerText_m29CC0B3D8586A44F0DE1725A2C85FFDA76C86C4E (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, String_t* ___value0, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
String_t* V_1 = NULL;
String_t* V_2 = NULL;
String_t* V_3 = NULL;
String_t* V_4 = NULL;
String_t* V_5 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
V_0 = (String_t*)NULL;
V_1 = (String_t*)NULL;
V_2 = (String_t*)NULL;
String_t* L_0;
L_0 = XmlDeclaration_get_Encoding_m09D89DCD8457C62A6E49B9506A65A271DDBD011F_inline(__this, NULL);
V_3 = L_0;
String_t* L_1;
L_1 = XmlDeclaration_get_Standalone_m46CC1833EE3C478318FF865E98A6899E440DDC6C_inline(__this, NULL);
V_4 = L_1;
String_t* L_2;
L_2 = XmlDeclaration_get_Version_m50261F1E46B645E69A99504F494FFD3BF915E633_inline(__this, NULL);
V_5 = L_2;
String_t* L_3 = ___value0;
XmlLoader_ParseXmlDeclarationValue_m54F41E02A882770049D8D02C68338A7B7AF9ABA6(L_3, (&V_0), (&V_1), (&V_2), NULL);
}
try
{// begin try (depth: 1)
{
String_t* L_4 = V_0;
if (!L_4)
{
goto IL_0045_1;
}
}
{
String_t* L_5 = V_0;
bool L_6;
L_6 = XmlDeclaration_IsValidXmlVersion_m215F8DC273DFBBD9077EF86BEAB9C3EC3C590684(__this, L_5, NULL);
if (L_6)
{
goto IL_0045_1;
}
}
{
String_t* L_7;
L_7 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC84E568C2748F9FEA10B49CBF3076D4B6DA24940)), 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*)&XmlDeclaration_set_InnerText_m29CC0B3D8586A44F0DE1725A2C85FFDA76C86C4E_RuntimeMethod_var)));
}
IL_0045_1:
{
String_t* L_9 = V_0;
XmlDeclaration_set_Version_m0B2CCCDE1930526B6429925E8139340ED17C26D0_inline(__this, L_9, NULL);
String_t* L_10 = V_1;
if (!L_10)
{
goto IL_0056_1;
}
}
{
String_t* L_11 = V_1;
XmlDeclaration_set_Encoding_m743178C17460B204CFFEFFC0960A77E4A6289A8B(__this, L_11, NULL);
}
IL_0056_1:
{
String_t* L_12 = V_2;
if (!L_12)
{
goto IL_0060_1;
}
}
{
String_t* L_13 = V_2;
XmlDeclaration_set_Standalone_m867389C9FBF0064E3FDA7EBDEAD4CF30E84F49C2(__this, L_13, NULL);
}
IL_0060_1:
{
goto IL_007c;
}
}// 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_0062;
}
throw e;
}
CATCH_0062:
{// begin catch(System.Object)
String_t* L_14 = V_3;
XmlDeclaration_set_Encoding_m743178C17460B204CFFEFFC0960A77E4A6289A8B(__this, L_14, NULL);
String_t* L_15 = V_4;
XmlDeclaration_set_Standalone_m867389C9FBF0064E3FDA7EBDEAD4CF30E84F49C2(__this, L_15, NULL);
String_t* L_16 = V_5;
XmlDeclaration_set_Version_m0B2CCCDE1930526B6429925E8139340ED17C26D0_inline(__this, L_16, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlDeclaration_set_InnerText_m29CC0B3D8586A44F0DE1725A2C85FFDA76C86C4E_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_007c:
{
return;
}
}
// System.String System.Xml.XmlDeclaration::get_Name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDeclaration_get_Name_mD74DAD0D67570779DE4E6168BA6FE6718C68D96F (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158);
s_Il2CppMethodInitialized = true;
}
{
return _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158;
}
}
// System.String System.Xml.XmlDeclaration::get_LocalName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDeclaration_get_LocalName_m35F3DBD7733EB1E3A873468D2B0635F7D77BA26D (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, const RuntimeMethod* method)
{
{
String_t* L_0;
L_0 = VirtualFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.XmlNode::get_Name() */, __this);
return L_0;
}
}
// System.Xml.XmlNodeType System.Xml.XmlDeclaration::get_NodeType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlDeclaration_get_NodeType_m88B85D17B7799116C8FA58654201BE90F49AD3B0 (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, const RuntimeMethod* method)
{
{
return (int32_t)(((int32_t)17));
}
}
// System.Xml.XmlNode System.Xml.XmlDeclaration::CloneNode(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlDeclaration_CloneNode_m8537F159D63D363B215663339B1A78B35B3183B5 (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, bool ___deep0, const RuntimeMethod* method)
{
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0;
L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this);
String_t* L_1;
L_1 = XmlDeclaration_get_Version_m50261F1E46B645E69A99504F494FFD3BF915E633_inline(__this, NULL);
String_t* L_2;
L_2 = XmlDeclaration_get_Encoding_m09D89DCD8457C62A6E49B9506A65A271DDBD011F_inline(__this, NULL);
String_t* L_3;
L_3 = XmlDeclaration_get_Standalone_m46CC1833EE3C478318FF865E98A6899E440DDC6C_inline(__this, NULL);
NullCheck(L_0);
XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* L_4;
L_4 = VirtualFuncInvoker3< XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79*, String_t*, String_t*, String_t* >::Invoke(65 /* System.Xml.XmlDeclaration System.Xml.XmlDocument::CreateXmlDeclaration(System.String,System.String,System.String) */, L_0, L_1, L_2, L_3);
return L_4;
}
}
// System.Void System.Xml.XmlDeclaration::WriteTo(System.Xml.XmlWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDeclaration_WriteTo_m9B2367CAE3A4D4FAC21A6EC5353C7BE510C42AF0 (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___w0, const RuntimeMethod* method)
{
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = ___w0;
String_t* L_1;
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.XmlNode::get_Name() */, __this);
String_t* L_2;
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(38 /* System.String System.Xml.XmlNode::get_InnerText() */, __this);
NullCheck(L_0);
VirtualActionInvoker2< String_t*, String_t* >::Invoke(16 /* System.Void System.Xml.XmlWriter::WriteProcessingInstruction(System.String,System.String) */, L_0, L_1, L_2);
return;
}
}
// System.Void System.Xml.XmlDeclaration::WriteContentTo(System.Xml.XmlWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDeclaration_WriteContentTo_mF41E5CE626BEBE5D1C01220C4337F36427DCEE49 (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___w0, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Xml.XmlDeclaration::IsValidXmlVersion(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDeclaration_IsValidXmlVersion_m215F8DC273DFBBD9077EF86BEAB9C3EC3C590684 (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, String_t* ___ver0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___ver0;
NullCheck(L_0);
int32_t L_1;
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL);
if ((((int32_t)L_1) < ((int32_t)3)))
{
goto IL_002f;
}
}
{
String_t* L_2 = ___ver0;
NullCheck(L_2);
Il2CppChar L_3;
L_3 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_2, 0, NULL);
if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)49)))))
{
goto IL_002f;
}
}
{
String_t* L_4 = ___ver0;
NullCheck(L_4);
Il2CppChar L_5;
L_5 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_4, 1, NULL);
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)46)))))
{
goto IL_002f;
}
}
{
String_t* L_6 = ___ver0;
String_t* L_7 = ___ver0;
NullCheck(L_7);
int32_t L_8;
L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL);
bool L_9;
L_9 = XmlCharType_IsOnlyDigits_m65AE71D9278E3F04A6625595F8DC3D0749D79DCC(L_6, 2, ((int32_t)il2cpp_codegen_subtract(L_8, 2)), NULL);
return L_9;
}
IL_002f:
{
return (bool)0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Xml.XmlDocument::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument__ctor_m09B578D51E249702C90A99B87A31ABE8CE4027DC (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* L_0 = (XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D*)il2cpp_codegen_object_new(XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D_il2cpp_TypeInfo_var);
NullCheck(L_0);
XmlImplementation__ctor_mEBE20EB37760F63620D9DFAEF3341D2F4E138DC9(L_0, NULL);
XmlDocument__ctor_m90653BB0CD6863B4328A3B32B72ED4383C97D1A8(__this, L_0, NULL);
return;
}
}
// System.Void System.Xml.XmlDocument::.ctor(System.Xml.XmlNameTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument__ctor_m23D3FC333FDD50BBCAF64B57184A889E0F6B7468 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nt0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_0 = ___nt0;
XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* L_1 = (XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D*)il2cpp_codegen_object_new(XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D_il2cpp_TypeInfo_var);
NullCheck(L_1);
XmlImplementation__ctor_mE5899D3C7EA30F9EDB19D07211588DB4FEDEC04D(L_1, L_0, NULL);
XmlDocument__ctor_m90653BB0CD6863B4328A3B32B72ED4383C97D1A8(__this, L_1, NULL);
return;
}
}
// System.Void System.Xml.XmlDocument::.ctor(System.Xml.XmlImplementation)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument__ctor_m90653BB0CD6863B4328A3B32B72ED4383C97D1A8 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* ___imp0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1CBC514CBF721C4C5F12F67F33B3E7694BCD1B29);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral26E478A40A804C5FF9FB7A90DCD4F5E8539E8E38);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral349C6DC0F34B9BA242E4C728EDD28CAB809D4917);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4760011519A4AB7E8521F6795430114E80AA83E4);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral791879DECB3477AD61FF2F50186DCF089516C2FA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral83B3ACB1C0AB14BABA0BD386F8695E096686811C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA2ADAC70CFE2DCB556D061A93CBD008778646655);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCE6A4511D58A9B6C235D9E76F3BADFD11EFD8892);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDB28C3D7E7F56FAA480CEF9C7D0E3BF741423901);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE1291C4D47635E327ECFE39842BD1A93F58C61A2);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF6C0C11953123BBAC57A7E215512C2CA4CF68520);
s_Il2CppMethodInitialized = true;
}
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* V_0 = NULL;
{
XmlNode__ctor_m48EA7E8280259972A9AE46D0220C05CEA99E9350(__this, NULL);
XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* L_0 = ___imp0;
__this->___implementation_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___implementation_1), (void*)L_0);
DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45* L_1 = (DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45*)il2cpp_codegen_object_new(DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45_il2cpp_TypeInfo_var);
NullCheck(L_1);
DomNameTable__ctor_m5A5BC654B5068463A5363A4C5F944DBA31D68C29(L_1, __this, NULL);
__this->___domNameTable_2 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___domNameTable_2), (void*)L_1);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_2;
L_2 = XmlDocument_get_NameTable_m4B913865A24AEA917172F75CBDCE94C81CCB7E2C(__this, NULL);
V_0 = L_2;
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_3 = V_0;
String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
NullCheck(L_3);
String_t* L_5;
L_5 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_3, L_4);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_6 = V_0;
NullCheck(L_6);
String_t* L_7;
L_7 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_6, _stringLiteralCE6A4511D58A9B6C235D9E76F3BADFD11EFD8892);
__this->___strDocumentName_21 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&__this->___strDocumentName_21), (void*)L_7);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_8 = V_0;
NullCheck(L_8);
String_t* L_9;
L_9 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_8, _stringLiteral791879DECB3477AD61FF2F50186DCF089516C2FA);
__this->___strDocumentFragmentName_22 = L_9;
Il2CppCodeGenWriteBarrier((void**)(&__this->___strDocumentFragmentName_22), (void*)L_9);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_10 = V_0;
NullCheck(L_10);
String_t* L_11;
L_11 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_10, _stringLiteralDB28C3D7E7F56FAA480CEF9C7D0E3BF741423901);
__this->___strCommentName_23 = L_11;
Il2CppCodeGenWriteBarrier((void**)(&__this->___strCommentName_23), (void*)L_11);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_12 = V_0;
NullCheck(L_12);
String_t* L_13;
L_13 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_12, _stringLiteral4760011519A4AB7E8521F6795430114E80AA83E4);
__this->___strTextName_24 = L_13;
Il2CppCodeGenWriteBarrier((void**)(&__this->___strTextName_24), (void*)L_13);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_14 = V_0;
NullCheck(L_14);
String_t* L_15;
L_15 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_14, _stringLiteralA2ADAC70CFE2DCB556D061A93CBD008778646655);
__this->___strCDataSectionName_25 = L_15;
Il2CppCodeGenWriteBarrier((void**)(&__this->___strCDataSectionName_25), (void*)L_15);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_16 = V_0;
NullCheck(L_16);
String_t* L_17;
L_17 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_16, _stringLiteral26E478A40A804C5FF9FB7A90DCD4F5E8539E8E38);
__this->___strEntityName_26 = L_17;
Il2CppCodeGenWriteBarrier((void**)(&__this->___strEntityName_26), (void*)L_17);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_18 = V_0;
NullCheck(L_18);
String_t* L_19;
L_19 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_18, _stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694);
__this->___strID_27 = L_19;
Il2CppCodeGenWriteBarrier((void**)(&__this->___strID_27), (void*)L_19);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_20 = V_0;
NullCheck(L_20);
String_t* L_21;
L_21 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_20, _stringLiteralF6C0C11953123BBAC57A7E215512C2CA4CF68520);
__this->___strNonSignificantWhitespaceName_33 = L_21;
Il2CppCodeGenWriteBarrier((void**)(&__this->___strNonSignificantWhitespaceName_33), (void*)L_21);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_22 = V_0;
NullCheck(L_22);
String_t* L_23;
L_23 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_22, _stringLiteral83B3ACB1C0AB14BABA0BD386F8695E096686811C);
__this->___strSignificantWhitespaceName_34 = L_23;
Il2CppCodeGenWriteBarrier((void**)(&__this->___strSignificantWhitespaceName_34), (void*)L_23);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_24 = V_0;
NullCheck(L_24);
String_t* L_25;
L_25 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_24, _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3);
__this->___strXmlns_28 = L_25;
Il2CppCodeGenWriteBarrier((void**)(&__this->___strXmlns_28), (void*)L_25);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_26 = V_0;
NullCheck(L_26);
String_t* L_27;
L_27 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_26, _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158);
__this->___strXml_29 = L_27;
Il2CppCodeGenWriteBarrier((void**)(&__this->___strXml_29), (void*)L_27);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_28 = V_0;
NullCheck(L_28);
String_t* L_29;
L_29 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_28, _stringLiteralE1291C4D47635E327ECFE39842BD1A93F58C61A2);
__this->___strSpace_30 = L_29;
Il2CppCodeGenWriteBarrier((void**)(&__this->___strSpace_30), (void*)L_29);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_30 = V_0;
NullCheck(L_30);
String_t* L_31;
L_31 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_30, _stringLiteral1CBC514CBF721C4C5F12F67F33B3E7694BCD1B29);
__this->___strLang_31 = L_31;
Il2CppCodeGenWriteBarrier((void**)(&__this->___strLang_31), (void*)L_31);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_32 = V_0;
NullCheck(L_32);
String_t* L_33;
L_33 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_32, _stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE);
__this->___strReservedXmlns_35 = L_33;
Il2CppCodeGenWriteBarrier((void**)(&__this->___strReservedXmlns_35), (void*)L_33);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_34 = V_0;
NullCheck(L_34);
String_t* L_35;
L_35 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_34, _stringLiteral349C6DC0F34B9BA242E4C728EDD28CAB809D4917);
__this->___strReservedXml_36 = L_35;
Il2CppCodeGenWriteBarrier((void**)(&__this->___strReservedXml_36), (void*)L_35);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_36 = V_0;
String_t* L_37 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
NullCheck(L_36);
String_t* L_38;
L_38 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_36, L_37);
__this->___strEmpty_32 = L_38;
Il2CppCodeGenWriteBarrier((void**)(&__this->___strEmpty_32), (void*)L_38);
String_t* L_39 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
__this->___baseURI_37 = L_39;
Il2CppCodeGenWriteBarrier((void**)(&__this->___baseURI_37), (void*)L_39);
RuntimeObject* L_40 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
NullCheck(L_40);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_40, NULL);
__this->___objLock_40 = L_40;
Il2CppCodeGenWriteBarrier((void**)(&__this->___objLock_40), (void*)L_40);
return;
}
}
// System.Xml.Schema.SchemaInfo System.Xml.XmlDocument::get_DtdSchemaInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* XmlDocument_get_DtdSchemaInfo_mF52E9F32AB9D1914DBC6D91A8277AE843B6E1E6E (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method)
{
{
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_0 = __this->___schemaInfo_7;
return L_0;
}
}
// System.Void System.Xml.XmlDocument::set_DtdSchemaInfo(System.Xml.Schema.SchemaInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_set_DtdSchemaInfo_m95A0C58965F2B17BDA49D5F4E18304A11EEC7876 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* ___value0, const RuntimeMethod* method)
{
{
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_0 = ___value0;
__this->___schemaInfo_7 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___schemaInfo_7), (void*)L_0);
return;
}
}
// System.Void System.Xml.XmlDocument::CheckName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_CheckName_m8F3B57903F80A4309ACAF9C301ABA06B63702CA5 (String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidateNames_tC1994E2C538F499DFEBBA2705010DC4C770E7598_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
String_t* L_0 = ___name0;
il2cpp_codegen_runtime_class_init_inline(ValidateNames_tC1994E2C538F499DFEBBA2705010DC4C770E7598_il2cpp_TypeInfo_var);
int32_t L_1;
L_1 = ValidateNames_ParseNmtoken_m7C6554EAA0D5D41D6DDE5FA5669F1D54DE46B374(L_0, 0, NULL);
V_0 = L_1;
int32_t L_2 = V_0;
String_t* L_3 = ___name0;
NullCheck(L_3);
int32_t L_4;
L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL);
if ((((int32_t)L_2) >= ((int32_t)L_4)))
{
goto IL_0023;
}
}
{
String_t* L_5 = ___name0;
int32_t L_6 = V_0;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_7;
L_7 = XmlException_BuildCharExceptionArgs_m392B50DC9155D9243FD05EF0287B06FCB408EA46(L_5, L_6, NULL);
XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_8 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var)));
NullCheck(L_8);
XmlException__ctor_mAAF5616098D1552646D4C4FDF1B381CB63822A21(L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB66EDA098CD2E33A3EA4EAA0192B7D288FB4BE05)), L_7, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlDocument_CheckName_m8F3B57903F80A4309ACAF9C301ABA06B63702CA5_RuntimeMethod_var)));
}
IL_0023:
{
return;
}
}
// System.Xml.XmlName System.Xml.XmlDocument::AddXmlName(System.String,System.String,System.String,System.Xml.Schema.IXmlSchemaInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* XmlDocument_AddXmlName_m0B7D502F9AA6D43E0743106B90F9CE10F459A916 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___namespaceURI2, RuntimeObject* ___schemaInfo3, const RuntimeMethod* method)
{
{
DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45* L_0 = __this->___domNameTable_2;
String_t* L_1 = ___prefix0;
String_t* L_2 = ___localName1;
String_t* L_3 = ___namespaceURI2;
RuntimeObject* L_4 = ___schemaInfo3;
NullCheck(L_0);
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_5;
L_5 = DomNameTable_AddName_m5EADC9D7600CB5AB4285BF18DCA911E042C7F4C2(L_0, L_1, L_2, L_3, L_4, NULL);
return L_5;
}
}
// System.Xml.XmlName System.Xml.XmlDocument::GetXmlName(System.String,System.String,System.String,System.Xml.Schema.IXmlSchemaInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* XmlDocument_GetXmlName_m7145F5B6BE8E6CDB52918C96324CC489569932CB (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___namespaceURI2, RuntimeObject* ___schemaInfo3, const RuntimeMethod* method)
{
{
DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45* L_0 = __this->___domNameTable_2;
String_t* L_1 = ___prefix0;
String_t* L_2 = ___localName1;
String_t* L_3 = ___namespaceURI2;
RuntimeObject* L_4 = ___schemaInfo3;
NullCheck(L_0);
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_5;
L_5 = DomNameTable_GetName_mCDD057C4F21297AF60F4C3E34DFB4A864067AD8C(L_0, L_1, L_2, L_3, L_4, NULL);
return L_5;
}
}
// System.Xml.XmlName System.Xml.XmlDocument::AddAttrXmlName(System.String,System.String,System.String,System.Xml.Schema.IXmlSchemaInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* XmlDocument_AddAttrXmlName_mB6D4F6DA50FBE350ABAC30CD5CE97D981506BB28 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___namespaceURI2, RuntimeObject* ___schemaInfo3, const RuntimeMethod* method)
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* V_0 = NULL;
RuntimeObject* V_1 = NULL;
RuntimeObject* V_2 = NULL;
RuntimeObject* V_3 = NULL;
int32_t G_B6_0 = 0;
{
String_t* L_0 = ___prefix0;
String_t* L_1 = ___localName1;
String_t* L_2 = ___namespaceURI2;
RuntimeObject* L_3 = ___schemaInfo3;
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_4;
L_4 = XmlDocument_AddXmlName_m0B7D502F9AA6D43E0743106B90F9CE10F459A916(__this, L_0, L_1, L_2, L_3, NULL);
V_0 = L_4;
bool L_5;
L_5 = XmlDocument_get_IsLoading_mD97F2D54DE1BD3B4F8B496F4D8D31C061FA8A52D_inline(__this, NULL);
if (L_5)
{
goto IL_0070;
}
}
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_6 = V_0;
NullCheck(L_6);
String_t* L_7;
L_7 = XmlName_get_Prefix_m42E3E78749764ECBE9586AFC0FC3EBFD2B7A2E4E_inline(L_6, NULL);
V_1 = L_7;
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_8 = V_0;
NullCheck(L_8);
String_t* L_9;
L_9 = XmlName_get_NamespaceURI_mCF07F0E78CAF17DDF53DD8CD44C5D415B4E010D1_inline(L_8, NULL);
V_2 = L_9;
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_10 = V_0;
NullCheck(L_10);
String_t* L_11;
L_11 = XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline(L_10, NULL);
V_3 = L_11;
RuntimeObject* L_12 = V_1;
String_t* L_13 = __this->___strXmlns_28;
if ((((RuntimeObject*)(RuntimeObject*)L_12) == ((RuntimeObject*)(String_t*)L_13)))
{
goto IL_0049;
}
}
{
RuntimeObject* L_14 = V_1;
String_t* L_15 = __this->___strEmpty_32;
if ((!(((RuntimeObject*)(RuntimeObject*)L_14) == ((RuntimeObject*)(String_t*)L_15))))
{
goto IL_0046;
}
}
{
RuntimeObject* L_16 = V_3;
String_t* L_17 = __this->___strXmlns_28;
G_B6_0 = ((((RuntimeObject*)(RuntimeObject*)L_16) == ((RuntimeObject*)(String_t*)L_17))? 1 : 0);
goto IL_004a;
}
IL_0046:
{
G_B6_0 = 0;
goto IL_004a;
}
IL_0049:
{
G_B6_0 = 1;
}
IL_004a:
{
RuntimeObject* L_18 = V_2;
String_t* L_19 = __this->___strReservedXmlns_35;
if (!((int32_t)(G_B6_0^((((RuntimeObject*)(RuntimeObject*)L_18) == ((RuntimeObject*)(String_t*)L_19))? 1 : 0))))
{
goto IL_0070;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_20 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_21 = L_20;
String_t* L_22 = ___namespaceURI2;
NullCheck(L_21);
ArrayElementTypeCheck (L_21, L_22);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_22);
String_t* L_23;
L_23 = Res_GetString_mB929E696BF2E2F27CD03C0B61301A9DFE2FDEEF9(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral033D1A6AEAFA549F3817926A246C7A61244A174C)), L_21, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_24 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_24);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_24, L_23, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlDocument_AddAttrXmlName_mB6D4F6DA50FBE350ABAC30CD5CE97D981506BB28_RuntimeMethod_var)));
}
IL_0070:
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_25 = V_0;
return L_25;
}
}
// System.Boolean System.Xml.XmlDocument::AddIdInfo(System.Xml.XmlName,System.Xml.XmlName)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocument_AddIdInfo_mF6E5BE7379C76DA2C5E4D292380086D04009CC0E (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___eleName0, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___attrName1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->___htElementIDAttrDecl_6;
if (!L_0)
{
goto IL_0016;
}
}
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_1 = __this->___htElementIDAttrDecl_6;
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_2 = ___eleName0;
NullCheck(L_1);
RuntimeObject* L_3;
L_3 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(30 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_1, L_2);
if (L_3)
{
goto IL_0038;
}
}
IL_0016:
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_4 = __this->___htElementIDAttrDecl_6;
if (L_4)
{
goto IL_0029;
}
}
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_5 = (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D*)il2cpp_codegen_object_new(Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var);
NullCheck(L_5);
Hashtable__ctor_mD7E2F1EB1BFD683186ECD6EDBE1708AF35C3A87D(L_5, NULL);
__this->___htElementIDAttrDecl_6 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&__this->___htElementIDAttrDecl_6), (void*)L_5);
}
IL_0029:
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_6 = __this->___htElementIDAttrDecl_6;
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_7 = ___eleName0;
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_8 = ___attrName1;
NullCheck(L_6);
VirtualActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(23 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_6, L_7, L_8);
return (bool)1;
}
IL_0038:
{
return (bool)0;
}
}
// System.Xml.XmlName System.Xml.XmlDocument::GetIDInfoByElement_(System.Xml.XmlName)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* XmlDocument_GetIDInfoByElement__mB6858B03EFABCE5F79DBACEF671D8A76948FA086 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___eleName0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlName_t0704430D24D202146901D342E34D878246E14F33_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlName_t0704430D24D202146901D342E34D878246E14F33* V_0 = NULL;
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = ___eleName0;
NullCheck(L_0);
String_t* L_1;
L_1 = XmlName_get_Prefix_m42E3E78749764ECBE9586AFC0FC3EBFD2B7A2E4E_inline(L_0, NULL);
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_2 = ___eleName0;
NullCheck(L_2);
String_t* L_3;
L_3 = XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline(L_2, NULL);
String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_5;
L_5 = XmlDocument_GetXmlName_m7145F5B6BE8E6CDB52918C96324CC489569932CB(__this, L_1, L_3, L_4, (RuntimeObject*)NULL, NULL);
V_0 = L_5;
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_6 = V_0;
if (!L_6)
{
goto IL_002e;
}
}
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_7 = __this->___htElementIDAttrDecl_6;
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_8 = V_0;
NullCheck(L_7);
RuntimeObject* L_9;
L_9 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(30 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_7, L_8);
return ((XmlName_t0704430D24D202146901D342E34D878246E14F33*)CastclassClass((RuntimeObject*)L_9, XmlName_t0704430D24D202146901D342E34D878246E14F33_il2cpp_TypeInfo_var));
}
IL_002e:
{
return (XmlName_t0704430D24D202146901D342E34D878246E14F33*)NULL;
}
}
// System.Xml.XmlName System.Xml.XmlDocument::GetIDInfoByElement(System.Xml.XmlName)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* XmlDocument_GetIDInfoByElement_mF4F7DDBFA3126D06D4AA526B1536BEC20D677AC8 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___eleName0, const RuntimeMethod* method)
{
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->___htElementIDAttrDecl_6;
if (L_0)
{
goto IL_000a;
}
}
{
return (XmlName_t0704430D24D202146901D342E34D878246E14F33*)NULL;
}
IL_000a:
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_1 = ___eleName0;
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_2;
L_2 = XmlDocument_GetIDInfoByElement__mB6858B03EFABCE5F79DBACEF671D8A76948FA086(__this, L_1, NULL);
return L_2;
}
}
// System.WeakReference System.Xml.XmlDocument::GetElement(System.Collections.ArrayList,System.Xml.XmlElement)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* XmlDocument_GetElement_mC0411EE67C03B9FD52F41B70C7320E51A67C2463 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___elementList0, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___elem1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* V_0 = NULL;
RuntimeObject* V_1 = NULL;
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* V_2 = NULL;
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* V_3 = NULL;
RuntimeObject* V_4 = NULL;
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* V_5 = NULL;
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)il2cpp_codegen_object_new(ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var);
NullCheck(L_0);
ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80(L_0, NULL);
V_0 = L_0;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_1 = ___elementList0;
NullCheck(L_1);
RuntimeObject* L_2;
L_2 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(37 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_1);
V_1 = L_2;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0049:
{// begin finally (depth: 1)
{
RuntimeObject* L_3 = V_1;
V_4 = ((RuntimeObject*)IsInst((RuntimeObject*)L_3, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_4 = V_4;
if (!L_4)
{
goto IL_005c;
}
}
{
RuntimeObject* L_5 = V_4;
NullCheck(L_5);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_5);
}
IL_005c:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_003f_1;
}
IL_000f_1:
{
RuntimeObject* L_6 = V_1;
NullCheck(L_6);
RuntimeObject* L_7;
L_7 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_6);
V_2 = ((WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E*)CastclassClass((RuntimeObject*)L_7, WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E_il2cpp_TypeInfo_var));
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_8 = V_2;
NullCheck(L_8);
bool L_9;
L_9 = VirtualFuncInvoker0< bool >::Invoke(5 /* System.Boolean System.WeakReference::get_IsAlive() */, L_8);
if (L_9)
{
goto IL_002d_1;
}
}
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_10 = V_0;
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_11 = V_2;
NullCheck(L_10);
int32_t L_12;
L_12 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_10, L_11);
goto IL_003f_1;
}
IL_002d_1:
{
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_13 = V_2;
NullCheck(L_13);
RuntimeObject* L_14;
L_14 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(6 /* System.Object System.WeakReference::get_Target() */, L_13);
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_15 = ___elem1;
if ((!(((RuntimeObject*)(XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)((XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)CastclassClass((RuntimeObject*)L_14, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var))) == ((RuntimeObject*)(XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)L_15))))
{
goto IL_003f_1;
}
}
{
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_16 = V_2;
V_3 = L_16;
goto IL_009b;
}
IL_003f_1:
{
RuntimeObject* L_17 = V_1;
NullCheck(L_17);
bool L_18;
L_18 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_17);
if (L_18)
{
goto IL_000f_1;
}
}
{
goto IL_005d;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_005d:
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_19 = V_0;
NullCheck(L_19);
RuntimeObject* L_20;
L_20 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(37 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_19);
V_1 = L_20;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0085:
{// begin finally (depth: 1)
{
RuntimeObject* L_21 = V_1;
V_4 = ((RuntimeObject*)IsInst((RuntimeObject*)L_21, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_22 = V_4;
if (!L_22)
{
goto IL_0098;
}
}
{
RuntimeObject* L_23 = V_4;
NullCheck(L_23);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_23);
}
IL_0098:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_007b_1;
}
IL_0066_1:
{
RuntimeObject* L_24 = V_1;
NullCheck(L_24);
RuntimeObject* L_25;
L_25 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_24);
V_5 = ((WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E*)CastclassClass((RuntimeObject*)L_25, WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E_il2cpp_TypeInfo_var));
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_26 = ___elementList0;
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_27 = V_5;
NullCheck(L_26);
VirtualActionInvoker1< RuntimeObject* >::Invoke(41 /* System.Void System.Collections.ArrayList::Remove(System.Object) */, L_26, L_27);
}
IL_007b_1:
{
RuntimeObject* L_28 = V_1;
NullCheck(L_28);
bool L_29;
L_29 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_28);
if (L_29)
{
goto IL_0066_1;
}
}
{
goto IL_0099;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0099:
{
return (WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E*)NULL;
}
IL_009b:
{
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_30 = V_3;
return L_30;
}
}
// System.Void System.Xml.XmlDocument::AddElementWithId(System.String,System.Xml.XmlElement)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_AddElementWithId_m179458DD48014AD4C76126306A42F49A98433187 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___id0, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___elem1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* V_0 = NULL;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* V_1 = NULL;
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->___htElementIdMap_5;
if (!L_0)
{
goto IL_0016;
}
}
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_1 = __this->___htElementIdMap_5;
String_t* L_2 = ___id0;
NullCheck(L_1);
bool L_3;
L_3 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(26 /* System.Boolean System.Collections.Hashtable::Contains(System.Object) */, L_1, L_2);
if (L_3)
{
goto IL_004a;
}
}
IL_0016:
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_4 = __this->___htElementIdMap_5;
if (L_4)
{
goto IL_0029;
}
}
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_5 = (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D*)il2cpp_codegen_object_new(Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var);
NullCheck(L_5);
Hashtable__ctor_mD7E2F1EB1BFD683186ECD6EDBE1708AF35C3A87D(L_5, NULL);
__this->___htElementIdMap_5 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&__this->___htElementIdMap_5), (void*)L_5);
}
IL_0029:
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_6 = (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)il2cpp_codegen_object_new(ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var);
NullCheck(L_6);
ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80(L_6, NULL);
V_0 = L_6;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_7 = V_0;
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_8 = ___elem1;
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_9 = (WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E*)il2cpp_codegen_object_new(WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E_il2cpp_TypeInfo_var);
NullCheck(L_9);
WeakReference__ctor_m5F9E2F970CD85965A003C0B37ABDBFAA1F5CF241(L_9, L_8, NULL);
NullCheck(L_7);
int32_t L_10;
L_10 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_7, L_9);
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_11 = __this->___htElementIdMap_5;
String_t* L_12 = ___id0;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_13 = V_0;
NullCheck(L_11);
VirtualActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(23 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_11, L_12, L_13);
return;
}
IL_004a:
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_14 = __this->___htElementIdMap_5;
String_t* L_15 = ___id0;
NullCheck(L_14);
RuntimeObject* L_16;
L_16 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(30 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_14, L_15);
V_1 = ((ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)CastclassClass((RuntimeObject*)L_16, ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var));
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_17 = V_1;
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_18 = ___elem1;
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_19;
L_19 = XmlDocument_GetElement_mC0411EE67C03B9FD52F41B70C7320E51A67C2463(__this, L_17, L_18, NULL);
if (L_19)
{
goto IL_0073;
}
}
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_20 = V_1;
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_21 = ___elem1;
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_22 = (WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E*)il2cpp_codegen_object_new(WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E_il2cpp_TypeInfo_var);
NullCheck(L_22);
WeakReference__ctor_m5F9E2F970CD85965A003C0B37ABDBFAA1F5CF241(L_22, L_21, NULL);
NullCheck(L_20);
int32_t L_23;
L_23 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_20, L_22);
}
IL_0073:
{
return;
}
}
// System.Void System.Xml.XmlDocument::RemoveElementWithId(System.String,System.Xml.XmlElement)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_RemoveElementWithId_mD930DEA6A023E00A7D376D2F5B7D5283414ECE03 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___id0, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___elem1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* V_0 = NULL;
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* V_1 = NULL;
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->___htElementIdMap_5;
if (!L_0)
{
goto IL_004f;
}
}
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_1 = __this->___htElementIdMap_5;
String_t* L_2 = ___id0;
NullCheck(L_1);
bool L_3;
L_3 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(26 /* System.Boolean System.Collections.Hashtable::Contains(System.Object) */, L_1, L_2);
if (!L_3)
{
goto IL_004f;
}
}
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_4 = __this->___htElementIdMap_5;
String_t* L_5 = ___id0;
NullCheck(L_4);
RuntimeObject* L_6;
L_6 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(30 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_4, L_5);
V_0 = ((ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)CastclassClass((RuntimeObject*)L_6, ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var));
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_7 = V_0;
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_8 = ___elem1;
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_9;
L_9 = XmlDocument_GetElement_mC0411EE67C03B9FD52F41B70C7320E51A67C2463(__this, L_7, L_8, NULL);
V_1 = L_9;
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_10 = V_1;
if (!L_10)
{
goto IL_004f;
}
}
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_11 = V_0;
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_12 = V_1;
NullCheck(L_11);
VirtualActionInvoker1< RuntimeObject* >::Invoke(41 /* System.Void System.Collections.ArrayList::Remove(System.Object) */, L_11, L_12);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_13 = V_0;
NullCheck(L_13);
int32_t L_14;
L_14 = VirtualFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_13);
if (L_14)
{
goto IL_004f;
}
}
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_15 = __this->___htElementIdMap_5;
String_t* L_16 = ___id0;
NullCheck(L_15);
VirtualActionInvoker1< RuntimeObject* >::Invoke(40 /* System.Void System.Collections.Hashtable::Remove(System.Object) */, L_15, L_16);
}
IL_004f:
{
return;
}
}
// System.Xml.XmlNode System.Xml.XmlDocument::CloneNode(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlDocument_CloneNode_m0604830BCDF3E8CF6BA604FAB35019942A85EC52 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, bool ___deep0, const RuntimeMethod* method)
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* V_0 = NULL;
{
XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* L_0;
L_0 = XmlDocument_get_Implementation_m627A29B6D4CA09108F494BBE9AE070155CA6AE10_inline(__this, NULL);
NullCheck(L_0);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1;
L_1 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(4 /* System.Xml.XmlDocument System.Xml.XmlImplementation::CreateDocument() */, L_0);
V_0 = L_1;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_2 = V_0;
String_t* L_3 = __this->___baseURI_37;
NullCheck(L_2);
XmlDocument_SetBaseURI_mE44F99B7DFBF6C63E7041125703303F9146C146E_inline(L_2, L_3, NULL);
bool L_4 = ___deep0;
if (!L_4)
{
goto IL_0024;
}
}
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_5 = V_0;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_6 = V_0;
bool L_7 = ___deep0;
NullCheck(L_5);
XmlDocument_ImportChildren_mAB48DB0FA4C4964B00F4EC316E3942CE7AAB092B(L_5, __this, L_6, L_7, NULL);
}
IL_0024:
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_8 = V_0;
return L_8;
}
}
// System.Xml.XmlNodeType System.Xml.XmlDocument::get_NodeType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlDocument_get_NodeType_m49BC1016CABB8F3949B923DA9E6C89EEB676BC37 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method)
{
{
return (int32_t)(((int32_t)9));
}
}
// System.Xml.XmlNode System.Xml.XmlDocument::get_ParentNode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlDocument_get_ParentNode_m6D355D866D03A2671BC17D7DF8BFD3BFDB86D9E7 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method)
{
{
return (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL;
}
}
// System.Xml.XmlDocumentType System.Xml.XmlDocument::get_DocumentType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* XmlDocument_get_DocumentType_m1140163BB68318E3D2532BD7F5C8BC96E476166F (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0;
L_0 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, int32_t >::Invoke(49 /* System.Xml.XmlNode System.Xml.XmlNode::FindChild(System.Xml.XmlNodeType) */, __this, ((int32_t)10));
return ((XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E*)CastclassClass((RuntimeObject*)L_0, XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E_il2cpp_TypeInfo_var));
}
}
// System.Xml.XmlDeclaration System.Xml.XmlDocument::get_Declaration()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* XmlDocument_get_Declaration_mABC644137ED057F2955C7F545529D5E5E88D4E18 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
bool L_0;
L_0 = VirtualFuncInvoker0< bool >::Invoke(30 /* System.Boolean System.Xml.XmlNode::get_HasChildNodes() */, __this);
if (!L_0)
{
goto IL_0014;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1;
L_1 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(16 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, __this);
return ((XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79*)IsInstClass((RuntimeObject*)L_1, XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79_il2cpp_TypeInfo_var));
}
IL_0014:
{
return (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79*)NULL;
}
}
// System.Xml.XmlImplementation System.Xml.XmlDocument::get_Implementation()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* XmlDocument_get_Implementation_m627A29B6D4CA09108F494BBE9AE070155CA6AE10 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method)
{
{
XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* L_0 = __this->___implementation_1;
return L_0;
}
}
// System.String System.Xml.XmlDocument::get_Name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDocument_get_Name_mDD3B83B70FA0065CE4959C41BD569084E2219C35 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___strDocumentName_21;
return L_0;
}
}
// System.String System.Xml.XmlDocument::get_LocalName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDocument_get_LocalName_mF25545A8C83B64CB8E28DC2983997B2F860AD5A9 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___strDocumentName_21;
return L_0;
}
}
// System.Xml.XmlElement System.Xml.XmlDocument::get_DocumentElement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* XmlDocument_get_DocumentElement_mE87523DCD2D59F8BA6175DBA01D70133E202A2C8 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0;
L_0 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, int32_t >::Invoke(49 /* System.Xml.XmlNode System.Xml.XmlNode::FindChild(System.Xml.XmlNodeType) */, __this, 1);
return ((XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)CastclassClass((RuntimeObject*)L_0, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var));
}
}
// System.Boolean System.Xml.XmlDocument::get_IsContainer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocument_get_IsContainer_m29AAC4ECD22B540A7925545514A74046A0D913D0 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Xml.XmlLinkedNode System.Xml.XmlDocument::get_LastNode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* XmlDocument_get_LastNode_mFD3B03A02F28E2CE7F57AB2A60E4FA433661072E (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method)
{
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_0 = __this->___lastChild_3;
return L_0;
}
}
// System.Void System.Xml.XmlDocument::set_LastNode(System.Xml.XmlLinkedNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_set_LastNode_m5C24F0CF42B5D0B43E8FD84DCEF3B5E043E6FA06 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* ___value0, const RuntimeMethod* method)
{
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_0 = ___value0;
__this->___lastChild_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___lastChild_3), (void*)L_0);
return;
}
}
// System.Xml.XmlDocument System.Xml.XmlDocument::get_OwnerDocument()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* XmlDocument_get_OwnerDocument_m788476A40E88383B623B2868509E14C9BE1AD31A (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method)
{
{
return (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B*)NULL;
}
}
// System.Void System.Xml.XmlDocument::set_Schemas(System.Xml.Schema.XmlSchemaSet)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_set_Schemas_m434B1F13D18F926E959FCC426F4731C9AC385A3B (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* ___value0, const RuntimeMethod* method)
{
{
XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* L_0 = ___value0;
__this->___schemas_8 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___schemas_8), (void*)L_0);
return;
}
}
// System.Boolean System.Xml.XmlDocument::get_CanReportValidity()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocument_get_CanReportValidity_m71D1E8A3FCDBF648B6E83D5B7690FD0FD40F8736 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___reportValidity_9;
return L_0;
}
}
// System.Boolean System.Xml.XmlDocument::get_HasSetResolver()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocument_get_HasSetResolver_m7CBB11C7E27D95CD697F177B965CEB2E1E71358D (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___bSetResolver_39;
return L_0;
}
}
// System.Xml.XmlResolver System.Xml.XmlDocument::GetResolver()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* XmlDocument_GetResolver_m0B1F443F2DF5510E0733052D42BC984CB83F9119 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method)
{
{
XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_0 = __this->___resolver_38;
return L_0;
}
}
// System.Void System.Xml.XmlDocument::set_XmlResolver(System.Xml.XmlResolver)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_set_XmlResolver_m038B23D61224FC97587D7D23B4F8C8DA77CB79A2 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NamedPermissionSet_tE1762DB096B3A45291DA354EC7DD1C5A1F74B97C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9FAB579E06FD5A2A9B62FE98BC75A44AD54D0411);
s_Il2CppMethodInitialized = true;
}
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* V_0 = NULL;
SecurityException_t025CB4C23107E67E07CF085826B40EDE72F8165C* V_1 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_0 = ___value0;
if (!L_0)
{
goto IL_0026;
}
}
try
{// begin try (depth: 1)
NamedPermissionSet_tE1762DB096B3A45291DA354EC7DD1C5A1F74B97C* L_1 = (NamedPermissionSet_tE1762DB096B3A45291DA354EC7DD1C5A1F74B97C*)il2cpp_codegen_object_new(NamedPermissionSet_tE1762DB096B3A45291DA354EC7DD1C5A1F74B97C_il2cpp_TypeInfo_var);
NullCheck(L_1);
NamedPermissionSet__ctor_m1D5A76228715492C38EE3D9A2ED3169A8BD8D35C(L_1, _stringLiteral9FAB579E06FD5A2A9B62FE98BC75A44AD54D0411, NULL);
NullCheck(L_1);
PermissionSet_Demand_m55BF40577827F784ECC9F488DFD21EC44CB4F7A3(L_1, NULL);
goto IL_0026;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SecurityException_t025CB4C23107E67E07CF085826B40EDE72F8165C_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0014;
}
throw e;
}
CATCH_0014:
{// begin catch(System.Security.SecurityException)
V_1 = ((SecurityException_t025CB4C23107E67E07CF085826B40EDE72F8165C*)IL2CPP_GET_ACTIVE_EXCEPTION(SecurityException_t025CB4C23107E67E07CF085826B40EDE72F8165C*));
String_t* L_2;
L_2 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral84567276A1D85E7AAD9B3A65F981930ECAFBE10B)), NULL);
SecurityException_t025CB4C23107E67E07CF085826B40EDE72F8165C* L_3 = V_1;
SecurityException_t025CB4C23107E67E07CF085826B40EDE72F8165C* L_4 = (SecurityException_t025CB4C23107E67E07CF085826B40EDE72F8165C*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SecurityException_t025CB4C23107E67E07CF085826B40EDE72F8165C_il2cpp_TypeInfo_var)));
NullCheck(L_4);
SecurityException__ctor_m391348DD238BF0A84BA957ADB363F74EB7CF3059(L_4, L_2, L_3, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlDocument_set_XmlResolver_m038B23D61224FC97587D7D23B4F8C8DA77CB79A2_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_0026:
{
XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_5 = ___value0;
__this->___resolver_38 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&__this->___resolver_38), (void*)L_5);
bool L_6 = __this->___bSetResolver_39;
if (L_6)
{
goto IL_003c;
}
}
{
__this->___bSetResolver_39 = (bool)1;
}
IL_003c:
{
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_7;
L_7 = VirtualFuncInvoker0< XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* >::Invoke(56 /* System.Xml.XmlDocumentType System.Xml.XmlDocument::get_DocumentType() */, __this);
V_0 = L_7;
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_8 = V_0;
if (!L_8)
{
goto IL_004d;
}
}
{
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_9 = V_0;
NullCheck(L_9);
XmlDocumentType_set_DtdSchemaInfo_m6E419933465D42DAB30AD7C6FFF7ACCC6D78A4E6_inline(L_9, (SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E*)NULL, NULL);
}
IL_004d:
{
return;
}
}
// System.Boolean System.Xml.XmlDocument::IsValidChildType(System.Xml.XmlNodeType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocument_IsValidChildType_m9140E7E6187566178EBF6F505125509D5EDC9AC9 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, int32_t ___type0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___type0;
if ((((int32_t)L_0) == ((int32_t)1)))
{
goto IL_0056;
}
}
{
int32_t L_1 = ___type0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_1, 7)))
{
case 0:
{
goto IL_003a;
}
case 1:
{
goto IL_003a;
}
case 2:
{
goto IL_008a;
}
case 3:
{
goto IL_003c;
}
case 4:
{
goto IL_008a;
}
case 5:
{
goto IL_008a;
}
case 6:
{
goto IL_003a;
}
case 7:
{
goto IL_003a;
}
case 8:
{
goto IL_008a;
}
case 9:
{
goto IL_008a;
}
case 10:
{
goto IL_0070;
}
}
}
{
goto IL_008a;
}
IL_003a:
{
return (bool)1;
}
IL_003c:
{
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_2;
L_2 = VirtualFuncInvoker0< XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* >::Invoke(56 /* System.Xml.XmlDocumentType System.Xml.XmlDocument::get_DocumentType() */, __this);
if (!L_2)
{
goto IL_0054;
}
}
{
String_t* L_3;
L_3 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral88FE25385F8BFC1F8C027A8AD8AECE97C41561D6)), NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_4 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_4);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_4, L_3, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlDocument_IsValidChildType_m9140E7E6187566178EBF6F505125509D5EDC9AC9_RuntimeMethod_var)));
}
IL_0054:
{
return (bool)1;
}
IL_0056:
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_5;
L_5 = XmlDocument_get_DocumentElement_mE87523DCD2D59F8BA6175DBA01D70133E202A2C8(__this, NULL);
if (!L_5)
{
goto IL_006e;
}
}
{
String_t* L_6;
L_6 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral06C6EF334A248557A31ACC1740CAA2A6A788ECD5)), NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_7 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_7);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_7, L_6, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlDocument_IsValidChildType_m9140E7E6187566178EBF6F505125509D5EDC9AC9_RuntimeMethod_var)));
}
IL_006e:
{
return (bool)1;
}
IL_0070:
{
XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* L_8;
L_8 = VirtualFuncInvoker0< XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* >::Invoke(57 /* System.Xml.XmlDeclaration System.Xml.XmlDocument::get_Declaration() */, __this);
if (!L_8)
{
goto IL_0088;
}
}
{
String_t* L_9;
L_9 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCF06C8F24964E50FF1069A8CEE33E689908FFB7E)), NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_10 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_10);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_10, L_9, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlDocument_IsValidChildType_m9140E7E6187566178EBF6F505125509D5EDC9AC9_RuntimeMethod_var)));
}
IL_0088:
{
return (bool)1;
}
IL_008a:
{
return (bool)0;
}
}
// System.Boolean System.Xml.XmlDocument::HasNodeTypeInPrevSiblings(System.Xml.XmlNodeType,System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocument_HasNodeTypeInPrevSiblings_m62FDB4009BEF04A3D1A291575A005966E0E21AC3 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, int32_t ___nt0, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___refNode1, const RuntimeMethod* method)
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL;
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___refNode1;
if (L_0)
{
goto IL_0005;
}
}
{
return (bool)0;
}
IL_0005:
{
V_0 = (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = ___refNode1;
NullCheck(L_1);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2;
L_2 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(10 /* System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() */, L_1);
if (!L_2)
{
goto IL_0033;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = ___refNode1;
NullCheck(L_3);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4;
L_4 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(10 /* System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() */, L_3);
NullCheck(L_4);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5;
L_5 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(16 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, L_4);
V_0 = L_5;
goto IL_0033;
}
IL_001d:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6 = V_0;
NullCheck(L_6);
int32_t L_7;
L_7 = VirtualFuncInvoker0< int32_t >::Invoke(9 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_6);
int32_t L_8 = ___nt0;
if ((!(((uint32_t)L_7) == ((uint32_t)L_8))))
{
goto IL_0028;
}
}
{
return (bool)1;
}
IL_0028:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_9 = V_0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_10 = ___refNode1;
if ((((RuntimeObject*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)L_9) == ((RuntimeObject*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)L_10)))
{
goto IL_0036;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_11 = V_0;
NullCheck(L_11);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_12;
L_12 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(13 /* System.Xml.XmlNode System.Xml.XmlNode::get_NextSibling() */, L_11);
V_0 = L_12;
}
IL_0033:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_13 = V_0;
if (L_13)
{
goto IL_001d;
}
}
IL_0036:
{
return (bool)0;
}
}
// System.Boolean System.Xml.XmlDocument::HasNodeTypeInNextSiblings(System.Xml.XmlNodeType,System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocument_HasNodeTypeInNextSiblings_mD65FA58F532B9875E1BB7AE149C98E608BAE44A4 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, int32_t ___nt0, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___refNode1, const RuntimeMethod* method)
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL;
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___refNode1;
V_0 = L_0;
goto IL_0016;
}
IL_0004:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = V_0;
NullCheck(L_1);
int32_t L_2;
L_2 = VirtualFuncInvoker0< int32_t >::Invoke(9 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_1);
int32_t L_3 = ___nt0;
if ((!(((uint32_t)L_2) == ((uint32_t)L_3))))
{
goto IL_000f;
}
}
{
return (bool)1;
}
IL_000f:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4 = V_0;
NullCheck(L_4);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5;
L_5 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(13 /* System.Xml.XmlNode System.Xml.XmlNode::get_NextSibling() */, L_4);
V_0 = L_5;
}
IL_0016:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6 = V_0;
if (L_6)
{
goto IL_0004;
}
}
{
return (bool)0;
}
}
// System.Boolean System.Xml.XmlDocument::CanInsertBefore(System.Xml.XmlNode,System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocument_CanInsertBefore_mF198BBA82E0C9436C35F8B90F89810354788E20B (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___newChild0, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___refChild1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___refChild1;
if (L_0)
{
goto IL_000b;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1;
L_1 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(16 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, __this);
___refChild1 = L_1;
}
IL_000b:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = ___refChild1;
if (L_2)
{
goto IL_0010;
}
}
{
return (bool)1;
}
IL_0010:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = ___newChild0;
NullCheck(L_3);
int32_t L_4;
L_4 = VirtualFuncInvoker0< int32_t >::Invoke(9 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_3);
V_0 = L_4;
int32_t L_5 = V_0;
if ((((int32_t)L_5) > ((int32_t)8)))
{
goto IL_0027;
}
}
{
int32_t L_6 = V_0;
if ((((int32_t)L_6) == ((int32_t)1)))
{
goto IL_0064;
}
}
{
int32_t L_7 = V_0;
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_7, 7))) > ((uint32_t)1))))
{
goto IL_003b;
}
}
{
goto IL_007b;
}
IL_0027:
{
int32_t L_8 = V_0;
if ((((int32_t)L_8) == ((int32_t)((int32_t)10))))
{
goto IL_0049;
}
}
{
int32_t L_9 = V_0;
if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)17)))))
{
goto IL_007b;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_10 = ___refChild1;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_11;
L_11 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(16 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, __this);
return (bool)((((RuntimeObject*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)L_10) == ((RuntimeObject*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)L_11))? 1 : 0);
}
IL_003b:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_12 = ___refChild1;
NullCheck(L_12);
int32_t L_13;
L_13 = VirtualFuncInvoker0< int32_t >::Invoke(9 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_12);
return (bool)((((int32_t)((((int32_t)L_13) == ((int32_t)((int32_t)17)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0049:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_14 = ___refChild1;
NullCheck(L_14);
int32_t L_15;
L_15 = VirtualFuncInvoker0< int32_t >::Invoke(9 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_14);
if ((((int32_t)L_15) == ((int32_t)((int32_t)17))))
{
goto IL_007b;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_16 = ___refChild1;
NullCheck(L_16);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_17;
L_17 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(12 /* System.Xml.XmlNode System.Xml.XmlNode::get_PreviousSibling() */, L_16);
bool L_18;
L_18 = XmlDocument_HasNodeTypeInPrevSiblings_m62FDB4009BEF04A3D1A291575A005966E0E21AC3(__this, 1, L_17, NULL);
return (bool)((((int32_t)L_18) == ((int32_t)0))? 1 : 0);
}
IL_0064:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_19 = ___refChild1;
NullCheck(L_19);
int32_t L_20;
L_20 = VirtualFuncInvoker0< int32_t >::Invoke(9 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_19);
if ((((int32_t)L_20) == ((int32_t)((int32_t)17))))
{
goto IL_007b;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_21 = ___refChild1;
bool L_22;
L_22 = XmlDocument_HasNodeTypeInNextSiblings_mD65FA58F532B9875E1BB7AE149C98E608BAE44A4(__this, ((int32_t)10), L_21, NULL);
return (bool)((((int32_t)L_22) == ((int32_t)0))? 1 : 0);
}
IL_007b:
{
return (bool)0;
}
}
// System.Boolean System.Xml.XmlDocument::CanInsertAfter(System.Xml.XmlNode,System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocument_CanInsertAfter_m0041AFD890E382A6F754EE57E24E9BAAB764E8B5 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___newChild0, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___refChild1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___refChild1;
if (L_0)
{
goto IL_000b;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1;
L_1 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(17 /* System.Xml.XmlNode System.Xml.XmlNode::get_LastChild() */, __this);
___refChild1 = L_1;
}
IL_000b:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = ___refChild1;
if (L_2)
{
goto IL_0010;
}
}
{
return (bool)1;
}
IL_0010:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = ___newChild0;
NullCheck(L_3);
int32_t L_4;
L_4 = VirtualFuncInvoker0< int32_t >::Invoke(9 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_3);
V_0 = L_4;
int32_t L_5 = V_0;
if ((((int32_t)L_5) == ((int32_t)1)))
{
goto IL_0053;
}
}
{
int32_t L_6 = V_0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_6, 7)))
{
case 0:
{
goto IL_0045;
}
case 1:
{
goto IL_0045;
}
case 2:
{
goto IL_0065;
}
case 3:
{
goto IL_0047;
}
case 4:
{
goto IL_0065;
}
case 5:
{
goto IL_0065;
}
case 6:
{
goto IL_0045;
}
case 7:
{
goto IL_0045;
}
}
}
{
goto IL_0065;
}
IL_0045:
{
return (bool)1;
}
IL_0047:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_7 = ___refChild1;
bool L_8;
L_8 = XmlDocument_HasNodeTypeInPrevSiblings_m62FDB4009BEF04A3D1A291575A005966E0E21AC3(__this, 1, L_7, NULL);
return (bool)((((int32_t)L_8) == ((int32_t)0))? 1 : 0);
}
IL_0053:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_9 = ___refChild1;
NullCheck(L_9);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_10;
L_10 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(13 /* System.Xml.XmlNode System.Xml.XmlNode::get_NextSibling() */, L_9);
bool L_11;
L_11 = XmlDocument_HasNodeTypeInNextSiblings_mD65FA58F532B9875E1BB7AE149C98E608BAE44A4(__this, ((int32_t)10), L_10, NULL);
return (bool)((((int32_t)L_11) == ((int32_t)0))? 1 : 0);
}
IL_0065:
{
return (bool)0;
}
}
// System.Xml.XmlAttribute System.Xml.XmlDocument::CreateAttribute(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlDocument_CreateAttribute_m42F583C11D788DB6E7B1C2EFAF112CB0C6118D06 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___name0, 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* V_1 = NULL;
String_t* V_2 = NULL;
{
String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
V_0 = L_0;
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
V_1 = L_1;
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
V_2 = L_2;
String_t* L_3 = ___name0;
XmlNode_SplitName_mEE1283C3D3F04DE2E00FC693046D9297678F4571(L_3, (&V_0), (&V_1), NULL);
String_t* L_4 = V_0;
String_t* L_5 = V_1;
XmlDocument_SetDefaultNamespace_m29601B584036272B65DB2F31749975711A68E245(__this, L_4, L_5, (&V_2), NULL);
String_t* L_6 = V_0;
String_t* L_7 = V_1;
String_t* L_8 = V_2;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_9;
L_9 = VirtualFuncInvoker3< XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*, String_t*, String_t*, String_t* >::Invoke(69 /* System.Xml.XmlAttribute System.Xml.XmlDocument::CreateAttribute(System.String,System.String,System.String) */, __this, L_6, L_7, L_8);
return L_9;
}
}
// System.Void System.Xml.XmlDocument::SetDefaultNamespace(System.String,System.String,System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_SetDefaultNamespace_m29601B584036272B65DB2F31749975711A68E245 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___prefix0, String_t* ___localName1, String_t** ___namespaceURI2, const RuntimeMethod* method)
{
{
String_t* L_0 = ___prefix0;
String_t* L_1 = __this->___strXmlns_28;
bool L_2;
L_2 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_0, L_1, NULL);
if (L_2)
{
goto IL_0024;
}
}
{
String_t* L_3 = ___prefix0;
NullCheck(L_3);
int32_t L_4;
L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL);
if (L_4)
{
goto IL_002d;
}
}
{
String_t* L_5 = ___localName1;
String_t* L_6 = __this->___strXmlns_28;
bool L_7;
L_7 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_5, L_6, NULL);
if (!L_7)
{
goto IL_002d;
}
}
IL_0024:
{
String_t** L_8 = ___namespaceURI2;
String_t* L_9 = __this->___strReservedXmlns_35;
*((RuntimeObject**)L_8) = (RuntimeObject*)L_9;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_8, (void*)(RuntimeObject*)L_9);
return;
}
IL_002d:
{
String_t* L_10 = ___prefix0;
String_t* L_11 = __this->___strXml_29;
bool L_12;
L_12 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_10, L_11, NULL);
if (!L_12)
{
goto IL_0043;
}
}
{
String_t** L_13 = ___namespaceURI2;
String_t* L_14 = __this->___strReservedXml_36;
*((RuntimeObject**)L_13) = (RuntimeObject*)L_14;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_13, (void*)(RuntimeObject*)L_14);
}
IL_0043:
{
return;
}
}
// System.Xml.XmlCDataSection System.Xml.XmlDocument::CreateCDataSection(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA* XmlDocument_CreateCDataSection_m7071FBB41EB02D0C2964272D36838B500B8BE357 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___data0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
__this->___fCDataNodesPresent_18 = (bool)1;
String_t* L_0 = ___data0;
XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA* L_1 = (XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA*)il2cpp_codegen_object_new(XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA_il2cpp_TypeInfo_var);
NullCheck(L_1);
XmlCDataSection__ctor_m19CEC86EA9EFC8153A1293493E0B3E9EF89BE2BD(L_1, L_0, __this, NULL);
return L_1;
}
}
// System.Xml.XmlComment System.Xml.XmlDocument::CreateComment(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9* XmlDocument_CreateComment_mB58797474A14187D0236A63008EAC6C438521186 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___data0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___data0;
XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9* L_1 = (XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9*)il2cpp_codegen_object_new(XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9_il2cpp_TypeInfo_var);
NullCheck(L_1);
XmlComment__ctor_m74C0E3B050353E2B32B5218DF01F8EB8874BD819(L_1, L_0, __this, NULL);
return L_1;
}
}
// System.Xml.XmlDocumentType System.Xml.XmlDocument::CreateDocumentType(System.String,System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* XmlDocument_CreateDocumentType_mFAE023ACF5683AEE94A9065D5FEAFFF354FC37BB (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___name0, String_t* ___publicId1, String_t* ___systemId2, String_t* ___internalSubset3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___name0;
String_t* L_1 = ___publicId1;
String_t* L_2 = ___systemId2;
String_t* L_3 = ___internalSubset3;
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_4 = (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E*)il2cpp_codegen_object_new(XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E_il2cpp_TypeInfo_var);
NullCheck(L_4);
XmlDocumentType__ctor_m80A9D98B728A54F81611F785B3C6CB5E29D47344(L_4, L_0, L_1, L_2, L_3, __this, NULL);
return L_4;
}
}
// System.Xml.XmlDocumentFragment System.Xml.XmlDocument::CreateDocumentFragment()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* XmlDocument_CreateDocumentFragment_mB628A6B883A0F50FF0D5991A923CBF52D9B9DA99 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* L_0 = (XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD*)il2cpp_codegen_object_new(XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD_il2cpp_TypeInfo_var);
NullCheck(L_0);
XmlDocumentFragment__ctor_m5DFF7FEE2576ED62871EDD2EE4B03279630D1BC2(L_0, __this, NULL);
return L_0;
}
}
// System.Xml.XmlElement System.Xml.XmlDocument::CreateElement(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* XmlDocument_CreateElement_m4CFE00BFBBAE8805B2E5B7566E7C896334092E93 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___name0, 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* V_1 = NULL;
{
String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
V_0 = L_0;
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
V_1 = L_1;
String_t* L_2 = ___name0;
XmlNode_SplitName_mEE1283C3D3F04DE2E00FC693046D9297678F4571(L_2, (&V_0), (&V_1), NULL);
String_t* L_3 = V_0;
String_t* L_4 = V_1;
String_t* L_5 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_6;
L_6 = VirtualFuncInvoker3< XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*, String_t*, String_t*, String_t* >::Invoke(71 /* System.Xml.XmlElement System.Xml.XmlDocument::CreateElement(System.String,System.String,System.String) */, __this, L_3, L_4, L_5);
return L_6;
}
}
// System.Void System.Xml.XmlDocument::AddDefaultAttributes(System.Xml.XmlElement)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_AddDefaultAttributes_mD1EF2D680D9891D533CBB7493E080240528F108C (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___elem0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_GetEnumerator_mAFB53EF60E7055593407621A31F67B315FB25F80_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_tAFD022FCAA040EAEC1263E2EF82A45C956378717_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionaryEnumerator_tE129D608FCDB7207E0F0ECE33473CC950A83AD16_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* V_0 = NULL;
SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* V_1 = NULL;
RuntimeObject* V_2 = NULL;
SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* V_3 = NULL;
String_t* V_4 = NULL;
String_t* V_5 = NULL;
String_t* V_6 = NULL;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_7 = NULL;
{
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_0;
L_0 = XmlDocument_get_DtdSchemaInfo_mF52E9F32AB9D1914DBC6D91A8277AE843B6E1E6E_inline(__this, NULL);
V_0 = L_0;
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_1 = ___elem0;
SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_2;
L_2 = XmlDocument_GetSchemaElementDecl_m8096E8CA8850D889EF774A9DC2596486DFBA00A6(__this, L_1, NULL);
V_1 = L_2;
SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_3 = V_1;
if (!L_3)
{
goto IL_00bb;
}
}
{
SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_4 = V_1;
NullCheck(L_4);
Dictionary_2_tB85C1B2FFF985BA01AD2B7199C083B43C1476CC1* L_5;
L_5 = SchemaElementDecl_get_AttDefs_m2E3114DFAB8D978CBFAA6E31C2CD18A9AA9DAC50_inline(L_4, NULL);
if (!L_5)
{
goto IL_00bb;
}
}
{
SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_6 = V_1;
NullCheck(L_6);
Dictionary_2_tB85C1B2FFF985BA01AD2B7199C083B43C1476CC1* L_7;
L_7 = SchemaElementDecl_get_AttDefs_m2E3114DFAB8D978CBFAA6E31C2CD18A9AA9DAC50_inline(L_6, NULL);
NullCheck(L_7);
Enumerator_tAFD022FCAA040EAEC1263E2EF82A45C956378717 L_8;
L_8 = Dictionary_2_GetEnumerator_mAFB53EF60E7055593407621A31F67B315FB25F80(L_7, Dictionary_2_GetEnumerator_mAFB53EF60E7055593407621A31F67B315FB25F80_RuntimeMethod_var);
Enumerator_tAFD022FCAA040EAEC1263E2EF82A45C956378717 L_9 = L_8;
RuntimeObject* L_10 = Box(Enumerator_tAFD022FCAA040EAEC1263E2EF82A45C956378717_il2cpp_TypeInfo_var, &L_9);
V_2 = (RuntimeObject*)L_10;
goto IL_00b0;
}
IL_0033:
{
RuntimeObject* L_11 = V_2;
NullCheck(L_11);
RuntimeObject* L_12;
L_12 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IDictionaryEnumerator::get_Value() */, IDictionaryEnumerator_tE129D608FCDB7207E0F0ECE33473CC950A83AD16_il2cpp_TypeInfo_var, L_11);
V_3 = ((SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553*)CastclassSealed((RuntimeObject*)L_12, SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553_il2cpp_TypeInfo_var));
SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_13 = V_3;
NullCheck(L_13);
int32_t L_14;
L_14 = SchemaDeclBase_get_Presence_mCF2610A186758B71CAFF2FC2586D9B604C2AE539_inline(L_13, NULL);
if (!L_14)
{
goto IL_0050;
}
}
{
SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_15 = V_3;
NullCheck(L_15);
int32_t L_16;
L_16 = SchemaDeclBase_get_Presence_mCF2610A186758B71CAFF2FC2586D9B604C2AE539_inline(L_15, NULL);
if ((!(((uint32_t)L_16) == ((uint32_t)3))))
{
goto IL_00b0;
}
}
IL_0050:
{
String_t* L_17 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
V_4 = L_17;
SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_18 = V_3;
NullCheck(L_18);
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_19;
L_19 = SchemaDeclBase_get_Name_m013DF0DD721FE902399C2DF4D2E6F8DAD50ECFAE_inline(L_18, NULL);
NullCheck(L_19);
String_t* L_20;
L_20 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_19, NULL);
V_5 = L_20;
String_t* L_21 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
V_6 = L_21;
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_22 = V_0;
NullCheck(L_22);
int32_t L_23;
L_23 = SchemaInfo_get_SchemaType_m44BE9221A63C4D13AE45A2054A875B533518B0FC_inline(L_22, NULL);
if ((!(((uint32_t)L_23) == ((uint32_t)1))))
{
goto IL_0083;
}
}
{
SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_24 = V_3;
NullCheck(L_24);
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_25;
L_25 = SchemaDeclBase_get_Name_m013DF0DD721FE902399C2DF4D2E6F8DAD50ECFAE_inline(L_24, NULL);
NullCheck(L_25);
String_t* L_26;
L_26 = XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline(L_25, NULL);
V_4 = L_26;
goto IL_0098;
}
IL_0083:
{
SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_27 = V_3;
NullCheck(L_27);
String_t* L_28;
L_28 = SchemaDeclBase_get_Prefix_mE72A285F12958A0C40F8CDEDA2838B3A09233455(L_27, NULL);
V_4 = L_28;
SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_29 = V_3;
NullCheck(L_29);
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_30;
L_30 = SchemaDeclBase_get_Name_m013DF0DD721FE902399C2DF4D2E6F8DAD50ECFAE_inline(L_29, NULL);
NullCheck(L_30);
String_t* L_31;
L_31 = XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline(L_30, NULL);
V_6 = L_31;
}
IL_0098:
{
SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_32 = V_3;
String_t* L_33 = V_4;
String_t* L_34 = V_5;
String_t* L_35 = V_6;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_36;
L_36 = XmlDocument_PrepareDefaultAttribute_mB209B5E427A134931A258026446829B816E9A526(__this, L_32, L_33, L_34, L_35, NULL);
V_7 = L_36;
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_37 = ___elem0;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_38 = V_7;
NullCheck(L_37);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_39;
L_39 = VirtualFuncInvoker1< XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* >::Invoke(60 /* System.Xml.XmlAttribute System.Xml.XmlElement::SetAttributeNode(System.Xml.XmlAttribute) */, L_37, L_38);
}
IL_00b0:
{
RuntimeObject* L_40 = V_2;
NullCheck(L_40);
bool L_41;
L_41 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_40);
if (L_41)
{
goto IL_0033;
}
}
IL_00bb:
{
return;
}
}
// System.Xml.Schema.SchemaElementDecl System.Xml.XmlDocument::GetSchemaElementDecl(System.Xml.XmlElement)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* XmlDocument_GetSchemaElementDecl_m8096E8CA8850D889EF774A9DC2596486DFBA00A6 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___elem0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_m15B366BD9B5A92299439677E2C60B2B46E07157A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* V_0 = NULL;
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* V_1 = NULL;
SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* V_2 = NULL;
String_t* G_B3_0 = NULL;
String_t* G_B2_0 = NULL;
String_t* G_B4_0 = NULL;
String_t* G_B4_1 = NULL;
{
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_0;
L_0 = XmlDocument_get_DtdSchemaInfo_mF52E9F32AB9D1914DBC6D91A8277AE843B6E1E6E_inline(__this, NULL);
V_0 = L_0;
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_1 = V_0;
if (!L_1)
{
goto IL_003f;
}
}
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_2 = ___elem0;
NullCheck(L_2);
String_t* L_3;
L_3 = VirtualFuncInvoker0< String_t* >::Invoke(36 /* System.String System.Xml.XmlNode::get_LocalName() */, L_2);
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_4 = V_0;
NullCheck(L_4);
int32_t L_5;
L_5 = SchemaInfo_get_SchemaType_m44BE9221A63C4D13AE45A2054A875B533518B0FC_inline(L_4, NULL);
G_B2_0 = L_3;
if ((((int32_t)L_5) == ((int32_t)1)))
{
G_B3_0 = L_3;
goto IL_0021;
}
}
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_6 = ___elem0;
NullCheck(L_6);
String_t* L_7;
L_7 = VirtualFuncInvoker0< String_t* >::Invoke(33 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_6);
G_B4_0 = L_7;
G_B4_1 = G_B2_0;
goto IL_0027;
}
IL_0021:
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_8 = ___elem0;
NullCheck(L_8);
String_t* L_9;
L_9 = VirtualFuncInvoker0< String_t* >::Invoke(34 /* System.String System.Xml.XmlNode::get_Prefix() */, L_8);
G_B4_0 = L_9;
G_B4_1 = G_B3_0;
}
IL_0027:
{
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_10 = (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)il2cpp_codegen_object_new(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var);
NullCheck(L_10);
XmlQualifiedName__ctor_m65632114A1726D9FAD0338BC2A8C28BB9D262C7B(L_10, G_B4_1, G_B4_0, NULL);
V_1 = L_10;
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_11 = V_0;
NullCheck(L_11);
Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A* L_12;
L_12 = SchemaInfo_get_ElementDecls_m238E5681BECA397E7010F7BEFBAC2D0FBEC43BD7_inline(L_11, NULL);
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_13 = V_1;
NullCheck(L_12);
bool L_14;
L_14 = Dictionary_2_TryGetValue_m15B366BD9B5A92299439677E2C60B2B46E07157A(L_12, L_13, (&V_2), Dictionary_2_TryGetValue_m15B366BD9B5A92299439677E2C60B2B46E07157A_RuntimeMethod_var);
if (!L_14)
{
goto IL_003f;
}
}
{
SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_15 = V_2;
return L_15;
}
IL_003f:
{
return (SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD*)NULL;
}
}
// System.Xml.XmlAttribute System.Xml.XmlDocument::PrepareDefaultAttribute(System.Xml.Schema.SchemaAttDef,System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlDocument_PrepareDefaultAttribute_mB209B5E427A134931A258026446829B816E9A526 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* ___attdef0, String_t* ___attrPrefix1, String_t* ___attrLocalname2, String_t* ___attrNamespaceURI3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* V_0 = NULL;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* G_B2_0 = NULL;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* G_B1_0 = NULL;
{
String_t* L_0 = ___attrPrefix1;
String_t* L_1 = ___attrLocalname2;
XmlDocument_SetDefaultNamespace_m29601B584036272B65DB2F31749975711A68E245(__this, L_0, L_1, (&___attrNamespaceURI3), NULL);
String_t* L_2 = ___attrPrefix1;
String_t* L_3 = ___attrLocalname2;
String_t* L_4 = ___attrNamespaceURI3;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_5;
L_5 = VirtualFuncInvoker3< XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*, String_t*, String_t*, String_t* >::Invoke(70 /* System.Xml.XmlAttribute System.Xml.XmlDocument::CreateDefaultAttribute(System.String,System.String,System.String) */, __this, L_2, L_3, L_4);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_6 = L_5;
SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_7 = ___attdef0;
NullCheck(L_7);
String_t* L_8;
L_8 = SchemaDeclBase_get_DefaultValueRaw_m794A7DCEA1AE2B3B4D71DB45B913FCAA16657936(L_7, NULL);
NullCheck(L_6);
VirtualActionInvoker1< String_t* >::Invoke(40 /* System.Void System.Xml.XmlNode::set_InnerXml(System.String) */, L_6, L_8);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_9 = L_6;
V_0 = ((XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC*)IsInstClass((RuntimeObject*)L_9, XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC_il2cpp_TypeInfo_var));
XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* L_10 = V_0;
G_B1_0 = L_9;
if (!L_10)
{
G_B2_0 = L_9;
goto IL_0031;
}
}
{
XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* L_11 = V_0;
NullCheck(L_11);
XmlUnspecifiedAttribute_SetSpecified_m1CF67FF3E90E62DC5B0983B8DE91B6E95228509B_inline(L_11, (bool)0, NULL);
G_B2_0 = G_B1_0;
}
IL_0031:
{
return G_B2_0;
}
}
// System.Xml.XmlEntityReference System.Xml.XmlDocument::CreateEntityReference(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* XmlDocument_CreateEntityReference_m50AB66E331A78B8F0CC456C076E3E2E0B377F552 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___name0;
XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_1 = (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684*)il2cpp_codegen_object_new(XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684_il2cpp_TypeInfo_var);
NullCheck(L_1);
XmlEntityReference__ctor_m7AAF0A5672B04060ECEAFAB3DF7E93DA8A7B6A94(L_1, L_0, __this, NULL);
return L_1;
}
}
// System.Xml.XmlProcessingInstruction System.Xml.XmlDocument::CreateProcessingInstruction(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3* XmlDocument_CreateProcessingInstruction_mBD46269C3849A35D68DF9D09ECE2EA154206EB82 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___target0, String_t* ___data1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___target0;
String_t* L_1 = ___data1;
XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3* L_2 = (XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3*)il2cpp_codegen_object_new(XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3_il2cpp_TypeInfo_var);
NullCheck(L_2);
XmlProcessingInstruction__ctor_m80AB71B3DDC0E1164705B676AD06037ACEB2FD67(L_2, L_0, L_1, __this, NULL);
return L_2;
}
}
// System.Xml.XmlDeclaration System.Xml.XmlDocument::CreateXmlDeclaration(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* XmlDocument_CreateXmlDeclaration_m6937F935710563ED28D567D05E34E081D8098E4A (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___version0, String_t* ___encoding1, String_t* ___standalone2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___version0;
String_t* L_1 = ___encoding1;
String_t* L_2 = ___standalone2;
XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* L_3 = (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79*)il2cpp_codegen_object_new(XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79_il2cpp_TypeInfo_var);
NullCheck(L_3);
XmlDeclaration__ctor_mBAEA7104B9DA9F3DAE632B9063BF96BF6A40B116(L_3, L_0, L_1, L_2, __this, NULL);
return L_3;
}
}
// System.Xml.XmlText System.Xml.XmlDocument::CreateTextNode(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* XmlDocument_CreateTextNode_m3663B3E620500B81989742CDB40A79568DF88430 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___text0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___text0;
XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* L_1 = (XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A*)il2cpp_codegen_object_new(XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A_il2cpp_TypeInfo_var);
NullCheck(L_1);
XmlText__ctor_m8FFB8DDBB2C9013F10FD94A1573DCF6A2F104059(L_1, L_0, __this, NULL);
return L_1;
}
}
// System.Xml.XmlSignificantWhitespace System.Xml.XmlDocument::CreateSignificantWhitespace(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE* XmlDocument_CreateSignificantWhitespace_mF1237E2577D67F962082483A874C0C8F055D1596 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___text0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___text0;
XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE* L_1 = (XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE*)il2cpp_codegen_object_new(XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE_il2cpp_TypeInfo_var);
NullCheck(L_1);
XmlSignificantWhitespace__ctor_mCE8AE4FC827464B5A5A54191D5D62E2AF41E078F(L_1, L_0, __this, NULL);
return L_1;
}
}
// System.Xml.XmlWhitespace System.Xml.XmlDocument::CreateWhitespace(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24* XmlDocument_CreateWhitespace_m25982FFC1D64190DEFBF6DA5C2069D021464DFEC (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___text0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___text0;
XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24* L_1 = (XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24*)il2cpp_codegen_object_new(XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24_il2cpp_TypeInfo_var);
NullCheck(L_1);
XmlWhitespace__ctor_m95E6CA1AFEECB5C1B3EDDAA039864BDF315FD0AE(L_1, L_0, __this, NULL);
return L_1;
}
}
// System.Xml.XmlAttribute System.Xml.XmlDocument::CreateAttribute(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlDocument_CreateAttribute_m5DC489B6B051905264E2FD30A58CD380337D2F18 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___qualifiedName0, String_t* ___namespaceURI1, 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* V_1 = NULL;
{
String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
V_0 = L_0;
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
V_1 = L_1;
String_t* L_2 = ___qualifiedName0;
XmlNode_SplitName_mEE1283C3D3F04DE2E00FC693046D9297678F4571(L_2, (&V_0), (&V_1), NULL);
String_t* L_3 = V_0;
String_t* L_4 = V_1;
String_t* L_5 = ___namespaceURI1;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_6;
L_6 = VirtualFuncInvoker3< XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*, String_t*, String_t*, String_t* >::Invoke(69 /* System.Xml.XmlAttribute System.Xml.XmlDocument::CreateAttribute(System.String,System.String,System.String) */, __this, L_3, L_4, L_5);
return L_6;
}
}
// System.Xml.XmlElement System.Xml.XmlDocument::CreateElement(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* XmlDocument_CreateElement_m4180DF31B3B4CD8516B7881494D99720648BD95B (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___qualifiedName0, String_t* ___namespaceURI1, 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* V_1 = NULL;
{
String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
V_0 = L_0;
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
V_1 = L_1;
String_t* L_2 = ___qualifiedName0;
XmlNode_SplitName_mEE1283C3D3F04DE2E00FC693046D9297678F4571(L_2, (&V_0), (&V_1), NULL);
String_t* L_3 = V_0;
String_t* L_4 = V_1;
String_t* L_5 = ___namespaceURI1;
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_6;
L_6 = VirtualFuncInvoker3< XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*, String_t*, String_t*, String_t* >::Invoke(71 /* System.Xml.XmlElement System.Xml.XmlDocument::CreateElement(System.String,System.String,System.String) */, __this, L_3, L_4, L_5);
return L_6;
}
}
// System.Xml.XmlNode System.Xml.XmlDocument::ImportNodeInternal(System.Xml.XmlNode,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlDocument_ImportNodeInternal_m7E70DD674E7D0CB39DC6F14B5E806AE284E9C17B (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___node0, bool ___deep1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL;
XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* V_1 = NULL;
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* V_2 = NULL;
int32_t V_3 = 0;
int32_t V_4 = 0;
{
V_0 = (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___node0;
if (L_0)
{
goto IL_0015;
}
}
{
String_t* L_1;
L_1 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF3FED9B982102FDD475F39E2487268020045A46E)), NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_2);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, L_1, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlDocument_ImportNodeInternal_m7E70DD674E7D0CB39DC6F14B5E806AE284E9C17B_RuntimeMethod_var)));
}
IL_0015:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = ___node0;
NullCheck(L_3);
int32_t L_4;
L_4 = VirtualFuncInvoker0< int32_t >::Invoke(9 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_3);
V_3 = L_4;
int32_t L_5 = V_3;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_5, 1)))
{
case 0:
{
goto IL_006d;
}
case 1:
{
goto IL_00a2;
}
case 2:
{
goto IL_00c9;
}
case 3:
{
goto IL_012a;
}
case 4:
{
goto IL_0179;
}
case 5:
{
goto IL_01a6;
}
case 6:
{
goto IL_00ed;
}
case 7:
{
goto IL_00db;
}
case 8:
{
goto IL_01a6;
}
case 9:
{
goto IL_013c;
}
case 10:
{
goto IL_0164;
}
case 11:
{
goto IL_01a6;
}
case 12:
{
goto IL_0188;
}
case 13:
{
goto IL_0197;
}
case 14:
{
goto IL_01a6;
}
case 15:
{
goto IL_01a6;
}
case 16:
{
goto IL_0105;
}
}
}
{
goto IL_01a6;
}
IL_006d:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6 = ___node0;
NullCheck(L_6);
String_t* L_7;
L_7 = VirtualFuncInvoker0< String_t* >::Invoke(34 /* System.String System.Xml.XmlNode::get_Prefix() */, L_6);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_8 = ___node0;
NullCheck(L_8);
String_t* L_9;
L_9 = VirtualFuncInvoker0< String_t* >::Invoke(36 /* System.String System.Xml.XmlNode::get_LocalName() */, L_8);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_10 = ___node0;
NullCheck(L_10);
String_t* L_11;
L_11 = VirtualFuncInvoker0< String_t* >::Invoke(33 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_10);
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_12;
L_12 = VirtualFuncInvoker3< XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*, String_t*, String_t*, String_t* >::Invoke(71 /* System.Xml.XmlElement System.Xml.XmlDocument::CreateElement(System.String,System.String,System.String) */, __this, L_7, L_9, L_11);
V_0 = L_12;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_13 = ___node0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_14 = V_0;
XmlDocument_ImportAttributes_mD5D3157004F6C1B559E3FFF09F2D5FBBF916CC0A(__this, L_13, L_14, NULL);
bool L_15 = ___deep1;
if (!L_15)
{
goto IL_01d5;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_16 = ___node0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_17 = V_0;
bool L_18 = ___deep1;
XmlDocument_ImportChildren_mAB48DB0FA4C4964B00F4EC316E3942CE7AAB092B(__this, L_16, L_17, L_18, NULL);
goto IL_01d5;
}
IL_00a2:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_19 = ___node0;
NullCheck(L_19);
String_t* L_20;
L_20 = VirtualFuncInvoker0< String_t* >::Invoke(34 /* System.String System.Xml.XmlNode::get_Prefix() */, L_19);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_21 = ___node0;
NullCheck(L_21);
String_t* L_22;
L_22 = VirtualFuncInvoker0< String_t* >::Invoke(36 /* System.String System.Xml.XmlNode::get_LocalName() */, L_21);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_23 = ___node0;
NullCheck(L_23);
String_t* L_24;
L_24 = VirtualFuncInvoker0< String_t* >::Invoke(33 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_23);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_25;
L_25 = VirtualFuncInvoker3< XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*, String_t*, String_t*, String_t* >::Invoke(69 /* System.Xml.XmlAttribute System.Xml.XmlDocument::CreateAttribute(System.String,System.String,System.String) */, __this, L_20, L_22, L_24);
V_0 = L_25;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_26 = ___node0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_27 = V_0;
XmlDocument_ImportChildren_mAB48DB0FA4C4964B00F4EC316E3942CE7AAB092B(__this, L_26, L_27, (bool)1, NULL);
goto IL_01d5;
}
IL_00c9:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_28 = ___node0;
NullCheck(L_28);
String_t* L_29;
L_29 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_28);
XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* L_30;
L_30 = VirtualFuncInvoker1< XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A*, String_t* >::Invoke(66 /* System.Xml.XmlText System.Xml.XmlDocument::CreateTextNode(System.String) */, __this, L_29);
V_0 = L_30;
goto IL_01d5;
}
IL_00db:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_31 = ___node0;
NullCheck(L_31);
String_t* L_32;
L_32 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_31);
XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9* L_33;
L_33 = VirtualFuncInvoker1< XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9*, String_t* >::Invoke(60 /* System.Xml.XmlComment System.Xml.XmlDocument::CreateComment(System.String) */, __this, L_32);
V_0 = L_33;
goto IL_01d5;
}
IL_00ed:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_34 = ___node0;
NullCheck(L_34);
String_t* L_35;
L_35 = VirtualFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.XmlNode::get_Name() */, L_34);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_36 = ___node0;
NullCheck(L_36);
String_t* L_37;
L_37 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_36);
XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3* L_38;
L_38 = VirtualFuncInvoker2< XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3*, String_t*, String_t* >::Invoke(64 /* System.Xml.XmlProcessingInstruction System.Xml.XmlDocument::CreateProcessingInstruction(System.String,System.String) */, __this, L_35, L_37);
V_0 = L_38;
goto IL_01d5;
}
IL_0105:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_39 = ___node0;
V_1 = ((XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79*)CastclassClass((RuntimeObject*)L_39, XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79_il2cpp_TypeInfo_var));
XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* L_40 = V_1;
NullCheck(L_40);
String_t* L_41;
L_41 = XmlDeclaration_get_Version_m50261F1E46B645E69A99504F494FFD3BF915E633_inline(L_40, NULL);
XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* L_42 = V_1;
NullCheck(L_42);
String_t* L_43;
L_43 = XmlDeclaration_get_Encoding_m09D89DCD8457C62A6E49B9506A65A271DDBD011F_inline(L_42, NULL);
XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* L_44 = V_1;
NullCheck(L_44);
String_t* L_45;
L_45 = XmlDeclaration_get_Standalone_m46CC1833EE3C478318FF865E98A6899E440DDC6C_inline(L_44, NULL);
XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* L_46;
L_46 = VirtualFuncInvoker3< XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79*, String_t*, String_t*, String_t* >::Invoke(65 /* System.Xml.XmlDeclaration System.Xml.XmlDocument::CreateXmlDeclaration(System.String,System.String,System.String) */, __this, L_41, L_43, L_45);
V_0 = L_46;
goto IL_01d5;
}
IL_012a:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_47 = ___node0;
NullCheck(L_47);
String_t* L_48;
L_48 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_47);
XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA* L_49;
L_49 = VirtualFuncInvoker1< XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA*, String_t* >::Invoke(59 /* System.Xml.XmlCDataSection System.Xml.XmlDocument::CreateCDataSection(System.String) */, __this, L_48);
V_0 = L_49;
goto IL_01d5;
}
IL_013c:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_50 = ___node0;
V_2 = ((XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E*)CastclassClass((RuntimeObject*)L_50, XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E_il2cpp_TypeInfo_var));
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_51 = V_2;
NullCheck(L_51);
String_t* L_52;
L_52 = VirtualFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.XmlNode::get_Name() */, L_51);
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_53 = V_2;
NullCheck(L_53);
String_t* L_54;
L_54 = XmlDocumentType_get_PublicId_m9E81FAF2D0AA9DC847D118813CBEB085F0CE1955_inline(L_53, NULL);
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_55 = V_2;
NullCheck(L_55);
String_t* L_56;
L_56 = XmlDocumentType_get_SystemId_m17B225C509C0F5A4ECBB838AA81D15DED4016909_inline(L_55, NULL);
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_57 = V_2;
NullCheck(L_57);
String_t* L_58;
L_58 = XmlDocumentType_get_InternalSubset_mBD8D585ED0401EE1FC02F6FD5445E2109B083FEF_inline(L_57, NULL);
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_59;
L_59 = VirtualFuncInvoker4< XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E*, String_t*, String_t*, String_t*, String_t* >::Invoke(61 /* System.Xml.XmlDocumentType System.Xml.XmlDocument::CreateDocumentType(System.String,System.String,System.String,System.String) */, __this, L_52, L_54, L_56, L_58);
V_0 = L_59;
goto IL_01d5;
}
IL_0164:
{
XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* L_60;
L_60 = VirtualFuncInvoker0< XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* >::Invoke(62 /* System.Xml.XmlDocumentFragment System.Xml.XmlDocument::CreateDocumentFragment() */, __this);
V_0 = L_60;
bool L_61 = ___deep1;
if (!L_61)
{
goto IL_01d5;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_62 = ___node0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_63 = V_0;
bool L_64 = ___deep1;
XmlDocument_ImportChildren_mAB48DB0FA4C4964B00F4EC316E3942CE7AAB092B(__this, L_62, L_63, L_64, NULL);
goto IL_01d5;
}
IL_0179:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_65 = ___node0;
NullCheck(L_65);
String_t* L_66;
L_66 = VirtualFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.XmlNode::get_Name() */, L_65);
XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_67;
L_67 = VirtualFuncInvoker1< XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684*, String_t* >::Invoke(63 /* System.Xml.XmlEntityReference System.Xml.XmlDocument::CreateEntityReference(System.String) */, __this, L_66);
V_0 = L_67;
goto IL_01d5;
}
IL_0188:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_68 = ___node0;
NullCheck(L_68);
String_t* L_69;
L_69 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_68);
XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24* L_70;
L_70 = VirtualFuncInvoker1< XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24*, String_t* >::Invoke(68 /* System.Xml.XmlWhitespace System.Xml.XmlDocument::CreateWhitespace(System.String) */, __this, L_69);
V_0 = L_70;
goto IL_01d5;
}
IL_0197:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_71 = ___node0;
NullCheck(L_71);
String_t* L_72;
L_72 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_71);
XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE* L_73;
L_73 = VirtualFuncInvoker1< XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE*, String_t* >::Invoke(67 /* System.Xml.XmlSignificantWhitespace System.Xml.XmlDocument::CreateSignificantWhitespace(System.String) */, __this, L_72);
V_0 = L_73;
goto IL_01d5;
}
IL_01a6:
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var)));
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_74;
L_74 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
String_t* L_75;
L_75 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7180DA204588CF41B56FA236B1DEFF0D3CB61C60)), NULL);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_76 = ___node0;
NullCheck(L_76);
int32_t L_77;
L_77 = VirtualFuncInvoker0< int32_t >::Invoke(9 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_76);
V_4 = L_77;
Il2CppFakeBox<int32_t> L_78(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlNodeType_tCA25567E42A464038FDA6BA318EC0A9627B4CB95_il2cpp_TypeInfo_var)), (&V_4));
String_t* L_79;
L_79 = Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)(&L_78), NULL);
String_t* L_80;
L_80 = String_Format_m75580778A544C5C8DA0F2ACEE7972A2AC944063A(L_74, L_75, L_79, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_81 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_81);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_81, L_80, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_81, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlDocument_ImportNodeInternal_m7E70DD674E7D0CB39DC6F14B5E806AE284E9C17B_RuntimeMethod_var)));
}
IL_01d5:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_82 = V_0;
return L_82;
}
}
// System.Void System.Xml.XmlDocument::ImportAttributes(System.Xml.XmlNode,System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_ImportAttributes_mD5D3157004F6C1B559E3FFF09F2D5FBBF916CC0A (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___fromElem0, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___toElem1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___fromElem0;
NullCheck(L_0);
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_1;
L_1 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(14 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, L_0);
NullCheck(L_1);
int32_t L_2;
L_2 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 System.Xml.XmlNamedNodeMap::get_Count() */, L_1);
V_0 = L_2;
V_1 = 0;
goto IL_0046;
}
IL_0010:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = ___fromElem0;
NullCheck(L_3);
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_4;
L_4 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(14 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, L_3);
int32_t L_5 = V_1;
NullCheck(L_4);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_6;
L_6 = XmlAttributeCollection_get_ItemOf_m8F968C39C03DFEB9998B2122F4A26B76B1DB2EDB(L_4, L_5, NULL);
NullCheck(L_6);
bool L_7;
L_7 = VirtualFuncInvoker0< bool >::Invoke(56 /* System.Boolean System.Xml.XmlAttribute::get_Specified() */, L_6);
if (!L_7)
{
goto IL_0042;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_8 = ___toElem1;
NullCheck(L_8);
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_9;
L_9 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(14 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, L_8);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_10 = ___fromElem0;
NullCheck(L_10);
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_11;
L_11 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(14 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, L_10);
int32_t L_12 = V_1;
NullCheck(L_11);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_13;
L_13 = XmlAttributeCollection_get_ItemOf_m8F968C39C03DFEB9998B2122F4A26B76B1DB2EDB(L_11, L_12, NULL);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_14;
L_14 = XmlDocument_ImportNodeInternal_m7E70DD674E7D0CB39DC6F14B5E806AE284E9C17B(__this, L_13, (bool)1, NULL);
NullCheck(L_9);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_15;
L_15 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(6 /* System.Xml.XmlNode System.Xml.XmlNamedNodeMap::SetNamedItem(System.Xml.XmlNode) */, L_9, L_14);
}
IL_0042:
{
int32_t L_16 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_16, 1));
}
IL_0046:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0010;
}
}
{
return;
}
}
// System.Void System.Xml.XmlDocument::ImportChildren(System.Xml.XmlNode,System.Xml.XmlNode,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_ImportChildren_mAB48DB0FA4C4964B00F4EC316E3942CE7AAB092B (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___fromNode0, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___toNode1, bool ___deep2, const RuntimeMethod* method)
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL;
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___fromNode0;
NullCheck(L_0);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1;
L_1 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(16 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, L_0);
V_0 = L_1;
goto IL_001f;
}
IL_0009:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = ___toNode1;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = V_0;
bool L_4 = ___deep2;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5;
L_5 = XmlDocument_ImportNodeInternal_m7E70DD674E7D0CB39DC6F14B5E806AE284E9C17B(__this, L_3, L_4, NULL);
NullCheck(L_2);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6;
L_6 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(25 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChild(System.Xml.XmlNode) */, L_2, L_5);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_7 = V_0;
NullCheck(L_7);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_8;
L_8 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(13 /* System.Xml.XmlNode System.Xml.XmlNode::get_NextSibling() */, L_7);
V_0 = L_8;
}
IL_001f:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_9 = V_0;
if (L_9)
{
goto IL_0009;
}
}
{
return;
}
}
// System.Xml.XmlNameTable System.Xml.XmlDocument::get_NameTable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* XmlDocument_get_NameTable_m4B913865A24AEA917172F75CBDCE94C81CCB7E2C (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method)
{
{
XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* L_0 = __this->___implementation_1;
NullCheck(L_0);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_1;
L_1 = XmlImplementation_get_NameTable_m8951702F59619310BD4A9528D2FF471352518CDF_inline(L_0, NULL);
return L_1;
}
}
// System.Xml.XmlAttribute System.Xml.XmlDocument::CreateAttribute(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlDocument_CreateAttribute_m06FB2FB42A21F9B9D62EA9379946EF1099929472 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___namespaceURI2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___prefix0;
String_t* L_1 = ___localName1;
String_t* L_2 = ___namespaceURI2;
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_3;
L_3 = XmlDocument_AddAttrXmlName_mB6D4F6DA50FBE350ABAC30CD5CE97D981506BB28(__this, L_0, L_1, L_2, (RuntimeObject*)NULL, NULL);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_4 = (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)il2cpp_codegen_object_new(XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var);
NullCheck(L_4);
XmlAttribute__ctor_m5043E9D85560FDFE80DED6438F97110608F1393B(L_4, L_3, __this, NULL);
return L_4;
}
}
// System.Xml.XmlAttribute System.Xml.XmlDocument::CreateDefaultAttribute(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlDocument_CreateDefaultAttribute_m20A4D18805DACE680BBCA588B77CADFFA64F37EE (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___namespaceURI2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___prefix0;
String_t* L_1 = ___localName1;
String_t* L_2 = ___namespaceURI2;
XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* L_3 = (XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC*)il2cpp_codegen_object_new(XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC_il2cpp_TypeInfo_var);
NullCheck(L_3);
XmlUnspecifiedAttribute__ctor_m44D3E93A1FE83F8B631B4BE61CC2EA76865E36A6(L_3, L_0, L_1, L_2, __this, NULL);
return L_3;
}
}
// System.Xml.XmlElement System.Xml.XmlDocument::CreateElement(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* XmlDocument_CreateElement_mC8DB502E909E778655A1CC10E5AF422E551DC42C (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___namespaceURI2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* V_0 = NULL;
{
String_t* L_0 = ___prefix0;
String_t* L_1 = ___localName1;
String_t* L_2 = ___namespaceURI2;
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_3;
L_3 = XmlDocument_AddXmlName_m0B7D502F9AA6D43E0743106B90F9CE10F459A916(__this, L_0, L_1, L_2, (RuntimeObject*)NULL, NULL);
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_4 = (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)il2cpp_codegen_object_new(XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var);
NullCheck(L_4);
XmlElement__ctor_m44A8D5841FC2F1A5ACC6A03DD0ACA9AB37300588(L_4, L_3, (bool)1, __this, NULL);
V_0 = L_4;
bool L_5;
L_5 = XmlDocument_get_IsLoading_mD97F2D54DE1BD3B4F8B496F4D8D31C061FA8A52D_inline(__this, NULL);
if (L_5)
{
goto IL_0021;
}
}
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_6 = V_0;
XmlDocument_AddDefaultAttributes_mD1EF2D680D9891D533CBB7493E080240528F108C(__this, L_6, NULL);
}
IL_0021:
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_7 = V_0;
return L_7;
}
}
// System.Boolean System.Xml.XmlDocument::get_IsReadOnly()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocument_get_IsReadOnly_m52B4DDF8C35F7E1B847720CD6CFA44F0FEFFBDBE (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Xml.XmlNamedNodeMap System.Xml.XmlDocument::get_Entities()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* XmlDocument_get_Entities_m72C0183C637A5D71BB38433D1D4CD9A4E87D3A80 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_0 = __this->___entities_4;
if (L_0)
{
goto IL_0014;
}
}
{
XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_1 = (XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)il2cpp_codegen_object_new(XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C_il2cpp_TypeInfo_var);
NullCheck(L_1);
XmlNamedNodeMap__ctor_mA91F36D1CB05380C6F5E60F31062962B6DE2FF08(L_1, __this, NULL);
__this->___entities_4 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___entities_4), (void*)L_1);
}
IL_0014:
{
XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_2 = __this->___entities_4;
return L_2;
}
}
// System.Void System.Xml.XmlDocument::set_Entities(System.Xml.XmlNamedNodeMap)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_set_Entities_mBBF7C97889080847540A0F31B1751726E81FF756 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* ___value0, const RuntimeMethod* method)
{
{
XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_0 = ___value0;
__this->___entities_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___entities_4), (void*)L_0);
return;
}
}
// System.Boolean System.Xml.XmlDocument::get_IsLoading()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocument_get_IsLoading_mD97F2D54DE1BD3B4F8B496F4D8D31C061FA8A52D (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___isLoading_20;
return L_0;
}
}
// System.Void System.Xml.XmlDocument::set_IsLoading(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->___isLoading_20 = L_0;
return;
}
}
// System.Boolean System.Xml.XmlDocument::get_ActualLoadingStatus()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocument_get_ActualLoadingStatus_m63B8F5AD9C82FEF1D9EFA47926E4AABED6CD9D99 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___actualLoadingStatus_10;
return L_0;
}
}
// System.Xml.XmlNode System.Xml.XmlDocument::ReadNode(System.Xml.XmlReader)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlDocument_ReadNode_m73F308678386D641F5E2088D2BF960E2D9C8F6F2 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL;
{
V_0 = (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0018:
{// begin finally (depth: 1)
XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline(__this, (bool)0, NULL);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline(__this, (bool)1, NULL);
XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* L_0 = (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D*)il2cpp_codegen_object_new(XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D_il2cpp_TypeInfo_var);
NullCheck(L_0);
XmlLoader__ctor_m388331A1FB63D316FDDF4D7312B6977BFEC1A050(L_0, NULL);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1 = ___reader0;
NullCheck(L_0);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2;
L_2 = XmlLoader_ReadCurrentNode_m9E1E110A0B31C77EC53393D8C51B497A2CD79241(L_0, __this, L_1, NULL);
V_0 = L_2;
goto IL_0020;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0020:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = V_0;
return L_3;
}
}
// System.Xml.XmlTextReader System.Xml.XmlDocument::SetupReader(System.Xml.XmlTextReader)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* XmlDocument_SetupReader_mDBF0C1ECB089DCC5D892E790ED2ABBD794A4824E (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* ___tr0, const RuntimeMethod* method)
{
{
XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* L_0 = ___tr0;
NullCheck(L_0);
XmlTextReader_set_XmlValidatingReaderCompatibilityMode_m485400A0FF8B647B0BA4D98CB46354AC258B7C00(L_0, (bool)1, NULL);
XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* L_1 = ___tr0;
NullCheck(L_1);
XmlTextReader_set_EntityHandling_m577ABFEC373C39B83965619901EF1492C950C3BF(L_1, 2, NULL);
bool L_2;
L_2 = XmlDocument_get_HasSetResolver_m7CBB11C7E27D95CD697F177B965CEB2E1E71358D_inline(__this, NULL);
if (!L_2)
{
goto IL_0022;
}
}
{
XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* L_3 = ___tr0;
XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_4;
L_4 = XmlDocument_GetResolver_m0B1F443F2DF5510E0733052D42BC984CB83F9119_inline(__this, NULL);
NullCheck(L_3);
XmlTextReader_set_XmlResolver_mF617E3EC08480FE4693FF9A473BB9528126FCCDA(L_3, L_4, NULL);
}
IL_0022:
{
XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* L_5 = ___tr0;
return L_5;
}
}
// System.Void System.Xml.XmlDocument::Load(System.Xml.XmlReader)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_Load_m719C7C5EAD9264BA1A5A229E2CC3AE0FDD1CA8CE (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_003d:
{// begin finally (depth: 1)
XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline(__this, (bool)0, NULL);
__this->___actualLoadingStatus_10 = (bool)0;
__this->___reportValidity_9 = (bool)1;
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline(__this, (bool)1, NULL);
__this->___actualLoadingStatus_10 = (bool)1;
VirtualActionInvoker0::Invoke(45 /* System.Void System.Xml.XmlNode::RemoveAll() */, __this);
__this->___fEntRefNodesPresent_17 = (bool)0;
__this->___fCDataNodesPresent_18 = (bool)0;
__this->___reportValidity_9 = (bool)1;
XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* L_0 = (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D*)il2cpp_codegen_object_new(XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D_il2cpp_TypeInfo_var);
NullCheck(L_0);
XmlLoader__ctor_m388331A1FB63D316FDDF4D7312B6977BFEC1A050(L_0, NULL);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1 = ___reader0;
bool L_2 = __this->___preserveWhitespace_19;
NullCheck(L_0);
XmlLoader_Load_m3B85C836D8C6DE323B85E868DED6E8E36D56C124(L_0, __this, L_1, L_2, NULL);
goto IL_0053;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0053:
{
return;
}
}
// System.Void System.Xml.XmlDocument::LoadXml(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_LoadXml_m6F86E243203A6845F8BB445E9AE234D3913A2AAE (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___xml0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringReader_t1A336148FF22A9584E759A9D720CC96C23E35DD8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* V_0 = NULL;
{
String_t* L_0 = ___xml0;
StringReader_t1A336148FF22A9584E759A9D720CC96C23E35DD8* L_1 = (StringReader_t1A336148FF22A9584E759A9D720CC96C23E35DD8*)il2cpp_codegen_object_new(StringReader_t1A336148FF22A9584E759A9D720CC96C23E35DD8_il2cpp_TypeInfo_var);
NullCheck(L_1);
StringReader__ctor_m72556EC1062F49E05CF41B0825AC7FA2DB2A81C0(L_1, L_0, NULL);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_2;
L_2 = XmlDocument_get_NameTable_m4B913865A24AEA917172F75CBDCE94C81CCB7E2C(__this, NULL);
XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* L_3 = (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B*)il2cpp_codegen_object_new(XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var);
NullCheck(L_3);
XmlTextReader__ctor_m71F11D57A03AFBB76268D2696DADFCAC582C0403(L_3, L_1, L_2, NULL);
XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* L_4;
L_4 = XmlDocument_SetupReader_mDBF0C1ECB089DCC5D892E790ED2ABBD794A4824E(__this, L_3, NULL);
V_0 = L_4;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0021:
{// begin finally (depth: 1)
XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* L_5 = V_0;
NullCheck(L_5);
VirtualActionInvoker0::Invoke(33 /* System.Void System.Xml.XmlReader::Close() */, L_5);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* L_6 = V_0;
VirtualActionInvoker1< XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* >::Invoke(73 /* System.Void System.Xml.XmlDocument::Load(System.Xml.XmlReader) */, __this, L_6);
goto IL_0028;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0028:
{
return;
}
}
// System.Void System.Xml.XmlDocument::set_InnerText(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_set_InnerText_m698E1C5C70372B380CB9C9893F836ACCC879082D (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0;
L_0 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6DF679FD2D20B0F2C6E93D0736075B7733773462)), NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_1);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, L_0, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlDocument_set_InnerText_m698E1C5C70372B380CB9C9893F836ACCC879082D_RuntimeMethod_var)));
}
}
// System.Void System.Xml.XmlDocument::set_InnerXml(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_set_InnerXml_mD668393952C10057FEA93AFC59EA3673D35E9313 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
VirtualActionInvoker1< String_t* >::Invoke(74 /* System.Void System.Xml.XmlDocument::LoadXml(System.String) */, __this, L_0);
return;
}
}
// System.Void System.Xml.XmlDocument::Save(System.Xml.XmlWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_Save_mD00E4C3E14BEF3DA120B182BF79DF8EBB4B86E61 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___w0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7BFA33A11F0B12AF1B7FA1D9BA996EAE1EF77B49);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralED7D39EDF70E08FE57B2522D102BF72B9E5D5331);
s_Il2CppMethodInitialized = true;
}
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL;
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0;
L_0 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(16 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, __this);
V_0 = L_0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = V_0;
if (L_1)
{
goto IL_000b;
}
}
{
return;
}
IL_000b:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_2 = ___w0;
NullCheck(L_2);
int32_t L_3;
L_3 = VirtualFuncInvoker0< int32_t >::Invoke(27 /* System.Xml.WriteState System.Xml.XmlWriter::get_WriteState() */, L_2);
if (L_3)
{
goto IL_0083;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4 = V_0;
if (!((XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79*)IsInstClass((RuntimeObject*)L_4, XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79_il2cpp_TypeInfo_var)))
{
goto IL_006d;
}
}
{
String_t* L_5;
L_5 = XmlDocument_get_Standalone_mF1CE7F21F34BE23F6F5F4BE58CB74B7F89865B1B(__this, NULL);
NullCheck(L_5);
int32_t L_6;
L_6 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_5, NULL);
if (L_6)
{
goto IL_0030;
}
}
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_7 = ___w0;
NullCheck(L_7);
VirtualActionInvoker0::Invoke(5 /* System.Void System.Xml.XmlWriter::WriteStartDocument() */, L_7);
goto IL_0064;
}
IL_0030:
{
String_t* L_8;
L_8 = XmlDocument_get_Standalone_mF1CE7F21F34BE23F6F5F4BE58CB74B7F89865B1B(__this, NULL);
bool L_9;
L_9 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_8, _stringLiteralED7D39EDF70E08FE57B2522D102BF72B9E5D5331, NULL);
if (!L_9)
{
goto IL_004b;
}
}
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_10 = ___w0;
NullCheck(L_10);
VirtualActionInvoker1< bool >::Invoke(6 /* System.Void System.Xml.XmlWriter::WriteStartDocument(System.Boolean) */, L_10, (bool)1);
goto IL_0064;
}
IL_004b:
{
String_t* L_11;
L_11 = XmlDocument_get_Standalone_mF1CE7F21F34BE23F6F5F4BE58CB74B7F89865B1B(__this, NULL);
bool L_12;
L_12 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_11, _stringLiteral7BFA33A11F0B12AF1B7FA1D9BA996EAE1EF77B49, NULL);
if (!L_12)
{
goto IL_0064;
}
}
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_13 = ___w0;
NullCheck(L_13);
VirtualActionInvoker1< bool >::Invoke(6 /* System.Void System.Xml.XmlWriter::WriteStartDocument(System.Boolean) */, L_13, (bool)0);
}
IL_0064:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_14 = V_0;
NullCheck(L_14);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_15;
L_15 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(13 /* System.Xml.XmlNode System.Xml.XmlNode::get_NextSibling() */, L_14);
V_0 = L_15;
goto IL_0083;
}
IL_006d:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_16 = ___w0;
NullCheck(L_16);
VirtualActionInvoker0::Invoke(5 /* System.Void System.Xml.XmlWriter::WriteStartDocument() */, L_16);
goto IL_0083;
}
IL_0075:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_17 = V_0;
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_18 = ___w0;
NullCheck(L_17);
VirtualActionInvoker1< XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* >::Invoke(43 /* System.Void System.Xml.XmlNode::WriteTo(System.Xml.XmlWriter) */, L_17, L_18);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_19 = V_0;
NullCheck(L_19);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_20;
L_20 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(13 /* System.Xml.XmlNode System.Xml.XmlNode::get_NextSibling() */, L_19);
V_0 = L_20;
}
IL_0083:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_21 = V_0;
if (L_21)
{
goto IL_0075;
}
}
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_22 = ___w0;
NullCheck(L_22);
VirtualActionInvoker0::Invoke(29 /* System.Void System.Xml.XmlWriter::Flush() */, L_22);
return;
}
}
// System.Void System.Xml.XmlDocument::WriteTo(System.Xml.XmlWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_WriteTo_mCDA54D1509C4CB0A774B33B609C6A0157D1BF59C (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___w0, const RuntimeMethod* method)
{
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = ___w0;
VirtualActionInvoker1< XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* >::Invoke(44 /* System.Void System.Xml.XmlNode::WriteContentTo(System.Xml.XmlWriter) */, __this, L_0);
return;
}
}
// System.Void System.Xml.XmlDocument::WriteContentTo(System.Xml.XmlWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_WriteContentTo_m461C8F3C604B15718495F1F82282715511744AC8 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___xw0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
{
RuntimeObject* L_0;
L_0 = XmlNode_GetEnumerator_mB640F7F79C355C618D587137B685AFFE1F798ED8(__this, NULL);
V_0 = L_0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0024:
{// begin finally (depth: 1)
{
RuntimeObject* L_1 = V_0;
V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_2 = V_1;
if (!L_2)
{
goto IL_0034;
}
}
{
RuntimeObject* L_3 = V_1;
NullCheck(L_3);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3);
}
IL_0034:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_001a_1;
}
IL_0009_1:
{
RuntimeObject* L_4 = V_0;
NullCheck(L_4);
RuntimeObject* L_5;
L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_4);
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_6 = ___xw0;
NullCheck(((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)CastclassClass((RuntimeObject*)L_5, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var)));
VirtualActionInvoker1< XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* >::Invoke(43 /* System.Void System.Xml.XmlNode::WriteTo(System.Xml.XmlWriter) */, ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)CastclassClass((RuntimeObject*)L_5, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var)), L_6);
}
IL_001a_1:
{
RuntimeObject* L_7 = V_0;
NullCheck(L_7);
bool L_8;
L_8 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_7);
if (L_8)
{
goto IL_0009_1;
}
}
{
goto IL_0035;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0035:
{
return;
}
}
// System.Xml.XmlNodeChangedEventArgs System.Xml.XmlDocument::GetEventArgs(System.Xml.XmlNode,System.Xml.XmlNode,System.Xml.XmlNode,System.String,System.String,System.Xml.XmlNodeChangedAction)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* XmlDocument_GetEventArgs_mD80CDE5C049719A7D136EE158AB0BE13FA7EC2CD (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___node0, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___oldParent1, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___newParent2, String_t* ___oldValue3, String_t* ___newValue4, int32_t ___action5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
__this->___reportValidity_9 = (bool)0;
int32_t L_0 = ___action5;
switch (L_0)
{
case 0:
{
goto IL_001c;
}
case 1:
{
goto IL_002e;
}
case 2:
{
goto IL_0040;
}
}
}
{
goto IL_0052;
}
IL_001c:
{
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_1 = __this->___onNodeInsertingDelegate_11;
if (L_1)
{
goto IL_0052;
}
}
{
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_2 = __this->___onNodeInsertedDelegate_12;
if (L_2)
{
goto IL_0052;
}
}
{
return (XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A*)NULL;
}
IL_002e:
{
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_3 = __this->___onNodeRemovingDelegate_13;
if (L_3)
{
goto IL_0052;
}
}
{
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_4 = __this->___onNodeRemovedDelegate_14;
if (L_4)
{
goto IL_0052;
}
}
{
return (XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A*)NULL;
}
IL_0040:
{
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_5 = __this->___onNodeChangingDelegate_15;
if (L_5)
{
goto IL_0052;
}
}
{
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_6 = __this->___onNodeChangedDelegate_16;
if (L_6)
{
goto IL_0052;
}
}
{
return (XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A*)NULL;
}
IL_0052:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_7 = ___node0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_8 = ___oldParent1;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_9 = ___newParent2;
String_t* L_10 = ___oldValue3;
String_t* L_11 = ___newValue4;
int32_t L_12 = ___action5;
XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_13 = (XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A*)il2cpp_codegen_object_new(XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A_il2cpp_TypeInfo_var);
NullCheck(L_13);
XmlNodeChangedEventArgs__ctor_m7EA3C66B1D0582A417E9ADE33F982B08ADDB69E9(L_13, L_7, L_8, L_9, L_10, L_11, L_12, NULL);
return L_13;
}
}
// System.Xml.XmlNodeChangedEventArgs System.Xml.XmlDocument::GetInsertEventArgsForLoad(System.Xml.XmlNode,System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* XmlDocument_GetInsertEventArgsForLoad_mC008CD74A188F1B0ECBCFFBFD99A5F7B3DAB2661 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___node0, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___newParent1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_0 = __this->___onNodeInsertingDelegate_11;
if (L_0)
{
goto IL_0012;
}
}
{
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_1 = __this->___onNodeInsertedDelegate_12;
if (L_1)
{
goto IL_0012;
}
}
{
return (XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A*)NULL;
}
IL_0012:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = ___node0;
NullCheck(L_2);
String_t* L_3;
L_3 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_2);
V_0 = L_3;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4 = ___node0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5 = ___newParent1;
String_t* L_6 = V_0;
String_t* L_7 = V_0;
XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_8 = (XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A*)il2cpp_codegen_object_new(XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A_il2cpp_TypeInfo_var);
NullCheck(L_8);
XmlNodeChangedEventArgs__ctor_m7EA3C66B1D0582A417E9ADE33F982B08ADDB69E9(L_8, L_4, (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL, L_5, L_6, L_7, 0, NULL);
return L_8;
}
}
// System.Void System.Xml.XmlDocument::BeforeEvent(System.Xml.XmlNodeChangedEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_BeforeEvent_m852242E1906C0771C54889F3E5D364AD8BF957F5 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* ___args0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_0 = ___args0;
if (!L_0)
{
goto IL_005e;
}
}
{
XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_1 = ___args0;
NullCheck(L_1);
int32_t L_2;
L_2 = XmlNodeChangedEventArgs_get_Action_mD307B00A56DE5422A4EE4915400EC966DF80BD04_inline(L_1, NULL);
V_0 = L_2;
int32_t L_3 = V_0;
switch (L_3)
{
case 0:
{
goto IL_001d;
}
case 1:
{
goto IL_0033;
}
case 2:
{
goto IL_0049;
}
}
}
{
return;
}
IL_001d:
{
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_4 = __this->___onNodeInsertingDelegate_11;
if (!L_4)
{
goto IL_005e;
}
}
{
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_5 = __this->___onNodeInsertingDelegate_11;
XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_6 = ___args0;
NullCheck(L_5);
XmlNodeChangedEventHandler_Invoke_m64C7CF87945A0BAEFCED39FC27B1D9F2E31C1480_inline(L_5, __this, L_6, NULL);
return;
}
IL_0033:
{
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_7 = __this->___onNodeRemovingDelegate_13;
if (!L_7)
{
goto IL_005e;
}
}
{
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_8 = __this->___onNodeRemovingDelegate_13;
XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_9 = ___args0;
NullCheck(L_8);
XmlNodeChangedEventHandler_Invoke_m64C7CF87945A0BAEFCED39FC27B1D9F2E31C1480_inline(L_8, __this, L_9, NULL);
return;
}
IL_0049:
{
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_10 = __this->___onNodeChangingDelegate_15;
if (!L_10)
{
goto IL_005e;
}
}
{
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_11 = __this->___onNodeChangingDelegate_15;
XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_12 = ___args0;
NullCheck(L_11);
XmlNodeChangedEventHandler_Invoke_m64C7CF87945A0BAEFCED39FC27B1D9F2E31C1480_inline(L_11, __this, L_12, NULL);
}
IL_005e:
{
return;
}
}
// System.Void System.Xml.XmlDocument::AfterEvent(System.Xml.XmlNodeChangedEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_AfterEvent_m42BBD0D01A5C48CB2DE4EA46568F11FCF9746F91 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* ___args0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_0 = ___args0;
if (!L_0)
{
goto IL_005e;
}
}
{
XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_1 = ___args0;
NullCheck(L_1);
int32_t L_2;
L_2 = XmlNodeChangedEventArgs_get_Action_mD307B00A56DE5422A4EE4915400EC966DF80BD04_inline(L_1, NULL);
V_0 = L_2;
int32_t L_3 = V_0;
switch (L_3)
{
case 0:
{
goto IL_001d;
}
case 1:
{
goto IL_0033;
}
case 2:
{
goto IL_0049;
}
}
}
{
return;
}
IL_001d:
{
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_4 = __this->___onNodeInsertedDelegate_12;
if (!L_4)
{
goto IL_005e;
}
}
{
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_5 = __this->___onNodeInsertedDelegate_12;
XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_6 = ___args0;
NullCheck(L_5);
XmlNodeChangedEventHandler_Invoke_m64C7CF87945A0BAEFCED39FC27B1D9F2E31C1480_inline(L_5, __this, L_6, NULL);
return;
}
IL_0033:
{
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_7 = __this->___onNodeRemovedDelegate_14;
if (!L_7)
{
goto IL_005e;
}
}
{
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_8 = __this->___onNodeRemovedDelegate_14;
XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_9 = ___args0;
NullCheck(L_8);
XmlNodeChangedEventHandler_Invoke_m64C7CF87945A0BAEFCED39FC27B1D9F2E31C1480_inline(L_8, __this, L_9, NULL);
return;
}
IL_0049:
{
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_10 = __this->___onNodeChangedDelegate_16;
if (!L_10)
{
goto IL_005e;
}
}
{
XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_11 = __this->___onNodeChangedDelegate_16;
XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_12 = ___args0;
NullCheck(L_11);
XmlNodeChangedEventHandler_Invoke_m64C7CF87945A0BAEFCED39FC27B1D9F2E31C1480_inline(L_11, __this, L_12, NULL);
}
IL_005e:
{
return;
}
}
// System.Xml.XmlAttribute System.Xml.XmlDocument::GetDefaultAttribute(System.Xml.XmlElement,System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlDocument_GetDefaultAttribute_m09254F3903D8971371770B085DEB0C8E4B879D96 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___elem0, String_t* ___attrPrefix1, String_t* ___attrLocalname2, String_t* ___attrNamespaceURI3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_GetEnumerator_mAFB53EF60E7055593407621A31F67B315FB25F80_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_tAFD022FCAA040EAEC1263E2EF82A45C956378717_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionaryEnumerator_tE129D608FCDB7207E0F0ECE33473CC950A83AD16_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* V_0 = NULL;
SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* V_1 = NULL;
RuntimeObject* V_2 = NULL;
SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* V_3 = NULL;
{
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_0;
L_0 = XmlDocument_get_DtdSchemaInfo_mF52E9F32AB9D1914DBC6D91A8277AE843B6E1E6E_inline(__this, NULL);
V_0 = L_0;
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_1 = ___elem0;
SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_2;
L_2 = XmlDocument_GetSchemaElementDecl_m8096E8CA8850D889EF774A9DC2596486DFBA00A6(__this, L_1, NULL);
V_1 = L_2;
SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_3 = V_1;
if (!L_3)
{
goto IL_00b0;
}
}
{
SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_4 = V_1;
NullCheck(L_4);
Dictionary_2_tB85C1B2FFF985BA01AD2B7199C083B43C1476CC1* L_5;
L_5 = SchemaElementDecl_get_AttDefs_m2E3114DFAB8D978CBFAA6E31C2CD18A9AA9DAC50_inline(L_4, NULL);
if (!L_5)
{
goto IL_00b0;
}
}
{
SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_6 = V_1;
NullCheck(L_6);
Dictionary_2_tB85C1B2FFF985BA01AD2B7199C083B43C1476CC1* L_7;
L_7 = SchemaElementDecl_get_AttDefs_m2E3114DFAB8D978CBFAA6E31C2CD18A9AA9DAC50_inline(L_6, NULL);
NullCheck(L_7);
Enumerator_tAFD022FCAA040EAEC1263E2EF82A45C956378717 L_8;
L_8 = Dictionary_2_GetEnumerator_mAFB53EF60E7055593407621A31F67B315FB25F80(L_7, Dictionary_2_GetEnumerator_mAFB53EF60E7055593407621A31F67B315FB25F80_RuntimeMethod_var);
Enumerator_tAFD022FCAA040EAEC1263E2EF82A45C956378717 L_9 = L_8;
RuntimeObject* L_10 = Box(Enumerator_tAFD022FCAA040EAEC1263E2EF82A45C956378717_il2cpp_TypeInfo_var, &L_9);
V_2 = (RuntimeObject*)L_10;
goto IL_00a8;
}
IL_0033:
{
RuntimeObject* L_11 = V_2;
NullCheck(L_11);
RuntimeObject* L_12;
L_12 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IDictionaryEnumerator::get_Value() */, IDictionaryEnumerator_tE129D608FCDB7207E0F0ECE33473CC950A83AD16_il2cpp_TypeInfo_var, L_11);
V_3 = ((SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553*)CastclassSealed((RuntimeObject*)L_12, SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553_il2cpp_TypeInfo_var));
SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_13 = V_3;
NullCheck(L_13);
int32_t L_14;
L_14 = SchemaDeclBase_get_Presence_mCF2610A186758B71CAFF2FC2586D9B604C2AE539_inline(L_13, NULL);
if (!L_14)
{
goto IL_0050;
}
}
{
SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_15 = V_3;
NullCheck(L_15);
int32_t L_16;
L_16 = SchemaDeclBase_get_Presence_mCF2610A186758B71CAFF2FC2586D9B604C2AE539_inline(L_15, NULL);
if ((!(((uint32_t)L_16) == ((uint32_t)3))))
{
goto IL_00a8;
}
}
IL_0050:
{
SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_17 = V_3;
NullCheck(L_17);
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_18;
L_18 = SchemaDeclBase_get_Name_m013DF0DD721FE902399C2DF4D2E6F8DAD50ECFAE_inline(L_17, NULL);
NullCheck(L_18);
String_t* L_19;
L_19 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_18, NULL);
String_t* L_20 = ___attrLocalname2;
bool L_21;
L_21 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_19, L_20, NULL);
if (!L_21)
{
goto IL_00a8;
}
}
{
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_22 = V_0;
NullCheck(L_22);
int32_t L_23;
L_23 = SchemaInfo_get_SchemaType_m44BE9221A63C4D13AE45A2054A875B533518B0FC_inline(L_22, NULL);
if ((!(((uint32_t)L_23) == ((uint32_t)1))))
{
goto IL_007f;
}
}
{
SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_24 = V_3;
NullCheck(L_24);
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_25;
L_25 = SchemaDeclBase_get_Name_m013DF0DD721FE902399C2DF4D2E6F8DAD50ECFAE_inline(L_24, NULL);
NullCheck(L_25);
String_t* L_26;
L_26 = XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline(L_25, NULL);
String_t* L_27 = ___attrPrefix1;
bool L_28;
L_28 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_26, L_27, NULL);
if (L_28)
{
goto IL_009c;
}
}
IL_007f:
{
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_29 = V_0;
NullCheck(L_29);
int32_t L_30;
L_30 = SchemaInfo_get_SchemaType_m44BE9221A63C4D13AE45A2054A875B533518B0FC_inline(L_29, NULL);
if ((((int32_t)L_30) == ((int32_t)1)))
{
goto IL_00a8;
}
}
{
SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_31 = V_3;
NullCheck(L_31);
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_32;
L_32 = SchemaDeclBase_get_Name_m013DF0DD721FE902399C2DF4D2E6F8DAD50ECFAE_inline(L_31, NULL);
NullCheck(L_32);
String_t* L_33;
L_33 = XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline(L_32, NULL);
String_t* L_34 = ___attrNamespaceURI3;
bool L_35;
L_35 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_33, L_34, NULL);
if (!L_35)
{
goto IL_00a8;
}
}
IL_009c:
{
SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_36 = V_3;
String_t* L_37 = ___attrPrefix1;
String_t* L_38 = ___attrLocalname2;
String_t* L_39 = ___attrNamespaceURI3;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_40;
L_40 = XmlDocument_PrepareDefaultAttribute_mB209B5E427A134931A258026446829B816E9A526(__this, L_36, L_37, L_38, L_39, NULL);
return L_40;
}
IL_00a8:
{
RuntimeObject* L_41 = V_2;
NullCheck(L_41);
bool L_42;
L_42 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_41);
if (L_42)
{
goto IL_0033;
}
}
IL_00b0:
{
return (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)NULL;
}
}
// System.String System.Xml.XmlDocument::get_Version()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDocument_get_Version_m722E19B80DD2540C5CF7BFF13B8ECC4706708015 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method)
{
XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* V_0 = NULL;
{
XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* L_0;
L_0 = VirtualFuncInvoker0< XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* >::Invoke(57 /* System.Xml.XmlDeclaration System.Xml.XmlDocument::get_Declaration() */, __this);
V_0 = L_0;
XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* L_1 = V_0;
if (!L_1)
{
goto IL_0011;
}
}
{
XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* L_2 = V_0;
NullCheck(L_2);
String_t* L_3;
L_3 = XmlDeclaration_get_Version_m50261F1E46B645E69A99504F494FFD3BF915E633_inline(L_2, NULL);
return L_3;
}
IL_0011:
{
return (String_t*)NULL;
}
}
// System.String System.Xml.XmlDocument::get_Encoding()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDocument_get_Encoding_m4420B337087B2C933FD5F356BCA48BBA01C97E69 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method)
{
XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* V_0 = NULL;
{
XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* L_0;
L_0 = VirtualFuncInvoker0< XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* >::Invoke(57 /* System.Xml.XmlDeclaration System.Xml.XmlDocument::get_Declaration() */, __this);
V_0 = L_0;
XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* L_1 = V_0;
if (!L_1)
{
goto IL_0011;
}
}
{
XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* L_2 = V_0;
NullCheck(L_2);
String_t* L_3;
L_3 = XmlDeclaration_get_Encoding_m09D89DCD8457C62A6E49B9506A65A271DDBD011F_inline(L_2, NULL);
return L_3;
}
IL_0011:
{
return (String_t*)NULL;
}
}
// System.String System.Xml.XmlDocument::get_Standalone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDocument_get_Standalone_mF1CE7F21F34BE23F6F5F4BE58CB74B7F89865B1B (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method)
{
XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* V_0 = NULL;
{
XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* L_0;
L_0 = VirtualFuncInvoker0< XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* >::Invoke(57 /* System.Xml.XmlDeclaration System.Xml.XmlDocument::get_Declaration() */, __this);
V_0 = L_0;
XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* L_1 = V_0;
if (!L_1)
{
goto IL_0011;
}
}
{
XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* L_2 = V_0;
NullCheck(L_2);
String_t* L_3;
L_3 = XmlDeclaration_get_Standalone_m46CC1833EE3C478318FF865E98A6899E440DDC6C_inline(L_2, NULL);
return L_3;
}
IL_0011:
{
return (String_t*)NULL;
}
}
// System.Xml.XmlEntity System.Xml.XmlDocument::GetEntityNode(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* XmlDocument_GetEntityNode_m9A45EC68379AD8210E79FD8A88EB705D011E827A (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* V_0 = NULL;
{
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_0;
L_0 = VirtualFuncInvoker0< XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* >::Invoke(56 /* System.Xml.XmlDocumentType System.Xml.XmlDocument::get_DocumentType() */, __this);
if (!L_0)
{
goto IL_0024;
}
}
{
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_1;
L_1 = VirtualFuncInvoker0< XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* >::Invoke(56 /* System.Xml.XmlDocumentType System.Xml.XmlDocument::get_DocumentType() */, __this);
NullCheck(L_1);
XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_2;
L_2 = XmlDocumentType_get_Entities_m0864AACCFEB94E7E935580DB42D07F5C2058B1B0(L_1, NULL);
V_0 = L_2;
XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_3 = V_0;
if (!L_3)
{
goto IL_0024;
}
}
{
XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_4 = V_0;
String_t* L_5 = ___name0;
NullCheck(L_4);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6;
L_6 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, String_t* >::Invoke(5 /* System.Xml.XmlNode System.Xml.XmlNamedNodeMap::GetNamedItem(System.String) */, L_4, L_5);
return ((XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE*)CastclassClass((RuntimeObject*)L_6, XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE_il2cpp_TypeInfo_var));
}
IL_0024:
{
return (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE*)NULL;
}
}
// System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlDocument::get_SchemaInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlDocument_get_SchemaInfo_m1F930898C34EA6323A653EC38AED1BD79FD0C696 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* V_0 = NULL;
int32_t V_1 = 0;
{
bool L_0 = __this->___reportValidity_9;
if (!L_0)
{
goto IL_0034;
}
}
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_1;
L_1 = XmlDocument_get_DocumentElement_mE87523DCD2D59F8BA6175DBA01D70133E202A2C8(__this, NULL);
V_0 = L_1;
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_2 = V_0;
if (!L_2)
{
goto IL_0034;
}
}
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_3 = V_0;
NullCheck(L_3);
RuntimeObject* L_4;
L_4 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(41 /* System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlNode::get_SchemaInfo() */, L_3);
NullCheck(L_4);
int32_t L_5;
L_5 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Xml.Schema.XmlSchemaValidity System.Xml.Schema.IXmlSchemaInfo::get_Validity() */, IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var, L_4);
V_1 = L_5;
int32_t L_6 = V_1;
if ((((int32_t)L_6) == ((int32_t)1)))
{
goto IL_0028;
}
}
{
int32_t L_7 = V_1;
if ((((int32_t)L_7) == ((int32_t)2)))
{
goto IL_002e;
}
}
{
goto IL_0034;
}
IL_0028:
{
il2cpp_codegen_runtime_class_init_inline(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var);
RuntimeObject* L_8 = ((XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_StaticFields*)il2cpp_codegen_static_fields_for(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var))->___ValidSchemaInfo_43;
return L_8;
}
IL_002e:
{
il2cpp_codegen_runtime_class_init_inline(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var);
RuntimeObject* L_9 = ((XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_StaticFields*)il2cpp_codegen_static_fields_for(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var))->___InvalidSchemaInfo_44;
return L_9;
}
IL_0034:
{
il2cpp_codegen_runtime_class_init_inline(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var);
RuntimeObject* L_10 = ((XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_StaticFields*)il2cpp_codegen_static_fields_for(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var))->___NotKnownSchemaInfo_42;
return L_10;
}
}
// System.String System.Xml.XmlDocument::get_BaseURI()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDocument_get_BaseURI_m485E0CCFD0B00B416D93A43B273BD6BA6FA7EC05 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___baseURI_37;
return L_0;
}
}
// System.Void System.Xml.XmlDocument::SetBaseURI(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_SetBaseURI_mE44F99B7DFBF6C63E7041125703303F9146C146E (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___inBaseURI0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___inBaseURI0;
__this->___baseURI_37 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___baseURI_37), (void*)L_0);
return;
}
}
// System.Xml.XmlNode System.Xml.XmlDocument::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlDocument_AppendChildForLoad_m9159EA6AC056C417AB1B80C23C770341FB454D22 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___newChild0, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* V_0 = NULL;
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* V_1 = NULL;
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___newChild0;
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(9 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_0);
bool L_2;
L_2 = VirtualFuncInvoker1< bool, int32_t >::Invoke(27 /* System.Boolean System.Xml.XmlNode::IsValidChildType(System.Xml.XmlNodeType) */, __this, L_1);
if (L_2)
{
goto IL_001e;
}
}
{
String_t* L_3;
L_3 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC5D6C64CCB50E5090409E08FDF71792E4E9A8F6D)), NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_4 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_4);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_4, L_3, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlDocument_AppendChildForLoad_m9159EA6AC056C417AB1B80C23C770341FB454D22_RuntimeMethod_var)));
}
IL_001e:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5 = ___newChild0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6;
L_6 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(17 /* System.Xml.XmlNode System.Xml.XmlNode::get_LastChild() */, __this);
bool L_7;
L_7 = VirtualFuncInvoker2< bool, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(29 /* System.Boolean System.Xml.XmlNode::CanInsertAfter(System.Xml.XmlNode,System.Xml.XmlNode) */, __this, L_5, L_6);
if (L_7)
{
goto IL_003d;
}
}
{
String_t* L_8;
L_8 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral52E7AA29D33516D76AAE995603260C880821A398)), NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_9 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_9);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_9, L_8, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlDocument_AppendChildForLoad_m9159EA6AC056C417AB1B80C23C770341FB454D22_RuntimeMethod_var)));
}
IL_003d:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_10 = ___newChild0;
XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_11;
L_11 = XmlDocument_GetInsertEventArgsForLoad_mC008CD74A188F1B0ECBCFFBFD99A5F7B3DAB2661(__this, L_10, __this, NULL);
V_0 = L_11;
XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_12 = V_0;
if (!L_12)
{
goto IL_0050;
}
}
{
XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_13 = V_0;
VirtualActionInvoker1< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* >::Invoke(51 /* System.Void System.Xml.XmlNode::BeforeEvent(System.Xml.XmlNodeChangedEventArgs) */, __this, L_13);
}
IL_0050:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_14 = ___newChild0;
V_1 = ((XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)CastclassClass((RuntimeObject*)L_14, XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C_il2cpp_TypeInfo_var));
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_15 = __this->___lastChild_3;
if (L_15)
{
goto IL_0068;
}
}
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_16 = V_1;
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_17 = V_1;
NullCheck(L_16);
L_16->___next_1 = L_17;
Il2CppCodeGenWriteBarrier((void**)(&L_16->___next_1), (void*)L_17);
goto IL_0085;
}
IL_0068:
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_18 = V_1;
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_19 = __this->___lastChild_3;
NullCheck(L_19);
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_20 = L_19->___next_1;
NullCheck(L_18);
L_18->___next_1 = L_20;
Il2CppCodeGenWriteBarrier((void**)(&L_18->___next_1), (void*)L_20);
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_21 = __this->___lastChild_3;
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_22 = V_1;
NullCheck(L_21);
L_21->___next_1 = L_22;
Il2CppCodeGenWriteBarrier((void**)(&L_21->___next_1), (void*)L_22);
}
IL_0085:
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_23 = V_1;
__this->___lastChild_3 = L_23;
Il2CppCodeGenWriteBarrier((void**)(&__this->___lastChild_3), (void*)L_23);
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_24 = V_1;
NullCheck(L_24);
VirtualActionInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(48 /* System.Void System.Xml.XmlNode::SetParentForLoad(System.Xml.XmlNode) */, L_24, __this);
XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_25 = V_0;
if (!L_25)
{
goto IL_009d;
}
}
{
XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_26 = V_0;
VirtualActionInvoker1< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* >::Invoke(52 /* System.Void System.Xml.XmlNode::AfterEvent(System.Xml.XmlNodeChangedEventArgs) */, __this, L_26);
}
IL_009d:
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_27 = V_1;
return L_27;
}
}
// System.Void System.Xml.XmlDocument::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument__cctor_m9D68A33FCB698FA7A8082651F9B2711EBA79FAC1 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EmptyEnumerator_t84EC9187C8460EE98E675ED9258AE4DF2A6776DA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
EmptyEnumerator_t84EC9187C8460EE98E675ED9258AE4DF2A6776DA* L_0 = (EmptyEnumerator_t84EC9187C8460EE98E675ED9258AE4DF2A6776DA*)il2cpp_codegen_object_new(EmptyEnumerator_t84EC9187C8460EE98E675ED9258AE4DF2A6776DA_il2cpp_TypeInfo_var);
NullCheck(L_0);
EmptyEnumerator__ctor_m05DA73C42354A4E549CCA7E9485B294057ABA981(L_0, NULL);
((XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_StaticFields*)il2cpp_codegen_static_fields_for(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var))->___EmptyEnumerator_41 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_StaticFields*)il2cpp_codegen_static_fields_for(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var))->___EmptyEnumerator_41), (void*)L_0);
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_1 = (XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B*)il2cpp_codegen_object_new(XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B_il2cpp_TypeInfo_var);
NullCheck(L_1);
XmlSchemaInfo__ctor_mEB56BD698D44A8AAA47668230E0CDFE8463ABD08(L_1, 0, NULL);
((XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_StaticFields*)il2cpp_codegen_static_fields_for(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var))->___NotKnownSchemaInfo_42 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&((XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_StaticFields*)il2cpp_codegen_static_fields_for(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var))->___NotKnownSchemaInfo_42), (void*)L_1);
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_2 = (XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B*)il2cpp_codegen_object_new(XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B_il2cpp_TypeInfo_var);
NullCheck(L_2);
XmlSchemaInfo__ctor_mEB56BD698D44A8AAA47668230E0CDFE8463ABD08(L_2, 1, NULL);
((XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_StaticFields*)il2cpp_codegen_static_fields_for(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var))->___ValidSchemaInfo_43 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&((XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_StaticFields*)il2cpp_codegen_static_fields_for(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var))->___ValidSchemaInfo_43), (void*)L_2);
XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_3 = (XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B*)il2cpp_codegen_object_new(XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B_il2cpp_TypeInfo_var);
NullCheck(L_3);
XmlSchemaInfo__ctor_mEB56BD698D44A8AAA47668230E0CDFE8463ABD08(L_3, 2, NULL);
((XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_StaticFields*)il2cpp_codegen_static_fields_for(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var))->___InvalidSchemaInfo_44 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&((XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_StaticFields*)il2cpp_codegen_static_fields_for(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var))->___InvalidSchemaInfo_44), (void*)L_3);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Xml.XmlDocumentFragment::.ctor(System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocumentFragment__ctor_m5DFF7FEE2576ED62871EDD2EE4B03279630D1BC2 (XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* __this, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___ownerDocument0, const RuntimeMethod* method)
{
{
XmlNode__ctor_m48EA7E8280259972A9AE46D0220C05CEA99E9350(__this, NULL);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___ownerDocument0;
if (L_0)
{
goto IL_0019;
}
}
{
String_t* L_1;
L_1 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA73D573DF83D11DB88B9E63E9DF538F46194507D)), NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_2, L_1, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlDocumentFragment__ctor_m5DFF7FEE2576ED62871EDD2EE4B03279630D1BC2_RuntimeMethod_var)));
}
IL_0019:
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_3 = ___ownerDocument0;
((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0), (void*)L_3);
return;
}
}
// System.String System.Xml.XmlDocumentFragment::get_Name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDocumentFragment_get_Name_m1874C656D4B98227EAF8F607037D5E994F264F2C (XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* __this, const RuntimeMethod* method)
{
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0;
L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this);
NullCheck(L_0);
String_t* L_1 = L_0->___strDocumentFragmentName_22;
return L_1;
}
}
// System.String System.Xml.XmlDocumentFragment::get_LocalName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDocumentFragment_get_LocalName_m14B0739B28E1668FB7410828E1451D230B95DA3F (XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* __this, const RuntimeMethod* method)
{
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0;
L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this);
NullCheck(L_0);
String_t* L_1 = L_0->___strDocumentFragmentName_22;
return L_1;
}
}
// System.Xml.XmlNodeType System.Xml.XmlDocumentFragment::get_NodeType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlDocumentFragment_get_NodeType_mE874D1255245E30531C960F635C91795C5AE1CAD (XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* __this, const RuntimeMethod* method)
{
{
return (int32_t)(((int32_t)11));
}
}
// System.Xml.XmlNode System.Xml.XmlDocumentFragment::get_ParentNode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlDocumentFragment_get_ParentNode_mD030B1BF656CB855B6079906815D1EE29C7271BC (XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* __this, const RuntimeMethod* method)
{
{
return (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL;
}
}
// System.Xml.XmlDocument System.Xml.XmlDocumentFragment::get_OwnerDocument()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* XmlDocumentFragment_get_OwnerDocument_m3B31F0C2CC5EC5BB67DE9C4E116539300C7A929D (XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0;
return ((XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B*)CastclassClass((RuntimeObject*)L_0, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var));
}
}
// System.Void System.Xml.XmlDocumentFragment::set_InnerXml(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocumentFragment_set_InnerXml_m99A9415C53F4A9D7B1C004C9A3B38E84A6DB86C4 (XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* __this, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
VirtualActionInvoker0::Invoke(45 /* System.Void System.Xml.XmlNode::RemoveAll() */, __this);
XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* L_0 = (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D*)il2cpp_codegen_object_new(XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D_il2cpp_TypeInfo_var);
NullCheck(L_0);
XmlLoader__ctor_m388331A1FB63D316FDDF4D7312B6977BFEC1A050(L_0, NULL);
String_t* L_1 = ___value0;
NullCheck(L_0);
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_2;
L_2 = XmlLoader_ParsePartialContent_mB3EF08CD6158AD1D1CB317AA3A712DFF7252C1EC(L_0, __this, L_1, 1, NULL);
return;
}
}
// System.Xml.XmlNode System.Xml.XmlDocumentFragment::CloneNode(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlDocumentFragment_CloneNode_mE7D0742D0F35A1D3EEF9F12BD4FE81EE5F327D89 (XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* __this, bool ___deep0, const RuntimeMethod* method)
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* V_0 = NULL;
XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* V_1 = NULL;
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0;
L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this);
V_0 = L_0;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1 = V_0;
NullCheck(L_1);
XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* L_2;
L_2 = VirtualFuncInvoker0< XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* >::Invoke(62 /* System.Xml.XmlDocumentFragment System.Xml.XmlDocument::CreateDocumentFragment() */, L_1);
V_1 = L_2;
bool L_3 = ___deep0;
if (!L_3)
{
goto IL_001a;
}
}
{
XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* L_4 = V_1;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_5 = V_0;
bool L_6 = ___deep0;
NullCheck(L_4);
VirtualActionInvoker3< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, bool >::Invoke(32 /* System.Void System.Xml.XmlNode::CopyChildren(System.Xml.XmlDocument,System.Xml.XmlNode,System.Boolean) */, L_4, L_5, __this, L_6);
}
IL_001a:
{
XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* L_7 = V_1;
return L_7;
}
}
// System.Boolean System.Xml.XmlDocumentFragment::get_IsContainer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocumentFragment_get_IsContainer_m603B307149A57669FAB18758FE440F677F1E7020 (XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Xml.XmlLinkedNode System.Xml.XmlDocumentFragment::get_LastNode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* XmlDocumentFragment_get_LastNode_mB32809757FC8FF9949D19C3DD9B83F6BB740EA63 (XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* __this, const RuntimeMethod* method)
{
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_0 = __this->___lastChild_1;
return L_0;
}
}
// System.Void System.Xml.XmlDocumentFragment::set_LastNode(System.Xml.XmlLinkedNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocumentFragment_set_LastNode_m6651220BA4B604C2C6DE871D9D9B85A757F61ADF (XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* __this, XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* ___value0, const RuntimeMethod* method)
{
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_0 = ___value0;
__this->___lastChild_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___lastChild_1), (void*)L_0);
return;
}
}
// System.Boolean System.Xml.XmlDocumentFragment::IsValidChildType(System.Xml.XmlNodeType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocumentFragment_IsValidChildType_m8EF115F22D56936D685DF8046D8337B427A9F8EB (XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* __this, int32_t ___type0, const RuntimeMethod* method)
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL;
{
int32_t L_0 = ___type0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_0, 1)))
{
case 0:
{
goto IL_004e;
}
case 1:
{
goto IL_0068;
}
case 2:
{
goto IL_004e;
}
case 3:
{
goto IL_004e;
}
case 4:
{
goto IL_004e;
}
case 5:
{
goto IL_0068;
}
case 6:
{
goto IL_004e;
}
case 7:
{
goto IL_004e;
}
case 8:
{
goto IL_0068;
}
case 9:
{
goto IL_0068;
}
case 10:
{
goto IL_0068;
}
case 11:
{
goto IL_0068;
}
case 12:
{
goto IL_004e;
}
case 13:
{
goto IL_004e;
}
case 14:
{
goto IL_0068;
}
case 15:
{
goto IL_0068;
}
case 16:
{
goto IL_0050;
}
}
}
{
goto IL_0068;
}
IL_004e:
{
return (bool)1;
}
IL_0050:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1;
L_1 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(16 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, __this);
V_0 = L_1;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = V_0;
if (!L_2)
{
goto IL_0064;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = V_0;
NullCheck(L_3);
int32_t L_4;
L_4 = VirtualFuncInvoker0< int32_t >::Invoke(9 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_3);
if ((((int32_t)L_4) == ((int32_t)((int32_t)17))))
{
goto IL_0066;
}
}
IL_0064:
{
return (bool)1;
}
IL_0066:
{
return (bool)0;
}
IL_0068:
{
return (bool)0;
}
}
// System.Boolean System.Xml.XmlDocumentFragment::CanInsertAfter(System.Xml.XmlNode,System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocumentFragment_CanInsertAfter_m5EAF44C606F67D369B960E6C4AE8B07063C2B8C1 (XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___newChild0, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___refChild1, const RuntimeMethod* method)
{
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___newChild0;
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(9 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_0);
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)17)))))
{
goto IL_0019;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = ___refChild1;
if (L_2)
{
goto IL_0017;
}
}
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_3;
L_3 = VirtualFuncInvoker0< XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* >::Invoke(19 /* System.Xml.XmlLinkedNode System.Xml.XmlNode::get_LastNode() */, __this);
return (bool)((((RuntimeObject*)(XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)L_3) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
}
IL_0017:
{
return (bool)0;
}
IL_0019:
{
return (bool)1;
}
}
// System.Boolean System.Xml.XmlDocumentFragment::CanInsertBefore(System.Xml.XmlNode,System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocumentFragment_CanInsertBefore_m2C2C4C24274DB34C81D6794E266C7CDDB05A1528 (XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___newChild0, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___refChild1, const RuntimeMethod* method)
{
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___newChild0;
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(9 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_0);
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)17)))))
{
goto IL_0019;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = ___refChild1;
if (!L_2)
{
goto IL_0017;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = ___refChild1;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4;
L_4 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(16 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, __this);
return (bool)((((RuntimeObject*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)L_3) == ((RuntimeObject*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)L_4))? 1 : 0);
}
IL_0017:
{
return (bool)1;
}
IL_0019:
{
return (bool)1;
}
}
// System.Void System.Xml.XmlDocumentFragment::WriteTo(System.Xml.XmlWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocumentFragment_WriteTo_m084D445D3B2211CA672E7704B784E4D47D133F10 (XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___w0, const RuntimeMethod* method)
{
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = ___w0;
VirtualActionInvoker1< XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* >::Invoke(44 /* System.Void System.Xml.XmlNode::WriteContentTo(System.Xml.XmlWriter) */, __this, L_0);
return;
}
}
// System.Void System.Xml.XmlDocumentFragment::WriteContentTo(System.Xml.XmlWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocumentFragment_WriteContentTo_mF71230504B7321563C9D30C9C9A1709229508A4F (XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___w0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
{
RuntimeObject* L_0;
L_0 = XmlNode_GetEnumerator_mB640F7F79C355C618D587137B685AFFE1F798ED8(__this, NULL);
V_0 = L_0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0024:
{// begin finally (depth: 1)
{
RuntimeObject* L_1 = V_0;
V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_2 = V_1;
if (!L_2)
{
goto IL_0034;
}
}
{
RuntimeObject* L_3 = V_1;
NullCheck(L_3);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3);
}
IL_0034:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_001a_1;
}
IL_0009_1:
{
RuntimeObject* L_4 = V_0;
NullCheck(L_4);
RuntimeObject* L_5;
L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_4);
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_6 = ___w0;
NullCheck(((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)CastclassClass((RuntimeObject*)L_5, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var)));
VirtualActionInvoker1< XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* >::Invoke(43 /* System.Void System.Xml.XmlNode::WriteTo(System.Xml.XmlWriter) */, ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)CastclassClass((RuntimeObject*)L_5, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var)), L_6);
}
IL_001a_1:
{
RuntimeObject* L_7 = V_0;
NullCheck(L_7);
bool L_8;
L_8 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_7);
if (L_8)
{
goto IL_0009_1;
}
}
{
goto IL_0035;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0035:
{
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.XmlDocumentType::.ctor(System.String,System.String,System.String,System.String,System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocumentType__ctor_m80A9D98B728A54F81611F785B3C6CB5E29D47344 (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, String_t* ___name0, String_t* ___publicId1, String_t* ___systemId2, String_t* ___internalSubset3, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___doc4;
XmlLinkedNode__ctor_mBAF93AD97DBA998E16940918D8F7EF3E585C7633(__this, L_0, NULL);
String_t* L_1 = ___name0;
__this->___name_2 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___name_2), (void*)L_1);
String_t* L_2 = ___publicId1;
__this->___publicId_3 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___publicId_3), (void*)L_2);
String_t* L_3 = ___systemId2;
__this->___systemId_4 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___systemId_4), (void*)L_3);
__this->___namespaces_6 = (bool)1;
String_t* L_4 = ___internalSubset3;
__this->___internalSubset_5 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->___internalSubset_5), (void*)L_4);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_5 = ___doc4;
NullCheck(L_5);
bool L_6;
L_6 = XmlDocument_get_IsLoading_mD97F2D54DE1BD3B4F8B496F4D8D31C061FA8A52D_inline(L_5, NULL);
if (L_6)
{
goto IL_0050;
}
}
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_7 = ___doc4;
NullCheck(L_7);
XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline(L_7, (bool)1, NULL);
XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* L_8 = (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D*)il2cpp_codegen_object_new(XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D_il2cpp_TypeInfo_var);
NullCheck(L_8);
XmlLoader__ctor_m388331A1FB63D316FDDF4D7312B6977BFEC1A050(L_8, NULL);
NullCheck(L_8);
XmlLoader_ParseDocumentType_m7E6901C3E8CF530A50BFE027DE91E999307F2A02(L_8, __this, NULL);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_9 = ___doc4;
NullCheck(L_9);
XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline(L_9, (bool)0, NULL);
}
IL_0050:
{
return;
}
}
// System.String System.Xml.XmlDocumentType::get_Name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDocumentType_get_Name_m8323D4846265D13C6E393961B2EE0D7FC96812C2 (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___name_2;
return L_0;
}
}
// System.String System.Xml.XmlDocumentType::get_LocalName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDocumentType_get_LocalName_m5B495551922FE2C3CC5285FA6CDE88478891E3B6 (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___name_2;
return L_0;
}
}
// System.Xml.XmlNodeType System.Xml.XmlDocumentType::get_NodeType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlDocumentType_get_NodeType_mF592A32BB36245914C8EC201A2AD5ED0611BCF17 (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method)
{
{
return (int32_t)(((int32_t)10));
}
}
// System.Xml.XmlNode System.Xml.XmlDocumentType::CloneNode(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlDocumentType_CloneNode_mB93E09964A9CA4C47A0D172FE71B533A29375D78 (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, bool ___deep0, const RuntimeMethod* method)
{
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0;
L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this);
String_t* L_1 = __this->___name_2;
String_t* L_2 = __this->___publicId_3;
String_t* L_3 = __this->___systemId_4;
String_t* L_4 = __this->___internalSubset_5;
NullCheck(L_0);
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_5;
L_5 = VirtualFuncInvoker4< XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E*, String_t*, String_t*, String_t*, String_t* >::Invoke(61 /* System.Xml.XmlDocumentType System.Xml.XmlDocument::CreateDocumentType(System.String,System.String,System.String,System.String) */, L_0, L_1, L_2, L_3, L_4);
return L_5;
}
}
// System.Boolean System.Xml.XmlDocumentType::get_IsReadOnly()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocumentType_get_IsReadOnly_mCF02079CAB3EA39E19E8737AB07F0B51187430B3 (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Xml.XmlNamedNodeMap System.Xml.XmlDocumentType::get_Entities()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* XmlDocumentType_get_Entities_m0864AACCFEB94E7E935580DB42D07F5C2058B1B0 (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_0 = __this->___entities_7;
if (L_0)
{
goto IL_0014;
}
}
{
XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_1 = (XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)il2cpp_codegen_object_new(XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C_il2cpp_TypeInfo_var);
NullCheck(L_1);
XmlNamedNodeMap__ctor_mA91F36D1CB05380C6F5E60F31062962B6DE2FF08(L_1, __this, NULL);
__this->___entities_7 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___entities_7), (void*)L_1);
}
IL_0014:
{
XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_2 = __this->___entities_7;
return L_2;
}
}
// System.Xml.XmlNamedNodeMap System.Xml.XmlDocumentType::get_Notations()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* XmlDocumentType_get_Notations_mF39B90420713538FCE072C512A74575C6F25D117 (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_0 = __this->___notations_8;
if (L_0)
{
goto IL_0014;
}
}
{
XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_1 = (XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)il2cpp_codegen_object_new(XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C_il2cpp_TypeInfo_var);
NullCheck(L_1);
XmlNamedNodeMap__ctor_mA91F36D1CB05380C6F5E60F31062962B6DE2FF08(L_1, __this, NULL);
__this->___notations_8 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___notations_8), (void*)L_1);
}
IL_0014:
{
XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_2 = __this->___notations_8;
return L_2;
}
}
// System.String System.Xml.XmlDocumentType::get_PublicId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDocumentType_get_PublicId_m9E81FAF2D0AA9DC847D118813CBEB085F0CE1955 (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___publicId_3;
return L_0;
}
}
// System.String System.Xml.XmlDocumentType::get_SystemId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDocumentType_get_SystemId_m17B225C509C0F5A4ECBB838AA81D15DED4016909 (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___systemId_4;
return L_0;
}
}
// System.String System.Xml.XmlDocumentType::get_InternalSubset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDocumentType_get_InternalSubset_mBD8D585ED0401EE1FC02F6FD5445E2109B083FEF (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___internalSubset_5;
return L_0;
}
}
// System.Boolean System.Xml.XmlDocumentType::get_ParseWithNamespaces()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocumentType_get_ParseWithNamespaces_mC391046582C88CDC3C3496E4D2C0827C36D9B324 (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___namespaces_6;
return L_0;
}
}
// System.Void System.Xml.XmlDocumentType::WriteTo(System.Xml.XmlWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocumentType_WriteTo_m80280E9DC687ED2CC8FE47982193871FF8639FD3 (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___w0, const RuntimeMethod* method)
{
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = ___w0;
String_t* L_1 = __this->___name_2;
String_t* L_2 = __this->___publicId_3;
String_t* L_3 = __this->___systemId_4;
String_t* L_4 = __this->___internalSubset_5;
NullCheck(L_0);
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_0, L_1, L_2, L_3, L_4);
return;
}
}
// System.Void System.Xml.XmlDocumentType::WriteContentTo(System.Xml.XmlWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocumentType_WriteContentTo_m6FA932203D3E8FA3B162DD8DD0BEBF1012F7B849 (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___w0, const RuntimeMethod* method)
{
{
return;
}
}
// System.Xml.Schema.SchemaInfo System.Xml.XmlDocumentType::get_DtdSchemaInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* XmlDocumentType_get_DtdSchemaInfo_mDF54B3A169B037A8C8A4F186206B143AF3068259 (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method)
{
{
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_0 = __this->___schemaInfo_9;
return L_0;
}
}
// System.Void System.Xml.XmlDocumentType::set_DtdSchemaInfo(System.Xml.Schema.SchemaInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocumentType_set_DtdSchemaInfo_m6E419933465D42DAB30AD7C6FFF7ACCC6D78A4E6 (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* ___value0, const RuntimeMethod* method)
{
{
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_0 = ___value0;
__this->___schemaInfo_9 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___schemaInfo_9), (void*)L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Xml.XmlElement::.ctor(System.Xml.XmlName,System.Boolean,System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElement__ctor_m44A8D5841FC2F1A5ACC6A03DD0ACA9AB37300588 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___name0, bool ___empty1, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___doc2;
XmlLinkedNode__ctor_mBAF93AD97DBA998E16940918D8F7EF3E585C7633(__this, L_0, NULL);
((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0 = (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0), (void*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1 = ___doc2;
NullCheck(L_1);
bool L_2;
L_2 = XmlDocument_get_IsLoading_mD97F2D54DE1BD3B4F8B496F4D8D31C061FA8A52D_inline(L_1, NULL);
if (L_2)
{
goto IL_002c;
}
}
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_3 = ___name0;
NullCheck(L_3);
String_t* L_4;
L_4 = XmlName_get_Prefix_m42E3E78749764ECBE9586AFC0FC3EBFD2B7A2E4E_inline(L_3, NULL);
il2cpp_codegen_runtime_class_init_inline(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var);
XmlDocument_CheckName_m8F3B57903F80A4309ACAF9C301ABA06B63702CA5(L_4, NULL);
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_5 = ___name0;
NullCheck(L_5);
String_t* L_6;
L_6 = XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline(L_5, NULL);
XmlDocument_CheckName_m8F3B57903F80A4309ACAF9C301ABA06B63702CA5(L_6, NULL);
}
IL_002c:
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_7 = ___name0;
NullCheck(L_7);
String_t* L_8;
L_8 = XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline(L_7, NULL);
NullCheck(L_8);
int32_t L_9;
L_9 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_8, NULL);
if (L_9)
{
goto IL_0049;
}
}
{
String_t* L_10;
L_10 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1608C82B466107946B52772199E59009D15CA084)), NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_11 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_11);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_11, L_10, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlElement__ctor_m44A8D5841FC2F1A5ACC6A03DD0ACA9AB37300588_RuntimeMethod_var)));
}
IL_0049:
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_12 = ___name0;
__this->___name_2 = L_12;
Il2CppCodeGenWriteBarrier((void**)(&__this->___name_2), (void*)L_12);
bool L_13 = ___empty1;
if (!L_13)
{
goto IL_005a;
}
}
{
__this->___lastChild_4 = __this;
Il2CppCodeGenWriteBarrier((void**)(&__this->___lastChild_4), (void*)__this);
}
IL_005a:
{
return;
}
}
// System.Void System.Xml.XmlElement::.ctor(System.String,System.String,System.String,System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElement__ctor_m1C80BD485FDDF4F947A67A6861C525E205D8F0C4 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___namespaceURI2, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc3, const RuntimeMethod* method)
{
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___doc3;
String_t* L_1 = ___prefix0;
String_t* L_2 = ___localName1;
String_t* L_3 = ___namespaceURI2;
NullCheck(L_0);
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_4;
L_4 = XmlDocument_AddXmlName_m0B7D502F9AA6D43E0743106B90F9CE10F459A916(L_0, L_1, L_2, L_3, (RuntimeObject*)NULL, NULL);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_5 = ___doc3;
XmlElement__ctor_m44A8D5841FC2F1A5ACC6A03DD0ACA9AB37300588(__this, L_4, (bool)1, L_5, NULL);
return;
}
}
// System.Xml.XmlName System.Xml.XmlElement::get_XmlName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* XmlElement_get_XmlName_mA93482D1053CABDD02D7E3B23EBA56F74904101D (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method)
{
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = __this->___name_2;
return L_0;
}
}
// System.Void System.Xml.XmlElement::set_XmlName(System.Xml.XmlName)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElement_set_XmlName_m15166904F386EAB60030EAB490CC0FD1CB624EFC (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___value0, const RuntimeMethod* method)
{
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = ___value0;
__this->___name_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___name_2), (void*)L_0);
return;
}
}
// System.Xml.XmlNode System.Xml.XmlElement::CloneNode(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlElement_CloneNode_m6B12DC2EA73902C55EF7095ABC8CE19D488FAF31 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, bool ___deep0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* V_0 = NULL;
bool V_1 = false;
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* V_2 = NULL;
RuntimeObject* V_3 = NULL;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_4 = NULL;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_5 = NULL;
RuntimeObject* V_6 = NULL;
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0;
L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this);
V_0 = L_0;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1 = V_0;
NullCheck(L_1);
bool L_2;
L_2 = XmlDocument_get_IsLoading_mD97F2D54DE1BD3B4F8B496F4D8D31C061FA8A52D_inline(L_1, NULL);
V_1 = L_2;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_3 = V_0;
NullCheck(L_3);
XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline(L_3, (bool)1, NULL);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_4 = V_0;
String_t* L_5;
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(34 /* System.String System.Xml.XmlNode::get_Prefix() */, __this);
String_t* L_6;
L_6 = VirtualFuncInvoker0< String_t* >::Invoke(36 /* System.String System.Xml.XmlNode::get_LocalName() */, __this);
String_t* L_7;
L_7 = VirtualFuncInvoker0< String_t* >::Invoke(33 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, __this);
NullCheck(L_4);
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_8;
L_8 = VirtualFuncInvoker3< XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*, String_t*, String_t*, String_t* >::Invoke(71 /* System.Xml.XmlElement System.Xml.XmlDocument::CreateElement(System.String,System.String,System.String) */, L_4, L_5, L_6, L_7);
V_2 = L_8;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_9 = V_0;
bool L_10 = V_1;
NullCheck(L_9);
XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline(L_9, L_10, NULL);
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_11 = V_2;
NullCheck(L_11);
bool L_12;
L_12 = XmlElement_get_IsEmpty_m3FD670ABE3BE49AF263E1B75875FA606CC671B5F(L_11, NULL);
bool L_13;
L_13 = XmlElement_get_IsEmpty_m3FD670ABE3BE49AF263E1B75875FA606CC671B5F(__this, NULL);
if ((((int32_t)L_12) == ((int32_t)L_13)))
{
goto IL_004f;
}
}
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_14 = V_2;
bool L_15;
L_15 = XmlElement_get_IsEmpty_m3FD670ABE3BE49AF263E1B75875FA606CC671B5F(__this, NULL);
NullCheck(L_14);
XmlElement_set_IsEmpty_mA8B835AE5541C20296A231855F3ABF4296A475F7(L_14, L_15, NULL);
}
IL_004f:
{
bool L_16;
L_16 = VirtualFuncInvoker0< bool >::Invoke(56 /* System.Boolean System.Xml.XmlElement::get_HasAttributes() */, __this);
if (!L_16)
{
goto IL_00cc;
}
}
{
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_17;
L_17 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(14 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, __this);
NullCheck(L_17);
RuntimeObject* L_18;
L_18 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(8 /* System.Collections.IEnumerator System.Xml.XmlNamedNodeMap::GetEnumerator() */, L_17);
V_3 = L_18;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00b8:
{// begin finally (depth: 1)
{
RuntimeObject* L_19 = V_3;
V_6 = ((RuntimeObject*)IsInst((RuntimeObject*)L_19, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_20 = V_6;
if (!L_20)
{
goto IL_00cb;
}
}
{
RuntimeObject* L_21 = V_6;
NullCheck(L_21);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_21);
}
IL_00cb:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_00ae_1;
}
IL_0065_1:
{
RuntimeObject* L_22 = V_3;
NullCheck(L_22);
RuntimeObject* L_23;
L_23 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_22);
V_4 = ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_23, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var));
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_24 = V_4;
NullCheck(L_24);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_25;
L_25 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, bool >::Invoke(31 /* System.Xml.XmlNode System.Xml.XmlNode::CloneNode(System.Boolean) */, L_24, (bool)1);
V_5 = ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_25, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var));
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_26 = V_4;
if (!((XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC*)IsInstClass((RuntimeObject*)L_26, XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC_il2cpp_TypeInfo_var)))
{
goto IL_00a0_1;
}
}
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_27 = V_4;
NullCheck(L_27);
bool L_28;
L_28 = VirtualFuncInvoker0< bool >::Invoke(56 /* System.Boolean System.Xml.XmlAttribute::get_Specified() */, L_27);
if (L_28)
{
goto IL_00a0_1;
}
}
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_29 = V_5;
NullCheck(((XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC*)CastclassClass((RuntimeObject*)L_29, XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC_il2cpp_TypeInfo_var)));
XmlUnspecifiedAttribute_SetSpecified_m1CF67FF3E90E62DC5B0983B8DE91B6E95228509B_inline(((XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC*)CastclassClass((RuntimeObject*)L_29, XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC_il2cpp_TypeInfo_var)), (bool)0, NULL);
}
IL_00a0_1:
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_30 = V_2;
NullCheck(L_30);
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_31;
L_31 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(14 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, L_30);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_32 = V_5;
NullCheck(L_31);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_33;
L_33 = XmlAttributeCollection_InternalAppendAttribute_m4F65B9C065CD96947359F97184962FD480989BCB(L_31, L_32, NULL);
}
IL_00ae_1:
{
RuntimeObject* L_34 = V_3;
NullCheck(L_34);
bool L_35;
L_35 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_34);
if (L_35)
{
goto IL_0065_1;
}
}
{
goto IL_00cc;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00cc:
{
bool L_36 = ___deep0;
if (!L_36)
{
goto IL_00d8;
}
}
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_37 = V_2;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_38 = V_0;
bool L_39 = ___deep0;
NullCheck(L_37);
VirtualActionInvoker3< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, bool >::Invoke(32 /* System.Void System.Xml.XmlNode::CopyChildren(System.Xml.XmlDocument,System.Xml.XmlNode,System.Boolean) */, L_37, L_38, __this, L_39);
}
IL_00d8:
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_40 = V_2;
return L_40;
}
}
// System.String System.Xml.XmlElement::get_Name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlElement_get_Name_m7F73C3D18CDE9F8F951B144842E7669F9737DE6D (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method)
{
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = __this->___name_2;
NullCheck(L_0);
String_t* L_1;
L_1 = XmlName_get_Name_m77B33DD36549E6E3E728EA1AD3325E339EC30435(L_0, NULL);
return L_1;
}
}
// System.String System.Xml.XmlElement::get_LocalName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlElement_get_LocalName_m9223F778DD26887F21E416A7A29C22468CFBA346 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method)
{
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = __this->___name_2;
NullCheck(L_0);
String_t* L_1;
L_1 = XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline(L_0, NULL);
return L_1;
}
}
// System.String System.Xml.XmlElement::get_NamespaceURI()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlElement_get_NamespaceURI_m43313283ED55D22F3EF608F3BAC9E14A08F63883 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method)
{
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = __this->___name_2;
NullCheck(L_0);
String_t* L_1;
L_1 = XmlName_get_NamespaceURI_mCF07F0E78CAF17DDF53DD8CD44C5D415B4E010D1_inline(L_0, NULL);
return L_1;
}
}
// System.String System.Xml.XmlElement::get_Prefix()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlElement_get_Prefix_m472626EDD13C1767B818AB5E18A3B9176331AC98 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method)
{
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = __this->___name_2;
NullCheck(L_0);
String_t* L_1;
L_1 = XmlName_get_Prefix_m42E3E78749764ECBE9586AFC0FC3EBFD2B7A2E4E_inline(L_0, NULL);
return L_1;
}
}
// System.Void System.Xml.XmlElement::set_Prefix(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElement_set_Prefix_m831FAC4E97AE03278AD1A1D67828EAEA197A7EC1 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = __this->___name_2;
NullCheck(L_0);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1;
L_1 = XmlName_get_OwnerDocument_m330FA0574F04486B56352FA1E5F4336890C02A0C_inline(L_0, NULL);
String_t* L_2 = ___value0;
String_t* L_3;
L_3 = VirtualFuncInvoker0< String_t* >::Invoke(36 /* System.String System.Xml.XmlNode::get_LocalName() */, __this);
String_t* L_4;
L_4 = VirtualFuncInvoker0< String_t* >::Invoke(33 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, __this);
RuntimeObject* L_5;
L_5 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(41 /* System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlNode::get_SchemaInfo() */, __this);
NullCheck(L_1);
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_6;
L_6 = XmlDocument_AddXmlName_m0B7D502F9AA6D43E0743106B90F9CE10F459A916(L_1, L_2, L_3, L_4, L_5, NULL);
__this->___name_2 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->___name_2), (void*)L_6);
return;
}
}
// System.Xml.XmlNodeType System.Xml.XmlElement::get_NodeType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlElement_get_NodeType_m2335521F2F7F153B1E7C01F400883353C577CFA2 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method)
{
{
return (int32_t)(1);
}
}
// System.Xml.XmlNode System.Xml.XmlElement::get_ParentNode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlElement_get_ParentNode_mC49B6F93B2C4EC07705EBB2E03E15775CA8B6CAB (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method)
{
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0;
return L_0;
}
}
// System.Xml.XmlDocument System.Xml.XmlElement::get_OwnerDocument()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* XmlElement_get_OwnerDocument_m5C1BCBD63A52F60AD17B92D8E6E4543EE747E89A (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method)
{
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = __this->___name_2;
NullCheck(L_0);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1;
L_1 = XmlName_get_OwnerDocument_m330FA0574F04486B56352FA1E5F4336890C02A0C_inline(L_0, NULL);
return L_1;
}
}
// System.Boolean System.Xml.XmlElement::get_IsContainer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlElement_get_IsContainer_mDD67104ADF07829FF25D89531F964953F053D387 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Xml.XmlNode System.Xml.XmlElement::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlElement_AppendChildForLoad_m79C746A5400CC7AE8B19876EFEB081D9E186045B (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___newChild0, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* V_0 = NULL;
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* V_1 = NULL;
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* V_2 = NULL;
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___doc1;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = ___newChild0;
NullCheck(L_0);
XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_2;
L_2 = XmlDocument_GetInsertEventArgsForLoad_mC008CD74A188F1B0ECBCFFBFD99A5F7B3DAB2661(L_0, L_1, __this, NULL);
V_0 = L_2;
XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_3 = V_0;
if (!L_3)
{
goto IL_0013;
}
}
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_4 = ___doc1;
XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_5 = V_0;
NullCheck(L_4);
VirtualActionInvoker1< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* >::Invoke(51 /* System.Void System.Xml.XmlNode::BeforeEvent(System.Xml.XmlNodeChangedEventArgs) */, L_4, L_5);
}
IL_0013:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6 = ___newChild0;
V_1 = ((XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)CastclassClass((RuntimeObject*)L_6, XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C_il2cpp_TypeInfo_var));
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_7 = __this->___lastChild_4;
if (!L_7)
{
goto IL_002b;
}
}
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_8 = __this->___lastChild_4;
if ((!(((RuntimeObject*)(XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)L_8) == ((RuntimeObject*)(XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)__this))))
{
goto IL_0042;
}
}
IL_002b:
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_9 = V_1;
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_10 = V_1;
NullCheck(L_9);
L_9->___next_1 = L_10;
Il2CppCodeGenWriteBarrier((void**)(&L_9->___next_1), (void*)L_10);
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_11 = V_1;
__this->___lastChild_4 = L_11;
Il2CppCodeGenWriteBarrier((void**)(&__this->___lastChild_4), (void*)L_11);
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_12 = V_1;
NullCheck(L_12);
VirtualActionInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(48 /* System.Void System.Xml.XmlNode::SetParentForLoad(System.Xml.XmlNode) */, L_12, __this);
goto IL_0083;
}
IL_0042:
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_13 = __this->___lastChild_4;
V_2 = L_13;
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_14 = V_1;
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_15 = V_2;
NullCheck(L_15);
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_16 = L_15->___next_1;
NullCheck(L_14);
L_14->___next_1 = L_16;
Il2CppCodeGenWriteBarrier((void**)(&L_14->___next_1), (void*)L_16);
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_17 = V_2;
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_18 = V_1;
NullCheck(L_17);
L_17->___next_1 = L_18;
Il2CppCodeGenWriteBarrier((void**)(&L_17->___next_1), (void*)L_18);
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_19 = V_1;
__this->___lastChild_4 = L_19;
Il2CppCodeGenWriteBarrier((void**)(&__this->___lastChild_4), (void*)L_19);
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_20 = V_2;
NullCheck(L_20);
bool L_21;
L_21 = VirtualFuncInvoker0< bool >::Invoke(55 /* System.Boolean System.Xml.XmlNode::get_IsText() */, L_20);
if (!L_21)
{
goto IL_007c;
}
}
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_22 = V_1;
NullCheck(L_22);
bool L_23;
L_23 = VirtualFuncInvoker0< bool >::Invoke(55 /* System.Boolean System.Xml.XmlNode::get_IsText() */, L_22);
if (!L_23)
{
goto IL_007c;
}
}
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_24 = V_2;
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_25 = V_1;
XmlNode_NestTextNodes_mA22ADE95FF5054D1DE4DC181E13E221F90F4B9A4(L_24, L_25, NULL);
goto IL_0083;
}
IL_007c:
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_26 = V_1;
NullCheck(L_26);
VirtualActionInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(48 /* System.Void System.Xml.XmlNode::SetParentForLoad(System.Xml.XmlNode) */, L_26, __this);
}
IL_0083:
{
XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_27 = V_0;
if (!L_27)
{
goto IL_008d;
}
}
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_28 = ___doc1;
XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_29 = V_0;
NullCheck(L_28);
VirtualActionInvoker1< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* >::Invoke(52 /* System.Void System.Xml.XmlNode::AfterEvent(System.Xml.XmlNodeChangedEventArgs) */, L_28, L_29);
}
IL_008d:
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_30 = V_1;
return L_30;
}
}
// System.Boolean System.Xml.XmlElement::get_IsEmpty()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlElement_get_IsEmpty_m3FD670ABE3BE49AF263E1B75875FA606CC671B5F (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method)
{
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_0 = __this->___lastChild_4;
return (bool)((((RuntimeObject*)(XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)L_0) == ((RuntimeObject*)(XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)__this))? 1 : 0);
}
}
// System.Void System.Xml.XmlElement::set_IsEmpty(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElement_set_IsEmpty_mA8B835AE5541C20296A231855F3ABF4296A475F7 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
if (!L_0)
{
goto IL_001a;
}
}
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_1 = __this->___lastChild_4;
if ((((RuntimeObject*)(XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)L_1) == ((RuntimeObject*)(XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)__this)))
{
goto IL_002a;
}
}
{
XmlElement_RemoveAllChildren_mF16BCED4E253E003DAD07D4CCB2D02644666C6CD(__this, NULL);
__this->___lastChild_4 = __this;
Il2CppCodeGenWriteBarrier((void**)(&__this->___lastChild_4), (void*)__this);
return;
}
IL_001a:
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_2 = __this->___lastChild_4;
if ((!(((RuntimeObject*)(XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)L_2) == ((RuntimeObject*)(XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)__this))))
{
goto IL_002a;
}
}
{
__this->___lastChild_4 = (XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___lastChild_4), (void*)(XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)NULL);
}
IL_002a:
{
return;
}
}
// System.Xml.XmlLinkedNode System.Xml.XmlElement::get_LastNode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* XmlElement_get_LastNode_m82CA4C67385A1AB797AE76F31CE608107FFDE430 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method)
{
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_0 = __this->___lastChild_4;
if ((((RuntimeObject*)(XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)L_0) == ((RuntimeObject*)(XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)__this)))
{
goto IL_0010;
}
}
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_1 = __this->___lastChild_4;
return L_1;
}
IL_0010:
{
return (XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)NULL;
}
}
// System.Void System.Xml.XmlElement::set_LastNode(System.Xml.XmlLinkedNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElement_set_LastNode_mB664A8179FB5A5C1D3C790F7CFE54D6D567B5150 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* ___value0, const RuntimeMethod* method)
{
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_0 = ___value0;
__this->___lastChild_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___lastChild_4), (void*)L_0);
return;
}
}
// System.Boolean System.Xml.XmlElement::IsValidChildType(System.Xml.XmlNodeType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlElement_IsValidChildType_m84A36D5274A4BB810373DDFC89EB935F23D8E5F0 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, int32_t ___type0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___type0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_0, 1)))
{
case 0:
{
goto IL_0042;
}
case 1:
{
goto IL_0044;
}
case 2:
{
goto IL_0042;
}
case 3:
{
goto IL_0042;
}
case 4:
{
goto IL_0042;
}
case 5:
{
goto IL_0044;
}
case 6:
{
goto IL_0042;
}
case 7:
{
goto IL_0042;
}
case 8:
{
goto IL_0044;
}
case 9:
{
goto IL_0044;
}
case 10:
{
goto IL_0044;
}
case 11:
{
goto IL_0044;
}
case 12:
{
goto IL_0042;
}
case 13:
{
goto IL_0042;
}
}
}
{
goto IL_0044;
}
IL_0042:
{
return (bool)1;
}
IL_0044:
{
return (bool)0;
}
}
// System.Xml.XmlAttributeCollection System.Xml.XmlElement::get_Attributes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* XmlElement_get_Attributes_mD4302CEE719D5E63DF1AC612E4C0FAC682DDA27E (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
bool V_1 = false;
{
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_0 = __this->___attributes_3;
if (L_0)
{
goto IL_003e;
}
}
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1;
L_1 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this);
NullCheck(L_1);
RuntimeObject* L_2 = L_1->___objLock_40;
V_0 = L_2;
V_1 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0034:
{// begin finally (depth: 1)
{
bool L_3 = V_1;
if (!L_3)
{
goto IL_003d;
}
}
{
RuntimeObject* L_4 = V_0;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_4, NULL);
}
IL_003d:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
RuntimeObject* L_5 = V_0;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_5, (&V_1), NULL);
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_6 = __this->___attributes_3;
if (L_6)
{
goto IL_0032_1;
}
}
{
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_7 = (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0*)il2cpp_codegen_object_new(XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0_il2cpp_TypeInfo_var);
NullCheck(L_7);
XmlAttributeCollection__ctor_m8308D817C07EF858304166193742564329293982(L_7, __this, NULL);
__this->___attributes_3 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&__this->___attributes_3), (void*)L_7);
}
IL_0032_1:
{
goto IL_003e;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_003e:
{
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_8 = __this->___attributes_3;
return L_8;
}
}
// System.Boolean System.Xml.XmlElement::get_HasAttributes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlElement_get_HasAttributes_m3BF7AE28DC9DDC9024DD330B96DAF4A55FC2370F (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method)
{
{
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_0 = __this->___attributes_3;
if (L_0)
{
goto IL_000a;
}
}
{
return (bool)0;
}
IL_000a:
{
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_1 = __this->___attributes_3;
NullCheck(L_1);
int32_t L_2;
L_2 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 System.Xml.XmlNamedNodeMap::get_Count() */, L_1);
return (bool)((((int32_t)L_2) > ((int32_t)0))? 1 : 0);
}
}
// System.String System.Xml.XmlElement::GetAttribute(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlElement_GetAttribute_m0FDA97F4D5F8DAA5764ED2C79501B643C4F42227 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, String_t* ___name0, 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;
}
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_0 = NULL;
{
String_t* L_0 = ___name0;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_1;
L_1 = VirtualFuncInvoker1< XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*, String_t* >::Invoke(59 /* System.Xml.XmlAttribute System.Xml.XmlElement::GetAttributeNode(System.String) */, __this, L_0);
V_0 = L_1;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_2 = V_0;
if (!L_2)
{
goto IL_0012;
}
}
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_3 = V_0;
NullCheck(L_3);
String_t* L_4;
L_4 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_3);
return L_4;
}
IL_0012:
{
String_t* L_5 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_5;
}
}
// System.Void System.Xml.XmlElement::SetAttribute(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElement_SetAttribute_m0C18DD018D22B418BE91B4895373DB9DEE253788 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method)
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_0 = NULL;
{
String_t* L_0 = ___name0;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_1;
L_1 = VirtualFuncInvoker1< XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*, String_t* >::Invoke(59 /* System.Xml.XmlAttribute System.Xml.XmlElement::GetAttributeNode(System.String) */, __this, L_0);
V_0 = L_1;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_2 = V_0;
if (L_2)
{
goto IL_002d;
}
}
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_3;
L_3 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this);
String_t* L_4 = ___name0;
NullCheck(L_3);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_5;
L_5 = XmlDocument_CreateAttribute_m42F583C11D788DB6E7B1C2EFAF112CB0C6118D06(L_3, L_4, NULL);
V_0 = L_5;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_6 = V_0;
String_t* L_7 = ___value1;
NullCheck(L_6);
VirtualActionInvoker1< String_t* >::Invoke(8 /* System.Void System.Xml.XmlNode::set_Value(System.String) */, L_6, L_7);
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_8;
L_8 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(14 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, __this);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_9 = V_0;
NullCheck(L_8);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_10;
L_10 = XmlAttributeCollection_InternalAppendAttribute_m4F65B9C065CD96947359F97184962FD480989BCB(L_8, L_9, NULL);
return;
}
IL_002d:
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_11 = V_0;
String_t* L_12 = ___value1;
NullCheck(L_11);
VirtualActionInvoker1< String_t* >::Invoke(8 /* System.Void System.Xml.XmlNode::set_Value(System.String) */, L_11, L_12);
return;
}
}
// System.Xml.XmlAttribute System.Xml.XmlElement::GetAttributeNode(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlElement_GetAttributeNode_m523D3C859ADD14C133695B139D283E903998F9BF (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, String_t* ___name0, const RuntimeMethod* method)
{
{
bool L_0;
L_0 = VirtualFuncInvoker0< bool >::Invoke(56 /* System.Boolean System.Xml.XmlElement::get_HasAttributes() */, __this);
if (!L_0)
{
goto IL_0015;
}
}
{
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_1;
L_1 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(14 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, __this);
String_t* L_2 = ___name0;
NullCheck(L_1);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_3;
L_3 = XmlAttributeCollection_get_ItemOf_mE6997455F03EC8A99F4ECAFF32E4F212BE70D7CF(L_1, L_2, NULL);
return L_3;
}
IL_0015:
{
return (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)NULL;
}
}
// System.Xml.XmlAttribute System.Xml.XmlElement::SetAttributeNode(System.Xml.XmlAttribute)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlElement_SetAttributeNode_mE0B17D7E755A784A25152EAF2B67C5B45FB0698E (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___newAttr0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_0 = ___newAttr0;
NullCheck(L_0);
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_1;
L_1 = VirtualFuncInvoker0< XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* >::Invoke(57 /* System.Xml.XmlElement System.Xml.XmlAttribute::get_OwnerElement() */, L_0);
if (!L_1)
{
goto IL_0018;
}
}
{
String_t* L_2;
L_2 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF011FDE885C7455F8FB042D3EC51AFA0D2624878)), NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_3 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_3);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_3, L_2, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlElement_SetAttributeNode_mE0B17D7E755A784A25152EAF2B67C5B45FB0698E_RuntimeMethod_var)));
}
IL_0018:
{
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_4;
L_4 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(14 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, __this);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_5 = ___newAttr0;
NullCheck(L_4);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6;
L_6 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(6 /* System.Xml.XmlNode System.Xml.XmlNamedNodeMap::SetNamedItem(System.Xml.XmlNode) */, L_4, L_5);
return ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_6, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var));
}
}
// System.String System.Xml.XmlElement::GetAttribute(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlElement_GetAttribute_m7AD162F5D0E67F2C69075E813709470C617B3150 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, String_t* ___localName0, String_t* ___namespaceURI1, 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;
}
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_0 = NULL;
{
String_t* L_0 = ___localName0;
String_t* L_1 = ___namespaceURI1;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_2;
L_2 = VirtualFuncInvoker2< XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*, String_t*, String_t* >::Invoke(63 /* System.Xml.XmlAttribute System.Xml.XmlElement::GetAttributeNode(System.String,System.String) */, __this, L_0, L_1);
V_0 = L_2;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_3 = V_0;
if (!L_3)
{
goto IL_0013;
}
}
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_4 = V_0;
NullCheck(L_4);
String_t* L_5;
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_4);
return L_5;
}
IL_0013:
{
String_t* L_6 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_6;
}
}
// System.String System.Xml.XmlElement::SetAttribute(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlElement_SetAttribute_m3CE24EA09F1B91CD857B4D9BBA9CCF97EAA68827 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, String_t* ___localName0, String_t* ___namespaceURI1, String_t* ___value2, 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;
}
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_0 = NULL;
{
String_t* L_0 = ___localName0;
String_t* L_1 = ___namespaceURI1;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_2;
L_2 = VirtualFuncInvoker2< XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*, String_t*, String_t* >::Invoke(63 /* System.Xml.XmlAttribute System.Xml.XmlElement::GetAttributeNode(System.String,System.String) */, __this, L_0, L_1);
V_0 = L_2;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_3 = V_0;
if (L_3)
{
goto IL_0035;
}
}
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_4;
L_4 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this);
String_t* L_5 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
String_t* L_6 = ___localName0;
String_t* L_7 = ___namespaceURI1;
NullCheck(L_4);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_8;
L_8 = VirtualFuncInvoker3< XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*, String_t*, String_t*, String_t* >::Invoke(69 /* System.Xml.XmlAttribute System.Xml.XmlDocument::CreateAttribute(System.String,System.String,System.String) */, L_4, L_5, L_6, L_7);
V_0 = L_8;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_9 = V_0;
String_t* L_10 = ___value2;
NullCheck(L_9);
VirtualActionInvoker1< String_t* >::Invoke(8 /* System.Void System.Xml.XmlNode::set_Value(System.String) */, L_9, L_10);
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_11;
L_11 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(14 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, __this);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_12 = V_0;
NullCheck(L_11);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_13;
L_13 = XmlAttributeCollection_InternalAppendAttribute_m4F65B9C065CD96947359F97184962FD480989BCB(L_11, L_12, NULL);
goto IL_003c;
}
IL_0035:
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_14 = V_0;
String_t* L_15 = ___value2;
NullCheck(L_14);
VirtualActionInvoker1< String_t* >::Invoke(8 /* System.Void System.Xml.XmlNode::set_Value(System.String) */, L_14, L_15);
}
IL_003c:
{
String_t* L_16 = ___value2;
return L_16;
}
}
// System.Xml.XmlAttribute System.Xml.XmlElement::GetAttributeNode(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlElement_GetAttributeNode_mF70F8BC4EFCF98670305AA5BC6FB6EBAF6649253 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, String_t* ___localName0, String_t* ___namespaceURI1, const RuntimeMethod* method)
{
{
bool L_0;
L_0 = VirtualFuncInvoker0< bool >::Invoke(56 /* System.Boolean System.Xml.XmlElement::get_HasAttributes() */, __this);
if (!L_0)
{
goto IL_0016;
}
}
{
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_1;
L_1 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(14 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, __this);
String_t* L_2 = ___localName0;
String_t* L_3 = ___namespaceURI1;
NullCheck(L_1);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_4;
L_4 = XmlAttributeCollection_get_ItemOf_m245B54FBA90E7BD011E098583819823AF7E06158(L_1, L_2, L_3, NULL);
return L_4;
}
IL_0016:
{
return (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)NULL;
}
}
// System.Xml.XmlAttribute System.Xml.XmlElement::SetAttributeNode(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlElement_SetAttributeNode_m1D0391F0C302A5747608D4D2589F300148B36F79 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, String_t* ___localName0, String_t* ___namespaceURI1, 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;
}
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_0 = NULL;
{
String_t* L_0 = ___localName0;
String_t* L_1 = ___namespaceURI1;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_2;
L_2 = VirtualFuncInvoker2< XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*, String_t*, String_t* >::Invoke(63 /* System.Xml.XmlAttribute System.Xml.XmlElement::GetAttributeNode(System.String,System.String) */, __this, L_0, L_1);
V_0 = L_2;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_3 = V_0;
if (L_3)
{
goto IL_002c;
}
}
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_4;
L_4 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this);
String_t* L_5 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
String_t* L_6 = ___localName0;
String_t* L_7 = ___namespaceURI1;
NullCheck(L_4);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_8;
L_8 = VirtualFuncInvoker3< XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*, String_t*, String_t*, String_t* >::Invoke(69 /* System.Xml.XmlAttribute System.Xml.XmlDocument::CreateAttribute(System.String,System.String,System.String) */, L_4, L_5, L_6, L_7);
V_0 = L_8;
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_9;
L_9 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(14 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, __this);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_10 = V_0;
NullCheck(L_9);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_11;
L_11 = XmlAttributeCollection_InternalAppendAttribute_m4F65B9C065CD96947359F97184962FD480989BCB(L_9, L_10, NULL);
}
IL_002c:
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_12 = V_0;
return L_12;
}
}
// System.Boolean System.Xml.XmlElement::HasAttribute(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlElement_HasAttribute_mB2EE5A7BF5B662A096C174BDE61F524F648E3169 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, String_t* ___name0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_1;
L_1 = VirtualFuncInvoker1< XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*, String_t* >::Invoke(59 /* System.Xml.XmlAttribute System.Xml.XmlElement::GetAttributeNode(System.String) */, __this, L_0);
return (bool)((!(((RuntimeObject*)(XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)L_1) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
}
}
// System.Void System.Xml.XmlElement::WriteTo(System.Xml.XmlWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElement_WriteTo_m29F6763BB5202D1F4ECB6B62092202C4FC9B76F8 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___w0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_0_0_0_var);
s_Il2CppMethodInitialized = true;
}
{
Type_t* L_0;
L_0 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(__this, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_1 = { reinterpret_cast<intptr_t> (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_2;
L_2 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_1, NULL);
bool L_3;
L_3 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_0, L_2, NULL);
if (!L_3)
{
goto IL_001f;
}
}
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_4 = ___w0;
XmlElement_WriteElementTo_mD3B70D6DAF299D9BBB93162A9801C153755F1DAF(L_4, __this, NULL);
return;
}
IL_001f:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_5 = ___w0;
XmlElement_WriteStartElement_m2C7B3D5DD055CE83F1621264799CC65A1D834D1D(__this, L_5, NULL);
bool L_6;
L_6 = XmlElement_get_IsEmpty_m3FD670ABE3BE49AF263E1B75875FA606CC671B5F(__this, NULL);
if (!L_6)
{
goto IL_0035;
}
}
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_7 = ___w0;
NullCheck(L_7);
VirtualActionInvoker0::Invoke(10 /* System.Void System.Xml.XmlWriter::WriteEndElement() */, L_7);
return;
}
IL_0035:
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_8 = ___w0;
VirtualActionInvoker1< XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* >::Invoke(44 /* System.Void System.Xml.XmlNode::WriteContentTo(System.Xml.XmlWriter) */, __this, L_8);
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_9 = ___w0;
NullCheck(L_9);
VirtualActionInvoker0::Invoke(11 /* System.Void System.Xml.XmlWriter::WriteFullEndElement() */, L_9);
return;
}
}
// System.Void System.Xml.XmlElement::WriteElementTo(System.Xml.XmlWriter,System.Xml.XmlElement)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElement_WriteElementTo_mD3B70D6DAF299D9BBB93162A9801C153755F1DAF (XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___writer0, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___e1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_1 = NULL;
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_0 = ___e1;
V_0 = L_0;
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_1 = ___e1;
V_1 = L_1;
}
IL_0004:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = V_1;
___e1 = ((XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)IsInstClass((RuntimeObject*)L_2, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var));
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_3 = ___e1;
if (!L_3)
{
goto IL_0056;
}
}
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_4 = ___e1;
NullCheck(L_4);
Type_t* L_5;
L_5 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_4, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_6 = { reinterpret_cast<intptr_t> (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_7;
L_7 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_6, NULL);
bool L_8;
L_8 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_5, L_7, NULL);
if (!L_8)
{
goto IL_0056;
}
}
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_9 = ___e1;
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_10 = ___writer0;
NullCheck(L_9);
XmlElement_WriteStartElement_m2C7B3D5DD055CE83F1621264799CC65A1D834D1D(L_9, L_10, NULL);
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_11 = ___e1;
NullCheck(L_11);
bool L_12;
L_12 = XmlElement_get_IsEmpty_m3FD670ABE3BE49AF263E1B75875FA606CC671B5F(L_11, NULL);
if (!L_12)
{
goto IL_003d;
}
}
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_13 = ___writer0;
NullCheck(L_13);
VirtualActionInvoker0::Invoke(10 /* System.Void System.Xml.XmlWriter::WriteEndElement() */, L_13);
goto IL_006c;
}
IL_003d:
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_14 = ___e1;
NullCheck(L_14);
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_15 = L_14->___lastChild_4;
if (L_15)
{
goto IL_004d;
}
}
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_16 = ___writer0;
NullCheck(L_16);
VirtualActionInvoker0::Invoke(11 /* System.Void System.Xml.XmlWriter::WriteFullEndElement() */, L_16);
goto IL_006c;
}
IL_004d:
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_17 = ___e1;
NullCheck(L_17);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_18;
L_18 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(16 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, L_17);
V_1 = L_18;
goto IL_0004;
}
IL_0056:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_19 = V_1;
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_20 = ___writer0;
NullCheck(L_19);
VirtualActionInvoker1< XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* >::Invoke(43 /* System.Void System.Xml.XmlNode::WriteTo(System.Xml.XmlWriter) */, L_19, L_20);
goto IL_006c;
}
IL_005f:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_21 = V_1;
NullCheck(L_21);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_22;
L_22 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(10 /* System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() */, L_21);
V_1 = L_22;
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_23 = ___writer0;
NullCheck(L_23);
VirtualActionInvoker0::Invoke(11 /* System.Void System.Xml.XmlWriter::WriteFullEndElement() */, L_23);
}
IL_006c:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_24 = V_1;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_25 = V_0;
if ((((RuntimeObject*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)L_24) == ((RuntimeObject*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)L_25)))
{
goto IL_007e;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_26 = V_1;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_27 = V_1;
NullCheck(L_27);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_28;
L_28 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(10 /* System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() */, L_27);
NullCheck(L_28);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_29;
L_29 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(17 /* System.Xml.XmlNode System.Xml.XmlNode::get_LastChild() */, L_28);
if ((((RuntimeObject*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)L_26) == ((RuntimeObject*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)L_29)))
{
goto IL_005f;
}
}
IL_007e:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_30 = V_1;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_31 = V_0;
if ((((RuntimeObject*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)L_30) == ((RuntimeObject*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)L_31)))
{
goto IL_008e;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_32 = V_1;
NullCheck(L_32);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_33;
L_33 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(13 /* System.Xml.XmlNode System.Xml.XmlNode::get_NextSibling() */, L_32);
V_1 = L_33;
goto IL_0004;
}
IL_008e:
{
return;
}
}
// System.Void System.Xml.XmlElement::WriteStartElement(System.Xml.XmlWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElement_WriteStartElement_m2C7B3D5DD055CE83F1621264799CC65A1D834D1D (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___w0, const RuntimeMethod* method)
{
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* V_0 = NULL;
int32_t V_1 = 0;
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = ___w0;
String_t* L_1;
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(34 /* System.String System.Xml.XmlNode::get_Prefix() */, __this);
String_t* L_2;
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(36 /* System.String System.Xml.XmlNode::get_LocalName() */, __this);
String_t* L_3;
L_3 = VirtualFuncInvoker0< String_t* >::Invoke(33 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, __this);
NullCheck(L_0);
VirtualActionInvoker3< String_t*, String_t*, String_t* >::Invoke(9 /* System.Void System.Xml.XmlWriter::WriteStartElement(System.String,System.String,System.String) */, L_0, L_1, L_2, L_3);
bool L_4;
L_4 = VirtualFuncInvoker0< bool >::Invoke(56 /* System.Boolean System.Xml.XmlElement::get_HasAttributes() */, __this);
if (!L_4)
{
goto IL_0045;
}
}
{
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_5;
L_5 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(14 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, __this);
V_0 = L_5;
V_1 = 0;
goto IL_003c;
}
IL_002b:
{
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_6 = V_0;
int32_t L_7 = V_1;
NullCheck(L_6);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_8;
L_8 = XmlAttributeCollection_get_ItemOf_m8F968C39C03DFEB9998B2122F4A26B76B1DB2EDB(L_6, L_7, NULL);
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_9 = ___w0;
NullCheck(L_8);
VirtualActionInvoker1< XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* >::Invoke(43 /* System.Void System.Xml.XmlNode::WriteTo(System.Xml.XmlWriter) */, L_8, L_9);
int32_t L_10 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_10, 1));
}
IL_003c:
{
int32_t L_11 = V_1;
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_12 = V_0;
NullCheck(L_12);
int32_t L_13;
L_13 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 System.Xml.XmlNamedNodeMap::get_Count() */, L_12);
if ((((int32_t)L_11) < ((int32_t)L_13)))
{
goto IL_002b;
}
}
IL_0045:
{
return;
}
}
// System.Void System.Xml.XmlElement::WriteContentTo(System.Xml.XmlWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElement_WriteContentTo_m247ACC07FD9604B780F118EACCB3EE179C829FF8 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___w0, const RuntimeMethod* method)
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL;
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0;
L_0 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(16 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, __this);
V_0 = L_0;
goto IL_0017;
}
IL_0009:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = V_0;
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_2 = ___w0;
NullCheck(L_1);
VirtualActionInvoker1< XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* >::Invoke(43 /* System.Void System.Xml.XmlNode::WriteTo(System.Xml.XmlWriter) */, L_1, L_2);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = V_0;
NullCheck(L_3);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4;
L_4 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(13 /* System.Xml.XmlNode System.Xml.XmlNode::get_NextSibling() */, L_3);
V_0 = L_4;
}
IL_0017:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5 = V_0;
if (L_5)
{
goto IL_0009;
}
}
{
return;
}
}
// System.Void System.Xml.XmlElement::RemoveAllAttributes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElement_RemoveAllAttributes_m8C8B9D2126A355EB6CB1AAC1E87AA5DB790C6516 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method)
{
{
bool L_0;
L_0 = VirtualFuncInvoker0< bool >::Invoke(56 /* System.Boolean System.Xml.XmlElement::get_HasAttributes() */, __this);
if (!L_0)
{
goto IL_0013;
}
}
{
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_1 = __this->___attributes_3;
NullCheck(L_1);
XmlAttributeCollection_RemoveAll_mF68383A7E9C4F688F73A27EDCBC926799E66DE47(L_1, NULL);
}
IL_0013:
{
return;
}
}
// System.Void System.Xml.XmlElement::RemoveAll()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElement_RemoveAll_mAE1E049DE09BD3F4B3012E65C4D06BF069D34436 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method)
{
{
XmlNode_RemoveAll_mA708E0DA19F2C6D5BC6CD66D415EA2D966300EA0(__this, NULL);
VirtualActionInvoker0::Invoke(66 /* System.Void System.Xml.XmlElement::RemoveAllAttributes() */, __this);
return;
}
}
// System.Void System.Xml.XmlElement::RemoveAllChildren()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElement_RemoveAllChildren_mF16BCED4E253E003DAD07D4CCB2D02644666C6CD (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method)
{
{
XmlNode_RemoveAll_mA708E0DA19F2C6D5BC6CD66D415EA2D966300EA0(__this, NULL);
return;
}
}
// System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlElement::get_SchemaInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlElement_get_SchemaInfo_mDABCFA24BA713C0AFB71A434E843A0A2818A6697 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method)
{
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = __this->___name_2;
return L_0;
}
}
// System.Void System.Xml.XmlElement::set_InnerXml(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElement_set_InnerXml_m8E5363696C8158F9C378D655F81D2A5674B8A0B4 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlElement_RemoveAllChildren_mF16BCED4E253E003DAD07D4CCB2D02644666C6CD(__this, NULL);
XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* L_0 = (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D*)il2cpp_codegen_object_new(XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D_il2cpp_TypeInfo_var);
NullCheck(L_0);
XmlLoader__ctor_m388331A1FB63D316FDDF4D7312B6977BFEC1A050(L_0, NULL);
String_t* L_1 = ___value0;
NullCheck(L_0);
XmlLoader_LoadInnerXmlElement_mE78D161D2D91C2082F77B90FAA4DF5181915DDEB(L_0, __this, L_1, NULL);
return;
}
}
// System.String System.Xml.XmlElement::get_InnerText()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlElement_get_InnerText_mF241C44D2B198D55128A275BA94091000B739A87 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method)
{
{
String_t* L_0;
L_0 = XmlNode_get_InnerText_mC66D119E27E20F4C1E473CB76C8209CDA7262C8D(__this, NULL);
return L_0;
}
}
// System.Void System.Xml.XmlElement::set_InnerText(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElement_set_InnerText_mA5556C343E03E7EA7D7D6B7E29E0DE640DC217B2 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, String_t* ___value0, const RuntimeMethod* method)
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* V_0 = NULL;
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_0;
L_0 = VirtualFuncInvoker0< XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* >::Invoke(19 /* System.Xml.XmlLinkedNode System.Xml.XmlNode::get_LastNode() */, __this);
V_0 = L_0;
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_1 = V_0;
if (!L_1)
{
goto IL_0024;
}
}
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_2 = V_0;
NullCheck(L_2);
int32_t L_3;
L_3 = VirtualFuncInvoker0< int32_t >::Invoke(9 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_2);
if ((!(((uint32_t)L_3) == ((uint32_t)3))))
{
goto IL_0024;
}
}
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_4 = V_0;
NullCheck(L_4);
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_5 = L_4->___next_1;
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_6 = V_0;
if ((!(((RuntimeObject*)(XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)L_5) == ((RuntimeObject*)(XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)L_6))))
{
goto IL_0024;
}
}
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_7 = V_0;
String_t* L_8 = ___value0;
NullCheck(L_7);
VirtualActionInvoker1< String_t* >::Invoke(8 /* System.Void System.Xml.XmlNode::set_Value(System.String) */, L_7, L_8);
return;
}
IL_0024:
{
XmlElement_RemoveAllChildren_mF16BCED4E253E003DAD07D4CCB2D02644666C6CD(__this, NULL);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_9;
L_9 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this);
String_t* L_10 = ___value0;
NullCheck(L_9);
XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* L_11;
L_11 = VirtualFuncInvoker1< XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A*, String_t* >::Invoke(66 /* System.Xml.XmlText System.Xml.XmlDocument::CreateTextNode(System.String) */, L_9, L_10);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_12;
L_12 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(25 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChild(System.Xml.XmlNode) */, __this, L_11);
return;
}
}
// System.Xml.XmlNode System.Xml.XmlElement::get_NextSibling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlElement_get_NextSibling_mD803FD835451761A840FC6ADE02389972444BD0C (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method)
{
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0;
if (!L_0)
{
goto IL_001d;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0;
NullCheck(L_1);
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_2;
L_2 = VirtualFuncInvoker0< XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* >::Invoke(19 /* System.Xml.XmlLinkedNode System.Xml.XmlNode::get_LastNode() */, L_1);
if ((((RuntimeObject*)(XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)L_2) == ((RuntimeObject*)(XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)__this)))
{
goto IL_001d;
}
}
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_3 = ((XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)__this)->___next_1;
return L_3;
}
IL_001d:
{
return (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL;
}
}
// System.Void System.Xml.XmlElement::SetParent(System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElement_SetParent_m3E433DA01834135DE485F77F19AAA36FCFA7A110 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___node0, const RuntimeMethod* method)
{
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___node0;
((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0), (void*)L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Xml.XmlEntity::.ctor(System.String,System.String,System.String,System.String,System.String,System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEntity__ctor_m3F8F45510F797944A6386162E16A5FF4EA5BCD12 (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, String_t* ___name0, String_t* ___strdata1, String_t* ___publicId2, String_t* ___systemId3, String_t* ___notationName4, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc5, const RuntimeMethod* method)
{
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___doc5;
XmlNode__ctor_m4EBED07EBE4C8D8191BE58A23594E381A8E43DCA(__this, L_0, NULL);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1 = ___doc5;
NullCheck(L_1);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_2;
L_2 = XmlDocument_get_NameTable_m4B913865A24AEA917172F75CBDCE94C81CCB7E2C(L_1, NULL);
String_t* L_3 = ___name0;
NullCheck(L_2);
String_t* L_4;
L_4 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_2, L_3);
__this->___name_4 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->___name_4), (void*)L_4);
String_t* L_5 = ___publicId2;
__this->___publicId_1 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&__this->___publicId_1), (void*)L_5);
String_t* L_6 = ___systemId3;
__this->___systemId_2 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->___systemId_2), (void*)L_6);
String_t* L_7 = ___notationName4;
__this->___notationName_3 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&__this->___notationName_3), (void*)L_7);
String_t* L_8 = ___strdata1;
__this->___unparsedReplacementStr_5 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->___unparsedReplacementStr_5), (void*)L_8);
__this->___childrenFoliating_8 = (bool)0;
return;
}
}
// System.Xml.XmlNode System.Xml.XmlEntity::CloneNode(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlEntity_CloneNode_m98D079EB599F50756351086C356E6010C0283C49 (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, bool ___deep0, const RuntimeMethod* method)
{
{
String_t* L_0;
L_0 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral49457BCC8BD0CC8C758CAB29E29AAC6EE6A36D9A)), NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_1);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, L_0, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlEntity_CloneNode_m98D079EB599F50756351086C356E6010C0283C49_RuntimeMethod_var)));
}
}
// System.Boolean System.Xml.XmlEntity::get_IsReadOnly()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlEntity_get_IsReadOnly_mEA1F980512D977C724750755BCC71DD0DB56121A (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.String System.Xml.XmlEntity::get_Name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlEntity_get_Name_mB395062CD4A35108FDC0CF0A06833F5248DB34D3 (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___name_4;
return L_0;
}
}
// System.String System.Xml.XmlEntity::get_LocalName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlEntity_get_LocalName_mEDE925C37A06EFFA432B1328E1A7AC9D7782C5A9 (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___name_4;
return L_0;
}
}
// System.String System.Xml.XmlEntity::get_InnerText()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlEntity_get_InnerText_m3988DBBC75DC7644AEF924442C50A838B4E1862B (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, const RuntimeMethod* method)
{
{
String_t* L_0;
L_0 = XmlNode_get_InnerText_mC66D119E27E20F4C1E473CB76C8209CDA7262C8D(__this, NULL);
return L_0;
}
}
// System.Void System.Xml.XmlEntity::set_InnerText(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEntity_set_InnerText_mA4E62326E14966D84046065BE9BD22C86836E37B (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0;
L_0 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral25D1D73BA8562EE08FEEAC854199F8579DA2C728)), NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_1);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, L_0, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlEntity_set_InnerText_mA4E62326E14966D84046065BE9BD22C86836E37B_RuntimeMethod_var)));
}
}
// System.Boolean System.Xml.XmlEntity::get_IsContainer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlEntity_get_IsContainer_m5825441C93DE05E6C98402FA2FB963C7646AA9C4 (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Xml.XmlLinkedNode System.Xml.XmlEntity::get_LastNode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* XmlEntity_get_LastNode_m6F4689F5D49CCD1B7D316E6C4BFD03D1375ECF5E (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_0 = __this->___lastChild_7;
if (L_0)
{
goto IL_0022;
}
}
{
bool L_1 = __this->___childrenFoliating_8;
if (L_1)
{
goto IL_0022;
}
}
{
__this->___childrenFoliating_8 = (bool)1;
XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* L_2 = (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D*)il2cpp_codegen_object_new(XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D_il2cpp_TypeInfo_var);
NullCheck(L_2);
XmlLoader__ctor_m388331A1FB63D316FDDF4D7312B6977BFEC1A050(L_2, NULL);
NullCheck(L_2);
XmlLoader_ExpandEntity_mF48C80ADCAA60579178B00F9BB747D3FDA3B2616(L_2, __this, NULL);
}
IL_0022:
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_3 = __this->___lastChild_7;
return L_3;
}
}
// System.Void System.Xml.XmlEntity::set_LastNode(System.Xml.XmlLinkedNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEntity_set_LastNode_m7C708D6802A3B5DDBC360CE02DE31DCB17D51D97 (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* ___value0, const RuntimeMethod* method)
{
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_0 = ___value0;
__this->___lastChild_7 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___lastChild_7), (void*)L_0);
return;
}
}
// System.Boolean System.Xml.XmlEntity::IsValidChildType(System.Xml.XmlNodeType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlEntity_IsValidChildType_m712AB940B6563F2DB88222FA6DF2C6191114748B (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, int32_t ___type0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___type0;
if ((((int32_t)L_0) == ((int32_t)3)))
{
goto IL_0023;
}
}
{
int32_t L_1 = ___type0;
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_0023;
}
}
{
int32_t L_2 = ___type0;
if ((((int32_t)L_2) == ((int32_t)7)))
{
goto IL_0023;
}
}
{
int32_t L_3 = ___type0;
if ((((int32_t)L_3) == ((int32_t)8)))
{
goto IL_0023;
}
}
{
int32_t L_4 = ___type0;
if ((((int32_t)L_4) == ((int32_t)4)))
{
goto IL_0023;
}
}
{
int32_t L_5 = ___type0;
if ((((int32_t)L_5) == ((int32_t)((int32_t)13))))
{
goto IL_0023;
}
}
{
int32_t L_6 = ___type0;
if ((((int32_t)L_6) == ((int32_t)((int32_t)14))))
{
goto IL_0023;
}
}
{
int32_t L_7 = ___type0;
return (bool)((((int32_t)L_7) == ((int32_t)5))? 1 : 0);
}
IL_0023:
{
return (bool)1;
}
}
// System.Xml.XmlNodeType System.Xml.XmlEntity::get_NodeType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlEntity_get_NodeType_mFB4FA8F5D4C0373F6FCFDDB263A1377BD9BE7323 (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, const RuntimeMethod* method)
{
{
return (int32_t)(6);
}
}
// System.String System.Xml.XmlEntity::get_SystemId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlEntity_get_SystemId_mBD4E3AB5EBAE7C852E533B9E184A316BECF47FA7 (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___systemId_2;
return L_0;
}
}
// System.Void System.Xml.XmlEntity::set_InnerXml(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEntity_set_InnerXml_m0EFAA9C52B2F23F483E6F135D920BC04F46D19A1 (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0;
L_0 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDB06DE16F44A88CD00ED1FDBEB9E9BFE0F4D1C2A)), NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_1);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, L_0, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlEntity_set_InnerXml_m0EFAA9C52B2F23F483E6F135D920BC04F46D19A1_RuntimeMethod_var)));
}
}
// System.Void System.Xml.XmlEntity::WriteTo(System.Xml.XmlWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEntity_WriteTo_mF2BFA329C556F91F882187715263EE372035A9F9 (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___w0, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Xml.XmlEntity::WriteContentTo(System.Xml.XmlWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEntity_WriteContentTo_m80097DB9A285F014639362C24DF240B257BD5563 (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___w0, const RuntimeMethod* method)
{
{
return;
}
}
// System.String System.Xml.XmlEntity::get_BaseURI()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlEntity_get_BaseURI_mBEE2C3D19C59C9A59F1554B612561D242506EDE3 (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___baseURI_6;
return L_0;
}
}
// System.Void System.Xml.XmlEntity::SetBaseURI(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEntity_SetBaseURI_mFEBE0339CA3A522BDC09A278FFBA3A9D77A578B3 (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, String_t* ___inBaseURI0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___inBaseURI0;
__this->___baseURI_6 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___baseURI_6), (void*)L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Xml.XmlEntityReference::.ctor(System.String,System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEntityReference__ctor_m7AAF0A5672B04060ECEAFAB3DF7E93DA8A7B6A94 (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, String_t* ___name0, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc1, const RuntimeMethod* method)
{
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___doc1;
XmlLinkedNode__ctor_mBAF93AD97DBA998E16940918D8F7EF3E585C7633(__this, L_0, NULL);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1 = ___doc1;
NullCheck(L_1);
bool L_2;
L_2 = XmlDocument_get_IsLoading_mD97F2D54DE1BD3B4F8B496F4D8D31C061FA8A52D_inline(L_1, NULL);
if (L_2)
{
goto IL_0033;
}
}
{
String_t* L_3 = ___name0;
NullCheck(L_3);
int32_t L_4;
L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL);
if ((((int32_t)L_4) <= ((int32_t)0)))
{
goto IL_0033;
}
}
{
String_t* L_5 = ___name0;
NullCheck(L_5);
Il2CppChar L_6;
L_6 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_5, 0, NULL);
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)35)))))
{
goto IL_0033;
}
}
{
String_t* L_7;
L_7 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7FF349F9C3C625219F1F7A7D29EEEF01064CD1C1)), NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_8 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_8);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_8, L_7, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlEntityReference__ctor_m7AAF0A5672B04060ECEAFAB3DF7E93DA8A7B6A94_RuntimeMethod_var)));
}
IL_0033:
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_9 = ___doc1;
NullCheck(L_9);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_10;
L_10 = XmlDocument_get_NameTable_m4B913865A24AEA917172F75CBDCE94C81CCB7E2C(L_9, NULL);
String_t* L_11 = ___name0;
NullCheck(L_10);
String_t* L_12;
L_12 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_10, L_11);
__this->___name_2 = L_12;
Il2CppCodeGenWriteBarrier((void**)(&__this->___name_2), (void*)L_12);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_13 = ___doc1;
NullCheck(L_13);
L_13->___fEntRefNodesPresent_17 = (bool)1;
return;
}
}
// System.String System.Xml.XmlEntityReference::get_Name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlEntityReference_get_Name_m04458DB45F333977C89A42BFEEA84DFFD336A7C6 (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___name_2;
return L_0;
}
}
// System.String System.Xml.XmlEntityReference::get_LocalName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlEntityReference_get_LocalName_mC07D5C66ED59E93E5A135FAE9C79573E2D1CE95A (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___name_2;
return L_0;
}
}
// System.String System.Xml.XmlEntityReference::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlEntityReference_get_Value_mB644EC609B70FBEBEADD62213FD801F3A63D52A1 (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, const RuntimeMethod* method)
{
{
return (String_t*)NULL;
}
}
// System.Void System.Xml.XmlEntityReference::set_Value(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEntityReference_set_Value_m082BB4880A54A333C84B5FC04807FA3885BCE2A4 (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0;
L_0 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9FEC92783BE6B523E2C117E0794061302D78945E)), NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_1);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, L_0, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlEntityReference_set_Value_m082BB4880A54A333C84B5FC04807FA3885BCE2A4_RuntimeMethod_var)));
}
}
// System.Xml.XmlNodeType System.Xml.XmlEntityReference::get_NodeType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlEntityReference_get_NodeType_m8EAACF32F1C09412B240CB54BFE9CD1F982290E7 (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, const RuntimeMethod* method)
{
{
return (int32_t)(5);
}
}
// System.Xml.XmlNode System.Xml.XmlEntityReference::CloneNode(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlEntityReference_CloneNode_m261E6E9080D91887823308E9BEF22040F89A9F36 (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, bool ___deep0, const RuntimeMethod* method)
{
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0;
L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this);
String_t* L_1 = __this->___name_2;
NullCheck(L_0);
XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_2;
L_2 = VirtualFuncInvoker1< XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684*, String_t* >::Invoke(63 /* System.Xml.XmlEntityReference System.Xml.XmlDocument::CreateEntityReference(System.String) */, L_0, L_1);
return L_2;
}
}
// System.Boolean System.Xml.XmlEntityReference::get_IsReadOnly()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlEntityReference_get_IsReadOnly_mA9A5BBA9CF680F2578F2364A14A6DED08E630E08 (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Boolean System.Xml.XmlEntityReference::get_IsContainer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlEntityReference_get_IsContainer_m0ADEE4CF259EA90DD34D613A9A5CC828361F8671 (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Void System.Xml.XmlEntityReference::SetParent(System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEntityReference_SetParent_m0DB5F834F46BA9976C2C110DFB00E124EE884CCE (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___node0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___node0;
XmlNode_SetParent_mC2F3D8403B21789BAC584DC19C1AF0B59865E5A6(__this, L_0, NULL);
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_1;
L_1 = VirtualFuncInvoker0< XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* >::Invoke(19 /* System.Xml.XmlLinkedNode System.Xml.XmlNode::get_LastNode() */, __this);
if (L_1)
{
goto IL_0026;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = ___node0;
if (!L_2)
{
goto IL_0026;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = ___node0;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_4;
L_4 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this);
if ((((RuntimeObject*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)L_3) == ((RuntimeObject*)(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B*)L_4)))
{
goto IL_0026;
}
}
{
XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* L_5 = (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D*)il2cpp_codegen_object_new(XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D_il2cpp_TypeInfo_var);
NullCheck(L_5);
XmlLoader__ctor_m388331A1FB63D316FDDF4D7312B6977BFEC1A050(L_5, NULL);
NullCheck(L_5);
XmlLoader_ExpandEntityReference_m99D6DCC2F0FA00E28E73698D333FCC12EFCA7B2F(L_5, __this, NULL);
}
IL_0026:
{
return;
}
}
// System.Void System.Xml.XmlEntityReference::SetParentForLoad(System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEntityReference_SetParentForLoad_mE425DA31BDDE7A43B0F0801355EA971B4BD19DC5 (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___node0, const RuntimeMethod* method)
{
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___node0;
VirtualActionInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(47 /* System.Void System.Xml.XmlNode::SetParent(System.Xml.XmlNode) */, __this, L_0);
return;
}
}
// System.Xml.XmlLinkedNode System.Xml.XmlEntityReference::get_LastNode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* XmlEntityReference_get_LastNode_m82739AD8F8B3F63000809A23E927AB6C97AC178E (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, const RuntimeMethod* method)
{
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_0 = __this->___lastChild_3;
return L_0;
}
}
// System.Void System.Xml.XmlEntityReference::set_LastNode(System.Xml.XmlLinkedNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEntityReference_set_LastNode_mBA7486033533289A22F4ECEB0F8EC2A0F2B75ED0 (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* ___value0, const RuntimeMethod* method)
{
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_0 = ___value0;
__this->___lastChild_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___lastChild_3), (void*)L_0);
return;
}
}
// System.Boolean System.Xml.XmlEntityReference::IsValidChildType(System.Xml.XmlNodeType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlEntityReference_IsValidChildType_m8C4FC7227048C64D65DB3B14255E9453FC7E1C35 (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, int32_t ___type0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___type0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_0, 1)))
{
case 0:
{
goto IL_0042;
}
case 1:
{
goto IL_0044;
}
case 2:
{
goto IL_0042;
}
case 3:
{
goto IL_0042;
}
case 4:
{
goto IL_0042;
}
case 5:
{
goto IL_0044;
}
case 6:
{
goto IL_0042;
}
case 7:
{
goto IL_0042;
}
case 8:
{
goto IL_0044;
}
case 9:
{
goto IL_0044;
}
case 10:
{
goto IL_0044;
}
case 11:
{
goto IL_0044;
}
case 12:
{
goto IL_0042;
}
case 13:
{
goto IL_0042;
}
}
}
{
goto IL_0044;
}
IL_0042:
{
return (bool)1;
}
IL_0044:
{
return (bool)0;
}
}
// System.Void System.Xml.XmlEntityReference::WriteTo(System.Xml.XmlWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEntityReference_WriteTo_m242708727821AADC64664AFC718AC090FE29D453 (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___w0, const RuntimeMethod* method)
{
{
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = ___w0;
String_t* L_1 = __this->___name_2;
NullCheck(L_0);
VirtualActionInvoker1< String_t* >::Invoke(17 /* System.Void System.Xml.XmlWriter::WriteEntityRef(System.String) */, L_0, L_1);
return;
}
}
// System.Void System.Xml.XmlEntityReference::WriteContentTo(System.Xml.XmlWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEntityReference_WriteContentTo_mC0C989C0CDCAA0F370A9747D873F0BA1251435D3 (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___w0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
{
RuntimeObject* L_0;
L_0 = XmlNode_GetEnumerator_mB640F7F79C355C618D587137B685AFFE1F798ED8(__this, NULL);
V_0 = L_0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0024:
{// begin finally (depth: 1)
{
RuntimeObject* L_1 = V_0;
V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_2 = V_1;
if (!L_2)
{
goto IL_0034;
}
}
{
RuntimeObject* L_3 = V_1;
NullCheck(L_3);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3);
}
IL_0034:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_001a_1;
}
IL_0009_1:
{
RuntimeObject* L_4 = V_0;
NullCheck(L_4);
RuntimeObject* L_5;
L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_4);
XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_6 = ___w0;
NullCheck(((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)CastclassClass((RuntimeObject*)L_5, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var)));
VirtualActionInvoker1< XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* >::Invoke(43 /* System.Void System.Xml.XmlNode::WriteTo(System.Xml.XmlWriter) */, ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)CastclassClass((RuntimeObject*)L_5, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var)), L_6);
}
IL_001a_1:
{
RuntimeObject* L_7 = V_0;
NullCheck(L_7);
bool L_8;
L_8 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_7);
if (L_8)
{
goto IL_0009_1;
}
}
{
goto IL_0035;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0035:
{
return;
}
}
// System.String System.Xml.XmlEntityReference::get_BaseURI()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlEntityReference_get_BaseURI_m8B0B98DF295EAA54B6A54431BDDCD05FFBA7A343 (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, const RuntimeMethod* method)
{
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0;
L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this);
NullCheck(L_0);
String_t* L_1;
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(42 /* System.String System.Xml.XmlNode::get_BaseURI() */, L_0);
return L_1;
}
}
// System.String System.Xml.XmlEntityReference::ConstructBaseURI(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlEntityReference_ConstructBaseURI_mCB7DDEFDCE5D272FA11026F4FE913CCA1339B4B2 (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, String_t* ___baseURI0, String_t* ___systemId1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral09B11B6CC411D8B9FFB75EAAE9A35B2AF248CE40);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
String_t* V_1 = NULL;
{
String_t* L_0 = ___baseURI0;
if (L_0)
{
goto IL_0005;
}
}
{
String_t* L_1 = ___systemId1;
return L_1;
}
IL_0005:
{
String_t* L_2 = ___baseURI0;
NullCheck(L_2);
int32_t L_3;
L_3 = String_LastIndexOf_m6BB3E7E1B48702D4C715FA423F8A822C053B290E(L_2, ((int32_t)47), NULL);
V_0 = ((int32_t)il2cpp_codegen_add(L_3, 1));
String_t* L_4 = ___baseURI0;
V_1 = L_4;
int32_t L_5 = V_0;
if ((((int32_t)L_5) <= ((int32_t)0)))
{
goto IL_002a;
}
}
{
int32_t L_6 = V_0;
String_t* L_7 = ___baseURI0;
NullCheck(L_7);
int32_t L_8;
L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL);
if ((((int32_t)L_6) >= ((int32_t)L_8)))
{
goto IL_002a;
}
}
{
String_t* L_9 = ___baseURI0;
int32_t L_10 = V_0;
NullCheck(L_9);
String_t* L_11;
L_11 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_9, 0, L_10, NULL);
V_1 = L_11;
goto IL_0039;
}
IL_002a:
{
int32_t L_12 = V_0;
if (L_12)
{
goto IL_0039;
}
}
{
String_t* L_13 = V_1;
String_t* L_14;
L_14 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_13, _stringLiteral09B11B6CC411D8B9FFB75EAAE9A35B2AF248CE40, NULL);
V_1 = L_14;
}
IL_0039:
{
String_t* L_15 = V_1;
String_t* L_16 = ___systemId1;
NullCheck(L_16);
String_t* L_17;
L_17 = String_Replace_m86403DC5F422D8D5E1CFAAF255B103CB807EDAAF(L_16, ((int32_t)92), ((int32_t)47), NULL);
String_t* L_18;
L_18 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_15, L_17, NULL);
return L_18;
}
}
// System.String System.Xml.XmlEntityReference::get_ChildBaseURI()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlEntityReference_get_ChildBaseURI_m0436E0491FD7F8D12694E705C57AF11BD59B62A4 (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* V_0 = NULL;
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0;
L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this);
String_t* L_1 = __this->___name_2;
NullCheck(L_0);
XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* L_2;
L_2 = XmlDocument_GetEntityNode_m9A45EC68379AD8210E79FD8A88EB705D011E827A(L_0, L_1, NULL);
V_0 = L_2;
XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* L_3 = V_0;
if (!L_3)
{
goto IL_0045;
}
}
{
XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* L_4 = V_0;
NullCheck(L_4);
String_t* L_5;
L_5 = XmlEntity_get_SystemId_mBD4E3AB5EBAE7C852E533B9E184A316BECF47FA7_inline(L_4, NULL);
if (!L_5)
{
goto IL_003e;
}
}
{
XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* L_6 = V_0;
NullCheck(L_6);
String_t* L_7;
L_7 = XmlEntity_get_SystemId_mBD4E3AB5EBAE7C852E533B9E184A316BECF47FA7_inline(L_6, NULL);
NullCheck(L_7);
int32_t L_8;
L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL);
if ((((int32_t)L_8) <= ((int32_t)0)))
{
goto IL_003e;
}
}
{
XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* L_9 = V_0;
NullCheck(L_9);
String_t* L_10;
L_10 = VirtualFuncInvoker0< String_t* >::Invoke(42 /* System.String System.Xml.XmlNode::get_BaseURI() */, L_9);
XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* L_11 = V_0;
NullCheck(L_11);
String_t* L_12;
L_12 = XmlEntity_get_SystemId_mBD4E3AB5EBAE7C852E533B9E184A316BECF47FA7_inline(L_11, NULL);
String_t* L_13;
L_13 = XmlEntityReference_ConstructBaseURI_mCB7DDEFDCE5D272FA11026F4FE913CCA1339B4B2(__this, L_10, L_12, NULL);
return L_13;
}
IL_003e:
{
XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* L_14 = V_0;
NullCheck(L_14);
String_t* L_15;
L_15 = VirtualFuncInvoker0< String_t* >::Invoke(42 /* System.String System.Xml.XmlNode::get_BaseURI() */, L_14);
return L_15;
}
IL_0045:
{
String_t* L_16 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_16;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Xml.XmlImplementation::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlImplementation__ctor_mEBE20EB37760F63620D9DFAEF3341D2F4E138DC9 (XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46* L_0 = (NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46*)il2cpp_codegen_object_new(NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46_il2cpp_TypeInfo_var);
NullCheck(L_0);
NameTable__ctor_mB02EE27092095D81E839D51519C4FBDA2227C261(L_0, NULL);
XmlImplementation__ctor_mE5899D3C7EA30F9EDB19D07211588DB4FEDEC04D(__this, L_0, NULL);
return;
}
}
// System.Void System.Xml.XmlImplementation::.ctor(System.Xml.XmlNameTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlImplementation__ctor_mE5899D3C7EA30F9EDB19D07211588DB4FEDEC04D (XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* __this, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nt0, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_0 = ___nt0;
__this->___nameTable_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___nameTable_0), (void*)L_0);
return;
}
}
// System.Xml.XmlDocument System.Xml.XmlImplementation::CreateDocument()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* XmlImplementation_CreateDocument_mE4CDDCBC487D85C40F81751C1DC54FFB1C6021D2 (XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B*)il2cpp_codegen_object_new(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var);
NullCheck(L_0);
XmlDocument__ctor_m90653BB0CD6863B4328A3B32B72ED4383C97D1A8(L_0, __this, NULL);
return L_0;
}
}
// System.Xml.XmlNameTable System.Xml.XmlImplementation::get_NameTable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* XmlImplementation_get_NameTable_m8951702F59619310BD4A9528D2FF471352518CDF (XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* __this, const RuntimeMethod* method)
{
{
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_0 = __this->___nameTable_0;
return L_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Xml.XmlLinkedNode::.ctor(System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLinkedNode__ctor_mBAF93AD97DBA998E16940918D8F7EF3E585C7633 (XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* __this, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc0, const RuntimeMethod* method)
{
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___doc0;
XmlNode__ctor_m4EBED07EBE4C8D8191BE58A23594E381A8E43DCA(__this, L_0, NULL);
__this->___next_1 = (XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___next_1), (void*)(XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)NULL);
return;
}
}
// System.Xml.XmlNode System.Xml.XmlLinkedNode::get_PreviousSibling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlLinkedNode_get_PreviousSibling_m049F4B495C8A154CC684EABE02C38048EF4F07E5 (XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* __this, const RuntimeMethod* method)
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_1 = NULL;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_2 = NULL;
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0;
L_0 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(10 /* System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() */, __this);
V_0 = L_0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = V_0;
if (!L_1)
{
goto IL_0025;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = V_0;
NullCheck(L_2);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3;
L_3 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(16 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, L_2);
V_1 = L_3;
goto IL_0020;
}
IL_0013:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4 = V_1;
NullCheck(L_4);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5;
L_5 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(13 /* System.Xml.XmlNode System.Xml.XmlNode::get_NextSibling() */, L_4);
V_2 = L_5;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6 = V_2;
if ((((RuntimeObject*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)L_6) == ((RuntimeObject*)(XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)__this)))
{
goto IL_0023;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_7 = V_2;
V_1 = L_7;
}
IL_0020:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_8 = V_1;
if (L_8)
{
goto IL_0013;
}
}
IL_0023:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_9 = V_1;
return L_9;
}
IL_0025:
{
return (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL;
}
}
// System.Xml.XmlNode System.Xml.XmlLinkedNode::get_NextSibling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlLinkedNode_get_NextSibling_m2D436964437A504AED023A59BB9E11E61D3A6BCD (XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* __this, const RuntimeMethod* method)
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL;
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0;
L_0 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(10 /* System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() */, __this);
V_0 = L_0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = V_0;
if (!L_1)
{
goto IL_001f;
}
}
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_2 = __this->___next_1;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = V_0;
NullCheck(L_3);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4;
L_4 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(16 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, L_3);
if ((((RuntimeObject*)(XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)L_2) == ((RuntimeObject*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)L_4)))
{
goto IL_001f;
}
}
{
XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_5 = __this->___next_1;
return L_5;
}
IL_001f:
{
return (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Xml.XmlLoader::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader__ctor_m388331A1FB63D316FDDF4D7312B6977BFEC1A050 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Void System.Xml.XmlLoader::Load(System.Xml.XmlDocument,System.Xml.XmlReader,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_Load_m3B85C836D8C6DE323B85E868DED6E8E36D56C124 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc0, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader1, bool ___preserveWhitespace2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___doc0;
__this->___doc_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___doc_0), (void*)L_0);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1 = ___reader1;
NullCheck(L_1);
Type_t* L_2;
L_2 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_1, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast<intptr_t> (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_4;
L_4 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_3, NULL);
bool L_5;
L_5 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_2, L_4, NULL);
if (!L_5)
{
goto IL_0031;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_6 = ___reader1;
NullCheck(((XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B*)CastclassClass((RuntimeObject*)L_6, XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var)));
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_7;
L_7 = XmlTextReader_get_Impl_m99AA88D6B2335764B7B4171CCC9D9C77329D72D8_inline(((XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B*)CastclassClass((RuntimeObject*)L_6, XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var)), NULL);
__this->___reader_1 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&__this->___reader_1), (void*)L_7);
goto IL_0038;
}
IL_0031:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_8 = ___reader1;
__this->___reader_1 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->___reader_1), (void*)L_8);
}
IL_0038:
{
bool L_9 = ___preserveWhitespace2;
__this->___preserveWhitespace_2 = L_9;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_10 = ___doc0;
if (L_10)
{
goto IL_0052;
}
}
{
String_t* L_11;
L_11 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBE8285B3FBB68E69672F471D9C7CD01AFC710E52)), NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_12 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_12);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_12, L_11, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlLoader_Load_m3B85C836D8C6DE323B85E868DED6E8E36D56C124_RuntimeMethod_var)));
}
IL_0052:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_13 = ___reader1;
if (L_13)
{
goto IL_0065;
}
}
{
String_t* L_14;
L_14 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEF5E4E7AE49599D22FDECF4CBDE50AE7C9C1DD38)), NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_15 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_15);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_15, L_14, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlLoader_Load_m3B85C836D8C6DE323B85E868DED6E8E36D56C124_RuntimeMethod_var)));
}
IL_0065:
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_16 = ___doc0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_17 = ___reader1;
NullCheck(L_17);
String_t* L_18;
L_18 = VirtualFuncInvoker0< String_t* >::Invoke(13 /* System.String System.Xml.XmlReader::get_BaseURI() */, L_17);
NullCheck(L_16);
XmlDocument_SetBaseURI_mE44F99B7DFBF6C63E7041125703303F9146C146E_inline(L_16, L_18, NULL);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_19 = ___reader1;
NullCheck(L_19);
XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_20;
L_20 = VirtualFuncInvoker0< XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* >::Invoke(5 /* System.Xml.XmlReaderSettings System.Xml.XmlReader::get_Settings() */, L_19);
if (!L_20)
{
goto IL_0098;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_21 = ___reader1;
NullCheck(L_21);
XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_22;
L_22 = VirtualFuncInvoker0< XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* >::Invoke(5 /* System.Xml.XmlReaderSettings System.Xml.XmlReader::get_Settings() */, L_21);
NullCheck(L_22);
int32_t L_23;
L_23 = XmlReaderSettings_get_ValidationType_mFF201BAC3A2B593BB69E691E0AA3814455185F8A_inline(L_22, NULL);
if ((!(((uint32_t)L_23) == ((uint32_t)4))))
{
goto IL_0098;
}
}
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_24 = ___doc0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_25 = ___reader1;
NullCheck(L_25);
XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_26;
L_26 = VirtualFuncInvoker0< XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* >::Invoke(5 /* System.Xml.XmlReaderSettings System.Xml.XmlReader::get_Settings() */, L_25);
NullCheck(L_26);
XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* L_27;
L_27 = XmlReaderSettings_get_Schemas_mCA60590694647CFB542019784F457006B33D2C62(L_26, NULL);
NullCheck(L_24);
XmlDocument_set_Schemas_m434B1F13D18F926E959FCC426F4731C9AC385A3B_inline(L_24, L_27, NULL);
}
IL_0098:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_28 = __this->___reader_1;
NullCheck(L_28);
int32_t L_29;
L_29 = VirtualFuncInvoker0< int32_t >::Invoke(34 /* System.Xml.ReadState System.Xml.XmlReader::get_ReadState() */, L_28);
if ((((int32_t)L_29) == ((int32_t)1)))
{
goto IL_00b4;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_30 = __this->___reader_1;
NullCheck(L_30);
bool L_31;
L_31 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, L_30);
if (L_31)
{
goto IL_00b4;
}
}
{
return;
}
IL_00b4:
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_32 = ___doc0;
XmlLoader_LoadDocSequence_m7A96D61FBF4996383D5339AB7B416CE0D51D4526(__this, L_32, NULL);
return;
}
}
// System.Void System.Xml.XmlLoader::LoadDocSequence(System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_LoadDocSequence_m7A96D61FBF4996383D5339AB7B416CE0D51D4526 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___parentDoc0, const RuntimeMethod* method)
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL;
{
V_0 = (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL;
goto IL_001b;
}
IL_0004:
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___parentDoc0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = V_0;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_2 = ___parentDoc0;
NullCheck(L_0);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3;
L_3 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(26 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, L_0, L_1, L_2);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_4 = __this->___reader_1;
NullCheck(L_4);
bool L_5;
L_5 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, L_4);
if (L_5)
{
goto IL_001b;
}
}
{
return;
}
IL_001b:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6;
L_6 = XmlLoader_LoadNode_mDFD824F250FA615C734180BF6141A472610F7E68(__this, (bool)1, NULL);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_7 = L_6;
V_0 = L_7;
if (L_7)
{
goto IL_0004;
}
}
{
return;
}
}
// System.Xml.XmlNode System.Xml.XmlLoader::ReadCurrentNode(System.Xml.XmlDocument,System.Xml.XmlReader)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlLoader_ReadCurrentNode_m9E1E110A0B31C77EC53393D8C51B497A2CD79241 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc0, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader1, const RuntimeMethod* method)
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* G_B9_0 = NULL;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* G_B8_0 = NULL;
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___doc0;
__this->___doc_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___doc_0), (void*)L_0);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1 = ___reader1;
__this->___reader_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___reader_1), (void*)L_1);
__this->___preserveWhitespace_2 = (bool)1;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_2 = ___doc0;
if (L_2)
{
goto IL_0028;
}
}
{
String_t* L_3;
L_3 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBE8285B3FBB68E69672F471D9C7CD01AFC710E52)), 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*)&XmlLoader_ReadCurrentNode_m9E1E110A0B31C77EC53393D8C51B497A2CD79241_RuntimeMethod_var)));
}
IL_0028:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_5 = ___reader1;
if (L_5)
{
goto IL_003b;
}
}
{
String_t* L_6;
L_6 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEF5E4E7AE49599D22FDECF4CBDE50AE7C9C1DD38)), 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*)&XmlLoader_ReadCurrentNode_m9E1E110A0B31C77EC53393D8C51B497A2CD79241_RuntimeMethod_var)));
}
IL_003b:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_8 = ___reader1;
NullCheck(L_8);
int32_t L_9;
L_9 = VirtualFuncInvoker0< int32_t >::Invoke(34 /* System.Xml.ReadState System.Xml.XmlReader::get_ReadState() */, L_8);
if (L_9)
{
goto IL_004a;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_10 = ___reader1;
NullCheck(L_10);
bool L_11;
L_11 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, L_10);
}
IL_004a:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_12 = ___reader1;
NullCheck(L_12);
int32_t L_13;
L_13 = VirtualFuncInvoker0< int32_t >::Invoke(34 /* System.Xml.ReadState System.Xml.XmlReader::get_ReadState() */, L_12);
if ((!(((uint32_t)L_13) == ((uint32_t)1))))
{
goto IL_006b;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_14;
L_14 = XmlLoader_LoadNode_mDFD824F250FA615C734180BF6141A472610F7E68(__this, (bool)1, NULL);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_15 = L_14;
NullCheck(L_15);
int32_t L_16;
L_16 = VirtualFuncInvoker0< int32_t >::Invoke(9 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_15);
G_B8_0 = L_15;
if ((((int32_t)L_16) == ((int32_t)2)))
{
G_B9_0 = L_15;
goto IL_006a;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_17 = ___reader1;
NullCheck(L_17);
bool L_18;
L_18 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, L_17);
G_B9_0 = G_B8_0;
}
IL_006a:
{
return G_B9_0;
}
IL_006b:
{
return (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL;
}
}
// System.Xml.XmlNode System.Xml.XmlLoader::LoadNode(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlLoader_LoadNode_mDFD824F250FA615C734180BF6141A472610F7E68 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, bool ___skipOverWhitespace0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* V_0 = NULL;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_1 = NULL;
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* V_2 = NULL;
RuntimeObject* V_3 = NULL;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_4 = NULL;
bool V_5 = false;
int32_t V_6 = 0;
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* V_7 = NULL;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_8 = NULL;
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___reader_1;
V_0 = L_0;
V_1 = (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL;
}
IL_0009:
{
V_4 = (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1 = V_0;
NullCheck(L_1);
int32_t L_2;
L_2 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_1);
V_6 = L_2;
int32_t L_3 = V_6;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_3, 1)))
{
case 0:
{
goto IL_0066;
}
case 1:
{
goto IL_017a;
}
case 2:
{
goto IL_0187;
}
case 3:
{
goto IL_01df;
}
case 4:
{
goto IL_016a;
}
case 5:
{
goto IL_0238;
}
case 6:
{
goto IL_01fe;
}
case 7:
{
goto IL_0219;
}
case 8:
{
goto IL_0238;
}
case 9:
{
goto IL_022e;
}
case 10:
{
goto IL_0238;
}
case 11:
{
goto IL_0238;
}
case 12:
{
goto IL_01b7;
}
case 13:
{
goto IL_019f;
}
case 14:
{
goto IL_0117;
}
case 15:
{
goto IL_0178;
}
case 16:
{
goto IL_01f4;
}
}
}
{
goto IL_0238;
}
IL_0066:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_4 = V_0;
NullCheck(L_4);
bool L_5;
L_5 = VirtualFuncInvoker0< bool >::Invoke(14 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, L_4);
V_5 = L_5;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_6 = __this->___doc_0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_7 = V_0;
NullCheck(L_7);
String_t* L_8;
L_8 = VirtualFuncInvoker0< String_t* >::Invoke(10 /* System.String System.Xml.XmlReader::get_Prefix() */, L_7);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_9 = V_0;
NullCheck(L_9);
String_t* L_10;
L_10 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_9);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_11 = V_0;
NullCheck(L_11);
String_t* L_12;
L_12 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_11);
NullCheck(L_6);
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_13;
L_13 = VirtualFuncInvoker3< XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*, String_t*, String_t*, String_t* >::Invoke(71 /* System.Xml.XmlElement System.Xml.XmlDocument::CreateElement(System.String,System.String,System.String) */, L_6, L_8, L_10, L_12);
V_2 = L_13;
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_14 = V_2;
bool L_15 = V_5;
NullCheck(L_14);
XmlElement_set_IsEmpty_mA8B835AE5541C20296A231855F3ABF4296A475F7(L_14, L_15, NULL);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_16 = V_0;
NullCheck(L_16);
bool L_17;
L_17 = VirtualFuncInvoker0< bool >::Invoke(27 /* System.Boolean System.Xml.XmlReader::MoveToFirstAttribute() */, L_16);
if (!L_17)
{
goto IL_00c5;
}
}
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_18 = V_2;
NullCheck(L_18);
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_19;
L_19 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(14 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, L_18);
V_7 = L_19;
}
IL_00a4:
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_20;
L_20 = XmlLoader_LoadAttributeNode_mD21D3FF205915C01F5EAA89291E816AEDE5E8567(__this, NULL);
V_8 = L_20;
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_21 = V_7;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_22 = V_8;
NullCheck(L_21);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_23;
L_23 = XmlAttributeCollection_Append_mF5AFDC3C4547DA089353B76241A5B46437CA8484(L_21, L_22, NULL);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_24 = V_0;
NullCheck(L_24);
bool L_25;
L_25 = VirtualFuncInvoker0< bool >::Invoke(28 /* System.Boolean System.Xml.XmlReader::MoveToNextAttribute() */, L_24);
if (L_25)
{
goto IL_00a4;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_26 = V_0;
NullCheck(L_26);
bool L_27;
L_27 = VirtualFuncInvoker0< bool >::Invoke(29 /* System.Boolean System.Xml.XmlReader::MoveToElement() */, L_26);
}
IL_00c5:
{
bool L_28 = V_5;
if (L_28)
{
goto IL_00e1;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_29 = V_1;
if (!L_29)
{
goto IL_00da;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_30 = V_1;
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_31 = V_2;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_32 = __this->___doc_0;
NullCheck(L_30);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_33;
L_33 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(26 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, L_30, L_31, L_32);
}
IL_00da:
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_34 = V_2;
V_1 = L_34;
goto IL_025b;
}
IL_00e1:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_35 = V_0;
NullCheck(L_35);
RuntimeObject* L_36;
L_36 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(19 /* System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlReader::get_SchemaInfo() */, L_35);
V_3 = L_36;
RuntimeObject* L_37 = V_3;
if (!L_37)
{
goto IL_010f;
}
}
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_38 = V_2;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_39 = __this->___doc_0;
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_40 = V_2;
NullCheck(L_40);
String_t* L_41;
L_41 = VirtualFuncInvoker0< String_t* >::Invoke(34 /* System.String System.Xml.XmlNode::get_Prefix() */, L_40);
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_42 = V_2;
NullCheck(L_42);
String_t* L_43;
L_43 = VirtualFuncInvoker0< String_t* >::Invoke(36 /* System.String System.Xml.XmlNode::get_LocalName() */, L_42);
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_44 = V_2;
NullCheck(L_44);
String_t* L_45;
L_45 = VirtualFuncInvoker0< String_t* >::Invoke(33 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_44);
RuntimeObject* L_46 = V_3;
NullCheck(L_39);
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_47;
L_47 = XmlDocument_AddXmlName_m0B7D502F9AA6D43E0743106B90F9CE10F459A916(L_39, L_41, L_43, L_45, L_46, NULL);
NullCheck(L_38);
XmlElement_set_XmlName_m15166904F386EAB60030EAB490CC0FD1CB624EFC_inline(L_38, L_47, NULL);
}
IL_010f:
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_48 = V_2;
V_4 = L_48;
goto IL_0244;
}
IL_0117:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_49 = V_1;
if (L_49)
{
goto IL_011c;
}
}
{
return (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL;
}
IL_011c:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_50 = V_0;
NullCheck(L_50);
RuntimeObject* L_51;
L_51 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(19 /* System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlReader::get_SchemaInfo() */, L_50);
V_3 = L_51;
RuntimeObject* L_52 = V_3;
if (!L_52)
{
goto IL_0154;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_53 = V_1;
V_2 = ((XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)IsInstClass((RuntimeObject*)L_53, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var));
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_54 = V_2;
if (!L_54)
{
goto IL_0154;
}
}
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_55 = V_2;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_56 = __this->___doc_0;
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_57 = V_2;
NullCheck(L_57);
String_t* L_58;
L_58 = VirtualFuncInvoker0< String_t* >::Invoke(34 /* System.String System.Xml.XmlNode::get_Prefix() */, L_57);
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_59 = V_2;
NullCheck(L_59);
String_t* L_60;
L_60 = VirtualFuncInvoker0< String_t* >::Invoke(36 /* System.String System.Xml.XmlNode::get_LocalName() */, L_59);
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_61 = V_2;
NullCheck(L_61);
String_t* L_62;
L_62 = VirtualFuncInvoker0< String_t* >::Invoke(33 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_61);
RuntimeObject* L_63 = V_3;
NullCheck(L_56);
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_64;
L_64 = XmlDocument_AddXmlName_m0B7D502F9AA6D43E0743106B90F9CE10F459A916(L_56, L_58, L_60, L_62, L_63, NULL);
NullCheck(L_55);
XmlElement_set_XmlName_m15166904F386EAB60030EAB490CC0FD1CB624EFC_inline(L_55, L_64, NULL);
}
IL_0154:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_65 = V_1;
NullCheck(L_65);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_66;
L_66 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(10 /* System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() */, L_65);
if (L_66)
{
goto IL_015e;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_67 = V_1;
return L_67;
}
IL_015e:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_68 = V_1;
NullCheck(L_68);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_69;
L_69 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(10 /* System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() */, L_68);
V_1 = L_69;
goto IL_025b;
}
IL_016a:
{
XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_70;
L_70 = XmlLoader_LoadEntityReferenceNode_m26B083645AAB9B8E96E676B2EB5F19EADC24B628(__this, (bool)0, NULL);
V_4 = L_70;
goto IL_0244;
}
IL_0178:
{
return (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL;
}
IL_017a:
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_71;
L_71 = XmlLoader_LoadAttributeNode_mD21D3FF205915C01F5EAA89291E816AEDE5E8567(__this, NULL);
V_4 = L_71;
goto IL_0244;
}
IL_0187:
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_72 = __this->___doc_0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_73 = V_0;
NullCheck(L_73);
String_t* L_74;
L_74 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_73);
NullCheck(L_72);
XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* L_75;
L_75 = VirtualFuncInvoker1< XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A*, String_t* >::Invoke(66 /* System.Xml.XmlText System.Xml.XmlDocument::CreateTextNode(System.String) */, L_72, L_74);
V_4 = L_75;
goto IL_0244;
}
IL_019f:
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_76 = __this->___doc_0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_77 = V_0;
NullCheck(L_77);
String_t* L_78;
L_78 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_77);
NullCheck(L_76);
XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE* L_79;
L_79 = VirtualFuncInvoker1< XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE*, String_t* >::Invoke(67 /* System.Xml.XmlSignificantWhitespace System.Xml.XmlDocument::CreateSignificantWhitespace(System.String) */, L_76, L_78);
V_4 = L_79;
goto IL_0244;
}
IL_01b7:
{
bool L_80 = __this->___preserveWhitespace_2;
if (!L_80)
{
goto IL_01d4;
}
}
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_81 = __this->___doc_0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_82 = V_0;
NullCheck(L_82);
String_t* L_83;
L_83 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_82);
NullCheck(L_81);
XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24* L_84;
L_84 = VirtualFuncInvoker1< XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24*, String_t* >::Invoke(68 /* System.Xml.XmlWhitespace System.Xml.XmlDocument::CreateWhitespace(System.String) */, L_81, L_83);
V_4 = L_84;
goto IL_0244;
}
IL_01d4:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_85 = V_1;
if (L_85)
{
goto IL_025b;
}
}
{
bool L_86 = ___skipOverWhitespace0;
if (L_86)
{
goto IL_025b;
}
}
{
return (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL;
}
IL_01df:
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_87 = __this->___doc_0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_88 = V_0;
NullCheck(L_88);
String_t* L_89;
L_89 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_88);
NullCheck(L_87);
XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA* L_90;
L_90 = VirtualFuncInvoker1< XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA*, String_t* >::Invoke(59 /* System.Xml.XmlCDataSection System.Xml.XmlDocument::CreateCDataSection(System.String) */, L_87, L_89);
V_4 = L_90;
goto IL_0244;
}
IL_01f4:
{
XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* L_91;
L_91 = XmlLoader_LoadDeclarationNode_m43A2FAF27DCB6A1CBFEABB7508DD4C94523F1AE6(__this, NULL);
V_4 = L_91;
goto IL_0244;
}
IL_01fe:
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_92 = __this->___doc_0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_93 = V_0;
NullCheck(L_93);
String_t* L_94;
L_94 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlReader::get_Name() */, L_93);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_95 = V_0;
NullCheck(L_95);
String_t* L_96;
L_96 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_95);
NullCheck(L_92);
XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3* L_97;
L_97 = VirtualFuncInvoker2< XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3*, String_t*, String_t* >::Invoke(64 /* System.Xml.XmlProcessingInstruction System.Xml.XmlDocument::CreateProcessingInstruction(System.String,System.String) */, L_92, L_94, L_96);
V_4 = L_97;
goto IL_0244;
}
IL_0219:
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_98 = __this->___doc_0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_99 = V_0;
NullCheck(L_99);
String_t* L_100;
L_100 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_99);
NullCheck(L_98);
XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9* L_101;
L_101 = VirtualFuncInvoker1< XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9*, String_t* >::Invoke(60 /* System.Xml.XmlComment System.Xml.XmlDocument::CreateComment(System.String) */, L_98, L_100);
V_4 = L_101;
goto IL_0244;
}
IL_022e:
{
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_102;
L_102 = XmlLoader_LoadDocumentTypeNode_m8869BA2D6837AF67F10647453EA32681AA71E3A9(__this, NULL);
V_4 = L_102;
goto IL_0244;
}
IL_0238:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_103 = V_0;
NullCheck(L_103);
int32_t L_104;
L_104 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_103);
Exception_t* L_105;
L_105 = XmlLoader_UnexpectedNodeType_mA83CDA29B169FEFBB014EAC94A0D4DBFB31F84E4(L_104, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_105, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlLoader_LoadNode_mDFD824F250FA615C734180BF6141A472610F7E68_RuntimeMethod_var)));
}
IL_0244:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_106 = V_1;
if (!L_106)
{
goto IL_0258;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_107 = V_1;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_108 = V_4;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_109 = __this->___doc_0;
NullCheck(L_107);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_110;
L_110 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(26 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, L_107, L_108, L_109);
goto IL_025b;
}
IL_0258:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_111 = V_4;
return L_111;
}
IL_025b:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_112 = V_0;
NullCheck(L_112);
bool L_113;
L_113 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, L_112);
if (L_113)
{
goto IL_0009;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_114 = V_1;
if (!L_114)
{
goto IL_027a;
}
}
{
goto IL_0272;
}
IL_026b:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_115 = V_1;
NullCheck(L_115);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_116;
L_116 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(10 /* System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() */, L_115);
V_1 = L_116;
}
IL_0272:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_117 = V_1;
NullCheck(L_117);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_118;
L_118 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(10 /* System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() */, L_117);
if (L_118)
{
goto IL_026b;
}
}
IL_027a:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_119 = V_1;
return L_119;
}
}
// System.Xml.XmlAttribute System.Xml.XmlLoader::LoadAttributeNode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlLoader_LoadAttributeNode_mD21D3FF205915C01F5EAA89291E816AEDE5E8567 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* V_0 = NULL;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_1 = NULL;
RuntimeObject* V_2 = NULL;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_3 = NULL;
int32_t V_4 = 0;
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___reader_1;
V_0 = L_0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1 = V_0;
NullCheck(L_1);
bool L_2;
L_2 = VirtualFuncInvoker0< bool >::Invoke(15 /* System.Boolean System.Xml.XmlReader::get_IsDefault() */, L_1);
if (!L_2)
{
goto IL_0016;
}
}
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_3;
L_3 = XmlLoader_LoadDefaultAttribute_m020283A6DBFA29FF4B5D4C7D03D56DF43E4216D7(__this, NULL);
return L_3;
}
IL_0016:
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_4 = __this->___doc_0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_5 = V_0;
NullCheck(L_5);
String_t* L_6;
L_6 = VirtualFuncInvoker0< String_t* >::Invoke(10 /* System.String System.Xml.XmlReader::get_Prefix() */, L_5);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_7 = V_0;
NullCheck(L_7);
String_t* L_8;
L_8 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_7);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_9 = V_0;
NullCheck(L_9);
String_t* L_10;
L_10 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_9);
NullCheck(L_4);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_11;
L_11 = VirtualFuncInvoker3< XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*, String_t*, String_t*, String_t* >::Invoke(69 /* System.Xml.XmlAttribute System.Xml.XmlDocument::CreateAttribute(System.String,System.String,System.String) */, L_4, L_6, L_8, L_10);
V_1 = L_11;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_12 = V_0;
NullCheck(L_12);
RuntimeObject* L_13;
L_13 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(19 /* System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlReader::get_SchemaInfo() */, L_12);
V_2 = L_13;
RuntimeObject* L_14 = V_2;
if (!L_14)
{
goto IL_00fb;
}
}
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_15 = V_1;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_16 = __this->___doc_0;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_17 = V_1;
NullCheck(L_17);
String_t* L_18;
L_18 = VirtualFuncInvoker0< String_t* >::Invoke(34 /* System.String System.Xml.XmlNode::get_Prefix() */, L_17);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_19 = V_1;
NullCheck(L_19);
String_t* L_20;
L_20 = VirtualFuncInvoker0< String_t* >::Invoke(36 /* System.String System.Xml.XmlNode::get_LocalName() */, L_19);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_21 = V_1;
NullCheck(L_21);
String_t* L_22;
L_22 = VirtualFuncInvoker0< String_t* >::Invoke(33 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_21);
RuntimeObject* L_23 = V_2;
NullCheck(L_16);
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_24;
L_24 = XmlDocument_AddAttrXmlName_mB6D4F6DA50FBE350ABAC30CD5CE97D981506BB28(L_16, L_18, L_20, L_22, L_23, NULL);
NullCheck(L_15);
XmlAttribute_set_XmlName_m8D259D5CC4750809EACB5E213333E1E55D8BB6BB_inline(L_15, L_24, NULL);
goto IL_00fb;
}
IL_006a:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_25 = V_0;
NullCheck(L_25);
int32_t L_26;
L_26 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_25);
V_4 = L_26;
int32_t L_27 = V_4;
if ((((int32_t)L_27) == ((int32_t)3)))
{
goto IL_007e;
}
}
{
int32_t L_28 = V_4;
if ((((int32_t)L_28) == ((int32_t)5)))
{
goto IL_0092;
}
}
{
goto IL_00e1;
}
IL_007e:
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_29 = __this->___doc_0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_30 = V_0;
NullCheck(L_30);
String_t* L_31;
L_31 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_30);
NullCheck(L_29);
XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* L_32;
L_32 = VirtualFuncInvoker1< XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A*, String_t* >::Invoke(66 /* System.Xml.XmlText System.Xml.XmlDocument::CreateTextNode(System.String) */, L_29, L_31);
V_3 = L_32;
goto IL_00ed;
}
IL_0092:
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_33 = __this->___doc_0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_34 = V_0;
NullCheck(L_34);
String_t* L_35;
L_35 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_34);
NullCheck(L_33);
XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_36;
L_36 = VirtualFuncInvoker1< XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684*, String_t* >::Invoke(63 /* System.Xml.XmlEntityReference System.Xml.XmlDocument::CreateEntityReference(System.String) */, L_33, L_35);
V_3 = L_36;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_37 = V_0;
NullCheck(L_37);
bool L_38;
L_38 = VirtualFuncInvoker0< bool >::Invoke(38 /* System.Boolean System.Xml.XmlReader::get_CanResolveEntity() */, L_37);
if (!L_38)
{
goto IL_00ed;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_39 = V_0;
NullCheck(L_39);
VirtualActionInvoker0::Invoke(39 /* System.Void System.Xml.XmlReader::ResolveEntity() */, L_39);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_40 = V_3;
XmlLoader_LoadAttributeValue_m119C6C6063D71231F622A12A683078D77DA8B320(__this, L_40, (bool)0, NULL);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_41 = V_3;
NullCheck(L_41);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_42;
L_42 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(16 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, L_41);
if (L_42)
{
goto IL_00ed;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_43 = V_3;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_44 = __this->___doc_0;
String_t* L_45 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
NullCheck(L_44);
XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* L_46;
L_46 = VirtualFuncInvoker1< XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A*, String_t* >::Invoke(66 /* System.Xml.XmlText System.Xml.XmlDocument::CreateTextNode(System.String) */, L_44, L_45);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_47 = __this->___doc_0;
NullCheck(L_43);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_48;
L_48 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(26 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, L_43, L_46, L_47);
goto IL_00ed;
}
IL_00e1:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_49 = V_0;
NullCheck(L_49);
int32_t L_50;
L_50 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_49);
Exception_t* L_51;
L_51 = XmlLoader_UnexpectedNodeType_mA83CDA29B169FEFBB014EAC94A0D4DBFB31F84E4(L_50, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_51, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlLoader_LoadAttributeNode_mD21D3FF205915C01F5EAA89291E816AEDE5E8567_RuntimeMethod_var)));
}
IL_00ed:
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_52 = V_1;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_53 = V_3;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_54 = __this->___doc_0;
NullCheck(L_52);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_55;
L_55 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(26 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, L_52, L_53, L_54);
}
IL_00fb:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_56 = V_0;
NullCheck(L_56);
bool L_57;
L_57 = VirtualFuncInvoker0< bool >::Invoke(30 /* System.Boolean System.Xml.XmlReader::ReadAttributeValue() */, L_56);
if (L_57)
{
goto IL_006a;
}
}
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_58 = V_1;
return L_58;
}
}
// System.Xml.XmlAttribute System.Xml.XmlLoader::LoadDefaultAttribute()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlLoader_LoadDefaultAttribute_m020283A6DBFA29FF4B5D4C7D03D56DF43E4216D7 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* V_0 = NULL;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_1 = NULL;
RuntimeObject* V_2 = NULL;
XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* V_3 = NULL;
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___reader_1;
V_0 = L_0;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1 = __this->___doc_0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_2 = V_0;
NullCheck(L_2);
String_t* L_3;
L_3 = VirtualFuncInvoker0< String_t* >::Invoke(10 /* System.String System.Xml.XmlReader::get_Prefix() */, L_2);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_4 = V_0;
NullCheck(L_4);
String_t* L_5;
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_4);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_6 = V_0;
NullCheck(L_6);
String_t* L_7;
L_7 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_6);
NullCheck(L_1);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_8;
L_8 = VirtualFuncInvoker3< XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*, String_t*, String_t*, String_t* >::Invoke(70 /* System.Xml.XmlAttribute System.Xml.XmlDocument::CreateDefaultAttribute(System.String,System.String,System.String) */, L_1, L_3, L_5, L_7);
V_1 = L_8;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_9 = V_0;
NullCheck(L_9);
RuntimeObject* L_10;
L_10 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(19 /* System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlReader::get_SchemaInfo() */, L_9);
V_2 = L_10;
RuntimeObject* L_11 = V_2;
if (!L_11)
{
goto IL_0053;
}
}
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_12 = V_1;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_13 = __this->___doc_0;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_14 = V_1;
NullCheck(L_14);
String_t* L_15;
L_15 = VirtualFuncInvoker0< String_t* >::Invoke(34 /* System.String System.Xml.XmlNode::get_Prefix() */, L_14);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_16 = V_1;
NullCheck(L_16);
String_t* L_17;
L_17 = VirtualFuncInvoker0< String_t* >::Invoke(36 /* System.String System.Xml.XmlNode::get_LocalName() */, L_16);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_18 = V_1;
NullCheck(L_18);
String_t* L_19;
L_19 = VirtualFuncInvoker0< String_t* >::Invoke(33 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_18);
RuntimeObject* L_20 = V_2;
NullCheck(L_13);
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_21;
L_21 = XmlDocument_AddAttrXmlName_mB6D4F6DA50FBE350ABAC30CD5CE97D981506BB28(L_13, L_15, L_17, L_19, L_20, NULL);
NullCheck(L_12);
XmlAttribute_set_XmlName_m8D259D5CC4750809EACB5E213333E1E55D8BB6BB_inline(L_12, L_21, NULL);
}
IL_0053:
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_22 = V_1;
XmlLoader_LoadAttributeValue_m119C6C6063D71231F622A12A683078D77DA8B320(__this, L_22, (bool)0, NULL);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_23 = V_1;
V_3 = ((XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC*)IsInstClass((RuntimeObject*)L_23, XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC_il2cpp_TypeInfo_var));
XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* L_24 = V_3;
if (!L_24)
{
goto IL_006c;
}
}
{
XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* L_25 = V_3;
NullCheck(L_25);
XmlUnspecifiedAttribute_SetSpecified_m1CF67FF3E90E62DC5B0983B8DE91B6E95228509B_inline(L_25, (bool)0, NULL);
}
IL_006c:
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_26 = V_1;
return L_26;
}
}
// System.Void System.Xml.XmlLoader::LoadAttributeValue(System.Xml.XmlNode,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_LoadAttributeValue_m119C6C6063D71231F622A12A683078D77DA8B320 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___parent0, bool ___direct1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* V_0 = NULL;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_1 = NULL;
int32_t V_2 = 0;
XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* G_B8_0 = NULL;
XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* G_B13_0 = NULL;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* G_B17_0 = NULL;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* G_B16_0 = NULL;
XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* G_B18_0 = NULL;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* G_B18_1 = NULL;
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___reader_1;
V_0 = L_0;
goto IL_00eb;
}
IL_000c:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1 = V_0;
NullCheck(L_1);
int32_t L_2;
L_2 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_1);
V_2 = L_2;
int32_t L_3 = V_2;
if ((((int32_t)L_3) == ((int32_t)3)))
{
goto IL_0025;
}
}
{
int32_t L_4 = V_2;
if ((((int32_t)L_4) == ((int32_t)5)))
{
goto IL_0053;
}
}
{
int32_t L_5 = V_2;
if ((((int32_t)L_5) == ((int32_t)((int32_t)16))))
{
goto IL_0052;
}
}
{
goto IL_00d1;
}
IL_0025:
{
bool L_6 = ___direct1;
if (L_6)
{
goto IL_003b;
}
}
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_7 = __this->___doc_0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_8 = V_0;
NullCheck(L_8);
String_t* L_9;
L_9 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_8);
NullCheck(L_7);
XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* L_10;
L_10 = VirtualFuncInvoker1< XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A*, String_t* >::Invoke(66 /* System.Xml.XmlText System.Xml.XmlDocument::CreateTextNode(System.String) */, L_7, L_9);
G_B8_0 = L_10;
goto IL_004c;
}
IL_003b:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_11 = V_0;
NullCheck(L_11);
String_t* L_12;
L_12 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_11);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_13 = __this->___doc_0;
XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* L_14 = (XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A*)il2cpp_codegen_object_new(XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A_il2cpp_TypeInfo_var);
NullCheck(L_14);
XmlText__ctor_m8FFB8DDBB2C9013F10FD94A1573DCF6A2F104059(L_14, L_12, L_13, NULL);
G_B8_0 = L_14;
}
IL_004c:
{
V_1 = G_B8_0;
goto IL_00dd;
}
IL_0052:
{
return;
}
IL_0053:
{
bool L_15 = ___direct1;
if (L_15)
{
goto IL_006e;
}
}
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_16 = __this->___doc_0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_17 = __this->___reader_1;
NullCheck(L_17);
String_t* L_18;
L_18 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_17);
NullCheck(L_16);
XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_19;
L_19 = VirtualFuncInvoker1< XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684*, String_t* >::Invoke(63 /* System.Xml.XmlEntityReference System.Xml.XmlDocument::CreateEntityReference(System.String) */, L_16, L_18);
G_B13_0 = L_19;
goto IL_0084;
}
IL_006e:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_20 = __this->___reader_1;
NullCheck(L_20);
String_t* L_21;
L_21 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_20);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_22 = __this->___doc_0;
XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_23 = (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684*)il2cpp_codegen_object_new(XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684_il2cpp_TypeInfo_var);
NullCheck(L_23);
XmlEntityReference__ctor_m7AAF0A5672B04060ECEAFAB3DF7E93DA8A7B6A94(L_23, L_21, L_22, NULL);
G_B13_0 = L_23;
}
IL_0084:
{
V_1 = G_B13_0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_24 = V_0;
NullCheck(L_24);
bool L_25;
L_25 = VirtualFuncInvoker0< bool >::Invoke(38 /* System.Boolean System.Xml.XmlReader::get_CanResolveEntity() */, L_24);
if (!L_25)
{
goto IL_00dd;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_26 = V_0;
NullCheck(L_26);
VirtualActionInvoker0::Invoke(39 /* System.Void System.Xml.XmlReader::ResolveEntity() */, L_26);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_27 = V_1;
bool L_28 = ___direct1;
XmlLoader_LoadAttributeValue_m119C6C6063D71231F622A12A683078D77DA8B320(__this, L_27, L_28, NULL);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_29 = V_1;
NullCheck(L_29);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_30;
L_30 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(16 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, L_29);
if (L_30)
{
goto IL_00dd;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_31 = V_1;
bool L_32 = ___direct1;
G_B16_0 = L_31;
if (L_32)
{
G_B17_0 = L_31;
goto IL_00b9;
}
}
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_33 = __this->___doc_0;
String_t* L_34 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
NullCheck(L_33);
XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* L_35;
L_35 = VirtualFuncInvoker1< XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A*, String_t* >::Invoke(66 /* System.Xml.XmlText System.Xml.XmlDocument::CreateTextNode(System.String) */, L_33, L_34);
G_B18_0 = L_35;
G_B18_1 = G_B16_0;
goto IL_00c3;
}
IL_00b9:
{
String_t* L_36 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* L_37 = (XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A*)il2cpp_codegen_object_new(XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A_il2cpp_TypeInfo_var);
NullCheck(L_37);
XmlText__ctor_mD1D12098F7364C006DAAC8E7700C0C729CDEACDE(L_37, L_36, NULL);
G_B18_0 = L_37;
G_B18_1 = G_B17_0;
}
IL_00c3:
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_38 = __this->___doc_0;
NullCheck(G_B18_1);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_39;
L_39 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(26 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, G_B18_1, G_B18_0, L_38);
goto IL_00dd;
}
IL_00d1:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_40 = V_0;
NullCheck(L_40);
int32_t L_41;
L_41 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_40);
Exception_t* L_42;
L_42 = XmlLoader_UnexpectedNodeType_mA83CDA29B169FEFBB014EAC94A0D4DBFB31F84E4(L_41, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_42, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlLoader_LoadAttributeValue_m119C6C6063D71231F622A12A683078D77DA8B320_RuntimeMethod_var)));
}
IL_00dd:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_43 = ___parent0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_44 = V_1;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_45 = __this->___doc_0;
NullCheck(L_43);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_46;
L_46 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(26 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, L_43, L_44, L_45);
}
IL_00eb:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_47 = V_0;
NullCheck(L_47);
bool L_48;
L_48 = VirtualFuncInvoker0< bool >::Invoke(30 /* System.Boolean System.Xml.XmlReader::ReadAttributeValue() */, L_47);
if (L_48)
{
goto IL_000c;
}
}
{
return;
}
}
// System.Xml.XmlEntityReference System.Xml.XmlLoader::LoadEntityReferenceNode(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* XmlLoader_LoadEntityReferenceNode_m26B083645AAB9B8E96E676B2EB5F19EADC24B628 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, bool ___direct0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* V_0 = NULL;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_1 = NULL;
XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* G_B3_0 = NULL;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* G_B8_0 = NULL;
{
bool L_0 = ___direct0;
if (L_0)
{
goto IL_001b;
}
}
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1 = __this->___doc_0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_2 = __this->___reader_1;
NullCheck(L_2);
String_t* L_3;
L_3 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlReader::get_Name() */, L_2);
NullCheck(L_1);
XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_4;
L_4 = VirtualFuncInvoker1< XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684*, String_t* >::Invoke(63 /* System.Xml.XmlEntityReference System.Xml.XmlDocument::CreateEntityReference(System.String) */, L_1, L_3);
G_B3_0 = L_4;
goto IL_0031;
}
IL_001b:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_5 = __this->___reader_1;
NullCheck(L_5);
String_t* L_6;
L_6 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlReader::get_Name() */, L_5);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_7 = __this->___doc_0;
XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_8 = (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684*)il2cpp_codegen_object_new(XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684_il2cpp_TypeInfo_var);
NullCheck(L_8);
XmlEntityReference__ctor_m7AAF0A5672B04060ECEAFAB3DF7E93DA8A7B6A94(L_8, L_6, L_7, NULL);
G_B3_0 = L_8;
}
IL_0031:
{
V_0 = G_B3_0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_9 = __this->___reader_1;
NullCheck(L_9);
bool L_10;
L_10 = VirtualFuncInvoker0< bool >::Invoke(38 /* System.Boolean System.Xml.XmlReader::get_CanResolveEntity() */, L_9);
if (!L_10)
{
goto IL_00b1;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_11 = __this->___reader_1;
NullCheck(L_11);
VirtualActionInvoker0::Invoke(39 /* System.Void System.Xml.XmlReader::ResolveEntity() */, L_11);
goto IL_0070;
}
IL_004c:
{
bool L_12 = ___direct0;
if (L_12)
{
goto IL_0058;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_13;
L_13 = XmlLoader_LoadNode_mDFD824F250FA615C734180BF6141A472610F7E68(__this, (bool)0, NULL);
G_B8_0 = L_13;
goto IL_005e;
}
IL_0058:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_14;
L_14 = XmlLoader_LoadNodeDirect_m2C0D5301FFB96CA298EF768E2CE903B6C6D459B7(__this, NULL);
G_B8_0 = L_14;
}
IL_005e:
{
V_1 = G_B8_0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_15 = V_1;
if (!L_15)
{
goto IL_0070;
}
}
{
XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_16 = V_0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_17 = V_1;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_18 = __this->___doc_0;
NullCheck(L_16);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_19;
L_19 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(26 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, L_16, L_17, L_18);
}
IL_0070:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_20 = __this->___reader_1;
NullCheck(L_20);
bool L_21;
L_21 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, L_20);
if (!L_21)
{
goto IL_008c;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_22 = __this->___reader_1;
NullCheck(L_22);
int32_t L_23;
L_23 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_22);
if ((!(((uint32_t)L_23) == ((uint32_t)((int32_t)16)))))
{
goto IL_004c;
}
}
IL_008c:
{
XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_24 = V_0;
NullCheck(L_24);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_25;
L_25 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(17 /* System.Xml.XmlNode System.Xml.XmlNode::get_LastChild() */, L_24);
if (L_25)
{
goto IL_00b1;
}
}
{
XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_26 = V_0;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_27 = __this->___doc_0;
String_t* L_28 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
NullCheck(L_27);
XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* L_29;
L_29 = VirtualFuncInvoker1< XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A*, String_t* >::Invoke(66 /* System.Xml.XmlText System.Xml.XmlDocument::CreateTextNode(System.String) */, L_27, L_28);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_30 = __this->___doc_0;
NullCheck(L_26);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_31;
L_31 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(26 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, L_26, L_29, L_30);
}
IL_00b1:
{
XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_32 = V_0;
return L_32;
}
}
// System.Xml.XmlDeclaration System.Xml.XmlLoader::LoadDeclarationNode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* XmlLoader_LoadDeclarationNode_m43A2FAF27DCB6A1CBFEABB7508DD4C94523F1AE6 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral29988D0F9BCADFABFF66CBF5AB73096D1CAE3128);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5BAA302A400A1B9C6F712ED9DBE1D7010A5034BF);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
String_t* V_2 = NULL;
String_t* V_3 = NULL;
{
V_0 = (String_t*)NULL;
V_1 = (String_t*)NULL;
V_2 = (String_t*)NULL;
goto IL_0065;
}
IL_0008:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___reader_1;
NullCheck(L_0);
String_t* L_1;
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlReader::get_Name() */, L_0);
V_3 = L_1;
String_t* L_2 = V_3;
bool L_3;
L_3 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_2, _stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052, NULL);
if (L_3)
{
goto IL_003d;
}
}
{
String_t* L_4 = V_3;
bool L_5;
L_5 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_4, _stringLiteral29988D0F9BCADFABFF66CBF5AB73096D1CAE3128, NULL);
if (L_5)
{
goto IL_004b;
}
}
{
String_t* L_6 = V_3;
bool L_7;
L_7 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_6, _stringLiteral5BAA302A400A1B9C6F712ED9DBE1D7010A5034BF, NULL);
if (L_7)
{
goto IL_0059;
}
}
{
goto IL_0065;
}
IL_003d:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_8 = __this->___reader_1;
NullCheck(L_8);
String_t* L_9;
L_9 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_8);
V_0 = L_9;
goto IL_0065;
}
IL_004b:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_10 = __this->___reader_1;
NullCheck(L_10);
String_t* L_11;
L_11 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_10);
V_1 = L_11;
goto IL_0065;
}
IL_0059:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_12 = __this->___reader_1;
NullCheck(L_12);
String_t* L_13;
L_13 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_12);
V_2 = L_13;
}
IL_0065:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_14 = __this->___reader_1;
NullCheck(L_14);
bool L_15;
L_15 = VirtualFuncInvoker0< bool >::Invoke(28 /* System.Boolean System.Xml.XmlReader::MoveToNextAttribute() */, L_14);
if (L_15)
{
goto IL_0008;
}
}
{
String_t* L_16 = V_0;
if (L_16)
{
goto IL_008b;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_17 = __this->___reader_1;
NullCheck(L_17);
String_t* L_18;
L_18 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_17);
XmlLoader_ParseXmlDeclarationValue_m54F41E02A882770049D8D02C68338A7B7AF9ABA6(L_18, (&V_0), (&V_1), (&V_2), NULL);
}
IL_008b:
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_19 = __this->___doc_0;
String_t* L_20 = V_0;
String_t* L_21 = V_1;
String_t* L_22 = V_2;
NullCheck(L_19);
XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* L_23;
L_23 = VirtualFuncInvoker3< XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79*, String_t*, String_t*, String_t* >::Invoke(65 /* System.Xml.XmlDeclaration System.Xml.XmlDocument::CreateXmlDeclaration(System.String,System.String,System.String) */, L_19, L_20, L_21, L_22);
return L_23;
}
}
// System.Xml.XmlDocumentType System.Xml.XmlLoader::LoadDocumentTypeNode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* XmlLoader_LoadDocumentTypeNode_m8869BA2D6837AF67F10647453EA32681AA71E3A9 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1F1BC4D23D8E5661364EBEC728BE303959F6CF91);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD4DAA1A26807E1A567D68B161E6A95701A3FD560);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
String_t* V_2 = NULL;
String_t* V_3 = NULL;
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* V_4 = NULL;
RuntimeObject* V_5 = NULL;
String_t* V_6 = NULL;
{
V_0 = (String_t*)NULL;
V_1 = (String_t*)NULL;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___reader_1;
NullCheck(L_0);
String_t* L_1;
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_0);
V_2 = L_1;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_2 = __this->___reader_1;
NullCheck(L_2);
String_t* L_3;
L_3 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_2);
V_3 = L_3;
goto IL_0063;
}
IL_001e:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_4 = __this->___reader_1;
NullCheck(L_4);
String_t* L_5;
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlReader::get_Name() */, L_4);
V_6 = L_5;
String_t* L_6 = V_6;
bool L_7;
L_7 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_6, _stringLiteral1F1BC4D23D8E5661364EBEC728BE303959F6CF91, NULL);
if (L_7)
{
goto IL_0049;
}
}
{
String_t* L_8 = V_6;
bool L_9;
L_9 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_8, _stringLiteralD4DAA1A26807E1A567D68B161E6A95701A3FD560, NULL);
if (L_9)
{
goto IL_0057;
}
}
{
goto IL_0063;
}
IL_0049:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_10 = __this->___reader_1;
NullCheck(L_10);
String_t* L_11;
L_11 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_10);
V_0 = L_11;
goto IL_0063;
}
IL_0057:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_12 = __this->___reader_1;
NullCheck(L_12);
String_t* L_13;
L_13 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_12);
V_1 = L_13;
}
IL_0063:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_14 = __this->___reader_1;
NullCheck(L_14);
bool L_15;
L_15 = VirtualFuncInvoker0< bool >::Invoke(28 /* System.Boolean System.Xml.XmlReader::MoveToNextAttribute() */, L_14);
if (L_15)
{
goto IL_001e;
}
}
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_16 = __this->___doc_0;
String_t* L_17 = V_3;
String_t* L_18 = V_0;
String_t* L_19 = V_1;
String_t* L_20 = V_2;
NullCheck(L_16);
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_21;
L_21 = VirtualFuncInvoker4< XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E*, String_t*, String_t*, String_t*, String_t* >::Invoke(61 /* System.Xml.XmlDocumentType System.Xml.XmlDocument::CreateDocumentType(System.String,System.String,System.String,System.String) */, L_16, L_17, L_18, L_19, L_20);
V_4 = L_21;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_22 = __this->___reader_1;
NullCheck(L_22);
RuntimeObject* L_23;
L_23 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(52 /* System.Xml.IDtdInfo System.Xml.XmlReader::get_DtdInfo() */, L_22);
V_5 = L_23;
RuntimeObject* L_24 = V_5;
if (!L_24)
{
goto IL_009e;
}
}
{
RuntimeObject* L_25 = V_5;
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_26 = V_4;
XmlLoader_LoadDocumentType_mC301F9962BC7D2F1134EDE1CD6D71D2EE68E9247(__this, L_25, L_26, NULL);
goto IL_00a6;
}
IL_009e:
{
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_27 = V_4;
XmlLoader_ParseDocumentType_m7E6901C3E8CF530A50BFE027DE91E999307F2A02(__this, L_27, NULL);
}
IL_00a6:
{
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_28 = V_4;
return L_28;
}
}
// System.Xml.XmlNode System.Xml.XmlLoader::LoadNodeDirect()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlLoader_LoadNodeDirect_m2C0D5301FFB96CA298EF768E2CE903B6C6D459B7 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* V_0 = NULL;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_1 = NULL;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_2 = NULL;
bool V_3 = false;
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* V_4 = NULL;
int32_t V_5 = 0;
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* V_6 = NULL;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_7 = NULL;
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___reader_1;
V_0 = L_0;
V_1 = (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL;
}
IL_0009:
{
V_2 = (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1 = V_0;
NullCheck(L_1);
int32_t L_2;
L_2 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_1);
V_5 = L_2;
int32_t L_3 = V_5;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_3, 1)))
{
case 0:
{
goto IL_0061;
}
case 1:
{
goto IL_0118;
}
case 2:
{
goto IL_0167;
}
case 3:
{
goto IL_0180;
}
case 4:
{
goto IL_010b;
}
case 5:
{
goto IL_01d6;
}
case 6:
{
goto IL_0199;
}
case 7:
{
goto IL_01bd;
}
case 8:
{
goto IL_01d6;
}
case 9:
{
goto IL_01d6;
}
case 10:
{
goto IL_01d6;
}
case 11:
{
goto IL_01d6;
}
case 12:
{
goto IL_0140;
}
case 13:
{
goto IL_0124;
}
case 14:
{
goto IL_00f5;
}
case 15:
{
goto IL_01fc;
}
}
}
{
goto IL_01d6;
}
IL_0061:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_4 = __this->___reader_1;
NullCheck(L_4);
bool L_5;
L_5 = VirtualFuncInvoker0< bool >::Invoke(14 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, L_4);
V_3 = L_5;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_6 = __this->___reader_1;
NullCheck(L_6);
String_t* L_7;
L_7 = VirtualFuncInvoker0< String_t* >::Invoke(10 /* System.String System.Xml.XmlReader::get_Prefix() */, L_6);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_8 = __this->___reader_1;
NullCheck(L_8);
String_t* L_9;
L_9 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_8);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_10 = __this->___reader_1;
NullCheck(L_10);
String_t* L_11;
L_11 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_10);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_12 = __this->___doc_0;
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_13 = (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)il2cpp_codegen_object_new(XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var);
NullCheck(L_13);
XmlElement__ctor_m1C80BD485FDDF4F947A67A6861C525E205D8F0C4(L_13, L_7, L_9, L_11, L_12, NULL);
V_4 = L_13;
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_14 = V_4;
bool L_15 = V_3;
NullCheck(L_14);
XmlElement_set_IsEmpty_mA8B835AE5541C20296A231855F3ABF4296A475F7(L_14, L_15, NULL);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_16 = __this->___reader_1;
NullCheck(L_16);
bool L_17;
L_17 = VirtualFuncInvoker0< bool >::Invoke(27 /* System.Boolean System.Xml.XmlReader::MoveToFirstAttribute() */, L_16);
if (!L_17)
{
goto IL_00d3;
}
}
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_18 = V_4;
NullCheck(L_18);
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_19;
L_19 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(14 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, L_18);
V_6 = L_19;
}
IL_00b9:
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_20;
L_20 = XmlLoader_LoadAttributeNodeDirect_m700A4AD66233956704AA6D82F1D59A9204F50B4B(__this, NULL);
V_7 = L_20;
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_21 = V_6;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_22 = V_7;
NullCheck(L_21);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_23;
L_23 = XmlAttributeCollection_Append_mF5AFDC3C4547DA089353B76241A5B46437CA8484(L_21, L_22, NULL);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_24 = V_0;
NullCheck(L_24);
bool L_25;
L_25 = VirtualFuncInvoker0< bool >::Invoke(28 /* System.Boolean System.Xml.XmlReader::MoveToNextAttribute() */, L_24);
if (L_25)
{
goto IL_00b9;
}
}
IL_00d3:
{
bool L_26 = V_3;
if (L_26)
{
goto IL_00ed;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_27 = V_1;
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_28 = V_4;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_29 = __this->___doc_0;
NullCheck(L_27);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_30;
L_30 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(26 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, L_27, L_28, L_29);
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_31 = V_4;
V_1 = L_31;
goto IL_01fc;
}
IL_00ed:
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_32 = V_4;
V_2 = L_32;
goto IL_01e7;
}
IL_00f5:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_33 = V_1;
NullCheck(L_33);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_34;
L_34 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(10 /* System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() */, L_33);
if (L_34)
{
goto IL_00ff;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_35 = V_1;
return L_35;
}
IL_00ff:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_36 = V_1;
NullCheck(L_36);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_37;
L_37 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(10 /* System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() */, L_36);
V_1 = L_37;
goto IL_01fc;
}
IL_010b:
{
XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_38;
L_38 = XmlLoader_LoadEntityReferenceNode_m26B083645AAB9B8E96E676B2EB5F19EADC24B628(__this, (bool)1, NULL);
V_2 = L_38;
goto IL_01e7;
}
IL_0118:
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_39;
L_39 = XmlLoader_LoadAttributeNodeDirect_m700A4AD66233956704AA6D82F1D59A9204F50B4B(__this, NULL);
V_2 = L_39;
goto IL_01e7;
}
IL_0124:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_40 = __this->___reader_1;
NullCheck(L_40);
String_t* L_41;
L_41 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_40);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_42 = __this->___doc_0;
XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE* L_43 = (XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE*)il2cpp_codegen_object_new(XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE_il2cpp_TypeInfo_var);
NullCheck(L_43);
XmlSignificantWhitespace__ctor_mCE8AE4FC827464B5A5A54191D5D62E2AF41E078F(L_43, L_41, L_42, NULL);
V_2 = L_43;
goto IL_01e7;
}
IL_0140:
{
bool L_44 = __this->___preserveWhitespace_2;
if (!L_44)
{
goto IL_01fc;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_45 = __this->___reader_1;
NullCheck(L_45);
String_t* L_46;
L_46 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_45);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_47 = __this->___doc_0;
XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24* L_48 = (XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24*)il2cpp_codegen_object_new(XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24_il2cpp_TypeInfo_var);
NullCheck(L_48);
XmlWhitespace__ctor_m95E6CA1AFEECB5C1B3EDDAA039864BDF315FD0AE(L_48, L_46, L_47, NULL);
V_2 = L_48;
goto IL_01e7;
}
IL_0167:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_49 = __this->___reader_1;
NullCheck(L_49);
String_t* L_50;
L_50 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_49);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_51 = __this->___doc_0;
XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* L_52 = (XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A*)il2cpp_codegen_object_new(XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A_il2cpp_TypeInfo_var);
NullCheck(L_52);
XmlText__ctor_m8FFB8DDBB2C9013F10FD94A1573DCF6A2F104059(L_52, L_50, L_51, NULL);
V_2 = L_52;
goto IL_01e7;
}
IL_0180:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_53 = __this->___reader_1;
NullCheck(L_53);
String_t* L_54;
L_54 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_53);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_55 = __this->___doc_0;
XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA* L_56 = (XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA*)il2cpp_codegen_object_new(XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA_il2cpp_TypeInfo_var);
NullCheck(L_56);
XmlCDataSection__ctor_m19CEC86EA9EFC8153A1293493E0B3E9EF89BE2BD(L_56, L_54, L_55, NULL);
V_2 = L_56;
goto IL_01e7;
}
IL_0199:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_57 = __this->___reader_1;
NullCheck(L_57);
String_t* L_58;
L_58 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlReader::get_Name() */, L_57);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_59 = __this->___reader_1;
NullCheck(L_59);
String_t* L_60;
L_60 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_59);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_61 = __this->___doc_0;
XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3* L_62 = (XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3*)il2cpp_codegen_object_new(XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3_il2cpp_TypeInfo_var);
NullCheck(L_62);
XmlProcessingInstruction__ctor_m80AB71B3DDC0E1164705B676AD06037ACEB2FD67(L_62, L_58, L_60, L_61, NULL);
V_2 = L_62;
goto IL_01e7;
}
IL_01bd:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_63 = __this->___reader_1;
NullCheck(L_63);
String_t* L_64;
L_64 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_63);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_65 = __this->___doc_0;
XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9* L_66 = (XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9*)il2cpp_codegen_object_new(XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9_il2cpp_TypeInfo_var);
NullCheck(L_66);
XmlComment__ctor_m74C0E3B050353E2B32B5218DF01F8EB8874BD819(L_66, L_64, L_65, NULL);
V_2 = L_66;
goto IL_01e7;
}
IL_01d6:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_67 = __this->___reader_1;
NullCheck(L_67);
int32_t L_68;
L_68 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_67);
Exception_t* L_69;
L_69 = XmlLoader_UnexpectedNodeType_mA83CDA29B169FEFBB014EAC94A0D4DBFB31F84E4(L_68, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_69, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlLoader_LoadNodeDirect_m2C0D5301FFB96CA298EF768E2CE903B6C6D459B7_RuntimeMethod_var)));
}
IL_01e7:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_70 = V_1;
if (!L_70)
{
goto IL_01fa;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_71 = V_1;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_72 = V_2;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_73 = __this->___doc_0;
NullCheck(L_71);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_74;
L_74 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(26 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, L_71, L_72, L_73);
goto IL_01fc;
}
IL_01fa:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_75 = V_2;
return L_75;
}
IL_01fc:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_76 = V_0;
NullCheck(L_76);
bool L_77;
L_77 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, L_76);
if (L_77)
{
goto IL_0009;
}
}
{
return (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL;
}
}
// System.Xml.XmlAttribute System.Xml.XmlLoader::LoadAttributeNodeDirect()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlLoader_LoadAttributeNodeDirect_m700A4AD66233956704AA6D82F1D59A9204F50B4B (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* V_0 = NULL;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_1 = NULL;
XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* V_2 = NULL;
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___reader_1;
V_0 = L_0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1 = V_0;
NullCheck(L_1);
bool L_2;
L_2 = VirtualFuncInvoker0< bool >::Invoke(15 /* System.Boolean System.Xml.XmlReader::get_IsDefault() */, L_1);
if (!L_2)
{
goto IL_003e;
}
}
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_3 = V_0;
NullCheck(L_3);
String_t* L_4;
L_4 = VirtualFuncInvoker0< String_t* >::Invoke(10 /* System.String System.Xml.XmlReader::get_Prefix() */, L_3);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_5 = V_0;
NullCheck(L_5);
String_t* L_6;
L_6 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_5);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_7 = V_0;
NullCheck(L_7);
String_t* L_8;
L_8 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_7);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_9 = __this->___doc_0;
XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* L_10 = (XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC*)il2cpp_codegen_object_new(XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC_il2cpp_TypeInfo_var);
NullCheck(L_10);
XmlUnspecifiedAttribute__ctor_m44D3E93A1FE83F8B631B4BE61CC2EA76865E36A6(L_10, L_4, L_6, L_8, L_9, NULL);
V_2 = L_10;
XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* L_11 = V_2;
XmlLoader_LoadAttributeValue_m119C6C6063D71231F622A12A683078D77DA8B320(__this, L_11, (bool)1, NULL);
XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* L_12 = V_2;
NullCheck(L_12);
XmlUnspecifiedAttribute_SetSpecified_m1CF67FF3E90E62DC5B0983B8DE91B6E95228509B_inline(L_12, (bool)0, NULL);
XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* L_13 = V_2;
return L_13;
}
IL_003e:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_14 = V_0;
NullCheck(L_14);
String_t* L_15;
L_15 = VirtualFuncInvoker0< String_t* >::Invoke(10 /* System.String System.Xml.XmlReader::get_Prefix() */, L_14);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_16 = V_0;
NullCheck(L_16);
String_t* L_17;
L_17 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_16);
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_18 = V_0;
NullCheck(L_18);
String_t* L_19;
L_19 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_18);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_20 = __this->___doc_0;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_21 = (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)il2cpp_codegen_object_new(XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var);
NullCheck(L_21);
XmlAttribute__ctor_m11339257CF537ACBDA1BC5ED16CD45BF0C318971(L_21, L_15, L_17, L_19, L_20, NULL);
V_1 = L_21;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_22 = V_1;
XmlLoader_LoadAttributeValue_m119C6C6063D71231F622A12A683078D77DA8B320(__this, L_22, (bool)1, NULL);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_23 = V_1;
return L_23;
}
}
// System.Void System.Xml.XmlLoader::ParseDocumentType(System.Xml.XmlDocumentType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_ParseDocumentType_m7E6901C3E8CF530A50BFE027DE91E999307F2A02 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* ___dtNode0, const RuntimeMethod* method)
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* V_0 = NULL;
{
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_0 = ___dtNode0;
NullCheck(L_0);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1;
L_1 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, L_0);
V_0 = L_1;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_2 = V_0;
NullCheck(L_2);
bool L_3;
L_3 = XmlDocument_get_HasSetResolver_m7CBB11C7E27D95CD697F177B965CEB2E1E71358D_inline(L_2, NULL);
if (!L_3)
{
goto IL_001e;
}
}
{
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_4 = ___dtNode0;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_5 = V_0;
NullCheck(L_5);
XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_6;
L_6 = XmlDocument_GetResolver_m0B1F443F2DF5510E0733052D42BC984CB83F9119_inline(L_5, NULL);
XmlLoader_ParseDocumentType_m19313190F3CDF2BBE2B717BFB84C5D86AE73DD41(__this, L_4, (bool)1, L_6, NULL);
return;
}
IL_001e:
{
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_7 = ___dtNode0;
XmlLoader_ParseDocumentType_m19313190F3CDF2BBE2B717BFB84C5D86AE73DD41(__this, L_7, (bool)0, (XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF*)NULL, NULL);
return;
}
}
// System.Void System.Xml.XmlLoader::ParseDocumentType(System.Xml.XmlDocumentType,System.Boolean,System.Xml.XmlResolver)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_ParseDocumentType_m19313190F3CDF2BBE2B717BFB84C5D86AE73DD41 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* ___dtNode0, bool ___bUseResolver1, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___resolver2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdParser_t91A29AF9801876CAFD81A0496F5AB8A65527B54B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
s_Il2CppMethodInitialized = true;
}
XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* V_0 = NULL;
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* V_1 = NULL;
DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* V_2 = NULL;
RuntimeObject* V_3 = NULL;
{
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_0 = ___dtNode0;
NullCheck(L_0);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1;
L_1 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, L_0);
__this->___doc_0 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___doc_0), (void*)L_1);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_2 = __this->___doc_0;
NullCheck(L_2);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_3;
L_3 = XmlDocument_get_NameTable_m4B913865A24AEA917172F75CBDCE94C81CCB7E2C(L_2, NULL);
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_4 = (XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F*)il2cpp_codegen_object_new(XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F_il2cpp_TypeInfo_var);
NullCheck(L_4);
XmlNamespaceManager__ctor_m18E69120CE5886E06630CCCC3215D2C67FC669DB(L_4, L_3, NULL);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_5 = __this->___doc_0;
NullCheck(L_5);
String_t* L_6;
L_6 = VirtualFuncInvoker0< String_t* >::Invoke(42 /* System.String System.Xml.XmlNode::get_BaseURI() */, L_5);
String_t* L_7 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_8 = (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B*)il2cpp_codegen_object_new(XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B_il2cpp_TypeInfo_var);
NullCheck(L_8);
XmlParserContext__ctor_mB2CD7CF0517A079CBB79700E6B410C8667AEA532(L_8, (XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8*)NULL, L_4, (String_t*)NULL, (String_t*)NULL, (String_t*)NULL, (String_t*)NULL, L_6, L_7, 0, NULL);
V_0 = L_8;
XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_9 = V_0;
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_10 = (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B*)il2cpp_codegen_object_new(XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B_il2cpp_TypeInfo_var);
NullCheck(L_10);
XmlTextReaderImpl__ctor_m1752EB0257B3129797C620899A5D76179EF65C85(L_10, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, 1, L_9, NULL);
V_1 = L_10;
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_11 = V_1;
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_12 = ___dtNode0;
NullCheck(L_12);
bool L_13;
L_13 = XmlDocumentType_get_ParseWithNamespaces_mC391046582C88CDC3C3496E4D2C0827C36D9B324_inline(L_12, NULL);
NullCheck(L_11);
XmlTextReaderImpl_set_Namespaces_mBC1F7402DC209EE48DACECE94982BC6CC1E861CE(L_11, L_13, NULL);
bool L_14 = ___bUseResolver1;
if (!L_14)
{
goto IL_005b;
}
}
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_15 = V_1;
XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_16 = ___resolver2;
NullCheck(L_15);
XmlTextReaderImpl_set_XmlResolver_mE88E51BCF47AE861AAB9121C0B023EEE73D29775(L_15, L_16, NULL);
}
IL_005b:
{
RuntimeObject* L_17;
L_17 = DtdParser_Create_mEAB3483CB293C48815D7ED94E0EE32B2A175731B(NULL);
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_18 = V_1;
DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* L_19 = (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3*)il2cpp_codegen_object_new(DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3_il2cpp_TypeInfo_var);
NullCheck(L_19);
DtdParserProxy__ctor_m442621DC14ECF6CAB169962B3CAAF479A5F18D90(L_19, L_18, NULL);
V_2 = L_19;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_20 = __this->___doc_0;
NullCheck(L_20);
String_t* L_21;
L_21 = VirtualFuncInvoker0< String_t* >::Invoke(42 /* System.String System.Xml.XmlNode::get_BaseURI() */, L_20);
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_22 = ___dtNode0;
NullCheck(L_22);
String_t* L_23;
L_23 = VirtualFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.XmlNode::get_Name() */, L_22);
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_24 = ___dtNode0;
NullCheck(L_24);
String_t* L_25;
L_25 = XmlDocumentType_get_PublicId_m9E81FAF2D0AA9DC847D118813CBEB085F0CE1955_inline(L_24, NULL);
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_26 = ___dtNode0;
NullCheck(L_26);
String_t* L_27;
L_27 = XmlDocumentType_get_SystemId_m17B225C509C0F5A4ECBB838AA81D15DED4016909_inline(L_26, NULL);
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_28 = ___dtNode0;
NullCheck(L_28);
String_t* L_29;
L_29 = XmlDocumentType_get_InternalSubset_mBD8D585ED0401EE1FC02F6FD5445E2109B083FEF_inline(L_28, NULL);
DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* L_30 = V_2;
NullCheck(L_17);
RuntimeObject* L_31;
L_31 = InterfaceFuncInvoker6< RuntimeObject*, String_t*, String_t*, String_t*, String_t*, String_t*, RuntimeObject* >::Invoke(1 /* System.Xml.IDtdInfo System.Xml.IDtdParser::ParseFreeFloatingDtd(System.String,System.String,System.String,System.String,System.String,System.Xml.IDtdParserAdapter) */, IDtdParser_t91A29AF9801876CAFD81A0496F5AB8A65527B54B_il2cpp_TypeInfo_var, L_17, L_21, L_23, L_25, L_27, L_29, L_30);
V_3 = L_31;
RuntimeObject* L_32 = V_3;
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_33 = ___dtNode0;
XmlLoader_LoadDocumentType_mC301F9962BC7D2F1134EDE1CD6D71D2EE68E9247(__this, L_32, L_33, NULL);
return;
}
}
// System.Void System.Xml.XmlLoader::LoadDocumentType(System.Xml.IDtdInfo,System.Xml.XmlDocumentType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_LoadDocumentType_mC301F9962BC7D2F1134EDE1CD6D71D2EE68E9247 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, RuntimeObject* ___dtdInfo0, XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* ___dtNode1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_GetEnumerator_mAFB53EF60E7055593407621A31F67B315FB25F80_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_GetEnumerator_mB2F07FA4420E7E08C4E8C50C4FB940647EE584AA_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Values_m7BA818B29BA9A89901482C6D5E24DAFD8495DBAA_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Values_mA410F24C86421E016F25DFE10F06ED2CC94E8279_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m9C22E03CBE0A5943CB4EEED769A719610719A106_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mE25067D838FB5D1F613D8A1D7743D120ADB5BF1A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m2039C64E26497D750FE7545A20B128FDB78A87BC_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mFB28D9AB4BB5B94192AFBCF8727A992DD8A3EA23_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m5F4A12451C66B8106D041A8FDF9254A9B563E0DB_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mAD814A76564116AD71DFC76D3FCAF39F2A454DF2_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_t42F4E0E4BE9FD853E9D5EE3D3B048C8C08ECCD28_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_tAFD022FCAA040EAEC1263E2EF82A45C956378717_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionaryEnumerator_tE129D608FCDB7207E0F0ECE33473CC950A83AD16_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueCollection_GetEnumerator_m5C66A03B215EDB5E0833880DC07DA5A2C6283A0A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueCollection_GetEnumerator_mDF1A568A63118C3FCC8962A66BFF7CA4FD701F63_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNotation_t0CB6B652D5F20BB51A8A299F67BEE3D6EC91CE4D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* V_0 = NULL;
RuntimeObject* V_1 = NULL;
Enumerator_t3E5D7CFA0D274E9F0E695069583F0C9A0FC06218 V_2;
memset((&V_2), 0, sizeof(V_2));
SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* V_3 = NULL;
Enumerator_t4BFAD24AD9D3103A06D8DE615BAC99DA84ED0A4F V_4;
memset((&V_4), 0, sizeof(V_4));
SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* V_5 = NULL;
XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* V_6 = NULL;
SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* V_7 = NULL;
XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* V_8 = NULL;
SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* V_9 = NULL;
RuntimeObject* V_10 = NULL;
SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* V_11 = NULL;
String_t* G_B15_0 = NULL;
String_t* G_B15_1 = NULL;
String_t* G_B15_2 = NULL;
String_t* G_B15_3 = NULL;
String_t* G_B14_0 = NULL;
String_t* G_B14_1 = NULL;
String_t* G_B14_2 = NULL;
String_t* G_B14_3 = NULL;
String_t* G_B16_0 = NULL;
String_t* G_B16_1 = NULL;
String_t* G_B16_2 = NULL;
String_t* G_B16_3 = NULL;
String_t* G_B16_4 = NULL;
String_t* G_B25_0 = NULL;
String_t* G_B25_1 = NULL;
String_t* G_B25_2 = NULL;
String_t* G_B25_3 = NULL;
String_t* G_B24_0 = NULL;
String_t* G_B24_1 = NULL;
String_t* G_B24_2 = NULL;
String_t* G_B24_3 = NULL;
String_t* G_B26_0 = NULL;
String_t* G_B26_1 = NULL;
String_t* G_B26_2 = NULL;
String_t* G_B26_3 = NULL;
String_t* G_B26_4 = NULL;
{
RuntimeObject* L_0 = ___dtdInfo0;
V_0 = ((SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E*)IsInstClass((RuntimeObject*)L_0, SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E_il2cpp_TypeInfo_var));
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_1 = V_0;
if (L_1)
{
goto IL_001a;
}
}
{
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_t_il2cpp_TypeInfo_var))))->___Empty_6;
XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_3 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var)));
NullCheck(L_3);
XmlException__ctor_mD7C8E5B35C43BCEDBB41ADC035A38088DFE88A87(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB080109AD5D6C864D18C1BFD1A3B9116504CCC72)), L_2, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlLoader_LoadDocumentType_mC301F9962BC7D2F1134EDE1CD6D71D2EE68E9247_RuntimeMethod_var)));
}
IL_001a:
{
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_4 = ___dtNode1;
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_5 = V_0;
NullCheck(L_4);
XmlDocumentType_set_DtdSchemaInfo_m6E419933465D42DAB30AD7C6FFF7ACCC6D78A4E6_inline(L_4, L_5, NULL);
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_6 = V_0;
if (!L_6)
{
goto IL_02d5;
}
}
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_7 = __this->___doc_0;
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_8 = V_0;
NullCheck(L_7);
XmlDocument_set_DtdSchemaInfo_m95A0C58965F2B17BDA49D5F4E18304A11EEC7876_inline(L_7, L_8, NULL);
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_9 = V_0;
NullCheck(L_9);
Dictionary_2_t27DD7BC6C615A002762F178DF4446D10EF4486A1* L_10;
L_10 = SchemaInfo_get_Notations_m922CD199C8750B3D6F5662DB0EA272805A7EA3A1(L_9, NULL);
if (!L_10)
{
goto IL_009d;
}
}
{
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_11 = V_0;
NullCheck(L_11);
Dictionary_2_t27DD7BC6C615A002762F178DF4446D10EF4486A1* L_12;
L_12 = SchemaInfo_get_Notations_m922CD199C8750B3D6F5662DB0EA272805A7EA3A1(L_11, NULL);
NullCheck(L_12);
ValueCollection_t8898F5330699C43BF4307CDFD83DB8DC4ED26F1F* L_13;
L_13 = Dictionary_2_get_Values_m7BA818B29BA9A89901482C6D5E24DAFD8495DBAA(L_12, Dictionary_2_get_Values_m7BA818B29BA9A89901482C6D5E24DAFD8495DBAA_RuntimeMethod_var);
NullCheck(L_13);
Enumerator_t3E5D7CFA0D274E9F0E695069583F0C9A0FC06218 L_14;
L_14 = ValueCollection_GetEnumerator_m5C66A03B215EDB5E0833880DC07DA5A2C6283A0A(L_13, ValueCollection_GetEnumerator_m5C66A03B215EDB5E0833880DC07DA5A2C6283A0A_RuntimeMethod_var);
V_2 = L_14;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_008f:
{// begin finally (depth: 1)
Enumerator_Dispose_mE25067D838FB5D1F613D8A1D7743D120ADB5BF1A((&V_2), Enumerator_Dispose_mE25067D838FB5D1F613D8A1D7743D120ADB5BF1A_RuntimeMethod_var);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0084_1;
}
IL_004e_1:
{
SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* L_15;
L_15 = Enumerator_get_Current_m5F4A12451C66B8106D041A8FDF9254A9B563E0DB_inline((&V_2), Enumerator_get_Current_m5F4A12451C66B8106D041A8FDF9254A9B563E0DB_RuntimeMethod_var);
V_3 = L_15;
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_16 = ___dtNode1;
NullCheck(L_16);
XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_17;
L_17 = XmlDocumentType_get_Notations_mF39B90420713538FCE072C512A74575C6F25D117(L_16, NULL);
SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* L_18 = V_3;
NullCheck(L_18);
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_19;
L_19 = SchemaNotation_get_Name_mF5CA9EBBD17ADAB3A31FC36FDB03B236C4847FCD_inline(L_18, NULL);
NullCheck(L_19);
String_t* L_20;
L_20 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_19, NULL);
SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* L_21 = V_3;
NullCheck(L_21);
String_t* L_22;
L_22 = SchemaNotation_get_Pubid_m28D7BB40FF192EDC5B5461FBE0FF7E690A3B6BFE_inline(L_21, NULL);
SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* L_23 = V_3;
NullCheck(L_23);
String_t* L_24;
L_24 = SchemaNotation_get_SystemLiteral_m0E99C9B3C22B1F8535F3C9334B91EEFD0C2F1DF3_inline(L_23, NULL);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_25 = __this->___doc_0;
XmlNotation_t0CB6B652D5F20BB51A8A299F67BEE3D6EC91CE4D* L_26 = (XmlNotation_t0CB6B652D5F20BB51A8A299F67BEE3D6EC91CE4D*)il2cpp_codegen_object_new(XmlNotation_t0CB6B652D5F20BB51A8A299F67BEE3D6EC91CE4D_il2cpp_TypeInfo_var);
NullCheck(L_26);
XmlNotation__ctor_mB0560FA8AB3F3443FC6B1638265F00E268C4ED61(L_26, L_20, L_22, L_24, L_25, NULL);
NullCheck(L_17);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_27;
L_27 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(6 /* System.Xml.XmlNode System.Xml.XmlNamedNodeMap::SetNamedItem(System.Xml.XmlNode) */, L_17, L_26);
}
IL_0084_1:
{
bool L_28;
L_28 = Enumerator_MoveNext_mFB28D9AB4BB5B94192AFBCF8727A992DD8A3EA23((&V_2), Enumerator_MoveNext_mFB28D9AB4BB5B94192AFBCF8727A992DD8A3EA23_RuntimeMethod_var);
if (L_28)
{
goto IL_004e_1;
}
}
{
goto IL_009d;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_009d:
{
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_29 = V_0;
NullCheck(L_29);
Dictionary_2_t129029582481E96143BD747690E92DB7E444261E* L_30;
L_30 = SchemaInfo_get_GeneralEntities_mB8E4E7E02EB79C03BDEEB06638EBFA631DE9C9D2(L_29, NULL);
if (!L_30)
{
goto IL_0145;
}
}
{
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_31 = V_0;
NullCheck(L_31);
Dictionary_2_t129029582481E96143BD747690E92DB7E444261E* L_32;
L_32 = SchemaInfo_get_GeneralEntities_mB8E4E7E02EB79C03BDEEB06638EBFA631DE9C9D2(L_31, NULL);
NullCheck(L_32);
ValueCollection_t5E6BEDEB2CEF7A818BACE8D90DFE44BE5DAC4431* L_33;
L_33 = Dictionary_2_get_Values_mA410F24C86421E016F25DFE10F06ED2CC94E8279(L_32, Dictionary_2_get_Values_mA410F24C86421E016F25DFE10F06ED2CC94E8279_RuntimeMethod_var);
NullCheck(L_33);
Enumerator_t4BFAD24AD9D3103A06D8DE615BAC99DA84ED0A4F L_34;
L_34 = ValueCollection_GetEnumerator_mDF1A568A63118C3FCC8962A66BFF7CA4FD701F63(L_33, ValueCollection_GetEnumerator_mDF1A568A63118C3FCC8962A66BFF7CA4FD701F63_RuntimeMethod_var);
V_4 = L_34;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0137:
{// begin finally (depth: 1)
Enumerator_Dispose_m9C22E03CBE0A5943CB4EEED769A719610719A106((&V_4), Enumerator_Dispose_m9C22E03CBE0A5943CB4EEED769A719610719A106_RuntimeMethod_var);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_012c_1;
}
IL_00bc_1:
{
SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_35;
L_35 = Enumerator_get_Current_mAD814A76564116AD71DFC76D3FCAF39F2A454DF2_inline((&V_4), Enumerator_get_Current_mAD814A76564116AD71DFC76D3FCAF39F2A454DF2_RuntimeMethod_var);
V_5 = L_35;
SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_36 = V_5;
NullCheck(L_36);
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_37;
L_37 = SchemaEntity_get_Name_m8A17CC3B68A15DCD4C3ACEC6AE82AB7BF5CDBEAC_inline(L_36, NULL);
NullCheck(L_37);
String_t* L_38;
L_38 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_37, NULL);
SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_39 = V_5;
NullCheck(L_39);
String_t* L_40;
L_40 = SchemaEntity_get_Text_mDCF201E623D7A98F87E859ACDEE9B5B6B4E953AE_inline(L_39, NULL);
SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_41 = V_5;
NullCheck(L_41);
String_t* L_42;
L_42 = SchemaEntity_get_Pubid_m9845E8CD129266AFA62E58F857D88D0941C88C82_inline(L_41, NULL);
SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_43 = V_5;
NullCheck(L_43);
String_t* L_44;
L_44 = SchemaEntity_get_Url_m7519C52A444DFD11468483C299A6C9D6A92F1CFB_inline(L_43, NULL);
SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_45 = V_5;
NullCheck(L_45);
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_46;
L_46 = SchemaEntity_get_NData_m7B05467BF6357AB27C1DAFBFE27F9720C79CEC3C_inline(L_45, NULL);
NullCheck(L_46);
bool L_47;
L_47 = XmlQualifiedName_get_IsEmpty_m37942163D9A870E85BE8762845953C6A6579A400(L_46, NULL);
G_B14_0 = L_44;
G_B14_1 = L_42;
G_B14_2 = L_40;
G_B14_3 = L_38;
if (L_47)
{
G_B15_0 = L_44;
G_B15_1 = L_42;
G_B15_2 = L_40;
G_B15_3 = L_38;
goto IL_0102_1;
}
}
{
SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_48 = V_5;
NullCheck(L_48);
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_49;
L_49 = SchemaEntity_get_NData_m7B05467BF6357AB27C1DAFBFE27F9720C79CEC3C_inline(L_48, NULL);
NullCheck(L_49);
String_t* L_50;
L_50 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_49, NULL);
G_B16_0 = L_50;
G_B16_1 = G_B14_0;
G_B16_2 = G_B14_1;
G_B16_3 = G_B14_2;
G_B16_4 = G_B14_3;
goto IL_0103_1;
}
IL_0102_1:
{
G_B16_0 = ((String_t*)(NULL));
G_B16_1 = G_B15_0;
G_B16_2 = G_B15_1;
G_B16_3 = G_B15_2;
G_B16_4 = G_B15_3;
}
IL_0103_1:
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_51 = __this->___doc_0;
XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* L_52 = (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE*)il2cpp_codegen_object_new(XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE_il2cpp_TypeInfo_var);
NullCheck(L_52);
XmlEntity__ctor_m3F8F45510F797944A6386162E16A5FF4EA5BCD12(L_52, G_B16_4, G_B16_3, G_B16_2, G_B16_1, G_B16_0, L_51, NULL);
V_6 = L_52;
XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* L_53 = V_6;
SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_54 = V_5;
NullCheck(L_54);
String_t* L_55;
L_55 = SchemaEntity_get_DeclaredURI_mA5B2AACD3D552050C6318FD6383F32FB0CC0CEA0(L_54, NULL);
NullCheck(L_53);
XmlEntity_SetBaseURI_mFEBE0339CA3A522BDC09A278FFBA3A9D77A578B3_inline(L_53, L_55, NULL);
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_56 = ___dtNode1;
NullCheck(L_56);
XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_57;
L_57 = XmlDocumentType_get_Entities_m0864AACCFEB94E7E935580DB42D07F5C2058B1B0(L_56, NULL);
XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* L_58 = V_6;
NullCheck(L_57);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_59;
L_59 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(6 /* System.Xml.XmlNode System.Xml.XmlNamedNodeMap::SetNamedItem(System.Xml.XmlNode) */, L_57, L_58);
}
IL_012c_1:
{
bool L_60;
L_60 = Enumerator_MoveNext_m2039C64E26497D750FE7545A20B128FDB78A87BC((&V_4), Enumerator_MoveNext_m2039C64E26497D750FE7545A20B128FDB78A87BC_RuntimeMethod_var);
if (L_60)
{
goto IL_00bc_1;
}
}
{
goto IL_0145;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0145:
{
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_61 = V_0;
NullCheck(L_61);
Dictionary_2_t129029582481E96143BD747690E92DB7E444261E* L_62;
L_62 = SchemaInfo_get_ParameterEntities_m54F4C298FA2B2AAE10FAA43965E9DD2C84E76FBB(L_61, NULL);
if (!L_62)
{
goto IL_01ed;
}
}
{
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_63 = V_0;
NullCheck(L_63);
Dictionary_2_t129029582481E96143BD747690E92DB7E444261E* L_64;
L_64 = SchemaInfo_get_ParameterEntities_m54F4C298FA2B2AAE10FAA43965E9DD2C84E76FBB(L_63, NULL);
NullCheck(L_64);
ValueCollection_t5E6BEDEB2CEF7A818BACE8D90DFE44BE5DAC4431* L_65;
L_65 = Dictionary_2_get_Values_mA410F24C86421E016F25DFE10F06ED2CC94E8279(L_64, Dictionary_2_get_Values_mA410F24C86421E016F25DFE10F06ED2CC94E8279_RuntimeMethod_var);
NullCheck(L_65);
Enumerator_t4BFAD24AD9D3103A06D8DE615BAC99DA84ED0A4F L_66;
L_66 = ValueCollection_GetEnumerator_mDF1A568A63118C3FCC8962A66BFF7CA4FD701F63(L_65, ValueCollection_GetEnumerator_mDF1A568A63118C3FCC8962A66BFF7CA4FD701F63_RuntimeMethod_var);
V_4 = L_66;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_01df:
{// begin finally (depth: 1)
Enumerator_Dispose_m9C22E03CBE0A5943CB4EEED769A719610719A106((&V_4), Enumerator_Dispose_m9C22E03CBE0A5943CB4EEED769A719610719A106_RuntimeMethod_var);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_01d4_1;
}
IL_0164_1:
{
SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_67;
L_67 = Enumerator_get_Current_mAD814A76564116AD71DFC76D3FCAF39F2A454DF2_inline((&V_4), Enumerator_get_Current_mAD814A76564116AD71DFC76D3FCAF39F2A454DF2_RuntimeMethod_var);
V_7 = L_67;
SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_68 = V_7;
NullCheck(L_68);
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_69;
L_69 = SchemaEntity_get_Name_m8A17CC3B68A15DCD4C3ACEC6AE82AB7BF5CDBEAC_inline(L_68, NULL);
NullCheck(L_69);
String_t* L_70;
L_70 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_69, NULL);
SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_71 = V_7;
NullCheck(L_71);
String_t* L_72;
L_72 = SchemaEntity_get_Text_mDCF201E623D7A98F87E859ACDEE9B5B6B4E953AE_inline(L_71, NULL);
SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_73 = V_7;
NullCheck(L_73);
String_t* L_74;
L_74 = SchemaEntity_get_Pubid_m9845E8CD129266AFA62E58F857D88D0941C88C82_inline(L_73, NULL);
SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_75 = V_7;
NullCheck(L_75);
String_t* L_76;
L_76 = SchemaEntity_get_Url_m7519C52A444DFD11468483C299A6C9D6A92F1CFB_inline(L_75, NULL);
SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_77 = V_7;
NullCheck(L_77);
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_78;
L_78 = SchemaEntity_get_NData_m7B05467BF6357AB27C1DAFBFE27F9720C79CEC3C_inline(L_77, NULL);
NullCheck(L_78);
bool L_79;
L_79 = XmlQualifiedName_get_IsEmpty_m37942163D9A870E85BE8762845953C6A6579A400(L_78, NULL);
G_B24_0 = L_76;
G_B24_1 = L_74;
G_B24_2 = L_72;
G_B24_3 = L_70;
if (L_79)
{
G_B25_0 = L_76;
G_B25_1 = L_74;
G_B25_2 = L_72;
G_B25_3 = L_70;
goto IL_01aa_1;
}
}
{
SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_80 = V_7;
NullCheck(L_80);
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_81;
L_81 = SchemaEntity_get_NData_m7B05467BF6357AB27C1DAFBFE27F9720C79CEC3C_inline(L_80, NULL);
NullCheck(L_81);
String_t* L_82;
L_82 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_81, NULL);
G_B26_0 = L_82;
G_B26_1 = G_B24_0;
G_B26_2 = G_B24_1;
G_B26_3 = G_B24_2;
G_B26_4 = G_B24_3;
goto IL_01ab_1;
}
IL_01aa_1:
{
G_B26_0 = ((String_t*)(NULL));
G_B26_1 = G_B25_0;
G_B26_2 = G_B25_1;
G_B26_3 = G_B25_2;
G_B26_4 = G_B25_3;
}
IL_01ab_1:
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_83 = __this->___doc_0;
XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* L_84 = (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE*)il2cpp_codegen_object_new(XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE_il2cpp_TypeInfo_var);
NullCheck(L_84);
XmlEntity__ctor_m3F8F45510F797944A6386162E16A5FF4EA5BCD12(L_84, G_B26_4, G_B26_3, G_B26_2, G_B26_1, G_B26_0, L_83, NULL);
V_8 = L_84;
XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* L_85 = V_8;
SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_86 = V_7;
NullCheck(L_86);
String_t* L_87;
L_87 = SchemaEntity_get_DeclaredURI_mA5B2AACD3D552050C6318FD6383F32FB0CC0CEA0(L_86, NULL);
NullCheck(L_85);
XmlEntity_SetBaseURI_mFEBE0339CA3A522BDC09A278FFBA3A9D77A578B3_inline(L_85, L_87, NULL);
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_88 = ___dtNode1;
NullCheck(L_88);
XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_89;
L_89 = XmlDocumentType_get_Entities_m0864AACCFEB94E7E935580DB42D07F5C2058B1B0(L_88, NULL);
XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* L_90 = V_8;
NullCheck(L_89);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_91;
L_91 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(6 /* System.Xml.XmlNode System.Xml.XmlNamedNodeMap::SetNamedItem(System.Xml.XmlNode) */, L_89, L_90);
}
IL_01d4_1:
{
bool L_92;
L_92 = Enumerator_MoveNext_m2039C64E26497D750FE7545A20B128FDB78A87BC((&V_4), Enumerator_MoveNext_m2039C64E26497D750FE7545A20B128FDB78A87BC_RuntimeMethod_var);
if (L_92)
{
goto IL_0164_1;
}
}
{
goto IL_01ed;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_01ed:
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_93 = __this->___doc_0;
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_94 = ___dtNode1;
NullCheck(L_94);
XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_95;
L_95 = XmlDocumentType_get_Entities_m0864AACCFEB94E7E935580DB42D07F5C2058B1B0(L_94, NULL);
NullCheck(L_93);
XmlDocument_set_Entities_mBBF7C97889080847540A0F31B1751726E81FF756_inline(L_93, L_95, NULL);
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_96 = V_0;
NullCheck(L_96);
Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A* L_97;
L_97 = SchemaInfo_get_ElementDecls_m238E5681BECA397E7010F7BEFBAC2D0FBEC43BD7_inline(L_96, NULL);
NullCheck(L_97);
Enumerator_t42F4E0E4BE9FD853E9D5EE3D3B048C8C08ECCD28 L_98;
L_98 = Dictionary_2_GetEnumerator_mB2F07FA4420E7E08C4E8C50C4FB940647EE584AA(L_97, Dictionary_2_GetEnumerator_mB2F07FA4420E7E08C4E8C50C4FB940647EE584AA_RuntimeMethod_var);
Enumerator_t42F4E0E4BE9FD853E9D5EE3D3B048C8C08ECCD28 L_99 = L_98;
RuntimeObject* L_100 = Box(Enumerator_t42F4E0E4BE9FD853E9D5EE3D3B048C8C08ECCD28_il2cpp_TypeInfo_var, &L_99);
V_1 = (RuntimeObject*)L_100;
RuntimeObject* L_101 = V_1;
if (!L_101)
{
goto IL_02d5;
}
}
{
RuntimeObject* L_102 = V_1;
NullCheck(L_102);
InterfaceActionInvoker0::Invoke(2 /* System.Void System.Collections.IEnumerator::Reset() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_102);
goto IL_02ca;
}
IL_0220:
{
RuntimeObject* L_103 = V_1;
NullCheck(L_103);
RuntimeObject* L_104;
L_104 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IDictionaryEnumerator::get_Value() */, IDictionaryEnumerator_tE129D608FCDB7207E0F0ECE33473CC950A83AD16_il2cpp_TypeInfo_var, L_103);
V_9 = ((SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD*)CastclassSealed((RuntimeObject*)L_104, SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD_il2cpp_TypeInfo_var));
SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_105 = V_9;
NullCheck(L_105);
Dictionary_2_tB85C1B2FFF985BA01AD2B7199C083B43C1476CC1* L_106;
L_106 = SchemaElementDecl_get_AttDefs_m2E3114DFAB8D978CBFAA6E31C2CD18A9AA9DAC50_inline(L_105, NULL);
if (!L_106)
{
goto IL_02ca;
}
}
{
SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_107 = V_9;
NullCheck(L_107);
Dictionary_2_tB85C1B2FFF985BA01AD2B7199C083B43C1476CC1* L_108;
L_108 = SchemaElementDecl_get_AttDefs_m2E3114DFAB8D978CBFAA6E31C2CD18A9AA9DAC50_inline(L_107, NULL);
NullCheck(L_108);
Enumerator_tAFD022FCAA040EAEC1263E2EF82A45C956378717 L_109;
L_109 = Dictionary_2_GetEnumerator_mAFB53EF60E7055593407621A31F67B315FB25F80(L_108, Dictionary_2_GetEnumerator_mAFB53EF60E7055593407621A31F67B315FB25F80_RuntimeMethod_var);
Enumerator_tAFD022FCAA040EAEC1263E2EF82A45C956378717 L_110 = L_109;
RuntimeObject* L_111 = Box(Enumerator_tAFD022FCAA040EAEC1263E2EF82A45C956378717_il2cpp_TypeInfo_var, &L_110);
V_10 = (RuntimeObject*)L_111;
goto IL_02c1;
}
IL_024e:
{
RuntimeObject* L_112 = V_10;
NullCheck(L_112);
RuntimeObject* L_113;
L_113 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IDictionaryEnumerator::get_Value() */, IDictionaryEnumerator_tE129D608FCDB7207E0F0ECE33473CC950A83AD16_il2cpp_TypeInfo_var, L_112);
V_11 = ((SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553*)CastclassSealed((RuntimeObject*)L_113, SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553_il2cpp_TypeInfo_var));
SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_114 = V_11;
NullCheck(L_114);
XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D* L_115;
L_115 = SchemaDeclBase_get_Datatype_mE6DE13C3518B65A1CF6E464F12D7D7653247AF90_inline(L_114, NULL);
NullCheck(L_115);
int32_t L_116;
L_116 = VirtualFuncInvoker0< int32_t >::Invoke(5 /* System.Xml.XmlTokenizedType System.Xml.Schema.XmlSchemaDatatype::get_TokenizedType() */, L_115);
if ((!(((uint32_t)L_116) == ((uint32_t)1))))
{
goto IL_02c1;
}
}
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_117 = __this->___doc_0;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_118 = __this->___doc_0;
SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_119 = V_9;
NullCheck(L_119);
String_t* L_120;
L_120 = SchemaDeclBase_get_Prefix_mE72A285F12958A0C40F8CDEDA2838B3A09233455(L_119, NULL);
SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_121 = V_9;
NullCheck(L_121);
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_122;
L_122 = SchemaDeclBase_get_Name_m013DF0DD721FE902399C2DF4D2E6F8DAD50ECFAE_inline(L_121, NULL);
NullCheck(L_122);
String_t* L_123;
L_123 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_122, NULL);
String_t* L_124 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
NullCheck(L_118);
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_125;
L_125 = XmlDocument_AddXmlName_m0B7D502F9AA6D43E0743106B90F9CE10F459A916(L_118, L_120, L_123, L_124, (RuntimeObject*)NULL, NULL);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_126 = __this->___doc_0;
SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_127 = V_11;
NullCheck(L_127);
String_t* L_128;
L_128 = SchemaDeclBase_get_Prefix_mE72A285F12958A0C40F8CDEDA2838B3A09233455(L_127, NULL);
SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_129 = V_11;
NullCheck(L_129);
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_130;
L_130 = SchemaDeclBase_get_Name_m013DF0DD721FE902399C2DF4D2E6F8DAD50ECFAE_inline(L_129, NULL);
NullCheck(L_130);
String_t* L_131;
L_131 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_130, NULL);
String_t* L_132 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
NullCheck(L_126);
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_133;
L_133 = XmlDocument_AddAttrXmlName_mB6D4F6DA50FBE350ABAC30CD5CE97D981506BB28(L_126, L_128, L_131, L_132, (RuntimeObject*)NULL, NULL);
NullCheck(L_117);
bool L_134;
L_134 = XmlDocument_AddIdInfo_mF6E5BE7379C76DA2C5E4D292380086D04009CC0E(L_117, L_125, L_133, NULL);
goto IL_02ca;
}
IL_02c1:
{
RuntimeObject* L_135 = V_10;
NullCheck(L_135);
bool L_136;
L_136 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_135);
if (L_136)
{
goto IL_024e;
}
}
IL_02ca:
{
RuntimeObject* L_137 = V_1;
NullCheck(L_137);
bool L_138;
L_138 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_137);
if (L_138)
{
goto IL_0220;
}
}
IL_02d5:
{
return;
}
}
// System.Xml.XmlParserContext System.Xml.XmlLoader::GetContext(System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* XmlLoader_GetContext_mC3CED072E1A2C5E1B94C8542BDFE5D0B3BA48934 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___node0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral916F4E7879C25AF1EA844F7068842D5508777C48);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
int32_t V_1 = 0;
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* V_2 = NULL;
String_t* V_3 = NULL;
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* V_4 = NULL;
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* V_5 = NULL;
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* V_6 = NULL;
bool V_7 = false;
RuntimeObject* V_8 = NULL;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_9 = NULL;
RuntimeObject* V_10 = NULL;
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* G_B33_0 = NULL;
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* G_B33_1 = NULL;
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* G_B32_0 = NULL;
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* G_B32_1 = NULL;
String_t* G_B34_0 = NULL;
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* G_B34_1 = NULL;
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* G_B34_2 = NULL;
String_t* G_B36_0 = NULL;
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* G_B36_1 = NULL;
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* G_B36_2 = NULL;
String_t* G_B35_0 = NULL;
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* G_B35_1 = NULL;
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* G_B35_2 = NULL;
String_t* G_B37_0 = NULL;
String_t* G_B37_1 = NULL;
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* G_B37_2 = NULL;
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* G_B37_3 = NULL;
String_t* G_B39_0 = NULL;
String_t* G_B39_1 = NULL;
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* G_B39_2 = NULL;
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* G_B39_3 = NULL;
String_t* G_B38_0 = NULL;
String_t* G_B38_1 = NULL;
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* G_B38_2 = NULL;
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* G_B38_3 = NULL;
String_t* G_B40_0 = NULL;
String_t* G_B40_1 = NULL;
String_t* G_B40_2 = NULL;
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* G_B40_3 = NULL;
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* G_B40_4 = NULL;
String_t* G_B42_0 = NULL;
String_t* G_B42_1 = NULL;
String_t* G_B42_2 = NULL;
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* G_B42_3 = NULL;
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* G_B42_4 = NULL;
String_t* G_B41_0 = NULL;
String_t* G_B41_1 = NULL;
String_t* G_B41_2 = NULL;
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* G_B41_3 = NULL;
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* G_B41_4 = NULL;
String_t* G_B43_0 = NULL;
String_t* G_B43_1 = NULL;
String_t* G_B43_2 = NULL;
String_t* G_B43_3 = NULL;
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* G_B43_4 = NULL;
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* G_B43_5 = NULL;
{
V_0 = (String_t*)NULL;
V_1 = 0;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = __this->___doc_0;
NullCheck(L_0);
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_1;
L_1 = VirtualFuncInvoker0< XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* >::Invoke(56 /* System.Xml.XmlDocumentType System.Xml.XmlDocument::get_DocumentType() */, L_0);
V_2 = L_1;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_2 = __this->___doc_0;
NullCheck(L_2);
String_t* L_3;
L_3 = VirtualFuncInvoker0< String_t* >::Invoke(42 /* System.String System.Xml.XmlNode::get_BaseURI() */, L_2);
V_3 = L_3;
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_4 = (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D*)il2cpp_codegen_object_new(Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var);
NullCheck(L_4);
Hashtable__ctor_mD7E2F1EB1BFD683186ECD6EDBE1708AF35C3A87D(L_4, NULL);
V_4 = L_4;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_5 = __this->___doc_0;
NullCheck(L_5);
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_6;
L_6 = XmlDocument_get_NameTable_m4B913865A24AEA917172F75CBDCE94C81CCB7E2C(L_5, NULL);
V_5 = L_6;
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_7 = V_5;
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_8 = (XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F*)il2cpp_codegen_object_new(XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F_il2cpp_TypeInfo_var);
NullCheck(L_8);
XmlNamespaceManager__ctor_m18E69120CE5886E06630CCCC3215D2C67FC669DB(L_8, L_7, NULL);
V_6 = L_8;
V_7 = (bool)0;
goto IL_01f1;
}
IL_0041:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_9 = ___node0;
if (!((XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)IsInstClass((RuntimeObject*)L_9, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var)))
{
goto IL_01e9;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_10 = ___node0;
NullCheck(((XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)CastclassClass((RuntimeObject*)L_10, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var)));
bool L_11;
L_11 = VirtualFuncInvoker0< bool >::Invoke(56 /* System.Boolean System.Xml.XmlElement::get_HasAttributes() */, ((XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)CastclassClass((RuntimeObject*)L_10, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var)));
if (!L_11)
{
goto IL_01e9;
}
}
{
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_12 = V_6;
NullCheck(L_12);
VirtualActionInvoker0::Invoke(10 /* System.Void System.Xml.XmlNamespaceManager::PushScope() */, L_12);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_13 = ___node0;
NullCheck(((XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)CastclassClass((RuntimeObject*)L_13, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var)));
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_14;
L_14 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(14 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, ((XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)CastclassClass((RuntimeObject*)L_13, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var)));
NullCheck(L_14);
RuntimeObject* L_15;
L_15 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(8 /* System.Collections.IEnumerator System.Xml.XmlNamedNodeMap::GetEnumerator() */, L_14);
V_8 = L_15;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_01d4:
{// begin finally (depth: 1)
{
RuntimeObject* L_16 = V_8;
V_10 = ((RuntimeObject*)IsInst((RuntimeObject*)L_16, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_17 = V_10;
if (!L_17)
{
goto IL_01e8;
}
}
{
RuntimeObject* L_18 = V_10;
NullCheck(L_18);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_18);
}
IL_01e8:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_01c6_1;
}
IL_007a_1:
{
RuntimeObject* L_19 = V_8;
NullCheck(L_19);
RuntimeObject* L_20;
L_20 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_19);
V_9 = ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_20, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var));
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_21 = V_9;
NullCheck(L_21);
String_t* L_22;
L_22 = VirtualFuncInvoker0< String_t* >::Invoke(34 /* System.String System.Xml.XmlNode::get_Prefix() */, L_21);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_23 = __this->___doc_0;
NullCheck(L_23);
String_t* L_24 = L_23->___strXmlns_28;
bool L_25;
L_25 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_22, L_24, NULL);
if (!L_25)
{
goto IL_00e0_1;
}
}
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_26 = V_4;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_27 = V_9;
NullCheck(L_27);
String_t* L_28;
L_28 = VirtualFuncInvoker0< String_t* >::Invoke(36 /* System.String System.Xml.XmlNode::get_LocalName() */, L_27);
NullCheck(L_26);
bool L_29;
L_29 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(26 /* System.Boolean System.Collections.Hashtable::Contains(System.Object) */, L_26, L_28);
if (L_29)
{
goto IL_00e0_1;
}
}
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_30 = V_4;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_31 = V_9;
NullCheck(L_31);
String_t* L_32;
L_32 = VirtualFuncInvoker0< String_t* >::Invoke(36 /* System.String System.Xml.XmlNode::get_LocalName() */, L_31);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_33 = V_9;
NullCheck(L_33);
String_t* L_34;
L_34 = VirtualFuncInvoker0< String_t* >::Invoke(36 /* System.String System.Xml.XmlNode::get_LocalName() */, L_33);
NullCheck(L_30);
VirtualActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(23 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_30, L_32, L_34);
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_35 = V_6;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_36 = V_9;
NullCheck(L_36);
String_t* L_37;
L_37 = VirtualFuncInvoker0< String_t* >::Invoke(36 /* System.String System.Xml.XmlNode::get_LocalName() */, L_36);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_38 = V_9;
NullCheck(L_38);
String_t* L_39;
L_39 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_38);
NullCheck(L_35);
VirtualActionInvoker2< String_t*, String_t* >::Invoke(12 /* System.Void System.Xml.XmlNamespaceManager::AddNamespace(System.String,System.String) */, L_35, L_37, L_39);
goto IL_01c6_1;
}
IL_00e0_1:
{
bool L_40 = V_7;
if (L_40)
{
goto IL_0126_1;
}
}
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_41 = V_9;
NullCheck(L_41);
String_t* L_42;
L_42 = VirtualFuncInvoker0< String_t* >::Invoke(34 /* System.String System.Xml.XmlNode::get_Prefix() */, L_41);
NullCheck(L_42);
int32_t L_43;
L_43 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_42, NULL);
if (L_43)
{
goto IL_0126_1;
}
}
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_44 = V_9;
NullCheck(L_44);
String_t* L_45;
L_45 = VirtualFuncInvoker0< String_t* >::Invoke(36 /* System.String System.Xml.XmlNode::get_LocalName() */, L_44);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_46 = __this->___doc_0;
NullCheck(L_46);
String_t* L_47 = L_46->___strXmlns_28;
bool L_48;
L_48 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_45, L_47, NULL);
if (!L_48)
{
goto IL_0126_1;
}
}
{
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_49 = V_6;
String_t* L_50 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_51 = V_9;
NullCheck(L_51);
String_t* L_52;
L_52 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_51);
NullCheck(L_49);
VirtualActionInvoker2< String_t*, String_t* >::Invoke(12 /* System.Void System.Xml.XmlNamespaceManager::AddNamespace(System.String,System.String) */, L_49, L_50, L_52);
V_7 = (bool)1;
goto IL_01c6_1;
}
IL_0126_1:
{
int32_t L_53 = V_1;
if (L_53)
{
goto IL_0189_1;
}
}
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_54 = V_9;
NullCheck(L_54);
String_t* L_55;
L_55 = VirtualFuncInvoker0< String_t* >::Invoke(34 /* System.String System.Xml.XmlNode::get_Prefix() */, L_54);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_56 = __this->___doc_0;
NullCheck(L_56);
String_t* L_57 = L_56->___strXml_29;
bool L_58;
L_58 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_55, L_57, NULL);
if (!L_58)
{
goto IL_0189_1;
}
}
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_59 = V_9;
NullCheck(L_59);
String_t* L_60;
L_60 = VirtualFuncInvoker0< String_t* >::Invoke(36 /* System.String System.Xml.XmlNode::get_LocalName() */, L_59);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_61 = __this->___doc_0;
NullCheck(L_61);
String_t* L_62 = L_61->___strSpace_30;
bool L_63;
L_63 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_60, L_62, NULL);
if (!L_63)
{
goto IL_0189_1;
}
}
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_64 = V_9;
NullCheck(L_64);
String_t* L_65;
L_65 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_64);
bool L_66;
L_66 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_65, _stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044, NULL);
if (!L_66)
{
goto IL_0172_1;
}
}
{
V_1 = 1;
goto IL_01c6_1;
}
IL_0172_1:
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_67 = V_9;
NullCheck(L_67);
String_t* L_68;
L_68 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_67);
bool L_69;
L_69 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_68, _stringLiteral916F4E7879C25AF1EA844F7068842D5508777C48, NULL);
if (!L_69)
{
goto IL_01c6_1;
}
}
{
V_1 = 2;
goto IL_01c6_1;
}
IL_0189_1:
{
String_t* L_70 = V_0;
if (L_70)
{
goto IL_01c6_1;
}
}
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_71 = V_9;
NullCheck(L_71);
String_t* L_72;
L_72 = VirtualFuncInvoker0< String_t* >::Invoke(34 /* System.String System.Xml.XmlNode::get_Prefix() */, L_71);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_73 = __this->___doc_0;
NullCheck(L_73);
String_t* L_74 = L_73->___strXml_29;
bool L_75;
L_75 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_72, L_74, NULL);
if (!L_75)
{
goto IL_01c6_1;
}
}
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_76 = V_9;
NullCheck(L_76);
String_t* L_77;
L_77 = VirtualFuncInvoker0< String_t* >::Invoke(36 /* System.String System.Xml.XmlNode::get_LocalName() */, L_76);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_78 = __this->___doc_0;
NullCheck(L_78);
String_t* L_79 = L_78->___strLang_31;
bool L_80;
L_80 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_77, L_79, NULL);
if (!L_80)
{
goto IL_01c6_1;
}
}
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_81 = V_9;
NullCheck(L_81);
String_t* L_82;
L_82 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_81);
V_0 = L_82;
}
IL_01c6_1:
{
RuntimeObject* L_83 = V_8;
NullCheck(L_83);
bool L_84;
L_84 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_83);
if (L_84)
{
goto IL_007a_1;
}
}
{
goto IL_01e9;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_01e9:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_85 = ___node0;
NullCheck(L_85);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_86;
L_86 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(10 /* System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() */, L_85);
___node0 = L_86;
}
IL_01f1:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_87 = ___node0;
if (!L_87)
{
goto IL_0200;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_88 = ___node0;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_89 = __this->___doc_0;
if ((!(((RuntimeObject*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)L_88) == ((RuntimeObject*)(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B*)L_89))))
{
goto IL_0041;
}
}
IL_0200:
{
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_90 = V_5;
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_91 = V_6;
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_92 = V_2;
G_B32_0 = L_91;
G_B32_1 = L_90;
if (!L_92)
{
G_B33_0 = L_91;
G_B33_1 = L_90;
goto IL_020f;
}
}
{
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_93 = V_2;
NullCheck(L_93);
String_t* L_94;
L_94 = VirtualFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.XmlNode::get_Name() */, L_93);
G_B34_0 = L_94;
G_B34_1 = G_B32_0;
G_B34_2 = G_B32_1;
goto IL_0210;
}
IL_020f:
{
G_B34_0 = ((String_t*)(NULL));
G_B34_1 = G_B33_0;
G_B34_2 = G_B33_1;
}
IL_0210:
{
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_95 = V_2;
G_B35_0 = G_B34_0;
G_B35_1 = G_B34_1;
G_B35_2 = G_B34_2;
if (!L_95)
{
G_B36_0 = G_B34_0;
G_B36_1 = G_B34_1;
G_B36_2 = G_B34_2;
goto IL_021b;
}
}
{
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_96 = V_2;
NullCheck(L_96);
String_t* L_97;
L_97 = XmlDocumentType_get_PublicId_m9E81FAF2D0AA9DC847D118813CBEB085F0CE1955_inline(L_96, NULL);
G_B37_0 = L_97;
G_B37_1 = G_B35_0;
G_B37_2 = G_B35_1;
G_B37_3 = G_B35_2;
goto IL_021c;
}
IL_021b:
{
G_B37_0 = ((String_t*)(NULL));
G_B37_1 = G_B36_0;
G_B37_2 = G_B36_1;
G_B37_3 = G_B36_2;
}
IL_021c:
{
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_98 = V_2;
G_B38_0 = G_B37_0;
G_B38_1 = G_B37_1;
G_B38_2 = G_B37_2;
G_B38_3 = G_B37_3;
if (!L_98)
{
G_B39_0 = G_B37_0;
G_B39_1 = G_B37_1;
G_B39_2 = G_B37_2;
G_B39_3 = G_B37_3;
goto IL_0227;
}
}
{
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_99 = V_2;
NullCheck(L_99);
String_t* L_100;
L_100 = XmlDocumentType_get_SystemId_m17B225C509C0F5A4ECBB838AA81D15DED4016909_inline(L_99, NULL);
G_B40_0 = L_100;
G_B40_1 = G_B38_0;
G_B40_2 = G_B38_1;
G_B40_3 = G_B38_2;
G_B40_4 = G_B38_3;
goto IL_0228;
}
IL_0227:
{
G_B40_0 = ((String_t*)(NULL));
G_B40_1 = G_B39_0;
G_B40_2 = G_B39_1;
G_B40_3 = G_B39_2;
G_B40_4 = G_B39_3;
}
IL_0228:
{
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_101 = V_2;
G_B41_0 = G_B40_0;
G_B41_1 = G_B40_1;
G_B41_2 = G_B40_2;
G_B41_3 = G_B40_3;
G_B41_4 = G_B40_4;
if (!L_101)
{
G_B42_0 = G_B40_0;
G_B42_1 = G_B40_1;
G_B42_2 = G_B40_2;
G_B42_3 = G_B40_3;
G_B42_4 = G_B40_4;
goto IL_0233;
}
}
{
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_102 = V_2;
NullCheck(L_102);
String_t* L_103;
L_103 = XmlDocumentType_get_InternalSubset_mBD8D585ED0401EE1FC02F6FD5445E2109B083FEF_inline(L_102, NULL);
G_B43_0 = L_103;
G_B43_1 = G_B41_0;
G_B43_2 = G_B41_1;
G_B43_3 = G_B41_2;
G_B43_4 = G_B41_3;
G_B43_5 = G_B41_4;
goto IL_0234;
}
IL_0233:
{
G_B43_0 = ((String_t*)(NULL));
G_B43_1 = G_B42_0;
G_B43_2 = G_B42_1;
G_B43_3 = G_B42_2;
G_B43_4 = G_B42_3;
G_B43_5 = G_B42_4;
}
IL_0234:
{
String_t* L_104 = V_3;
String_t* L_105 = V_0;
int32_t L_106 = V_1;
XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_107 = (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B*)il2cpp_codegen_object_new(XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B_il2cpp_TypeInfo_var);
NullCheck(L_107);
XmlParserContext__ctor_mB2CD7CF0517A079CBB79700E6B410C8667AEA532(L_107, G_B43_5, G_B43_4, G_B43_3, G_B43_2, G_B43_1, G_B43_0, L_104, L_105, L_106, NULL);
return L_107;
}
}
// System.Xml.XmlNamespaceManager System.Xml.XmlLoader::ParsePartialContent(System.Xml.XmlNode,System.String,System.Xml.XmlNodeType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* XmlLoader_ParsePartialContent_mB3EF08CD6158AD1D1CB317AA3A712DFF7252C1EC (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___parentNode0, String_t* ___innerxmltext1, int32_t ___nt2, const RuntimeMethod* method)
{
XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* V_0 = NULL;
bool V_1 = false;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_2 = NULL;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_3 = NULL;
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___parentNode0;
NullCheck(L_0);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1;
L_1 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, L_0);
__this->___doc_0 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___doc_0), (void*)L_1);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = ___parentNode0;
XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_3;
L_3 = XmlLoader_GetContext_mC3CED072E1A2C5E1B94C8542BDFE5D0B3BA48934(__this, L_2, NULL);
V_0 = L_3;
String_t* L_4 = ___innerxmltext1;
int32_t L_5 = ___nt2;
XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_6 = V_0;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_7 = __this->___doc_0;
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_8;
L_8 = XmlLoader_CreateInnerXmlReader_m9F7F526E3D4E37EAFA9469C1FE61159D2FE5CCC6(__this, L_4, L_5, L_6, L_7, NULL);
__this->___reader_1 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->___reader_1), (void*)L_8);
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00af:
{// begin finally (depth: 1)
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_9 = __this->___reader_1;
NullCheck(L_9);
VirtualActionInvoker0::Invoke(33 /* System.Void System.Xml.XmlReader::Close() */, L_9);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
__this->___preserveWhitespace_2 = (bool)1;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_10 = __this->___doc_0;
NullCheck(L_10);
bool L_11;
L_11 = XmlDocument_get_IsLoading_mD97F2D54DE1BD3B4F8B496F4D8D31C061FA8A52D_inline(L_10, NULL);
V_1 = L_11;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_12 = __this->___doc_0;
NullCheck(L_12);
XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline(L_12, (bool)1, NULL);
int32_t L_13 = ___nt2;
if ((!(((uint32_t)L_13) == ((uint32_t)6))))
{
goto IL_0077_1;
}
}
{
V_2 = (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL;
goto IL_005e_1;
}
IL_0050_1:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_14 = ___parentNode0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_15 = V_2;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_16 = __this->___doc_0;
NullCheck(L_14);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_17;
L_17 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(26 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, L_14, L_15, L_16);
}
IL_005e_1:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_18 = __this->___reader_1;
NullCheck(L_18);
bool L_19;
L_19 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, L_18);
if (!L_19)
{
goto IL_00a1_1;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_20;
L_20 = XmlLoader_LoadNodeDirect_m2C0D5301FFB96CA298EF768E2CE903B6C6D459B7(__this, NULL);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_21 = L_20;
V_2 = L_21;
if (L_21)
{
goto IL_0050_1;
}
}
{
goto IL_00a1_1;
}
IL_0077_1:
{
V_3 = (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL;
goto IL_0089_1;
}
IL_007b_1:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_22 = ___parentNode0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_23 = V_3;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_24 = __this->___doc_0;
NullCheck(L_22);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_25;
L_25 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(26 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, L_22, L_23, L_24);
}
IL_0089_1:
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_26 = __this->___reader_1;
NullCheck(L_26);
bool L_27;
L_27 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, L_26);
if (!L_27)
{
goto IL_00a1_1;
}
}
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_28;
L_28 = XmlLoader_LoadNode_mDFD824F250FA615C734180BF6141A472610F7E68(__this, (bool)1, NULL);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_29 = L_28;
V_3 = L_29;
if (L_29)
{
goto IL_007b_1;
}
}
IL_00a1_1:
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_30 = __this->___doc_0;
bool L_31 = V_1;
NullCheck(L_30);
XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline(L_30, L_31, NULL);
goto IL_00bb;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00bb:
{
XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_32 = V_0;
NullCheck(L_32);
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_33;
L_33 = XmlParserContext_get_NamespaceManager_mB51E2BAE011C0C53FB2DF0C9DFF21EA17DCD58B7_inline(L_32, NULL);
return L_33;
}
}
// System.Void System.Xml.XmlLoader::LoadInnerXmlElement(System.Xml.XmlElement,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_LoadInnerXmlElement_mE78D161D2D91C2082F77B90FAA4DF5181915DDEB (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___node0, String_t* ___innerxmltext1, const RuntimeMethod* method)
{
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* V_0 = NULL;
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_0 = ___node0;
String_t* L_1 = ___innerxmltext1;
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_2;
L_2 = XmlLoader_ParsePartialContent_mB3EF08CD6158AD1D1CB317AA3A712DFF7252C1EC(__this, L_0, L_1, 1, NULL);
V_0 = L_2;
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_3 = ___node0;
NullCheck(L_3);
XmlNodeList_tFC0CEED3A006BEDF6A1A420F7CB55AC33E9B7F85* L_4;
L_4 = VirtualFuncInvoker0< XmlNodeList_tFC0CEED3A006BEDF6A1A420F7CB55AC33E9B7F85* >::Invoke(11 /* System.Xml.XmlNodeList System.Xml.XmlNode::get_ChildNodes() */, L_3);
NullCheck(L_4);
int32_t L_5;
L_5 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 System.Xml.XmlNodeList::get_Count() */, L_4);
if ((((int32_t)L_5) <= ((int32_t)0)))
{
goto IL_0021;
}
}
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_6 = ___node0;
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_7 = V_0;
XmlLoader_RemoveDuplicateNamespace_m451D261AC3A6D4918CA6661853B922BBBE39A148(__this, L_6, L_7, (bool)0, NULL);
}
IL_0021:
{
return;
}
}
// System.Void System.Xml.XmlLoader::LoadInnerXmlAttribute(System.Xml.XmlAttribute,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_LoadInnerXmlAttribute_mBCE3F2F2B11410937B71BA993E5E1151BE4B6C98 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___node0, String_t* ___innerxmltext1, const RuntimeMethod* method)
{
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_0 = ___node0;
String_t* L_1 = ___innerxmltext1;
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_2;
L_2 = XmlLoader_ParsePartialContent_mB3EF08CD6158AD1D1CB317AA3A712DFF7252C1EC(__this, L_0, L_1, 2, NULL);
return;
}
}
// System.Void System.Xml.XmlLoader::RemoveDuplicateNamespace(System.Xml.XmlElement,System.Xml.XmlNamespaceManager,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_RemoveDuplicateNamespace_m451D261AC3A6D4918CA6661853B922BBBE39A148 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___elem0, XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* ___mgr1, bool ___fCheckElemAttrs2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* V_0 = NULL;
int32_t V_1 = 0;
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_2 = NULL;
int32_t V_3 = 0;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_4 = NULL;
String_t* V_5 = NULL;
String_t* V_6 = NULL;
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* V_7 = NULL;
{
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_0 = ___mgr1;
NullCheck(L_0);
VirtualActionInvoker0::Invoke(10 /* System.Void System.Xml.XmlNamespaceManager::PushScope() */, L_0);
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_1 = ___elem0;
NullCheck(L_1);
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_2;
L_2 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(14 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, L_1);
V_0 = L_2;
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_3 = V_0;
NullCheck(L_3);
int32_t L_4;
L_4 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 System.Xml.XmlNamedNodeMap::get_Count() */, L_3);
V_1 = L_4;
bool L_5 = ___fCheckElemAttrs2;
if (!L_5)
{
goto IL_0108;
}
}
{
int32_t L_6 = V_1;
if ((((int32_t)L_6) <= ((int32_t)0)))
{
goto IL_0108;
}
}
{
int32_t L_7 = V_1;
V_3 = ((int32_t)il2cpp_codegen_subtract(L_7, 1));
goto IL_0101;
}
IL_002a:
{
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_8 = V_0;
int32_t L_9 = V_3;
NullCheck(L_8);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_10;
L_10 = XmlAttributeCollection_get_ItemOf_m8F968C39C03DFEB9998B2122F4A26B76B1DB2EDB(L_8, L_9, NULL);
V_4 = L_10;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_11 = V_4;
NullCheck(L_11);
String_t* L_12;
L_12 = VirtualFuncInvoker0< String_t* >::Invoke(34 /* System.String System.Xml.XmlNode::get_Prefix() */, L_11);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_13 = __this->___doc_0;
NullCheck(L_13);
String_t* L_14 = L_13->___strXmlns_28;
bool L_15;
L_15 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_12, L_14, NULL);
if (!L_15)
{
goto IL_0097;
}
}
{
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_16 = ___mgr1;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_17 = V_4;
NullCheck(L_17);
String_t* L_18;
L_18 = VirtualFuncInvoker0< String_t* >::Invoke(36 /* System.String System.Xml.XmlNode::get_LocalName() */, L_17);
NullCheck(L_16);
String_t* L_19;
L_19 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(16 /* System.String System.Xml.XmlNamespaceManager::LookupNamespace(System.String) */, L_16, L_18);
V_5 = L_19;
String_t* L_20 = V_5;
if (!L_20)
{
goto IL_0081;
}
}
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_21 = V_4;
NullCheck(L_21);
String_t* L_22;
L_22 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_21);
String_t* L_23 = V_5;
bool L_24;
L_24 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_22, L_23, NULL);
if (!L_24)
{
goto IL_00fd;
}
}
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_25 = ___elem0;
NullCheck(L_25);
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_26;
L_26 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(14 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, L_25);
int32_t L_27 = V_3;
NullCheck(L_26);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_28;
L_28 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, int32_t >::Invoke(11 /* System.Xml.XmlNode System.Xml.XmlNamedNodeMap::RemoveNodeAt(System.Int32) */, L_26, L_27);
goto IL_00fd;
}
IL_0081:
{
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_29 = ___mgr1;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_30 = V_4;
NullCheck(L_30);
String_t* L_31;
L_31 = VirtualFuncInvoker0< String_t* >::Invoke(36 /* System.String System.Xml.XmlNode::get_LocalName() */, L_30);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_32 = V_4;
NullCheck(L_32);
String_t* L_33;
L_33 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_32);
NullCheck(L_29);
VirtualActionInvoker2< String_t*, String_t* >::Invoke(12 /* System.Void System.Xml.XmlNamespaceManager::AddNamespace(System.String,System.String) */, L_29, L_31, L_33);
goto IL_00fd;
}
IL_0097:
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_34 = V_4;
NullCheck(L_34);
String_t* L_35;
L_35 = VirtualFuncInvoker0< String_t* >::Invoke(34 /* System.String System.Xml.XmlNode::get_Prefix() */, L_34);
NullCheck(L_35);
int32_t L_36;
L_36 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_35, NULL);
if (L_36)
{
goto IL_00fd;
}
}
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_37 = V_4;
NullCheck(L_37);
String_t* L_38;
L_38 = VirtualFuncInvoker0< String_t* >::Invoke(36 /* System.String System.Xml.XmlNode::get_LocalName() */, L_37);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_39 = __this->___doc_0;
NullCheck(L_39);
String_t* L_40 = L_39->___strXmlns_28;
bool L_41;
L_41 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_38, L_40, NULL);
if (!L_41)
{
goto IL_00fd;
}
}
{
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_42 = ___mgr1;
NullCheck(L_42);
String_t* L_43;
L_43 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlNamespaceManager::get_DefaultNamespace() */, L_42);
V_6 = L_43;
String_t* L_44 = V_6;
if (!L_44)
{
goto IL_00e9;
}
}
{
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_45 = V_4;
NullCheck(L_45);
String_t* L_46;
L_46 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_45);
String_t* L_47 = V_6;
bool L_48;
L_48 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_46, L_47, NULL);
if (!L_48)
{
goto IL_00fd;
}
}
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_49 = ___elem0;
NullCheck(L_49);
XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_50;
L_50 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(14 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, L_49);
int32_t L_51 = V_3;
NullCheck(L_50);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_52;
L_52 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, int32_t >::Invoke(11 /* System.Xml.XmlNode System.Xml.XmlNamedNodeMap::RemoveNodeAt(System.Int32) */, L_50, L_51);
goto IL_00fd;
}
IL_00e9:
{
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_53 = ___mgr1;
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_54 = V_4;
NullCheck(L_54);
String_t* L_55;
L_55 = VirtualFuncInvoker0< String_t* >::Invoke(36 /* System.String System.Xml.XmlNode::get_LocalName() */, L_54);
XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_56 = V_4;
NullCheck(L_56);
String_t* L_57;
L_57 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_56);
NullCheck(L_53);
VirtualActionInvoker2< String_t*, String_t* >::Invoke(12 /* System.Void System.Xml.XmlNamespaceManager::AddNamespace(System.String,System.String) */, L_53, L_55, L_57);
}
IL_00fd:
{
int32_t L_58 = V_3;
V_3 = ((int32_t)il2cpp_codegen_subtract(L_58, 1));
}
IL_0101:
{
int32_t L_59 = V_3;
if ((((int32_t)L_59) >= ((int32_t)0)))
{
goto IL_002a;
}
}
IL_0108:
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_60 = ___elem0;
NullCheck(L_60);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_61;
L_61 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(16 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, L_60);
V_2 = L_61;
goto IL_012e;
}
IL_0111:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_62 = V_2;
V_7 = ((XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)IsInstClass((RuntimeObject*)L_62, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var));
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_63 = V_7;
if (!L_63)
{
goto IL_0127;
}
}
{
XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_64 = V_7;
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_65 = ___mgr1;
XmlLoader_RemoveDuplicateNamespace_m451D261AC3A6D4918CA6661853B922BBBE39A148(__this, L_64, L_65, (bool)1, NULL);
}
IL_0127:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_66 = V_2;
NullCheck(L_66);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_67;
L_67 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(13 /* System.Xml.XmlNode System.Xml.XmlNode::get_NextSibling() */, L_66);
V_2 = L_67;
}
IL_012e:
{
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_68 = V_2;
if (L_68)
{
goto IL_0111;
}
}
{
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_69 = ___mgr1;
NullCheck(L_69);
bool L_70;
L_70 = VirtualFuncInvoker0< bool >::Invoke(11 /* System.Boolean System.Xml.XmlNamespaceManager::PopScope() */, L_69);
return;
}
}
// System.String System.Xml.XmlLoader::EntitizeName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlLoader_EntitizeName_mA9639629370CE5837B6174542782588E6E1A682B (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8D004CCFB2C7F7062B882865483FF7F4DC36E04E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral951CCB49640C8F9E81FB4E0D82730321F4E15BB3);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___name0;
String_t* L_1;
L_1 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(_stringLiteral8D004CCFB2C7F7062B882865483FF7F4DC36E04E, L_0, _stringLiteral951CCB49640C8F9E81FB4E0D82730321F4E15BB3, NULL);
return L_1;
}
}
// System.Void System.Xml.XmlLoader::ExpandEntity(System.Xml.XmlEntity)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_ExpandEntity_mF48C80ADCAA60579178B00F9BB747D3FDA3B2616 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* ___ent0, const RuntimeMethod* method)
{
{
XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* L_0 = ___ent0;
XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* L_1 = ___ent0;
NullCheck(L_1);
String_t* L_2;
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.XmlNode::get_Name() */, L_1);
String_t* L_3;
L_3 = XmlLoader_EntitizeName_mA9639629370CE5837B6174542782588E6E1A682B(__this, L_2, NULL);
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_4;
L_4 = XmlLoader_ParsePartialContent_mB3EF08CD6158AD1D1CB317AA3A712DFF7252C1EC(__this, L_0, L_3, 6, NULL);
return;
}
}
// System.Void System.Xml.XmlLoader::ExpandEntityReference(System.Xml.XmlEntityReference)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_ExpandEntityReference_m99D6DCC2F0FA00E28E73698D333FCC12EFCA7B2F (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* ___eref0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1710B4477A01FFE20514D8AA61891F364D71C25B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral35B44AA64754DEDC52915E7F763C081CF5B004D9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral513659CEF285C73478E9829E41D7E4C23DB53E12);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral725B1CAFF9B49E1231FDA15B85166BBEFAA36A11);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral893D84FF4ED81AC205FBC0C67CBEE1C0C752B406);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8D004CCFB2C7F7062B882865483FF7F4DC36E04E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral96930EC8C6FD5250BB36A5E1040AB06A9588FD62);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
String_t* V_1 = NULL;
RuntimeObject* V_2 = NULL;
RuntimeObject* V_3 = NULL;
{
XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_0 = ___eref0;
NullCheck(L_0);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1;
L_1 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, L_0);
__this->___doc_0 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___doc_0), (void*)L_1);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_2 = __this->___doc_0;
NullCheck(L_2);
bool L_3;
L_3 = XmlDocument_get_IsLoading_mD97F2D54DE1BD3B4F8B496F4D8D31C061FA8A52D_inline(L_2, NULL);
V_0 = L_3;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_4 = __this->___doc_0;
NullCheck(L_4);
XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline(L_4, (bool)1, NULL);
XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_5 = ___eref0;
NullCheck(L_5);
String_t* L_6;
L_6 = VirtualFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.XmlNode::get_Name() */, L_5);
V_1 = L_6;
String_t* L_7 = V_1;
bool L_8;
L_8 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_7, _stringLiteral35B44AA64754DEDC52915E7F763C081CF5B004D9, NULL);
if (L_8)
{
goto IL_0077;
}
}
{
String_t* L_9 = V_1;
bool L_10;
L_10 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_9, _stringLiteral1710B4477A01FFE20514D8AA61891F364D71C25B, NULL);
if (L_10)
{
goto IL_00a1;
}
}
{
String_t* L_11 = V_1;
bool L_12;
L_12 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_11, _stringLiteral96930EC8C6FD5250BB36A5E1040AB06A9588FD62, NULL);
if (L_12)
{
goto IL_00cb;
}
}
{
String_t* L_13 = V_1;
bool L_14;
L_14 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_13, _stringLiteral513659CEF285C73478E9829E41D7E4C23DB53E12, NULL);
if (L_14)
{
goto IL_00f5;
}
}
{
String_t* L_15 = V_1;
bool L_16;
L_16 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_15, _stringLiteral893D84FF4ED81AC205FBC0C67CBEE1C0C752B406, NULL);
if (L_16)
{
goto IL_011f;
}
}
{
goto IL_0149;
}
IL_0077:
{
XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_17 = ___eref0;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_18 = __this->___doc_0;
NullCheck(L_18);
XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* L_19;
L_19 = VirtualFuncInvoker1< XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A*, String_t* >::Invoke(66 /* System.Xml.XmlText System.Xml.XmlDocument::CreateTextNode(System.String) */, L_18, _stringLiteral725B1CAFF9B49E1231FDA15B85166BBEFAA36A11);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_20 = __this->___doc_0;
NullCheck(L_17);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_21;
L_21 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(26 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, L_17, L_19, L_20);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_22 = __this->___doc_0;
bool L_23 = V_0;
NullCheck(L_22);
XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline(L_22, L_23, NULL);
return;
}
IL_00a1:
{
XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_24 = ___eref0;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_25 = __this->___doc_0;
NullCheck(L_25);
XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* L_26;
L_26 = VirtualFuncInvoker1< XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A*, String_t* >::Invoke(66 /* System.Xml.XmlText System.Xml.XmlDocument::CreateTextNode(System.String) */, L_25, _stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_27 = __this->___doc_0;
NullCheck(L_24);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_28;
L_28 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(26 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, L_24, L_26, L_27);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_29 = __this->___doc_0;
bool L_30 = V_0;
NullCheck(L_29);
XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline(L_29, L_30, NULL);
return;
}
IL_00cb:
{
XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_31 = ___eref0;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_32 = __this->___doc_0;
NullCheck(L_32);
XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* L_33;
L_33 = VirtualFuncInvoker1< XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A*, String_t* >::Invoke(66 /* System.Xml.XmlText System.Xml.XmlDocument::CreateTextNode(System.String) */, L_32, _stringLiteral8D004CCFB2C7F7062B882865483FF7F4DC36E04E);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_34 = __this->___doc_0;
NullCheck(L_31);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_35;
L_35 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(26 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, L_31, L_33, L_34);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_36 = __this->___doc_0;
bool L_37 = V_0;
NullCheck(L_36);
XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline(L_36, L_37, NULL);
return;
}
IL_00f5:
{
XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_38 = ___eref0;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_39 = __this->___doc_0;
NullCheck(L_39);
XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* L_40;
L_40 = VirtualFuncInvoker1< XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A*, String_t* >::Invoke(66 /* System.Xml.XmlText System.Xml.XmlDocument::CreateTextNode(System.String) */, L_39, _stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_41 = __this->___doc_0;
NullCheck(L_38);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_42;
L_42 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(26 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, L_38, L_40, L_41);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_43 = __this->___doc_0;
bool L_44 = V_0;
NullCheck(L_43);
XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline(L_43, L_44, NULL);
return;
}
IL_011f:
{
XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_45 = ___eref0;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_46 = __this->___doc_0;
NullCheck(L_46);
XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* L_47;
L_47 = VirtualFuncInvoker1< XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A*, String_t* >::Invoke(66 /* System.Xml.XmlText System.Xml.XmlDocument::CreateTextNode(System.String) */, L_46, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_48 = __this->___doc_0;
NullCheck(L_45);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_49;
L_49 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(26 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, L_45, L_47, L_48);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_50 = __this->___doc_0;
bool L_51 = V_0;
NullCheck(L_50);
XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline(L_50, L_51, NULL);
return;
}
IL_0149:
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_52 = __this->___doc_0;
NullCheck(L_52);
XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_53;
L_53 = XmlDocument_get_Entities_m72C0183C637A5D71BB38433D1D4CD9A4E87D3A80(L_52, NULL);
NullCheck(L_53);
RuntimeObject* L_54;
L_54 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(8 /* System.Collections.IEnumerator System.Xml.XmlNamedNodeMap::GetEnumerator() */, L_53);
V_2 = L_54;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_019a:
{// begin finally (depth: 1)
{
RuntimeObject* L_55 = V_2;
V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_55, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_56 = V_3;
if (!L_56)
{
goto IL_01aa;
}
}
{
RuntimeObject* L_57 = V_3;
NullCheck(L_57);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_57);
}
IL_01aa:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0190_1;
}
IL_015c_1:
{
RuntimeObject* L_58 = V_2;
NullCheck(L_58);
RuntimeObject* L_59;
L_59 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_58);
NullCheck(((XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE*)CastclassClass((RuntimeObject*)L_59, XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE_il2cpp_TypeInfo_var)));
String_t* L_60;
L_60 = VirtualFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.XmlNode::get_Name() */, ((XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE*)CastclassClass((RuntimeObject*)L_59, XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE_il2cpp_TypeInfo_var)));
XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_61 = ___eref0;
NullCheck(L_61);
String_t* L_62;
L_62 = VirtualFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.XmlNode::get_Name() */, L_61);
bool L_63;
L_63 = Ref_Equal_m91CE186A8D713DBCF387B2A4AA83138704C7B8B1(L_60, L_62, NULL);
if (!L_63)
{
goto IL_0190_1;
}
}
{
XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_64 = ___eref0;
XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_65 = ___eref0;
NullCheck(L_65);
String_t* L_66;
L_66 = VirtualFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.XmlNode::get_Name() */, L_65);
String_t* L_67;
L_67 = XmlLoader_EntitizeName_mA9639629370CE5837B6174542782588E6E1A682B(__this, L_66, NULL);
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_68;
L_68 = XmlLoader_ParsePartialContent_mB3EF08CD6158AD1D1CB317AA3A712DFF7252C1EC(__this, L_64, L_67, 5, NULL);
goto IL_01ff;
}
IL_0190_1:
{
RuntimeObject* L_69 = V_2;
NullCheck(L_69);
bool L_70;
L_70 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_69);
if (L_70)
{
goto IL_015c_1;
}
}
{
goto IL_01ab;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_01ab:
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_71 = __this->___doc_0;
NullCheck(L_71);
bool L_72;
L_72 = XmlDocument_get_ActualLoadingStatus_m63B8F5AD9C82FEF1D9EFA47926E4AABED6CD9D99_inline(L_71, NULL);
if (L_72)
{
goto IL_01e2;
}
}
{
XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_73 = ___eref0;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_74 = __this->___doc_0;
NullCheck(L_74);
XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* L_75;
L_75 = VirtualFuncInvoker1< XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A*, String_t* >::Invoke(66 /* System.Xml.XmlText System.Xml.XmlDocument::CreateTextNode(System.String) */, L_74, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_76 = __this->___doc_0;
NullCheck(L_73);
XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_77;
L_77 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(26 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, L_73, L_75, L_76);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_78 = __this->___doc_0;
bool L_79 = V_0;
NullCheck(L_78);
XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline(L_78, L_79, NULL);
return;
}
IL_01e2:
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_80 = __this->___doc_0;
bool L_81 = V_0;
NullCheck(L_80);
XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline(L_80, L_81, NULL);
XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_82 = ___eref0;
NullCheck(L_82);
String_t* L_83;
L_83 = VirtualFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.XmlNode::get_Name() */, L_82);
XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_84 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var)));
NullCheck(L_84);
XmlException__ctor_mD7C8E5B35C43BCEDBB41ADC035A38088DFE88A87(L_84, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCDFFBF7695883D821E64C727304FFE2682330A22)), L_83, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_84, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlLoader_ExpandEntityReference_m99D6DCC2F0FA00E28E73698D333FCC12EFCA7B2F_RuntimeMethod_var)));
}
IL_01ff:
{
return;
}
}
// System.Xml.XmlReader System.Xml.XmlLoader::CreateInnerXmlReader(System.String,System.Xml.XmlNodeType,System.Xml.XmlParserContext,System.Xml.XmlDocument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* XmlLoader_CreateInnerXmlReader_m9F7F526E3D4E37EAFA9469C1FE61159D2FE5CCC6 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, String_t* ___xmlFragment0, int32_t ___nt1, XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* ___context2, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdParser_t91A29AF9801876CAFD81A0496F5AB8A65527B54B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* V_1 = NULL;
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* V_2 = NULL;
DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* V_3 = NULL;
RuntimeObject* V_4 = NULL;
{
int32_t L_0 = ___nt1;
V_0 = L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)6)))
{
goto IL_000a;
}
}
{
int32_t L_2 = V_0;
if ((!(((uint32_t)L_2) == ((uint32_t)5))))
{
goto IL_000c;
}
}
IL_000a:
{
V_0 = 1;
}
IL_000c:
{
String_t* L_3 = ___xmlFragment0;
int32_t L_4 = V_0;
XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_5 = ___context2;
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_6 = (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B*)il2cpp_codegen_object_new(XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B_il2cpp_TypeInfo_var);
NullCheck(L_6);
XmlTextReaderImpl__ctor_m1752EB0257B3129797C620899A5D76179EF65C85(L_6, L_3, L_4, L_5, NULL);
V_1 = L_6;
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_7 = V_1;
NullCheck(L_7);
XmlTextReaderImpl_set_XmlValidatingReaderCompatibilityMode_mBBE46175DBCCE969AC2B298119581E91A17FA380(L_7, (bool)1, NULL);
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_8 = ___doc3;
NullCheck(L_8);
bool L_9;
L_9 = XmlDocument_get_HasSetResolver_m7CBB11C7E27D95CD697F177B965CEB2E1E71358D_inline(L_8, NULL);
if (!L_9)
{
goto IL_0032;
}
}
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_10 = V_1;
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_11 = ___doc3;
NullCheck(L_11);
XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_12;
L_12 = XmlDocument_GetResolver_m0B1F443F2DF5510E0733052D42BC984CB83F9119_inline(L_11, NULL);
NullCheck(L_10);
XmlTextReaderImpl_set_XmlResolver_mE88E51BCF47AE861AAB9121C0B023EEE73D29775(L_10, L_12, NULL);
}
IL_0032:
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_13 = ___doc3;
NullCheck(L_13);
bool L_14;
L_14 = XmlDocument_get_ActualLoadingStatus_m63B8F5AD9C82FEF1D9EFA47926E4AABED6CD9D99_inline(L_13, NULL);
if (L_14)
{
goto IL_0042;
}
}
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_15 = V_1;
NullCheck(L_15);
XmlTextReaderImpl_set_DisableUndeclaredEntityCheck_m339683347E0D9F45C31C7602CBAF90F5497CACC5_inline(L_15, (bool)1, NULL);
}
IL_0042:
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_16 = ___doc3;
NullCheck(L_16);
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_17;
L_17 = VirtualFuncInvoker0< XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* >::Invoke(56 /* System.Xml.XmlDocumentType System.Xml.XmlDocument::get_DocumentType() */, L_16);
V_2 = L_17;
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_18 = V_2;
if (!L_18)
{
goto IL_00b6;
}
}
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_19 = V_1;
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_20 = V_2;
NullCheck(L_20);
bool L_21;
L_21 = XmlDocumentType_get_ParseWithNamespaces_mC391046582C88CDC3C3496E4D2C0827C36D9B324_inline(L_20, NULL);
NullCheck(L_19);
XmlTextReaderImpl_set_Namespaces_mBC1F7402DC209EE48DACECE94982BC6CC1E861CE(L_19, L_21, NULL);
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_22 = V_2;
NullCheck(L_22);
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_23;
L_23 = XmlDocumentType_get_DtdSchemaInfo_mDF54B3A169B037A8C8A4F186206B143AF3068259_inline(L_22, NULL);
if (!L_23)
{
goto IL_006f;
}
}
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_24 = V_1;
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_25 = V_2;
NullCheck(L_25);
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_26;
L_26 = XmlDocumentType_get_DtdSchemaInfo_mDF54B3A169B037A8C8A4F186206B143AF3068259_inline(L_25, NULL);
NullCheck(L_24);
XmlTextReaderImpl_SetDtdInfo_m8F11C3245888FFB1600893DBAD0135432EE06110(L_24, L_26, NULL);
goto IL_00b6;
}
IL_006f:
{
RuntimeObject* L_27;
L_27 = DtdParser_Create_mEAB3483CB293C48815D7ED94E0EE32B2A175731B(NULL);
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_28 = V_1;
DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* L_29 = (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3*)il2cpp_codegen_object_new(DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3_il2cpp_TypeInfo_var);
NullCheck(L_29);
DtdParserProxy__ctor_m442621DC14ECF6CAB169962B3CAAF479A5F18D90(L_29, L_28, NULL);
V_3 = L_29;
XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_30 = ___context2;
NullCheck(L_30);
String_t* L_31;
L_31 = XmlParserContext_get_BaseURI_m203B1A13A7DFA09528C49D2198E7B9382BA91892_inline(L_30, NULL);
XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_32 = ___context2;
NullCheck(L_32);
String_t* L_33;
L_33 = XmlParserContext_get_DocTypeName_m8212FEC6DBA21A5B1E95538D40951B1CB0380CF0_inline(L_32, NULL);
XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_34 = ___context2;
NullCheck(L_34);
String_t* L_35;
L_35 = XmlParserContext_get_PublicId_mCE67EDDC8A9D73A0AADB77E0F7CCF53DEB5E300D_inline(L_34, NULL);
XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_36 = ___context2;
NullCheck(L_36);
String_t* L_37;
L_37 = XmlParserContext_get_SystemId_mB4649C8C6DA52AFC5224E82BBD2B7C7A1D5CCB58_inline(L_36, NULL);
XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_38 = ___context2;
NullCheck(L_38);
String_t* L_39;
L_39 = XmlParserContext_get_InternalSubset_mDD9703E47510C335AD4940AE7F761F56AA00E9DC_inline(L_38, NULL);
DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* L_40 = V_3;
NullCheck(L_27);
RuntimeObject* L_41;
L_41 = InterfaceFuncInvoker6< RuntimeObject*, String_t*, String_t*, String_t*, String_t*, String_t*, RuntimeObject* >::Invoke(1 /* System.Xml.IDtdInfo System.Xml.IDtdParser::ParseFreeFloatingDtd(System.String,System.String,System.String,System.String,System.String,System.Xml.IDtdParserAdapter) */, IDtdParser_t91A29AF9801876CAFD81A0496F5AB8A65527B54B_il2cpp_TypeInfo_var, L_27, L_31, L_33, L_35, L_37, L_39, L_40);
V_4 = L_41;
XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_42 = V_2;
RuntimeObject* L_43 = V_4;
NullCheck(L_42);
XmlDocumentType_set_DtdSchemaInfo_m6E419933465D42DAB30AD7C6FFF7ACCC6D78A4E6_inline(L_42, ((SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E*)IsInstClass((RuntimeObject*)L_43, SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E_il2cpp_TypeInfo_var)), NULL);
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_44 = V_1;
RuntimeObject* L_45 = V_4;
NullCheck(L_44);
XmlTextReaderImpl_SetDtdInfo_m8F11C3245888FFB1600893DBAD0135432EE06110(L_44, L_45, NULL);
}
IL_00b6:
{
int32_t L_46 = ___nt1;
if ((((int32_t)L_46) == ((int32_t)6)))
{
goto IL_00be;
}
}
{
int32_t L_47 = ___nt1;
if ((!(((uint32_t)L_47) == ((uint32_t)5))))
{
goto IL_00cb;
}
}
IL_00be:
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_48 = V_1;
NullCheck(L_48);
bool L_49;
L_49 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, L_48);
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_50 = V_1;
NullCheck(L_50);
VirtualActionInvoker0::Invoke(39 /* System.Void System.Xml.XmlReader::ResolveEntity() */, L_50);
}
IL_00cb:
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_51 = V_1;
return L_51;
}
}
// System.Void System.Xml.XmlLoader::ParseXmlDeclarationValue(System.String,System.String&,System.String&,System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_ParseXmlDeclarationValue_m54F41E02A882770049D8D02C68338A7B7AF9ABA6 (String_t* ___strValue0, String_t** ___version1, String_t** ___encoding2, String_t** ___standalone3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral29988D0F9BCADFABFF66CBF5AB73096D1CAE3128);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5BAA302A400A1B9C6F712ED9DBE1D7010A5034BF);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052);
s_Il2CppMethodInitialized = true;
}
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* V_0 = NULL;
{
String_t** L_0 = ___version1;
*((RuntimeObject**)L_0) = (RuntimeObject*)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_0, (void*)(RuntimeObject*)NULL);
String_t** L_1 = ___encoding2;
*((RuntimeObject**)L_1) = (RuntimeObject*)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_1, (void*)(RuntimeObject*)NULL);
String_t** L_2 = ___standalone3;
*((RuntimeObject**)L_2) = (RuntimeObject*)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_2, (void*)(RuntimeObject*)NULL);
String_t* L_3 = ___strValue0;
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_4 = (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B*)il2cpp_codegen_object_new(XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B_il2cpp_TypeInfo_var);
NullCheck(L_4);
XmlTextReaderImpl__ctor_mB17B348B4F2C16D6F06AB86A2803970CA0517303(L_4, L_3, (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B*)NULL, NULL);
V_0 = L_4;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0059:
{// begin finally (depth: 1)
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_5 = V_0;
NullCheck(L_5);
VirtualActionInvoker0::Invoke(33 /* System.Void System.Xml.XmlReader::Close() */, L_5);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_6 = V_0;
NullCheck(L_6);
bool L_7;
L_7 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlReader::Read() */, L_6);
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_8 = V_0;
NullCheck(L_8);
bool L_9;
L_9 = VirtualFuncInvoker1< bool, String_t* >::Invoke(25 /* System.Boolean System.Xml.XmlReader::MoveToAttribute(System.String) */, L_8, _stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052);
if (!L_9)
{
goto IL_002d_1;
}
}
{
String_t** L_10 = ___version1;
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_11 = V_0;
NullCheck(L_11);
String_t* L_12;
L_12 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_11);
*((RuntimeObject**)L_10) = (RuntimeObject*)L_12;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_10, (void*)(RuntimeObject*)L_12);
}
IL_002d_1:
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_13 = V_0;
NullCheck(L_13);
bool L_14;
L_14 = VirtualFuncInvoker1< bool, String_t* >::Invoke(25 /* System.Boolean System.Xml.XmlReader::MoveToAttribute(System.String) */, L_13, _stringLiteral29988D0F9BCADFABFF66CBF5AB73096D1CAE3128);
if (!L_14)
{
goto IL_0042_1;
}
}
{
String_t** L_15 = ___encoding2;
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_16 = V_0;
NullCheck(L_16);
String_t* L_17;
L_17 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_16);
*((RuntimeObject**)L_15) = (RuntimeObject*)L_17;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_15, (void*)(RuntimeObject*)L_17);
}
IL_0042_1:
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_18 = V_0;
NullCheck(L_18);
bool L_19;
L_19 = VirtualFuncInvoker1< bool, String_t* >::Invoke(25 /* System.Boolean System.Xml.XmlReader::MoveToAttribute(System.String) */, L_18, _stringLiteral5BAA302A400A1B9C6F712ED9DBE1D7010A5034BF);
if (!L_19)
{
goto IL_0057_1;
}
}
{
String_t** L_20 = ___standalone3;
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_21 = V_0;
NullCheck(L_21);
String_t* L_22;
L_22 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_21);
*((RuntimeObject**)L_20) = (RuntimeObject*)L_22;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_20, (void*)(RuntimeObject*)L_22);
}
IL_0057_1:
{
goto IL_0060;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0060:
{
return;
}
}
// System.Exception System.Xml.XmlLoader::UnexpectedNodeType(System.Xml.XmlNodeType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* XmlLoader_UnexpectedNodeType_mA83CDA29B169FEFBB014EAC94A0D4DBFB31F84E4 (int32_t ___nodetype0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNodeType_tCA25567E42A464038FDA6BA318EC0A9627B4CB95_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral44C14DBC6A9EE22DDA5FE2FABA5577B801DFAD89);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_0;
L_0 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
String_t* L_1;
L_1 = Res_GetString_mDA55FC7FF8E2C038FBF35ECD8F23554CF9C31D43(_stringLiteral44C14DBC6A9EE22DDA5FE2FABA5577B801DFAD89, NULL);
Il2CppFakeBox<int32_t> L_2(XmlNodeType_tCA25567E42A464038FDA6BA318EC0A9627B4CB95_il2cpp_TypeInfo_var, (&___nodetype0));
String_t* L_3;
L_3 = Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)(&L_2), NULL);
String_t* L_4;
L_4 = String_Format_m75580778A544C5C8DA0F2ACEE7972A2AC944063A(L_0, L_1, L_3, NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_5 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var);
NullCheck(L_5);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_5, L_4, NULL);
return L_5;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
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 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 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 int32_t ValidatingReaderNodeData_get_NodeType_m3E275338D3EAE907A584E73F6C5E35EA6B932CE6_inline (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___nodeType_8;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ValidatingReaderNodeData_get_LocalName_m1B5FCCE13DF4BA2F5CF1AD689A9186064EB5349D_inline (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___localName_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ValidatingReaderNodeData_get_Namespace_mE44583C79C6B1F0C5C6C2768590464A804E57FF6_inline (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___namespaceUri_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ValidatingReaderNodeData_get_Prefix_m47A65BB79C9FE8B2152542E47AB5DB9FDD0F3D34_inline (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___prefix_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ValidatingReaderNodeData_get_RawValue_m910C83DC6975C87F12721378D46110F5A19B272B_inline (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___rawValue_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ValidatingReaderNodeData_get_OriginalStringValue_m7324BC2DF5C5339DA89755D74D480D7CD842D95C_inline (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___originalStringValue_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ValidatingReaderNodeData_get_Depth_m08B579D77C5CA1CEA934CD16CB8CB36040A1E59D_inline (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___depth_6;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ValidatingReaderNodeData_set_Depth_m67104201A7E9C3E72FF18CD75CF28CCEEB349D8B_inline (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->___depth_6 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void CachingEventHandler_Invoke_mE544A7147BAE33B6F1A434723ACF2C561F3CB02F_inline (CachingEventHandler_t3531836C36E56CCAAB45B3B7DA1B4F94742FE74E* __this, XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* ___cachingReader0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (CachingEventHandler_t3531836C36E56CCAAB45B3B7DA1B4F94742FE74E* __this, XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* ___cachingReader0, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___cachingReader0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ValidatingReaderNodeData_get_LineNumber_m60328F5D1F021D01F27CACC6AD42227DE2F2D515_inline (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___lineNo_9;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ValidatingReaderNodeData_get_LinePosition_mCA2EE6761998E637338A7D98AC7BD2CB7DD6FEA5_inline (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___linePos_10;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ValidatingReaderNodeData_set_RawValue_mEE082D1AA279EC32C842D3F17574B5839F42B4A4_inline (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___rawValue_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___rawValue_4), (void*)L_0);
return;
}
}
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 ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* XmlReaderSettings_GetEventHandler_m846EA87D263A6804F452088315D63F5FA898AC64_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method)
{
{
ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* L_0 = __this->___valEventHandler_16;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlSchemaValidator_set_XmlResolver_mDC237AD870BB422EBE00CABC121D6463BD83AC7B_inline (XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* __this, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___value0, const RuntimeMethod* method)
{
{
XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_0 = ___value0;
__this->___xmlResolver_29 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlResolver_29), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlSchemaValidator_set_ValidationEventSender_m86BA6FEA0FF7C3084A563502919ED3AFC4B5FEF3_inline (XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->___validationEventSender_25 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___validationEventSender_25), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* XmlSchemaValidator_get_SchemaSet_m5FF824719184397EE034CEB9C75AA11723A6EF11_inline (XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* __this, const RuntimeMethod* method)
{
{
XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* L_0 = __this->___schemaSet_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* XmlSchemaSet_get_ReaderSettings_m93D79181C45DC697575A64806D2D47229BE1A7F5_inline (XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* __this, const RuntimeMethod* method)
{
{
XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_0 = __this->___readerSettings_11;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlReaderSettings_get_DtdProcessing_m6855A18AA93729899B666898C1FD7B46D3330C5F_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___dtdProcessing_12;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlSchemaValidator_get_ValidationFlags_m7AD61F111A15626C30081CCDD6A4D89C07478AF9_inline (XmlSchemaValidator_tCA615071D8849F90BA240A83BCC3B4D5CC024B24* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___validationFlags_1;
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 int32_t XmlSchemaInfo_get_ContentType_mCCA068AA3574842BD420262E10289905AEFF231B_inline (XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___contentType_7;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* XmlSchemaInfo_get_SchemaType_mEB10A4E308F1E049AB929D5AB45087160B8A4979_inline (XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* __this, const RuntimeMethod* method)
{
{
XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* L_0 = __this->___schemaType_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D* XmlSchemaType_get_Datatype_mECB5426C8F94D6BEF27D5E8648BCCDB17C5EAC16_inline (XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* __this, const RuntimeMethod* method)
{
{
XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D* L_0 = __this->___datatype_13;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* ValidatingReaderNodeData_get_AttInfo_m45ACBC84102E1D9D046D31FD457A3DCA98E2090F_inline (ValidatingReaderNodeData_tAE18697DFADC58A9898DF8421118BB1754A7C13C* __this, const RuntimeMethod* method)
{
{
AttributePSVIInfo_t129E2A73E387A2A7C919EF6AF2FE18560004D1FE* L_0 = __this->___attributePSVIInfo_7;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlSchemaInfo_get_IsDefault_mB86867936914AAE6E3CD99B8826360233EA59B8C_inline (XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___isDefault_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlSchemaInfo_get_IsNil_m4F1DD1026DF6FADBEB26C570C07933519D4F8A2B_inline (XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___isNil_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlSchemaInfo_get_Validity_mE4869422758C55C3AEAD4058EA5DE33F20515B83_inline (XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___validity_6;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8* XmlSchemaInfo_get_MemberType_m4D8775934A4A9E0BFB886A913151C05237D79CCC_inline (XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* __this, const RuntimeMethod* method)
{
{
XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8* L_0 = __this->___memberType_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970* XmlSchemaInfo_get_SchemaElement_m9E2ACC794E25FE2D5CC3DC433E8E389DE6934DDB_inline (XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* __this, const RuntimeMethod* method)
{
{
XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970* L_0 = __this->___schemaElement_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F* XmlSchemaInfo_get_SchemaAttribute_m7DF2A831CAFA45AEC510A5C538426410AA7A9A49_inline (XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* __this, const RuntimeMethod* method)
{
{
XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F* L_0 = __this->___schemaAttribute_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlSchemaInfo_set_Validity_m21F774F33B817B448E04E511C20E746A107C20FD_inline (XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->___validity_6 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Parser_FinishParsing_m06B8B06E4ABA5BE31AE936826C3E750F84FFC69F_inline (Parser_t5A18E84F88E618D9E803A7768A7765BF17DB2C07* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___schemaType_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlSchema_t5C9506D00418BF5FD524254D0C6C405C620C941D* Parser_get_XmlSchema_mD5A4C6BA4B18957DA23830385DEAD714D09A9D4B_inline (Parser_t5A18E84F88E618D9E803A7768A7765BF17DB2C07* __this, const RuntimeMethod* method)
{
{
XmlSchema_t5C9506D00418BF5FD524254D0C6C405C620C941D* L_0 = __this->___schema_11;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* XsdCachingReader_GetCoreReader_m96B2B679BBB13A94A254F003422ED29780C99431_inline (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, const RuntimeMethod* method)
{
{
XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___coreReader_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* XsdCachingReader_GetLineInfo_m26C8F60794137010483127A2344B5456857FBEA1_inline (XsdCachingReader_t367D521918E08F0DCF8275E20CE35BAEDE54DC43* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___lineInfo_16;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlSchemaElement_get_DefaultValue_mA6F17331F4A7702DE9EB19DE943E43A3EF564766_inline (XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___defaultValue_21;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlSchemaElement_get_FixedValue_mE6E6A8DE76B5B1D53AEBA9A683688D8462D22CE7_inline (XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___fixedValue_22;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlName_get_HashCode_m329A9FEAF3BDEAA5F1F40CB84F7E51E1BDE58B2D_inline (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___hashCode_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___localName_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlName_get_Prefix_m42E3E78749764ECBE9586AFC0FC3EBFD2B7A2E4E_inline (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___prefix_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlName_get_NamespaceURI_mCF07F0E78CAF17DDF53DD8CD44C5D415B4E010D1_inline (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___ns_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlDocument_get_IsLoading_mD97F2D54DE1BD3B4F8B496F4D8D31C061FA8A52D_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___isLoading_20;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* XmlName_get_OwnerDocument_m330FA0574F04486B56352FA1E5F4336890C02A0C_inline (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, const RuntimeMethod* method)
{
{
XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = __this->___ownerDoc_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* XmlDocument_get_DtdSchemaInfo_mF52E9F32AB9D1914DBC6D91A8277AE843B6E1E6E_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method)
{
{
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_0 = __this->___schemaInfo_7;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* XmlElement_get_XmlName_mA93482D1053CABDD02D7E3B23EBA56F74904101D_inline (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method)
{
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = __this->___name_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* XmlAttribute_get_XmlName_m27554E8E37DD8255E54A68102CE270316933FFB9_inline (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method)
{
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = __this->___name_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlDeclaration_set_Version_m0B2CCCDE1930526B6429925E8139340ED17C26D0_inline (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___version_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___version_2), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlDeclaration_get_Version_m50261F1E46B645E69A99504F494FFD3BF915E633_inline (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___version_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlDeclaration_get_Encoding_m09D89DCD8457C62A6E49B9506A65A271DDBD011F_inline (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___encoding_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlDeclaration_get_Standalone_m46CC1833EE3C478318FF865E98A6899E440DDC6C_inline (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___standalone_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* XmlDocument_get_Implementation_m627A29B6D4CA09108F494BBE9AE070155CA6AE10_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method)
{
{
XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* L_0 = __this->___implementation_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlDocument_SetBaseURI_mE44F99B7DFBF6C63E7041125703303F9146C146E_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___inBaseURI0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___inBaseURI0;
__this->___baseURI_37 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___baseURI_37), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlDocumentType_set_DtdSchemaInfo_m6E419933465D42DAB30AD7C6FFF7ACCC6D78A4E6_inline (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* ___value0, const RuntimeMethod* method)
{
{
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_0 = ___value0;
__this->___schemaInfo_9 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___schemaInfo_9), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Dictionary_2_tB85C1B2FFF985BA01AD2B7199C083B43C1476CC1* SchemaElementDecl_get_AttDefs_m2E3114DFAB8D978CBFAA6E31C2CD18A9AA9DAC50_inline (SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* __this, const RuntimeMethod* method)
{
{
Dictionary_2_tB85C1B2FFF985BA01AD2B7199C083B43C1476CC1* L_0 = __this->___attdefs_11;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SchemaDeclBase_get_Presence_mCF2610A186758B71CAFF2FC2586D9B604C2AE539_inline (SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___presence_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* SchemaDeclBase_get_Name_m013DF0DD721FE902399C2DF4D2E6F8DAD50ECFAE_inline (SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B* __this, const RuntimeMethod* method)
{
{
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_0 = __this->___name_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___name_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SchemaInfo_get_SchemaType_m44BE9221A63C4D13AE45A2054A875B533518B0FC_inline (SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___schemaType_11;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___ns_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A* SchemaInfo_get_ElementDecls_m238E5681BECA397E7010F7BEFBAC2D0FBEC43BD7_inline (SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* __this, const RuntimeMethod* method)
{
{
Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A* L_0 = __this->___elementDecls_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlUnspecifiedAttribute_SetSpecified_m1CF67FF3E90E62DC5B0983B8DE91B6E95228509B_inline (XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* __this, bool ___f0, const RuntimeMethod* method)
{
{
bool L_0 = ___f0;
__this->___fSpecified_3 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlDocumentType_get_PublicId_m9E81FAF2D0AA9DC847D118813CBEB085F0CE1955_inline (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___publicId_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlDocumentType_get_SystemId_m17B225C509C0F5A4ECBB838AA81D15DED4016909_inline (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___systemId_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlDocumentType_get_InternalSubset_mBD8D585ED0401EE1FC02F6FD5445E2109B083FEF_inline (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___internalSubset_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* XmlImplementation_get_NameTable_m8951702F59619310BD4A9528D2FF471352518CDF_inline (XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* __this, const RuntimeMethod* method)
{
{
XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_0 = __this->___nameTable_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->___isLoading_20 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlDocument_get_HasSetResolver_m7CBB11C7E27D95CD697F177B965CEB2E1E71358D_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___bSetResolver_39;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* XmlDocument_GetResolver_m0B1F443F2DF5510E0733052D42BC984CB83F9119_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method)
{
{
XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_0 = __this->___resolver_38;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlNodeChangedEventArgs_get_Action_mD307B00A56DE5422A4EE4915400EC966DF80BD04_inline (XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___action_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlNodeChangedEventHandler_Invoke_m64C7CF87945A0BAEFCED39FC27B1D9F2E31C1480_inline (XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* __this, RuntimeObject* ___sender0, XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* ___e1, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* __this, RuntimeObject* ___sender0, XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* ___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 String_t* XmlEntity_get_SystemId_mBD4E3AB5EBAE7C852E533B9E184A316BECF47FA7_inline (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___systemId_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* XmlTextReader_get_Impl_m99AA88D6B2335764B7B4171CCC9D9C77329D72D8_inline (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method)
{
{
XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlReaderSettings_get_ValidationType_mFF201BAC3A2B593BB69E691E0AA3814455185F8A_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___validationType_13;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlDocument_set_Schemas_m434B1F13D18F926E959FCC426F4731C9AC385A3B_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* ___value0, const RuntimeMethod* method)
{
{
XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* L_0 = ___value0;
__this->___schemas_8 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___schemas_8), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlElement_set_XmlName_m15166904F386EAB60030EAB490CC0FD1CB624EFC_inline (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___value0, const RuntimeMethod* method)
{
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = ___value0;
__this->___name_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___name_2), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlAttribute_set_XmlName_m8D259D5CC4750809EACB5E213333E1E55D8BB6BB_inline (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___value0, const RuntimeMethod* method)
{
{
XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = ___value0;
__this->___name_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___name_1), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlDocumentType_get_ParseWithNamespaces_mC391046582C88CDC3C3496E4D2C0827C36D9B324_inline (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___namespaces_6;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlDocument_set_DtdSchemaInfo_m95A0C58965F2B17BDA49D5F4E18304A11EEC7876_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* ___value0, const RuntimeMethod* method)
{
{
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_0 = ___value0;
__this->___schemaInfo_7 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___schemaInfo_7), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* SchemaNotation_get_Name_mF5CA9EBBD17ADAB3A31FC36FDB03B236C4847FCD_inline (SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* __this, const RuntimeMethod* method)
{
{
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_0 = __this->___name_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* SchemaNotation_get_Pubid_m28D7BB40FF192EDC5B5461FBE0FF7E690A3B6BFE_inline (SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___pubid_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* SchemaNotation_get_SystemLiteral_m0E99C9B3C22B1F8535F3C9334B91EEFD0C2F1DF3_inline (SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___systemLiteral_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* SchemaEntity_get_Name_m8A17CC3B68A15DCD4C3ACEC6AE82AB7BF5CDBEAC_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, const RuntimeMethod* method)
{
{
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_0 = __this->___qname_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* SchemaEntity_get_Text_mDCF201E623D7A98F87E859ACDEE9B5B6B4E953AE_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___text_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* SchemaEntity_get_Pubid_m9845E8CD129266AFA62E58F857D88D0941C88C82_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___pubid_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* SchemaEntity_get_Url_m7519C52A444DFD11468483C299A6C9D6A92F1CFB_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___url_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* SchemaEntity_get_NData_m7B05467BF6357AB27C1DAFBFE27F9720C79CEC3C_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, const RuntimeMethod* method)
{
{
XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_0 = __this->___ndata_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlEntity_SetBaseURI_mFEBE0339CA3A522BDC09A278FFBA3A9D77A578B3_inline (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, String_t* ___inBaseURI0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___inBaseURI0;
__this->___baseURI_6 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___baseURI_6), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlDocument_set_Entities_mBBF7C97889080847540A0F31B1751726E81FF756_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* ___value0, const RuntimeMethod* method)
{
{
XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_0 = ___value0;
__this->___entities_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___entities_4), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D* SchemaDeclBase_get_Datatype_mE6DE13C3518B65A1CF6E464F12D7D7653247AF90_inline (SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B* __this, const RuntimeMethod* method)
{
{
XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D* L_0 = __this->___datatype_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* XmlParserContext_get_NamespaceManager_mB51E2BAE011C0C53FB2DF0C9DFF21EA17DCD58B7_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method)
{
{
XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_0 = __this->____nsMgr_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlDocument_get_ActualLoadingStatus_m63B8F5AD9C82FEF1D9EFA47926E4AABED6CD9D99_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___actualLoadingStatus_10;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_DisableUndeclaredEntityCheck_m339683347E0D9F45C31C7602CBAF90F5497CACC5_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->___disableUndeclaredEntityCheck_74 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* XmlDocumentType_get_DtdSchemaInfo_mDF54B3A169B037A8C8A4F186206B143AF3068259_inline (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method)
{
{
SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_0 = __this->___schemaInfo_9;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_BaseURI_m203B1A13A7DFA09528C49D2198E7B9382BA91892_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->____baseURI_8;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_DocTypeName_m8212FEC6DBA21A5B1E95538D40951B1CB0380CF0_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->____docTypeName_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_PublicId_mCE67EDDC8A9D73A0AADB77E0F7CCF53DEB5E300D_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->____pubId_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_SystemId_mB4649C8C6DA52AFC5224E82BBD2B7C7A1D5CCB58_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->____sysId_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_InternalSubset_mDD9703E47510C335AD4940AE7F761F56AA00E9DC_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->____internalSubset_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
if (!true)
{
goto IL_0035;
}
}
{
int32_t L_1 = (int32_t)__this->____size_2;
V_0 = L_1;
__this->____size_2 = 0;
int32_t L_2 = V_0;
if ((((int32_t)L_2) <= ((int32_t)0)))
{
goto IL_003c;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)__this->____items_1;
int32_t L_4 = V_0;
Array_Clear_m48B57EC27CADC3463CA98A33373D557DA587FF1B((RuntimeArray*)L_3, 0, L_4, NULL);
return;
}
IL_0035:
{
__this->____size_2 = 0;
}
IL_003c:
{
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_mB407E755F3B4C51C54D24338D00A352E5B16E7F3_gshared_inline (Enumerator_t44124D16E0B2F7308FF4069BE06369B5A83896EB* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->____currentValue_3;
return L_0;
}
}