#include "pch-cpp.hpp" #ifndef _MSC_VER # include #else # include #endif #include #include #include "mono/ThreadPool/threadpool-ms-io.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 struct VirtualActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template struct VirtualActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template struct VirtualActionInvoker3 { typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; template struct VirtualFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; template struct VirtualFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template struct VirtualFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template struct VirtualFuncInvoker3 { typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; template struct VirtualFuncInvoker4 { typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method); } }; template struct VirtualFuncInvoker5 { typedef R (*Func)(void*, T1, T2, T3, T4, T5, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, 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); } }; template struct GenericVirtualActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template struct GenericVirtualFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; template struct GenericVirtualFuncInvoker3 { typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; template struct GenericVirtualFuncInvoker4 { typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method); } }; struct InterfaceActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template struct InterfaceActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template struct InterfaceActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template struct InterfaceFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; template struct InterfaceFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template struct InterfaceFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template struct InterfaceFuncInvoker3 { typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; template struct InterfaceFuncInvoker4 { typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, 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 struct GenericInterfaceActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template struct GenericInterfaceFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; template struct GenericInterfaceFuncInvoker3 { typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; template struct GenericInterfaceFuncInvoker4 { typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method); } }; // System.Action`1 struct Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t5B8303F2C9869A39ED3E03C0FBB09F817E479402; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t0ACB62D0885C7AB376463C70665400A39808C5FB; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tB758E2A2593CD827EFC041BE1F1BB4B68DE1C3E8; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t0015CBF964B0687CBB5ECFDDE06671A8F3DDE4BC; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB; // System.Func`1> struct Func_1_tA554ECD263DF723DB4D49570AF9703DEC8DE6EE4; // System.Func`1 struct Func_1_t807CEE610086E24A0167BAA97A64062016E09D49; // System.Func`1 struct Func_1_tBCF42601FA307876E83080BE4204110820F8BF3B; // System.Func`2,System.Threading.Tasks.Task`1>> struct Func_2_tEE0B8A4A8105D5AA3534F2D0C4B428045CA296F1; // System.Func`2,System.Threading.Tasks.Task`1> struct Func_2_t7623436E35035C6EE69371DD393976F867BA3ABF; // System.Func`2,System.Threading.Tasks.Task`1> struct Func_2_t83231D2AB79D8A20265500D02AEA10F0531EF5CC; // System.Func`2,System.Threading.Tasks.Task`1> struct Func_2_t53CFE8804C8D1C2FE8CC9204CF5DA5B98EC444D0; // System.Func`2,System.Threading.Tasks.Task`1> struct Func_2_t2C94CFD55C2E528DE57128CD2A37F45F9E914E5C; // System.Func`2> struct Func_2_t722A0F06995E0C53FEEF8E2E44E139CFBE2A81C6; // System.Func`2> struct Func_2_t7257A481AA060D9C75F810267E933801215EB8D4; // System.Func`2 struct Func_2_tFB4752E44FC81929027C0874E2CC5BC203FB9299; // System.Func`2 struct Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C; // System.Func`2 struct Func_2_t060A650AB95DEF14D4F579FA5999ACEFEEE0FD82; // System.Func`2 struct Func_2_t1536C4C0AD9482796F7C72574A4B3DE8607E4E20; // System.Collections.Generic.IList`1 struct IList_1_tB51174A6DE5821B98ECC7865DCD68970EC83EC0F; // System.Collections.Generic.LinkedList`1 struct LinkedList_1_t0AD3FC1D19E68F4B148AFF908DC3719C9B117D92; // System.Predicate`1 struct Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB; // System.Predicate`1 struct Predicate_1_tC0DBBC8498BD1EE6ABFFAA5628024105FA7D11BD; // System.Collections.ObjectModel.ReadOnlyCollection`1 struct ReadOnlyCollection_1_t06CAAF5787D8FDE0CB0F04082673EC9B212451BE; // System.Collections.ObjectModel.ReadOnlyCollection`1 struct ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3; // System.Threading.Tasks.TaskCompletionSource`1> struct TaskCompletionSource_1_tA4F2D12802A86238A6B0FC63EABD6B8063A89649; // System.Threading.Tasks.TaskCompletionSource`1 struct TaskCompletionSource_1_t56125454B9277AE49801F3DF08F7774ED6B499F3; // System.Threading.Tasks.TaskCompletionSource`1 struct TaskCompletionSource_1_tAF27606417C7EB40F6CABFF758970F72CCCB83D5; // System.Threading.Tasks.TaskCompletionSource`1 struct TaskCompletionSource_1_t326763FDCC1EDF46DBC85450D97C3918281217E5; // System.Threading.Tasks.TaskCompletionSource`1 struct TaskCompletionSource_1_tA588E53E06778CC5F619F80119BBF9704F1A73D1; // System.Threading.Tasks.TaskFactory`1> struct TaskFactory_1_t24824C666A75E5C8BF1E87AABAE1801F04F084A2; // System.Threading.Tasks.TaskFactory`1 struct TaskFactory_1_t371B198695EA725C7403DA0852C7CFFEDDD89920; // System.Threading.Tasks.TaskFactory`1 struct TaskFactory_1_t1B64F65F924FFCC928A668B5EF32DEE31478691B; // System.Threading.Tasks.TaskFactory`1 struct TaskFactory_1_tCA6286B86C0D5D6C00D5A0DFE56F7E48A482DD5E; // System.Threading.Tasks.TaskFactory`1 struct TaskFactory_1_t59C1EE1FD5B07F2BEBFFB103A93A760D61A39406; // System.Threading.Tasks.Task`1> struct Task_1_tDEAB8548D192DBB144FB5A8A3D04AD2EEB5E3D13; // System.Threading.Tasks.Task`1> struct Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF; // System.Threading.Tasks.Task`1 struct Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0; // System.Threading.Tasks.Task`1 struct Task_1_t4B8CF50BCA70ADAD54A2813B464DF4A25F896857; // System.Threading.Tasks.Task`1 struct Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725; // System.Threading.Tasks.Task`1 struct Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17; // System.Threading.Tasks.Task`1 struct Task_1_tD1B0194ED507F48DF3A0800F76EE8D318BED147C; // System.Threading.Tasks.Task`1 struct Task_1_t2A3672CB79B7A66967AEB67A7CCF5EA583D25765; // System.Threading.Tasks.Task`1 struct Task_1_t9B51BE1BAD1D5EDAE57D8E4A3D3BD8AB9054E8C6; // System.Int32[][] struct Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF; // System.Attribute[] struct AttributeU5BU5D_t04604A91F55E7DFF76B9AF6150E6597D2EBCDCD4; // System.Byte[] struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726; // System.Char[] struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34; // Mono.Security.Interface.CipherSuiteCode[] struct CipherSuiteCodeU5BU5D_t1F0A013E35A79A56B467224340EFB73B2DA94C7C; // System.Delegate[] struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8; // System.Text.RegularExpressions.Group[] struct GroupU5BU5D_tE125DBFFA979634FDDAEDF77F5EC47134D764AB5; // System.Net.HeaderVariantInfo[] struct HeaderVariantInfoU5BU5D_t2B2BC9A8902A79E1FDEB1889E1F24E78C24FD354; // System.Net.IPAddress[] struct IPAddressU5BU5D_tCB5D2302BEB72DDB30825F9EF457D39EEA5001EB; // System.Int32[] struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32; // System.IntPtr[] struct IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6; // System.ComponentModel.ListSortDescription[] struct ListSortDescriptionU5BU5D_t6165BB474C2E3D97625028AE493FE8C30DE740D2; // System.Object[] struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE; // System.Text.RegularExpressions.Regex[] struct RegexU5BU5D_tA9690D2129825E18F8375CD80C6DF80B7A8320CD; // System.SByte[] struct SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971; // System.String[] struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A; // System.Type[] struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755; // System.UInt16[] struct UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67; // System.Collections.Hashtable/bucket[] struct bucketU5BU5D_tFE956DAEFB1D1C86A13EF247D7367BF60B55E190; // System.Net.WebHeaderCollection/RfcChar[] struct RfcCharU5BU5D_t58A49D25CFFD1B17023C3AD1BE05914C4A3FE8D3; // System.Action struct Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6; // System.AggregateException struct AggregateException_t45A871D3DBDA3E28FBCD8DF21F6772238FC55BD1; // System.ArgumentException struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00; // System.ArgumentNullException struct ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8; // System.Collections.ArrayList struct ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575; // System.Reflection.Assembly struct Assembly_t; // System.AsyncCallback struct AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA; // System.Attribute struct Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71; // System.ComponentModel.AttributeCollection struct AttributeCollection_tF551C6836E2C7F849595B7EFAFDDD0C3A86BA62C; // System.Net.Authorization struct Authorization_t4207BA9B4BECE231F74BE9DBC09952FACFAE81EF; // System.Net.AutoWebProxyScriptEngine struct AutoWebProxyScriptEngine_t66B44494A6732AF45DEE0D36F5B6D15D0D497D4A; // System.ComponentModel.BaseNumberConverter struct BaseNumberConverter_t6CA2001CE79249FCF74FC888710AAD5CA23B748C; // System.Net.BindIPEndPoint struct BindIPEndPoint_t05F17E8ACBB2C324EF8EA367FB2899690F2E0D32; // System.Reflection.Binder struct Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30; // System.Net.BufferOffsetSize struct BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F; // System.Globalization.Calendar struct Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A; // System.Threading.CancellationTokenSource struct CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3; // System.Text.RegularExpressions.Capture struct Capture_t048191E7E0D3177DCD8610E4968075AB41FB91D6; // System.Text.RegularExpressions.CaptureCollection struct CaptureCollection_t40C06BBACB56CDD5F84860FDC1B0C3D8F160DCF9; // System.Globalization.CodePageDataItem struct CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E; // System.Globalization.CompareInfo struct CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9; // System.Collections.Comparer struct Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57; // System.Configuration.ConfigurationElement struct ConfigurationElement_t571C446CFDFF39CF17130653C433786BEFF25DFA; // System.Configuration.ConfigurationPropertyCollection struct ConfigurationPropertyCollection_t8C098DB59DF7BA2C2A71369978F4225B92B2F59B; // System.Reflection.ConstructorInfo struct ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B; // System.Threading.ContextCallback struct ContextCallback_t93707E0430F4FF3E15E1FB5A4844BE89C657AE8B; // System.Net.CookieCollection struct CookieCollection_t2D2FA42D43C1A8053D95FD2205360B2E0B94AF06; // System.Net.CookieContainer struct CookieContainer_tF22AADBBB0BBD4D3FF4440A226F8E8580B08F4C2; // System.Globalization.CultureData struct CultureData_t53CDF1C5F789A28897415891667799420D3C5529; // System.Globalization.CultureInfo struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98; // System.Globalization.DateTimeFormatInfo struct DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90; // System.Text.Decoder struct Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370; // System.Text.DecoderFallback struct DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D; // System.Text.DecoderReplacementFallback struct DecoderReplacementFallback_t8DA345EC4EF3A35A2667365F691EE69408A62130; // System.IO.Compression.DeflateStream struct DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5; // System.IO.Compression.DeflateStreamNative struct DeflateStreamNative_tD3009C913258B881B44A87BC6A99C7118558A879; // System.Delegate struct Delegate_t; // System.DelegateData struct DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288; // System.Net.EmptyWebProxy struct EmptyWebProxy_tBFFA078A103E63530CC4A80AD137D6C8E3A77686; // System.Text.EncoderFallback struct EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4; // System.Text.EncoderReplacementFallback struct EncoderReplacementFallback_t61E36A507D7FA8034B49F86DBE560EC77A6A8418; // System.Text.Encoding struct Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827; // System.Net.EndPoint struct EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA; // System.EventArgs struct EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA; // System.Threading.EventWaitHandle struct EventWaitHandle_t80CDEB33529EF7549E7D3E3B689D8272B9F37F3C; // System.Exception struct Exception_t; // System.Runtime.ExceptionServices.ExceptionDispatchInfo struct ExceptionDispatchInfo_t85442E41DA1485CFF22598AC362EE986DF3CDD09; // System.Text.RegularExpressions.ExclusiveReference struct ExclusiveReference_t7F4A5D2416EA34710F520BAD225E61BC1E98D1D8; // System.Threading.ExecutionContext struct ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414; // System.Reflection.FieldInfo struct FieldInfo_t; // System.IO.FileStream struct FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26; // System.FormatException struct FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759; // System.Net.FtpAsyncResult struct FtpAsyncResult_t224DB9CD548355D326629E3F74E301C502FDCF42; // System.Net.FtpStatus struct FtpStatus_t40908570BA05748EFCA5F4B12F77356A42A40837; // System.Net.FtpWebRequest struct FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D; // System.Net.FtpWebResponse struct FtpWebResponse_t4462ADF9C14124B97DC10705932A9234DACEED49; // System.IO.Compression.GZipStream struct GZipStream_t3C2FE429FBD114B00B7B65623757F5862196B9B6; // System.CodeDom.Compiler.GeneratedCodeAttribute struct GeneratedCodeAttribute_tFAE0CBAC44F15D84CCDFEFACB02A8FEF95B198EF; // System.Text.RegularExpressions.Group struct Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883; // System.Text.RegularExpressions.GroupCollection struct GroupCollection_tAA9CA4E93B1A9D6B7199EE25AEB32922E72AA556; // System.Text.RegularExpressions.GroupEnumerator struct GroupEnumerator_t99051268604236D2D3064D0BDF2D358B42D884CB; // System.ComponentModel.GuidConverter struct GuidConverter_t27D023D55EE237735492E3831AEDE23FD65ACBEB; // System.ComponentModel.HandledEventArgs struct HandledEventArgs_t233C36247A00D894E2DCCAAC168378ED73300150; // System.ComponentModel.HandledEventHandler struct HandledEventHandler_t28A2B5D1C438B57403577D52457CA29231591468; // System.Collections.Hashtable struct Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC; // System.Net.HeaderInfo struct HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2; // System.Net.HeaderInfoTable struct HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4; // System.Net.HeaderParser struct HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD; // System.Net.Configuration.HttpCachePolicyElement struct HttpCachePolicyElement_t9908817A6011A4DDEC3F2B5F1C64A0CBA79B1A23; // System.Net.HttpContinueDelegate struct HttpContinueDelegate_t84ADA70221E0AC5A340AD9D012F81C1683FC240F; // System.Net.Configuration.HttpListenerElement struct HttpListenerElement_t6E336B2902766D07BF1E27F8988D6C6DFEC8ABA4; // System.Net.Configuration.HttpListenerTimeoutsElement struct HttpListenerTimeoutsElement_t44346970BBEEBE94C0112DAFE8A9334C3BE66D7A; // System.Net.HttpRequestCreator struct HttpRequestCreator_t43BC553258C031FFD5AF8A9552EAC1D152215999; // System.Net.HttpWebRequest struct HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A; // System.Net.Configuration.HttpWebRequestElement struct HttpWebRequestElement_t359B9211350C71365139BCC698CCEB140F474F7B; // System.Net.HttpWebResponse struct HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB; // System.Collections.Specialized.HybridDictionary struct HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A; // System.IAsyncResult struct IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370; // System.Runtime.CompilerServices.IAsyncStateMachine struct IAsyncStateMachine_tAE063F84A60E1058FCA4E3EA9F555D3462641F7D; // Mono.Security.Interface.ICertificateValidator struct ICertificateValidator_tFDF5F2F2BBF1F6EE09772244D8D150C6EA143628; // System.Collections.ICollection struct ICollection_tC1E1DED86C0A66845675392606B302452210D5DA; // System.Collections.IComparer struct IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0; // System.Net.ICredentials struct ICredentials_t7F4F7C8E1E36461DC5388554FF404E2203D30C48; // System.Collections.IDictionary struct IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A; // System.Collections.IDictionaryEnumerator struct IDictionaryEnumerator_t8A89A8564EADF5FFB8494092DFED7D7C063F1501; // System.Collections.IEnumerator struct IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105; // System.Collections.IEqualityComparer struct IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68; // System.IFormatProvider struct IFormatProvider_tF2AECC4B14F41D36718920D67F930CED940412DF; // System.Runtime.Serialization.IFormatterConverter struct IFormatterConverter_t2A667D8777429024D8A3CB3D9AE29EA79FEA6176; // System.IOAsyncCallback struct IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E; // System.IOAsyncResult struct IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9; // System.IO.IOException struct IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA; // System.IOSelectorJob struct IOSelectorJob_t684DF541EAF1AB720C017E9DE172EA8168FDBDA9; // System.Net.IPAddress struct IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE; // System.Net.IPEndPoint struct IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E; // System.Net.NetworkInformation.IPGlobalProperties struct IPGlobalProperties_tD2935E387BBC03382D35AD2B6288214CAB4095C5; // System.Net.IPHostEntry struct IPHostEntry_tD787E3A1E0F633AC5A7761921DE4DC2A8EA117AA; // System.ComponentModel.ITypeDescriptorContext struct ITypeDescriptorContext_t54BAF45FE51089E764D7B7ACB9FC8086B4326DF0; // System.Net.IWebProxy struct IWebProxy_t27B6C29F0B62B717A9778AD251E31C21A91C32B3; // System.Configuration.IdnElement struct IdnElement_t6C2600CADE323D1105CE548820AD1D696C46E9EE; // System.Configuration.IgnoreSectionHandler struct IgnoreSectionHandler_t6862843DEA1A377EA94DB541DEFA7814555A5CFB; // System.ComponentModel.ImmutableObjectAttribute struct ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A; // System.ComponentModel.InheritanceAttribute struct InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74; // System.ComponentModel.InitializationEventAttribute struct InitializationEventAttribute_t8EC5F3A9EA61CFFB1C75FBFF2F0366610D1A164B; // System.ComponentModel.InstallerTypeAttribute struct InstallerTypeAttribute_t52B83CBEE3CC5944413BC7C3EC9CA829F4A83A6B; // System.ComponentModel.InstanceCreationEditor struct InstanceCreationEditor_t22B63469633720EF22CB85610016675F525660EF; // System.ComponentModel.Design.Serialization.InstanceDescriptor struct InstanceDescriptor_tC4566EF05EA27C1ADEF2ACC405AA2ADEB7A31C81; // System.ComponentModel.Int16Converter struct Int16Converter_t06F8132C8D9EB4AACD2798F07FF71AA0F4D23363; // System.ComponentModel.Int32Converter struct Int32Converter_t7CB6D229AF03701BFDDC546C8C398AAF320BA094; // System.ComponentModel.Int64Converter struct Int64Converter_t397B7C232C9417FB27D70380FD5C9287819F19F5; // System.Net.InternalException struct InternalException_tC23D90FD6F24F6AFC7163A5F8AF3D4AF817D2184; // System.ComponentModel.InvalidAsynchronousStateException struct InvalidAsynchronousStateException_t17D9B79C66D44A743F58704DA2691E881A3248BB; // System.ComponentModel.InvalidEnumArgumentException struct InvalidEnumArgumentException_t900DF12581D586D2D9538FBB6F568175243D6637; // System.InvalidOperationException struct InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB; // System.InvariantComparer struct InvariantComparer_tE1CE2D4C00592623FA9BCEBA4990245E775A032E; // System.Net.Configuration.Ipv6Element struct Ipv6Element_t6ABD4A6C83A5FBB22931FF90A597DBEFBDCB7B68; // System.Configuration.IriParsingElement struct IriParsingElement_tD8D81BB1733AF891D47F442A1A03AA78FB49B2CE; // System.Net.LazyAsyncResult struct LazyAsyncResult_t4203C3EF8ACCFBDEE0B5209D86AD466A95A36B32; // System.ComponentModel.LicFileLicenseProvider struct LicFileLicenseProvider_t0C159066151EF942824ECDC68036A1F5BBA2E5DF; // System.ComponentModel.License struct License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832; // System.ComponentModel.LicenseContext struct LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF; // System.ComponentModel.LicenseException struct LicenseException_tF6DDD20031120A48931FEA84CC6ACB3D89B612DF; // System.ComponentModel.LicenseManager struct LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A; // System.ComponentModel.LicenseProvider struct LicenseProvider_tBC40978A52764598AA24EC34F19F002CAECD7A10; // System.ComponentModel.LicenseProviderAttribute struct LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B; // System.Net.Sockets.LingerOption struct LingerOption_t4E191E63AB49943D401B71B3E7830E6586CE0E34; // System.ComponentModel.ListBindableAttribute struct ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4; // System.ComponentModel.ListChangedEventArgs struct ListChangedEventArgs_t7E1DD2BB933BE30107C8B95958746E6AF24F6632; // System.ComponentModel.ListChangedEventHandler struct ListChangedEventHandler_t02874ED3C8355742E3E62AED85A53F3140506B8C; // System.Collections.Specialized.ListDictionary struct ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B; // System.ComponentModel.ListSortDescription struct ListSortDescription_t597DE86A6ADC6084FF85967475CBB07B706DF9C7; // System.ComponentModel.ListSortDescriptionCollection struct ListSortDescriptionCollection_tC9C0CEDAF9496F7A1A7E6F665189295CE400F60A; // System.Net.Security.LocalCertSelectionCallback struct LocalCertSelectionCallback_t6BACE61FA922DCD211EDF7331345481DD5D27A2C; // System.Net.Security.LocalCertificateSelectionCallback struct LocalCertificateSelectionCallback_t4115D8E729443BDCD5A5207B9ED63F2A6621D0E1; // System.Configuration.LocalFileSettingsProvider struct LocalFileSettingsProvider_tDF14C43FB5B2E259AA5BDAF236D7ADBDBCF9C289; // System.ComponentModel.LocalizableAttribute struct LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB; // System.ComponentModel.LookupBindingPropertiesAttribute struct LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C; // System.Threading.ManualResetEvent struct ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA; // System.Runtime.InteropServices.MarshalAsAttribute struct MarshalAsAttribute_t1689F84A11C34D0F35491C8F0DA4421467B6EFE6; // System.Text.RegularExpressions.Match struct Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B; // System.Reflection.MemberFilter struct MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81; // System.Reflection.MemberInfo struct MemberInfo_t; // System.IO.MemoryStream struct MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C; // System.Reflection.MethodBase struct MethodBase_t; // System.Reflection.MethodInfo struct MethodInfo_t; // System.Net.NetworkInformation.MibIPGlobalProperties struct MibIPGlobalProperties_t3722DFB852035FAEC93E9F5FDFE3D163653B666B; // System.Net.MonoChunkStream struct MonoChunkStream_t890E01BB394186CFA1A1B92B07A1F996E9A2C9E7; // Mono.Security.Interface.MonoLocalCertificateSelectionCallback struct MonoLocalCertificateSelectionCallback_t4622F0909260C4D909995190EBD3804A1CBE990A; // Mono.Security.Interface.MonoRemoteCertificateValidationCallback struct MonoRemoteCertificateValidationCallback_t2839B48DF46207F939A25D598EE37F40F97CE5CF; // Mono.Security.Interface.MonoTlsProvider struct MonoTlsProvider_tBE72637BEDBD1516A1BC30D94F7159B7289CF0D7; // Mono.Security.Interface.MonoTlsSettings struct MonoTlsSettings_tBDF72C906FE6477EFBA9493F7F5CB5ADE2C80E21; // Mono.Net.Security.MonoTlsStream struct MonoTlsStream_t1CBBE92DE7BA1B432289982184305AF431C01233; // System.Collections.Specialized.NameValueCollection struct NameValueCollection_tE3BED11C58844E8A4D9A74F359692B9A51781B4D; // System.Net.NetworkCredential struct NetworkCredential_t263CA6068540C6DA0E1CDE919BD7A15C28D55686; // System.NotImplementedException struct NotImplementedException_t26260C4EE0444C5FA022994203060B3A42A3ADE6; // System.NotSupportedException struct NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339; // System.Globalization.NumberFormatInfo struct NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D; // System.ObjectDisposedException struct ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A; // System.OperatingSystem struct OperatingSystem_tBB911FE4834884FD79AF78F2B07C19B938491463; // System.Reflection.ParameterInfo struct ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7; // System.IO.PathTooLongException struct PathTooLongException_t117AA1F09A957F54EC7B0F100344E81E82AC71B7; // System.ComponentModel.PropertyDescriptor struct PropertyDescriptor_t851C1421EDEEC6CB7D059D50CF94886ECCA1B22B; // System.Reflection.PropertyInfo struct PropertyInfo_t; // System.Net.ProtocolViolationException struct ProtocolViolationException_tBAAE896920B7768552D235DA44C1F7EACDBF9299; // System.Security.Cryptography.RandomNumberGenerator struct RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50; // System.Text.RegularExpressions.Regex struct Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F; // System.Text.RegularExpressions.RegexCode struct RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5; // System.Text.RegularExpressions.RegexRunnerFactory struct RegexRunnerFactory_tA425EC5DC77FC0AAD86EB116E5483E94679CAA96; // System.Net.Security.RemoteCertificateValidationCallback struct RemoteCertificateValidationCallback_t69AACF4DA933279BC0F7916FB62BC05A5DC5A947; // System.Net.Cache.RequestCacheBinding struct RequestCacheBinding_tE74959972BA5BEBD27642CC91FD5E4A0A6BFA447; // System.Net.Cache.RequestCachePolicy struct RequestCachePolicy_tC080799EE2DA10B7F24B2E69ABBF5636EB2D43ED; // System.Net.Cache.RequestCacheProtocol struct RequestCacheProtocol_tD3294F615CA528D71DE764785CCE49EBBAD3E2A7; // System.ComponentModel.Design.RuntimeLicenseContext struct RuntimeLicenseContext_t38F0BCEF3097D49437450B0D1432588C2E5B1E2A; // Microsoft.Win32.SafeHandles.SafeFileHandle struct SafeFileHandle_tC77A9860A03C31DC46AD2C08EC10EACDC3B7A662; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F; // Microsoft.Win32.SafeHandles.SafeWaitHandle struct SafeWaitHandle_tF37EACEDF9C6F350EB4ABC1E1F869EECB0B5ABB1; // System.Security.SecureString struct SecureString_t19F65D6480BBCE2D5F24F21B7F4E6C7841698D94; // System.Threading.SemaphoreSlim struct SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385; // System.Runtime.Serialization.SerializationInfo struct SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1; // System.Net.ServerCertValidationCallback struct ServerCertValidationCallback_t885D5EF5D7240832CCAD6FA7D59D4ED2DEAAB1FA; // System.Net.ServicePoint struct ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0; // System.Net.ServicePointScheduler struct ServicePointScheduler_t06FFEEFEFBD2B726733E6E27E2529742FA4DB1A7; // System.Configuration.SettingsContext struct SettingsContext_tFA3A44BB61DD49BEFF0C8A07A62692555F7683CF; // System.Configuration.SettingsProperty struct SettingsProperty_t49ABB4711E749EAFCF3CC9B384856DC0517AB516; // System.Configuration.SettingsPropertyCollection struct SettingsPropertyCollection_t8242867D222B3304B7688232FCDE5D3DAA981843; // System.Configuration.SettingsPropertyValue struct SettingsPropertyValue_tFE3AAFDDA784805AD0C54228D8DF83F27F0C3DAA; // System.Configuration.SettingsPropertyValueCollection struct SettingsPropertyValueCollection_t75B7CA0749D399914EB7A894EF753479F4164E73; // System.Text.RegularExpressions.SharedReference struct SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926; // Mono.Globalization.Unicode.SimpleCollator struct SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266; // System.Net.Sockets.Socket struct Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09; // System.Net.SocketAddress struct SocketAddress_tE8FA33C91254662406767AF97518C235382742D3; // System.Net.Sockets.SocketException struct SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88; // System.Globalization.SortVersion struct SortVersion_t4500287E608FE7BBAB01A3AB0F1073F772EF62AA; // System.Threading.Tasks.StackGuard struct StackGuard_t88E1EE4741AD02CA5FEA04A4EB2CC70F230E0E6D; // System.IO.Stream struct Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB; // System.IO.StreamReader struct StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3; // System.String struct String_t; // System.Text.StringBuilder struct StringBuilder_t; // System.Collections.Specialized.StringCollection struct StringCollection_tA998B5DFD2921A16BBD33D32B8F6CCFFCEB6537E; // System.StringComparer struct StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6; // System.Reflection.StrongNameKeyPair struct StrongNameKeyPair_tCA4C0AB8B98C6C03134BC8AB17DD4C76D8091FDF; // System.SystemException struct SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62; // System.Threading.Tasks.Task struct Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60; // System.Threading.Tasks.TaskFactory struct TaskFactory_t22D999A05A967C31A4B5FFBD08864809BF35EA3B; // System.Threading.Tasks.TaskScheduler struct TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D; // System.Globalization.TextInfo struct TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C; // System.Threading.ThreadAbortException struct ThreadAbortException_t16772A32C3654FCFF0399F11874CB783CC51C153; // System.Diagnostics.TraceSwitch struct TraceSwitch_tDDED47C3341F28742AE0F02339112484787F873D; // System.Type struct Type_t; // System.ComponentModel.TypeConverter struct TypeConverter_t004F185B630F00F509F08BD8F8D82471867323B4; // System.Reflection.TypeFilter struct TypeFilter_t8E0AA7E71F2D6695C61A52277E6CF6E49230F2C3; // System.UnauthorizedAccessException struct UnauthorizedAccessException_t737F79AE4901C68E935CD553A20978CEEF44F333; // System.Net.NetworkInformation.UnixIPGlobalProperties struct UnixIPGlobalProperties_t17A56352BFACD974A0828F84CA3424941E39B021; // System.Net.NetworkInformation.UnixNoLibCIPGlobalProperties struct UnixNoLibCIPGlobalProperties_t502C0D31B2B758E43415DE9EAEB6A24B3924355F; // System.Uri struct Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612; // System.UriParser struct UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A; // System.Version struct Version_tBDAEDED25425A1D09910468B8BD1759115646E3C; // System.Void struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5; // System.Threading.WaitCallback struct WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319; // System.Threading.WaitHandle struct WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842; // System.Net.WebCompletionSource struct WebCompletionSource_tF1258B468350A374EC59049FE0E31C7879D6AB1E; // System.Net.WebConnection struct WebConnection_tBFE079FE6CA946AE000FE257DD8FE6F898BB3C88; // System.Net.WebConnectionStream struct WebConnectionStream_t3D04BDBD47522FD7C97ABF7F1B4498F72FA2E918; // System.Net.WebConnectionTunnel struct WebConnectionTunnel_t0DEDF9AB5FFB065A77FAAA0F72C6C4763CDBC925; // System.Net.WebException struct WebException_t824617203133537D3B05BF786C22AECE0E2DBD08; // System.Net.WebHeaderCollection struct WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4; // System.Net.WebOperation struct WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00; // System.Net.WebProxy struct WebProxy_tC96F42021301BBF649AE2A2AF8A58920F5563B6E; // System.Net.WebRequest struct WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E; // System.Net.WebRequestStream struct WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887; // System.Net.WebResponse struct WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0; // System.Net.WebResponseStream struct WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F; // System.Net.NetworkInformation.Win32IPGlobalProperties struct Win32IPGlobalProperties_t44A5F09048FBAA07204FDF98BE8588D70CCBF9F5; // System.Security.Cryptography.X509Certificates.X509Certificate struct X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553; // System.Security.Cryptography.X509Certificates.X509CertificateCollection struct X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B; // System.Security.Cryptography.X509Certificates.X509CertificateImpl struct X509CertificateImpl_t921DFC48C47654AE30F0DABDF84567C95C0B1219; // System.Xml.XmlNode struct XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1; // System.Xml.XmlReader struct XmlReader_tECCB3D8B757F8CE744EF0430F338BEF15E060138; // System.Reflection.Assembly/ResolveEventHolder struct ResolveEventHolder_tA37081FAEBE21D83D216225B4489BA8A37B4E13C; // System.Net.LazyAsyncResult/ThreadContext struct ThreadContext_tB361ABC018EE4C7009FD3A3A5D39D2346A1B5FA3; // System.ComponentModel.LicFileLicenseProvider/LicFileLicense struct LicFileLicense_t48E8BE071EB96D1E15F23A7D51B387776EE73128; // System.Collections.Specialized.ListDictionary/DictionaryNode struct DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89; // System.Collections.Specialized.ListDictionary/NodeEnumerator struct NodeEnumerator_t76D13EB0B0B4D56A1780BBD21073FB65F9C97A7C; // System.Collections.Specialized.ListDictionary/NodeKeyValueCollection struct NodeKeyValueCollection_t2F7684ED43AA56DE152F992016C086757FDEB696; // System.Collections.Specialized.NameObjectCollectionBase/NameObjectEntry struct NameObjectEntry_tB3CCC5A6F04E0522370F45A92233E91A5B9F4C22; // System.IO.Stream/ReadWriteTask struct ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974; // System.Threading.Tasks.Task/ContingentProperties struct ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0; // System.Net.TimerThread/Queue struct Queue_tBA613BE3643BDEB5F58ACBD9BD6499402CA178BB; // System.Uri/UriInfo struct UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45; // System.Net.WebRequest/DesignerWebRequestCreate struct DesignerWebRequestCreate_tC9CEDD13174469ABB2A24A158F14669B05BA262A; // System.Net.WebRequest/WebProxyWrapper struct WebProxyWrapper_tEF5FEF9C3A75F32ABD48893D8B1029B6DB629CEB; IL2CPP_EXTERN_C RuntimeClass* AddressFamily_tFCF4C888B95C069AB2D4720EC8C2E19453C28B33_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AggregateException_t45A871D3DBDA3E28FBCD8DF21F6772238FC55BD1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AsyncTaskMethodBuilder_1_t04278D5078B08CC7E24AFDDAEE48378547262884_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AsyncTaskMethodBuilder_1_t73D9138C5A15D02CE27A5E53B9C8862A8E99880D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AsyncTaskMethodBuilder_1_tC844D2260A71782812AB64F7BF5EDC8C4ED35A75_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AuthenticationManager_t12B1063A3B3145FC13818CAB49FEB75164840AAA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CaseInsensitiveAscii_tE8AAF0B896B91D60F4A8569A7DB4C668204E16EA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CookieCollection_t2D2FA42D43C1A8053D95FD2205360B2E0B94AF06_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DecoderReplacementFallback_t8DA345EC4EF3A35A2667365F691EE69408A62130_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EmptyWebProxy_tBFFA078A103E63530CC4A80AD137D6C8E3A77686_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EncoderReplacementFallback_t61E36A507D7FA8034B49F86DBE560EC77A6A8418_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FieldInfo_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_1_tA554ECD263DF723DB4D49570AF9703DEC8DE6EE4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_2_t722A0F06995E0C53FEEF8E2E44E139CFBE2A81C6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* GZipStream_t3C2FE429FBD114B00B7B65623757F5862196B9B6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* GroupEnumerator_t99051268604236D2D3064D0BDF2D358B42D884CB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* GroupU5BU5D_tE125DBFFA979634FDDAEDF77F5EC47134D764AB5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Guid_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HttpStatusCode_tFCB1BA96A101857DA7C390345DE43B77F9567D98_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HttpVersion_t15E4A5DA9E037A055F4630E01EB12A988915448E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ICredentials_t7F4F7C8E1E36461DC5388554FF404E2203D30C48_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDictionaryEnumerator_t8A89A8564EADF5FFB8494092DFED7D7C063F1501_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IPGlobalProperties_tD2935E387BBC03382D35AD2B6288214CAB4095C5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ITypeResolutionService_t6A46AE5E8B7E7DC2731ED2C8C4C6E62C0DD4112B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IWebProxy_t27B6C29F0B62B717A9778AD251E31C21A91C32B3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InheritanceLevel_tAAECFEC706E84502DA3CCE8B6444FF39C789A7E0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InstallerTypeAttribute_t52B83CBEE3CC5944413BC7C3EC9CA829F4A83A6B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InstanceDescriptor_tC4566EF05EA27C1ADEF2ACC405AA2ADEB7A31C81_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int16_tD0F031114106263BB459DA1F099FF9F42691295A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IntPtr_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvariantComparer_tE1CE2D4C00592623FA9BCEBA4990245E775A032E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* LazyAsyncResult_t4203C3EF8ACCFBDEE0B5209D86AD466A95A36B32_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* LicFileLicense_t48E8BE071EB96D1E15F23A7D51B387776EE73128_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* LicenseException_tF6DDD20031120A48931FEA84CC6ACB3D89B612DF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* LicenseProvider_tBC40978A52764598AA24EC34F19F002CAECD7A10_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ListSortDescription_t597DE86A6ADC6084FF85967475CBB07B706DF9C7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* MethodInfo_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* MibIPGlobalProperties_t3722DFB852035FAEC93E9F5FDFE3D163653B666B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NodeEnumerator_t76D13EB0B0B4D56A1780BBD21073FB65F9C97A7C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NodeKeyValueCollection_t2F7684ED43AA56DE152F992016C086757FDEB696_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NotImplementedException_t26260C4EE0444C5FA022994203060B3A42A3ADE6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PathTooLongException_t117AA1F09A957F54EC7B0F100344E81E82AC71B7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Path_tF1D95B78D57C1C1211BA6633FF2AC22FD6C48921_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PropertyInfo_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ProtocolViolationException_tBAAE896920B7768552D235DA44C1F7EACDBF9299_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RuntimeLicenseContext_t38F0BCEF3097D49437450B0D1432588C2E5B1E2A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ServicePointManager_tD9336F95A52899746A9008AF4A3505363FD2C2AD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SocketAddress_tE8FA33C91254662406767AF97518C235382742D3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringCollection_tA998B5DFD2921A16BBD33D32B8F6CCFFCEB6537E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SystemNetworkCredential_t5AA9DF4B9637633FDABD6B15737AACE6648AC23F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TargetInvocationException_t30F4C50D323F448CD2E08BDB8F47694B08EB354C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ThreadContext_tB361ABC018EE4C7009FD3A3A5D39D2346A1B5FA3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TypeConverter_t004F185B630F00F509F08BD8F8D82471867323B4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TypeDescriptor_t7B173A6626B330AB5B77345C4DE4AB6C7B38CA6F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UnauthorizedAccessException_t737F79AE4901C68E935CD553A20978CEEF44F333_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UnixIPGlobalProperties_t17A56352BFACD974A0828F84CA3424941E39B021_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UnixNoLibCIPGlobalProperties_t502C0D31B2B758E43415DE9EAEB6A24B3924355F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ValidationHelper_tA8573017039D4977E6C232B35AF6B1E51263E62A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* WebExceptionStatus_tF76E8FAA116C43DDF96AF8C8CE2D75C3587F31D9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* WebException_t824617203133537D3B05BF786C22AECE0E2DBD08_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* WebProxyWrapper_tEF5FEF9C3A75F32ABD48893D8B1029B6DB629CEB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Win32IPGlobalProperties_t44A5F09048FBAA07204FDF98BE8588D70CCBF9F5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C String_t* _stringLiteral009CD778B9CB8CEFADF6517ECF6B8C675D6507B5; IL2CPP_EXTERN_C String_t* _stringLiteral015C9226A90A65B547DB1B59894F3908A8F2CC06; IL2CPP_EXTERN_C String_t* _stringLiteral0242F31341D314854DB5EA5749448625B0A0AAE3; IL2CPP_EXTERN_C String_t* _stringLiteral0267B2F3B4BDB5AA8909404FC7AB1094BCFC102B; IL2CPP_EXTERN_C String_t* _stringLiteral0364C72BE904E3ADE54BF5E119AE5118FB40AA1A; IL2CPP_EXTERN_C String_t* _stringLiteral03B0003D0D8E2A8E5362DE99BBEA39EA96A9C3E5; IL2CPP_EXTERN_C String_t* _stringLiteral04799565CD60A911F9CBB57805A3592363822500; IL2CPP_EXTERN_C String_t* _stringLiteral053EEFAEF1C074E36F0A13EAC660D9884666B708; IL2CPP_EXTERN_C String_t* _stringLiteral05ECDE4FA37D99AB9C256356029BDA339AC0909A; IL2CPP_EXTERN_C String_t* _stringLiteral08A450F548521FDFEBA667312F9A431EE34BA178; IL2CPP_EXTERN_C String_t* _stringLiteral093507DEB05FB14DD8659BC619825EC3274FD8C6; IL2CPP_EXTERN_C String_t* _stringLiteral09B11B6CC411D8B9FFB75EAAE9A35B2AF248CE40; IL2CPP_EXTERN_C String_t* _stringLiteral0A50A3D1071CE799296E5CFB761240C5B52DE775; IL2CPP_EXTERN_C String_t* _stringLiteral0BB9AAEC2AAAB32BFE978A4C45400CAF08F6749C; IL2CPP_EXTERN_C String_t* _stringLiteral0D0D0C17BC59054E43F2DF1F9E9184032FBFBF01; IL2CPP_EXTERN_C String_t* _stringLiteral0DD32B18A388C5F1A6BAFD3629759260C61F767C; IL2CPP_EXTERN_C String_t* _stringLiteral0E5584AFF0328C3E9B727CFB3887E9E710B0F53D; IL2CPP_EXTERN_C String_t* _stringLiteral0F4997869821EE2A85E8697700968CDB3A43E09A; IL2CPP_EXTERN_C String_t* _stringLiteral0FA004E16C1F8A76235BDB24ACD45448069285BB; IL2CPP_EXTERN_C String_t* _stringLiteral10C63C8C602DD5E38BE4A758C90EBAC324CD3E69; IL2CPP_EXTERN_C String_t* _stringLiteral11517B6DAFA2A869E55EF38342ABA7263B2D836E; IL2CPP_EXTERN_C String_t* _stringLiteral115207EC26C7407DBAFB2698E0109D3A06E54ADF; IL2CPP_EXTERN_C String_t* _stringLiteral119F0E9F42CFFBE1B27FEC0ECBBE9E085281B880; IL2CPP_EXTERN_C String_t* _stringLiteral124537AF647CA248AF101F80C2722CE993047BFB; IL2CPP_EXTERN_C String_t* _stringLiteral127982D8D48B627D6FEB2E03467C76CE65E3AD8A; IL2CPP_EXTERN_C String_t* _stringLiteral1488F649920198F59A3B53EA7C81503935DEF05E; IL2CPP_EXTERN_C String_t* _stringLiteral14E338D17C42E552FA7AF42CDAE40CA1F0E8A04D; IL2CPP_EXTERN_C String_t* _stringLiteral150A075BFD52624CD8474AD9151762042ECD5E36; IL2CPP_EXTERN_C String_t* _stringLiteral15428EFDE6CBC42BB38ECB1C1ED2BC18985A61C8; IL2CPP_EXTERN_C String_t* _stringLiteral16D46E00A879AD1C9053ED90B4B148D721A45E92; IL2CPP_EXTERN_C String_t* _stringLiteral179A7752540EF152886B7EDDBBEA8F584E6DF2F3; IL2CPP_EXTERN_C String_t* _stringLiteral18F30814AAC5E0346EF626D2C4D69E75BB8092D8; IL2CPP_EXTERN_C String_t* _stringLiteral1930F6D1B07497278FE515B25D6DD211CD6D3C18; IL2CPP_EXTERN_C String_t* _stringLiteral1A7AC5824B83EB5BA5D89B25F18BAE2101E973DA; IL2CPP_EXTERN_C String_t* _stringLiteral1AB43FCBBA222F523FFCE3C9461AAB5D743F76D6; IL2CPP_EXTERN_C String_t* _stringLiteral1AE348EAFA097AB898941EAFE912D711A407DA10; IL2CPP_EXTERN_C String_t* _stringLiteral1B9893826FB5D33BC11AA982B0F748313E2E8AE6; IL2CPP_EXTERN_C String_t* _stringLiteral1C0680A8F698A8F35416CE75A2356C661641B7D9; IL2CPP_EXTERN_C String_t* _stringLiteral1D7DDE0CD98D0546D34DBFE1AA66C5982F4E297B; IL2CPP_EXTERN_C String_t* _stringLiteral1EF3C8F3B0F018FBA2C53A20A7D08610BCC629DD; IL2CPP_EXTERN_C String_t* _stringLiteral1F1F0198EC371523C2BEEAB18E73243B7B5F5D0D; IL2CPP_EXTERN_C String_t* _stringLiteral211A2CDAF615EAE8B65611C744230B2D6943CBDB; IL2CPP_EXTERN_C String_t* _stringLiteral2264BCDAE97447CBA2BF489CDD8241719D321D83; IL2CPP_EXTERN_C String_t* _stringLiteral228835A6E22383C9BC1AAFD065E6D63FA30BF27B; IL2CPP_EXTERN_C String_t* _stringLiteral24D17737E33030C56D2C3E06DB62C278083AA261; IL2CPP_EXTERN_C String_t* _stringLiteral24F45929493475FECA90729BA5EAF2D06F8722A4; IL2CPP_EXTERN_C String_t* _stringLiteral255FE37F496637BC45F444E342969CE065FC90C4; IL2CPP_EXTERN_C String_t* _stringLiteral27F0FFEE5B6CC862A416BEBB70F083B5608654D1; IL2CPP_EXTERN_C String_t* _stringLiteral28D16C61E1BADF2B97B5BFF59E15883298B4F87F; IL2CPP_EXTERN_C String_t* _stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1; IL2CPP_EXTERN_C String_t* _stringLiteral2BB3A73D1E65DCBE7CA53AF078C885143F1E6CB8; IL2CPP_EXTERN_C String_t* _stringLiteral2BF0DF290BFCF779AD20AF65993E83C1BABDE338; IL2CPP_EXTERN_C String_t* _stringLiteral2CBA9DA268DC043D5D48F9B1A91E94AC5F76EAF8; IL2CPP_EXTERN_C String_t* _stringLiteral3015B2A3D39F343DF5439AC8F9FFEFD31A155603; IL2CPP_EXTERN_C String_t* _stringLiteral30615F6D61D6E54ADC19B1094DDA5C74B7ACC426; IL2CPP_EXTERN_C String_t* _stringLiteral32A14D70913B30E357C574C847E795B24E48CAC2; IL2CPP_EXTERN_C String_t* _stringLiteral32AD7C42537BC83D17ED81607E9208D784DC1B19; IL2CPP_EXTERN_C String_t* _stringLiteral32F74DBDB4B5F9723CBC53173B8D121D7C665A46; IL2CPP_EXTERN_C String_t* _stringLiteral3488D135BC095F9C0E239111D4289F524E08D1FC; IL2CPP_EXTERN_C String_t* _stringLiteral34AE52A4D26F1742129FB49939AAFD990890D6C0; IL2CPP_EXTERN_C String_t* _stringLiteral3556155D25CE64C710CC61A8C9D361B08530D364; IL2CPP_EXTERN_C String_t* _stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6; IL2CPP_EXTERN_C String_t* _stringLiteral38E3DBC7FC353425EF3A98DC8DAC6689AF5FD1BE; IL2CPP_EXTERN_C String_t* _stringLiteral39CB21871F9F9FE5AE18BA5E81ED4EC6DADB8E03; IL2CPP_EXTERN_C String_t* _stringLiteral3CC4026FE171927653778424F8334FE664A643C5; IL2CPP_EXTERN_C String_t* _stringLiteral3D98372962A0D30238C43F12D007AFE39E995B24; IL2CPP_EXTERN_C String_t* _stringLiteral3DCC6243286938BE75C3FA773B9BA71160A2E869; IL2CPP_EXTERN_C String_t* _stringLiteral3E025DC7CE823EE2A83000B0781D2CFD5491428B; IL2CPP_EXTERN_C String_t* _stringLiteral3E2494FB2D245D91FF110697DD6EA93C8AD044C7; IL2CPP_EXTERN_C String_t* _stringLiteral3EBDBD8FCA12AE01917E5179BB979BD9077F8144; IL2CPP_EXTERN_C String_t* _stringLiteral3F252CD9ABB957173F446A397727620AD6EB7AF4; IL2CPP_EXTERN_C String_t* _stringLiteral3F4E772B539D89657FE7C8DE5DCFDCCC33401EA6; IL2CPP_EXTERN_C String_t* _stringLiteral4044F71E1BE65840634E2AF1C09536F10DBF2AF5; IL2CPP_EXTERN_C String_t* _stringLiteral41D84AC5D8F16FBF1E5198F982B2A1BC9DA66EEE; IL2CPP_EXTERN_C String_t* _stringLiteral441C41FF6E93EA9C63774CA4F33832FA34B8B88D; IL2CPP_EXTERN_C String_t* _stringLiteral443F4C4E0724E859C348938724B926BE877FC5FE; IL2CPP_EXTERN_C String_t* _stringLiteral453A1400C5EBA45D0DD93B54ED1EC6D42377A4B5; IL2CPP_EXTERN_C String_t* _stringLiteral463E55B684AE43C1A3682F1D7FE7E39DDBC31E3E; IL2CPP_EXTERN_C String_t* _stringLiteral46A01A440913AE3A82489D220ACF899D570C29A7; IL2CPP_EXTERN_C String_t* _stringLiteral46DD4902F5BC2E9726A5B1A359D5C0B80A75E722; IL2CPP_EXTERN_C String_t* _stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8; IL2CPP_EXTERN_C String_t* _stringLiteral47E7DF78FEB33C4D463D475ACA6A5FCA4DE8ACF8; IL2CPP_EXTERN_C String_t* _stringLiteral4818B6292BB54C3BA36849A617241A4C666A6CB8; IL2CPP_EXTERN_C String_t* _stringLiteral48AE4960538AEA6C629E58F3554B6E9A7D26D9E0; IL2CPP_EXTERN_C String_t* _stringLiteral48C75149E263D08DBE3F3CB86DF011FA96C010AF; IL2CPP_EXTERN_C String_t* _stringLiteral4BD4A20D743286D24CF77C38E693ECBCE8CD3A7E; IL2CPP_EXTERN_C String_t* _stringLiteral4C5033300573C261BEFC85B31F928B42D1767A20; IL2CPP_EXTERN_C String_t* _stringLiteral4C69A5ABD36AE74665BC61E90B89CFBA61C28AF8; IL2CPP_EXTERN_C String_t* _stringLiteral4C73B4EBCE2572719BE753027EB684EE61C02458; IL2CPP_EXTERN_C String_t* _stringLiteral4D153D1B8107BF5E8622D18DE35D1E57D568ED30; IL2CPP_EXTERN_C String_t* _stringLiteral4D3FA87AD70FDA38C5DB0AB2E09C2350CF2423AF; IL2CPP_EXTERN_C String_t* _stringLiteral4D964E3542CA396276F7DDCCE27613D982065CFF; IL2CPP_EXTERN_C String_t* _stringLiteral4DD4C5922A070C5C0CE53FC4868A2D61BF64A7C3; IL2CPP_EXTERN_C String_t* _stringLiteral4FB673A2A07C618E01768C6260511A6880551B23; IL2CPP_EXTERN_C String_t* _stringLiteral50E959F3E0EEB3D739AC7919A13BB1F0932B9330; IL2CPP_EXTERN_C String_t* _stringLiteral5295380188F75D696383F8BDB2147F0053791372; IL2CPP_EXTERN_C String_t* _stringLiteral55BBC16A4A40C09B90EAF098D099D3A5F4BC1F86; IL2CPP_EXTERN_C String_t* _stringLiteral55F464F84B19794A979F344758FC55D19045FF02; IL2CPP_EXTERN_C String_t* _stringLiteral564DEEC481C398C29E309566929FA09DD5B3886A; IL2CPP_EXTERN_C String_t* _stringLiteral569045DB02C57E62748D078AAAB3C20AAB0640AB; IL2CPP_EXTERN_C String_t* _stringLiteral56B55F1AE7D34548BDC41081085DD3561CB80578; IL2CPP_EXTERN_C String_t* _stringLiteral57BD43C20A057CCCB23650CB346EACEE7B31AE72; IL2CPP_EXTERN_C String_t* _stringLiteral5B58EBE31E594BF8FA4BEA3CD075473149322B18; IL2CPP_EXTERN_C String_t* _stringLiteral5C5EE883BE58477D29789770C77CED0740EA2109; IL2CPP_EXTERN_C String_t* _stringLiteral5C648DB5BA0DE7A010730BEEDB7FEADB7EB4A556; IL2CPP_EXTERN_C String_t* _stringLiteral5E30C21F5452337FC417E80E84D2E63331BF74BE; IL2CPP_EXTERN_C String_t* _stringLiteral61896E01350C3D7139AB7C79A29A3A8ED072B0C0; IL2CPP_EXTERN_C String_t* _stringLiteral621B7794C716EDA5AB797D46B90903408FBF6D6A; IL2CPP_EXTERN_C String_t* _stringLiteral623ABDA2B6020ABDB503882566B46A83AC6671A6; IL2CPP_EXTERN_C String_t* _stringLiteral62E7D3DB20849B131752FF5F49A8178D44DC3C0F; IL2CPP_EXTERN_C String_t* _stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97; IL2CPP_EXTERN_C String_t* _stringLiteral64A1CC0A14BE815E808E471FD3FD53F985C73688; IL2CPP_EXTERN_C String_t* _stringLiteral670E6E5CD786FBA46F50395F2FE281B1DF2C9985; IL2CPP_EXTERN_C String_t* _stringLiteral67A54AB78AD61DDEB268617E3EE621D1193804DC; IL2CPP_EXTERN_C String_t* _stringLiteral68ACB6B47D3431BDBD286C3153B250E20552A4AD; IL2CPP_EXTERN_C String_t* _stringLiteral68F5F2155935F2EC916877E2EA94C47506F81B20; IL2CPP_EXTERN_C String_t* _stringLiteral69246FD8ECCD71895CF44BE2EB6A80E686C5A018; IL2CPP_EXTERN_C String_t* _stringLiteral6996DC0CC92C7C284749109C7F02D201312B6A5C; IL2CPP_EXTERN_C String_t* _stringLiteral6A1D52382547009AB732F651FE2CA42F1BBA769A; IL2CPP_EXTERN_C String_t* _stringLiteral6CB9B09125F5657D30A7EE432F4D40804A093E7D; IL2CPP_EXTERN_C String_t* _stringLiteral6D2AFE039B56F95142AEA3CAEDF4CDFA030555A5; IL2CPP_EXTERN_C String_t* _stringLiteral6D70AF6CE5201D93C1F33B3E09C323C6D711A6D3; IL2CPP_EXTERN_C String_t* _stringLiteral7145DB000FB7A15A3BC887316484C05C47DF929F; IL2CPP_EXTERN_C String_t* _stringLiteral723026F172D8ABA19C7E032F65CF137A11B4A798; IL2CPP_EXTERN_C String_t* _stringLiteral733B028A6A17EFB43054EA0EC29D81659F2320AB; IL2CPP_EXTERN_C String_t* _stringLiteral754EF6B9499335AFEA7631E06D83DA3C0E7A06F9; IL2CPP_EXTERN_C String_t* _stringLiteral76B42114875193483A08D74CEEFED1552FD328AC; IL2CPP_EXTERN_C String_t* _stringLiteral77A0126B8A4943A5BC6B9D38FDB4A4DF4D2A6EBD; IL2CPP_EXTERN_C String_t* _stringLiteral77ECC8C351E23508E0840DADDC8F41A66A14CAFC; IL2CPP_EXTERN_C String_t* _stringLiteral783C5B36660265F9D49078CA35348CD0ABDD49DF; IL2CPP_EXTERN_C String_t* _stringLiteral7BEFDD0A0757E283E60A94FE124494664FCFAC5D; IL2CPP_EXTERN_C String_t* _stringLiteral7C5B2C0D17D684D4380087821D68BB021A77AA5D; IL2CPP_EXTERN_C String_t* _stringLiteral7C64C2A3947DAB88AA0DB90DD2C01CFEFC41622A; IL2CPP_EXTERN_C String_t* _stringLiteral7DAC516092AE075D549759FBFE57497622D29F15; IL2CPP_EXTERN_C String_t* _stringLiteral8049D653F658649E5B86C363B789CD1A2A2D40A1; IL2CPP_EXTERN_C String_t* _stringLiteral82B4B8E60DCE4DDEE3B897CE36A1EC95687CBF58; IL2CPP_EXTERN_C String_t* _stringLiteral82EA3C9AFC08F0CECEBC1B257606B3106346FCAF; IL2CPP_EXTERN_C String_t* _stringLiteral83682544C2518E15957808301F6AFA81555B7B99; IL2CPP_EXTERN_C String_t* _stringLiteral837AB1353B48531677906AF6731DF5EF5ACDA3F1; IL2CPP_EXTERN_C String_t* _stringLiteral83F0F9FC74A47E5614C31204FEC7074328DABBCB; IL2CPP_EXTERN_C String_t* _stringLiteral842B97533A7EFDCC23A3F8E50B63375B68A5369B; IL2CPP_EXTERN_C String_t* _stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1; IL2CPP_EXTERN_C String_t* _stringLiteral86E7C0314F9CA521BDA0F361B0D90037E62E63C2; IL2CPP_EXTERN_C String_t* _stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D; IL2CPP_EXTERN_C String_t* _stringLiteral893234A48A938BC927582C6857B067656A459E82; IL2CPP_EXTERN_C String_t* _stringLiteral898F62C1CB5B52471F58EE23AAB5BCB055458288; IL2CPP_EXTERN_C String_t* _stringLiteral8A577A5A6848BEDC7A1DBA1211A06E627EEF0057; IL2CPP_EXTERN_C String_t* _stringLiteral8C5B5A80C04C3A4ACA2BEED3EDD587DD1F5398C6; IL2CPP_EXTERN_C String_t* _stringLiteral8D28F1F930CE88A866A5AFD45B7587A776D2A2E5; IL2CPP_EXTERN_C String_t* _stringLiteral8D6DABB36F739F10886513F808FB1CE72EEE5547; IL2CPP_EXTERN_C String_t* _stringLiteral8D741E622C4D977E4E5FB7052339BF32755CA0EE; IL2CPP_EXTERN_C String_t* _stringLiteral9025E40445A14F4ADE59C287F22F93409FEF57BE; IL2CPP_EXTERN_C String_t* _stringLiteral91AF7BC406658352833505726E74AFFBE9F4456D; IL2CPP_EXTERN_C String_t* _stringLiteral9278193EC42D1B0C862FB45D4C3BA7010774B42F; IL2CPP_EXTERN_C String_t* _stringLiteral927EAFE9C1B06D7ACE891E3B23E528655DE51252; IL2CPP_EXTERN_C String_t* _stringLiteral92831A3FADAD854BEDD33A31A9754AEB8E61BACD; IL2CPP_EXTERN_C String_t* _stringLiteral935884DFDF8F8A8A6D67558F0B4C92779D175C75; IL2CPP_EXTERN_C String_t* _stringLiteral9D5A3AE3D2B0B5E5AF5AB489000D9B88FA11E907; IL2CPP_EXTERN_C String_t* _stringLiteral9FF7E1714A1569B390FACA3E974DC3E6F734EE44; IL2CPP_EXTERN_C String_t* _stringLiteralA05C9D1B89012925BAEDD7624001935AA4B5543B; IL2CPP_EXTERN_C String_t* _stringLiteralA49E0D7ABF2BBFCF5C0D687E40C671557E3766C7; IL2CPP_EXTERN_C String_t* _stringLiteralA4B524BA30057D100946AAE80A0CF01DEF5BDEC0; IL2CPP_EXTERN_C String_t* _stringLiteralA4F9C2CEC1279047D9B945B18E0AAECA78865E73; IL2CPP_EXTERN_C String_t* _stringLiteralA60E60EC4C02F596452F32896DDBB76C73DC4BC9; IL2CPP_EXTERN_C String_t* _stringLiteralA62CFA71484048A37C3903DD1A89AD7E6DA67F61; IL2CPP_EXTERN_C String_t* _stringLiteralA7B00F7F25C375B2501A6ADBC86D092B23977085; IL2CPP_EXTERN_C String_t* _stringLiteralAA236E134566FACF682D16CDBC3E2C735E0EF19D; IL2CPP_EXTERN_C String_t* _stringLiteralAA9773D742A5537400CADA67B6444803DEA37180; IL2CPP_EXTERN_C String_t* _stringLiteralAB4A2A1A4E24D5E7EAF8EC59DB9F81A65F47FBB0; IL2CPP_EXTERN_C String_t* _stringLiteralABC27212BEA204D7BA46C192101D57033D602159; IL2CPP_EXTERN_C String_t* _stringLiteralABDF52D360297C3F8D7E4851B2C8262AF0F3CE00; IL2CPP_EXTERN_C String_t* _stringLiteralAD6CD2C36915DEB6A18BCF0F46B294FC1D97072F; IL2CPP_EXTERN_C String_t* _stringLiteralAE0FE550C017CBB356425EAF984EE8AA74DFDCCE; IL2CPP_EXTERN_C String_t* _stringLiteralAFECF3A5E478A812AD9761D0C14980023E407962; IL2CPP_EXTERN_C String_t* _stringLiteralB49BEA8F924DADF63777282F4B1888A5C137DEE3; IL2CPP_EXTERN_C String_t* _stringLiteralB579810D9A136F333128F9E937313B4E0B019571; IL2CPP_EXTERN_C String_t* _stringLiteralB710A3516E150FA663CDCA0C2650AF2BDDE346A2; IL2CPP_EXTERN_C String_t* _stringLiteralB764975C73BFA882AF2146869B213BBDDF06F6E4; IL2CPP_EXTERN_C String_t* _stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED; IL2CPP_EXTERN_C String_t* _stringLiteralB993CE8D5531F2990366A7BFE03339AA151249EC; IL2CPP_EXTERN_C String_t* _stringLiteralBAC2173B4A90E0CCDFDFF632E8EDD9EE26861557; IL2CPP_EXTERN_C String_t* _stringLiteralBB1692DA8ED7544A3193330A7D73D82D06F61206; IL2CPP_EXTERN_C String_t* _stringLiteralBB27FD8C1492058DA5D90548581B4866E1A7D640; IL2CPP_EXTERN_C String_t* _stringLiteralBBC4BD37A426D68F16FC03A3F4AAC387168995BC; IL2CPP_EXTERN_C String_t* _stringLiteralBBF165EA4AF2BA756BC7EA25505B64C36A62BE43; IL2CPP_EXTERN_C String_t* _stringLiteralBCE2798D58FE39F6C63D72D379391EC7F1BE7834; IL2CPP_EXTERN_C String_t* _stringLiteralC123978EE5BDDE00D993F19944BEA3D43008E7E8; IL2CPP_EXTERN_C String_t* _stringLiteralC1915FCF7B20CAD4349E6E7FE115FAB7EE126DDD; IL2CPP_EXTERN_C String_t* _stringLiteralC29FA4DBBBB48AC826C19FA553AB7BEFD13201C8; IL2CPP_EXTERN_C String_t* _stringLiteralC2CB4DD034B3D49AB04CD71C0A7765711136ACA3; IL2CPP_EXTERN_C String_t* _stringLiteralC2CC7AACC16A09D4E080B1F896BFA903A86AFAC4; IL2CPP_EXTERN_C String_t* _stringLiteralC59EA632EEBD5205EC137D1B018FF86AE5FC29F0; IL2CPP_EXTERN_C String_t* _stringLiteralC5C58F9068586CA1F05B25B4DA6A78E7BAA772B7; IL2CPP_EXTERN_C String_t* _stringLiteralC6370F4D10E7342974C38CE91A5C8121AA774FD8; IL2CPP_EXTERN_C String_t* _stringLiteralC758B8CF0FD7E0E94C11A471512F47DC85C293BB; IL2CPP_EXTERN_C String_t* _stringLiteralC925B5DCB35BC93115D9BE312CD3AD130C37575B; IL2CPP_EXTERN_C String_t* _stringLiteralC939E97413EFE99419879B0916E1BE14BAA53F0D; IL2CPP_EXTERN_C String_t* _stringLiteralC94F5AC0843483C42F57211A309E77D97ADE18B1; IL2CPP_EXTERN_C String_t* _stringLiteralCA52E5008EEBDF4E7DA42EF180322C8273112B96; IL2CPP_EXTERN_C String_t* _stringLiteralCB29749D0E878769D7FF81C337E5AEC541C7750A; IL2CPP_EXTERN_C String_t* _stringLiteralCB32D9E79F35FC0C704F70D2D6654422F48F2D7E; IL2CPP_EXTERN_C String_t* _stringLiteralCC5A4102A5DDF34A7044AFF9259491C106ED8FB6; IL2CPP_EXTERN_C String_t* _stringLiteralCC624D1FAF7A8A629CE51F4FE3FFB1FBA27EDF86; IL2CPP_EXTERN_C String_t* _stringLiteralCCA42FF3A79C1E42FD11406835C7F646CD446470; IL2CPP_EXTERN_C String_t* _stringLiteralCCF9B4381E17EB3FA83CA75FC222B202151023BF; IL2CPP_EXTERN_C String_t* _stringLiteralCFE25B37C16B0E4BB7D218D140551332C7027A1D; IL2CPP_EXTERN_C String_t* _stringLiteralD02A34301E6D4991BF9384E388591B78D87B74D5; IL2CPP_EXTERN_C String_t* _stringLiteralD072EB3279517095515F5954E1970330B3A510DC; IL2CPP_EXTERN_C String_t* _stringLiteralD2369AFFF46A363B3E6260B0C136163AF05408A1; IL2CPP_EXTERN_C String_t* _stringLiteralD23E1D8D3BB0A59383DCD9925ED64F3642F85D3F; IL2CPP_EXTERN_C String_t* _stringLiteralD287833BBB7D5D15C278205064EAFF8ECF8A16AA; IL2CPP_EXTERN_C String_t* _stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052; IL2CPP_EXTERN_C String_t* _stringLiteralD325F94C66794EB0B3E8C4CEF310C06AF86E0A6D; IL2CPP_EXTERN_C String_t* _stringLiteralD59231C2422E7B5D41EA371645AFAAA13C6F1F9E; IL2CPP_EXTERN_C String_t* _stringLiteralD69F44EE85E93078FAAAFEAB54A24724D3AC6786; IL2CPP_EXTERN_C String_t* _stringLiteralD83A084C77919D323023FA38BD9EC97511C0C3F1; IL2CPP_EXTERN_C String_t* _stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1; IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; IL2CPP_EXTERN_C String_t* _stringLiteralDA6B345F08D5EDFABC1A4FE87C7580A22CB2C4FB; IL2CPP_EXTERN_C String_t* _stringLiteralDBE75E9321FF5F55580F29826F9C3D7E78AD25BA; IL2CPP_EXTERN_C String_t* _stringLiteralDD6065F6BEE8EC9D2DE042E63D3ABB71AA1D0A38; IL2CPP_EXTERN_C String_t* _stringLiteralDD7A745EDCF0962E7880255CFF586992E8210B7F; IL2CPP_EXTERN_C String_t* _stringLiteralE11D1474ED58671D7630AF4937D80F0F3E7A5896; IL2CPP_EXTERN_C String_t* _stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC; IL2CPP_EXTERN_C String_t* _stringLiteralE31FBB002AD5481E70CB59BB178B49C5B9330F0E; IL2CPP_EXTERN_C String_t* _stringLiteralE38B6A6B7E4DA30BA1533DBC355658B090E943D9; IL2CPP_EXTERN_C String_t* _stringLiteralE40F0638FB44416320D32BC72A6D591325193B9C; IL2CPP_EXTERN_C String_t* _stringLiteralE4280A9011623CB92DF86175E613B75250F81A53; IL2CPP_EXTERN_C String_t* _stringLiteralE4FD92166270752CAF8CD83C4F787558916F3F4C; IL2CPP_EXTERN_C String_t* _stringLiteralE586D26F2F2D2462A182B41FF7B0C66457161A10; IL2CPP_EXTERN_C String_t* _stringLiteralE63C3C7F5D1BA8FF5FE520557DB93719F06BE87A; IL2CPP_EXTERN_C String_t* _stringLiteralE6B69D85FB61842B89C67EF09BA23C056804EF34; IL2CPP_EXTERN_C String_t* _stringLiteralE705C6345C26AF82E64D22DBE44B2A3514F2F06F; IL2CPP_EXTERN_C String_t* _stringLiteralE753A25AE5A1E05C8AD795ADA386236516088D4F; IL2CPP_EXTERN_C String_t* _stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6; IL2CPP_EXTERN_C String_t* _stringLiteralE8258FE4B53775D781FF54E8010D50E54F753759; IL2CPP_EXTERN_C String_t* _stringLiteralE8DE367F5BD9DABB5C2820CA28E33FF70CF3E330; IL2CPP_EXTERN_C String_t* _stringLiteralEF170C3C541112A47757D834CCBAB9C979FF6DDD; IL2CPP_EXTERN_C String_t* _stringLiteralEF66B249911CEEC9157882862B05470085C28541; IL2CPP_EXTERN_C String_t* _stringLiteralF08DE2DA4F18517CA9EB7D620BCE4C585C642D91; IL2CPP_EXTERN_C String_t* _stringLiteralF0ACB78DD0CBEFD7DD81D25C5219DDB4067ECBD2; IL2CPP_EXTERN_C String_t* _stringLiteralF3749A23C5DBC4AC2761D24FC4A3CBA1EBB4B920; IL2CPP_EXTERN_C String_t* _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7; IL2CPP_EXTERN_C String_t* _stringLiteralF3D9848D37659886492A7B82871CF5FF29A443E7; IL2CPP_EXTERN_C String_t* _stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D; IL2CPP_EXTERN_C String_t* _stringLiteralF4C926E25326963C2B7FEF2E308523C33CF6D9F0; IL2CPP_EXTERN_C String_t* _stringLiteralF54F5AD89BFF7ACC574BFC039F72C349137EC667; IL2CPP_EXTERN_C String_t* _stringLiteralF573A277D927617DD82553D63A8E5EC8F6165ECD; IL2CPP_EXTERN_C String_t* _stringLiteralF5BE21E2C6918506BE733726F596D12733E6552D; IL2CPP_EXTERN_C String_t* _stringLiteralF7104A9589FA67ED48B653C3D5283464FCCA722D; IL2CPP_EXTERN_C String_t* _stringLiteralF8E8E3CB7E102B63C5E2F7011280E4E41798F185; IL2CPP_EXTERN_C String_t* _stringLiteralF917CF0F9128CE5E77D7F247C71FFDDF4B752AF0; IL2CPP_EXTERN_C String_t* _stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024; IL2CPP_EXTERN_C String_t* _stringLiteralFAE55AFF6F18607FEDBE2F4C0C6BA4D4F219D504; IL2CPP_EXTERN_C String_t* _stringLiteralFB3E0ED07C46CFF60D19C0C5E71197CD62C54C4D; IL2CPP_EXTERN_C String_t* _stringLiteralFB7BF4A254AD60EE812B91ECBC97ED1A438EEB7F; IL2CPP_EXTERN_C String_t* _stringLiteralFBA7DE9CE5677EA11663546DA9E63CB203A71D1B; IL2CPP_EXTERN_C String_t* _stringLiteralFC7CE1550BE8A973149B3C0EC550C5A65BDD7413; IL2CPP_EXTERN_C String_t* _stringLiteralFC9B4C75B4026AF1BA70A16680CA49724A8B5E88; IL2CPP_EXTERN_C String_t* _stringLiteralFD6612A78B2A0C77E9DC300D4EB64C11094FE01F; IL2CPP_EXTERN_C String_t* _stringLiteralFF1B24927A3EECD0984D30EA640A9B0CBAA6729C; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_Create_m0323F5F458EB90D6A9ACBD8D234274194ED2D6DB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_Create_m2784475EA8D7B60FDAA718B1F44731B600B5BA03_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_Create_mE503CEED7AC730E62009DD49A65125F30077E06D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_Start_TisU3CGetResponseFromDataU3Ed__237_t5060E721E44AB6651008E532D792EE39E62B7820_mBA5C61FD1A74C31D3EE6FFC7572C1D970E27CC42_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_Start_TisU3CMyGetResponseAsyncU3Ed__236_t2A216534B524FE18EECD3B35C67CE5AB4767E7F1_m6082A579E513B450D8B1CF9C33AC310F1DB2E4A7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_Start_TisU3CU3CGetRewriteHandlerU3Eb__263_0U3Ed_tBCD38108B3BEF76B04B459122190CFACB5802BE0_m394A89A63CB8F49CF67A45D6669087E769D8D4BB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_get_Task_m23F8E3E88E9654E0568A88EA9527957BA08D5135_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_get_Task_m28AA925998D7C34C2313A3BC5F4299CCF54828D6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_get_Task_m5DD3A19AD3B8F6F0F0D97C39656E386ECD9D3EF7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* FtpWebResponse_CheckDisposed_m6B801F447BB22BBEE680ABB19D95609A9ED241E2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Func_1_Invoke_mFD9EDC2BD9D6D41ED14BD782562A94A6FE8A001A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Func_1__ctor_m70E48EBD58B772FF497E06B6D00E1E9DD2FD384C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Func_2__ctor_m62E759845593E554996802B482EA6AA05F35E84A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GZipStream_Seek_m6F2A52B29A3B05EA7A152900C9B9CA6659DC1992_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GZipStream_SetLength_mCD9134EF5190975DCEC5B680264D5F91247437FC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GZipStream_ThrowStreamClosedException_mD4D02CC04BEC4DD3D91CFC141C3C9D2D611DF1C8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GZipStream_get_Length_m28EB4F3B6C4226767A0A55004A4F2B5735B97A3C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GZipStream_get_Position_m39192B2AD2E1EA0EBEE91A31737DDC2CDB4E7EE1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GZipStream_set_Position_mE671D3381FB3233B9E2BEF27F750D7415528F8CA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GroupCollection_CopyTo_mEBB026E2CE653D4797B1F3441D3CA1AF2FE4A06E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GroupCollection__ctor_m0E2105EC5E4078F03D98853239AC10219BFAE78B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GroupEnumerator_get_Capture_mA37A878E91115550F8F08147CE2CB6A30EBF602D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Group__ctor_m2EEFD01EAA4B135ED614049B00261D0736EF8107_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GuidConverter_ConvertTo_m3A8F4CFBFB5192B9A30117E004D2A2AC699D9348_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HeaderInfoTable_ParseMultiValue_mE007CE0399B5999CFA8C530CA8AB5B9C17C6564C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HeaderInfoTable_ParseSingleValue_m66383EA99A42C133C63A6568D5BAB52D7A3043DF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpCachePolicyElement_DeserializeElement_mF4643E77A4022FE070F94ED1B1B17BBADB18885F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpCachePolicyElement_Reset_m865F35D77900436D9942AFBB835A0A865B46E1CD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpCachePolicyElement__ctor_m6250E80EBE2A90269CEE9EE57B8A8260894B6BDA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpCachePolicyElement_get_MaximumAge_m2828C14D6F625DBEAFFE05D7B195301E5844998E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpCachePolicyElement_get_MaximumStale_mC7D1DEAF254552DEB3DD907FC936F9661DE168BD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpCachePolicyElement_get_MinimumFresh_m6BE2BE0923F014E6AC4A5634768DB2C1399A2857_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpCachePolicyElement_get_PolicyLevel_m867435106DEEAE671F5578658A8DE5D2FF913EF2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpCachePolicyElement_get_Properties_m81D9E7890BB9DAABE79668CE0A2B425DD670EF46_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpCachePolicyElement_set_MaximumAge_mDAD78C25D9E0F6799FE1F0B4E6410E83A174EAFC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpCachePolicyElement_set_MaximumStale_m61DC99E5BAE2B138C81A1A2F4FEB7907D4740247_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpCachePolicyElement_set_MinimumFresh_mD88DB73C22AFB0FF7BD1E1926FDC409F5A4687F7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpCachePolicyElement_set_PolicyLevel_m23C748B8A95946453BF4D79A4109BC1D06DE39F4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpListenerElement__ctor_m07EEB4A901E39E72D3C3698B4D9452BB2C6A57DD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpListenerElement_get_Properties_mC1FCF8377DB5BBC3CB954EDC82462AF6F4A4D3DC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpListenerElement_get_Timeouts_m142AD8484F67DEF1F2C4777041CA49CA73F2DF4B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpListenerElement_get_UnescapeRequestUrl_m98F847E2F7AE345CAE1024E047A43C9C68C6DB43_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpListenerTimeoutsElement__ctor_m16C746C548DE49C71BF259B7EFF57CA1AE6F035F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpListenerTimeoutsElement_get_DrainEntityBody_m0C13905ECD142260B328AC679C639028ABCF0CE2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpListenerTimeoutsElement_get_EntityBody_m0AC0A46DD745E35BB10FF3BA849F49EC907AC71F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpListenerTimeoutsElement_get_HeaderWait_mDA369F5DC6421A6ACD5F315BCCA063B0B9959FBE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpListenerTimeoutsElement_get_IdleConnection_mF9804AB54FB2942ECB416ECE754AD6841085CB84_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpListenerTimeoutsElement_get_MinSendBytesPerSecond_mF20973CA46DC6087BC7D2B272A2CD06258894F6A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpListenerTimeoutsElement_get_Properties_m60656A26C69B941B335D02349FF02ACCBFD76289_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpListenerTimeoutsElement_get_RequestQueue_mC5356A6CD861680ED3EBFD6F910A000F7C1B780E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpWebRequestElement_PostDeserialize_m252993F14E786E3455180F801EA23679A5558AC5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpWebRequestElement__ctor_m79DE0820C634F3A5744A12F7C8AF81BF6472A803_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpWebRequestElement_get_MaximumErrorResponseLength_m84A35F8FEBFF021FAF2C154567A3A1F273F1270A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpWebRequestElement_get_MaximumResponseHeadersLength_m2BE4D8B587A6703D098C5385C9E8DE784229B053_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpWebRequestElement_get_MaximumUnauthorizedUploadLength_m8491F55CAAB1F6D293CCF484FC31409E644EE7E5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpWebRequestElement_get_Properties_m62B55D3B6F5898FC3E0FC3F79AA51B4D64AA7F2A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpWebRequestElement_get_UseUnsafeHeaderParsing_m4C933ED4CD12B97E3BAFB75B20786BBC6D5D4289_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpWebRequestElement_set_MaximumErrorResponseLength_m305E25C5D704202C722C185E225DA318F9A65BA1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpWebRequestElement_set_MaximumResponseHeadersLength_m247292E55B179DFB563B3F4DFF676106F368005F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpWebRequestElement_set_MaximumUnauthorizedUploadLength_mDE661CFFCECE123AED9DF9ADE90413E5607F903B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpWebRequestElement_set_UseUnsafeHeaderParsing_mE86C23712C1388A8209486169D1F908DC38361CD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpWebRequest_BeginGetResponse_m82884B2FA82ED8A0B6CA3283C8A3EAA20B49ED5A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpWebRequest_CheckRequestStarted_mE63D6C6514D6956B8D1E3D8D027644BB28F77770_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpWebRequest_EndGetResponse_mFD72851FD650800927397100ECD7E8BC55F54682_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpWebRequest_GetResponse_m51A76E6FB272A858DD883E996273A04AE4A39301_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpWebRequest_MyGetResponseAsync_m5A859A0730A22DFA2D6495F46AFABED7AA3000AC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpWebRequest_Redirect_m157E18FBFBCF9B50EC86DFBD6BE6E5AB665FC550_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpWebRequest_RunWithTimeout_TisHttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB_mBAC220A31B5399542C4DA2F36115ADC95E4A3DEC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpWebRequest_SendRequest_mD19869D903F914F762A6C7CAE53A4078FEC94040_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpWebRequest_U3CGetRewriteHandlerU3Eb__263_0_mA36957ACE779C085A46B322E329B88B6E3BF6B48_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpWebRequest__ctor_mA8D0231158E0A31839FDBCF3A4058E12233CC0CA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpWebRequest_set_Connection_mCB2AFC069CE58F31F7F1000A1ADE87E931EA1BF8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpWebRequest_set_ContentLength_mE2A505E5AADB267FDBB776C01BC7D5C79CCB0A2F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpWebRequest_set_Expect_m1027F3D356A5B51E1E3246F02093358AA6114A98_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpWebRequest_set_Host_m3EBF27EB9FF9388DCA96DA8D7D007DE72C43C90C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpWebRequest_set_Method_m5A27BF0559BFF8E1D1E25133E7138FC41B3D6CE4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpWebResponse_CheckDisposed_mEDF7CAD6C09F5858A56F8F1D6192A7501091F72B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HttpWebResponse__ctor_mD26DA915B4BE34BFB9112EBA6E8725B31480BC2A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HybridDictionary_Contains_m4D83965011E01C6992097DD64AC0F5C3C0E2C765_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HybridDictionary_Remove_m291F7859CDCC65FC3CFF0D06D0F4C7A0B5A8D3BD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HybridDictionary_get_Item_m7185EEEAFC226096E70344C925C0E878B6BB355C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* IPAddress_InternalParse_mA345622709EB5B07BB8D50F3E28CB519BB419E26_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* IPAddress_IsLoopback_m3B8891E48F9F68CFF239B71C29E536BE1F5CFA14_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* IPAddress__ctor_m1E185EFDA876C940958AF536535E2E4C16C0D1D2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* IPAddress__ctor_mA672DA31F082CC6E8B10BEC436D94450E630E16F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* IPAddress_get_ScopeId_mEDF9FA0FCEFAC4109AEDAD316DC18C5EE841CE5B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* IPEndPoint_Create_m807F89A5752C1E5F09D1AB32F6E60D243F06398A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* IPEndPoint__ctor_m22783A215BA0B38674F6A6CB6803804268561321_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* IdnElement__ctor_mE5135B17EC5DDC34C316193D07EB237BF54F0682_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* IdnElement_get_Enabled_m58AF91121FC32D7CE21B4946AEB1393A60AA487A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* IdnElement_get_Properties_m4889D429A34E239BF6D968CB8093DA0F7EE7D899_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* IdnElement_set_Enabled_mD9FFFA5F342DD7A41F5B0C53B4270EA6CB2C3225_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* IgnoreSectionHandler_Create_m410522C5AB168AB9F5AEF8179B3AD81FC9089B4A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* IgnoreSectionHandler__ctor_mF19E118D092662032FEA38FA9A311157304FAEBE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InstallerTypeAttribute_get_InstallerType_m10775683A65CBFDEAE4F8F4F97023D0C85217C55_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InstanceDescriptor__ctor_m6DBEE7486D6D8CD230607B73C8BC078F45282E9A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* InternalResources_WinIOError_m709240F7C7166DF0C77EB74F0BDA77F2FE6ABD65_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Ipv6Element__ctor_m028AE74FB04F381B2B9D34FEB50093224820B173_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Ipv6Element_get_Enabled_mEA2799A7DD8993FAFF22F42CB54184D553860997_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Ipv6Element_get_Properties_mD8016B80F04EF4AE6501BD889313DE91D5E00253_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Ipv6Element_set_Enabled_m168D751984A85623BD9CEAA6947421FBB5859474_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* IriHelper_EscapeUnescapeIri_m6CABB7FC44037C0B5C18132AF5D8C55DB5C64444_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* IriParsingElement__ctor_m2C6DF1AF16C66A3599CD45F77C5A798FC76B5077_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* IriParsingElement_get_Enabled_m46A870E4AB8A03047702C11F7947531A3BB01097_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* IriParsingElement_get_Properties_m2CA16026071AB71C91C1F60D9294AB78F6FF3B9C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* IriParsingElement_set_Enabled_mAD4001CBF8A92286C358A716757EEA0F285508A7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2__ctor_m464A96D10BD1A619B4460B46883E3430923B95D2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Key_m1382814B15BCE20E539C28DDCF09B0322D4645B9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Value_m9049D745F37362B8AD0CCA94F08CC18D9A734799_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* LazyAsyncResult_LazilyCreateEvent_m821224E938E16E225251F7CA33A2B146F822D5EC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* LazyAsyncResult_ProtectedInvokeCallback_mB9317AC9B30205D1D84B82F8F4C0674928EFC19E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* LazyAsyncResult_WorkerThreadComplete_m5F2BECD93B121A2BDFBE3AD9C8E60460FA1C7ACC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* LicenseException_GetObjectData_mB40E9E9B1518FA82D6B63B5C96AC873D5080F33A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* LicenseManager_CreateWithContext_m8C5B9B0671D943B516B93935938766FBBF0429B3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* LicenseManager_LockContext_mBE27047F427EA27048552745DE05BEF500523A57_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* LicenseManager_UnlockContext_mA44BC1596521A5C16075490C731CD10D3FAE731F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* LicenseManager_Validate_mABEFFC1861E112C1469F1EAACFE676F0F73F120E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* LicenseManager_Validate_mD446D6D3C1F5C8E10C7F2184F5A6A301EDDDF2E0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* LicenseManager_set_CurrentContext_m16A96AEE43F9CBC1868E29AD301ED0E531C326EF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* LicenseProviderAttribute_get_LicenseProvider_m458ACC093F592CD53B7D78A12CCCD3ECA0818143_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ListDictionary_Add_mD622807A74E5FF8AF27DFF445307D81DFCFADB28_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ListDictionary_Contains_m06D47395FA7A1B7379C8BBFD38D7A8CFEB721D08_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ListDictionary_CopyTo_mBF4FD9B59407ABF719E2565E788A2DC9A4769564_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ListDictionary_Remove_mD8EE339742816A3140A4FF43174AEDB7648BA8AC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ListDictionary_get_Item_m234AF1C6B763954DA1EC8BD5C74BA2D16E8D74DC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ListDictionary_set_Item_m68050184A6FE6BB7B33891F19FE8D87D458499AD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ListSortDescriptionCollection_System_Collections_IList_Add_m81DB69544D5B7CA589D38EFA21BC42C0C09B472D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ListSortDescriptionCollection_System_Collections_IList_Clear_mFF081B4F34EA4A26D988AC7EE415A88F0D5AC657_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ListSortDescriptionCollection_System_Collections_IList_Insert_mD3A0DF5E9FD8BC7B7910D3531FF6E8EA602EFFC0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ListSortDescriptionCollection_System_Collections_IList_RemoveAt_m10BDD6ABD60CD2AD7D79657F243392C016EDFF5F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ListSortDescriptionCollection_System_Collections_IList_Remove_m84848E3C036323FEE41A57B7BBD3D285AC1C48DE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ListSortDescriptionCollection_System_Collections_IList_set_Item_m3681EF06837900D7E1F2F2AAFB1E71D8D1CE8A28_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ListSortDescriptionCollection_set_Item_mF2EAB445FA2587C839162D2ED8B798757D6217F1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* LocalFileSettingsProvider_GetPreviousVersion_m8508225F1817DC1FECA1717DF962894673164E83_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* LocalFileSettingsProvider_GetPropertyValues_mBE5DAB07691E49F9FDE57E19755515784969412F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* LocalFileSettingsProvider_Initialize_m72AB532D83499AA1C982C094C2F2AD0BEC3C644C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* LocalFileSettingsProvider_Reset_m508278E0F5397A6B20E78D79CA5DC09E95EC2E28_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* LocalFileSettingsProvider_SetPropertyValues_mE2C425F4665387D0D7830CB2687E77BFF50F97DF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* LocalFileSettingsProvider_Upgrade_mD69BB0E54B364B686B0BE5859862B43068CCC6C5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* LocalFileSettingsProvider__ctor_m5AFB01578E3CE582354E9D08E9A252365B0F0AF2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* LocalFileSettingsProvider_get_ApplicationName_mDDF11AA7035BA0B8232C275540FC01E46D460AE4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* LocalFileSettingsProvider_set_ApplicationName_mEEF12CA5D2FDA035832BD4CA5CF6679B49A5915D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyCollection_1_get_Count_m95D66C3D4F27B0911596D60D79CFA46BFEA96F97_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TaskToApm_End_TisHttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB_mAE705CE8DA50B91ADA5F1CAA04A054F666C084A5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TaskToApm_End_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m94BEE28ADAAC7223EE34485FD592C44F0EBC36B4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_get_Result_m8A2AACA33ADC6E785A413B31CF8D4BB3BDAC07F1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_FromResult_TisBufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F_m4C83A1CC72A6604BB7D0018D55A4718AB48C8E3E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Type_GetType_m2D692327E10692E11116805CC604CD47F144A9E4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_2__ctor_m94864A1292FF05A543AF60D5B4B030C91C09B5DC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_2__ctor_mFF98EA786F5E638ADF3425C005884F10344AF6B7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_4__ctor_m4C3944E2195833C5FFE382F82C1A088A4378AE6B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeType* CookieCollection_t2D2FA42D43C1A8053D95FD2205360B2E0B94AF06_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Guid_t_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* HttpStatusCode_tFCB1BA96A101857DA7C390345DE43B77F9567D98_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* ITypeResolutionService_t6A46AE5E8B7E7DC2731ED2C8C4C6E62C0DD4112B_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* IWebProxy_t27B6C29F0B62B717A9778AD251E31C21A91C32B3_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* InheritanceLevel_tAAECFEC706E84502DA3CCE8B6444FF39C789A7E0_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* InstanceDescriptor_tC4566EF05EA27C1ADEF2ACC405AA2ADEB7A31C81_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Int16_tD0F031114106263BB459DA1F099FF9F42691295A_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* LicenseInteropHelper_tEDD804F7CC1046A0C8AA83E95AFB6FD421D0B154_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* RuntimeObject_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* String_t_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Type_t_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B_0_0_0_var; struct Assembly_t_marshaled_com; struct Assembly_t_marshaled_pinvoke; struct CultureData_t53CDF1C5F789A28897415891667799420D3C5529_marshaled_com; struct CultureData_t53CDF1C5F789A28897415891667799420D3C5529_marshaled_pinvoke; struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_com; struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_pinvoke; struct Delegate_t_marshaled_com; struct Delegate_t_marshaled_pinvoke; struct Exception_t_marshaled_com; struct Exception_t_marshaled_pinvoke; struct IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9;; struct IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9_marshaled_com; struct IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9_marshaled_com;; struct IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9_marshaled_pinvoke; struct IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9_marshaled_pinvoke;; struct Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF; struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726; struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34; struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8; struct GroupU5BU5D_tE125DBFFA979634FDDAEDF77F5EC47134D764AB5; struct HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653; struct IPAddressU5BU5D_tCB5D2302BEB72DDB30825F9EF457D39EEA5001EB; struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32; struct Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6; struct ListSortDescriptionU5BU5D_t6165BB474C2E3D97625028AE493FE8C30DE740D2; struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE; struct ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B; struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A; struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755; struct UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67; IL2CPP_EXTERN_C_BEGIN IL2CPP_EXTERN_C_END #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Object // System.Collections.ObjectModel.ReadOnlyCollection`1 struct ReadOnlyCollection_1_t06CAAF5787D8FDE0CB0F04082673EC9B212451BE : public RuntimeObject { public: // System.Collections.Generic.IList`1 System.Collections.ObjectModel.ReadOnlyCollection`1::list RuntimeObject* ___list_0; // System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot RuntimeObject * ____syncRoot_1; public: inline static int32_t get_offset_of_list_0() { return static_cast(offsetof(ReadOnlyCollection_1_t06CAAF5787D8FDE0CB0F04082673EC9B212451BE, ___list_0)); } inline RuntimeObject* get_list_0() const { return ___list_0; } inline RuntimeObject** get_address_of_list_0() { return &___list_0; } inline void set_list_0(RuntimeObject* value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of__syncRoot_1() { return static_cast(offsetof(ReadOnlyCollection_1_t06CAAF5787D8FDE0CB0F04082673EC9B212451BE, ____syncRoot_1)); } inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; } inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; } inline void set__syncRoot_1(RuntimeObject * value) { ____syncRoot_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_1), (void*)value); } }; struct Il2CppArrayBounds; // System.Array // System.Collections.ArrayList struct ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 : public RuntimeObject { public: // System.Object[] System.Collections.ArrayList::_items ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____items_0; // System.Int32 System.Collections.ArrayList::_size int32_t ____size_1; // System.Int32 System.Collections.ArrayList::_version int32_t ____version_2; // System.Object System.Collections.ArrayList::_syncRoot RuntimeObject * ____syncRoot_3; public: inline static int32_t get_offset_of__items_0() { return static_cast(offsetof(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575, ____items_0)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__items_0() const { return ____items_0; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__items_0() { return &____items_0; } inline void set__items_0(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ____items_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_0), (void*)value); } inline static int32_t get_offset_of__size_1() { return static_cast(offsetof(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575, ____size_1)); } inline int32_t get__size_1() const { return ____size_1; } inline int32_t* get_address_of__size_1() { return &____size_1; } inline void set__size_1(int32_t value) { ____size_1 = value; } inline static int32_t get_offset_of__version_2() { return static_cast(offsetof(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575, ____version_2)); } inline int32_t get__version_2() const { return ____version_2; } inline int32_t* get_address_of__version_2() { return &____version_2; } inline void set__version_2(int32_t value) { ____version_2 = value; } inline static int32_t get_offset_of__syncRoot_3() { return static_cast(offsetof(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575, ____syncRoot_3)); } inline RuntimeObject * get__syncRoot_3() const { return ____syncRoot_3; } inline RuntimeObject ** get_address_of__syncRoot_3() { return &____syncRoot_3; } inline void set__syncRoot_3(RuntimeObject * value) { ____syncRoot_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_3), (void*)value); } }; struct ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_StaticFields { public: // System.Object[] System.Collections.ArrayList::emptyArray ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___emptyArray_4; public: inline static int32_t get_offset_of_emptyArray_4() { return static_cast(offsetof(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_StaticFields, ___emptyArray_4)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_emptyArray_4() const { return ___emptyArray_4; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_emptyArray_4() { return &___emptyArray_4; } inline void set_emptyArray_4(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ___emptyArray_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___emptyArray_4), (void*)value); } }; // System.Attribute struct Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 : public RuntimeObject { public: public: }; // System.Net.Authorization struct Authorization_t4207BA9B4BECE231F74BE9DBC09952FACFAE81EF : public RuntimeObject { public: // System.String System.Net.Authorization::m_Message String_t* ___m_Message_0; // System.Boolean System.Net.Authorization::m_Complete bool ___m_Complete_1; // System.String System.Net.Authorization::ModuleAuthenticationType String_t* ___ModuleAuthenticationType_2; public: inline static int32_t get_offset_of_m_Message_0() { return static_cast(offsetof(Authorization_t4207BA9B4BECE231F74BE9DBC09952FACFAE81EF, ___m_Message_0)); } inline String_t* get_m_Message_0() const { return ___m_Message_0; } inline String_t** get_address_of_m_Message_0() { return &___m_Message_0; } inline void set_m_Message_0(String_t* value) { ___m_Message_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Message_0), (void*)value); } inline static int32_t get_offset_of_m_Complete_1() { return static_cast(offsetof(Authorization_t4207BA9B4BECE231F74BE9DBC09952FACFAE81EF, ___m_Complete_1)); } inline bool get_m_Complete_1() const { return ___m_Complete_1; } inline bool* get_address_of_m_Complete_1() { return &___m_Complete_1; } inline void set_m_Complete_1(bool value) { ___m_Complete_1 = value; } inline static int32_t get_offset_of_ModuleAuthenticationType_2() { return static_cast(offsetof(Authorization_t4207BA9B4BECE231F74BE9DBC09952FACFAE81EF, ___ModuleAuthenticationType_2)); } inline String_t* get_ModuleAuthenticationType_2() const { return ___ModuleAuthenticationType_2; } inline String_t** get_address_of_ModuleAuthenticationType_2() { return &___ModuleAuthenticationType_2; } inline void set_ModuleAuthenticationType_2(String_t* value) { ___ModuleAuthenticationType_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___ModuleAuthenticationType_2), (void*)value); } }; // System.Net.BufferOffsetSize struct BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F : public RuntimeObject { public: // System.Byte[] System.Net.BufferOffsetSize::Buffer ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___Buffer_0; // System.Int32 System.Net.BufferOffsetSize::Offset int32_t ___Offset_1; // System.Int32 System.Net.BufferOffsetSize::Size int32_t ___Size_2; public: inline static int32_t get_offset_of_Buffer_0() { return static_cast(offsetof(BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F, ___Buffer_0)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_Buffer_0() const { return ___Buffer_0; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_Buffer_0() { return &___Buffer_0; } inline void set_Buffer_0(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___Buffer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Buffer_0), (void*)value); } inline static int32_t get_offset_of_Offset_1() { return static_cast(offsetof(BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F, ___Offset_1)); } inline int32_t get_Offset_1() const { return ___Offset_1; } inline int32_t* get_address_of_Offset_1() { return &___Offset_1; } inline void set_Offset_1(int32_t value) { ___Offset_1 = value; } inline static int32_t get_offset_of_Size_2() { return static_cast(offsetof(BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F, ___Size_2)); } inline int32_t get_Size_2() const { return ___Size_2; } inline int32_t* get_address_of_Size_2() { return &___Size_2; } inline void set_Size_2(int32_t value) { ___Size_2 = value; } }; // System.Text.RegularExpressions.Capture struct Capture_t048191E7E0D3177DCD8610E4968075AB41FB91D6 : public RuntimeObject { public: // System.String System.Text.RegularExpressions.Capture::_text String_t* ____text_0; // System.Int32 System.Text.RegularExpressions.Capture::_index int32_t ____index_1; // System.Int32 System.Text.RegularExpressions.Capture::_length int32_t ____length_2; public: inline static int32_t get_offset_of__text_0() { return static_cast(offsetof(Capture_t048191E7E0D3177DCD8610E4968075AB41FB91D6, ____text_0)); } inline String_t* get__text_0() const { return ____text_0; } inline String_t** get_address_of__text_0() { return &____text_0; } inline void set__text_0(String_t* value) { ____text_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____text_0), (void*)value); } inline static int32_t get_offset_of__index_1() { return static_cast(offsetof(Capture_t048191E7E0D3177DCD8610E4968075AB41FB91D6, ____index_1)); } inline int32_t get__index_1() const { return ____index_1; } inline int32_t* get_address_of__index_1() { return &____index_1; } inline void set__index_1(int32_t value) { ____index_1 = value; } inline static int32_t get_offset_of__length_2() { return static_cast(offsetof(Capture_t048191E7E0D3177DCD8610E4968075AB41FB91D6, ____length_2)); } inline int32_t get__length_2() const { return ____length_2; } inline int32_t* get_address_of__length_2() { return &____length_2; } inline void set__length_2(int32_t value) { ____length_2 = value; } }; // System.Net.CaseInsensitiveAscii struct CaseInsensitiveAscii_tE8AAF0B896B91D60F4A8569A7DB4C668204E16EA : public RuntimeObject { public: public: }; struct CaseInsensitiveAscii_tE8AAF0B896B91D60F4A8569A7DB4C668204E16EA_StaticFields { public: // System.Net.CaseInsensitiveAscii System.Net.CaseInsensitiveAscii::StaticInstance CaseInsensitiveAscii_tE8AAF0B896B91D60F4A8569A7DB4C668204E16EA * ___StaticInstance_0; // System.Byte[] System.Net.CaseInsensitiveAscii::AsciiToLower ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___AsciiToLower_1; public: inline static int32_t get_offset_of_StaticInstance_0() { return static_cast(offsetof(CaseInsensitiveAscii_tE8AAF0B896B91D60F4A8569A7DB4C668204E16EA_StaticFields, ___StaticInstance_0)); } inline CaseInsensitiveAscii_tE8AAF0B896B91D60F4A8569A7DB4C668204E16EA * get_StaticInstance_0() const { return ___StaticInstance_0; } inline CaseInsensitiveAscii_tE8AAF0B896B91D60F4A8569A7DB4C668204E16EA ** get_address_of_StaticInstance_0() { return &___StaticInstance_0; } inline void set_StaticInstance_0(CaseInsensitiveAscii_tE8AAF0B896B91D60F4A8569A7DB4C668204E16EA * value) { ___StaticInstance_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___StaticInstance_0), (void*)value); } inline static int32_t get_offset_of_AsciiToLower_1() { return static_cast(offsetof(CaseInsensitiveAscii_tE8AAF0B896B91D60F4A8569A7DB4C668204E16EA_StaticFields, ___AsciiToLower_1)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_AsciiToLower_1() const { return ___AsciiToLower_1; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_AsciiToLower_1() { return &___AsciiToLower_1; } inline void set_AsciiToLower_1(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___AsciiToLower_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___AsciiToLower_1), (void*)value); } }; // System.Collections.CollectionBase struct CollectionBase_tE5EF6826359F7FAC04D2F5E8AB93E1363A5826EB : public RuntimeObject { public: // System.Collections.ArrayList System.Collections.CollectionBase::list ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___list_0; public: inline static int32_t get_offset_of_list_0() { return static_cast(offsetof(CollectionBase_tE5EF6826359F7FAC04D2F5E8AB93E1363A5826EB, ___list_0)); } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * get_list_0() const { return ___list_0; } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } }; // System.Collections.Comparer struct Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 : public RuntimeObject { public: // System.Globalization.CompareInfo System.Collections.Comparer::m_compareInfo CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * ___m_compareInfo_0; public: inline static int32_t get_offset_of_m_compareInfo_0() { return static_cast(offsetof(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57, ___m_compareInfo_0)); } inline CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * get_m_compareInfo_0() const { return ___m_compareInfo_0; } inline CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 ** get_address_of_m_compareInfo_0() { return &___m_compareInfo_0; } inline void set_m_compareInfo_0(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * value) { ___m_compareInfo_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_compareInfo_0), (void*)value); } }; struct Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields { public: // System.Collections.Comparer System.Collections.Comparer::Default Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * ___Default_1; // System.Collections.Comparer System.Collections.Comparer::DefaultInvariant Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * ___DefaultInvariant_2; public: inline static int32_t get_offset_of_Default_1() { return static_cast(offsetof(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields, ___Default_1)); } inline Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * get_Default_1() const { return ___Default_1; } inline Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 ** get_address_of_Default_1() { return &___Default_1; } inline void set_Default_1(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * value) { ___Default_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Default_1), (void*)value); } inline static int32_t get_offset_of_DefaultInvariant_2() { return static_cast(offsetof(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields, ___DefaultInvariant_2)); } inline Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * get_DefaultInvariant_2() const { return ___DefaultInvariant_2; } inline Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 ** get_address_of_DefaultInvariant_2() { return &___DefaultInvariant_2; } inline void set_DefaultInvariant_2(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * value) { ___DefaultInvariant_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___DefaultInvariant_2), (void*)value); } }; // System.Configuration.ConfigurationElement struct ConfigurationElement_t571C446CFDFF39CF17130653C433786BEFF25DFA : public RuntimeObject { public: public: }; // System.Configuration.ConfigurationPropertyCollection struct ConfigurationPropertyCollection_t8C098DB59DF7BA2C2A71369978F4225B92B2F59B : public RuntimeObject { public: public: }; // System.Net.CookieContainer struct CookieContainer_tF22AADBBB0BBD4D3FF4440A226F8E8580B08F4C2 : public RuntimeObject { public: // System.Collections.Hashtable System.Net.CookieContainer::m_domainTable Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___m_domainTable_1; // System.Int32 System.Net.CookieContainer::m_maxCookieSize int32_t ___m_maxCookieSize_2; // System.Int32 System.Net.CookieContainer::m_maxCookies int32_t ___m_maxCookies_3; // System.Int32 System.Net.CookieContainer::m_maxCookiesPerDomain int32_t ___m_maxCookiesPerDomain_4; // System.Int32 System.Net.CookieContainer::m_count int32_t ___m_count_5; // System.String System.Net.CookieContainer::m_fqdnMyDomain String_t* ___m_fqdnMyDomain_6; public: inline static int32_t get_offset_of_m_domainTable_1() { return static_cast(offsetof(CookieContainer_tF22AADBBB0BBD4D3FF4440A226F8E8580B08F4C2, ___m_domainTable_1)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_m_domainTable_1() const { return ___m_domainTable_1; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_m_domainTable_1() { return &___m_domainTable_1; } inline void set_m_domainTable_1(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___m_domainTable_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_domainTable_1), (void*)value); } inline static int32_t get_offset_of_m_maxCookieSize_2() { return static_cast(offsetof(CookieContainer_tF22AADBBB0BBD4D3FF4440A226F8E8580B08F4C2, ___m_maxCookieSize_2)); } inline int32_t get_m_maxCookieSize_2() const { return ___m_maxCookieSize_2; } inline int32_t* get_address_of_m_maxCookieSize_2() { return &___m_maxCookieSize_2; } inline void set_m_maxCookieSize_2(int32_t value) { ___m_maxCookieSize_2 = value; } inline static int32_t get_offset_of_m_maxCookies_3() { return static_cast(offsetof(CookieContainer_tF22AADBBB0BBD4D3FF4440A226F8E8580B08F4C2, ___m_maxCookies_3)); } inline int32_t get_m_maxCookies_3() const { return ___m_maxCookies_3; } inline int32_t* get_address_of_m_maxCookies_3() { return &___m_maxCookies_3; } inline void set_m_maxCookies_3(int32_t value) { ___m_maxCookies_3 = value; } inline static int32_t get_offset_of_m_maxCookiesPerDomain_4() { return static_cast(offsetof(CookieContainer_tF22AADBBB0BBD4D3FF4440A226F8E8580B08F4C2, ___m_maxCookiesPerDomain_4)); } inline int32_t get_m_maxCookiesPerDomain_4() const { return ___m_maxCookiesPerDomain_4; } inline int32_t* get_address_of_m_maxCookiesPerDomain_4() { return &___m_maxCookiesPerDomain_4; } inline void set_m_maxCookiesPerDomain_4(int32_t value) { ___m_maxCookiesPerDomain_4 = value; } inline static int32_t get_offset_of_m_count_5() { return static_cast(offsetof(CookieContainer_tF22AADBBB0BBD4D3FF4440A226F8E8580B08F4C2, ___m_count_5)); } inline int32_t get_m_count_5() const { return ___m_count_5; } inline int32_t* get_address_of_m_count_5() { return &___m_count_5; } inline void set_m_count_5(int32_t value) { ___m_count_5 = value; } inline static int32_t get_offset_of_m_fqdnMyDomain_6() { return static_cast(offsetof(CookieContainer_tF22AADBBB0BBD4D3FF4440A226F8E8580B08F4C2, ___m_fqdnMyDomain_6)); } inline String_t* get_m_fqdnMyDomain_6() const { return ___m_fqdnMyDomain_6; } inline String_t** get_address_of_m_fqdnMyDomain_6() { return &___m_fqdnMyDomain_6; } inline void set_m_fqdnMyDomain_6(String_t* value) { ___m_fqdnMyDomain_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_fqdnMyDomain_6), (void*)value); } }; struct CookieContainer_tF22AADBBB0BBD4D3FF4440A226F8E8580B08F4C2_StaticFields { public: // System.Net.HeaderVariantInfo[] System.Net.CookieContainer::HeaderInfo HeaderVariantInfoU5BU5D_t2B2BC9A8902A79E1FDEB1889E1F24E78C24FD354* ___HeaderInfo_0; public: inline static int32_t get_offset_of_HeaderInfo_0() { return static_cast(offsetof(CookieContainer_tF22AADBBB0BBD4D3FF4440A226F8E8580B08F4C2_StaticFields, ___HeaderInfo_0)); } inline HeaderVariantInfoU5BU5D_t2B2BC9A8902A79E1FDEB1889E1F24E78C24FD354* get_HeaderInfo_0() const { return ___HeaderInfo_0; } inline HeaderVariantInfoU5BU5D_t2B2BC9A8902A79E1FDEB1889E1F24E78C24FD354** get_address_of_HeaderInfo_0() { return &___HeaderInfo_0; } inline void set_HeaderInfo_0(HeaderVariantInfoU5BU5D_t2B2BC9A8902A79E1FDEB1889E1F24E78C24FD354* value) { ___HeaderInfo_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___HeaderInfo_0), (void*)value); } }; // System.Globalization.CultureInfo struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 : public RuntimeObject { public: // System.Boolean System.Globalization.CultureInfo::m_isReadOnly bool ___m_isReadOnly_3; // System.Int32 System.Globalization.CultureInfo::cultureID int32_t ___cultureID_4; // System.Int32 System.Globalization.CultureInfo::parent_lcid int32_t ___parent_lcid_5; // System.Int32 System.Globalization.CultureInfo::datetime_index int32_t ___datetime_index_6; // System.Int32 System.Globalization.CultureInfo::number_index int32_t ___number_index_7; // System.Int32 System.Globalization.CultureInfo::default_calendar_type int32_t ___default_calendar_type_8; // System.Boolean System.Globalization.CultureInfo::m_useUserOverride bool ___m_useUserOverride_9; // System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::numInfo NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * ___numInfo_10; // System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::dateTimeInfo DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * ___dateTimeInfo_11; // System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::textInfo TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * ___textInfo_12; // System.String System.Globalization.CultureInfo::m_name String_t* ___m_name_13; // System.String System.Globalization.CultureInfo::englishname String_t* ___englishname_14; // System.String System.Globalization.CultureInfo::nativename String_t* ___nativename_15; // System.String System.Globalization.CultureInfo::iso3lang String_t* ___iso3lang_16; // System.String System.Globalization.CultureInfo::iso2lang String_t* ___iso2lang_17; // System.String System.Globalization.CultureInfo::win3lang String_t* ___win3lang_18; // System.String System.Globalization.CultureInfo::territory String_t* ___territory_19; // System.String[] System.Globalization.CultureInfo::native_calendar_names StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___native_calendar_names_20; // System.Globalization.CompareInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::compareInfo CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * ___compareInfo_21; // System.Void* System.Globalization.CultureInfo::textinfo_data void* ___textinfo_data_22; // System.Int32 System.Globalization.CultureInfo::m_dataItem int32_t ___m_dataItem_23; // System.Globalization.Calendar System.Globalization.CultureInfo::calendar Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * ___calendar_24; // System.Globalization.CultureInfo System.Globalization.CultureInfo::parent_culture CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___parent_culture_25; // System.Boolean System.Globalization.CultureInfo::constructed bool ___constructed_26; // System.Byte[] System.Globalization.CultureInfo::cached_serialized_form ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___cached_serialized_form_27; // System.Globalization.CultureData System.Globalization.CultureInfo::m_cultureData CultureData_t53CDF1C5F789A28897415891667799420D3C5529 * ___m_cultureData_28; // System.Boolean System.Globalization.CultureInfo::m_isInherited bool ___m_isInherited_29; public: inline static int32_t get_offset_of_m_isReadOnly_3() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_isReadOnly_3)); } inline bool get_m_isReadOnly_3() const { return ___m_isReadOnly_3; } inline bool* get_address_of_m_isReadOnly_3() { return &___m_isReadOnly_3; } inline void set_m_isReadOnly_3(bool value) { ___m_isReadOnly_3 = value; } inline static int32_t get_offset_of_cultureID_4() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___cultureID_4)); } inline int32_t get_cultureID_4() const { return ___cultureID_4; } inline int32_t* get_address_of_cultureID_4() { return &___cultureID_4; } inline void set_cultureID_4(int32_t value) { ___cultureID_4 = value; } inline static int32_t get_offset_of_parent_lcid_5() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___parent_lcid_5)); } inline int32_t get_parent_lcid_5() const { return ___parent_lcid_5; } inline int32_t* get_address_of_parent_lcid_5() { return &___parent_lcid_5; } inline void set_parent_lcid_5(int32_t value) { ___parent_lcid_5 = value; } inline static int32_t get_offset_of_datetime_index_6() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___datetime_index_6)); } inline int32_t get_datetime_index_6() const { return ___datetime_index_6; } inline int32_t* get_address_of_datetime_index_6() { return &___datetime_index_6; } inline void set_datetime_index_6(int32_t value) { ___datetime_index_6 = value; } inline static int32_t get_offset_of_number_index_7() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___number_index_7)); } inline int32_t get_number_index_7() const { return ___number_index_7; } inline int32_t* get_address_of_number_index_7() { return &___number_index_7; } inline void set_number_index_7(int32_t value) { ___number_index_7 = value; } inline static int32_t get_offset_of_default_calendar_type_8() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___default_calendar_type_8)); } inline int32_t get_default_calendar_type_8() const { return ___default_calendar_type_8; } inline int32_t* get_address_of_default_calendar_type_8() { return &___default_calendar_type_8; } inline void set_default_calendar_type_8(int32_t value) { ___default_calendar_type_8 = value; } inline static int32_t get_offset_of_m_useUserOverride_9() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_useUserOverride_9)); } inline bool get_m_useUserOverride_9() const { return ___m_useUserOverride_9; } inline bool* get_address_of_m_useUserOverride_9() { return &___m_useUserOverride_9; } inline void set_m_useUserOverride_9(bool value) { ___m_useUserOverride_9 = value; } inline static int32_t get_offset_of_numInfo_10() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___numInfo_10)); } inline NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * get_numInfo_10() const { return ___numInfo_10; } inline NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D ** get_address_of_numInfo_10() { return &___numInfo_10; } inline void set_numInfo_10(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * value) { ___numInfo_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___numInfo_10), (void*)value); } inline static int32_t get_offset_of_dateTimeInfo_11() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___dateTimeInfo_11)); } inline DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * get_dateTimeInfo_11() const { return ___dateTimeInfo_11; } inline DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 ** get_address_of_dateTimeInfo_11() { return &___dateTimeInfo_11; } inline void set_dateTimeInfo_11(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * value) { ___dateTimeInfo_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___dateTimeInfo_11), (void*)value); } inline static int32_t get_offset_of_textInfo_12() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___textInfo_12)); } inline TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * get_textInfo_12() const { return ___textInfo_12; } inline TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C ** get_address_of_textInfo_12() { return &___textInfo_12; } inline void set_textInfo_12(TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * value) { ___textInfo_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___textInfo_12), (void*)value); } inline static int32_t get_offset_of_m_name_13() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_name_13)); } inline String_t* get_m_name_13() const { return ___m_name_13; } inline String_t** get_address_of_m_name_13() { return &___m_name_13; } inline void set_m_name_13(String_t* value) { ___m_name_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_name_13), (void*)value); } inline static int32_t get_offset_of_englishname_14() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___englishname_14)); } inline String_t* get_englishname_14() const { return ___englishname_14; } inline String_t** get_address_of_englishname_14() { return &___englishname_14; } inline void set_englishname_14(String_t* value) { ___englishname_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___englishname_14), (void*)value); } inline static int32_t get_offset_of_nativename_15() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___nativename_15)); } inline String_t* get_nativename_15() const { return ___nativename_15; } inline String_t** get_address_of_nativename_15() { return &___nativename_15; } inline void set_nativename_15(String_t* value) { ___nativename_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___nativename_15), (void*)value); } inline static int32_t get_offset_of_iso3lang_16() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___iso3lang_16)); } inline String_t* get_iso3lang_16() const { return ___iso3lang_16; } inline String_t** get_address_of_iso3lang_16() { return &___iso3lang_16; } inline void set_iso3lang_16(String_t* value) { ___iso3lang_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___iso3lang_16), (void*)value); } inline static int32_t get_offset_of_iso2lang_17() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___iso2lang_17)); } inline String_t* get_iso2lang_17() const { return ___iso2lang_17; } inline String_t** get_address_of_iso2lang_17() { return &___iso2lang_17; } inline void set_iso2lang_17(String_t* value) { ___iso2lang_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___iso2lang_17), (void*)value); } inline static int32_t get_offset_of_win3lang_18() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___win3lang_18)); } inline String_t* get_win3lang_18() const { return ___win3lang_18; } inline String_t** get_address_of_win3lang_18() { return &___win3lang_18; } inline void set_win3lang_18(String_t* value) { ___win3lang_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___win3lang_18), (void*)value); } inline static int32_t get_offset_of_territory_19() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___territory_19)); } inline String_t* get_territory_19() const { return ___territory_19; } inline String_t** get_address_of_territory_19() { return &___territory_19; } inline void set_territory_19(String_t* value) { ___territory_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___territory_19), (void*)value); } inline static int32_t get_offset_of_native_calendar_names_20() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___native_calendar_names_20)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_native_calendar_names_20() const { return ___native_calendar_names_20; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_native_calendar_names_20() { return &___native_calendar_names_20; } inline void set_native_calendar_names_20(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___native_calendar_names_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___native_calendar_names_20), (void*)value); } inline static int32_t get_offset_of_compareInfo_21() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___compareInfo_21)); } inline CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * get_compareInfo_21() const { return ___compareInfo_21; } inline CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 ** get_address_of_compareInfo_21() { return &___compareInfo_21; } inline void set_compareInfo_21(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * value) { ___compareInfo_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___compareInfo_21), (void*)value); } inline static int32_t get_offset_of_textinfo_data_22() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___textinfo_data_22)); } inline void* get_textinfo_data_22() const { return ___textinfo_data_22; } inline void** get_address_of_textinfo_data_22() { return &___textinfo_data_22; } inline void set_textinfo_data_22(void* value) { ___textinfo_data_22 = value; } inline static int32_t get_offset_of_m_dataItem_23() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_dataItem_23)); } inline int32_t get_m_dataItem_23() const { return ___m_dataItem_23; } inline int32_t* get_address_of_m_dataItem_23() { return &___m_dataItem_23; } inline void set_m_dataItem_23(int32_t value) { ___m_dataItem_23 = value; } inline static int32_t get_offset_of_calendar_24() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___calendar_24)); } inline Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * get_calendar_24() const { return ___calendar_24; } inline Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A ** get_address_of_calendar_24() { return &___calendar_24; } inline void set_calendar_24(Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * value) { ___calendar_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___calendar_24), (void*)value); } inline static int32_t get_offset_of_parent_culture_25() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___parent_culture_25)); } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_parent_culture_25() const { return ___parent_culture_25; } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_parent_culture_25() { return &___parent_culture_25; } inline void set_parent_culture_25(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value) { ___parent_culture_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___parent_culture_25), (void*)value); } inline static int32_t get_offset_of_constructed_26() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___constructed_26)); } inline bool get_constructed_26() const { return ___constructed_26; } inline bool* get_address_of_constructed_26() { return &___constructed_26; } inline void set_constructed_26(bool value) { ___constructed_26 = value; } inline static int32_t get_offset_of_cached_serialized_form_27() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___cached_serialized_form_27)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_cached_serialized_form_27() const { return ___cached_serialized_form_27; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_cached_serialized_form_27() { return &___cached_serialized_form_27; } inline void set_cached_serialized_form_27(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___cached_serialized_form_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___cached_serialized_form_27), (void*)value); } inline static int32_t get_offset_of_m_cultureData_28() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_cultureData_28)); } inline CultureData_t53CDF1C5F789A28897415891667799420D3C5529 * get_m_cultureData_28() const { return ___m_cultureData_28; } inline CultureData_t53CDF1C5F789A28897415891667799420D3C5529 ** get_address_of_m_cultureData_28() { return &___m_cultureData_28; } inline void set_m_cultureData_28(CultureData_t53CDF1C5F789A28897415891667799420D3C5529 * value) { ___m_cultureData_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_cultureData_28), (void*)value); } inline static int32_t get_offset_of_m_isInherited_29() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_isInherited_29)); } inline bool get_m_isInherited_29() const { return ___m_isInherited_29; } inline bool* get_address_of_m_isInherited_29() { return &___m_isInherited_29; } inline void set_m_isInherited_29(bool value) { ___m_isInherited_29 = value; } }; struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields { public: // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::invariant_culture_info CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___invariant_culture_info_0; // System.Object System.Globalization.CultureInfo::shared_table_lock RuntimeObject * ___shared_table_lock_1; // System.Globalization.CultureInfo System.Globalization.CultureInfo::default_current_culture CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___default_current_culture_2; // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentUICulture CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___s_DefaultThreadCurrentUICulture_33; // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentCulture CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___s_DefaultThreadCurrentCulture_34; // System.Collections.Generic.Dictionary`2 System.Globalization.CultureInfo::shared_by_number Dictionary_2_t5B8303F2C9869A39ED3E03C0FBB09F817E479402 * ___shared_by_number_35; // System.Collections.Generic.Dictionary`2 System.Globalization.CultureInfo::shared_by_name Dictionary_2_t0015CBF964B0687CBB5ECFDDE06671A8F3DDE4BC * ___shared_by_name_36; // System.Boolean System.Globalization.CultureInfo::IsTaiwanSku bool ___IsTaiwanSku_37; public: inline static int32_t get_offset_of_invariant_culture_info_0() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___invariant_culture_info_0)); } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_invariant_culture_info_0() const { return ___invariant_culture_info_0; } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_invariant_culture_info_0() { return &___invariant_culture_info_0; } inline void set_invariant_culture_info_0(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value) { ___invariant_culture_info_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___invariant_culture_info_0), (void*)value); } inline static int32_t get_offset_of_shared_table_lock_1() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___shared_table_lock_1)); } inline RuntimeObject * get_shared_table_lock_1() const { return ___shared_table_lock_1; } inline RuntimeObject ** get_address_of_shared_table_lock_1() { return &___shared_table_lock_1; } inline void set_shared_table_lock_1(RuntimeObject * value) { ___shared_table_lock_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___shared_table_lock_1), (void*)value); } inline static int32_t get_offset_of_default_current_culture_2() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___default_current_culture_2)); } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_default_current_culture_2() const { return ___default_current_culture_2; } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_default_current_culture_2() { return &___default_current_culture_2; } inline void set_default_current_culture_2(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value) { ___default_current_culture_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___default_current_culture_2), (void*)value); } inline static int32_t get_offset_of_s_DefaultThreadCurrentUICulture_33() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___s_DefaultThreadCurrentUICulture_33)); } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_s_DefaultThreadCurrentUICulture_33() const { return ___s_DefaultThreadCurrentUICulture_33; } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_s_DefaultThreadCurrentUICulture_33() { return &___s_DefaultThreadCurrentUICulture_33; } inline void set_s_DefaultThreadCurrentUICulture_33(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value) { ___s_DefaultThreadCurrentUICulture_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultThreadCurrentUICulture_33), (void*)value); } inline static int32_t get_offset_of_s_DefaultThreadCurrentCulture_34() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___s_DefaultThreadCurrentCulture_34)); } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_s_DefaultThreadCurrentCulture_34() const { return ___s_DefaultThreadCurrentCulture_34; } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_s_DefaultThreadCurrentCulture_34() { return &___s_DefaultThreadCurrentCulture_34; } inline void set_s_DefaultThreadCurrentCulture_34(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value) { ___s_DefaultThreadCurrentCulture_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultThreadCurrentCulture_34), (void*)value); } inline static int32_t get_offset_of_shared_by_number_35() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___shared_by_number_35)); } inline Dictionary_2_t5B8303F2C9869A39ED3E03C0FBB09F817E479402 * get_shared_by_number_35() const { return ___shared_by_number_35; } inline Dictionary_2_t5B8303F2C9869A39ED3E03C0FBB09F817E479402 ** get_address_of_shared_by_number_35() { return &___shared_by_number_35; } inline void set_shared_by_number_35(Dictionary_2_t5B8303F2C9869A39ED3E03C0FBB09F817E479402 * value) { ___shared_by_number_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___shared_by_number_35), (void*)value); } inline static int32_t get_offset_of_shared_by_name_36() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___shared_by_name_36)); } inline Dictionary_2_t0015CBF964B0687CBB5ECFDDE06671A8F3DDE4BC * get_shared_by_name_36() const { return ___shared_by_name_36; } inline Dictionary_2_t0015CBF964B0687CBB5ECFDDE06671A8F3DDE4BC ** get_address_of_shared_by_name_36() { return &___shared_by_name_36; } inline void set_shared_by_name_36(Dictionary_2_t0015CBF964B0687CBB5ECFDDE06671A8F3DDE4BC * value) { ___shared_by_name_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___shared_by_name_36), (void*)value); } inline static int32_t get_offset_of_IsTaiwanSku_37() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___IsTaiwanSku_37)); } inline bool get_IsTaiwanSku_37() const { return ___IsTaiwanSku_37; } inline bool* get_address_of_IsTaiwanSku_37() { return &___IsTaiwanSku_37; } inline void set_IsTaiwanSku_37(bool value) { ___IsTaiwanSku_37 = value; } }; // Native definition for P/Invoke marshalling of System.Globalization.CultureInfo struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_pinvoke { int32_t ___m_isReadOnly_3; int32_t ___cultureID_4; int32_t ___parent_lcid_5; int32_t ___datetime_index_6; int32_t ___number_index_7; int32_t ___default_calendar_type_8; int32_t ___m_useUserOverride_9; NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * ___numInfo_10; DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * ___dateTimeInfo_11; TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * ___textInfo_12; char* ___m_name_13; char* ___englishname_14; char* ___nativename_15; char* ___iso3lang_16; char* ___iso2lang_17; char* ___win3lang_18; char* ___territory_19; char** ___native_calendar_names_20; CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * ___compareInfo_21; void* ___textinfo_data_22; int32_t ___m_dataItem_23; Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * ___calendar_24; CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_pinvoke* ___parent_culture_25; int32_t ___constructed_26; Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27; CultureData_t53CDF1C5F789A28897415891667799420D3C5529_marshaled_pinvoke* ___m_cultureData_28; int32_t ___m_isInherited_29; }; // Native definition for COM marshalling of System.Globalization.CultureInfo struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_com { int32_t ___m_isReadOnly_3; int32_t ___cultureID_4; int32_t ___parent_lcid_5; int32_t ___datetime_index_6; int32_t ___number_index_7; int32_t ___default_calendar_type_8; int32_t ___m_useUserOverride_9; NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * ___numInfo_10; DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * ___dateTimeInfo_11; TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * ___textInfo_12; Il2CppChar* ___m_name_13; Il2CppChar* ___englishname_14; Il2CppChar* ___nativename_15; Il2CppChar* ___iso3lang_16; Il2CppChar* ___iso2lang_17; Il2CppChar* ___win3lang_18; Il2CppChar* ___territory_19; Il2CppChar** ___native_calendar_names_20; CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * ___compareInfo_21; void* ___textinfo_data_22; int32_t ___m_dataItem_23; Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * ___calendar_24; CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_com* ___parent_culture_25; int32_t ___constructed_26; Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27; CultureData_t53CDF1C5F789A28897415891667799420D3C5529_marshaled_com* ___m_cultureData_28; int32_t ___m_isInherited_29; }; // System.DBNull struct DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28 : public RuntimeObject { public: public: }; struct DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28_StaticFields { public: // System.DBNull System.DBNull::Value DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast(offsetof(DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28_StaticFields, ___Value_0)); } inline DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28 * get_Value_0() const { return ___Value_0; } inline DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value); } }; // System.Text.DecoderFallback struct DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D : public RuntimeObject { public: // System.Boolean System.Text.DecoderFallback::bIsMicrosoftBestFitFallback bool ___bIsMicrosoftBestFitFallback_0; public: inline static int32_t get_offset_of_bIsMicrosoftBestFitFallback_0() { return static_cast(offsetof(DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D, ___bIsMicrosoftBestFitFallback_0)); } inline bool get_bIsMicrosoftBestFitFallback_0() const { return ___bIsMicrosoftBestFitFallback_0; } inline bool* get_address_of_bIsMicrosoftBestFitFallback_0() { return &___bIsMicrosoftBestFitFallback_0; } inline void set_bIsMicrosoftBestFitFallback_0(bool value) { ___bIsMicrosoftBestFitFallback_0 = value; } }; struct DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D_StaticFields { public: // System.Text.DecoderFallback modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.DecoderFallback::replacementFallback DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D * ___replacementFallback_1; // System.Text.DecoderFallback modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.DecoderFallback::exceptionFallback DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D * ___exceptionFallback_2; // System.Object System.Text.DecoderFallback::s_InternalSyncObject RuntimeObject * ___s_InternalSyncObject_3; public: inline static int32_t get_offset_of_replacementFallback_1() { return static_cast(offsetof(DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D_StaticFields, ___replacementFallback_1)); } inline DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D * get_replacementFallback_1() const { return ___replacementFallback_1; } inline DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D ** get_address_of_replacementFallback_1() { return &___replacementFallback_1; } inline void set_replacementFallback_1(DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D * value) { ___replacementFallback_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___replacementFallback_1), (void*)value); } inline static int32_t get_offset_of_exceptionFallback_2() { return static_cast(offsetof(DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D_StaticFields, ___exceptionFallback_2)); } inline DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D * get_exceptionFallback_2() const { return ___exceptionFallback_2; } inline DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D ** get_address_of_exceptionFallback_2() { return &___exceptionFallback_2; } inline void set_exceptionFallback_2(DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D * value) { ___exceptionFallback_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___exceptionFallback_2), (void*)value); } inline static int32_t get_offset_of_s_InternalSyncObject_3() { return static_cast(offsetof(DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D_StaticFields, ___s_InternalSyncObject_3)); } inline RuntimeObject * get_s_InternalSyncObject_3() const { return ___s_InternalSyncObject_3; } inline RuntimeObject ** get_address_of_s_InternalSyncObject_3() { return &___s_InternalSyncObject_3; } inline void set_s_InternalSyncObject_3(RuntimeObject * value) { ___s_InternalSyncObject_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_InternalSyncObject_3), (void*)value); } }; // System.Net.EmptyWebProxy struct EmptyWebProxy_tBFFA078A103E63530CC4A80AD137D6C8E3A77686 : public RuntimeObject { public: // System.Net.ICredentials System.Net.EmptyWebProxy::m_credentials RuntimeObject* ___m_credentials_0; public: inline static int32_t get_offset_of_m_credentials_0() { return static_cast(offsetof(EmptyWebProxy_tBFFA078A103E63530CC4A80AD137D6C8E3A77686, ___m_credentials_0)); } inline RuntimeObject* get_m_credentials_0() const { return ___m_credentials_0; } inline RuntimeObject** get_address_of_m_credentials_0() { return &___m_credentials_0; } inline void set_m_credentials_0(RuntimeObject* value) { ___m_credentials_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_credentials_0), (void*)value); } }; // System.Text.EncoderFallback struct EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 : public RuntimeObject { public: // System.Boolean System.Text.EncoderFallback::bIsMicrosoftBestFitFallback bool ___bIsMicrosoftBestFitFallback_0; public: inline static int32_t get_offset_of_bIsMicrosoftBestFitFallback_0() { return static_cast(offsetof(EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4, ___bIsMicrosoftBestFitFallback_0)); } inline bool get_bIsMicrosoftBestFitFallback_0() const { return ___bIsMicrosoftBestFitFallback_0; } inline bool* get_address_of_bIsMicrosoftBestFitFallback_0() { return &___bIsMicrosoftBestFitFallback_0; } inline void set_bIsMicrosoftBestFitFallback_0(bool value) { ___bIsMicrosoftBestFitFallback_0 = value; } }; struct EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4_StaticFields { public: // System.Text.EncoderFallback modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.EncoderFallback::replacementFallback EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 * ___replacementFallback_1; // System.Text.EncoderFallback modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.EncoderFallback::exceptionFallback EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 * ___exceptionFallback_2; // System.Object System.Text.EncoderFallback::s_InternalSyncObject RuntimeObject * ___s_InternalSyncObject_3; public: inline static int32_t get_offset_of_replacementFallback_1() { return static_cast(offsetof(EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4_StaticFields, ___replacementFallback_1)); } inline EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 * get_replacementFallback_1() const { return ___replacementFallback_1; } inline EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 ** get_address_of_replacementFallback_1() { return &___replacementFallback_1; } inline void set_replacementFallback_1(EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 * value) { ___replacementFallback_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___replacementFallback_1), (void*)value); } inline static int32_t get_offset_of_exceptionFallback_2() { return static_cast(offsetof(EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4_StaticFields, ___exceptionFallback_2)); } inline EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 * get_exceptionFallback_2() const { return ___exceptionFallback_2; } inline EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 ** get_address_of_exceptionFallback_2() { return &___exceptionFallback_2; } inline void set_exceptionFallback_2(EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 * value) { ___exceptionFallback_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___exceptionFallback_2), (void*)value); } inline static int32_t get_offset_of_s_InternalSyncObject_3() { return static_cast(offsetof(EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4_StaticFields, ___s_InternalSyncObject_3)); } inline RuntimeObject * get_s_InternalSyncObject_3() const { return ___s_InternalSyncObject_3; } inline RuntimeObject ** get_address_of_s_InternalSyncObject_3() { return &___s_InternalSyncObject_3; } inline void set_s_InternalSyncObject_3(RuntimeObject * value) { ___s_InternalSyncObject_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_InternalSyncObject_3), (void*)value); } }; // System.Text.Encoding struct Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 : public RuntimeObject { public: // System.Int32 System.Text.Encoding::m_codePage int32_t ___m_codePage_55; // System.Globalization.CodePageDataItem System.Text.Encoding::dataItem CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E * ___dataItem_56; // System.Boolean System.Text.Encoding::m_deserializedFromEverett bool ___m_deserializedFromEverett_57; // System.Boolean System.Text.Encoding::m_isReadOnly bool ___m_isReadOnly_58; // System.Text.EncoderFallback System.Text.Encoding::encoderFallback EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 * ___encoderFallback_59; // System.Text.DecoderFallback System.Text.Encoding::decoderFallback DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D * ___decoderFallback_60; public: inline static int32_t get_offset_of_m_codePage_55() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___m_codePage_55)); } inline int32_t get_m_codePage_55() const { return ___m_codePage_55; } inline int32_t* get_address_of_m_codePage_55() { return &___m_codePage_55; } inline void set_m_codePage_55(int32_t value) { ___m_codePage_55 = value; } inline static int32_t get_offset_of_dataItem_56() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___dataItem_56)); } inline CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E * get_dataItem_56() const { return ___dataItem_56; } inline CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E ** get_address_of_dataItem_56() { return &___dataItem_56; } inline void set_dataItem_56(CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E * value) { ___dataItem_56 = value; Il2CppCodeGenWriteBarrier((void**)(&___dataItem_56), (void*)value); } inline static int32_t get_offset_of_m_deserializedFromEverett_57() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___m_deserializedFromEverett_57)); } inline bool get_m_deserializedFromEverett_57() const { return ___m_deserializedFromEverett_57; } inline bool* get_address_of_m_deserializedFromEverett_57() { return &___m_deserializedFromEverett_57; } inline void set_m_deserializedFromEverett_57(bool value) { ___m_deserializedFromEverett_57 = value; } inline static int32_t get_offset_of_m_isReadOnly_58() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___m_isReadOnly_58)); } inline bool get_m_isReadOnly_58() const { return ___m_isReadOnly_58; } inline bool* get_address_of_m_isReadOnly_58() { return &___m_isReadOnly_58; } inline void set_m_isReadOnly_58(bool value) { ___m_isReadOnly_58 = value; } inline static int32_t get_offset_of_encoderFallback_59() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___encoderFallback_59)); } inline EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 * get_encoderFallback_59() const { return ___encoderFallback_59; } inline EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 ** get_address_of_encoderFallback_59() { return &___encoderFallback_59; } inline void set_encoderFallback_59(EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 * value) { ___encoderFallback_59 = value; Il2CppCodeGenWriteBarrier((void**)(&___encoderFallback_59), (void*)value); } inline static int32_t get_offset_of_decoderFallback_60() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___decoderFallback_60)); } inline DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D * get_decoderFallback_60() const { return ___decoderFallback_60; } inline DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D ** get_address_of_decoderFallback_60() { return &___decoderFallback_60; } inline void set_decoderFallback_60(DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D * value) { ___decoderFallback_60 = value; Il2CppCodeGenWriteBarrier((void**)(&___decoderFallback_60), (void*)value); } }; struct Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields { public: // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::defaultEncoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___defaultEncoding_0; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::unicodeEncoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___unicodeEncoding_1; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::bigEndianUnicode Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___bigEndianUnicode_2; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf7Encoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___utf7Encoding_3; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8Encoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___utf8Encoding_4; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf32Encoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___utf32Encoding_5; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::asciiEncoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___asciiEncoding_6; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::latin1Encoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___latin1Encoding_7; // System.Collections.Hashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::encodings Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___encodings_8; // System.Object System.Text.Encoding::s_InternalSyncObject RuntimeObject * ___s_InternalSyncObject_61; public: inline static int32_t get_offset_of_defaultEncoding_0() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___defaultEncoding_0)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_defaultEncoding_0() const { return ___defaultEncoding_0; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_defaultEncoding_0() { return &___defaultEncoding_0; } inline void set_defaultEncoding_0(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___defaultEncoding_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultEncoding_0), (void*)value); } inline static int32_t get_offset_of_unicodeEncoding_1() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___unicodeEncoding_1)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_unicodeEncoding_1() const { return ___unicodeEncoding_1; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_unicodeEncoding_1() { return &___unicodeEncoding_1; } inline void set_unicodeEncoding_1(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___unicodeEncoding_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___unicodeEncoding_1), (void*)value); } inline static int32_t get_offset_of_bigEndianUnicode_2() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___bigEndianUnicode_2)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_bigEndianUnicode_2() const { return ___bigEndianUnicode_2; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_bigEndianUnicode_2() { return &___bigEndianUnicode_2; } inline void set_bigEndianUnicode_2(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___bigEndianUnicode_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___bigEndianUnicode_2), (void*)value); } inline static int32_t get_offset_of_utf7Encoding_3() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___utf7Encoding_3)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_utf7Encoding_3() const { return ___utf7Encoding_3; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_utf7Encoding_3() { return &___utf7Encoding_3; } inline void set_utf7Encoding_3(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___utf7Encoding_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___utf7Encoding_3), (void*)value); } inline static int32_t get_offset_of_utf8Encoding_4() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___utf8Encoding_4)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_utf8Encoding_4() const { return ___utf8Encoding_4; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_utf8Encoding_4() { return &___utf8Encoding_4; } inline void set_utf8Encoding_4(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___utf8Encoding_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___utf8Encoding_4), (void*)value); } inline static int32_t get_offset_of_utf32Encoding_5() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___utf32Encoding_5)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_utf32Encoding_5() const { return ___utf32Encoding_5; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_utf32Encoding_5() { return &___utf32Encoding_5; } inline void set_utf32Encoding_5(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___utf32Encoding_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___utf32Encoding_5), (void*)value); } inline static int32_t get_offset_of_asciiEncoding_6() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___asciiEncoding_6)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_asciiEncoding_6() const { return ___asciiEncoding_6; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_asciiEncoding_6() { return &___asciiEncoding_6; } inline void set_asciiEncoding_6(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___asciiEncoding_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___asciiEncoding_6), (void*)value); } inline static int32_t get_offset_of_latin1Encoding_7() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___latin1Encoding_7)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_latin1Encoding_7() const { return ___latin1Encoding_7; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_latin1Encoding_7() { return &___latin1Encoding_7; } inline void set_latin1Encoding_7(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___latin1Encoding_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___latin1Encoding_7), (void*)value); } inline static int32_t get_offset_of_encodings_8() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___encodings_8)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_encodings_8() const { return ___encodings_8; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_encodings_8() { return &___encodings_8; } inline void set_encodings_8(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___encodings_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___encodings_8), (void*)value); } inline static int32_t get_offset_of_s_InternalSyncObject_61() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___s_InternalSyncObject_61)); } inline RuntimeObject * get_s_InternalSyncObject_61() const { return ___s_InternalSyncObject_61; } inline RuntimeObject ** get_address_of_s_InternalSyncObject_61() { return &___s_InternalSyncObject_61; } inline void set_s_InternalSyncObject_61(RuntimeObject * value) { ___s_InternalSyncObject_61 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_InternalSyncObject_61), (void*)value); } }; // System.Net.EndPoint struct EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA : public RuntimeObject { public: public: }; // System.EventArgs struct EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA : public RuntimeObject { public: public: }; struct EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA_StaticFields { public: // System.EventArgs System.EventArgs::Empty EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA * ___Empty_0; public: inline static int32_t get_offset_of_Empty_0() { return static_cast(offsetof(EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA_StaticFields, ___Empty_0)); } inline EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA * get_Empty_0() const { return ___Empty_0; } inline EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA ** get_address_of_Empty_0() { return &___Empty_0; } inline void set_Empty_0(EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA * value) { ___Empty_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Empty_0), (void*)value); } }; // System.Net.GlobalProxySelection struct GlobalProxySelection_t0CCCB05E8FB20166EA5256D567701CF304AF627D : public RuntimeObject { public: public: }; // System.Text.RegularExpressions.GroupCollection struct GroupCollection_tAA9CA4E93B1A9D6B7199EE25AEB32922E72AA556 : public RuntimeObject { public: // System.Text.RegularExpressions.Match System.Text.RegularExpressions.GroupCollection::_match Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * ____match_0; // System.Collections.Hashtable System.Text.RegularExpressions.GroupCollection::_captureMap Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ____captureMap_1; // System.Text.RegularExpressions.Group[] System.Text.RegularExpressions.GroupCollection::_groups GroupU5BU5D_tE125DBFFA979634FDDAEDF77F5EC47134D764AB5* ____groups_2; public: inline static int32_t get_offset_of__match_0() { return static_cast(offsetof(GroupCollection_tAA9CA4E93B1A9D6B7199EE25AEB32922E72AA556, ____match_0)); } inline Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * get__match_0() const { return ____match_0; } inline Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B ** get_address_of__match_0() { return &____match_0; } inline void set__match_0(Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * value) { ____match_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____match_0), (void*)value); } inline static int32_t get_offset_of__captureMap_1() { return static_cast(offsetof(GroupCollection_tAA9CA4E93B1A9D6B7199EE25AEB32922E72AA556, ____captureMap_1)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get__captureMap_1() const { return ____captureMap_1; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of__captureMap_1() { return &____captureMap_1; } inline void set__captureMap_1(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ____captureMap_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____captureMap_1), (void*)value); } inline static int32_t get_offset_of__groups_2() { return static_cast(offsetof(GroupCollection_tAA9CA4E93B1A9D6B7199EE25AEB32922E72AA556, ____groups_2)); } inline GroupU5BU5D_tE125DBFFA979634FDDAEDF77F5EC47134D764AB5* get__groups_2() const { return ____groups_2; } inline GroupU5BU5D_tE125DBFFA979634FDDAEDF77F5EC47134D764AB5** get_address_of__groups_2() { return &____groups_2; } inline void set__groups_2(GroupU5BU5D_tE125DBFFA979634FDDAEDF77F5EC47134D764AB5* value) { ____groups_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____groups_2), (void*)value); } }; // System.Text.RegularExpressions.GroupEnumerator struct GroupEnumerator_t99051268604236D2D3064D0BDF2D358B42D884CB : public RuntimeObject { public: // System.Text.RegularExpressions.GroupCollection System.Text.RegularExpressions.GroupEnumerator::_rgc GroupCollection_tAA9CA4E93B1A9D6B7199EE25AEB32922E72AA556 * ____rgc_0; // System.Int32 System.Text.RegularExpressions.GroupEnumerator::_curindex int32_t ____curindex_1; public: inline static int32_t get_offset_of__rgc_0() { return static_cast(offsetof(GroupEnumerator_t99051268604236D2D3064D0BDF2D358B42D884CB, ____rgc_0)); } inline GroupCollection_tAA9CA4E93B1A9D6B7199EE25AEB32922E72AA556 * get__rgc_0() const { return ____rgc_0; } inline GroupCollection_tAA9CA4E93B1A9D6B7199EE25AEB32922E72AA556 ** get_address_of__rgc_0() { return &____rgc_0; } inline void set__rgc_0(GroupCollection_tAA9CA4E93B1A9D6B7199EE25AEB32922E72AA556 * value) { ____rgc_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____rgc_0), (void*)value); } inline static int32_t get_offset_of__curindex_1() { return static_cast(offsetof(GroupEnumerator_t99051268604236D2D3064D0BDF2D358B42D884CB, ____curindex_1)); } inline int32_t get__curindex_1() const { return ____curindex_1; } inline int32_t* get_address_of__curindex_1() { return &____curindex_1; } inline void set__curindex_1(int32_t value) { ____curindex_1 = value; } }; // System.Net.HeaderInfo struct HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 : public RuntimeObject { public: // System.Boolean System.Net.HeaderInfo::IsRequestRestricted bool ___IsRequestRestricted_0; // System.Boolean System.Net.HeaderInfo::IsResponseRestricted bool ___IsResponseRestricted_1; // System.Net.HeaderParser System.Net.HeaderInfo::Parser HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * ___Parser_2; // System.String System.Net.HeaderInfo::HeaderName String_t* ___HeaderName_3; // System.Boolean System.Net.HeaderInfo::AllowMultiValues bool ___AllowMultiValues_4; public: inline static int32_t get_offset_of_IsRequestRestricted_0() { return static_cast(offsetof(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2, ___IsRequestRestricted_0)); } inline bool get_IsRequestRestricted_0() const { return ___IsRequestRestricted_0; } inline bool* get_address_of_IsRequestRestricted_0() { return &___IsRequestRestricted_0; } inline void set_IsRequestRestricted_0(bool value) { ___IsRequestRestricted_0 = value; } inline static int32_t get_offset_of_IsResponseRestricted_1() { return static_cast(offsetof(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2, ___IsResponseRestricted_1)); } inline bool get_IsResponseRestricted_1() const { return ___IsResponseRestricted_1; } inline bool* get_address_of_IsResponseRestricted_1() { return &___IsResponseRestricted_1; } inline void set_IsResponseRestricted_1(bool value) { ___IsResponseRestricted_1 = value; } inline static int32_t get_offset_of_Parser_2() { return static_cast(offsetof(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2, ___Parser_2)); } inline HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * get_Parser_2() const { return ___Parser_2; } inline HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD ** get_address_of_Parser_2() { return &___Parser_2; } inline void set_Parser_2(HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * value) { ___Parser_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___Parser_2), (void*)value); } inline static int32_t get_offset_of_HeaderName_3() { return static_cast(offsetof(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2, ___HeaderName_3)); } inline String_t* get_HeaderName_3() const { return ___HeaderName_3; } inline String_t** get_address_of_HeaderName_3() { return &___HeaderName_3; } inline void set_HeaderName_3(String_t* value) { ___HeaderName_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___HeaderName_3), (void*)value); } inline static int32_t get_offset_of_AllowMultiValues_4() { return static_cast(offsetof(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2, ___AllowMultiValues_4)); } inline bool get_AllowMultiValues_4() const { return ___AllowMultiValues_4; } inline bool* get_address_of_AllowMultiValues_4() { return &___AllowMultiValues_4; } inline void set_AllowMultiValues_4(bool value) { ___AllowMultiValues_4 = value; } }; // System.Net.HeaderInfoTable struct HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4 : public RuntimeObject { public: public: }; struct HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields { public: // System.Collections.Hashtable System.Net.HeaderInfoTable::HeaderHashTable Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___HeaderHashTable_0; // System.Net.HeaderInfo System.Net.HeaderInfoTable::UnknownHeaderInfo HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * ___UnknownHeaderInfo_1; // System.Net.HeaderParser System.Net.HeaderInfoTable::SingleParser HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * ___SingleParser_2; // System.Net.HeaderParser System.Net.HeaderInfoTable::MultiParser HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * ___MultiParser_3; public: inline static int32_t get_offset_of_HeaderHashTable_0() { return static_cast(offsetof(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields, ___HeaderHashTable_0)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_HeaderHashTable_0() const { return ___HeaderHashTable_0; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_HeaderHashTable_0() { return &___HeaderHashTable_0; } inline void set_HeaderHashTable_0(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___HeaderHashTable_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___HeaderHashTable_0), (void*)value); } inline static int32_t get_offset_of_UnknownHeaderInfo_1() { return static_cast(offsetof(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields, ___UnknownHeaderInfo_1)); } inline HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * get_UnknownHeaderInfo_1() const { return ___UnknownHeaderInfo_1; } inline HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 ** get_address_of_UnknownHeaderInfo_1() { return &___UnknownHeaderInfo_1; } inline void set_UnknownHeaderInfo_1(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * value) { ___UnknownHeaderInfo_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___UnknownHeaderInfo_1), (void*)value); } inline static int32_t get_offset_of_SingleParser_2() { return static_cast(offsetof(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields, ___SingleParser_2)); } inline HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * get_SingleParser_2() const { return ___SingleParser_2; } inline HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD ** get_address_of_SingleParser_2() { return &___SingleParser_2; } inline void set_SingleParser_2(HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * value) { ___SingleParser_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___SingleParser_2), (void*)value); } inline static int32_t get_offset_of_MultiParser_3() { return static_cast(offsetof(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields, ___MultiParser_3)); } inline HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * get_MultiParser_3() const { return ___MultiParser_3; } inline HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD ** get_address_of_MultiParser_3() { return &___MultiParser_3; } inline void set_MultiParser_3(HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * value) { ___MultiParser_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___MultiParser_3), (void*)value); } }; // System.Net.HttpRequestCreator struct HttpRequestCreator_t43BC553258C031FFD5AF8A9552EAC1D152215999 : public RuntimeObject { public: public: }; // System.Net.HttpStatusDescription struct HttpStatusDescription_t7105188A76B2BE44E8E75AAE6726764C3EE8EDE0 : public RuntimeObject { public: public: }; // System.Net.HttpVersion struct HttpVersion_t15E4A5DA9E037A055F4630E01EB12A988915448E : public RuntimeObject { public: public: }; struct HttpVersion_t15E4A5DA9E037A055F4630E01EB12A988915448E_StaticFields { public: // System.Version System.Net.HttpVersion::Version10 Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___Version10_0; // System.Version System.Net.HttpVersion::Version11 Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___Version11_1; public: inline static int32_t get_offset_of_Version10_0() { return static_cast(offsetof(HttpVersion_t15E4A5DA9E037A055F4630E01EB12A988915448E_StaticFields, ___Version10_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_Version10_0() const { return ___Version10_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_Version10_0() { return &___Version10_0; } inline void set_Version10_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___Version10_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Version10_0), (void*)value); } inline static int32_t get_offset_of_Version11_1() { return static_cast(offsetof(HttpVersion_t15E4A5DA9E037A055F4630E01EB12A988915448E_StaticFields, ___Version11_1)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_Version11_1() const { return ___Version11_1; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_Version11_1() { return &___Version11_1; } inline void set_Version11_1(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___Version11_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Version11_1), (void*)value); } }; // System.Collections.Specialized.HybridDictionary struct HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A : public RuntimeObject { public: // System.Collections.Specialized.ListDictionary System.Collections.Specialized.HybridDictionary::list ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * ___list_0; // System.Collections.Hashtable System.Collections.Specialized.HybridDictionary::hashtable Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___hashtable_1; // System.Boolean System.Collections.Specialized.HybridDictionary::caseInsensitive bool ___caseInsensitive_2; public: inline static int32_t get_offset_of_list_0() { return static_cast(offsetof(HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A, ___list_0)); } inline ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * get_list_0() const { return ___list_0; } inline ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_hashtable_1() { return static_cast(offsetof(HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A, ___hashtable_1)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_hashtable_1() const { return ___hashtable_1; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_hashtable_1() { return &___hashtable_1; } inline void set_hashtable_1(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___hashtable_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___hashtable_1), (void*)value); } inline static int32_t get_offset_of_caseInsensitive_2() { return static_cast(offsetof(HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A, ___caseInsensitive_2)); } inline bool get_caseInsensitive_2() const { return ___caseInsensitive_2; } inline bool* get_address_of_caseInsensitive_2() { return &___caseInsensitive_2; } inline void set_caseInsensitive_2(bool value) { ___caseInsensitive_2 = value; } }; // System.IOAsyncResult struct IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9 : public RuntimeObject { public: // System.AsyncCallback System.IOAsyncResult::async_callback AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___async_callback_0; // System.Object System.IOAsyncResult::async_state RuntimeObject * ___async_state_1; // System.Threading.ManualResetEvent System.IOAsyncResult::wait_handle ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * ___wait_handle_2; // System.Boolean System.IOAsyncResult::completed_synchronously bool ___completed_synchronously_3; // System.Boolean System.IOAsyncResult::completed bool ___completed_4; public: inline static int32_t get_offset_of_async_callback_0() { return static_cast(offsetof(IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9, ___async_callback_0)); } inline AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * get_async_callback_0() const { return ___async_callback_0; } inline AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA ** get_address_of_async_callback_0() { return &___async_callback_0; } inline void set_async_callback_0(AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * value) { ___async_callback_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___async_callback_0), (void*)value); } inline static int32_t get_offset_of_async_state_1() { return static_cast(offsetof(IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9, ___async_state_1)); } inline RuntimeObject * get_async_state_1() const { return ___async_state_1; } inline RuntimeObject ** get_address_of_async_state_1() { return &___async_state_1; } inline void set_async_state_1(RuntimeObject * value) { ___async_state_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___async_state_1), (void*)value); } inline static int32_t get_offset_of_wait_handle_2() { return static_cast(offsetof(IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9, ___wait_handle_2)); } inline ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * get_wait_handle_2() const { return ___wait_handle_2; } inline ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA ** get_address_of_wait_handle_2() { return &___wait_handle_2; } inline void set_wait_handle_2(ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * value) { ___wait_handle_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___wait_handle_2), (void*)value); } inline static int32_t get_offset_of_completed_synchronously_3() { return static_cast(offsetof(IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9, ___completed_synchronously_3)); } inline bool get_completed_synchronously_3() const { return ___completed_synchronously_3; } inline bool* get_address_of_completed_synchronously_3() { return &___completed_synchronously_3; } inline void set_completed_synchronously_3(bool value) { ___completed_synchronously_3 = value; } inline static int32_t get_offset_of_completed_4() { return static_cast(offsetof(IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9, ___completed_4)); } inline bool get_completed_4() const { return ___completed_4; } inline bool* get_address_of_completed_4() { return &___completed_4; } inline void set_completed_4(bool value) { ___completed_4 = value; } }; // Native definition for P/Invoke marshalling of System.IOAsyncResult struct IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9_marshaled_pinvoke { Il2CppMethodPointer ___async_callback_0; Il2CppIUnknown* ___async_state_1; ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * ___wait_handle_2; int32_t ___completed_synchronously_3; int32_t ___completed_4; }; // Native definition for COM marshalling of System.IOAsyncResult struct IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9_marshaled_com { Il2CppMethodPointer ___async_callback_0; Il2CppIUnknown* ___async_state_1; ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * ___wait_handle_2; int32_t ___completed_synchronously_3; int32_t ___completed_4; }; // System.IOSelector struct IOSelector_tDA4C154DB655E4077799EF3B5BB1D8251FB7596E : public RuntimeObject { public: public: }; // System.Net.NetworkInformation.IPGlobalProperties struct IPGlobalProperties_tD2935E387BBC03382D35AD2B6288214CAB4095C5 : public RuntimeObject { public: public: }; struct IPGlobalProperties_tD2935E387BBC03382D35AD2B6288214CAB4095C5_StaticFields { public: // System.Boolean System.Net.NetworkInformation.IPGlobalProperties::k__BackingField bool ___U3CPlatformNeedsLibCWorkaroundU3Ek__BackingField_0; public: inline static int32_t get_offset_of_U3CPlatformNeedsLibCWorkaroundU3Ek__BackingField_0() { return static_cast(offsetof(IPGlobalProperties_tD2935E387BBC03382D35AD2B6288214CAB4095C5_StaticFields, ___U3CPlatformNeedsLibCWorkaroundU3Ek__BackingField_0)); } inline bool get_U3CPlatformNeedsLibCWorkaroundU3Ek__BackingField_0() const { return ___U3CPlatformNeedsLibCWorkaroundU3Ek__BackingField_0; } inline bool* get_address_of_U3CPlatformNeedsLibCWorkaroundU3Ek__BackingField_0() { return &___U3CPlatformNeedsLibCWorkaroundU3Ek__BackingField_0; } inline void set_U3CPlatformNeedsLibCWorkaroundU3Ek__BackingField_0(bool value) { ___U3CPlatformNeedsLibCWorkaroundU3Ek__BackingField_0 = value; } }; // System.Net.IPHostEntry struct IPHostEntry_tD787E3A1E0F633AC5A7761921DE4DC2A8EA117AA : public RuntimeObject { public: // System.String System.Net.IPHostEntry::hostName String_t* ___hostName_0; // System.String[] System.Net.IPHostEntry::aliases StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___aliases_1; // System.Net.IPAddress[] System.Net.IPHostEntry::addressList IPAddressU5BU5D_tCB5D2302BEB72DDB30825F9EF457D39EEA5001EB* ___addressList_2; // System.Boolean System.Net.IPHostEntry::isTrustedHost bool ___isTrustedHost_3; public: inline static int32_t get_offset_of_hostName_0() { return static_cast(offsetof(IPHostEntry_tD787E3A1E0F633AC5A7761921DE4DC2A8EA117AA, ___hostName_0)); } inline String_t* get_hostName_0() const { return ___hostName_0; } inline String_t** get_address_of_hostName_0() { return &___hostName_0; } inline void set_hostName_0(String_t* value) { ___hostName_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___hostName_0), (void*)value); } inline static int32_t get_offset_of_aliases_1() { return static_cast(offsetof(IPHostEntry_tD787E3A1E0F633AC5A7761921DE4DC2A8EA117AA, ___aliases_1)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_aliases_1() const { return ___aliases_1; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_aliases_1() { return &___aliases_1; } inline void set_aliases_1(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___aliases_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___aliases_1), (void*)value); } inline static int32_t get_offset_of_addressList_2() { return static_cast(offsetof(IPHostEntry_tD787E3A1E0F633AC5A7761921DE4DC2A8EA117AA, ___addressList_2)); } inline IPAddressU5BU5D_tCB5D2302BEB72DDB30825F9EF457D39EEA5001EB* get_addressList_2() const { return ___addressList_2; } inline IPAddressU5BU5D_tCB5D2302BEB72DDB30825F9EF457D39EEA5001EB** get_address_of_addressList_2() { return &___addressList_2; } inline void set_addressList_2(IPAddressU5BU5D_tCB5D2302BEB72DDB30825F9EF457D39EEA5001EB* value) { ___addressList_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___addressList_2), (void*)value); } inline static int32_t get_offset_of_isTrustedHost_3() { return static_cast(offsetof(IPHostEntry_tD787E3A1E0F633AC5A7761921DE4DC2A8EA117AA, ___isTrustedHost_3)); } inline bool get_isTrustedHost_3() const { return ___isTrustedHost_3; } inline bool* get_address_of_isTrustedHost_3() { return &___isTrustedHost_3; } inline void set_isTrustedHost_3(bool value) { ___isTrustedHost_3 = value; } }; // System.IPv4AddressHelper struct IPv4AddressHelper_t4B938CAAC41403B8BD51FC7748C59B08F87F10A3 : public RuntimeObject { public: public: }; // System.IPv6AddressHelper struct IPv6AddressHelper_t244F54FD493D7448D3B860F972A6E81DE9FDB33D : public RuntimeObject { public: public: }; // System.Net.Sockets.IPv6MulticastOption struct IPv6MulticastOption_t90BAC5890E4B186A4279BA4173F5AF8CA02286F1 : public RuntimeObject { public: public: }; // System.Configuration.IgnoreSectionHandler struct IgnoreSectionHandler_t6862843DEA1A377EA94DB541DEFA7814555A5CFB : public RuntimeObject { public: public: }; // System.ComponentModel.InstanceCreationEditor struct InstanceCreationEditor_t22B63469633720EF22CB85610016675F525660EF : public RuntimeObject { public: public: }; // System.ComponentModel.Design.Serialization.InstanceDescriptor struct InstanceDescriptor_tC4566EF05EA27C1ADEF2ACC405AA2ADEB7A31C81 : public RuntimeObject { public: // System.Reflection.MemberInfo System.ComponentModel.Design.Serialization.InstanceDescriptor::member MemberInfo_t * ___member_0; // System.Collections.ICollection System.ComponentModel.Design.Serialization.InstanceDescriptor::arguments RuntimeObject* ___arguments_1; // System.Boolean System.ComponentModel.Design.Serialization.InstanceDescriptor::isComplete bool ___isComplete_2; public: inline static int32_t get_offset_of_member_0() { return static_cast(offsetof(InstanceDescriptor_tC4566EF05EA27C1ADEF2ACC405AA2ADEB7A31C81, ___member_0)); } inline MemberInfo_t * get_member_0() const { return ___member_0; } inline MemberInfo_t ** get_address_of_member_0() { return &___member_0; } inline void set_member_0(MemberInfo_t * value) { ___member_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___member_0), (void*)value); } inline static int32_t get_offset_of_arguments_1() { return static_cast(offsetof(InstanceDescriptor_tC4566EF05EA27C1ADEF2ACC405AA2ADEB7A31C81, ___arguments_1)); } inline RuntimeObject* get_arguments_1() const { return ___arguments_1; } inline RuntimeObject** get_address_of_arguments_1() { return &___arguments_1; } inline void set_arguments_1(RuntimeObject* value) { ___arguments_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___arguments_1), (void*)value); } inline static int32_t get_offset_of_isComplete_2() { return static_cast(offsetof(InstanceDescriptor_tC4566EF05EA27C1ADEF2ACC405AA2ADEB7A31C81, ___isComplete_2)); } inline bool get_isComplete_2() const { return ___isComplete_2; } inline bool* get_address_of_isComplete_2() { return &___isComplete_2; } inline void set_isComplete_2(bool value) { ___isComplete_2 = value; } }; // System.ComponentModel.IntSecurity struct IntSecurity_t715909B42ACC6294E176F76C3C4A6F2CF669E8AB : public RuntimeObject { public: public: }; // System.IO.Ports.InternalResources struct InternalResources_t8E7FA196A859831DDC1B46B87BBEE36EBC6931E9 : public RuntimeObject { public: public: }; // System.InvariantComparer struct InvariantComparer_tE1CE2D4C00592623FA9BCEBA4990245E775A032E : public RuntimeObject { public: // System.Globalization.CompareInfo System.InvariantComparer::m_compareInfo CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * ___m_compareInfo_0; public: inline static int32_t get_offset_of_m_compareInfo_0() { return static_cast(offsetof(InvariantComparer_tE1CE2D4C00592623FA9BCEBA4990245E775A032E, ___m_compareInfo_0)); } inline CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * get_m_compareInfo_0() const { return ___m_compareInfo_0; } inline CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 ** get_address_of_m_compareInfo_0() { return &___m_compareInfo_0; } inline void set_m_compareInfo_0(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * value) { ___m_compareInfo_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_compareInfo_0), (void*)value); } }; struct InvariantComparer_tE1CE2D4C00592623FA9BCEBA4990245E775A032E_StaticFields { public: // System.InvariantComparer System.InvariantComparer::Default InvariantComparer_tE1CE2D4C00592623FA9BCEBA4990245E775A032E * ___Default_1; public: inline static int32_t get_offset_of_Default_1() { return static_cast(offsetof(InvariantComparer_tE1CE2D4C00592623FA9BCEBA4990245E775A032E_StaticFields, ___Default_1)); } inline InvariantComparer_tE1CE2D4C00592623FA9BCEBA4990245E775A032E * get_Default_1() const { return ___Default_1; } inline InvariantComparer_tE1CE2D4C00592623FA9BCEBA4990245E775A032E ** get_address_of_Default_1() { return &___Default_1; } inline void set_Default_1(InvariantComparer_tE1CE2D4C00592623FA9BCEBA4990245E775A032E * value) { ___Default_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Default_1), (void*)value); } }; // System.IriHelper struct IriHelper_t2C0194D72F3C5A4360E2433426D08654618E09CC : public RuntimeObject { public: public: }; // System.Net.LazyAsyncResult struct LazyAsyncResult_t4203C3EF8ACCFBDEE0B5209D86AD466A95A36B32 : public RuntimeObject { public: // System.Object System.Net.LazyAsyncResult::m_AsyncObject RuntimeObject * ___m_AsyncObject_1; // System.Object System.Net.LazyAsyncResult::m_AsyncState RuntimeObject * ___m_AsyncState_2; // System.AsyncCallback System.Net.LazyAsyncResult::m_AsyncCallback AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___m_AsyncCallback_3; // System.Object System.Net.LazyAsyncResult::m_Result RuntimeObject * ___m_Result_4; // System.Int32 System.Net.LazyAsyncResult::m_IntCompleted int32_t ___m_IntCompleted_5; // System.Boolean System.Net.LazyAsyncResult::m_UserEvent bool ___m_UserEvent_6; // System.Object System.Net.LazyAsyncResult::m_Event RuntimeObject * ___m_Event_7; public: inline static int32_t get_offset_of_m_AsyncObject_1() { return static_cast(offsetof(LazyAsyncResult_t4203C3EF8ACCFBDEE0B5209D86AD466A95A36B32, ___m_AsyncObject_1)); } inline RuntimeObject * get_m_AsyncObject_1() const { return ___m_AsyncObject_1; } inline RuntimeObject ** get_address_of_m_AsyncObject_1() { return &___m_AsyncObject_1; } inline void set_m_AsyncObject_1(RuntimeObject * value) { ___m_AsyncObject_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_AsyncObject_1), (void*)value); } inline static int32_t get_offset_of_m_AsyncState_2() { return static_cast(offsetof(LazyAsyncResult_t4203C3EF8ACCFBDEE0B5209D86AD466A95A36B32, ___m_AsyncState_2)); } inline RuntimeObject * get_m_AsyncState_2() const { return ___m_AsyncState_2; } inline RuntimeObject ** get_address_of_m_AsyncState_2() { return &___m_AsyncState_2; } inline void set_m_AsyncState_2(RuntimeObject * value) { ___m_AsyncState_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_AsyncState_2), (void*)value); } inline static int32_t get_offset_of_m_AsyncCallback_3() { return static_cast(offsetof(LazyAsyncResult_t4203C3EF8ACCFBDEE0B5209D86AD466A95A36B32, ___m_AsyncCallback_3)); } inline AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * get_m_AsyncCallback_3() const { return ___m_AsyncCallback_3; } inline AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA ** get_address_of_m_AsyncCallback_3() { return &___m_AsyncCallback_3; } inline void set_m_AsyncCallback_3(AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * value) { ___m_AsyncCallback_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_AsyncCallback_3), (void*)value); } inline static int32_t get_offset_of_m_Result_4() { return static_cast(offsetof(LazyAsyncResult_t4203C3EF8ACCFBDEE0B5209D86AD466A95A36B32, ___m_Result_4)); } inline RuntimeObject * get_m_Result_4() const { return ___m_Result_4; } inline RuntimeObject ** get_address_of_m_Result_4() { return &___m_Result_4; } inline void set_m_Result_4(RuntimeObject * value) { ___m_Result_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Result_4), (void*)value); } inline static int32_t get_offset_of_m_IntCompleted_5() { return static_cast(offsetof(LazyAsyncResult_t4203C3EF8ACCFBDEE0B5209D86AD466A95A36B32, ___m_IntCompleted_5)); } inline int32_t get_m_IntCompleted_5() const { return ___m_IntCompleted_5; } inline int32_t* get_address_of_m_IntCompleted_5() { return &___m_IntCompleted_5; } inline void set_m_IntCompleted_5(int32_t value) { ___m_IntCompleted_5 = value; } inline static int32_t get_offset_of_m_UserEvent_6() { return static_cast(offsetof(LazyAsyncResult_t4203C3EF8ACCFBDEE0B5209D86AD466A95A36B32, ___m_UserEvent_6)); } inline bool get_m_UserEvent_6() const { return ___m_UserEvent_6; } inline bool* get_address_of_m_UserEvent_6() { return &___m_UserEvent_6; } inline void set_m_UserEvent_6(bool value) { ___m_UserEvent_6 = value; } inline static int32_t get_offset_of_m_Event_7() { return static_cast(offsetof(LazyAsyncResult_t4203C3EF8ACCFBDEE0B5209D86AD466A95A36B32, ___m_Event_7)); } inline RuntimeObject * get_m_Event_7() const { return ___m_Event_7; } inline RuntimeObject ** get_address_of_m_Event_7() { return &___m_Event_7; } inline void set_m_Event_7(RuntimeObject * value) { ___m_Event_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Event_7), (void*)value); } }; struct LazyAsyncResult_t4203C3EF8ACCFBDEE0B5209D86AD466A95A36B32_ThreadStaticFields { public: // System.Net.LazyAsyncResult/ThreadContext System.Net.LazyAsyncResult::t_ThreadContext ThreadContext_tB361ABC018EE4C7009FD3A3A5D39D2346A1B5FA3 * ___t_ThreadContext_0; public: inline static int32_t get_offset_of_t_ThreadContext_0() { return static_cast(offsetof(LazyAsyncResult_t4203C3EF8ACCFBDEE0B5209D86AD466A95A36B32_ThreadStaticFields, ___t_ThreadContext_0)); } inline ThreadContext_tB361ABC018EE4C7009FD3A3A5D39D2346A1B5FA3 * get_t_ThreadContext_0() const { return ___t_ThreadContext_0; } inline ThreadContext_tB361ABC018EE4C7009FD3A3A5D39D2346A1B5FA3 ** get_address_of_t_ThreadContext_0() { return &___t_ThreadContext_0; } inline void set_t_ThreadContext_0(ThreadContext_tB361ABC018EE4C7009FD3A3A5D39D2346A1B5FA3 * value) { ___t_ThreadContext_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___t_ThreadContext_0), (void*)value); } }; // System.ComponentModel.License struct License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 : public RuntimeObject { public: public: }; // System.ComponentModel.LicenseContext struct LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF : public RuntimeObject { public: public: }; // System.ComponentModel.LicenseManager struct LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A : public RuntimeObject { public: public: }; struct LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields { public: // System.Object System.ComponentModel.LicenseManager::selfLock RuntimeObject * ___selfLock_0; // System.ComponentModel.LicenseContext modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.LicenseManager::context LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * ___context_1; // System.Object System.ComponentModel.LicenseManager::contextLockHolder RuntimeObject * ___contextLockHolder_2; // System.Collections.Hashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.LicenseManager::providers Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___providers_3; // System.Collections.Hashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.LicenseManager::providerInstances Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___providerInstances_4; // System.Object System.ComponentModel.LicenseManager::internalSyncObject RuntimeObject * ___internalSyncObject_5; public: inline static int32_t get_offset_of_selfLock_0() { return static_cast(offsetof(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields, ___selfLock_0)); } inline RuntimeObject * get_selfLock_0() const { return ___selfLock_0; } inline RuntimeObject ** get_address_of_selfLock_0() { return &___selfLock_0; } inline void set_selfLock_0(RuntimeObject * value) { ___selfLock_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___selfLock_0), (void*)value); } inline static int32_t get_offset_of_context_1() { return static_cast(offsetof(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields, ___context_1)); } inline LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * get_context_1() const { return ___context_1; } inline LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF ** get_address_of_context_1() { return &___context_1; } inline void set_context_1(LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * value) { ___context_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___context_1), (void*)value); } inline static int32_t get_offset_of_contextLockHolder_2() { return static_cast(offsetof(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields, ___contextLockHolder_2)); } inline RuntimeObject * get_contextLockHolder_2() const { return ___contextLockHolder_2; } inline RuntimeObject ** get_address_of_contextLockHolder_2() { return &___contextLockHolder_2; } inline void set_contextLockHolder_2(RuntimeObject * value) { ___contextLockHolder_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___contextLockHolder_2), (void*)value); } inline static int32_t get_offset_of_providers_3() { return static_cast(offsetof(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields, ___providers_3)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_providers_3() const { return ___providers_3; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_providers_3() { return &___providers_3; } inline void set_providers_3(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___providers_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___providers_3), (void*)value); } inline static int32_t get_offset_of_providerInstances_4() { return static_cast(offsetof(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields, ___providerInstances_4)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_providerInstances_4() const { return ___providerInstances_4; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_providerInstances_4() { return &___providerInstances_4; } inline void set_providerInstances_4(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___providerInstances_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___providerInstances_4), (void*)value); } inline static int32_t get_offset_of_internalSyncObject_5() { return static_cast(offsetof(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields, ___internalSyncObject_5)); } inline RuntimeObject * get_internalSyncObject_5() const { return ___internalSyncObject_5; } inline RuntimeObject ** get_address_of_internalSyncObject_5() { return &___internalSyncObject_5; } inline void set_internalSyncObject_5(RuntimeObject * value) { ___internalSyncObject_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___internalSyncObject_5), (void*)value); } }; // System.ComponentModel.LicenseProvider struct LicenseProvider_tBC40978A52764598AA24EC34F19F002CAECD7A10 : public RuntimeObject { public: public: }; // System.Net.Sockets.LingerOption struct LingerOption_t4E191E63AB49943D401B71B3E7830E6586CE0E34 : public RuntimeObject { public: // System.Boolean System.Net.Sockets.LingerOption::enabled bool ___enabled_0; // System.Int32 System.Net.Sockets.LingerOption::lingerTime int32_t ___lingerTime_1; public: inline static int32_t get_offset_of_enabled_0() { return static_cast(offsetof(LingerOption_t4E191E63AB49943D401B71B3E7830E6586CE0E34, ___enabled_0)); } inline bool get_enabled_0() const { return ___enabled_0; } inline bool* get_address_of_enabled_0() { return &___enabled_0; } inline void set_enabled_0(bool value) { ___enabled_0 = value; } inline static int32_t get_offset_of_lingerTime_1() { return static_cast(offsetof(LingerOption_t4E191E63AB49943D401B71B3E7830E6586CE0E34, ___lingerTime_1)); } inline int32_t get_lingerTime_1() const { return ___lingerTime_1; } inline int32_t* get_address_of_lingerTime_1() { return &___lingerTime_1; } inline void set_lingerTime_1(int32_t value) { ___lingerTime_1 = value; } }; // System.Collections.Specialized.ListDictionary struct ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B : public RuntimeObject { public: // System.Collections.Specialized.ListDictionary/DictionaryNode System.Collections.Specialized.ListDictionary::head DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * ___head_0; // System.Int32 System.Collections.Specialized.ListDictionary::version int32_t ___version_1; // System.Int32 System.Collections.Specialized.ListDictionary::count int32_t ___count_2; // System.Collections.IComparer System.Collections.Specialized.ListDictionary::comparer RuntimeObject* ___comparer_3; // System.Object System.Collections.Specialized.ListDictionary::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of_head_0() { return static_cast(offsetof(ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B, ___head_0)); } inline DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * get_head_0() const { return ___head_0; } inline DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 ** get_address_of_head_0() { return &___head_0; } inline void set_head_0(DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * value) { ___head_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___head_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast(offsetof(ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_count_2() { return static_cast(offsetof(ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_comparer_3() { return static_cast(offsetof(ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B, ___comparer_3)); } inline RuntimeObject* get_comparer_3() const { return ___comparer_3; } inline RuntimeObject** get_address_of_comparer_3() { return &___comparer_3; } inline void set_comparer_3(RuntimeObject* value) { ___comparer_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_3), (void*)value); } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; // System.ComponentModel.ListSortDescriptionCollection struct ListSortDescriptionCollection_tC9C0CEDAF9496F7A1A7E6F665189295CE400F60A : public RuntimeObject { public: // System.Collections.ArrayList System.ComponentModel.ListSortDescriptionCollection::sorts ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___sorts_0; public: inline static int32_t get_offset_of_sorts_0() { return static_cast(offsetof(ListSortDescriptionCollection_tC9C0CEDAF9496F7A1A7E6F665189295CE400F60A, ___sorts_0)); } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * get_sorts_0() const { return ___sorts_0; } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** get_address_of_sorts_0() { return &___sorts_0; } inline void set_sorts_0(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * value) { ___sorts_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___sorts_0), (void*)value); } }; // System.LocalAppContextSwitches struct LocalAppContextSwitches_t73419A96BC3A7B8FC35572814017A8FD6F34E360 : public RuntimeObject { public: public: }; struct LocalAppContextSwitches_t73419A96BC3A7B8FC35572814017A8FD6F34E360_StaticFields { public: // System.Boolean System.LocalAppContextSwitches::MemberDescriptorEqualsReturnsFalseIfEquivalent bool ___MemberDescriptorEqualsReturnsFalseIfEquivalent_0; public: inline static int32_t get_offset_of_MemberDescriptorEqualsReturnsFalseIfEquivalent_0() { return static_cast(offsetof(LocalAppContextSwitches_t73419A96BC3A7B8FC35572814017A8FD6F34E360_StaticFields, ___MemberDescriptorEqualsReturnsFalseIfEquivalent_0)); } inline bool get_MemberDescriptorEqualsReturnsFalseIfEquivalent_0() const { return ___MemberDescriptorEqualsReturnsFalseIfEquivalent_0; } inline bool* get_address_of_MemberDescriptorEqualsReturnsFalseIfEquivalent_0() { return &___MemberDescriptorEqualsReturnsFalseIfEquivalent_0; } inline void set_MemberDescriptorEqualsReturnsFalseIfEquivalent_0(bool value) { ___MemberDescriptorEqualsReturnsFalseIfEquivalent_0 = value; } }; // System.Net.Logging struct Logging_t12BBF55CE83CB41FB960728A60BC0F866F8907D0 : public RuntimeObject { public: public: }; struct Logging_t12BBF55CE83CB41FB960728A60BC0F866F8907D0_StaticFields { public: // System.Boolean System.Net.Logging::On bool ___On_0; public: inline static int32_t get_offset_of_On_0() { return static_cast(offsetof(Logging_t12BBF55CE83CB41FB960728A60BC0F866F8907D0_StaticFields, ___On_0)); } inline bool get_On_0() const { return ___On_0; } inline bool* get_address_of_On_0() { return &___On_0; } inline void set_On_0(bool value) { ___On_0 = value; } }; // System.MarshalByRefObject struct MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 : public RuntimeObject { public: // System.Object System.MarshalByRefObject::_identity RuntimeObject * ____identity_0; public: inline static int32_t get_offset_of__identity_0() { return static_cast(offsetof(MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8, ____identity_0)); } inline RuntimeObject * get__identity_0() const { return ____identity_0; } inline RuntimeObject ** get_address_of__identity_0() { return &____identity_0; } inline void set__identity_0(RuntimeObject * value) { ____identity_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____identity_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.MarshalByRefObject struct MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8_marshaled_pinvoke { Il2CppIUnknown* ____identity_0; }; // Native definition for COM marshalling of System.MarshalByRefObject struct MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8_marshaled_com { Il2CppIUnknown* ____identity_0; }; // System.ComponentModel.MemberDescriptor struct MemberDescriptor_t92E4AE18636FFD5150830060BBA071CCF3A67A6F : public RuntimeObject { public: // System.String System.ComponentModel.MemberDescriptor::name String_t* ___name_0; // System.String System.ComponentModel.MemberDescriptor::displayName String_t* ___displayName_1; // System.Int32 System.ComponentModel.MemberDescriptor::nameHash int32_t ___nameHash_2; // System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::attributeCollection AttributeCollection_tF551C6836E2C7F849595B7EFAFDDD0C3A86BA62C * ___attributeCollection_3; // System.Attribute[] System.ComponentModel.MemberDescriptor::attributes AttributeU5BU5D_t04604A91F55E7DFF76B9AF6150E6597D2EBCDCD4* ___attributes_4; // System.Attribute[] System.ComponentModel.MemberDescriptor::originalAttributes AttributeU5BU5D_t04604A91F55E7DFF76B9AF6150E6597D2EBCDCD4* ___originalAttributes_5; // System.Boolean System.ComponentModel.MemberDescriptor::attributesFiltered bool ___attributesFiltered_6; // System.Boolean System.ComponentModel.MemberDescriptor::attributesFilled bool ___attributesFilled_7; // System.Int32 System.ComponentModel.MemberDescriptor::metadataVersion int32_t ___metadataVersion_8; // System.String System.ComponentModel.MemberDescriptor::category String_t* ___category_9; // System.String System.ComponentModel.MemberDescriptor::description String_t* ___description_10; // System.Object System.ComponentModel.MemberDescriptor::lockCookie RuntimeObject * ___lockCookie_11; public: inline static int32_t get_offset_of_name_0() { return static_cast(offsetof(MemberDescriptor_t92E4AE18636FFD5150830060BBA071CCF3A67A6F, ___name_0)); } inline String_t* get_name_0() const { return ___name_0; } inline String_t** get_address_of_name_0() { return &___name_0; } inline void set_name_0(String_t* value) { ___name_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value); } inline static int32_t get_offset_of_displayName_1() { return static_cast(offsetof(MemberDescriptor_t92E4AE18636FFD5150830060BBA071CCF3A67A6F, ___displayName_1)); } inline String_t* get_displayName_1() const { return ___displayName_1; } inline String_t** get_address_of_displayName_1() { return &___displayName_1; } inline void set_displayName_1(String_t* value) { ___displayName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___displayName_1), (void*)value); } inline static int32_t get_offset_of_nameHash_2() { return static_cast(offsetof(MemberDescriptor_t92E4AE18636FFD5150830060BBA071CCF3A67A6F, ___nameHash_2)); } inline int32_t get_nameHash_2() const { return ___nameHash_2; } inline int32_t* get_address_of_nameHash_2() { return &___nameHash_2; } inline void set_nameHash_2(int32_t value) { ___nameHash_2 = value; } inline static int32_t get_offset_of_attributeCollection_3() { return static_cast(offsetof(MemberDescriptor_t92E4AE18636FFD5150830060BBA071CCF3A67A6F, ___attributeCollection_3)); } inline AttributeCollection_tF551C6836E2C7F849595B7EFAFDDD0C3A86BA62C * get_attributeCollection_3() const { return ___attributeCollection_3; } inline AttributeCollection_tF551C6836E2C7F849595B7EFAFDDD0C3A86BA62C ** get_address_of_attributeCollection_3() { return &___attributeCollection_3; } inline void set_attributeCollection_3(AttributeCollection_tF551C6836E2C7F849595B7EFAFDDD0C3A86BA62C * value) { ___attributeCollection_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___attributeCollection_3), (void*)value); } inline static int32_t get_offset_of_attributes_4() { return static_cast(offsetof(MemberDescriptor_t92E4AE18636FFD5150830060BBA071CCF3A67A6F, ___attributes_4)); } inline AttributeU5BU5D_t04604A91F55E7DFF76B9AF6150E6597D2EBCDCD4* get_attributes_4() const { return ___attributes_4; } inline AttributeU5BU5D_t04604A91F55E7DFF76B9AF6150E6597D2EBCDCD4** get_address_of_attributes_4() { return &___attributes_4; } inline void set_attributes_4(AttributeU5BU5D_t04604A91F55E7DFF76B9AF6150E6597D2EBCDCD4* value) { ___attributes_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___attributes_4), (void*)value); } inline static int32_t get_offset_of_originalAttributes_5() { return static_cast(offsetof(MemberDescriptor_t92E4AE18636FFD5150830060BBA071CCF3A67A6F, ___originalAttributes_5)); } inline AttributeU5BU5D_t04604A91F55E7DFF76B9AF6150E6597D2EBCDCD4* get_originalAttributes_5() const { return ___originalAttributes_5; } inline AttributeU5BU5D_t04604A91F55E7DFF76B9AF6150E6597D2EBCDCD4** get_address_of_originalAttributes_5() { return &___originalAttributes_5; } inline void set_originalAttributes_5(AttributeU5BU5D_t04604A91F55E7DFF76B9AF6150E6597D2EBCDCD4* value) { ___originalAttributes_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___originalAttributes_5), (void*)value); } inline static int32_t get_offset_of_attributesFiltered_6() { return static_cast(offsetof(MemberDescriptor_t92E4AE18636FFD5150830060BBA071CCF3A67A6F, ___attributesFiltered_6)); } inline bool get_attributesFiltered_6() const { return ___attributesFiltered_6; } inline bool* get_address_of_attributesFiltered_6() { return &___attributesFiltered_6; } inline void set_attributesFiltered_6(bool value) { ___attributesFiltered_6 = value; } inline static int32_t get_offset_of_attributesFilled_7() { return static_cast(offsetof(MemberDescriptor_t92E4AE18636FFD5150830060BBA071CCF3A67A6F, ___attributesFilled_7)); } inline bool get_attributesFilled_7() const { return ___attributesFilled_7; } inline bool* get_address_of_attributesFilled_7() { return &___attributesFilled_7; } inline void set_attributesFilled_7(bool value) { ___attributesFilled_7 = value; } inline static int32_t get_offset_of_metadataVersion_8() { return static_cast(offsetof(MemberDescriptor_t92E4AE18636FFD5150830060BBA071CCF3A67A6F, ___metadataVersion_8)); } inline int32_t get_metadataVersion_8() const { return ___metadataVersion_8; } inline int32_t* get_address_of_metadataVersion_8() { return &___metadataVersion_8; } inline void set_metadataVersion_8(int32_t value) { ___metadataVersion_8 = value; } inline static int32_t get_offset_of_category_9() { return static_cast(offsetof(MemberDescriptor_t92E4AE18636FFD5150830060BBA071CCF3A67A6F, ___category_9)); } inline String_t* get_category_9() const { return ___category_9; } inline String_t** get_address_of_category_9() { return &___category_9; } inline void set_category_9(String_t* value) { ___category_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___category_9), (void*)value); } inline static int32_t get_offset_of_description_10() { return static_cast(offsetof(MemberDescriptor_t92E4AE18636FFD5150830060BBA071CCF3A67A6F, ___description_10)); } inline String_t* get_description_10() const { return ___description_10; } inline String_t** get_address_of_description_10() { return &___description_10; } inline void set_description_10(String_t* value) { ___description_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___description_10), (void*)value); } inline static int32_t get_offset_of_lockCookie_11() { return static_cast(offsetof(MemberDescriptor_t92E4AE18636FFD5150830060BBA071CCF3A67A6F, ___lockCookie_11)); } inline RuntimeObject * get_lockCookie_11() const { return ___lockCookie_11; } inline RuntimeObject ** get_address_of_lockCookie_11() { return &___lockCookie_11; } inline void set_lockCookie_11(RuntimeObject * value) { ___lockCookie_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___lockCookie_11), (void*)value); } }; // System.Reflection.MemberInfo struct MemberInfo_t : public RuntimeObject { public: public: }; // Mono.Security.Interface.MonoTlsProvider struct MonoTlsProvider_tBE72637BEDBD1516A1BC30D94F7159B7289CF0D7 : public RuntimeObject { public: public: }; // System.Collections.Specialized.NameObjectCollectionBase struct NameObjectCollectionBase_t1317925F87C5856FA09F855B2B03D838DDC88D29 : public RuntimeObject { public: // System.Boolean System.Collections.Specialized.NameObjectCollectionBase::_readOnly bool ____readOnly_0; // System.Collections.ArrayList System.Collections.Specialized.NameObjectCollectionBase::_entriesArray ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ____entriesArray_1; // System.Collections.IEqualityComparer System.Collections.Specialized.NameObjectCollectionBase::_keyComparer RuntimeObject* ____keyComparer_2; // System.Collections.Hashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Specialized.NameObjectCollectionBase::_entriesTable Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ____entriesTable_3; // System.Collections.Specialized.NameObjectCollectionBase/NameObjectEntry modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Specialized.NameObjectCollectionBase::_nullKeyEntry NameObjectEntry_tB3CCC5A6F04E0522370F45A92233E91A5B9F4C22 * ____nullKeyEntry_4; // System.Runtime.Serialization.SerializationInfo System.Collections.Specialized.NameObjectCollectionBase::_serializationInfo SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ____serializationInfo_5; // System.Int32 System.Collections.Specialized.NameObjectCollectionBase::_version int32_t ____version_6; // System.Object System.Collections.Specialized.NameObjectCollectionBase::_syncRoot RuntimeObject * ____syncRoot_7; public: inline static int32_t get_offset_of__readOnly_0() { return static_cast(offsetof(NameObjectCollectionBase_t1317925F87C5856FA09F855B2B03D838DDC88D29, ____readOnly_0)); } inline bool get__readOnly_0() const { return ____readOnly_0; } inline bool* get_address_of__readOnly_0() { return &____readOnly_0; } inline void set__readOnly_0(bool value) { ____readOnly_0 = value; } inline static int32_t get_offset_of__entriesArray_1() { return static_cast(offsetof(NameObjectCollectionBase_t1317925F87C5856FA09F855B2B03D838DDC88D29, ____entriesArray_1)); } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * get__entriesArray_1() const { return ____entriesArray_1; } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** get_address_of__entriesArray_1() { return &____entriesArray_1; } inline void set__entriesArray_1(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * value) { ____entriesArray_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____entriesArray_1), (void*)value); } inline static int32_t get_offset_of__keyComparer_2() { return static_cast(offsetof(NameObjectCollectionBase_t1317925F87C5856FA09F855B2B03D838DDC88D29, ____keyComparer_2)); } inline RuntimeObject* get__keyComparer_2() const { return ____keyComparer_2; } inline RuntimeObject** get_address_of__keyComparer_2() { return &____keyComparer_2; } inline void set__keyComparer_2(RuntimeObject* value) { ____keyComparer_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____keyComparer_2), (void*)value); } inline static int32_t get_offset_of__entriesTable_3() { return static_cast(offsetof(NameObjectCollectionBase_t1317925F87C5856FA09F855B2B03D838DDC88D29, ____entriesTable_3)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get__entriesTable_3() const { return ____entriesTable_3; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of__entriesTable_3() { return &____entriesTable_3; } inline void set__entriesTable_3(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ____entriesTable_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____entriesTable_3), (void*)value); } inline static int32_t get_offset_of__nullKeyEntry_4() { return static_cast(offsetof(NameObjectCollectionBase_t1317925F87C5856FA09F855B2B03D838DDC88D29, ____nullKeyEntry_4)); } inline NameObjectEntry_tB3CCC5A6F04E0522370F45A92233E91A5B9F4C22 * get__nullKeyEntry_4() const { return ____nullKeyEntry_4; } inline NameObjectEntry_tB3CCC5A6F04E0522370F45A92233E91A5B9F4C22 ** get_address_of__nullKeyEntry_4() { return &____nullKeyEntry_4; } inline void set__nullKeyEntry_4(NameObjectEntry_tB3CCC5A6F04E0522370F45A92233E91A5B9F4C22 * value) { ____nullKeyEntry_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____nullKeyEntry_4), (void*)value); } inline static int32_t get_offset_of__serializationInfo_5() { return static_cast(offsetof(NameObjectCollectionBase_t1317925F87C5856FA09F855B2B03D838DDC88D29, ____serializationInfo_5)); } inline SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * get__serializationInfo_5() const { return ____serializationInfo_5; } inline SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 ** get_address_of__serializationInfo_5() { return &____serializationInfo_5; } inline void set__serializationInfo_5(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * value) { ____serializationInfo_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____serializationInfo_5), (void*)value); } inline static int32_t get_offset_of__version_6() { return static_cast(offsetof(NameObjectCollectionBase_t1317925F87C5856FA09F855B2B03D838DDC88D29, ____version_6)); } inline int32_t get__version_6() const { return ____version_6; } inline int32_t* get_address_of__version_6() { return &____version_6; } inline void set__version_6(int32_t value) { ____version_6 = value; } inline static int32_t get_offset_of__syncRoot_7() { return static_cast(offsetof(NameObjectCollectionBase_t1317925F87C5856FA09F855B2B03D838DDC88D29, ____syncRoot_7)); } inline RuntimeObject * get__syncRoot_7() const { return ____syncRoot_7; } inline RuntimeObject ** get_address_of__syncRoot_7() { return &____syncRoot_7; } inline void set__syncRoot_7(RuntimeObject * value) { ____syncRoot_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_7), (void*)value); } }; struct NameObjectCollectionBase_t1317925F87C5856FA09F855B2B03D838DDC88D29_StaticFields { public: // System.StringComparer System.Collections.Specialized.NameObjectCollectionBase::defaultComparer StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * ___defaultComparer_8; public: inline static int32_t get_offset_of_defaultComparer_8() { return static_cast(offsetof(NameObjectCollectionBase_t1317925F87C5856FA09F855B2B03D838DDC88D29_StaticFields, ___defaultComparer_8)); } inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * get_defaultComparer_8() const { return ___defaultComparer_8; } inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 ** get_address_of_defaultComparer_8() { return &___defaultComparer_8; } inline void set_defaultComparer_8(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * value) { ___defaultComparer_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_8), (void*)value); } }; // System.Net.NetworkCredential struct NetworkCredential_t263CA6068540C6DA0E1CDE919BD7A15C28D55686 : public RuntimeObject { public: // System.String System.Net.NetworkCredential::m_domain String_t* ___m_domain_0; // System.String System.Net.NetworkCredential::m_userName String_t* ___m_userName_1; // System.Security.SecureString System.Net.NetworkCredential::m_password SecureString_t19F65D6480BBCE2D5F24F21B7F4E6C7841698D94 * ___m_password_2; public: inline static int32_t get_offset_of_m_domain_0() { return static_cast(offsetof(NetworkCredential_t263CA6068540C6DA0E1CDE919BD7A15C28D55686, ___m_domain_0)); } inline String_t* get_m_domain_0() const { return ___m_domain_0; } inline String_t** get_address_of_m_domain_0() { return &___m_domain_0; } inline void set_m_domain_0(String_t* value) { ___m_domain_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_domain_0), (void*)value); } inline static int32_t get_offset_of_m_userName_1() { return static_cast(offsetof(NetworkCredential_t263CA6068540C6DA0E1CDE919BD7A15C28D55686, ___m_userName_1)); } inline String_t* get_m_userName_1() const { return ___m_userName_1; } inline String_t** get_address_of_m_userName_1() { return &___m_userName_1; } inline void set_m_userName_1(String_t* value) { ___m_userName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_userName_1), (void*)value); } inline static int32_t get_offset_of_m_password_2() { return static_cast(offsetof(NetworkCredential_t263CA6068540C6DA0E1CDE919BD7A15C28D55686, ___m_password_2)); } inline SecureString_t19F65D6480BBCE2D5F24F21B7F4E6C7841698D94 * get_m_password_2() const { return ___m_password_2; } inline SecureString_t19F65D6480BBCE2D5F24F21B7F4E6C7841698D94 ** get_address_of_m_password_2() { return &___m_password_2; } inline void set_m_password_2(SecureString_t19F65D6480BBCE2D5F24F21B7F4E6C7841698D94 * value) { ___m_password_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_password_2), (void*)value); } }; // System.Configuration.Provider.ProviderBase struct ProviderBase_t75D5AF714666B4C010B8ED3B53ECB10D3171C148 : public RuntimeObject { public: public: }; // System.Runtime.Serialization.SerializationInfo struct SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 : public RuntimeObject { public: // System.String[] System.Runtime.Serialization.SerializationInfo::m_members StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___m_members_3; // System.Object[] System.Runtime.Serialization.SerializationInfo::m_data ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___m_data_4; // System.Type[] System.Runtime.Serialization.SerializationInfo::m_types TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___m_types_5; // System.Collections.Generic.Dictionary`2 System.Runtime.Serialization.SerializationInfo::m_nameToIndex Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * ___m_nameToIndex_6; // System.Int32 System.Runtime.Serialization.SerializationInfo::m_currMember int32_t ___m_currMember_7; // System.Runtime.Serialization.IFormatterConverter System.Runtime.Serialization.SerializationInfo::m_converter RuntimeObject* ___m_converter_8; // System.String System.Runtime.Serialization.SerializationInfo::m_fullTypeName String_t* ___m_fullTypeName_9; // System.String System.Runtime.Serialization.SerializationInfo::m_assemName String_t* ___m_assemName_10; // System.Type System.Runtime.Serialization.SerializationInfo::objectType Type_t * ___objectType_11; // System.Boolean System.Runtime.Serialization.SerializationInfo::isFullTypeNameSetExplicit bool ___isFullTypeNameSetExplicit_12; // System.Boolean System.Runtime.Serialization.SerializationInfo::isAssemblyNameSetExplicit bool ___isAssemblyNameSetExplicit_13; // System.Boolean System.Runtime.Serialization.SerializationInfo::requireSameTokenInPartialTrust bool ___requireSameTokenInPartialTrust_14; public: inline static int32_t get_offset_of_m_members_3() { return static_cast(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___m_members_3)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_m_members_3() const { return ___m_members_3; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_m_members_3() { return &___m_members_3; } inline void set_m_members_3(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___m_members_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_members_3), (void*)value); } inline static int32_t get_offset_of_m_data_4() { return static_cast(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___m_data_4)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_m_data_4() const { return ___m_data_4; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_m_data_4() { return &___m_data_4; } inline void set_m_data_4(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ___m_data_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_data_4), (void*)value); } inline static int32_t get_offset_of_m_types_5() { return static_cast(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___m_types_5)); } inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* get_m_types_5() const { return ___m_types_5; } inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755** get_address_of_m_types_5() { return &___m_types_5; } inline void set_m_types_5(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* value) { ___m_types_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_types_5), (void*)value); } inline static int32_t get_offset_of_m_nameToIndex_6() { return static_cast(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___m_nameToIndex_6)); } inline Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * get_m_nameToIndex_6() const { return ___m_nameToIndex_6; } inline Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 ** get_address_of_m_nameToIndex_6() { return &___m_nameToIndex_6; } inline void set_m_nameToIndex_6(Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * value) { ___m_nameToIndex_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_nameToIndex_6), (void*)value); } inline static int32_t get_offset_of_m_currMember_7() { return static_cast(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___m_currMember_7)); } inline int32_t get_m_currMember_7() const { return ___m_currMember_7; } inline int32_t* get_address_of_m_currMember_7() { return &___m_currMember_7; } inline void set_m_currMember_7(int32_t value) { ___m_currMember_7 = value; } inline static int32_t get_offset_of_m_converter_8() { return static_cast(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___m_converter_8)); } inline RuntimeObject* get_m_converter_8() const { return ___m_converter_8; } inline RuntimeObject** get_address_of_m_converter_8() { return &___m_converter_8; } inline void set_m_converter_8(RuntimeObject* value) { ___m_converter_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_converter_8), (void*)value); } inline static int32_t get_offset_of_m_fullTypeName_9() { return static_cast(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___m_fullTypeName_9)); } inline String_t* get_m_fullTypeName_9() const { return ___m_fullTypeName_9; } inline String_t** get_address_of_m_fullTypeName_9() { return &___m_fullTypeName_9; } inline void set_m_fullTypeName_9(String_t* value) { ___m_fullTypeName_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_fullTypeName_9), (void*)value); } inline static int32_t get_offset_of_m_assemName_10() { return static_cast(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___m_assemName_10)); } inline String_t* get_m_assemName_10() const { return ___m_assemName_10; } inline String_t** get_address_of_m_assemName_10() { return &___m_assemName_10; } inline void set_m_assemName_10(String_t* value) { ___m_assemName_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_assemName_10), (void*)value); } inline static int32_t get_offset_of_objectType_11() { return static_cast(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___objectType_11)); } inline Type_t * get_objectType_11() const { return ___objectType_11; } inline Type_t ** get_address_of_objectType_11() { return &___objectType_11; } inline void set_objectType_11(Type_t * value) { ___objectType_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___objectType_11), (void*)value); } inline static int32_t get_offset_of_isFullTypeNameSetExplicit_12() { return static_cast(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___isFullTypeNameSetExplicit_12)); } inline bool get_isFullTypeNameSetExplicit_12() const { return ___isFullTypeNameSetExplicit_12; } inline bool* get_address_of_isFullTypeNameSetExplicit_12() { return &___isFullTypeNameSetExplicit_12; } inline void set_isFullTypeNameSetExplicit_12(bool value) { ___isFullTypeNameSetExplicit_12 = value; } inline static int32_t get_offset_of_isAssemblyNameSetExplicit_13() { return static_cast(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___isAssemblyNameSetExplicit_13)); } inline bool get_isAssemblyNameSetExplicit_13() const { return ___isAssemblyNameSetExplicit_13; } inline bool* get_address_of_isAssemblyNameSetExplicit_13() { return &___isAssemblyNameSetExplicit_13; } inline void set_isAssemblyNameSetExplicit_13(bool value) { ___isAssemblyNameSetExplicit_13 = value; } inline static int32_t get_offset_of_requireSameTokenInPartialTrust_14() { return static_cast(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___requireSameTokenInPartialTrust_14)); } inline bool get_requireSameTokenInPartialTrust_14() const { return ___requireSameTokenInPartialTrust_14; } inline bool* get_address_of_requireSameTokenInPartialTrust_14() { return &___requireSameTokenInPartialTrust_14; } inline void set_requireSameTokenInPartialTrust_14(bool value) { ___requireSameTokenInPartialTrust_14 = value; } }; // System.Net.ServerCertValidationCallback struct ServerCertValidationCallback_t885D5EF5D7240832CCAD6FA7D59D4ED2DEAAB1FA : public RuntimeObject { public: // System.Net.Security.RemoteCertificateValidationCallback System.Net.ServerCertValidationCallback::m_ValidationCallback RemoteCertificateValidationCallback_t69AACF4DA933279BC0F7916FB62BC05A5DC5A947 * ___m_ValidationCallback_0; // System.Threading.ExecutionContext System.Net.ServerCertValidationCallback::m_Context ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 * ___m_Context_1; public: inline static int32_t get_offset_of_m_ValidationCallback_0() { return static_cast(offsetof(ServerCertValidationCallback_t885D5EF5D7240832CCAD6FA7D59D4ED2DEAAB1FA, ___m_ValidationCallback_0)); } inline RemoteCertificateValidationCallback_t69AACF4DA933279BC0F7916FB62BC05A5DC5A947 * get_m_ValidationCallback_0() const { return ___m_ValidationCallback_0; } inline RemoteCertificateValidationCallback_t69AACF4DA933279BC0F7916FB62BC05A5DC5A947 ** get_address_of_m_ValidationCallback_0() { return &___m_ValidationCallback_0; } inline void set_m_ValidationCallback_0(RemoteCertificateValidationCallback_t69AACF4DA933279BC0F7916FB62BC05A5DC5A947 * value) { ___m_ValidationCallback_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ValidationCallback_0), (void*)value); } inline static int32_t get_offset_of_m_Context_1() { return static_cast(offsetof(ServerCertValidationCallback_t885D5EF5D7240832CCAD6FA7D59D4ED2DEAAB1FA, ___m_Context_1)); } inline ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 * get_m_Context_1() const { return ___m_Context_1; } inline ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 ** get_address_of_m_Context_1() { return &___m_Context_1; } inline void set_m_Context_1(ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 * value) { ___m_Context_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Context_1), (void*)value); } }; // System.Configuration.SettingsProperty struct SettingsProperty_t49ABB4711E749EAFCF3CC9B384856DC0517AB516 : public RuntimeObject { public: public: }; // System.Configuration.SettingsPropertyCollection struct SettingsPropertyCollection_t8242867D222B3304B7688232FCDE5D3DAA981843 : public RuntimeObject { public: public: }; // System.Configuration.SettingsPropertyValue struct SettingsPropertyValue_tFE3AAFDDA784805AD0C54228D8DF83F27F0C3DAA : public RuntimeObject { public: public: }; // System.Configuration.SettingsPropertyValueCollection struct SettingsPropertyValueCollection_t75B7CA0749D399914EB7A894EF753479F4164E73 : public RuntimeObject { public: public: }; // System.Net.SocketAddress struct SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 : public RuntimeObject { public: // System.Int32 System.Net.SocketAddress::m_Size int32_t ___m_Size_0; // System.Byte[] System.Net.SocketAddress::m_Buffer ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___m_Buffer_1; // System.Boolean System.Net.SocketAddress::m_changed bool ___m_changed_2; // System.Int32 System.Net.SocketAddress::m_hash int32_t ___m_hash_3; public: inline static int32_t get_offset_of_m_Size_0() { return static_cast(offsetof(SocketAddress_tE8FA33C91254662406767AF97518C235382742D3, ___m_Size_0)); } inline int32_t get_m_Size_0() const { return ___m_Size_0; } inline int32_t* get_address_of_m_Size_0() { return &___m_Size_0; } inline void set_m_Size_0(int32_t value) { ___m_Size_0 = value; } inline static int32_t get_offset_of_m_Buffer_1() { return static_cast(offsetof(SocketAddress_tE8FA33C91254662406767AF97518C235382742D3, ___m_Buffer_1)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_m_Buffer_1() const { return ___m_Buffer_1; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_m_Buffer_1() { return &___m_Buffer_1; } inline void set_m_Buffer_1(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___m_Buffer_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Buffer_1), (void*)value); } inline static int32_t get_offset_of_m_changed_2() { return static_cast(offsetof(SocketAddress_tE8FA33C91254662406767AF97518C235382742D3, ___m_changed_2)); } inline bool get_m_changed_2() const { return ___m_changed_2; } inline bool* get_address_of_m_changed_2() { return &___m_changed_2; } inline void set_m_changed_2(bool value) { ___m_changed_2 = value; } inline static int32_t get_offset_of_m_hash_3() { return static_cast(offsetof(SocketAddress_tE8FA33C91254662406767AF97518C235382742D3, ___m_hash_3)); } inline int32_t get_m_hash_3() const { return ___m_hash_3; } inline int32_t* get_address_of_m_hash_3() { return &___m_hash_3; } inline void set_m_hash_3(int32_t value) { ___m_hash_3 = value; } }; // System.String struct String_t : public RuntimeObject { public: // System.Int32 System.String::m_stringLength int32_t ___m_stringLength_0; // System.Char System.String::m_firstChar Il2CppChar ___m_firstChar_1; public: inline static int32_t get_offset_of_m_stringLength_0() { return static_cast(offsetof(String_t, ___m_stringLength_0)); } inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; } inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; } inline void set_m_stringLength_0(int32_t value) { ___m_stringLength_0 = value; } inline static int32_t get_offset_of_m_firstChar_1() { return static_cast(offsetof(String_t, ___m_firstChar_1)); } inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; } inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; } inline void set_m_firstChar_1(Il2CppChar value) { ___m_firstChar_1 = value; } }; struct String_t_StaticFields { public: // System.String System.String::Empty String_t* ___Empty_5; public: inline static int32_t get_offset_of_Empty_5() { return static_cast(offsetof(String_t_StaticFields, ___Empty_5)); } inline String_t* get_Empty_5() const { return ___Empty_5; } inline String_t** get_address_of_Empty_5() { return &___Empty_5; } inline void set_Empty_5(String_t* value) { ___Empty_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value); } }; // System.Text.StringBuilder struct StringBuilder_t : public RuntimeObject { public: // System.Char[] System.Text.StringBuilder::m_ChunkChars CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___m_ChunkChars_0; // System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious StringBuilder_t * ___m_ChunkPrevious_1; // System.Int32 System.Text.StringBuilder::m_ChunkLength int32_t ___m_ChunkLength_2; // System.Int32 System.Text.StringBuilder::m_ChunkOffset int32_t ___m_ChunkOffset_3; // System.Int32 System.Text.StringBuilder::m_MaxCapacity int32_t ___m_MaxCapacity_4; public: inline static int32_t get_offset_of_m_ChunkChars_0() { return static_cast(offsetof(StringBuilder_t, ___m_ChunkChars_0)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_m_ChunkChars_0() const { return ___m_ChunkChars_0; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_m_ChunkChars_0() { return &___m_ChunkChars_0; } inline void set_m_ChunkChars_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___m_ChunkChars_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkChars_0), (void*)value); } inline static int32_t get_offset_of_m_ChunkPrevious_1() { return static_cast(offsetof(StringBuilder_t, ___m_ChunkPrevious_1)); } inline StringBuilder_t * get_m_ChunkPrevious_1() const { return ___m_ChunkPrevious_1; } inline StringBuilder_t ** get_address_of_m_ChunkPrevious_1() { return &___m_ChunkPrevious_1; } inline void set_m_ChunkPrevious_1(StringBuilder_t * value) { ___m_ChunkPrevious_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkPrevious_1), (void*)value); } inline static int32_t get_offset_of_m_ChunkLength_2() { return static_cast(offsetof(StringBuilder_t, ___m_ChunkLength_2)); } inline int32_t get_m_ChunkLength_2() const { return ___m_ChunkLength_2; } inline int32_t* get_address_of_m_ChunkLength_2() { return &___m_ChunkLength_2; } inline void set_m_ChunkLength_2(int32_t value) { ___m_ChunkLength_2 = value; } inline static int32_t get_offset_of_m_ChunkOffset_3() { return static_cast(offsetof(StringBuilder_t, ___m_ChunkOffset_3)); } inline int32_t get_m_ChunkOffset_3() const { return ___m_ChunkOffset_3; } inline int32_t* get_address_of_m_ChunkOffset_3() { return &___m_ChunkOffset_3; } inline void set_m_ChunkOffset_3(int32_t value) { ___m_ChunkOffset_3 = value; } inline static int32_t get_offset_of_m_MaxCapacity_4() { return static_cast(offsetof(StringBuilder_t, ___m_MaxCapacity_4)); } inline int32_t get_m_MaxCapacity_4() const { return ___m_MaxCapacity_4; } inline int32_t* get_address_of_m_MaxCapacity_4() { return &___m_MaxCapacity_4; } inline void set_m_MaxCapacity_4(int32_t value) { ___m_MaxCapacity_4 = value; } }; // System.Collections.Specialized.StringCollection struct StringCollection_tA998B5DFD2921A16BBD33D32B8F6CCFFCEB6537E : public RuntimeObject { public: // System.Collections.ArrayList System.Collections.Specialized.StringCollection::data ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___data_0; public: inline static int32_t get_offset_of_data_0() { return static_cast(offsetof(StringCollection_tA998B5DFD2921A16BBD33D32B8F6CCFFCEB6537E, ___data_0)); } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * get_data_0() const { return ___data_0; } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** get_address_of_data_0() { return &___data_0; } inline void set_data_0(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * value) { ___data_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___data_0), (void*)value); } }; // System.StringComparer struct StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 : public RuntimeObject { public: public: }; struct StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_StaticFields { public: // System.StringComparer System.StringComparer::_invariantCulture StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * ____invariantCulture_0; // System.StringComparer System.StringComparer::_invariantCultureIgnoreCase StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * ____invariantCultureIgnoreCase_1; // System.StringComparer System.StringComparer::_ordinal StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * ____ordinal_2; // System.StringComparer System.StringComparer::_ordinalIgnoreCase StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * ____ordinalIgnoreCase_3; public: inline static int32_t get_offset_of__invariantCulture_0() { return static_cast(offsetof(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_StaticFields, ____invariantCulture_0)); } inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * get__invariantCulture_0() const { return ____invariantCulture_0; } inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 ** get_address_of__invariantCulture_0() { return &____invariantCulture_0; } inline void set__invariantCulture_0(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * value) { ____invariantCulture_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____invariantCulture_0), (void*)value); } inline static int32_t get_offset_of__invariantCultureIgnoreCase_1() { return static_cast(offsetof(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_StaticFields, ____invariantCultureIgnoreCase_1)); } inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * get__invariantCultureIgnoreCase_1() const { return ____invariantCultureIgnoreCase_1; } inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 ** get_address_of__invariantCultureIgnoreCase_1() { return &____invariantCultureIgnoreCase_1; } inline void set__invariantCultureIgnoreCase_1(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * value) { ____invariantCultureIgnoreCase_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____invariantCultureIgnoreCase_1), (void*)value); } inline static int32_t get_offset_of__ordinal_2() { return static_cast(offsetof(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_StaticFields, ____ordinal_2)); } inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * get__ordinal_2() const { return ____ordinal_2; } inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 ** get_address_of__ordinal_2() { return &____ordinal_2; } inline void set__ordinal_2(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * value) { ____ordinal_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____ordinal_2), (void*)value); } inline static int32_t get_offset_of__ordinalIgnoreCase_3() { return static_cast(offsetof(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_StaticFields, ____ordinalIgnoreCase_3)); } inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * get__ordinalIgnoreCase_3() const { return ____ordinalIgnoreCase_3; } inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 ** get_address_of__ordinalIgnoreCase_3() { return &____ordinalIgnoreCase_3; } inline void set__ordinalIgnoreCase_3(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * value) { ____ordinalIgnoreCase_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____ordinalIgnoreCase_3), (void*)value); } }; // System.ValueType struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 : public RuntimeObject { public: public: }; // Native definition for P/Invoke marshalling of System.ValueType struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_pinvoke { }; // Native definition for COM marshalling of System.ValueType struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_com { }; // System.Version struct Version_tBDAEDED25425A1D09910468B8BD1759115646E3C : public RuntimeObject { public: // System.Int32 System.Version::_Major int32_t ____Major_0; // System.Int32 System.Version::_Minor int32_t ____Minor_1; // System.Int32 System.Version::_Build int32_t ____Build_2; // System.Int32 System.Version::_Revision int32_t ____Revision_3; public: inline static int32_t get_offset_of__Major_0() { return static_cast(offsetof(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C, ____Major_0)); } inline int32_t get__Major_0() const { return ____Major_0; } inline int32_t* get_address_of__Major_0() { return &____Major_0; } inline void set__Major_0(int32_t value) { ____Major_0 = value; } inline static int32_t get_offset_of__Minor_1() { return static_cast(offsetof(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C, ____Minor_1)); } inline int32_t get__Minor_1() const { return ____Minor_1; } inline int32_t* get_address_of__Minor_1() { return &____Minor_1; } inline void set__Minor_1(int32_t value) { ____Minor_1 = value; } inline static int32_t get_offset_of__Build_2() { return static_cast(offsetof(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C, ____Build_2)); } inline int32_t get__Build_2() const { return ____Build_2; } inline int32_t* get_address_of__Build_2() { return &____Build_2; } inline void set__Build_2(int32_t value) { ____Build_2 = value; } inline static int32_t get_offset_of__Revision_3() { return static_cast(offsetof(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C, ____Revision_3)); } inline int32_t get__Revision_3() const { return ____Revision_3; } inline int32_t* get_address_of__Revision_3() { return &____Revision_3; } inline void set__Revision_3(int32_t value) { ____Revision_3 = value; } }; struct Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_StaticFields { public: // System.Char[] System.Version::SeparatorsArray CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___SeparatorsArray_4; public: inline static int32_t get_offset_of_SeparatorsArray_4() { return static_cast(offsetof(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_StaticFields, ___SeparatorsArray_4)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_SeparatorsArray_4() const { return ___SeparatorsArray_4; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_SeparatorsArray_4() { return &___SeparatorsArray_4; } inline void set_SeparatorsArray_4(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___SeparatorsArray_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___SeparatorsArray_4), (void*)value); } }; // System.Net.WebCompletionSource struct WebCompletionSource_tF1258B468350A374EC59049FE0E31C7879D6AB1E : public RuntimeObject { public: // System.Threading.Tasks.TaskCompletionSource`1 System.Net.WebCompletionSource::completion TaskCompletionSource_1_tA588E53E06778CC5F619F80119BBF9704F1A73D1 * ___completion_0; public: inline static int32_t get_offset_of_completion_0() { return static_cast(offsetof(WebCompletionSource_tF1258B468350A374EC59049FE0E31C7879D6AB1E, ___completion_0)); } inline TaskCompletionSource_1_tA588E53E06778CC5F619F80119BBF9704F1A73D1 * get_completion_0() const { return ___completion_0; } inline TaskCompletionSource_1_tA588E53E06778CC5F619F80119BBF9704F1A73D1 ** get_address_of_completion_0() { return &___completion_0; } inline void set_completion_0(TaskCompletionSource_1_tA588E53E06778CC5F619F80119BBF9704F1A73D1 * value) { ___completion_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___completion_0), (void*)value); } }; // System.Net.WebProxy struct WebProxy_tC96F42021301BBF649AE2A2AF8A58920F5563B6E : public RuntimeObject { public: // System.Boolean System.Net.WebProxy::_UseRegistry bool ____UseRegistry_0; // System.Boolean System.Net.WebProxy::_BypassOnLocal bool ____BypassOnLocal_1; // System.Boolean System.Net.WebProxy::m_EnableAutoproxy bool ___m_EnableAutoproxy_2; // System.Uri System.Net.WebProxy::_ProxyAddress Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ____ProxyAddress_3; // System.Collections.ArrayList System.Net.WebProxy::_BypassList ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ____BypassList_4; // System.Net.ICredentials System.Net.WebProxy::_Credentials RuntimeObject* ____Credentials_5; // System.Text.RegularExpressions.Regex[] System.Net.WebProxy::_RegExBypassList RegexU5BU5D_tA9690D2129825E18F8375CD80C6DF80B7A8320CD* ____RegExBypassList_6; // System.Collections.Hashtable System.Net.WebProxy::_ProxyHostAddresses Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ____ProxyHostAddresses_7; // System.Net.AutoWebProxyScriptEngine System.Net.WebProxy::m_ScriptEngine AutoWebProxyScriptEngine_t66B44494A6732AF45DEE0D36F5B6D15D0D497D4A * ___m_ScriptEngine_8; public: inline static int32_t get_offset_of__UseRegistry_0() { return static_cast(offsetof(WebProxy_tC96F42021301BBF649AE2A2AF8A58920F5563B6E, ____UseRegistry_0)); } inline bool get__UseRegistry_0() const { return ____UseRegistry_0; } inline bool* get_address_of__UseRegistry_0() { return &____UseRegistry_0; } inline void set__UseRegistry_0(bool value) { ____UseRegistry_0 = value; } inline static int32_t get_offset_of__BypassOnLocal_1() { return static_cast(offsetof(WebProxy_tC96F42021301BBF649AE2A2AF8A58920F5563B6E, ____BypassOnLocal_1)); } inline bool get__BypassOnLocal_1() const { return ____BypassOnLocal_1; } inline bool* get_address_of__BypassOnLocal_1() { return &____BypassOnLocal_1; } inline void set__BypassOnLocal_1(bool value) { ____BypassOnLocal_1 = value; } inline static int32_t get_offset_of_m_EnableAutoproxy_2() { return static_cast(offsetof(WebProxy_tC96F42021301BBF649AE2A2AF8A58920F5563B6E, ___m_EnableAutoproxy_2)); } inline bool get_m_EnableAutoproxy_2() const { return ___m_EnableAutoproxy_2; } inline bool* get_address_of_m_EnableAutoproxy_2() { return &___m_EnableAutoproxy_2; } inline void set_m_EnableAutoproxy_2(bool value) { ___m_EnableAutoproxy_2 = value; } inline static int32_t get_offset_of__ProxyAddress_3() { return static_cast(offsetof(WebProxy_tC96F42021301BBF649AE2A2AF8A58920F5563B6E, ____ProxyAddress_3)); } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * get__ProxyAddress_3() const { return ____ProxyAddress_3; } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** get_address_of__ProxyAddress_3() { return &____ProxyAddress_3; } inline void set__ProxyAddress_3(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * value) { ____ProxyAddress_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____ProxyAddress_3), (void*)value); } inline static int32_t get_offset_of__BypassList_4() { return static_cast(offsetof(WebProxy_tC96F42021301BBF649AE2A2AF8A58920F5563B6E, ____BypassList_4)); } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * get__BypassList_4() const { return ____BypassList_4; } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** get_address_of__BypassList_4() { return &____BypassList_4; } inline void set__BypassList_4(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * value) { ____BypassList_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____BypassList_4), (void*)value); } inline static int32_t get_offset_of__Credentials_5() { return static_cast(offsetof(WebProxy_tC96F42021301BBF649AE2A2AF8A58920F5563B6E, ____Credentials_5)); } inline RuntimeObject* get__Credentials_5() const { return ____Credentials_5; } inline RuntimeObject** get_address_of__Credentials_5() { return &____Credentials_5; } inline void set__Credentials_5(RuntimeObject* value) { ____Credentials_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____Credentials_5), (void*)value); } inline static int32_t get_offset_of__RegExBypassList_6() { return static_cast(offsetof(WebProxy_tC96F42021301BBF649AE2A2AF8A58920F5563B6E, ____RegExBypassList_6)); } inline RegexU5BU5D_tA9690D2129825E18F8375CD80C6DF80B7A8320CD* get__RegExBypassList_6() const { return ____RegExBypassList_6; } inline RegexU5BU5D_tA9690D2129825E18F8375CD80C6DF80B7A8320CD** get_address_of__RegExBypassList_6() { return &____RegExBypassList_6; } inline void set__RegExBypassList_6(RegexU5BU5D_tA9690D2129825E18F8375CD80C6DF80B7A8320CD* value) { ____RegExBypassList_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____RegExBypassList_6), (void*)value); } inline static int32_t get_offset_of__ProxyHostAddresses_7() { return static_cast(offsetof(WebProxy_tC96F42021301BBF649AE2A2AF8A58920F5563B6E, ____ProxyHostAddresses_7)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get__ProxyHostAddresses_7() const { return ____ProxyHostAddresses_7; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of__ProxyHostAddresses_7() { return &____ProxyHostAddresses_7; } inline void set__ProxyHostAddresses_7(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ____ProxyHostAddresses_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____ProxyHostAddresses_7), (void*)value); } inline static int32_t get_offset_of_m_ScriptEngine_8() { return static_cast(offsetof(WebProxy_tC96F42021301BBF649AE2A2AF8A58920F5563B6E, ___m_ScriptEngine_8)); } inline AutoWebProxyScriptEngine_t66B44494A6732AF45DEE0D36F5B6D15D0D497D4A * get_m_ScriptEngine_8() const { return ___m_ScriptEngine_8; } inline AutoWebProxyScriptEngine_t66B44494A6732AF45DEE0D36F5B6D15D0D497D4A ** get_address_of_m_ScriptEngine_8() { return &___m_ScriptEngine_8; } inline void set_m_ScriptEngine_8(AutoWebProxyScriptEngine_t66B44494A6732AF45DEE0D36F5B6D15D0D497D4A * value) { ___m_ScriptEngine_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ScriptEngine_8), (void*)value); } }; // System.Security.Cryptography.X509Certificates.X509Certificate struct X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 : public RuntimeObject { public: // System.Security.Cryptography.X509Certificates.X509CertificateImpl System.Security.Cryptography.X509Certificates.X509Certificate::impl X509CertificateImpl_t921DFC48C47654AE30F0DABDF84567C95C0B1219 * ___impl_0; // System.Boolean System.Security.Cryptography.X509Certificates.X509Certificate::hideDates bool ___hideDates_1; // System.String System.Security.Cryptography.X509Certificates.X509Certificate::issuer_name String_t* ___issuer_name_2; // System.String System.Security.Cryptography.X509Certificates.X509Certificate::subject_name String_t* ___subject_name_3; public: inline static int32_t get_offset_of_impl_0() { return static_cast(offsetof(X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553, ___impl_0)); } inline X509CertificateImpl_t921DFC48C47654AE30F0DABDF84567C95C0B1219 * get_impl_0() const { return ___impl_0; } inline X509CertificateImpl_t921DFC48C47654AE30F0DABDF84567C95C0B1219 ** get_address_of_impl_0() { return &___impl_0; } inline void set_impl_0(X509CertificateImpl_t921DFC48C47654AE30F0DABDF84567C95C0B1219 * value) { ___impl_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___impl_0), (void*)value); } inline static int32_t get_offset_of_hideDates_1() { return static_cast(offsetof(X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553, ___hideDates_1)); } inline bool get_hideDates_1() const { return ___hideDates_1; } inline bool* get_address_of_hideDates_1() { return &___hideDates_1; } inline void set_hideDates_1(bool value) { ___hideDates_1 = value; } inline static int32_t get_offset_of_issuer_name_2() { return static_cast(offsetof(X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553, ___issuer_name_2)); } inline String_t* get_issuer_name_2() const { return ___issuer_name_2; } inline String_t** get_address_of_issuer_name_2() { return &___issuer_name_2; } inline void set_issuer_name_2(String_t* value) { ___issuer_name_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___issuer_name_2), (void*)value); } inline static int32_t get_offset_of_subject_name_3() { return static_cast(offsetof(X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553, ___subject_name_3)); } inline String_t* get_subject_name_3() const { return ___subject_name_3; } inline String_t** get_address_of_subject_name_3() { return &___subject_name_3; } inline void set_subject_name_3(String_t* value) { ___subject_name_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___subject_name_3), (void*)value); } }; // System.Xml.XmlNode struct XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 : public RuntimeObject { public: // System.Xml.XmlNode System.Xml.XmlNode::parentNode XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 * ___parentNode_0; public: inline static int32_t get_offset_of_parentNode_0() { return static_cast(offsetof(XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1, ___parentNode_0)); } inline XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 * get_parentNode_0() const { return ___parentNode_0; } inline XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 ** get_address_of_parentNode_0() { return &___parentNode_0; } inline void set_parentNode_0(XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 * value) { ___parentNode_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___parentNode_0), (void*)value); } }; // System.Xml.XmlReader struct XmlReader_tECCB3D8B757F8CE744EF0430F338BEF15E060138 : public RuntimeObject { public: public: }; struct XmlReader_tECCB3D8B757F8CE744EF0430F338BEF15E060138_StaticFields { public: // System.UInt32 System.Xml.XmlReader::IsTextualNodeBitmap uint32_t ___IsTextualNodeBitmap_0; // System.UInt32 System.Xml.XmlReader::CanReadContentAsBitmap uint32_t ___CanReadContentAsBitmap_1; // System.UInt32 System.Xml.XmlReader::HasValueBitmap uint32_t ___HasValueBitmap_2; public: inline static int32_t get_offset_of_IsTextualNodeBitmap_0() { return static_cast(offsetof(XmlReader_tECCB3D8B757F8CE744EF0430F338BEF15E060138_StaticFields, ___IsTextualNodeBitmap_0)); } inline uint32_t get_IsTextualNodeBitmap_0() const { return ___IsTextualNodeBitmap_0; } inline uint32_t* get_address_of_IsTextualNodeBitmap_0() { return &___IsTextualNodeBitmap_0; } inline void set_IsTextualNodeBitmap_0(uint32_t value) { ___IsTextualNodeBitmap_0 = value; } inline static int32_t get_offset_of_CanReadContentAsBitmap_1() { return static_cast(offsetof(XmlReader_tECCB3D8B757F8CE744EF0430F338BEF15E060138_StaticFields, ___CanReadContentAsBitmap_1)); } inline uint32_t get_CanReadContentAsBitmap_1() const { return ___CanReadContentAsBitmap_1; } inline uint32_t* get_address_of_CanReadContentAsBitmap_1() { return &___CanReadContentAsBitmap_1; } inline void set_CanReadContentAsBitmap_1(uint32_t value) { ___CanReadContentAsBitmap_1 = value; } inline static int32_t get_offset_of_HasValueBitmap_2() { return static_cast(offsetof(XmlReader_tECCB3D8B757F8CE744EF0430F338BEF15E060138_StaticFields, ___HasValueBitmap_2)); } inline uint32_t get_HasValueBitmap_2() const { return ___HasValueBitmap_2; } inline uint32_t* get_address_of_HasValueBitmap_2() { return &___HasValueBitmap_2; } inline void set_HasValueBitmap_2(uint32_t value) { ___HasValueBitmap_2 = value; } }; // System.Net.LazyAsyncResult/ThreadContext struct ThreadContext_tB361ABC018EE4C7009FD3A3A5D39D2346A1B5FA3 : public RuntimeObject { public: // System.Int32 System.Net.LazyAsyncResult/ThreadContext::m_NestedIOCount int32_t ___m_NestedIOCount_0; public: inline static int32_t get_offset_of_m_NestedIOCount_0() { return static_cast(offsetof(ThreadContext_tB361ABC018EE4C7009FD3A3A5D39D2346A1B5FA3, ___m_NestedIOCount_0)); } inline int32_t get_m_NestedIOCount_0() const { return ___m_NestedIOCount_0; } inline int32_t* get_address_of_m_NestedIOCount_0() { return &___m_NestedIOCount_0; } inline void set_m_NestedIOCount_0(int32_t value) { ___m_NestedIOCount_0 = value; } }; // System.Collections.Specialized.ListDictionary/DictionaryNode struct DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 : public RuntimeObject { public: // System.Object System.Collections.Specialized.ListDictionary/DictionaryNode::key RuntimeObject * ___key_0; // System.Object System.Collections.Specialized.ListDictionary/DictionaryNode::value RuntimeObject * ___value_1; // System.Collections.Specialized.ListDictionary/DictionaryNode System.Collections.Specialized.ListDictionary/DictionaryNode::next DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * ___next_2; public: inline static int32_t get_offset_of_key_0() { return static_cast(offsetof(DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } inline static int32_t get_offset_of_value_1() { return static_cast(offsetof(DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } inline static int32_t get_offset_of_next_2() { return static_cast(offsetof(DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89, ___next_2)); } inline DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * get_next_2() const { return ___next_2; } inline DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 ** get_address_of_next_2() { return &___next_2; } inline void set_next_2(DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * value) { ___next_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___next_2), (void*)value); } }; // System.Collections.Specialized.ListDictionary/NodeEnumerator struct NodeEnumerator_t76D13EB0B0B4D56A1780BBD21073FB65F9C97A7C : public RuntimeObject { public: // System.Collections.Specialized.ListDictionary System.Collections.Specialized.ListDictionary/NodeEnumerator::list ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * ___list_0; // System.Collections.Specialized.ListDictionary/DictionaryNode System.Collections.Specialized.ListDictionary/NodeEnumerator::current DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * ___current_1; // System.Int32 System.Collections.Specialized.ListDictionary/NodeEnumerator::version int32_t ___version_2; // System.Boolean System.Collections.Specialized.ListDictionary/NodeEnumerator::start bool ___start_3; public: inline static int32_t get_offset_of_list_0() { return static_cast(offsetof(NodeEnumerator_t76D13EB0B0B4D56A1780BBD21073FB65F9C97A7C, ___list_0)); } inline ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * get_list_0() const { return ___list_0; } inline ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_current_1() { return static_cast(offsetof(NodeEnumerator_t76D13EB0B0B4D56A1780BBD21073FB65F9C97A7C, ___current_1)); } inline DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * get_current_1() const { return ___current_1; } inline DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 ** get_address_of_current_1() { return &___current_1; } inline void set_current_1(DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * value) { ___current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___current_1), (void*)value); } inline static int32_t get_offset_of_version_2() { return static_cast(offsetof(NodeEnumerator_t76D13EB0B0B4D56A1780BBD21073FB65F9C97A7C, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_start_3() { return static_cast(offsetof(NodeEnumerator_t76D13EB0B0B4D56A1780BBD21073FB65F9C97A7C, ___start_3)); } inline bool get_start_3() const { return ___start_3; } inline bool* get_address_of_start_3() { return &___start_3; } inline void set_start_3(bool value) { ___start_3 = value; } }; // System.Collections.Specialized.ListDictionary/NodeKeyValueCollection struct NodeKeyValueCollection_t2F7684ED43AA56DE152F992016C086757FDEB696 : public RuntimeObject { public: // System.Collections.Specialized.ListDictionary System.Collections.Specialized.ListDictionary/NodeKeyValueCollection::list ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * ___list_0; // System.Boolean System.Collections.Specialized.ListDictionary/NodeKeyValueCollection::isKeys bool ___isKeys_1; public: inline static int32_t get_offset_of_list_0() { return static_cast(offsetof(NodeKeyValueCollection_t2F7684ED43AA56DE152F992016C086757FDEB696, ___list_0)); } inline ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * get_list_0() const { return ___list_0; } inline ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_isKeys_1() { return static_cast(offsetof(NodeKeyValueCollection_t2F7684ED43AA56DE152F992016C086757FDEB696, ___isKeys_1)); } inline bool get_isKeys_1() const { return ___isKeys_1; } inline bool* get_address_of_isKeys_1() { return &___isKeys_1; } inline void set_isKeys_1(bool value) { ___isKeys_1 = value; } }; // System.Net.WebRequest/WebProxyWrapperOpaque struct WebProxyWrapperOpaque_t06FAF957BFE393A0BB04B732DB4ADE60710DFFA2 : public RuntimeObject { public: // System.Net.WebProxy System.Net.WebRequest/WebProxyWrapperOpaque::webProxy WebProxy_tC96F42021301BBF649AE2A2AF8A58920F5563B6E * ___webProxy_0; public: inline static int32_t get_offset_of_webProxy_0() { return static_cast(offsetof(WebProxyWrapperOpaque_t06FAF957BFE393A0BB04B732DB4ADE60710DFFA2, ___webProxy_0)); } inline WebProxy_tC96F42021301BBF649AE2A2AF8A58920F5563B6E * get_webProxy_0() const { return ___webProxy_0; } inline WebProxy_tC96F42021301BBF649AE2A2AF8A58920F5563B6E ** get_address_of_webProxy_0() { return &___webProxy_0; } inline void set_webProxy_0(WebProxy_tC96F42021301BBF649AE2A2AF8A58920F5563B6E * value) { ___webProxy_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___webProxy_0), (void*)value); } }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter> struct ConfiguredTaskAwaiter_t1E2C8B0B4B5DBC914F5301A6EFDF7AD4D3998D06 { public: // System.Threading.Tasks.Task`1 System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task Task_1_tDEAB8548D192DBB144FB5A8A3D04AD2EEB5E3D13 * ___m_task_0; // System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_continueOnCapturedContext bool ___m_continueOnCapturedContext_1; public: inline static int32_t get_offset_of_m_task_0() { return static_cast(offsetof(ConfiguredTaskAwaiter_t1E2C8B0B4B5DBC914F5301A6EFDF7AD4D3998D06, ___m_task_0)); } inline Task_1_tDEAB8548D192DBB144FB5A8A3D04AD2EEB5E3D13 * get_m_task_0() const { return ___m_task_0; } inline Task_1_tDEAB8548D192DBB144FB5A8A3D04AD2EEB5E3D13 ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_tDEAB8548D192DBB144FB5A8A3D04AD2EEB5E3D13 * value) { ___m_task_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_0), (void*)value); } inline static int32_t get_offset_of_m_continueOnCapturedContext_1() { return static_cast(offsetof(ConfiguredTaskAwaiter_t1E2C8B0B4B5DBC914F5301A6EFDF7AD4D3998D06, ___m_continueOnCapturedContext_1)); } inline bool get_m_continueOnCapturedContext_1() const { return ___m_continueOnCapturedContext_1; } inline bool* get_address_of_m_continueOnCapturedContext_1() { return &___m_continueOnCapturedContext_1; } inline void set_m_continueOnCapturedContext_1(bool value) { ___m_continueOnCapturedContext_1 = value; } }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter struct ConfiguredTaskAwaiter_t9BA9BBF3EA6747232564192A575618E22362EAC8 { public: // System.Threading.Tasks.Task`1 System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 * ___m_task_0; // System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_continueOnCapturedContext bool ___m_continueOnCapturedContext_1; public: inline static int32_t get_offset_of_m_task_0() { return static_cast(offsetof(ConfiguredTaskAwaiter_t9BA9BBF3EA6747232564192A575618E22362EAC8, ___m_task_0)); } inline Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 * get_m_task_0() const { return ___m_task_0; } inline Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 * value) { ___m_task_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_0), (void*)value); } inline static int32_t get_offset_of_m_continueOnCapturedContext_1() { return static_cast(offsetof(ConfiguredTaskAwaiter_t9BA9BBF3EA6747232564192A575618E22362EAC8, ___m_continueOnCapturedContext_1)); } inline bool get_m_continueOnCapturedContext_1() const { return ___m_continueOnCapturedContext_1; } inline bool* get_address_of_m_continueOnCapturedContext_1() { return &___m_continueOnCapturedContext_1; } inline void set_m_continueOnCapturedContext_1(bool value) { ___m_continueOnCapturedContext_1 = value; } }; // System.Collections.Generic.KeyValuePair`2 struct KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB { public: // TKey System.Collections.Generic.KeyValuePair`2::key int32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value int32_t ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast(offsetof(KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB, ___key_0)); } inline int32_t get_key_0() const { return ___key_0; } inline int32_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(int32_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast(offsetof(KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB, ___value_1)); } inline int32_t get_value_1() const { return ___value_1; } inline int32_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(int32_t value) { ___value_1 = value; } }; // System.Nullable`1 struct Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 { public: // T System.Nullable`1::value bool ___value_0; // System.Boolean System.Nullable`1::has_value bool ___has_value_1; public: inline static int32_t get_offset_of_value_0() { return static_cast(offsetof(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3, ___value_0)); } inline bool get_value_0() const { return ___value_0; } inline bool* get_address_of_value_0() { return &___value_0; } inline void set_value_0(bool value) { ___value_0 = value; } inline static int32_t get_offset_of_has_value_1() { return static_cast(offsetof(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3, ___has_value_1)); } inline bool get_has_value_1() const { return ___has_value_1; } inline bool* get_address_of_has_value_1() { return &___has_value_1; } inline void set_has_value_1(bool value) { ___has_value_1 = value; } }; // System.Runtime.CompilerServices.TaskAwaiter`1 struct TaskAwaiter_1_t2BBED4D00A5731637EDEB15212DE3D1A1559E2CD { public: // System.Threading.Tasks.Task`1 System.Runtime.CompilerServices.TaskAwaiter`1::m_task Task_1_tD1B0194ED507F48DF3A0800F76EE8D318BED147C * ___m_task_0; public: inline static int32_t get_offset_of_m_task_0() { return static_cast(offsetof(TaskAwaiter_1_t2BBED4D00A5731637EDEB15212DE3D1A1559E2CD, ___m_task_0)); } inline Task_1_tD1B0194ED507F48DF3A0800F76EE8D318BED147C * get_m_task_0() const { return ___m_task_0; } inline Task_1_tD1B0194ED507F48DF3A0800F76EE8D318BED147C ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_tD1B0194ED507F48DF3A0800F76EE8D318BED147C * value) { ___m_task_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_0), (void*)value); } }; // System.Runtime.CompilerServices.TaskAwaiter`1 struct TaskAwaiter_1_t06282E0E3DA9FB287C9BDB4911AC044F21933C81 { public: // System.Threading.Tasks.Task`1 System.Runtime.CompilerServices.TaskAwaiter`1::m_task Task_1_t9B51BE1BAD1D5EDAE57D8E4A3D3BD8AB9054E8C6 * ___m_task_0; public: inline static int32_t get_offset_of_m_task_0() { return static_cast(offsetof(TaskAwaiter_1_t06282E0E3DA9FB287C9BDB4911AC044F21933C81, ___m_task_0)); } inline Task_1_t9B51BE1BAD1D5EDAE57D8E4A3D3BD8AB9054E8C6 * get_m_task_0() const { return ___m_task_0; } inline Task_1_t9B51BE1BAD1D5EDAE57D8E4A3D3BD8AB9054E8C6 ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_t9B51BE1BAD1D5EDAE57D8E4A3D3BD8AB9054E8C6 * value) { ___m_task_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_0), (void*)value); } }; // System.ValueTuple`2,System.Net.WebException> struct ValueTuple_2_t1621CD4F642143300FDDE5DD742EE63BDD1A912B { public: // T1 System.ValueTuple`2::Item1 Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 * ___Item1_0; // T2 System.ValueTuple`2::Item2 WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * ___Item2_1; public: inline static int32_t get_offset_of_Item1_0() { return static_cast(offsetof(ValueTuple_2_t1621CD4F642143300FDDE5DD742EE63BDD1A912B, ___Item1_0)); } inline Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 * get_Item1_0() const { return ___Item1_0; } inline Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 ** get_address_of_Item1_0() { return &___Item1_0; } inline void set_Item1_0(Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 * value) { ___Item1_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Item1_0), (void*)value); } inline static int32_t get_offset_of_Item2_1() { return static_cast(offsetof(ValueTuple_2_t1621CD4F642143300FDDE5DD742EE63BDD1A912B, ___Item2_1)); } inline WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * get_Item2_1() const { return ___Item2_1; } inline WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 ** get_address_of_Item2_1() { return &___Item2_1; } inline void set_Item2_1(WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * value) { ___Item2_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Item2_1), (void*)value); } }; // System.ValueTuple`2 struct ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 { public: // T1 System.ValueTuple`2::Item1 RuntimeObject * ___Item1_0; // T2 System.ValueTuple`2::Item2 bool ___Item2_1; public: inline static int32_t get_offset_of_Item1_0() { return static_cast(offsetof(ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12, ___Item1_0)); } inline RuntimeObject * get_Item1_0() const { return ___Item1_0; } inline RuntimeObject ** get_address_of_Item1_0() { return &___Item1_0; } inline void set_Item1_0(RuntimeObject * value) { ___Item1_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Item1_0), (void*)value); } inline static int32_t get_offset_of_Item2_1() { return static_cast(offsetof(ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12, ___Item2_1)); } inline bool get_Item2_1() const { return ___Item2_1; } inline bool* get_address_of_Item2_1() { return &___Item2_1; } inline void set_Item2_1(bool value) { ___Item2_1 = value; } }; // System.ValueTuple`2 struct ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 { public: // T1 System.ValueTuple`2::Item1 RuntimeObject * ___Item1_0; // T2 System.ValueTuple`2::Item2 RuntimeObject * ___Item2_1; public: inline static int32_t get_offset_of_Item1_0() { return static_cast(offsetof(ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403, ___Item1_0)); } inline RuntimeObject * get_Item1_0() const { return ___Item1_0; } inline RuntimeObject ** get_address_of_Item1_0() { return &___Item1_0; } inline void set_Item1_0(RuntimeObject * value) { ___Item1_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Item1_0), (void*)value); } inline static int32_t get_offset_of_Item2_1() { return static_cast(offsetof(ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403, ___Item2_1)); } inline RuntimeObject * get_Item2_1() const { return ___Item2_1; } inline RuntimeObject ** get_address_of_Item2_1() { return &___Item2_1; } inline void set_Item2_1(RuntimeObject * value) { ___Item2_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Item2_1), (void*)value); } }; // System.ValueTuple`2 struct ValueTuple_2_tD78E716C9AB70F51F241465A32F5F5E49DA3529A { public: // T1 System.ValueTuple`2::Item1 WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * ___Item1_0; // T2 System.ValueTuple`2::Item2 bool ___Item2_1; public: inline static int32_t get_offset_of_Item1_0() { return static_cast(offsetof(ValueTuple_2_tD78E716C9AB70F51F241465A32F5F5E49DA3529A, ___Item1_0)); } inline WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * get_Item1_0() const { return ___Item1_0; } inline WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 ** get_address_of_Item1_0() { return &___Item1_0; } inline void set_Item1_0(WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * value) { ___Item1_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Item1_0), (void*)value); } inline static int32_t get_offset_of_Item2_1() { return static_cast(offsetof(ValueTuple_2_tD78E716C9AB70F51F241465A32F5F5E49DA3529A, ___Item2_1)); } inline bool get_Item2_1() const { return ___Item2_1; } inline bool* get_address_of_Item2_1() { return &___Item2_1; } inline void set_Item2_1(bool value) { ___Item2_1 = value; } }; // System.ValueTuple`4,System.Net.WebException> struct ValueTuple_4_tA55DEA5229133F0BC4EC4246133E0AFC1DF98F0B { public: // T1 System.ValueTuple`4::Item1 bool ___Item1_0; // T2 System.ValueTuple`4::Item2 bool ___Item2_1; // T3 System.ValueTuple`4::Item3 Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 * ___Item3_2; // T4 System.ValueTuple`4::Item4 WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * ___Item4_3; public: inline static int32_t get_offset_of_Item1_0() { return static_cast(offsetof(ValueTuple_4_tA55DEA5229133F0BC4EC4246133E0AFC1DF98F0B, ___Item1_0)); } inline bool get_Item1_0() const { return ___Item1_0; } inline bool* get_address_of_Item1_0() { return &___Item1_0; } inline void set_Item1_0(bool value) { ___Item1_0 = value; } inline static int32_t get_offset_of_Item2_1() { return static_cast(offsetof(ValueTuple_4_tA55DEA5229133F0BC4EC4246133E0AFC1DF98F0B, ___Item2_1)); } inline bool get_Item2_1() const { return ___Item2_1; } inline bool* get_address_of_Item2_1() { return &___Item2_1; } inline void set_Item2_1(bool value) { ___Item2_1 = value; } inline static int32_t get_offset_of_Item3_2() { return static_cast(offsetof(ValueTuple_4_tA55DEA5229133F0BC4EC4246133E0AFC1DF98F0B, ___Item3_2)); } inline Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 * get_Item3_2() const { return ___Item3_2; } inline Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 ** get_address_of_Item3_2() { return &___Item3_2; } inline void set_Item3_2(Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 * value) { ___Item3_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___Item3_2), (void*)value); } inline static int32_t get_offset_of_Item4_3() { return static_cast(offsetof(ValueTuple_4_tA55DEA5229133F0BC4EC4246133E0AFC1DF98F0B, ___Item4_3)); } inline WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * get_Item4_3() const { return ___Item4_3; } inline WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 ** get_address_of_Item4_3() { return &___Item4_3; } inline void set_Item4_3(WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * value) { ___Item4_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Item4_3), (void*)value); } }; // System.ValueTuple`4 struct ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC { public: // T1 System.ValueTuple`4::Item1 bool ___Item1_0; // T2 System.ValueTuple`4::Item2 bool ___Item2_1; // T3 System.ValueTuple`4::Item3 RuntimeObject * ___Item3_2; // T4 System.ValueTuple`4::Item4 RuntimeObject * ___Item4_3; public: inline static int32_t get_offset_of_Item1_0() { return static_cast(offsetof(ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC, ___Item1_0)); } inline bool get_Item1_0() const { return ___Item1_0; } inline bool* get_address_of_Item1_0() { return &___Item1_0; } inline void set_Item1_0(bool value) { ___Item1_0 = value; } inline static int32_t get_offset_of_Item2_1() { return static_cast(offsetof(ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC, ___Item2_1)); } inline bool get_Item2_1() const { return ___Item2_1; } inline bool* get_address_of_Item2_1() { return &___Item2_1; } inline void set_Item2_1(bool value) { ___Item2_1 = value; } inline static int32_t get_offset_of_Item3_2() { return static_cast(offsetof(ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC, ___Item3_2)); } inline RuntimeObject * get_Item3_2() const { return ___Item3_2; } inline RuntimeObject ** get_address_of_Item3_2() { return &___Item3_2; } inline void set_Item3_2(RuntimeObject * value) { ___Item3_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___Item3_2), (void*)value); } inline static int32_t get_offset_of_Item4_3() { return static_cast(offsetof(ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC, ___Item4_3)); } inline RuntimeObject * get_Item4_3() const { return ___Item4_3; } inline RuntimeObject ** get_address_of_Item4_3() { return &___Item4_3; } inline void set_Item4_3(RuntimeObject * value) { ___Item4_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Item4_3), (void*)value); } }; // System.ValueTuple`5 struct ValueTuple_5_tC03A966BCCF577698D4862E43CEE647247992092 { public: // T1 System.ValueTuple`5::Item1 HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * ___Item1_0; // T2 System.ValueTuple`5::Item2 bool ___Item2_1; // T3 System.ValueTuple`5::Item3 bool ___Item3_2; // T4 System.ValueTuple`5::Item4 BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F * ___Item4_3; // T5 System.ValueTuple`5::Item5 WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * ___Item5_4; public: inline static int32_t get_offset_of_Item1_0() { return static_cast(offsetof(ValueTuple_5_tC03A966BCCF577698D4862E43CEE647247992092, ___Item1_0)); } inline HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * get_Item1_0() const { return ___Item1_0; } inline HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB ** get_address_of_Item1_0() { return &___Item1_0; } inline void set_Item1_0(HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * value) { ___Item1_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Item1_0), (void*)value); } inline static int32_t get_offset_of_Item2_1() { return static_cast(offsetof(ValueTuple_5_tC03A966BCCF577698D4862E43CEE647247992092, ___Item2_1)); } inline bool get_Item2_1() const { return ___Item2_1; } inline bool* get_address_of_Item2_1() { return &___Item2_1; } inline void set_Item2_1(bool value) { ___Item2_1 = value; } inline static int32_t get_offset_of_Item3_2() { return static_cast(offsetof(ValueTuple_5_tC03A966BCCF577698D4862E43CEE647247992092, ___Item3_2)); } inline bool get_Item3_2() const { return ___Item3_2; } inline bool* get_address_of_Item3_2() { return &___Item3_2; } inline void set_Item3_2(bool value) { ___Item3_2 = value; } inline static int32_t get_offset_of_Item4_3() { return static_cast(offsetof(ValueTuple_5_tC03A966BCCF577698D4862E43CEE647247992092, ___Item4_3)); } inline BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F * get_Item4_3() const { return ___Item4_3; } inline BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F ** get_address_of_Item4_3() { return &___Item4_3; } inline void set_Item4_3(BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F * value) { ___Item4_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Item4_3), (void*)value); } inline static int32_t get_offset_of_Item5_4() { return static_cast(offsetof(ValueTuple_5_tC03A966BCCF577698D4862E43CEE647247992092, ___Item5_4)); } inline WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * get_Item5_4() const { return ___Item5_4; } inline WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 ** get_address_of_Item5_4() { return &___Item5_4; } inline void set_Item5_4(WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * value) { ___Item5_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___Item5_4), (void*)value); } }; // System.Runtime.CompilerServices.AsyncMethodBuilderCore struct AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34 { public: // System.Runtime.CompilerServices.IAsyncStateMachine System.Runtime.CompilerServices.AsyncMethodBuilderCore::m_stateMachine RuntimeObject* ___m_stateMachine_0; // System.Action System.Runtime.CompilerServices.AsyncMethodBuilderCore::m_defaultContextAction Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___m_defaultContextAction_1; public: inline static int32_t get_offset_of_m_stateMachine_0() { return static_cast(offsetof(AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34, ___m_stateMachine_0)); } inline RuntimeObject* get_m_stateMachine_0() const { return ___m_stateMachine_0; } inline RuntimeObject** get_address_of_m_stateMachine_0() { return &___m_stateMachine_0; } inline void set_m_stateMachine_0(RuntimeObject* value) { ___m_stateMachine_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_stateMachine_0), (void*)value); } inline static int32_t get_offset_of_m_defaultContextAction_1() { return static_cast(offsetof(AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34, ___m_defaultContextAction_1)); } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_m_defaultContextAction_1() const { return ___m_defaultContextAction_1; } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_m_defaultContextAction_1() { return &___m_defaultContextAction_1; } inline void set_m_defaultContextAction_1(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value) { ___m_defaultContextAction_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_defaultContextAction_1), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Runtime.CompilerServices.AsyncMethodBuilderCore struct AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34_marshaled_pinvoke { RuntimeObject* ___m_stateMachine_0; Il2CppMethodPointer ___m_defaultContextAction_1; }; // Native definition for COM marshalling of System.Runtime.CompilerServices.AsyncMethodBuilderCore struct AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34_marshaled_com { RuntimeObject* ___m_stateMachine_0; Il2CppMethodPointer ___m_defaultContextAction_1; }; // System.Boolean struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37 { public: // System.Boolean System.Boolean::m_value bool ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37, ___m_value_0)); } inline bool get_m_value_0() const { return ___m_value_0; } inline bool* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(bool value) { ___m_value_0 = value; } }; struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields { public: // System.String System.Boolean::TrueString String_t* ___TrueString_5; // System.String System.Boolean::FalseString String_t* ___FalseString_6; public: inline static int32_t get_offset_of_TrueString_5() { return static_cast(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___TrueString_5)); } inline String_t* get_TrueString_5() const { return ___TrueString_5; } inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; } inline void set_TrueString_5(String_t* value) { ___TrueString_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value); } inline static int32_t get_offset_of_FalseString_6() { return static_cast(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___FalseString_6)); } inline String_t* get_FalseString_6() const { return ___FalseString_6; } inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; } inline void set_FalseString_6(String_t* value) { ___FalseString_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value); } }; // System.Byte struct Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056 { public: // System.Byte System.Byte::m_value uint8_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056, ___m_value_0)); } inline uint8_t get_m_value_0() const { return ___m_value_0; } inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint8_t value) { ___m_value_0 = value; } }; // System.Threading.CancellationToken struct CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD { public: // System.Threading.CancellationTokenSource System.Threading.CancellationToken::m_source CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * ___m_source_0; public: inline static int32_t get_offset_of_m_source_0() { return static_cast(offsetof(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD, ___m_source_0)); } inline CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * get_m_source_0() const { return ___m_source_0; } inline CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 ** get_address_of_m_source_0() { return &___m_source_0; } inline void set_m_source_0(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * value) { ___m_source_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_source_0), (void*)value); } }; struct CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_StaticFields { public: // System.Action`1 System.Threading.CancellationToken::s_ActionToActionObjShunt Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ___s_ActionToActionObjShunt_1; public: inline static int32_t get_offset_of_s_ActionToActionObjShunt_1() { return static_cast(offsetof(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_StaticFields, ___s_ActionToActionObjShunt_1)); } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get_s_ActionToActionObjShunt_1() const { return ___s_ActionToActionObjShunt_1; } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of_s_ActionToActionObjShunt_1() { return &___s_ActionToActionObjShunt_1; } inline void set_s_ActionToActionObjShunt_1(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value) { ___s_ActionToActionObjShunt_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_ActionToActionObjShunt_1), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Threading.CancellationToken struct CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_marshaled_pinvoke { CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * ___m_source_0; }; // Native definition for COM marshalling of System.Threading.CancellationToken struct CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_marshaled_com { CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * ___m_source_0; }; // System.Char struct Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14 { public: // System.Char System.Char::m_value Il2CppChar ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14, ___m_value_0)); } inline Il2CppChar get_m_value_0() const { return ___m_value_0; } inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(Il2CppChar value) { ___m_value_0 = value; } }; struct Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_StaticFields { public: // System.Byte[] System.Char::categoryForLatin1 ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___categoryForLatin1_3; public: inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast(offsetof(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_StaticFields, ___categoryForLatin1_3)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; } inline void set_categoryForLatin1_3(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___categoryForLatin1_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___categoryForLatin1_3), (void*)value); } }; // System.Net.NetworkInformation.CommonUnixIPGlobalProperties struct CommonUnixIPGlobalProperties_t74F6A363223CF97FAB9A43E71FEAF07F2681F928 : public IPGlobalProperties_tD2935E387BBC03382D35AD2B6288214CAB4095C5 { public: public: }; // System.DateTime struct DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 { public: // System.UInt64 System.DateTime::dateData uint64_t ___dateData_44; public: inline static int32_t get_offset_of_dateData_44() { return static_cast(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405, ___dateData_44)); } inline uint64_t get_dateData_44() const { return ___dateData_44; } inline uint64_t* get_address_of_dateData_44() { return &___dateData_44; } inline void set_dateData_44(uint64_t value) { ___dateData_44 = value; } }; struct DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields { public: // System.Int32[] System.DateTime::DaysToMonth365 Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___DaysToMonth365_29; // System.Int32[] System.DateTime::DaysToMonth366 Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___DaysToMonth366_30; // System.DateTime System.DateTime::MinValue DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___MinValue_31; // System.DateTime System.DateTime::MaxValue DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___MaxValue_32; public: inline static int32_t get_offset_of_DaysToMonth365_29() { return static_cast(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___DaysToMonth365_29)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_DaysToMonth365_29() const { return ___DaysToMonth365_29; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_DaysToMonth365_29() { return &___DaysToMonth365_29; } inline void set_DaysToMonth365_29(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___DaysToMonth365_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth365_29), (void*)value); } inline static int32_t get_offset_of_DaysToMonth366_30() { return static_cast(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___DaysToMonth366_30)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_DaysToMonth366_30() const { return ___DaysToMonth366_30; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_DaysToMonth366_30() { return &___DaysToMonth366_30; } inline void set_DaysToMonth366_30(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___DaysToMonth366_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth366_30), (void*)value); } inline static int32_t get_offset_of_MinValue_31() { return static_cast(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___MinValue_31)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_MinValue_31() const { return ___MinValue_31; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_MinValue_31() { return &___MinValue_31; } inline void set_MinValue_31(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___MinValue_31 = value; } inline static int32_t get_offset_of_MaxValue_32() { return static_cast(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___MaxValue_32)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_MaxValue_32() const { return ___MaxValue_32; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_MaxValue_32() { return &___MaxValue_32; } inline void set_MaxValue_32(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___MaxValue_32 = value; } }; // System.Text.DecoderReplacementFallback struct DecoderReplacementFallback_t8DA345EC4EF3A35A2667365F691EE69408A62130 : public DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D { public: // System.String System.Text.DecoderReplacementFallback::strDefault String_t* ___strDefault_4; public: inline static int32_t get_offset_of_strDefault_4() { return static_cast(offsetof(DecoderReplacementFallback_t8DA345EC4EF3A35A2667365F691EE69408A62130, ___strDefault_4)); } inline String_t* get_strDefault_4() const { return ___strDefault_4; } inline String_t** get_address_of_strDefault_4() { return &___strDefault_4; } inline void set_strDefault_4(String_t* value) { ___strDefault_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___strDefault_4), (void*)value); } }; // System.Collections.DictionaryEntry struct DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 { public: // System.Object System.Collections.DictionaryEntry::_key RuntimeObject * ____key_0; // System.Object System.Collections.DictionaryEntry::_value RuntimeObject * ____value_1; public: inline static int32_t get_offset_of__key_0() { return static_cast(offsetof(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90, ____key_0)); } inline RuntimeObject * get__key_0() const { return ____key_0; } inline RuntimeObject ** get_address_of__key_0() { return &____key_0; } inline void set__key_0(RuntimeObject * value) { ____key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____key_0), (void*)value); } inline static int32_t get_offset_of__value_1() { return static_cast(offsetof(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90, ____value_1)); } inline RuntimeObject * get__value_1() const { return ____value_1; } inline RuntimeObject ** get_address_of__value_1() { return &____value_1; } inline void set__value_1(RuntimeObject * value) { ____value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____value_1), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Collections.DictionaryEntry struct DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_marshaled_pinvoke { Il2CppIUnknown* ____key_0; Il2CppIUnknown* ____value_1; }; // Native definition for COM marshalling of System.Collections.DictionaryEntry struct DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_marshaled_com { Il2CppIUnknown* ____key_0; Il2CppIUnknown* ____value_1; }; // System.Text.EncoderReplacementFallback struct EncoderReplacementFallback_t61E36A507D7FA8034B49F86DBE560EC77A6A8418 : public EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 { public: // System.String System.Text.EncoderReplacementFallback::strDefault String_t* ___strDefault_4; public: inline static int32_t get_offset_of_strDefault_4() { return static_cast(offsetof(EncoderReplacementFallback_t61E36A507D7FA8034B49F86DBE560EC77A6A8418, ___strDefault_4)); } inline String_t* get_strDefault_4() const { return ___strDefault_4; } inline String_t** get_address_of_strDefault_4() { return &___strDefault_4; } inline void set_strDefault_4(String_t* value) { ___strDefault_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___strDefault_4), (void*)value); } }; // System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA : public ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 { public: public: }; struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields { public: // System.Char[] System.Enum::enumSeperatorCharArray CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___enumSeperatorCharArray_0; public: inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast(offsetof(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields, ___enumSeperatorCharArray_0)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; } inline void set_enumSeperatorCharArray_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___enumSeperatorCharArray_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_pinvoke { }; // Native definition for COM marshalling of System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_com { }; // System.Reflection.FieldInfo struct FieldInfo_t : public MemberInfo_t { public: public: }; // System.Runtime.InteropServices.GCHandle struct GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 { public: // System.Int32 System.Runtime.InteropServices.GCHandle::handle int32_t ___handle_0; public: inline static int32_t get_offset_of_handle_0() { return static_cast(offsetof(GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603, ___handle_0)); } inline int32_t get_handle_0() const { return ___handle_0; } inline int32_t* get_address_of_handle_0() { return &___handle_0; } inline void set_handle_0(int32_t value) { ___handle_0 = value; } }; // System.CodeDom.Compiler.GeneratedCodeAttribute struct GeneratedCodeAttribute_tFAE0CBAC44F15D84CCDFEFACB02A8FEF95B198EF : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 { public: // System.String System.CodeDom.Compiler.GeneratedCodeAttribute::tool String_t* ___tool_0; // System.String System.CodeDom.Compiler.GeneratedCodeAttribute::version String_t* ___version_1; public: inline static int32_t get_offset_of_tool_0() { return static_cast(offsetof(GeneratedCodeAttribute_tFAE0CBAC44F15D84CCDFEFACB02A8FEF95B198EF, ___tool_0)); } inline String_t* get_tool_0() const { return ___tool_0; } inline String_t** get_address_of_tool_0() { return &___tool_0; } inline void set_tool_0(String_t* value) { ___tool_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___tool_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast(offsetof(GeneratedCodeAttribute_tFAE0CBAC44F15D84CCDFEFACB02A8FEF95B198EF, ___version_1)); } inline String_t* get_version_1() const { return ___version_1; } inline String_t** get_address_of_version_1() { return &___version_1; } inline void set_version_1(String_t* value) { ___version_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_1), (void*)value); } }; // System.Text.RegularExpressions.Group struct Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 : public Capture_t048191E7E0D3177DCD8610E4968075AB41FB91D6 { public: // System.Int32[] System.Text.RegularExpressions.Group::_caps Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ____caps_4; // System.Int32 System.Text.RegularExpressions.Group::_capcount int32_t ____capcount_5; // System.Text.RegularExpressions.CaptureCollection System.Text.RegularExpressions.Group::_capcoll CaptureCollection_t40C06BBACB56CDD5F84860FDC1B0C3D8F160DCF9 * ____capcoll_6; // System.String System.Text.RegularExpressions.Group::_name String_t* ____name_7; public: inline static int32_t get_offset_of__caps_4() { return static_cast(offsetof(Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883, ____caps_4)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get__caps_4() const { return ____caps_4; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of__caps_4() { return &____caps_4; } inline void set__caps_4(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ____caps_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____caps_4), (void*)value); } inline static int32_t get_offset_of__capcount_5() { return static_cast(offsetof(Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883, ____capcount_5)); } inline int32_t get__capcount_5() const { return ____capcount_5; } inline int32_t* get_address_of__capcount_5() { return &____capcount_5; } inline void set__capcount_5(int32_t value) { ____capcount_5 = value; } inline static int32_t get_offset_of__capcoll_6() { return static_cast(offsetof(Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883, ____capcoll_6)); } inline CaptureCollection_t40C06BBACB56CDD5F84860FDC1B0C3D8F160DCF9 * get__capcoll_6() const { return ____capcoll_6; } inline CaptureCollection_t40C06BBACB56CDD5F84860FDC1B0C3D8F160DCF9 ** get_address_of__capcoll_6() { return &____capcoll_6; } inline void set__capcoll_6(CaptureCollection_t40C06BBACB56CDD5F84860FDC1B0C3D8F160DCF9 * value) { ____capcoll_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____capcoll_6), (void*)value); } inline static int32_t get_offset_of__name_7() { return static_cast(offsetof(Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883, ____name_7)); } inline String_t* get__name_7() const { return ____name_7; } inline String_t** get_address_of__name_7() { return &____name_7; } inline void set__name_7(String_t* value) { ____name_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____name_7), (void*)value); } }; struct Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883_StaticFields { public: // System.Text.RegularExpressions.Group System.Text.RegularExpressions.Group::_emptygroup Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 * ____emptygroup_3; public: inline static int32_t get_offset_of__emptygroup_3() { return static_cast(offsetof(Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883_StaticFields, ____emptygroup_3)); } inline Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 * get__emptygroup_3() const { return ____emptygroup_3; } inline Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 ** get_address_of__emptygroup_3() { return &____emptygroup_3; } inline void set__emptygroup_3(Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 * value) { ____emptygroup_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptygroup_3), (void*)value); } }; // System.Guid struct Guid_t { public: // System.Int32 System.Guid::_a int32_t ____a_1; // System.Int16 System.Guid::_b int16_t ____b_2; // System.Int16 System.Guid::_c int16_t ____c_3; // System.Byte System.Guid::_d uint8_t ____d_4; // System.Byte System.Guid::_e uint8_t ____e_5; // System.Byte System.Guid::_f uint8_t ____f_6; // System.Byte System.Guid::_g uint8_t ____g_7; // System.Byte System.Guid::_h uint8_t ____h_8; // System.Byte System.Guid::_i uint8_t ____i_9; // System.Byte System.Guid::_j uint8_t ____j_10; // System.Byte System.Guid::_k uint8_t ____k_11; public: inline static int32_t get_offset_of__a_1() { return static_cast(offsetof(Guid_t, ____a_1)); } inline int32_t get__a_1() const { return ____a_1; } inline int32_t* get_address_of__a_1() { return &____a_1; } inline void set__a_1(int32_t value) { ____a_1 = value; } inline static int32_t get_offset_of__b_2() { return static_cast(offsetof(Guid_t, ____b_2)); } inline int16_t get__b_2() const { return ____b_2; } inline int16_t* get_address_of__b_2() { return &____b_2; } inline void set__b_2(int16_t value) { ____b_2 = value; } inline static int32_t get_offset_of__c_3() { return static_cast(offsetof(Guid_t, ____c_3)); } inline int16_t get__c_3() const { return ____c_3; } inline int16_t* get_address_of__c_3() { return &____c_3; } inline void set__c_3(int16_t value) { ____c_3 = value; } inline static int32_t get_offset_of__d_4() { return static_cast(offsetof(Guid_t, ____d_4)); } inline uint8_t get__d_4() const { return ____d_4; } inline uint8_t* get_address_of__d_4() { return &____d_4; } inline void set__d_4(uint8_t value) { ____d_4 = value; } inline static int32_t get_offset_of__e_5() { return static_cast(offsetof(Guid_t, ____e_5)); } inline uint8_t get__e_5() const { return ____e_5; } inline uint8_t* get_address_of__e_5() { return &____e_5; } inline void set__e_5(uint8_t value) { ____e_5 = value; } inline static int32_t get_offset_of__f_6() { return static_cast(offsetof(Guid_t, ____f_6)); } inline uint8_t get__f_6() const { return ____f_6; } inline uint8_t* get_address_of__f_6() { return &____f_6; } inline void set__f_6(uint8_t value) { ____f_6 = value; } inline static int32_t get_offset_of__g_7() { return static_cast(offsetof(Guid_t, ____g_7)); } inline uint8_t get__g_7() const { return ____g_7; } inline uint8_t* get_address_of__g_7() { return &____g_7; } inline void set__g_7(uint8_t value) { ____g_7 = value; } inline static int32_t get_offset_of__h_8() { return static_cast(offsetof(Guid_t, ____h_8)); } inline uint8_t get__h_8() const { return ____h_8; } inline uint8_t* get_address_of__h_8() { return &____h_8; } inline void set__h_8(uint8_t value) { ____h_8 = value; } inline static int32_t get_offset_of__i_9() { return static_cast(offsetof(Guid_t, ____i_9)); } inline uint8_t get__i_9() const { return ____i_9; } inline uint8_t* get_address_of__i_9() { return &____i_9; } inline void set__i_9(uint8_t value) { ____i_9 = value; } inline static int32_t get_offset_of__j_10() { return static_cast(offsetof(Guid_t, ____j_10)); } inline uint8_t get__j_10() const { return ____j_10; } inline uint8_t* get_address_of__j_10() { return &____j_10; } inline void set__j_10(uint8_t value) { ____j_10 = value; } inline static int32_t get_offset_of__k_11() { return static_cast(offsetof(Guid_t, ____k_11)); } inline uint8_t get__k_11() const { return ____k_11; } inline uint8_t* get_address_of__k_11() { return &____k_11; } inline void set__k_11(uint8_t value) { ____k_11 = value; } }; struct Guid_t_StaticFields { public: // System.Guid System.Guid::Empty Guid_t ___Empty_0; // System.Object System.Guid::_rngAccess RuntimeObject * ____rngAccess_12; // System.Security.Cryptography.RandomNumberGenerator System.Guid::_rng RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * ____rng_13; // System.Security.Cryptography.RandomNumberGenerator System.Guid::_fastRng RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * ____fastRng_14; public: inline static int32_t get_offset_of_Empty_0() { return static_cast(offsetof(Guid_t_StaticFields, ___Empty_0)); } inline Guid_t get_Empty_0() const { return ___Empty_0; } inline Guid_t * get_address_of_Empty_0() { return &___Empty_0; } inline void set_Empty_0(Guid_t value) { ___Empty_0 = value; } inline static int32_t get_offset_of__rngAccess_12() { return static_cast(offsetof(Guid_t_StaticFields, ____rngAccess_12)); } inline RuntimeObject * get__rngAccess_12() const { return ____rngAccess_12; } inline RuntimeObject ** get_address_of__rngAccess_12() { return &____rngAccess_12; } inline void set__rngAccess_12(RuntimeObject * value) { ____rngAccess_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____rngAccess_12), (void*)value); } inline static int32_t get_offset_of__rng_13() { return static_cast(offsetof(Guid_t_StaticFields, ____rng_13)); } inline RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * get__rng_13() const { return ____rng_13; } inline RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 ** get_address_of__rng_13() { return &____rng_13; } inline void set__rng_13(RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * value) { ____rng_13 = value; Il2CppCodeGenWriteBarrier((void**)(&____rng_13), (void*)value); } inline static int32_t get_offset_of__fastRng_14() { return static_cast(offsetof(Guid_t_StaticFields, ____fastRng_14)); } inline RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * get__fastRng_14() const { return ____fastRng_14; } inline RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 ** get_address_of__fastRng_14() { return &____fastRng_14; } inline void set__fastRng_14(RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * value) { ____fastRng_14 = value; Il2CppCodeGenWriteBarrier((void**)(&____fastRng_14), (void*)value); } }; // System.ComponentModel.HandledEventArgs struct HandledEventArgs_t233C36247A00D894E2DCCAAC168378ED73300150 : public EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA { public: // System.Boolean System.ComponentModel.HandledEventArgs::handled bool ___handled_1; public: inline static int32_t get_offset_of_handled_1() { return static_cast(offsetof(HandledEventArgs_t233C36247A00D894E2DCCAAC168378ED73300150, ___handled_1)); } inline bool get_handled_1() const { return ___handled_1; } inline bool* get_address_of_handled_1() { return &___handled_1; } inline void set_handled_1(bool value) { ___handled_1 = value; } }; // System.Net.Configuration.HttpCachePolicyElement struct HttpCachePolicyElement_t9908817A6011A4DDEC3F2B5F1C64A0CBA79B1A23 : public ConfigurationElement_t571C446CFDFF39CF17130653C433786BEFF25DFA { public: public: }; // System.Net.Configuration.HttpListenerElement struct HttpListenerElement_t6E336B2902766D07BF1E27F8988D6C6DFEC8ABA4 : public ConfigurationElement_t571C446CFDFF39CF17130653C433786BEFF25DFA { public: public: }; // System.Net.Configuration.HttpListenerTimeoutsElement struct HttpListenerTimeoutsElement_t44346970BBEEBE94C0112DAFE8A9334C3BE66D7A : public ConfigurationElement_t571C446CFDFF39CF17130653C433786BEFF25DFA { public: public: }; // System.Net.Configuration.HttpWebRequestElement struct HttpWebRequestElement_t359B9211350C71365139BCC698CCEB140F474F7B : public ConfigurationElement_t571C446CFDFF39CF17130653C433786BEFF25DFA { public: public: }; // System.Net.IPEndPoint struct IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E : public EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA { public: // System.Net.IPAddress System.Net.IPEndPoint::m_Address IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * ___m_Address_0; // System.Int32 System.Net.IPEndPoint::m_Port int32_t ___m_Port_1; public: inline static int32_t get_offset_of_m_Address_0() { return static_cast(offsetof(IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E, ___m_Address_0)); } inline IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * get_m_Address_0() const { return ___m_Address_0; } inline IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE ** get_address_of_m_Address_0() { return &___m_Address_0; } inline void set_m_Address_0(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * value) { ___m_Address_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Address_0), (void*)value); } inline static int32_t get_offset_of_m_Port_1() { return static_cast(offsetof(IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E, ___m_Port_1)); } inline int32_t get_m_Port_1() const { return ___m_Port_1; } inline int32_t* get_address_of_m_Port_1() { return &___m_Port_1; } inline void set_m_Port_1(int32_t value) { ___m_Port_1 = value; } }; struct IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E_StaticFields { public: // System.Net.IPEndPoint System.Net.IPEndPoint::Any IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * ___Any_2; // System.Net.IPEndPoint System.Net.IPEndPoint::IPv6Any IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * ___IPv6Any_3; public: inline static int32_t get_offset_of_Any_2() { return static_cast(offsetof(IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E_StaticFields, ___Any_2)); } inline IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * get_Any_2() const { return ___Any_2; } inline IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E ** get_address_of_Any_2() { return &___Any_2; } inline void set_Any_2(IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * value) { ___Any_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___Any_2), (void*)value); } inline static int32_t get_offset_of_IPv6Any_3() { return static_cast(offsetof(IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E_StaticFields, ___IPv6Any_3)); } inline IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * get_IPv6Any_3() const { return ___IPv6Any_3; } inline IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E ** get_address_of_IPv6Any_3() { return &___IPv6Any_3; } inline void set_IPv6Any_3(IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * value) { ___IPv6Any_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___IPv6Any_3), (void*)value); } }; // System.Net.IPv6AddressFormatter struct IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA { public: // System.UInt16[] System.Net.IPv6AddressFormatter::address UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* ___address_0; // System.Int64 System.Net.IPv6AddressFormatter::scopeId int64_t ___scopeId_1; public: inline static int32_t get_offset_of_address_0() { return static_cast(offsetof(IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA, ___address_0)); } inline UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* get_address_0() const { return ___address_0; } inline UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67** get_address_of_address_0() { return &___address_0; } inline void set_address_0(UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* value) { ___address_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___address_0), (void*)value); } inline static int32_t get_offset_of_scopeId_1() { return static_cast(offsetof(IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA, ___scopeId_1)); } inline int64_t get_scopeId_1() const { return ___scopeId_1; } inline int64_t* get_address_of_scopeId_1() { return &___scopeId_1; } inline void set_scopeId_1(int64_t value) { ___scopeId_1 = value; } }; // Native definition for P/Invoke marshalling of System.Net.IPv6AddressFormatter struct IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA_marshaled_pinvoke { Il2CppSafeArray/*NONE*/* ___address_0; int64_t ___scopeId_1; }; // Native definition for COM marshalling of System.Net.IPv6AddressFormatter struct IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA_marshaled_com { Il2CppSafeArray/*NONE*/* ___address_0; int64_t ___scopeId_1; }; // System.Configuration.IdnElement struct IdnElement_t6C2600CADE323D1105CE548820AD1D696C46E9EE : public ConfigurationElement_t571C446CFDFF39CF17130653C433786BEFF25DFA { public: public: }; // System.ComponentModel.ImmutableObjectAttribute struct ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 { public: // System.Boolean System.ComponentModel.ImmutableObjectAttribute::immutable bool ___immutable_3; public: inline static int32_t get_offset_of_immutable_3() { return static_cast(offsetof(ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A, ___immutable_3)); } inline bool get_immutable_3() const { return ___immutable_3; } inline bool* get_address_of_immutable_3() { return &___immutable_3; } inline void set_immutable_3(bool value) { ___immutable_3 = value; } }; struct ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A_StaticFields { public: // System.ComponentModel.ImmutableObjectAttribute System.ComponentModel.ImmutableObjectAttribute::Yes ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A * ___Yes_0; // System.ComponentModel.ImmutableObjectAttribute System.ComponentModel.ImmutableObjectAttribute::No ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A * ___No_1; // System.ComponentModel.ImmutableObjectAttribute System.ComponentModel.ImmutableObjectAttribute::Default ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A * ___Default_2; public: inline static int32_t get_offset_of_Yes_0() { return static_cast(offsetof(ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A_StaticFields, ___Yes_0)); } inline ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A * get_Yes_0() const { return ___Yes_0; } inline ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A ** get_address_of_Yes_0() { return &___Yes_0; } inline void set_Yes_0(ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A * value) { ___Yes_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Yes_0), (void*)value); } inline static int32_t get_offset_of_No_1() { return static_cast(offsetof(ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A_StaticFields, ___No_1)); } inline ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A * get_No_1() const { return ___No_1; } inline ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A ** get_address_of_No_1() { return &___No_1; } inline void set_No_1(ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A * value) { ___No_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___No_1), (void*)value); } inline static int32_t get_offset_of_Default_2() { return static_cast(offsetof(ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A_StaticFields, ___Default_2)); } inline ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A * get_Default_2() const { return ___Default_2; } inline ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A ** get_address_of_Default_2() { return &___Default_2; } inline void set_Default_2(ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A * value) { ___Default_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___Default_2), (void*)value); } }; // System.ComponentModel.InitializationEventAttribute struct InitializationEventAttribute_t8EC5F3A9EA61CFFB1C75FBFF2F0366610D1A164B : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 { public: // System.String System.ComponentModel.InitializationEventAttribute::eventName String_t* ___eventName_0; public: inline static int32_t get_offset_of_eventName_0() { return static_cast(offsetof(InitializationEventAttribute_t8EC5F3A9EA61CFFB1C75FBFF2F0366610D1A164B, ___eventName_0)); } inline String_t* get_eventName_0() const { return ___eventName_0; } inline String_t** get_address_of_eventName_0() { return &___eventName_0; } inline void set_eventName_0(String_t* value) { ___eventName_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___eventName_0), (void*)value); } }; // System.ComponentModel.InstallerTypeAttribute struct InstallerTypeAttribute_t52B83CBEE3CC5944413BC7C3EC9CA829F4A83A6B : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 { public: // System.String System.ComponentModel.InstallerTypeAttribute::_typeName String_t* ____typeName_0; public: inline static int32_t get_offset_of__typeName_0() { return static_cast(offsetof(InstallerTypeAttribute_t52B83CBEE3CC5944413BC7C3EC9CA829F4A83A6B, ____typeName_0)); } inline String_t* get__typeName_0() const { return ____typeName_0; } inline String_t** get_address_of__typeName_0() { return &____typeName_0; } inline void set__typeName_0(String_t* value) { ____typeName_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____typeName_0), (void*)value); } }; // System.Int16 struct Int16_tD0F031114106263BB459DA1F099FF9F42691295A { public: // System.Int16 System.Int16::m_value int16_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Int16_tD0F031114106263BB459DA1F099FF9F42691295A, ___m_value_0)); } inline int16_t get_m_value_0() const { return ___m_value_0; } inline int16_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int16_t value) { ___m_value_0 = value; } }; // System.Int32 struct Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046 { public: // System.Int32 System.Int32::m_value int32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046, ___m_value_0)); } inline int32_t get_m_value_0() const { return ___m_value_0; } inline int32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int32_t value) { ___m_value_0 = value; } }; // System.Int64 struct Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3 { public: // System.Int64 System.Int64::m_value int64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3, ___m_value_0)); } inline int64_t get_m_value_0() const { return ___m_value_0; } inline int64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int64_t value) { ___m_value_0 = value; } }; // System.IntPtr struct IntPtr_t { public: // System.Void* System.IntPtr::m_value void* ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(IntPtr_t, ___m_value_0)); } inline void* get_m_value_0() const { return ___m_value_0; } inline void** get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(void* value) { ___m_value_0 = value; } }; struct IntPtr_t_StaticFields { public: // System.IntPtr System.IntPtr::Zero intptr_t ___Zero_1; public: inline static int32_t get_offset_of_Zero_1() { return static_cast(offsetof(IntPtr_t_StaticFields, ___Zero_1)); } inline intptr_t get_Zero_1() const { return ___Zero_1; } inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; } inline void set_Zero_1(intptr_t value) { ___Zero_1 = value; } }; // System.Net.Configuration.Ipv6Element struct Ipv6Element_t6ABD4A6C83A5FBB22931FF90A597DBEFBDCB7B68 : public ConfigurationElement_t571C446CFDFF39CF17130653C433786BEFF25DFA { public: public: }; // System.Configuration.IriParsingElement struct IriParsingElement_tD8D81BB1733AF891D47F442A1A03AA78FB49B2CE : public ConfigurationElement_t571C446CFDFF39CF17130653C433786BEFF25DFA { public: public: }; // System.ComponentModel.LicFileLicenseProvider struct LicFileLicenseProvider_t0C159066151EF942824ECDC68036A1F5BBA2E5DF : public LicenseProvider_tBC40978A52764598AA24EC34F19F002CAECD7A10 { public: public: }; // System.ComponentModel.LicenseProviderAttribute struct LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 { public: // System.Type System.ComponentModel.LicenseProviderAttribute::licenseProviderType Type_t * ___licenseProviderType_1; // System.String System.ComponentModel.LicenseProviderAttribute::licenseProviderName String_t* ___licenseProviderName_2; public: inline static int32_t get_offset_of_licenseProviderType_1() { return static_cast(offsetof(LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B, ___licenseProviderType_1)); } inline Type_t * get_licenseProviderType_1() const { return ___licenseProviderType_1; } inline Type_t ** get_address_of_licenseProviderType_1() { return &___licenseProviderType_1; } inline void set_licenseProviderType_1(Type_t * value) { ___licenseProviderType_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___licenseProviderType_1), (void*)value); } inline static int32_t get_offset_of_licenseProviderName_2() { return static_cast(offsetof(LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B, ___licenseProviderName_2)); } inline String_t* get_licenseProviderName_2() const { return ___licenseProviderName_2; } inline String_t** get_address_of_licenseProviderName_2() { return &___licenseProviderName_2; } inline void set_licenseProviderName_2(String_t* value) { ___licenseProviderName_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___licenseProviderName_2), (void*)value); } }; struct LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B_StaticFields { public: // System.ComponentModel.LicenseProviderAttribute System.ComponentModel.LicenseProviderAttribute::Default LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B * ___Default_0; public: inline static int32_t get_offset_of_Default_0() { return static_cast(offsetof(LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B_StaticFields, ___Default_0)); } inline LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B * get_Default_0() const { return ___Default_0; } inline LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B ** get_address_of_Default_0() { return &___Default_0; } inline void set_Default_0(LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B * value) { ___Default_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Default_0), (void*)value); } }; // System.ComponentModel.ListBindableAttribute struct ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 { public: // System.Boolean System.ComponentModel.ListBindableAttribute::listBindable bool ___listBindable_3; // System.Boolean System.ComponentModel.ListBindableAttribute::isDefault bool ___isDefault_4; public: inline static int32_t get_offset_of_listBindable_3() { return static_cast(offsetof(ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4, ___listBindable_3)); } inline bool get_listBindable_3() const { return ___listBindable_3; } inline bool* get_address_of_listBindable_3() { return &___listBindable_3; } inline void set_listBindable_3(bool value) { ___listBindable_3 = value; } inline static int32_t get_offset_of_isDefault_4() { return static_cast(offsetof(ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4, ___isDefault_4)); } inline bool get_isDefault_4() const { return ___isDefault_4; } inline bool* get_address_of_isDefault_4() { return &___isDefault_4; } inline void set_isDefault_4(bool value) { ___isDefault_4 = value; } }; struct ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4_StaticFields { public: // System.ComponentModel.ListBindableAttribute System.ComponentModel.ListBindableAttribute::Yes ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4 * ___Yes_0; // System.ComponentModel.ListBindableAttribute System.ComponentModel.ListBindableAttribute::No ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4 * ___No_1; // System.ComponentModel.ListBindableAttribute System.ComponentModel.ListBindableAttribute::Default ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4 * ___Default_2; public: inline static int32_t get_offset_of_Yes_0() { return static_cast(offsetof(ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4_StaticFields, ___Yes_0)); } inline ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4 * get_Yes_0() const { return ___Yes_0; } inline ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4 ** get_address_of_Yes_0() { return &___Yes_0; } inline void set_Yes_0(ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4 * value) { ___Yes_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Yes_0), (void*)value); } inline static int32_t get_offset_of_No_1() { return static_cast(offsetof(ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4_StaticFields, ___No_1)); } inline ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4 * get_No_1() const { return ___No_1; } inline ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4 ** get_address_of_No_1() { return &___No_1; } inline void set_No_1(ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4 * value) { ___No_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___No_1), (void*)value); } inline static int32_t get_offset_of_Default_2() { return static_cast(offsetof(ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4_StaticFields, ___Default_2)); } inline ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4 * get_Default_2() const { return ___Default_2; } inline ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4 ** get_address_of_Default_2() { return &___Default_2; } inline void set_Default_2(ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4 * value) { ___Default_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___Default_2), (void*)value); } }; // System.ComponentModel.LocalizableAttribute struct LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 { public: // System.Boolean System.ComponentModel.LocalizableAttribute::isLocalizable bool ___isLocalizable_0; public: inline static int32_t get_offset_of_isLocalizable_0() { return static_cast(offsetof(LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB, ___isLocalizable_0)); } inline bool get_isLocalizable_0() const { return ___isLocalizable_0; } inline bool* get_address_of_isLocalizable_0() { return &___isLocalizable_0; } inline void set_isLocalizable_0(bool value) { ___isLocalizable_0 = value; } }; struct LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB_StaticFields { public: // System.ComponentModel.LocalizableAttribute System.ComponentModel.LocalizableAttribute::Yes LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB * ___Yes_1; // System.ComponentModel.LocalizableAttribute System.ComponentModel.LocalizableAttribute::No LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB * ___No_2; // System.ComponentModel.LocalizableAttribute System.ComponentModel.LocalizableAttribute::Default LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB * ___Default_3; public: inline static int32_t get_offset_of_Yes_1() { return static_cast(offsetof(LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB_StaticFields, ___Yes_1)); } inline LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB * get_Yes_1() const { return ___Yes_1; } inline LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB ** get_address_of_Yes_1() { return &___Yes_1; } inline void set_Yes_1(LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB * value) { ___Yes_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Yes_1), (void*)value); } inline static int32_t get_offset_of_No_2() { return static_cast(offsetof(LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB_StaticFields, ___No_2)); } inline LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB * get_No_2() const { return ___No_2; } inline LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB ** get_address_of_No_2() { return &___No_2; } inline void set_No_2(LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB * value) { ___No_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___No_2), (void*)value); } inline static int32_t get_offset_of_Default_3() { return static_cast(offsetof(LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB_StaticFields, ___Default_3)); } inline LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB * get_Default_3() const { return ___Default_3; } inline LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB ** get_address_of_Default_3() { return &___Default_3; } inline void set_Default_3(LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB * value) { ___Default_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Default_3), (void*)value); } }; // System.ComponentModel.LookupBindingPropertiesAttribute struct LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 { public: // System.String System.ComponentModel.LookupBindingPropertiesAttribute::dataSource String_t* ___dataSource_0; // System.String System.ComponentModel.LookupBindingPropertiesAttribute::displayMember String_t* ___displayMember_1; // System.String System.ComponentModel.LookupBindingPropertiesAttribute::valueMember String_t* ___valueMember_2; // System.String System.ComponentModel.LookupBindingPropertiesAttribute::lookupMember String_t* ___lookupMember_3; public: inline static int32_t get_offset_of_dataSource_0() { return static_cast(offsetof(LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C, ___dataSource_0)); } inline String_t* get_dataSource_0() const { return ___dataSource_0; } inline String_t** get_address_of_dataSource_0() { return &___dataSource_0; } inline void set_dataSource_0(String_t* value) { ___dataSource_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dataSource_0), (void*)value); } inline static int32_t get_offset_of_displayMember_1() { return static_cast(offsetof(LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C, ___displayMember_1)); } inline String_t* get_displayMember_1() const { return ___displayMember_1; } inline String_t** get_address_of_displayMember_1() { return &___displayMember_1; } inline void set_displayMember_1(String_t* value) { ___displayMember_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___displayMember_1), (void*)value); } inline static int32_t get_offset_of_valueMember_2() { return static_cast(offsetof(LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C, ___valueMember_2)); } inline String_t* get_valueMember_2() const { return ___valueMember_2; } inline String_t** get_address_of_valueMember_2() { return &___valueMember_2; } inline void set_valueMember_2(String_t* value) { ___valueMember_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___valueMember_2), (void*)value); } inline static int32_t get_offset_of_lookupMember_3() { return static_cast(offsetof(LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C, ___lookupMember_3)); } inline String_t* get_lookupMember_3() const { return ___lookupMember_3; } inline String_t** get_address_of_lookupMember_3() { return &___lookupMember_3; } inline void set_lookupMember_3(String_t* value) { ___lookupMember_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___lookupMember_3), (void*)value); } }; struct LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C_StaticFields { public: // System.ComponentModel.LookupBindingPropertiesAttribute System.ComponentModel.LookupBindingPropertiesAttribute::Default LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C * ___Default_4; public: inline static int32_t get_offset_of_Default_4() { return static_cast(offsetof(LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C_StaticFields, ___Default_4)); } inline LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C * get_Default_4() const { return ___Default_4; } inline LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C ** get_address_of_Default_4() { return &___Default_4; } inline void set_Default_4(LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C * value) { ___Default_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___Default_4), (void*)value); } }; // System.Reflection.MethodBase struct MethodBase_t : public MemberInfo_t { public: public: }; // System.Collections.Specialized.NameValueCollection struct NameValueCollection_tE3BED11C58844E8A4D9A74F359692B9A51781B4D : public NameObjectCollectionBase_t1317925F87C5856FA09F855B2B03D838DDC88D29 { public: // System.String[] System.Collections.Specialized.NameValueCollection::_all StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ____all_9; // System.String[] System.Collections.Specialized.NameValueCollection::_allKeys StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ____allKeys_10; public: inline static int32_t get_offset_of__all_9() { return static_cast(offsetof(NameValueCollection_tE3BED11C58844E8A4D9A74F359692B9A51781B4D, ____all_9)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get__all_9() const { return ____all_9; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of__all_9() { return &____all_9; } inline void set__all_9(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ____all_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____all_9), (void*)value); } inline static int32_t get_offset_of__allKeys_10() { return static_cast(offsetof(NameValueCollection_tE3BED11C58844E8A4D9A74F359692B9A51781B4D, ____allKeys_10)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get__allKeys_10() const { return ____allKeys_10; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of__allKeys_10() { return &____allKeys_10; } inline void set__allKeys_10(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ____allKeys_10 = value; Il2CppCodeGenWriteBarrier((void**)(&____allKeys_10), (void*)value); } }; // System.ComponentModel.PropertyDescriptor struct PropertyDescriptor_t851C1421EDEEC6CB7D059D50CF94886ECCA1B22B : public MemberDescriptor_t92E4AE18636FFD5150830060BBA071CCF3A67A6F { public: // System.ComponentModel.TypeConverter System.ComponentModel.PropertyDescriptor::converter TypeConverter_t004F185B630F00F509F08BD8F8D82471867323B4 * ___converter_12; // System.Collections.Hashtable System.ComponentModel.PropertyDescriptor::valueChangedHandlers Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___valueChangedHandlers_13; // System.Object[] System.ComponentModel.PropertyDescriptor::editors ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___editors_14; // System.Type[] System.ComponentModel.PropertyDescriptor::editorTypes TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___editorTypes_15; // System.Int32 System.ComponentModel.PropertyDescriptor::editorCount int32_t ___editorCount_16; public: inline static int32_t get_offset_of_converter_12() { return static_cast(offsetof(PropertyDescriptor_t851C1421EDEEC6CB7D059D50CF94886ECCA1B22B, ___converter_12)); } inline TypeConverter_t004F185B630F00F509F08BD8F8D82471867323B4 * get_converter_12() const { return ___converter_12; } inline TypeConverter_t004F185B630F00F509F08BD8F8D82471867323B4 ** get_address_of_converter_12() { return &___converter_12; } inline void set_converter_12(TypeConverter_t004F185B630F00F509F08BD8F8D82471867323B4 * value) { ___converter_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___converter_12), (void*)value); } inline static int32_t get_offset_of_valueChangedHandlers_13() { return static_cast(offsetof(PropertyDescriptor_t851C1421EDEEC6CB7D059D50CF94886ECCA1B22B, ___valueChangedHandlers_13)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_valueChangedHandlers_13() const { return ___valueChangedHandlers_13; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_valueChangedHandlers_13() { return &___valueChangedHandlers_13; } inline void set_valueChangedHandlers_13(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___valueChangedHandlers_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___valueChangedHandlers_13), (void*)value); } inline static int32_t get_offset_of_editors_14() { return static_cast(offsetof(PropertyDescriptor_t851C1421EDEEC6CB7D059D50CF94886ECCA1B22B, ___editors_14)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_editors_14() const { return ___editors_14; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_editors_14() { return &___editors_14; } inline void set_editors_14(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ___editors_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___editors_14), (void*)value); } inline static int32_t get_offset_of_editorTypes_15() { return static_cast(offsetof(PropertyDescriptor_t851C1421EDEEC6CB7D059D50CF94886ECCA1B22B, ___editorTypes_15)); } inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* get_editorTypes_15() const { return ___editorTypes_15; } inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755** get_address_of_editorTypes_15() { return &___editorTypes_15; } inline void set_editorTypes_15(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* value) { ___editorTypes_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___editorTypes_15), (void*)value); } inline static int32_t get_offset_of_editorCount_16() { return static_cast(offsetof(PropertyDescriptor_t851C1421EDEEC6CB7D059D50CF94886ECCA1B22B, ___editorCount_16)); } inline int32_t get_editorCount_16() const { return ___editorCount_16; } inline int32_t* get_address_of_editorCount_16() { return &___editorCount_16; } inline void set_editorCount_16(int32_t value) { ___editorCount_16 = value; } }; // System.Reflection.PropertyInfo struct PropertyInfo_t : public MemberInfo_t { public: public: }; // System.ComponentModel.Design.RuntimeLicenseContext struct RuntimeLicenseContext_t38F0BCEF3097D49437450B0D1432588C2E5B1E2A : public LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF { public: // System.Collections.Hashtable System.ComponentModel.Design.RuntimeLicenseContext::savedLicenseKeys Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___savedLicenseKeys_1; public: inline static int32_t get_offset_of_savedLicenseKeys_1() { return static_cast(offsetof(RuntimeLicenseContext_t38F0BCEF3097D49437450B0D1432588C2E5B1E2A, ___savedLicenseKeys_1)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_savedLicenseKeys_1() const { return ___savedLicenseKeys_1; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_savedLicenseKeys_1() { return &___savedLicenseKeys_1; } inline void set_savedLicenseKeys_1(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___savedLicenseKeys_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___savedLicenseKeys_1), (void*)value); } }; struct RuntimeLicenseContext_t38F0BCEF3097D49437450B0D1432588C2E5B1E2A_StaticFields { public: // System.Diagnostics.TraceSwitch System.ComponentModel.Design.RuntimeLicenseContext::RuntimeLicenseContextSwitch TraceSwitch_tDDED47C3341F28742AE0F02339112484787F873D * ___RuntimeLicenseContextSwitch_0; public: inline static int32_t get_offset_of_RuntimeLicenseContextSwitch_0() { return static_cast(offsetof(RuntimeLicenseContext_t38F0BCEF3097D49437450B0D1432588C2E5B1E2A_StaticFields, ___RuntimeLicenseContextSwitch_0)); } inline TraceSwitch_tDDED47C3341F28742AE0F02339112484787F873D * get_RuntimeLicenseContextSwitch_0() const { return ___RuntimeLicenseContextSwitch_0; } inline TraceSwitch_tDDED47C3341F28742AE0F02339112484787F873D ** get_address_of_RuntimeLicenseContextSwitch_0() { return &___RuntimeLicenseContextSwitch_0; } inline void set_RuntimeLicenseContextSwitch_0(TraceSwitch_tDDED47C3341F28742AE0F02339112484787F873D * value) { ___RuntimeLicenseContextSwitch_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___RuntimeLicenseContextSwitch_0), (void*)value); } }; // System.Configuration.SettingsProvider struct SettingsProvider_tFCE5E05AC19521A4D65389DA99FE9472E98E5B2C : public ProviderBase_t75D5AF714666B4C010B8ED3B53ECB10D3171C148 { public: public: }; // System.IO.Stream struct Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB : public MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 { public: // System.IO.Stream/ReadWriteTask System.IO.Stream::_activeReadWriteTask ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974 * ____activeReadWriteTask_3; // System.Threading.SemaphoreSlim System.IO.Stream::_asyncActiveSemaphore SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 * ____asyncActiveSemaphore_4; public: inline static int32_t get_offset_of__activeReadWriteTask_3() { return static_cast(offsetof(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB, ____activeReadWriteTask_3)); } inline ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974 * get__activeReadWriteTask_3() const { return ____activeReadWriteTask_3; } inline ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974 ** get_address_of__activeReadWriteTask_3() { return &____activeReadWriteTask_3; } inline void set__activeReadWriteTask_3(ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974 * value) { ____activeReadWriteTask_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____activeReadWriteTask_3), (void*)value); } inline static int32_t get_offset_of__asyncActiveSemaphore_4() { return static_cast(offsetof(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB, ____asyncActiveSemaphore_4)); } inline SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 * get__asyncActiveSemaphore_4() const { return ____asyncActiveSemaphore_4; } inline SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 ** get_address_of__asyncActiveSemaphore_4() { return &____asyncActiveSemaphore_4; } inline void set__asyncActiveSemaphore_4(SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 * value) { ____asyncActiveSemaphore_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____asyncActiveSemaphore_4), (void*)value); } }; struct Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_StaticFields { public: // System.IO.Stream System.IO.Stream::Null Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___Null_1; public: inline static int32_t get_offset_of_Null_1() { return static_cast(offsetof(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_StaticFields, ___Null_1)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_Null_1() const { return ___Null_1; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_Null_1() { return &___Null_1; } inline void set_Null_1(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___Null_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Null_1), (void*)value); } }; // System.Net.SystemNetworkCredential struct SystemNetworkCredential_t5AA9DF4B9637633FDABD6B15737AACE6648AC23F : public NetworkCredential_t263CA6068540C6DA0E1CDE919BD7A15C28D55686 { public: public: }; struct SystemNetworkCredential_t5AA9DF4B9637633FDABD6B15737AACE6648AC23F_StaticFields { public: // System.Net.SystemNetworkCredential System.Net.SystemNetworkCredential::defaultCredential SystemNetworkCredential_t5AA9DF4B9637633FDABD6B15737AACE6648AC23F * ___defaultCredential_3; public: inline static int32_t get_offset_of_defaultCredential_3() { return static_cast(offsetof(SystemNetworkCredential_t5AA9DF4B9637633FDABD6B15737AACE6648AC23F_StaticFields, ___defaultCredential_3)); } inline SystemNetworkCredential_t5AA9DF4B9637633FDABD6B15737AACE6648AC23F * get_defaultCredential_3() const { return ___defaultCredential_3; } inline SystemNetworkCredential_t5AA9DF4B9637633FDABD6B15737AACE6648AC23F ** get_address_of_defaultCredential_3() { return &___defaultCredential_3; } inline void set_defaultCredential_3(SystemNetworkCredential_t5AA9DF4B9637633FDABD6B15737AACE6648AC23F * value) { ___defaultCredential_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultCredential_3), (void*)value); } }; // System.IO.TextReader struct TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F : public MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 { public: public: }; struct TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F_StaticFields { public: // System.Func`2 System.IO.TextReader::_ReadLineDelegate Func_2_t060A650AB95DEF14D4F579FA5999ACEFEEE0FD82 * ____ReadLineDelegate_1; // System.Func`2 System.IO.TextReader::_ReadDelegate Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * ____ReadDelegate_2; // System.IO.TextReader System.IO.TextReader::Null TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * ___Null_3; public: inline static int32_t get_offset_of__ReadLineDelegate_1() { return static_cast(offsetof(TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F_StaticFields, ____ReadLineDelegate_1)); } inline Func_2_t060A650AB95DEF14D4F579FA5999ACEFEEE0FD82 * get__ReadLineDelegate_1() const { return ____ReadLineDelegate_1; } inline Func_2_t060A650AB95DEF14D4F579FA5999ACEFEEE0FD82 ** get_address_of__ReadLineDelegate_1() { return &____ReadLineDelegate_1; } inline void set__ReadLineDelegate_1(Func_2_t060A650AB95DEF14D4F579FA5999ACEFEEE0FD82 * value) { ____ReadLineDelegate_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____ReadLineDelegate_1), (void*)value); } inline static int32_t get_offset_of__ReadDelegate_2() { return static_cast(offsetof(TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F_StaticFields, ____ReadDelegate_2)); } inline Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * get__ReadDelegate_2() const { return ____ReadDelegate_2; } inline Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C ** get_address_of__ReadDelegate_2() { return &____ReadDelegate_2; } inline void set__ReadDelegate_2(Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * value) { ____ReadDelegate_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____ReadDelegate_2), (void*)value); } inline static int32_t get_offset_of_Null_3() { return static_cast(offsetof(TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F_StaticFields, ___Null_3)); } inline TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * get_Null_3() const { return ___Null_3; } inline TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F ** get_address_of_Null_3() { return &___Null_3; } inline void set_Null_3(TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * value) { ___Null_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Null_3), (void*)value); } }; // System.UInt16 struct UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD { public: // System.UInt16 System.UInt16::m_value uint16_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD, ___m_value_0)); } inline uint16_t get_m_value_0() const { return ___m_value_0; } inline uint16_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint16_t value) { ___m_value_0 = value; } }; // System.UInt32 struct UInt32_tE60352A06233E4E69DD198BCC67142159F686B15 { public: // System.UInt32 System.UInt32::m_value uint32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(UInt32_tE60352A06233E4E69DD198BCC67142159F686B15, ___m_value_0)); } inline uint32_t get_m_value_0() const { return ___m_value_0; } inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint32_t value) { ___m_value_0 = value; } }; // System.Void struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5 { public: union { struct { }; uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1]; }; public: }; // System.Net.WebResponse struct WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 : public MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 { public: public: }; // System.Net.NetworkInformation.Win32IPGlobalProperties struct Win32IPGlobalProperties_t44A5F09048FBAA07204FDF98BE8588D70CCBF9F5 : public IPGlobalProperties_tD2935E387BBC03382D35AD2B6288214CAB4095C5 { public: public: }; // System.Security.Cryptography.X509Certificates.X509CertificateCollection struct X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B : public CollectionBase_tE5EF6826359F7FAC04D2F5E8AB93E1363A5826EB { public: public: }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter struct ConfiguredTaskAwaiter_tF5D70726C84CD1BBDFC5E58FFB1000C5750EA28C { public: // System.Threading.Tasks.Task System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter::m_task Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___m_task_0; // System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter::m_continueOnCapturedContext bool ___m_continueOnCapturedContext_1; public: inline static int32_t get_offset_of_m_task_0() { return static_cast(offsetof(ConfiguredTaskAwaiter_tF5D70726C84CD1BBDFC5E58FFB1000C5750EA28C, ___m_task_0)); } inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * get_m_task_0() const { return ___m_task_0; } inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * value) { ___m_task_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_0), (void*)value); } inline static int32_t get_offset_of_m_continueOnCapturedContext_1() { return static_cast(offsetof(ConfiguredTaskAwaiter_tF5D70726C84CD1BBDFC5E58FFB1000C5750EA28C, ___m_continueOnCapturedContext_1)); } inline bool get_m_continueOnCapturedContext_1() const { return ___m_continueOnCapturedContext_1; } inline bool* get_address_of_m_continueOnCapturedContext_1() { return &___m_continueOnCapturedContext_1; } inline void set_m_continueOnCapturedContext_1(bool value) { ___m_continueOnCapturedContext_1 = value; } }; // Native definition for P/Invoke marshalling of System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter struct ConfiguredTaskAwaiter_tF5D70726C84CD1BBDFC5E58FFB1000C5750EA28C_marshaled_pinvoke { Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___m_task_0; int32_t ___m_continueOnCapturedContext_1; }; // Native definition for COM marshalling of System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter struct ConfiguredTaskAwaiter_tF5D70726C84CD1BBDFC5E58FFB1000C5750EA28C_marshaled_com { Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___m_task_0; int32_t ___m_continueOnCapturedContext_1; }; // System.ComponentModel.LicFileLicenseProvider/LicFileLicense struct LicFileLicense_t48E8BE071EB96D1E15F23A7D51B387776EE73128 : public License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 { public: // System.String System.ComponentModel.LicFileLicenseProvider/LicFileLicense::key String_t* ___key_0; public: inline static int32_t get_offset_of_key_0() { return static_cast(offsetof(LicFileLicense_t48E8BE071EB96D1E15F23A7D51B387776EE73128, ___key_0)); } inline String_t* get_key_0() const { return ___key_0; } inline String_t** get_address_of_key_0() { return &___key_0; } inline void set_key_0(String_t* value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } }; // System.Net.WebRequest/WebProxyWrapper struct WebProxyWrapper_tEF5FEF9C3A75F32ABD48893D8B1029B6DB629CEB : public WebProxyWrapperOpaque_t06FAF957BFE393A0BB04B732DB4ADE60710DFFA2 { public: public: }; // System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1> struct AsyncTaskMethodBuilder_1_t04278D5078B08CC7E24AFDDAEE48378547262884 { public: // System.Runtime.CompilerServices.AsyncMethodBuilderCore System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_coreState AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34 ___m_coreState_1; // System.Threading.Tasks.Task`1 System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_task Task_1_tDEAB8548D192DBB144FB5A8A3D04AD2EEB5E3D13 * ___m_task_2; public: inline static int32_t get_offset_of_m_coreState_1() { return static_cast(offsetof(AsyncTaskMethodBuilder_1_t04278D5078B08CC7E24AFDDAEE48378547262884, ___m_coreState_1)); } inline AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34 get_m_coreState_1() const { return ___m_coreState_1; } inline AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34 * get_address_of_m_coreState_1() { return &___m_coreState_1; } inline void set_m_coreState_1(AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34 value) { ___m_coreState_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_coreState_1))->___m_stateMachine_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_coreState_1))->___m_defaultContextAction_1), (void*)NULL); #endif } inline static int32_t get_offset_of_m_task_2() { return static_cast(offsetof(AsyncTaskMethodBuilder_1_t04278D5078B08CC7E24AFDDAEE48378547262884, ___m_task_2)); } inline Task_1_tDEAB8548D192DBB144FB5A8A3D04AD2EEB5E3D13 * get_m_task_2() const { return ___m_task_2; } inline Task_1_tDEAB8548D192DBB144FB5A8A3D04AD2EEB5E3D13 ** get_address_of_m_task_2() { return &___m_task_2; } inline void set_m_task_2(Task_1_tDEAB8548D192DBB144FB5A8A3D04AD2EEB5E3D13 * value) { ___m_task_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_2), (void*)value); } }; struct AsyncTaskMethodBuilder_1_t04278D5078B08CC7E24AFDDAEE48378547262884_StaticFields { public: // System.Threading.Tasks.Task`1 System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::s_defaultResultTask Task_1_tDEAB8548D192DBB144FB5A8A3D04AD2EEB5E3D13 * ___s_defaultResultTask_0; public: inline static int32_t get_offset_of_s_defaultResultTask_0() { return static_cast(offsetof(AsyncTaskMethodBuilder_1_t04278D5078B08CC7E24AFDDAEE48378547262884_StaticFields, ___s_defaultResultTask_0)); } inline Task_1_tDEAB8548D192DBB144FB5A8A3D04AD2EEB5E3D13 * get_s_defaultResultTask_0() const { return ___s_defaultResultTask_0; } inline Task_1_tDEAB8548D192DBB144FB5A8A3D04AD2EEB5E3D13 ** get_address_of_s_defaultResultTask_0() { return &___s_defaultResultTask_0; } inline void set_s_defaultResultTask_0(Task_1_tDEAB8548D192DBB144FB5A8A3D04AD2EEB5E3D13 * value) { ___s_defaultResultTask_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_defaultResultTask_0), (void*)value); } }; // System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1> struct AsyncTaskMethodBuilder_1_t7F448C9784E540366CBBD018041BC8A8A74DB09F { public: // System.Runtime.CompilerServices.AsyncMethodBuilderCore System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_coreState AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34 ___m_coreState_1; // System.Threading.Tasks.Task`1 System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_task Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * ___m_task_2; public: inline static int32_t get_offset_of_m_coreState_1() { return static_cast(offsetof(AsyncTaskMethodBuilder_1_t7F448C9784E540366CBBD018041BC8A8A74DB09F, ___m_coreState_1)); } inline AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34 get_m_coreState_1() const { return ___m_coreState_1; } inline AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34 * get_address_of_m_coreState_1() { return &___m_coreState_1; } inline void set_m_coreState_1(AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34 value) { ___m_coreState_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_coreState_1))->___m_stateMachine_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_coreState_1))->___m_defaultContextAction_1), (void*)NULL); #endif } inline static int32_t get_offset_of_m_task_2() { return static_cast(offsetof(AsyncTaskMethodBuilder_1_t7F448C9784E540366CBBD018041BC8A8A74DB09F, ___m_task_2)); } inline Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * get_m_task_2() const { return ___m_task_2; } inline Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF ** get_address_of_m_task_2() { return &___m_task_2; } inline void set_m_task_2(Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * value) { ___m_task_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_2), (void*)value); } }; struct AsyncTaskMethodBuilder_1_t7F448C9784E540366CBBD018041BC8A8A74DB09F_StaticFields { public: // System.Threading.Tasks.Task`1 System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::s_defaultResultTask Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * ___s_defaultResultTask_0; public: inline static int32_t get_offset_of_s_defaultResultTask_0() { return static_cast(offsetof(AsyncTaskMethodBuilder_1_t7F448C9784E540366CBBD018041BC8A8A74DB09F_StaticFields, ___s_defaultResultTask_0)); } inline Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * get_s_defaultResultTask_0() const { return ___s_defaultResultTask_0; } inline Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF ** get_address_of_s_defaultResultTask_0() { return &___s_defaultResultTask_0; } inline void set_s_defaultResultTask_0(Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * value) { ___s_defaultResultTask_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_defaultResultTask_0), (void*)value); } }; // System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1 struct AsyncTaskMethodBuilder_1_t73D9138C5A15D02CE27A5E53B9C8862A8E99880D { public: // System.Runtime.CompilerServices.AsyncMethodBuilderCore System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_coreState AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34 ___m_coreState_1; // System.Threading.Tasks.Task`1 System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_task Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 * ___m_task_2; public: inline static int32_t get_offset_of_m_coreState_1() { return static_cast(offsetof(AsyncTaskMethodBuilder_1_t73D9138C5A15D02CE27A5E53B9C8862A8E99880D, ___m_coreState_1)); } inline AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34 get_m_coreState_1() const { return ___m_coreState_1; } inline AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34 * get_address_of_m_coreState_1() { return &___m_coreState_1; } inline void set_m_coreState_1(AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34 value) { ___m_coreState_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_coreState_1))->___m_stateMachine_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_coreState_1))->___m_defaultContextAction_1), (void*)NULL); #endif } inline static int32_t get_offset_of_m_task_2() { return static_cast(offsetof(AsyncTaskMethodBuilder_1_t73D9138C5A15D02CE27A5E53B9C8862A8E99880D, ___m_task_2)); } inline Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 * get_m_task_2() const { return ___m_task_2; } inline Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 ** get_address_of_m_task_2() { return &___m_task_2; } inline void set_m_task_2(Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 * value) { ___m_task_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_2), (void*)value); } }; struct AsyncTaskMethodBuilder_1_t73D9138C5A15D02CE27A5E53B9C8862A8E99880D_StaticFields { public: // System.Threading.Tasks.Task`1 System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::s_defaultResultTask Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 * ___s_defaultResultTask_0; public: inline static int32_t get_offset_of_s_defaultResultTask_0() { return static_cast(offsetof(AsyncTaskMethodBuilder_1_t73D9138C5A15D02CE27A5E53B9C8862A8E99880D_StaticFields, ___s_defaultResultTask_0)); } inline Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 * get_s_defaultResultTask_0() const { return ___s_defaultResultTask_0; } inline Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 ** get_address_of_s_defaultResultTask_0() { return &___s_defaultResultTask_0; } inline void set_s_defaultResultTask_0(Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 * value) { ___s_defaultResultTask_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_defaultResultTask_0), (void*)value); } }; // System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1 struct AsyncTaskMethodBuilder_1_tC844D2260A71782812AB64F7BF5EDC8C4ED35A75 { public: // System.Runtime.CompilerServices.AsyncMethodBuilderCore System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_coreState AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34 ___m_coreState_1; // System.Threading.Tasks.Task`1 System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_task Task_1_t4B8CF50BCA70ADAD54A2813B464DF4A25F896857 * ___m_task_2; public: inline static int32_t get_offset_of_m_coreState_1() { return static_cast(offsetof(AsyncTaskMethodBuilder_1_tC844D2260A71782812AB64F7BF5EDC8C4ED35A75, ___m_coreState_1)); } inline AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34 get_m_coreState_1() const { return ___m_coreState_1; } inline AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34 * get_address_of_m_coreState_1() { return &___m_coreState_1; } inline void set_m_coreState_1(AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34 value) { ___m_coreState_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_coreState_1))->___m_stateMachine_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_coreState_1))->___m_defaultContextAction_1), (void*)NULL); #endif } inline static int32_t get_offset_of_m_task_2() { return static_cast(offsetof(AsyncTaskMethodBuilder_1_tC844D2260A71782812AB64F7BF5EDC8C4ED35A75, ___m_task_2)); } inline Task_1_t4B8CF50BCA70ADAD54A2813B464DF4A25F896857 * get_m_task_2() const { return ___m_task_2; } inline Task_1_t4B8CF50BCA70ADAD54A2813B464DF4A25F896857 ** get_address_of_m_task_2() { return &___m_task_2; } inline void set_m_task_2(Task_1_t4B8CF50BCA70ADAD54A2813B464DF4A25F896857 * value) { ___m_task_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_2), (void*)value); } }; struct AsyncTaskMethodBuilder_1_tC844D2260A71782812AB64F7BF5EDC8C4ED35A75_StaticFields { public: // System.Threading.Tasks.Task`1 System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::s_defaultResultTask Task_1_t4B8CF50BCA70ADAD54A2813B464DF4A25F896857 * ___s_defaultResultTask_0; public: inline static int32_t get_offset_of_s_defaultResultTask_0() { return static_cast(offsetof(AsyncTaskMethodBuilder_1_tC844D2260A71782812AB64F7BF5EDC8C4ED35A75_StaticFields, ___s_defaultResultTask_0)); } inline Task_1_t4B8CF50BCA70ADAD54A2813B464DF4A25F896857 * get_s_defaultResultTask_0() const { return ___s_defaultResultTask_0; } inline Task_1_t4B8CF50BCA70ADAD54A2813B464DF4A25F896857 ** get_address_of_s_defaultResultTask_0() { return &___s_defaultResultTask_0; } inline void set_s_defaultResultTask_0(Task_1_t4B8CF50BCA70ADAD54A2813B464DF4A25F896857 * value) { ___s_defaultResultTask_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_defaultResultTask_0), (void*)value); } }; // System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1 struct AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 { public: // System.Runtime.CompilerServices.AsyncMethodBuilderCore System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_coreState AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34 ___m_coreState_1; // System.Threading.Tasks.Task`1 System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_task Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * ___m_task_2; public: inline static int32_t get_offset_of_m_coreState_1() { return static_cast(offsetof(AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020, ___m_coreState_1)); } inline AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34 get_m_coreState_1() const { return ___m_coreState_1; } inline AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34 * get_address_of_m_coreState_1() { return &___m_coreState_1; } inline void set_m_coreState_1(AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34 value) { ___m_coreState_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_coreState_1))->___m_stateMachine_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_coreState_1))->___m_defaultContextAction_1), (void*)NULL); #endif } inline static int32_t get_offset_of_m_task_2() { return static_cast(offsetof(AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020, ___m_task_2)); } inline Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * get_m_task_2() const { return ___m_task_2; } inline Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 ** get_address_of_m_task_2() { return &___m_task_2; } inline void set_m_task_2(Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * value) { ___m_task_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_2), (void*)value); } }; struct AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020_StaticFields { public: // System.Threading.Tasks.Task`1 System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::s_defaultResultTask Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * ___s_defaultResultTask_0; public: inline static int32_t get_offset_of_s_defaultResultTask_0() { return static_cast(offsetof(AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020_StaticFields, ___s_defaultResultTask_0)); } inline Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * get_s_defaultResultTask_0() const { return ___s_defaultResultTask_0; } inline Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 ** get_address_of_s_defaultResultTask_0() { return &___s_defaultResultTask_0; } inline void set_s_defaultResultTask_0(Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * value) { ___s_defaultResultTask_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_defaultResultTask_0), (void*)value); } }; // System.Nullable`1 struct Nullable_1_t70A8504898A1894C4480C80B2A7FAC6E7823F89D { public: // T System.Nullable`1::value DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___value_0; // System.Boolean System.Nullable`1::has_value bool ___has_value_1; public: inline static int32_t get_offset_of_value_0() { return static_cast(offsetof(Nullable_1_t70A8504898A1894C4480C80B2A7FAC6E7823F89D, ___value_0)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_value_0() const { return ___value_0; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_value_0() { return &___value_0; } inline void set_value_0(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___value_0 = value; } inline static int32_t get_offset_of_has_value_1() { return static_cast(offsetof(Nullable_1_t70A8504898A1894C4480C80B2A7FAC6E7823F89D, ___has_value_1)); } inline bool get_has_value_1() const { return ___has_value_1; } inline bool* get_address_of_has_value_1() { return &___has_value_1; } inline void set_has_value_1(bool value) { ___has_value_1 = value; } }; // System.Net.Sockets.AddressFamily struct AddressFamily_tFCF4C888B95C069AB2D4720EC8C2E19453C28B33 { public: // System.Int32 System.Net.Sockets.AddressFamily::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(AddressFamily_tFCF4C888B95C069AB2D4720EC8C2E19453C28B33, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Reflection.Assembly struct Assembly_t : public RuntimeObject { public: // System.IntPtr System.Reflection.Assembly::_mono_assembly intptr_t ____mono_assembly_0; // System.Reflection.Assembly/ResolveEventHolder System.Reflection.Assembly::resolve_event_holder ResolveEventHolder_tA37081FAEBE21D83D216225B4489BA8A37B4E13C * ___resolve_event_holder_1; // System.Object System.Reflection.Assembly::_evidence RuntimeObject * ____evidence_2; // System.Object System.Reflection.Assembly::_minimum RuntimeObject * ____minimum_3; // System.Object System.Reflection.Assembly::_optional RuntimeObject * ____optional_4; // System.Object System.Reflection.Assembly::_refuse RuntimeObject * ____refuse_5; // System.Object System.Reflection.Assembly::_granted RuntimeObject * ____granted_6; // System.Object System.Reflection.Assembly::_denied RuntimeObject * ____denied_7; // System.Boolean System.Reflection.Assembly::fromByteArray bool ___fromByteArray_8; // System.String System.Reflection.Assembly::assemblyName String_t* ___assemblyName_9; public: inline static int32_t get_offset_of__mono_assembly_0() { return static_cast(offsetof(Assembly_t, ____mono_assembly_0)); } inline intptr_t get__mono_assembly_0() const { return ____mono_assembly_0; } inline intptr_t* get_address_of__mono_assembly_0() { return &____mono_assembly_0; } inline void set__mono_assembly_0(intptr_t value) { ____mono_assembly_0 = value; } inline static int32_t get_offset_of_resolve_event_holder_1() { return static_cast(offsetof(Assembly_t, ___resolve_event_holder_1)); } inline ResolveEventHolder_tA37081FAEBE21D83D216225B4489BA8A37B4E13C * get_resolve_event_holder_1() const { return ___resolve_event_holder_1; } inline ResolveEventHolder_tA37081FAEBE21D83D216225B4489BA8A37B4E13C ** get_address_of_resolve_event_holder_1() { return &___resolve_event_holder_1; } inline void set_resolve_event_holder_1(ResolveEventHolder_tA37081FAEBE21D83D216225B4489BA8A37B4E13C * value) { ___resolve_event_holder_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___resolve_event_holder_1), (void*)value); } inline static int32_t get_offset_of__evidence_2() { return static_cast(offsetof(Assembly_t, ____evidence_2)); } inline RuntimeObject * get__evidence_2() const { return ____evidence_2; } inline RuntimeObject ** get_address_of__evidence_2() { return &____evidence_2; } inline void set__evidence_2(RuntimeObject * value) { ____evidence_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____evidence_2), (void*)value); } inline static int32_t get_offset_of__minimum_3() { return static_cast(offsetof(Assembly_t, ____minimum_3)); } inline RuntimeObject * get__minimum_3() const { return ____minimum_3; } inline RuntimeObject ** get_address_of__minimum_3() { return &____minimum_3; } inline void set__minimum_3(RuntimeObject * value) { ____minimum_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____minimum_3), (void*)value); } inline static int32_t get_offset_of__optional_4() { return static_cast(offsetof(Assembly_t, ____optional_4)); } inline RuntimeObject * get__optional_4() const { return ____optional_4; } inline RuntimeObject ** get_address_of__optional_4() { return &____optional_4; } inline void set__optional_4(RuntimeObject * value) { ____optional_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____optional_4), (void*)value); } inline static int32_t get_offset_of__refuse_5() { return static_cast(offsetof(Assembly_t, ____refuse_5)); } inline RuntimeObject * get__refuse_5() const { return ____refuse_5; } inline RuntimeObject ** get_address_of__refuse_5() { return &____refuse_5; } inline void set__refuse_5(RuntimeObject * value) { ____refuse_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____refuse_5), (void*)value); } inline static int32_t get_offset_of__granted_6() { return static_cast(offsetof(Assembly_t, ____granted_6)); } inline RuntimeObject * get__granted_6() const { return ____granted_6; } inline RuntimeObject ** get_address_of__granted_6() { return &____granted_6; } inline void set__granted_6(RuntimeObject * value) { ____granted_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____granted_6), (void*)value); } inline static int32_t get_offset_of__denied_7() { return static_cast(offsetof(Assembly_t, ____denied_7)); } inline RuntimeObject * get__denied_7() const { return ____denied_7; } inline RuntimeObject ** get_address_of__denied_7() { return &____denied_7; } inline void set__denied_7(RuntimeObject * value) { ____denied_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____denied_7), (void*)value); } inline static int32_t get_offset_of_fromByteArray_8() { return static_cast(offsetof(Assembly_t, ___fromByteArray_8)); } inline bool get_fromByteArray_8() const { return ___fromByteArray_8; } inline bool* get_address_of_fromByteArray_8() { return &___fromByteArray_8; } inline void set_fromByteArray_8(bool value) { ___fromByteArray_8 = value; } inline static int32_t get_offset_of_assemblyName_9() { return static_cast(offsetof(Assembly_t, ___assemblyName_9)); } inline String_t* get_assemblyName_9() const { return ___assemblyName_9; } inline String_t** get_address_of_assemblyName_9() { return &___assemblyName_9; } inline void set_assemblyName_9(String_t* value) { ___assemblyName_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___assemblyName_9), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Reflection.Assembly struct Assembly_t_marshaled_pinvoke { intptr_t ____mono_assembly_0; ResolveEventHolder_tA37081FAEBE21D83D216225B4489BA8A37B4E13C * ___resolve_event_holder_1; Il2CppIUnknown* ____evidence_2; Il2CppIUnknown* ____minimum_3; Il2CppIUnknown* ____optional_4; Il2CppIUnknown* ____refuse_5; Il2CppIUnknown* ____granted_6; Il2CppIUnknown* ____denied_7; int32_t ___fromByteArray_8; char* ___assemblyName_9; }; // Native definition for COM marshalling of System.Reflection.Assembly struct Assembly_t_marshaled_com { intptr_t ____mono_assembly_0; ResolveEventHolder_tA37081FAEBE21D83D216225B4489BA8A37B4E13C * ___resolve_event_holder_1; Il2CppIUnknown* ____evidence_2; Il2CppIUnknown* ____minimum_3; Il2CppIUnknown* ____optional_4; Il2CppIUnknown* ____refuse_5; Il2CppIUnknown* ____granted_6; Il2CppIUnknown* ____denied_7; int32_t ___fromByteArray_8; Il2CppChar* ___assemblyName_9; }; // System.Reflection.AssemblyContentType struct AssemblyContentType_t3D610214A4025EDAEA27C569340C2AC5B0B828AE { public: // System.Int32 System.Reflection.AssemblyContentType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(AssemblyContentType_t3D610214A4025EDAEA27C569340C2AC5B0B828AE, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Configuration.Assemblies.AssemblyHashAlgorithm struct AssemblyHashAlgorithm_tAC2C042FAE3F5BCF6BEFA05671C2BE09A85D6E66 { public: // System.Int32 System.Configuration.Assemblies.AssemblyHashAlgorithm::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(AssemblyHashAlgorithm_tAC2C042FAE3F5BCF6BEFA05671C2BE09A85D6E66, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Reflection.AssemblyNameFlags struct AssemblyNameFlags_t18020151897CB7FD3FA390EE3999ECCA3FEA7622 { public: // System.Int32 System.Reflection.AssemblyNameFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(AssemblyNameFlags_t18020151897CB7FD3FA390EE3999ECCA3FEA7622, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Configuration.Assemblies.AssemblyVersionCompatibility struct AssemblyVersionCompatibility_t686857D4C42019A45D4309AB80A2517E3D34BEDD { public: // System.Int32 System.Configuration.Assemblies.AssemblyVersionCompatibility::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(AssemblyVersionCompatibility_t686857D4C42019A45D4309AB80A2517E3D34BEDD, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Net.Security.AuthenticationLevel struct AuthenticationLevel_tABDA8290B869DCA69B73080E99B1E3FE6F475165 { public: // System.Int32 System.Net.Security.AuthenticationLevel::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(AuthenticationLevel_tABDA8290B869DCA69B73080E99B1E3FE6F475165, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.ComponentModel.BindableSupport struct BindableSupport_tC2FF9850A9A2550F292A0372290F59109A796859 { public: // System.Int32 System.ComponentModel.BindableSupport::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(BindableSupport_tC2FF9850A9A2550F292A0372290F59109A796859, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Reflection.BindingFlags struct BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733 { public: // System.Int32 System.Reflection.BindingFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Globalization.CompareOptions struct CompareOptions_tD3D7F165240DC4D784A11B1E2F21DC0D6D18E725 { public: // System.Int32 System.Globalization.CompareOptions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(CompareOptions_tD3D7F165240DC4D784A11B1E2F21DC0D6D18E725, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.IO.Compression.CompressionMode struct CompressionMode_t8D7FCD23B345281B0B0F6668CDD65C6BA22B1081 { public: // System.Int32 System.IO.Compression.CompressionMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(CompressionMode_t8D7FCD23B345281B0B0F6668CDD65C6BA22B1081, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Reflection.ConstructorInfo struct ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B : public MethodBase_t { public: public: }; struct ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B_StaticFields { public: // System.String System.Reflection.ConstructorInfo::ConstructorName String_t* ___ConstructorName_0; // System.String System.Reflection.ConstructorInfo::TypeConstructorName String_t* ___TypeConstructorName_1; public: inline static int32_t get_offset_of_ConstructorName_0() { return static_cast(offsetof(ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B_StaticFields, ___ConstructorName_0)); } inline String_t* get_ConstructorName_0() const { return ___ConstructorName_0; } inline String_t** get_address_of_ConstructorName_0() { return &___ConstructorName_0; } inline void set_ConstructorName_0(String_t* value) { ___ConstructorName_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___ConstructorName_0), (void*)value); } inline static int32_t get_offset_of_TypeConstructorName_1() { return static_cast(offsetof(ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B_StaticFields, ___TypeConstructorName_1)); } inline String_t* get_TypeConstructorName_1() const { return ___TypeConstructorName_1; } inline String_t** get_address_of_TypeConstructorName_1() { return &___TypeConstructorName_1; } inline void set_TypeConstructorName_1(String_t* value) { ___TypeConstructorName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___TypeConstructorName_1), (void*)value); } }; // System.Net.CookieCollection struct CookieCollection_t2D2FA42D43C1A8053D95FD2205360B2E0B94AF06 : public RuntimeObject { public: // System.Int32 System.Net.CookieCollection::m_version int32_t ___m_version_0; // System.Collections.ArrayList System.Net.CookieCollection::m_list ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___m_list_1; // System.DateTime System.Net.CookieCollection::m_TimeStamp DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___m_TimeStamp_2; // System.Boolean System.Net.CookieCollection::m_has_other_versions bool ___m_has_other_versions_3; // System.Boolean System.Net.CookieCollection::m_IsReadOnly bool ___m_IsReadOnly_4; public: inline static int32_t get_offset_of_m_version_0() { return static_cast(offsetof(CookieCollection_t2D2FA42D43C1A8053D95FD2205360B2E0B94AF06, ___m_version_0)); } inline int32_t get_m_version_0() const { return ___m_version_0; } inline int32_t* get_address_of_m_version_0() { return &___m_version_0; } inline void set_m_version_0(int32_t value) { ___m_version_0 = value; } inline static int32_t get_offset_of_m_list_1() { return static_cast(offsetof(CookieCollection_t2D2FA42D43C1A8053D95FD2205360B2E0B94AF06, ___m_list_1)); } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * get_m_list_1() const { return ___m_list_1; } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** get_address_of_m_list_1() { return &___m_list_1; } inline void set_m_list_1(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * value) { ___m_list_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_list_1), (void*)value); } inline static int32_t get_offset_of_m_TimeStamp_2() { return static_cast(offsetof(CookieCollection_t2D2FA42D43C1A8053D95FD2205360B2E0B94AF06, ___m_TimeStamp_2)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_m_TimeStamp_2() const { return ___m_TimeStamp_2; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_m_TimeStamp_2() { return &___m_TimeStamp_2; } inline void set_m_TimeStamp_2(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___m_TimeStamp_2 = value; } inline static int32_t get_offset_of_m_has_other_versions_3() { return static_cast(offsetof(CookieCollection_t2D2FA42D43C1A8053D95FD2205360B2E0B94AF06, ___m_has_other_versions_3)); } inline bool get_m_has_other_versions_3() const { return ___m_has_other_versions_3; } inline bool* get_address_of_m_has_other_versions_3() { return &___m_has_other_versions_3; } inline void set_m_has_other_versions_3(bool value) { ___m_has_other_versions_3 = value; } inline static int32_t get_offset_of_m_IsReadOnly_4() { return static_cast(offsetof(CookieCollection_t2D2FA42D43C1A8053D95FD2205360B2E0B94AF06, ___m_IsReadOnly_4)); } inline bool get_m_IsReadOnly_4() const { return ___m_IsReadOnly_4; } inline bool* get_address_of_m_IsReadOnly_4() { return &___m_IsReadOnly_4; } inline void set_m_IsReadOnly_4(bool value) { ___m_IsReadOnly_4 = value; } }; // System.Net.CookieVariant struct CookieVariant_tD627E5E4655DB30095BE805EB361BBCD7539463E { public: // System.Int32 System.Net.CookieVariant::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(CookieVariant_tD627E5E4655DB30095BE805EB361BBCD7539463E, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Net.DecompressionMethods struct DecompressionMethods_t76ACF45ED0A6BDCC13358657248D674BCC1015BC { public: // System.Int32 System.Net.DecompressionMethods::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(DecompressionMethods_t76ACF45ED0A6BDCC13358657248D674BCC1015BC, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Delegate struct Delegate_t : public RuntimeObject { public: // System.IntPtr System.Delegate::method_ptr Il2CppMethodPointer ___method_ptr_0; // System.IntPtr System.Delegate::invoke_impl intptr_t ___invoke_impl_1; // System.Object System.Delegate::m_target RuntimeObject * ___m_target_2; // System.IntPtr System.Delegate::method intptr_t ___method_3; // System.IntPtr System.Delegate::delegate_trampoline intptr_t ___delegate_trampoline_4; // System.IntPtr System.Delegate::extra_arg intptr_t ___extra_arg_5; // System.IntPtr System.Delegate::method_code intptr_t ___method_code_6; // System.Reflection.MethodInfo System.Delegate::method_info MethodInfo_t * ___method_info_7; // System.Reflection.MethodInfo System.Delegate::original_method_info MethodInfo_t * ___original_method_info_8; // System.DelegateData System.Delegate::data DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9; // System.Boolean System.Delegate::method_is_virtual bool ___method_is_virtual_10; public: inline static int32_t get_offset_of_method_ptr_0() { return static_cast(offsetof(Delegate_t, ___method_ptr_0)); } inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; } inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; } inline void set_method_ptr_0(Il2CppMethodPointer value) { ___method_ptr_0 = value; } inline static int32_t get_offset_of_invoke_impl_1() { return static_cast(offsetof(Delegate_t, ___invoke_impl_1)); } inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; } inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; } inline void set_invoke_impl_1(intptr_t value) { ___invoke_impl_1 = value; } inline static int32_t get_offset_of_m_target_2() { return static_cast(offsetof(Delegate_t, ___m_target_2)); } inline RuntimeObject * get_m_target_2() const { return ___m_target_2; } inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; } inline void set_m_target_2(RuntimeObject * value) { ___m_target_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_target_2), (void*)value); } inline static int32_t get_offset_of_method_3() { return static_cast(offsetof(Delegate_t, ___method_3)); } inline intptr_t get_method_3() const { return ___method_3; } inline intptr_t* get_address_of_method_3() { return &___method_3; } inline void set_method_3(intptr_t value) { ___method_3 = value; } inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast(offsetof(Delegate_t, ___delegate_trampoline_4)); } inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; } inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; } inline void set_delegate_trampoline_4(intptr_t value) { ___delegate_trampoline_4 = value; } inline static int32_t get_offset_of_extra_arg_5() { return static_cast(offsetof(Delegate_t, ___extra_arg_5)); } inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; } inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; } inline void set_extra_arg_5(intptr_t value) { ___extra_arg_5 = value; } inline static int32_t get_offset_of_method_code_6() { return static_cast(offsetof(Delegate_t, ___method_code_6)); } inline intptr_t get_method_code_6() const { return ___method_code_6; } inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; } inline void set_method_code_6(intptr_t value) { ___method_code_6 = value; } inline static int32_t get_offset_of_method_info_7() { return static_cast(offsetof(Delegate_t, ___method_info_7)); } inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; } inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; } inline void set_method_info_7(MethodInfo_t * value) { ___method_info_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___method_info_7), (void*)value); } inline static int32_t get_offset_of_original_method_info_8() { return static_cast(offsetof(Delegate_t, ___original_method_info_8)); } inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; } inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; } inline void set_original_method_info_8(MethodInfo_t * value) { ___original_method_info_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___original_method_info_8), (void*)value); } inline static int32_t get_offset_of_data_9() { return static_cast(offsetof(Delegate_t, ___data_9)); } inline DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * get_data_9() const { return ___data_9; } inline DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 ** get_address_of_data_9() { return &___data_9; } inline void set_data_9(DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * value) { ___data_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value); } inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast(offsetof(Delegate_t, ___method_is_virtual_10)); } inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; } inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; } inline void set_method_is_virtual_10(bool value) { ___method_is_virtual_10 = value; } }; // Native definition for P/Invoke marshalling of System.Delegate struct Delegate_t_marshaled_pinvoke { intptr_t ___method_ptr_0; intptr_t ___invoke_impl_1; Il2CppIUnknown* ___m_target_2; intptr_t ___method_3; intptr_t ___delegate_trampoline_4; intptr_t ___extra_arg_5; intptr_t ___method_code_6; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9; int32_t ___method_is_virtual_10; }; // Native definition for COM marshalling of System.Delegate struct Delegate_t_marshaled_com { intptr_t ___method_ptr_0; intptr_t ___invoke_impl_1; Il2CppIUnknown* ___m_target_2; intptr_t ___method_3; intptr_t ___delegate_trampoline_4; intptr_t ___extra_arg_5; intptr_t ___method_code_6; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9; int32_t ___method_is_virtual_10; }; // System.Exception struct Exception_t : public RuntimeObject { public: // System.String System.Exception::_className String_t* ____className_1; // System.String System.Exception::_message String_t* ____message_2; // System.Collections.IDictionary System.Exception::_data RuntimeObject* ____data_3; // System.Exception System.Exception::_innerException Exception_t * ____innerException_4; // System.String System.Exception::_helpURL String_t* ____helpURL_5; // System.Object System.Exception::_stackTrace RuntimeObject * ____stackTrace_6; // System.String System.Exception::_stackTraceString String_t* ____stackTraceString_7; // System.String System.Exception::_remoteStackTraceString String_t* ____remoteStackTraceString_8; // System.Int32 System.Exception::_remoteStackIndex int32_t ____remoteStackIndex_9; // System.Object System.Exception::_dynamicMethods RuntimeObject * ____dynamicMethods_10; // System.Int32 System.Exception::_HResult int32_t ____HResult_11; // System.String System.Exception::_source String_t* ____source_12; // System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; // System.Diagnostics.StackTrace[] System.Exception::captured_traces StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; // System.IntPtr[] System.Exception::native_trace_ips IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* ___native_trace_ips_15; public: inline static int32_t get_offset_of__className_1() { return static_cast(offsetof(Exception_t, ____className_1)); } inline String_t* get__className_1() const { return ____className_1; } inline String_t** get_address_of__className_1() { return &____className_1; } inline void set__className_1(String_t* value) { ____className_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value); } inline static int32_t get_offset_of__message_2() { return static_cast(offsetof(Exception_t, ____message_2)); } inline String_t* get__message_2() const { return ____message_2; } inline String_t** get_address_of__message_2() { return &____message_2; } inline void set__message_2(String_t* value) { ____message_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value); } inline static int32_t get_offset_of__data_3() { return static_cast(offsetof(Exception_t, ____data_3)); } inline RuntimeObject* get__data_3() const { return ____data_3; } inline RuntimeObject** get_address_of__data_3() { return &____data_3; } inline void set__data_3(RuntimeObject* value) { ____data_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value); } inline static int32_t get_offset_of__innerException_4() { return static_cast(offsetof(Exception_t, ____innerException_4)); } inline Exception_t * get__innerException_4() const { return ____innerException_4; } inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; } inline void set__innerException_4(Exception_t * value) { ____innerException_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value); } inline static int32_t get_offset_of__helpURL_5() { return static_cast(offsetof(Exception_t, ____helpURL_5)); } inline String_t* get__helpURL_5() const { return ____helpURL_5; } inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; } inline void set__helpURL_5(String_t* value) { ____helpURL_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value); } inline static int32_t get_offset_of__stackTrace_6() { return static_cast(offsetof(Exception_t, ____stackTrace_6)); } inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; } inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; } inline void set__stackTrace_6(RuntimeObject * value) { ____stackTrace_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value); } inline static int32_t get_offset_of__stackTraceString_7() { return static_cast(offsetof(Exception_t, ____stackTraceString_7)); } inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; } inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; } inline void set__stackTraceString_7(String_t* value) { ____stackTraceString_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value); } inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast(offsetof(Exception_t, ____remoteStackTraceString_8)); } inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; } inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; } inline void set__remoteStackTraceString_8(String_t* value) { ____remoteStackTraceString_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value); } inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast(offsetof(Exception_t, ____remoteStackIndex_9)); } inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; } inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; } inline void set__remoteStackIndex_9(int32_t value) { ____remoteStackIndex_9 = value; } inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast(offsetof(Exception_t, ____dynamicMethods_10)); } inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; } inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; } inline void set__dynamicMethods_10(RuntimeObject * value) { ____dynamicMethods_10 = value; Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value); } inline static int32_t get_offset_of__HResult_11() { return static_cast(offsetof(Exception_t, ____HResult_11)); } inline int32_t get__HResult_11() const { return ____HResult_11; } inline int32_t* get_address_of__HResult_11() { return &____HResult_11; } inline void set__HResult_11(int32_t value) { ____HResult_11 = value; } inline static int32_t get_offset_of__source_12() { return static_cast(offsetof(Exception_t, ____source_12)); } inline String_t* get__source_12() const { return ____source_12; } inline String_t** get_address_of__source_12() { return &____source_12; } inline void set__source_12(String_t* value) { ____source_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value); } inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast(offsetof(Exception_t, ____safeSerializationManager_13)); } inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; } inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; } inline void set__safeSerializationManager_13(SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * value) { ____safeSerializationManager_13 = value; Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value); } inline static int32_t get_offset_of_captured_traces_14() { return static_cast(offsetof(Exception_t, ___captured_traces_14)); } inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* get_captured_traces_14() const { return ___captured_traces_14; } inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971** get_address_of_captured_traces_14() { return &___captured_traces_14; } inline void set_captured_traces_14(StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* value) { ___captured_traces_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value); } inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast(offsetof(Exception_t, ___native_trace_ips_15)); } inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* get_native_trace_ips_15() const { return ___native_trace_ips_15; } inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; } inline void set_native_trace_ips_15(IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* value) { ___native_trace_ips_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value); } }; struct Exception_t_StaticFields { public: // System.Object System.Exception::s_EDILock RuntimeObject * ___s_EDILock_0; public: inline static int32_t get_offset_of_s_EDILock_0() { return static_cast(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); } inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; } inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; } inline void set_s_EDILock_0(RuntimeObject * value) { ___s_EDILock_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Exception struct Exception_t_marshaled_pinvoke { char* ____className_1; char* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_pinvoke* ____innerException_4; char* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; char* ____stackTraceString_7; char* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; char* ____source_12; SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; }; // Native definition for COM marshalling of System.Exception struct Exception_t_marshaled_com { Il2CppChar* ____className_1; Il2CppChar* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_com* ____innerException_4; Il2CppChar* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; Il2CppChar* ____stackTraceString_7; Il2CppChar* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; Il2CppChar* ____source_12; SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; }; // System.IO.FileAccess struct FileAccess_t09E176678AB8520C44024354E0DB2F01D40A2F5B { public: // System.Int32 System.IO.FileAccess::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(FileAccess_t09E176678AB8520C44024354E0DB2F01D40A2F5B, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.IO.FileMode struct FileMode_t7AB84351F909CC2A0F99B798E50C6E8610994336 { public: // System.Int32 System.IO.FileMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(FileMode_t7AB84351F909CC2A0F99B798E50C6E8610994336, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.IO.FileShare struct FileShare_t335C3032B91F35BECF45855A61AF9FA5BB9C07BB { public: // System.Int32 System.IO.FileShare::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(FileShare_t335C3032B91F35BECF45855A61AF9FA5BB9C07BB, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Net.FtpStatusCode struct FtpStatusCode_t6CE8FABCFD78E194BFEF150C79B3E7A87A0532D0 { public: // System.Int32 System.Net.FtpStatusCode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(FtpStatusCode_t6CE8FABCFD78E194BFEF150C79B3E7A87A0532D0, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Runtime.InteropServices.GCHandleType struct GCHandleType_t5D58978165671EDEFCCAE1E2B237BD5AE4E8BC38 { public: // System.Int32 System.Runtime.InteropServices.GCHandleType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(GCHandleType_t5D58978165671EDEFCCAE1E2B237BD5AE4E8BC38, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.IO.Compression.GZipStream struct GZipStream_t3C2FE429FBD114B00B7B65623757F5862196B9B6 : public Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB { public: // System.IO.Compression.DeflateStream System.IO.Compression.GZipStream::_deflateStream DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5 * ____deflateStream_5; public: inline static int32_t get_offset_of__deflateStream_5() { return static_cast(offsetof(GZipStream_t3C2FE429FBD114B00B7B65623757F5862196B9B6, ____deflateStream_5)); } inline DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5 * get__deflateStream_5() const { return ____deflateStream_5; } inline DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5 ** get_address_of__deflateStream_5() { return &____deflateStream_5; } inline void set__deflateStream_5(DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5 * value) { ____deflateStream_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____deflateStream_5), (void*)value); } }; // System.GenericUriParserOptions struct GenericUriParserOptions_t6EBAE28B3241139D28DE38B725FC0F21EEBD9E1E { public: // System.Int32 System.GenericUriParserOptions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(GenericUriParserOptions_t6EBAE28B3241139D28DE38B725FC0F21EEBD9E1E, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.IO.Ports.Handshake struct Handshake_tE5E5B392DDD1E91005BB4C0B33B9048F83481945 { public: // System.Int32 System.IO.Ports.Handshake::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Handshake_tE5E5B392DDD1E91005BB4C0B33B9048F83481945, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Collections.Hashtable struct Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC : public RuntimeObject { public: // System.Collections.Hashtable/bucket[] System.Collections.Hashtable::buckets bucketU5BU5D_tFE956DAEFB1D1C86A13EF247D7367BF60B55E190* ___buckets_10; // System.Int32 System.Collections.Hashtable::count int32_t ___count_11; // System.Int32 System.Collections.Hashtable::occupancy int32_t ___occupancy_12; // System.Int32 System.Collections.Hashtable::loadsize int32_t ___loadsize_13; // System.Single System.Collections.Hashtable::loadFactor float ___loadFactor_14; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Hashtable::version int32_t ___version_15; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Hashtable::isWriterInProgress bool ___isWriterInProgress_16; // System.Collections.ICollection System.Collections.Hashtable::keys RuntimeObject* ___keys_17; // System.Collections.ICollection System.Collections.Hashtable::values RuntimeObject* ___values_18; // System.Collections.IEqualityComparer System.Collections.Hashtable::_keycomparer RuntimeObject* ____keycomparer_19; // System.Object System.Collections.Hashtable::_syncRoot RuntimeObject * ____syncRoot_20; public: inline static int32_t get_offset_of_buckets_10() { return static_cast(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___buckets_10)); } inline bucketU5BU5D_tFE956DAEFB1D1C86A13EF247D7367BF60B55E190* get_buckets_10() const { return ___buckets_10; } inline bucketU5BU5D_tFE956DAEFB1D1C86A13EF247D7367BF60B55E190** get_address_of_buckets_10() { return &___buckets_10; } inline void set_buckets_10(bucketU5BU5D_tFE956DAEFB1D1C86A13EF247D7367BF60B55E190* value) { ___buckets_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_10), (void*)value); } inline static int32_t get_offset_of_count_11() { return static_cast(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___count_11)); } inline int32_t get_count_11() const { return ___count_11; } inline int32_t* get_address_of_count_11() { return &___count_11; } inline void set_count_11(int32_t value) { ___count_11 = value; } inline static int32_t get_offset_of_occupancy_12() { return static_cast(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___occupancy_12)); } inline int32_t get_occupancy_12() const { return ___occupancy_12; } inline int32_t* get_address_of_occupancy_12() { return &___occupancy_12; } inline void set_occupancy_12(int32_t value) { ___occupancy_12 = value; } inline static int32_t get_offset_of_loadsize_13() { return static_cast(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___loadsize_13)); } inline int32_t get_loadsize_13() const { return ___loadsize_13; } inline int32_t* get_address_of_loadsize_13() { return &___loadsize_13; } inline void set_loadsize_13(int32_t value) { ___loadsize_13 = value; } inline static int32_t get_offset_of_loadFactor_14() { return static_cast(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___loadFactor_14)); } inline float get_loadFactor_14() const { return ___loadFactor_14; } inline float* get_address_of_loadFactor_14() { return &___loadFactor_14; } inline void set_loadFactor_14(float value) { ___loadFactor_14 = value; } inline static int32_t get_offset_of_version_15() { return static_cast(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___version_15)); } inline int32_t get_version_15() const { return ___version_15; } inline int32_t* get_address_of_version_15() { return &___version_15; } inline void set_version_15(int32_t value) { ___version_15 = value; } inline static int32_t get_offset_of_isWriterInProgress_16() { return static_cast(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___isWriterInProgress_16)); } inline bool get_isWriterInProgress_16() const { return ___isWriterInProgress_16; } inline bool* get_address_of_isWriterInProgress_16() { return &___isWriterInProgress_16; } inline void set_isWriterInProgress_16(bool value) { ___isWriterInProgress_16 = value; } inline static int32_t get_offset_of_keys_17() { return static_cast(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___keys_17)); } inline RuntimeObject* get_keys_17() const { return ___keys_17; } inline RuntimeObject** get_address_of_keys_17() { return &___keys_17; } inline void set_keys_17(RuntimeObject* value) { ___keys_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_17), (void*)value); } inline static int32_t get_offset_of_values_18() { return static_cast(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___values_18)); } inline RuntimeObject* get_values_18() const { return ___values_18; } inline RuntimeObject** get_address_of_values_18() { return &___values_18; } inline void set_values_18(RuntimeObject* value) { ___values_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_18), (void*)value); } inline static int32_t get_offset_of__keycomparer_19() { return static_cast(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ____keycomparer_19)); } inline RuntimeObject* get__keycomparer_19() const { return ____keycomparer_19; } inline RuntimeObject** get_address_of__keycomparer_19() { return &____keycomparer_19; } inline void set__keycomparer_19(RuntimeObject* value) { ____keycomparer_19 = value; Il2CppCodeGenWriteBarrier((void**)(&____keycomparer_19), (void*)value); } inline static int32_t get_offset_of__syncRoot_20() { return static_cast(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ____syncRoot_20)); } inline RuntimeObject * get__syncRoot_20() const { return ____syncRoot_20; } inline RuntimeObject ** get_address_of__syncRoot_20() { return &____syncRoot_20; } inline void set__syncRoot_20(RuntimeObject * value) { ____syncRoot_20 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_20), (void*)value); } }; // System.Net.Cache.HttpRequestCacheLevel struct HttpRequestCacheLevel_t3873E9E526CC22EBE61B1284F6D4327C8C65A967 { public: // System.Int32 System.Net.Cache.HttpRequestCacheLevel::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(HttpRequestCacheLevel_t3873E9E526CC22EBE61B1284F6D4327C8C65A967, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Net.HttpRequestHeader struct HttpRequestHeader_t9182526F3E0F51D143604EDDC6D1C25F1D775CDC { public: // System.Int32 System.Net.HttpRequestHeader::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(HttpRequestHeader_t9182526F3E0F51D143604EDDC6D1C25F1D775CDC, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Net.HttpStatusCode struct HttpStatusCode_tFCB1BA96A101857DA7C390345DE43B77F9567D98 { public: // System.Int32 System.Net.HttpStatusCode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(HttpStatusCode_tFCB1BA96A101857DA7C390345DE43B77F9567D98, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Net.Sockets.IOControlCode struct IOControlCode_tC6B7E75648D3168D4EC64EB41BFC77E645B26666 { public: // System.Int64 System.Net.Sockets.IOControlCode::value__ int64_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(IOControlCode_tC6B7E75648D3168D4EC64EB41BFC77E645B26666, ___value___2)); } inline int64_t get_value___2() const { return ___value___2; } inline int64_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int64_t value) { ___value___2 = value; } }; // System.IOOperation struct IOOperation_tAEE43CD34C62AC0D25378E0BCB8A9E9CAEF5A1B0 { public: // System.Int32 System.IOOperation::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(IOOperation_tAEE43CD34C62AC0D25378E0BCB8A9E9CAEF5A1B0, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Net.Sockets.IPProtectionLevel struct IPProtectionLevel_tDBBFF925F00859B5C29E123F15DACF5FCA42BC5C { public: // System.Int32 System.Net.Sockets.IPProtectionLevel::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(IPProtectionLevel_tDBBFF925F00859B5C29E123F15DACF5FCA42BC5C, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.ComponentModel.InheritanceLevel struct InheritanceLevel_tAAECFEC706E84502DA3CCE8B6444FF39C789A7E0 { public: // System.Int32 System.ComponentModel.InheritanceLevel::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(InheritanceLevel_tAAECFEC706E84502DA3CCE8B6444FF39C789A7E0, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.ComponentModel.LicenseUsageMode struct LicenseUsageMode_tF9F6F2FD317A7B0BE7BDC632D0485E741FF12AEC { public: // System.Int32 System.ComponentModel.LicenseUsageMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(LicenseUsageMode_tF9F6F2FD317A7B0BE7BDC632D0485E741FF12AEC, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.ComponentModel.ListChangedType struct ListChangedType_t58520B3D3109CD5C04D27714D495895CD89E1676 { public: // System.Int32 System.ComponentModel.ListChangedType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ListChangedType_t58520B3D3109CD5C04D27714D495895CD89E1676, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.ComponentModel.ListSortDirection struct ListSortDirection_t331C65FA6DEA67DAD6CF7E27AA8A7108845426F5 { public: // System.Int32 System.ComponentModel.ListSortDirection::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ListSortDirection_t331C65FA6DEA67DAD6CF7E27AA8A7108845426F5, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Configuration.LocalFileSettingsProvider struct LocalFileSettingsProvider_tDF14C43FB5B2E259AA5BDAF236D7ADBDBCF9C289 : public SettingsProvider_tFCE5E05AC19521A4D65389DA99FE9472E98E5B2C { public: public: }; // System.Text.RegularExpressions.Match struct Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B : public Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 { public: // System.Text.RegularExpressions.GroupCollection System.Text.RegularExpressions.Match::_groupcoll GroupCollection_tAA9CA4E93B1A9D6B7199EE25AEB32922E72AA556 * ____groupcoll_9; // System.Text.RegularExpressions.Regex System.Text.RegularExpressions.Match::_regex Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * ____regex_10; // System.Int32 System.Text.RegularExpressions.Match::_textbeg int32_t ____textbeg_11; // System.Int32 System.Text.RegularExpressions.Match::_textpos int32_t ____textpos_12; // System.Int32 System.Text.RegularExpressions.Match::_textend int32_t ____textend_13; // System.Int32 System.Text.RegularExpressions.Match::_textstart int32_t ____textstart_14; // System.Int32[][] System.Text.RegularExpressions.Match::_matches Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF* ____matches_15; // System.Int32[] System.Text.RegularExpressions.Match::_matchcount Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ____matchcount_16; // System.Boolean System.Text.RegularExpressions.Match::_balancing bool ____balancing_17; public: inline static int32_t get_offset_of__groupcoll_9() { return static_cast(offsetof(Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B, ____groupcoll_9)); } inline GroupCollection_tAA9CA4E93B1A9D6B7199EE25AEB32922E72AA556 * get__groupcoll_9() const { return ____groupcoll_9; } inline GroupCollection_tAA9CA4E93B1A9D6B7199EE25AEB32922E72AA556 ** get_address_of__groupcoll_9() { return &____groupcoll_9; } inline void set__groupcoll_9(GroupCollection_tAA9CA4E93B1A9D6B7199EE25AEB32922E72AA556 * value) { ____groupcoll_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____groupcoll_9), (void*)value); } inline static int32_t get_offset_of__regex_10() { return static_cast(offsetof(Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B, ____regex_10)); } inline Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * get__regex_10() const { return ____regex_10; } inline Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F ** get_address_of__regex_10() { return &____regex_10; } inline void set__regex_10(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * value) { ____regex_10 = value; Il2CppCodeGenWriteBarrier((void**)(&____regex_10), (void*)value); } inline static int32_t get_offset_of__textbeg_11() { return static_cast(offsetof(Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B, ____textbeg_11)); } inline int32_t get__textbeg_11() const { return ____textbeg_11; } inline int32_t* get_address_of__textbeg_11() { return &____textbeg_11; } inline void set__textbeg_11(int32_t value) { ____textbeg_11 = value; } inline static int32_t get_offset_of__textpos_12() { return static_cast(offsetof(Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B, ____textpos_12)); } inline int32_t get__textpos_12() const { return ____textpos_12; } inline int32_t* get_address_of__textpos_12() { return &____textpos_12; } inline void set__textpos_12(int32_t value) { ____textpos_12 = value; } inline static int32_t get_offset_of__textend_13() { return static_cast(offsetof(Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B, ____textend_13)); } inline int32_t get__textend_13() const { return ____textend_13; } inline int32_t* get_address_of__textend_13() { return &____textend_13; } inline void set__textend_13(int32_t value) { ____textend_13 = value; } inline static int32_t get_offset_of__textstart_14() { return static_cast(offsetof(Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B, ____textstart_14)); } inline int32_t get__textstart_14() const { return ____textstart_14; } inline int32_t* get_address_of__textstart_14() { return &____textstart_14; } inline void set__textstart_14(int32_t value) { ____textstart_14 = value; } inline static int32_t get_offset_of__matches_15() { return static_cast(offsetof(Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B, ____matches_15)); } inline Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF* get__matches_15() const { return ____matches_15; } inline Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF** get_address_of__matches_15() { return &____matches_15; } inline void set__matches_15(Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF* value) { ____matches_15 = value; Il2CppCodeGenWriteBarrier((void**)(&____matches_15), (void*)value); } inline static int32_t get_offset_of__matchcount_16() { return static_cast(offsetof(Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B, ____matchcount_16)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get__matchcount_16() const { return ____matchcount_16; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of__matchcount_16() { return &____matchcount_16; } inline void set__matchcount_16(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ____matchcount_16 = value; Il2CppCodeGenWriteBarrier((void**)(&____matchcount_16), (void*)value); } inline static int32_t get_offset_of__balancing_17() { return static_cast(offsetof(Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B, ____balancing_17)); } inline bool get__balancing_17() const { return ____balancing_17; } inline bool* get_address_of__balancing_17() { return &____balancing_17; } inline void set__balancing_17(bool value) { ____balancing_17 = value; } }; struct Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B_StaticFields { public: // System.Text.RegularExpressions.Match System.Text.RegularExpressions.Match::_empty Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * ____empty_8; public: inline static int32_t get_offset_of__empty_8() { return static_cast(offsetof(Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B_StaticFields, ____empty_8)); } inline Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * get__empty_8() const { return ____empty_8; } inline Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B ** get_address_of__empty_8() { return &____empty_8; } inline void set__empty_8(Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * value) { ____empty_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____empty_8), (void*)value); } }; // System.Reflection.MethodInfo struct MethodInfo_t : public MethodBase_t { public: public: }; // System.Globalization.NumberStyles struct NumberStyles_t379EFBF2535E1C950DEC8042704BB663BF636594 { public: // System.Int32 System.Globalization.NumberStyles::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(NumberStyles_t379EFBF2535E1C950DEC8042704BB663BF636594, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Reflection.ParameterAttributes struct ParameterAttributes_t79BD378DEC3F187D9773B9A4EDE573866E930218 { public: // System.Int32 System.Reflection.ParameterAttributes::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ParameterAttributes_t79BD378DEC3F187D9773B9A4EDE573866E930218, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.PlatformID struct PlatformID_tAE7D984C08AF0DB2E5398AAE4842B704DBDDE159 { public: // System.Int32 System.PlatformID::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(PlatformID_tAE7D984C08AF0DB2E5398AAE4842B704DBDDE159, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Reflection.ProcessorArchitecture struct ProcessorArchitecture_t80DDC787E34DBB9769E1CA90689FDB0131D60AAB { public: // System.Int32 System.Reflection.ProcessorArchitecture::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ProcessorArchitecture_t80DDC787E34DBB9769E1CA90689FDB0131D60AAB, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Text.RegularExpressions.RegexOptions struct RegexOptions_t8F8CD5BC6C55FC2B657722FD09ABDFDF5BA6F6A4 { public: // System.Int32 System.Text.RegularExpressions.RegexOptions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(RegexOptions_t8F8CD5BC6C55FC2B657722FD09ABDFDF5BA6F6A4, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.RuntimeTypeHandle struct RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 { public: // System.IntPtr System.RuntimeTypeHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast(offsetof(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9, ___value_0)); } inline intptr_t get_value_0() const { return ___value_0; } inline intptr_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(intptr_t value) { ___value_0 = value; } }; // System.IO.SeekOrigin struct SeekOrigin_t4A91B37D046CD7A6578066059AE9F6269A888D4F { public: // System.Int32 System.IO.SeekOrigin::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(SeekOrigin_t4A91B37D046CD7A6578066059AE9F6269A888D4F, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Net.ServicePoint struct ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 : public RuntimeObject { public: // System.Uri System.Net.ServicePoint::uri Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri_0; // System.DateTime System.Net.ServicePoint::lastDnsResolve DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___lastDnsResolve_1; // System.Version System.Net.ServicePoint::protocolVersion Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___protocolVersion_2; // System.Net.IPHostEntry System.Net.ServicePoint::host IPHostEntry_tD787E3A1E0F633AC5A7761921DE4DC2A8EA117AA * ___host_3; // System.Boolean System.Net.ServicePoint::usesProxy bool ___usesProxy_4; // System.Boolean System.Net.ServicePoint::sendContinue bool ___sendContinue_5; // System.Boolean System.Net.ServicePoint::useConnect bool ___useConnect_6; // System.Object System.Net.ServicePoint::hostE RuntimeObject * ___hostE_7; // System.Boolean System.Net.ServicePoint::useNagle bool ___useNagle_8; // System.Net.BindIPEndPoint System.Net.ServicePoint::endPointCallback BindIPEndPoint_t05F17E8ACBB2C324EF8EA367FB2899690F2E0D32 * ___endPointCallback_9; // System.Boolean System.Net.ServicePoint::tcp_keepalive bool ___tcp_keepalive_10; // System.Int32 System.Net.ServicePoint::tcp_keepalive_time int32_t ___tcp_keepalive_time_11; // System.Int32 System.Net.ServicePoint::tcp_keepalive_interval int32_t ___tcp_keepalive_interval_12; // System.Net.ServicePointScheduler System.Net.ServicePoint::k__BackingField ServicePointScheduler_t06FFEEFEFBD2B726733E6E27E2529742FA4DB1A7 * ___U3CSchedulerU3Ek__BackingField_13; // System.Object System.Net.ServicePoint::m_ServerCertificateOrBytes RuntimeObject * ___m_ServerCertificateOrBytes_14; // System.Object System.Net.ServicePoint::m_ClientCertificateOrBytes RuntimeObject * ___m_ClientCertificateOrBytes_15; public: inline static int32_t get_offset_of_uri_0() { return static_cast(offsetof(ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0, ___uri_0)); } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * get_uri_0() const { return ___uri_0; } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** get_address_of_uri_0() { return &___uri_0; } inline void set_uri_0(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * value) { ___uri_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___uri_0), (void*)value); } inline static int32_t get_offset_of_lastDnsResolve_1() { return static_cast(offsetof(ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0, ___lastDnsResolve_1)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_lastDnsResolve_1() const { return ___lastDnsResolve_1; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_lastDnsResolve_1() { return &___lastDnsResolve_1; } inline void set_lastDnsResolve_1(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___lastDnsResolve_1 = value; } inline static int32_t get_offset_of_protocolVersion_2() { return static_cast(offsetof(ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0, ___protocolVersion_2)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_protocolVersion_2() const { return ___protocolVersion_2; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_protocolVersion_2() { return &___protocolVersion_2; } inline void set_protocolVersion_2(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___protocolVersion_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___protocolVersion_2), (void*)value); } inline static int32_t get_offset_of_host_3() { return static_cast(offsetof(ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0, ___host_3)); } inline IPHostEntry_tD787E3A1E0F633AC5A7761921DE4DC2A8EA117AA * get_host_3() const { return ___host_3; } inline IPHostEntry_tD787E3A1E0F633AC5A7761921DE4DC2A8EA117AA ** get_address_of_host_3() { return &___host_3; } inline void set_host_3(IPHostEntry_tD787E3A1E0F633AC5A7761921DE4DC2A8EA117AA * value) { ___host_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___host_3), (void*)value); } inline static int32_t get_offset_of_usesProxy_4() { return static_cast(offsetof(ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0, ___usesProxy_4)); } inline bool get_usesProxy_4() const { return ___usesProxy_4; } inline bool* get_address_of_usesProxy_4() { return &___usesProxy_4; } inline void set_usesProxy_4(bool value) { ___usesProxy_4 = value; } inline static int32_t get_offset_of_sendContinue_5() { return static_cast(offsetof(ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0, ___sendContinue_5)); } inline bool get_sendContinue_5() const { return ___sendContinue_5; } inline bool* get_address_of_sendContinue_5() { return &___sendContinue_5; } inline void set_sendContinue_5(bool value) { ___sendContinue_5 = value; } inline static int32_t get_offset_of_useConnect_6() { return static_cast(offsetof(ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0, ___useConnect_6)); } inline bool get_useConnect_6() const { return ___useConnect_6; } inline bool* get_address_of_useConnect_6() { return &___useConnect_6; } inline void set_useConnect_6(bool value) { ___useConnect_6 = value; } inline static int32_t get_offset_of_hostE_7() { return static_cast(offsetof(ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0, ___hostE_7)); } inline RuntimeObject * get_hostE_7() const { return ___hostE_7; } inline RuntimeObject ** get_address_of_hostE_7() { return &___hostE_7; } inline void set_hostE_7(RuntimeObject * value) { ___hostE_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___hostE_7), (void*)value); } inline static int32_t get_offset_of_useNagle_8() { return static_cast(offsetof(ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0, ___useNagle_8)); } inline bool get_useNagle_8() const { return ___useNagle_8; } inline bool* get_address_of_useNagle_8() { return &___useNagle_8; } inline void set_useNagle_8(bool value) { ___useNagle_8 = value; } inline static int32_t get_offset_of_endPointCallback_9() { return static_cast(offsetof(ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0, ___endPointCallback_9)); } inline BindIPEndPoint_t05F17E8ACBB2C324EF8EA367FB2899690F2E0D32 * get_endPointCallback_9() const { return ___endPointCallback_9; } inline BindIPEndPoint_t05F17E8ACBB2C324EF8EA367FB2899690F2E0D32 ** get_address_of_endPointCallback_9() { return &___endPointCallback_9; } inline void set_endPointCallback_9(BindIPEndPoint_t05F17E8ACBB2C324EF8EA367FB2899690F2E0D32 * value) { ___endPointCallback_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___endPointCallback_9), (void*)value); } inline static int32_t get_offset_of_tcp_keepalive_10() { return static_cast(offsetof(ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0, ___tcp_keepalive_10)); } inline bool get_tcp_keepalive_10() const { return ___tcp_keepalive_10; } inline bool* get_address_of_tcp_keepalive_10() { return &___tcp_keepalive_10; } inline void set_tcp_keepalive_10(bool value) { ___tcp_keepalive_10 = value; } inline static int32_t get_offset_of_tcp_keepalive_time_11() { return static_cast(offsetof(ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0, ___tcp_keepalive_time_11)); } inline int32_t get_tcp_keepalive_time_11() const { return ___tcp_keepalive_time_11; } inline int32_t* get_address_of_tcp_keepalive_time_11() { return &___tcp_keepalive_time_11; } inline void set_tcp_keepalive_time_11(int32_t value) { ___tcp_keepalive_time_11 = value; } inline static int32_t get_offset_of_tcp_keepalive_interval_12() { return static_cast(offsetof(ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0, ___tcp_keepalive_interval_12)); } inline int32_t get_tcp_keepalive_interval_12() const { return ___tcp_keepalive_interval_12; } inline int32_t* get_address_of_tcp_keepalive_interval_12() { return &___tcp_keepalive_interval_12; } inline void set_tcp_keepalive_interval_12(int32_t value) { ___tcp_keepalive_interval_12 = value; } inline static int32_t get_offset_of_U3CSchedulerU3Ek__BackingField_13() { return static_cast(offsetof(ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0, ___U3CSchedulerU3Ek__BackingField_13)); } inline ServicePointScheduler_t06FFEEFEFBD2B726733E6E27E2529742FA4DB1A7 * get_U3CSchedulerU3Ek__BackingField_13() const { return ___U3CSchedulerU3Ek__BackingField_13; } inline ServicePointScheduler_t06FFEEFEFBD2B726733E6E27E2529742FA4DB1A7 ** get_address_of_U3CSchedulerU3Ek__BackingField_13() { return &___U3CSchedulerU3Ek__BackingField_13; } inline void set_U3CSchedulerU3Ek__BackingField_13(ServicePointScheduler_t06FFEEFEFBD2B726733E6E27E2529742FA4DB1A7 * value) { ___U3CSchedulerU3Ek__BackingField_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CSchedulerU3Ek__BackingField_13), (void*)value); } inline static int32_t get_offset_of_m_ServerCertificateOrBytes_14() { return static_cast(offsetof(ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0, ___m_ServerCertificateOrBytes_14)); } inline RuntimeObject * get_m_ServerCertificateOrBytes_14() const { return ___m_ServerCertificateOrBytes_14; } inline RuntimeObject ** get_address_of_m_ServerCertificateOrBytes_14() { return &___m_ServerCertificateOrBytes_14; } inline void set_m_ServerCertificateOrBytes_14(RuntimeObject * value) { ___m_ServerCertificateOrBytes_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ServerCertificateOrBytes_14), (void*)value); } inline static int32_t get_offset_of_m_ClientCertificateOrBytes_15() { return static_cast(offsetof(ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0, ___m_ClientCertificateOrBytes_15)); } inline RuntimeObject * get_m_ClientCertificateOrBytes_15() const { return ___m_ClientCertificateOrBytes_15; } inline RuntimeObject ** get_address_of_m_ClientCertificateOrBytes_15() { return &___m_ClientCertificateOrBytes_15; } inline void set_m_ClientCertificateOrBytes_15(RuntimeObject * value) { ___m_ClientCertificateOrBytes_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ClientCertificateOrBytes_15), (void*)value); } }; // System.Net.Sockets.SocketError struct SocketError_tA0135DFDFBD5E43BC2F44D8AAC13CDB444074F80 { public: // System.Int32 System.Net.Sockets.SocketError::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(SocketError_tA0135DFDFBD5E43BC2F44D8AAC13CDB444074F80, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.IO.StreamReader struct StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3 : public TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F { public: // System.IO.Stream System.IO.StreamReader::stream Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream_5; // System.Text.Encoding System.IO.StreamReader::encoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___encoding_6; // System.Text.Decoder System.IO.StreamReader::decoder Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370 * ___decoder_7; // System.Byte[] System.IO.StreamReader::byteBuffer ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___byteBuffer_8; // System.Char[] System.IO.StreamReader::charBuffer CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___charBuffer_9; // System.Byte[] System.IO.StreamReader::_preamble ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ____preamble_10; // System.Int32 System.IO.StreamReader::charPos int32_t ___charPos_11; // System.Int32 System.IO.StreamReader::charLen int32_t ___charLen_12; // System.Int32 System.IO.StreamReader::byteLen int32_t ___byteLen_13; // System.Int32 System.IO.StreamReader::bytePos int32_t ___bytePos_14; // System.Int32 System.IO.StreamReader::_maxCharsPerBuffer int32_t ____maxCharsPerBuffer_15; // System.Boolean System.IO.StreamReader::_detectEncoding bool ____detectEncoding_16; // System.Boolean System.IO.StreamReader::_checkPreamble bool ____checkPreamble_17; // System.Boolean System.IO.StreamReader::_isBlocked bool ____isBlocked_18; // System.Boolean System.IO.StreamReader::_closable bool ____closable_19; // System.Threading.Tasks.Task modreq(System.Runtime.CompilerServices.IsVolatile) System.IO.StreamReader::_asyncReadTask Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ____asyncReadTask_20; public: inline static int32_t get_offset_of_stream_5() { return static_cast(offsetof(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3, ___stream_5)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_stream_5() const { return ___stream_5; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_stream_5() { return &___stream_5; } inline void set_stream_5(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___stream_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___stream_5), (void*)value); } inline static int32_t get_offset_of_encoding_6() { return static_cast(offsetof(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3, ___encoding_6)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_encoding_6() const { return ___encoding_6; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_encoding_6() { return &___encoding_6; } inline void set_encoding_6(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___encoding_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___encoding_6), (void*)value); } inline static int32_t get_offset_of_decoder_7() { return static_cast(offsetof(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3, ___decoder_7)); } inline Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370 * get_decoder_7() const { return ___decoder_7; } inline Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370 ** get_address_of_decoder_7() { return &___decoder_7; } inline void set_decoder_7(Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370 * value) { ___decoder_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___decoder_7), (void*)value); } inline static int32_t get_offset_of_byteBuffer_8() { return static_cast(offsetof(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3, ___byteBuffer_8)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_byteBuffer_8() const { return ___byteBuffer_8; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_byteBuffer_8() { return &___byteBuffer_8; } inline void set_byteBuffer_8(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___byteBuffer_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___byteBuffer_8), (void*)value); } inline static int32_t get_offset_of_charBuffer_9() { return static_cast(offsetof(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3, ___charBuffer_9)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_charBuffer_9() const { return ___charBuffer_9; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_charBuffer_9() { return &___charBuffer_9; } inline void set_charBuffer_9(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___charBuffer_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___charBuffer_9), (void*)value); } inline static int32_t get_offset_of__preamble_10() { return static_cast(offsetof(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3, ____preamble_10)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get__preamble_10() const { return ____preamble_10; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of__preamble_10() { return &____preamble_10; } inline void set__preamble_10(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ____preamble_10 = value; Il2CppCodeGenWriteBarrier((void**)(&____preamble_10), (void*)value); } inline static int32_t get_offset_of_charPos_11() { return static_cast(offsetof(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3, ___charPos_11)); } inline int32_t get_charPos_11() const { return ___charPos_11; } inline int32_t* get_address_of_charPos_11() { return &___charPos_11; } inline void set_charPos_11(int32_t value) { ___charPos_11 = value; } inline static int32_t get_offset_of_charLen_12() { return static_cast(offsetof(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3, ___charLen_12)); } inline int32_t get_charLen_12() const { return ___charLen_12; } inline int32_t* get_address_of_charLen_12() { return &___charLen_12; } inline void set_charLen_12(int32_t value) { ___charLen_12 = value; } inline static int32_t get_offset_of_byteLen_13() { return static_cast(offsetof(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3, ___byteLen_13)); } inline int32_t get_byteLen_13() const { return ___byteLen_13; } inline int32_t* get_address_of_byteLen_13() { return &___byteLen_13; } inline void set_byteLen_13(int32_t value) { ___byteLen_13 = value; } inline static int32_t get_offset_of_bytePos_14() { return static_cast(offsetof(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3, ___bytePos_14)); } inline int32_t get_bytePos_14() const { return ___bytePos_14; } inline int32_t* get_address_of_bytePos_14() { return &___bytePos_14; } inline void set_bytePos_14(int32_t value) { ___bytePos_14 = value; } inline static int32_t get_offset_of__maxCharsPerBuffer_15() { return static_cast(offsetof(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3, ____maxCharsPerBuffer_15)); } inline int32_t get__maxCharsPerBuffer_15() const { return ____maxCharsPerBuffer_15; } inline int32_t* get_address_of__maxCharsPerBuffer_15() { return &____maxCharsPerBuffer_15; } inline void set__maxCharsPerBuffer_15(int32_t value) { ____maxCharsPerBuffer_15 = value; } inline static int32_t get_offset_of__detectEncoding_16() { return static_cast(offsetof(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3, ____detectEncoding_16)); } inline bool get__detectEncoding_16() const { return ____detectEncoding_16; } inline bool* get_address_of__detectEncoding_16() { return &____detectEncoding_16; } inline void set__detectEncoding_16(bool value) { ____detectEncoding_16 = value; } inline static int32_t get_offset_of__checkPreamble_17() { return static_cast(offsetof(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3, ____checkPreamble_17)); } inline bool get__checkPreamble_17() const { return ____checkPreamble_17; } inline bool* get_address_of__checkPreamble_17() { return &____checkPreamble_17; } inline void set__checkPreamble_17(bool value) { ____checkPreamble_17 = value; } inline static int32_t get_offset_of__isBlocked_18() { return static_cast(offsetof(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3, ____isBlocked_18)); } inline bool get__isBlocked_18() const { return ____isBlocked_18; } inline bool* get_address_of__isBlocked_18() { return &____isBlocked_18; } inline void set__isBlocked_18(bool value) { ____isBlocked_18 = value; } inline static int32_t get_offset_of__closable_19() { return static_cast(offsetof(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3, ____closable_19)); } inline bool get__closable_19() const { return ____closable_19; } inline bool* get_address_of__closable_19() { return &____closable_19; } inline void set__closable_19(bool value) { ____closable_19 = value; } inline static int32_t get_offset_of__asyncReadTask_20() { return static_cast(offsetof(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3, ____asyncReadTask_20)); } inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * get__asyncReadTask_20() const { return ____asyncReadTask_20; } inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 ** get_address_of__asyncReadTask_20() { return &____asyncReadTask_20; } inline void set__asyncReadTask_20(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * value) { ____asyncReadTask_20 = value; Il2CppCodeGenWriteBarrier((void**)(&____asyncReadTask_20), (void*)value); } }; struct StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3_StaticFields { public: // System.IO.StreamReader System.IO.StreamReader::Null StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3 * ___Null_4; public: inline static int32_t get_offset_of_Null_4() { return static_cast(offsetof(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3_StaticFields, ___Null_4)); } inline StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3 * get_Null_4() const { return ___Null_4; } inline StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3 ** get_address_of_Null_4() { return &___Null_4; } inline void set_Null_4(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3 * value) { ___Null_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___Null_4), (void*)value); } }; // System.Runtime.Serialization.StreamingContextStates struct StreamingContextStates_tF4C7FE6D6121BD4C67699869C8269A60B36B42C3 { public: // System.Int32 System.Runtime.Serialization.StreamingContextStates::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(StreamingContextStates_tF4C7FE6D6121BD4C67699869C8269A60B36B42C3, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.StringComparison struct StringComparison_tCC9F72B9B1E2C3C6D2566DD0D3A61E1621048998 { public: // System.Int32 System.StringComparison::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(StringComparison_tCC9F72B9B1E2C3C6D2566DD0D3A61E1621048998, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Threading.Tasks.Task struct Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 : public RuntimeObject { public: // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_taskId int32_t ___m_taskId_4; // System.Object System.Threading.Tasks.Task::m_action RuntimeObject * ___m_action_5; // System.Object System.Threading.Tasks.Task::m_stateObject RuntimeObject * ___m_stateObject_6; // System.Threading.Tasks.TaskScheduler System.Threading.Tasks.Task::m_taskScheduler TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___m_taskScheduler_7; // System.Threading.Tasks.Task System.Threading.Tasks.Task::m_parent Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___m_parent_8; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_stateFlags int32_t ___m_stateFlags_9; // System.Object modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_continuationObject RuntimeObject * ___m_continuationObject_28; // System.Threading.Tasks.Task/ContingentProperties modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_contingentProperties ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 * ___m_contingentProperties_33; public: inline static int32_t get_offset_of_m_taskId_4() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60, ___m_taskId_4)); } inline int32_t get_m_taskId_4() const { return ___m_taskId_4; } inline int32_t* get_address_of_m_taskId_4() { return &___m_taskId_4; } inline void set_m_taskId_4(int32_t value) { ___m_taskId_4 = value; } inline static int32_t get_offset_of_m_action_5() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60, ___m_action_5)); } inline RuntimeObject * get_m_action_5() const { return ___m_action_5; } inline RuntimeObject ** get_address_of_m_action_5() { return &___m_action_5; } inline void set_m_action_5(RuntimeObject * value) { ___m_action_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_action_5), (void*)value); } inline static int32_t get_offset_of_m_stateObject_6() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60, ___m_stateObject_6)); } inline RuntimeObject * get_m_stateObject_6() const { return ___m_stateObject_6; } inline RuntimeObject ** get_address_of_m_stateObject_6() { return &___m_stateObject_6; } inline void set_m_stateObject_6(RuntimeObject * value) { ___m_stateObject_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_stateObject_6), (void*)value); } inline static int32_t get_offset_of_m_taskScheduler_7() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60, ___m_taskScheduler_7)); } inline TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * get_m_taskScheduler_7() const { return ___m_taskScheduler_7; } inline TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D ** get_address_of_m_taskScheduler_7() { return &___m_taskScheduler_7; } inline void set_m_taskScheduler_7(TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * value) { ___m_taskScheduler_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_taskScheduler_7), (void*)value); } inline static int32_t get_offset_of_m_parent_8() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60, ___m_parent_8)); } inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * get_m_parent_8() const { return ___m_parent_8; } inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 ** get_address_of_m_parent_8() { return &___m_parent_8; } inline void set_m_parent_8(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * value) { ___m_parent_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_parent_8), (void*)value); } inline static int32_t get_offset_of_m_stateFlags_9() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60, ___m_stateFlags_9)); } inline int32_t get_m_stateFlags_9() const { return ___m_stateFlags_9; } inline int32_t* get_address_of_m_stateFlags_9() { return &___m_stateFlags_9; } inline void set_m_stateFlags_9(int32_t value) { ___m_stateFlags_9 = value; } inline static int32_t get_offset_of_m_continuationObject_28() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60, ___m_continuationObject_28)); } inline RuntimeObject * get_m_continuationObject_28() const { return ___m_continuationObject_28; } inline RuntimeObject ** get_address_of_m_continuationObject_28() { return &___m_continuationObject_28; } inline void set_m_continuationObject_28(RuntimeObject * value) { ___m_continuationObject_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_continuationObject_28), (void*)value); } inline static int32_t get_offset_of_m_contingentProperties_33() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60, ___m_contingentProperties_33)); } inline ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 * get_m_contingentProperties_33() const { return ___m_contingentProperties_33; } inline ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 ** get_address_of_m_contingentProperties_33() { return &___m_contingentProperties_33; } inline void set_m_contingentProperties_33(ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 * value) { ___m_contingentProperties_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_contingentProperties_33), (void*)value); } }; struct Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields { public: // System.Int32 System.Threading.Tasks.Task::s_taskIdCounter int32_t ___s_taskIdCounter_2; // System.Threading.Tasks.TaskFactory System.Threading.Tasks.Task::s_factory TaskFactory_t22D999A05A967C31A4B5FFBD08864809BF35EA3B * ___s_factory_3; // System.Object System.Threading.Tasks.Task::s_taskCompletionSentinel RuntimeObject * ___s_taskCompletionSentinel_29; // System.Boolean System.Threading.Tasks.Task::s_asyncDebuggingEnabled bool ___s_asyncDebuggingEnabled_30; // System.Collections.Generic.Dictionary`2 System.Threading.Tasks.Task::s_currentActiveTasks Dictionary_2_tB758E2A2593CD827EFC041BE1F1BB4B68DE1C3E8 * ___s_currentActiveTasks_31; // System.Object System.Threading.Tasks.Task::s_activeTasksLock RuntimeObject * ___s_activeTasksLock_32; // System.Action`1 System.Threading.Tasks.Task::s_taskCancelCallback Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ___s_taskCancelCallback_34; // System.Func`1 System.Threading.Tasks.Task::s_createContingentProperties Func_1_tBCF42601FA307876E83080BE4204110820F8BF3B * ___s_createContingentProperties_35; // System.Threading.Tasks.Task System.Threading.Tasks.Task::s_completedTask Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___s_completedTask_36; // System.Predicate`1 System.Threading.Tasks.Task::s_IsExceptionObservedByParentPredicate Predicate_1_tC0DBBC8498BD1EE6ABFFAA5628024105FA7D11BD * ___s_IsExceptionObservedByParentPredicate_37; // System.Threading.ContextCallback System.Threading.Tasks.Task::s_ecCallback ContextCallback_t93707E0430F4FF3E15E1FB5A4844BE89C657AE8B * ___s_ecCallback_38; // System.Predicate`1 System.Threading.Tasks.Task::s_IsTaskContinuationNullPredicate Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * ___s_IsTaskContinuationNullPredicate_39; public: inline static int32_t get_offset_of_s_taskIdCounter_2() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_taskIdCounter_2)); } inline int32_t get_s_taskIdCounter_2() const { return ___s_taskIdCounter_2; } inline int32_t* get_address_of_s_taskIdCounter_2() { return &___s_taskIdCounter_2; } inline void set_s_taskIdCounter_2(int32_t value) { ___s_taskIdCounter_2 = value; } inline static int32_t get_offset_of_s_factory_3() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_factory_3)); } inline TaskFactory_t22D999A05A967C31A4B5FFBD08864809BF35EA3B * get_s_factory_3() const { return ___s_factory_3; } inline TaskFactory_t22D999A05A967C31A4B5FFBD08864809BF35EA3B ** get_address_of_s_factory_3() { return &___s_factory_3; } inline void set_s_factory_3(TaskFactory_t22D999A05A967C31A4B5FFBD08864809BF35EA3B * value) { ___s_factory_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_factory_3), (void*)value); } inline static int32_t get_offset_of_s_taskCompletionSentinel_29() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_taskCompletionSentinel_29)); } inline RuntimeObject * get_s_taskCompletionSentinel_29() const { return ___s_taskCompletionSentinel_29; } inline RuntimeObject ** get_address_of_s_taskCompletionSentinel_29() { return &___s_taskCompletionSentinel_29; } inline void set_s_taskCompletionSentinel_29(RuntimeObject * value) { ___s_taskCompletionSentinel_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_taskCompletionSentinel_29), (void*)value); } inline static int32_t get_offset_of_s_asyncDebuggingEnabled_30() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_asyncDebuggingEnabled_30)); } inline bool get_s_asyncDebuggingEnabled_30() const { return ___s_asyncDebuggingEnabled_30; } inline bool* get_address_of_s_asyncDebuggingEnabled_30() { return &___s_asyncDebuggingEnabled_30; } inline void set_s_asyncDebuggingEnabled_30(bool value) { ___s_asyncDebuggingEnabled_30 = value; } inline static int32_t get_offset_of_s_currentActiveTasks_31() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_currentActiveTasks_31)); } inline Dictionary_2_tB758E2A2593CD827EFC041BE1F1BB4B68DE1C3E8 * get_s_currentActiveTasks_31() const { return ___s_currentActiveTasks_31; } inline Dictionary_2_tB758E2A2593CD827EFC041BE1F1BB4B68DE1C3E8 ** get_address_of_s_currentActiveTasks_31() { return &___s_currentActiveTasks_31; } inline void set_s_currentActiveTasks_31(Dictionary_2_tB758E2A2593CD827EFC041BE1F1BB4B68DE1C3E8 * value) { ___s_currentActiveTasks_31 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_currentActiveTasks_31), (void*)value); } inline static int32_t get_offset_of_s_activeTasksLock_32() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_activeTasksLock_32)); } inline RuntimeObject * get_s_activeTasksLock_32() const { return ___s_activeTasksLock_32; } inline RuntimeObject ** get_address_of_s_activeTasksLock_32() { return &___s_activeTasksLock_32; } inline void set_s_activeTasksLock_32(RuntimeObject * value) { ___s_activeTasksLock_32 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_activeTasksLock_32), (void*)value); } inline static int32_t get_offset_of_s_taskCancelCallback_34() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_taskCancelCallback_34)); } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get_s_taskCancelCallback_34() const { return ___s_taskCancelCallback_34; } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of_s_taskCancelCallback_34() { return &___s_taskCancelCallback_34; } inline void set_s_taskCancelCallback_34(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value) { ___s_taskCancelCallback_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_taskCancelCallback_34), (void*)value); } inline static int32_t get_offset_of_s_createContingentProperties_35() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_createContingentProperties_35)); } inline Func_1_tBCF42601FA307876E83080BE4204110820F8BF3B * get_s_createContingentProperties_35() const { return ___s_createContingentProperties_35; } inline Func_1_tBCF42601FA307876E83080BE4204110820F8BF3B ** get_address_of_s_createContingentProperties_35() { return &___s_createContingentProperties_35; } inline void set_s_createContingentProperties_35(Func_1_tBCF42601FA307876E83080BE4204110820F8BF3B * value) { ___s_createContingentProperties_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_createContingentProperties_35), (void*)value); } inline static int32_t get_offset_of_s_completedTask_36() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_completedTask_36)); } inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * get_s_completedTask_36() const { return ___s_completedTask_36; } inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 ** get_address_of_s_completedTask_36() { return &___s_completedTask_36; } inline void set_s_completedTask_36(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * value) { ___s_completedTask_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_completedTask_36), (void*)value); } inline static int32_t get_offset_of_s_IsExceptionObservedByParentPredicate_37() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_IsExceptionObservedByParentPredicate_37)); } inline Predicate_1_tC0DBBC8498BD1EE6ABFFAA5628024105FA7D11BD * get_s_IsExceptionObservedByParentPredicate_37() const { return ___s_IsExceptionObservedByParentPredicate_37; } inline Predicate_1_tC0DBBC8498BD1EE6ABFFAA5628024105FA7D11BD ** get_address_of_s_IsExceptionObservedByParentPredicate_37() { return &___s_IsExceptionObservedByParentPredicate_37; } inline void set_s_IsExceptionObservedByParentPredicate_37(Predicate_1_tC0DBBC8498BD1EE6ABFFAA5628024105FA7D11BD * value) { ___s_IsExceptionObservedByParentPredicate_37 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_IsExceptionObservedByParentPredicate_37), (void*)value); } inline static int32_t get_offset_of_s_ecCallback_38() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_ecCallback_38)); } inline ContextCallback_t93707E0430F4FF3E15E1FB5A4844BE89C657AE8B * get_s_ecCallback_38() const { return ___s_ecCallback_38; } inline ContextCallback_t93707E0430F4FF3E15E1FB5A4844BE89C657AE8B ** get_address_of_s_ecCallback_38() { return &___s_ecCallback_38; } inline void set_s_ecCallback_38(ContextCallback_t93707E0430F4FF3E15E1FB5A4844BE89C657AE8B * value) { ___s_ecCallback_38 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_ecCallback_38), (void*)value); } inline static int32_t get_offset_of_s_IsTaskContinuationNullPredicate_39() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_IsTaskContinuationNullPredicate_39)); } inline Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * get_s_IsTaskContinuationNullPredicate_39() const { return ___s_IsTaskContinuationNullPredicate_39; } inline Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB ** get_address_of_s_IsTaskContinuationNullPredicate_39() { return &___s_IsTaskContinuationNullPredicate_39; } inline void set_s_IsTaskContinuationNullPredicate_39(Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * value) { ___s_IsTaskContinuationNullPredicate_39 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_IsTaskContinuationNullPredicate_39), (void*)value); } }; struct Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_ThreadStaticFields { public: // System.Threading.Tasks.Task System.Threading.Tasks.Task::t_currentTask Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___t_currentTask_0; // System.Threading.Tasks.StackGuard System.Threading.Tasks.Task::t_stackGuard StackGuard_t88E1EE4741AD02CA5FEA04A4EB2CC70F230E0E6D * ___t_stackGuard_1; public: inline static int32_t get_offset_of_t_currentTask_0() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_ThreadStaticFields, ___t_currentTask_0)); } inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * get_t_currentTask_0() const { return ___t_currentTask_0; } inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 ** get_address_of_t_currentTask_0() { return &___t_currentTask_0; } inline void set_t_currentTask_0(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * value) { ___t_currentTask_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___t_currentTask_0), (void*)value); } inline static int32_t get_offset_of_t_stackGuard_1() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_ThreadStaticFields, ___t_stackGuard_1)); } inline StackGuard_t88E1EE4741AD02CA5FEA04A4EB2CC70F230E0E6D * get_t_stackGuard_1() const { return ___t_stackGuard_1; } inline StackGuard_t88E1EE4741AD02CA5FEA04A4EB2CC70F230E0E6D ** get_address_of_t_stackGuard_1() { return &___t_stackGuard_1; } inline void set_t_stackGuard_1(StackGuard_t88E1EE4741AD02CA5FEA04A4EB2CC70F230E0E6D * value) { ___t_stackGuard_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___t_stackGuard_1), (void*)value); } }; // System.TimeSpan struct TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 { public: // System.Int64 System.TimeSpan::_ticks int64_t ____ticks_22; public: inline static int32_t get_offset_of__ticks_22() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203, ____ticks_22)); } inline int64_t get__ticks_22() const { return ____ticks_22; } inline int64_t* get_address_of__ticks_22() { return &____ticks_22; } inline void set__ticks_22(int64_t value) { ____ticks_22 = value; } }; struct TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields { public: // System.TimeSpan System.TimeSpan::Zero TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___Zero_19; // System.TimeSpan System.TimeSpan::MaxValue TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MaxValue_20; // System.TimeSpan System.TimeSpan::MinValue TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MinValue_21; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyConfigChecked bool ____legacyConfigChecked_23; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyMode bool ____legacyMode_24; public: inline static int32_t get_offset_of_Zero_19() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___Zero_19)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_Zero_19() const { return ___Zero_19; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_Zero_19() { return &___Zero_19; } inline void set_Zero_19(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___Zero_19 = value; } inline static int32_t get_offset_of_MaxValue_20() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___MaxValue_20)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MaxValue_20() const { return ___MaxValue_20; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MaxValue_20() { return &___MaxValue_20; } inline void set_MaxValue_20(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___MaxValue_20 = value; } inline static int32_t get_offset_of_MinValue_21() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___MinValue_21)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MinValue_21() const { return ___MinValue_21; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MinValue_21() { return &___MinValue_21; } inline void set_MinValue_21(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___MinValue_21 = value; } inline static int32_t get_offset_of__legacyConfigChecked_23() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ____legacyConfigChecked_23)); } inline bool get__legacyConfigChecked_23() const { return ____legacyConfigChecked_23; } inline bool* get_address_of__legacyConfigChecked_23() { return &____legacyConfigChecked_23; } inline void set__legacyConfigChecked_23(bool value) { ____legacyConfigChecked_23 = value; } inline static int32_t get_offset_of__legacyMode_24() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ____legacyMode_24)); } inline bool get__legacyMode_24() const { return ____legacyMode_24; } inline bool* get_address_of__legacyMode_24() { return &____legacyMode_24; } inline void set__legacyMode_24(bool value) { ____legacyMode_24 = value; } }; // Mono.Security.Interface.TlsProtocols struct TlsProtocols_t14C13F73C25A0E4CF94E13D5B44228F810D32183 { public: // System.Int32 Mono.Security.Interface.TlsProtocols::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(TlsProtocols_t14C13F73C25A0E4CF94E13D5B44228F810D32183, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Security.Principal.TokenImpersonationLevel struct TokenImpersonationLevel_t666D9E038A04949CBCDDDBA08E5FD612F3EE4838 { public: // System.Int32 System.Security.Principal.TokenImpersonationLevel::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(TokenImpersonationLevel_t666D9E038A04949CBCDDDBA08E5FD612F3EE4838, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.ComponentModel.TypeConverter struct TypeConverter_t004F185B630F00F509F08BD8F8D82471867323B4 : public RuntimeObject { public: public: }; struct TypeConverter_t004F185B630F00F509F08BD8F8D82471867323B4_StaticFields { public: // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.TypeConverter::useCompatibleTypeConversion bool ___useCompatibleTypeConversion_1; public: inline static int32_t get_offset_of_useCompatibleTypeConversion_1() { return static_cast(offsetof(TypeConverter_t004F185B630F00F509F08BD8F8D82471867323B4_StaticFields, ___useCompatibleTypeConversion_1)); } inline bool get_useCompatibleTypeConversion_1() const { return ___useCompatibleTypeConversion_1; } inline bool* get_address_of_useCompatibleTypeConversion_1() { return &___useCompatibleTypeConversion_1; } inline void set_useCompatibleTypeConversion_1(bool value) { ___useCompatibleTypeConversion_1 = value; } }; // System.Net.NetworkInformation.UnixIPGlobalProperties struct UnixIPGlobalProperties_t17A56352BFACD974A0828F84CA3424941E39B021 : public CommonUnixIPGlobalProperties_t74F6A363223CF97FAB9A43E71FEAF07F2681F928 { public: public: }; // System.UriComponents struct UriComponents_tA599793722A9810EC23036FF1B1B02A905B4EA76 { public: // System.Int32 System.UriComponents::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(UriComponents_tA599793722A9810EC23036FF1B1B02A905B4EA76, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.UriFormat struct UriFormat_t25C936463BDE737B16A8EC3DA05091FC31F1A71F { public: // System.Int32 System.UriFormat::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(UriFormat_t25C936463BDE737B16A8EC3DA05091FC31F1A71F, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.UriIdnScope struct UriIdnScope_tBA22B992BA582F68F2B98CDEBCB24299F249DE4D { public: // System.Int32 System.UriIdnScope::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(UriIdnScope_tBA22B992BA582F68F2B98CDEBCB24299F249DE4D, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.UriKind struct UriKind_tFC16ACC1842283AAE2C7F50C9C70EFBF6550B3FC { public: // System.Int32 System.UriKind::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(UriKind_tFC16ACC1842283AAE2C7F50C9C70EFBF6550B3FC, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Threading.WaitHandle struct WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842 : public MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 { public: // System.IntPtr System.Threading.WaitHandle::waitHandle intptr_t ___waitHandle_3; // Microsoft.Win32.SafeHandles.SafeWaitHandle modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.WaitHandle::safeWaitHandle SafeWaitHandle_tF37EACEDF9C6F350EB4ABC1E1F869EECB0B5ABB1 * ___safeWaitHandle_4; // System.Boolean System.Threading.WaitHandle::hasThreadAffinity bool ___hasThreadAffinity_5; public: inline static int32_t get_offset_of_waitHandle_3() { return static_cast(offsetof(WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842, ___waitHandle_3)); } inline intptr_t get_waitHandle_3() const { return ___waitHandle_3; } inline intptr_t* get_address_of_waitHandle_3() { return &___waitHandle_3; } inline void set_waitHandle_3(intptr_t value) { ___waitHandle_3 = value; } inline static int32_t get_offset_of_safeWaitHandle_4() { return static_cast(offsetof(WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842, ___safeWaitHandle_4)); } inline SafeWaitHandle_tF37EACEDF9C6F350EB4ABC1E1F869EECB0B5ABB1 * get_safeWaitHandle_4() const { return ___safeWaitHandle_4; } inline SafeWaitHandle_tF37EACEDF9C6F350EB4ABC1E1F869EECB0B5ABB1 ** get_address_of_safeWaitHandle_4() { return &___safeWaitHandle_4; } inline void set_safeWaitHandle_4(SafeWaitHandle_tF37EACEDF9C6F350EB4ABC1E1F869EECB0B5ABB1 * value) { ___safeWaitHandle_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___safeWaitHandle_4), (void*)value); } inline static int32_t get_offset_of_hasThreadAffinity_5() { return static_cast(offsetof(WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842, ___hasThreadAffinity_5)); } inline bool get_hasThreadAffinity_5() const { return ___hasThreadAffinity_5; } inline bool* get_address_of_hasThreadAffinity_5() { return &___hasThreadAffinity_5; } inline void set_hasThreadAffinity_5(bool value) { ___hasThreadAffinity_5 = value; } }; struct WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842_StaticFields { public: // System.IntPtr System.Threading.WaitHandle::InvalidHandle intptr_t ___InvalidHandle_10; public: inline static int32_t get_offset_of_InvalidHandle_10() { return static_cast(offsetof(WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842_StaticFields, ___InvalidHandle_10)); } inline intptr_t get_InvalidHandle_10() const { return ___InvalidHandle_10; } inline intptr_t* get_address_of_InvalidHandle_10() { return &___InvalidHandle_10; } inline void set_InvalidHandle_10(intptr_t value) { ___InvalidHandle_10 = value; } }; // Native definition for P/Invoke marshalling of System.Threading.WaitHandle struct WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842_marshaled_pinvoke : public MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8_marshaled_pinvoke { intptr_t ___waitHandle_3; void* ___safeWaitHandle_4; int32_t ___hasThreadAffinity_5; }; // Native definition for COM marshalling of System.Threading.WaitHandle struct WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842_marshaled_com : public MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8_marshaled_com { intptr_t ___waitHandle_3; void* ___safeWaitHandle_4; int32_t ___hasThreadAffinity_5; }; // System.Net.WebConnection struct WebConnection_tBFE079FE6CA946AE000FE257DD8FE6F898BB3C88 : public RuntimeObject { public: // System.Net.NetworkCredential System.Net.WebConnection::ntlm_credentials NetworkCredential_t263CA6068540C6DA0E1CDE919BD7A15C28D55686 * ___ntlm_credentials_0; // System.Boolean System.Net.WebConnection::ntlm_authenticated bool ___ntlm_authenticated_1; // System.Boolean System.Net.WebConnection::unsafe_sharing bool ___unsafe_sharing_2; // System.IO.Stream System.Net.WebConnection::networkStream Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___networkStream_3; // System.Net.Sockets.Socket System.Net.WebConnection::socket Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09 * ___socket_4; // Mono.Net.Security.MonoTlsStream System.Net.WebConnection::monoTlsStream MonoTlsStream_t1CBBE92DE7BA1B432289982184305AF431C01233 * ___monoTlsStream_5; // System.Net.WebConnectionTunnel System.Net.WebConnection::tunnel WebConnectionTunnel_t0DEDF9AB5FFB065A77FAAA0F72C6C4763CDBC925 * ___tunnel_6; // System.Int32 System.Net.WebConnection::disposed int32_t ___disposed_7; // System.Net.ServicePoint System.Net.WebConnection::k__BackingField ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * ___U3CServicePointU3Ek__BackingField_8; // System.DateTime System.Net.WebConnection::idleSince DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___idleSince_9; // System.Net.WebOperation System.Net.WebConnection::currentOperation WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * ___currentOperation_10; public: inline static int32_t get_offset_of_ntlm_credentials_0() { return static_cast(offsetof(WebConnection_tBFE079FE6CA946AE000FE257DD8FE6F898BB3C88, ___ntlm_credentials_0)); } inline NetworkCredential_t263CA6068540C6DA0E1CDE919BD7A15C28D55686 * get_ntlm_credentials_0() const { return ___ntlm_credentials_0; } inline NetworkCredential_t263CA6068540C6DA0E1CDE919BD7A15C28D55686 ** get_address_of_ntlm_credentials_0() { return &___ntlm_credentials_0; } inline void set_ntlm_credentials_0(NetworkCredential_t263CA6068540C6DA0E1CDE919BD7A15C28D55686 * value) { ___ntlm_credentials_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___ntlm_credentials_0), (void*)value); } inline static int32_t get_offset_of_ntlm_authenticated_1() { return static_cast(offsetof(WebConnection_tBFE079FE6CA946AE000FE257DD8FE6F898BB3C88, ___ntlm_authenticated_1)); } inline bool get_ntlm_authenticated_1() const { return ___ntlm_authenticated_1; } inline bool* get_address_of_ntlm_authenticated_1() { return &___ntlm_authenticated_1; } inline void set_ntlm_authenticated_1(bool value) { ___ntlm_authenticated_1 = value; } inline static int32_t get_offset_of_unsafe_sharing_2() { return static_cast(offsetof(WebConnection_tBFE079FE6CA946AE000FE257DD8FE6F898BB3C88, ___unsafe_sharing_2)); } inline bool get_unsafe_sharing_2() const { return ___unsafe_sharing_2; } inline bool* get_address_of_unsafe_sharing_2() { return &___unsafe_sharing_2; } inline void set_unsafe_sharing_2(bool value) { ___unsafe_sharing_2 = value; } inline static int32_t get_offset_of_networkStream_3() { return static_cast(offsetof(WebConnection_tBFE079FE6CA946AE000FE257DD8FE6F898BB3C88, ___networkStream_3)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_networkStream_3() const { return ___networkStream_3; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_networkStream_3() { return &___networkStream_3; } inline void set_networkStream_3(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___networkStream_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___networkStream_3), (void*)value); } inline static int32_t get_offset_of_socket_4() { return static_cast(offsetof(WebConnection_tBFE079FE6CA946AE000FE257DD8FE6F898BB3C88, ___socket_4)); } inline Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09 * get_socket_4() const { return ___socket_4; } inline Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09 ** get_address_of_socket_4() { return &___socket_4; } inline void set_socket_4(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09 * value) { ___socket_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___socket_4), (void*)value); } inline static int32_t get_offset_of_monoTlsStream_5() { return static_cast(offsetof(WebConnection_tBFE079FE6CA946AE000FE257DD8FE6F898BB3C88, ___monoTlsStream_5)); } inline MonoTlsStream_t1CBBE92DE7BA1B432289982184305AF431C01233 * get_monoTlsStream_5() const { return ___monoTlsStream_5; } inline MonoTlsStream_t1CBBE92DE7BA1B432289982184305AF431C01233 ** get_address_of_monoTlsStream_5() { return &___monoTlsStream_5; } inline void set_monoTlsStream_5(MonoTlsStream_t1CBBE92DE7BA1B432289982184305AF431C01233 * value) { ___monoTlsStream_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___monoTlsStream_5), (void*)value); } inline static int32_t get_offset_of_tunnel_6() { return static_cast(offsetof(WebConnection_tBFE079FE6CA946AE000FE257DD8FE6F898BB3C88, ___tunnel_6)); } inline WebConnectionTunnel_t0DEDF9AB5FFB065A77FAAA0F72C6C4763CDBC925 * get_tunnel_6() const { return ___tunnel_6; } inline WebConnectionTunnel_t0DEDF9AB5FFB065A77FAAA0F72C6C4763CDBC925 ** get_address_of_tunnel_6() { return &___tunnel_6; } inline void set_tunnel_6(WebConnectionTunnel_t0DEDF9AB5FFB065A77FAAA0F72C6C4763CDBC925 * value) { ___tunnel_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___tunnel_6), (void*)value); } inline static int32_t get_offset_of_disposed_7() { return static_cast(offsetof(WebConnection_tBFE079FE6CA946AE000FE257DD8FE6F898BB3C88, ___disposed_7)); } inline int32_t get_disposed_7() const { return ___disposed_7; } inline int32_t* get_address_of_disposed_7() { return &___disposed_7; } inline void set_disposed_7(int32_t value) { ___disposed_7 = value; } inline static int32_t get_offset_of_U3CServicePointU3Ek__BackingField_8() { return static_cast(offsetof(WebConnection_tBFE079FE6CA946AE000FE257DD8FE6F898BB3C88, ___U3CServicePointU3Ek__BackingField_8)); } inline ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * get_U3CServicePointU3Ek__BackingField_8() const { return ___U3CServicePointU3Ek__BackingField_8; } inline ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 ** get_address_of_U3CServicePointU3Ek__BackingField_8() { return &___U3CServicePointU3Ek__BackingField_8; } inline void set_U3CServicePointU3Ek__BackingField_8(ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * value) { ___U3CServicePointU3Ek__BackingField_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CServicePointU3Ek__BackingField_8), (void*)value); } inline static int32_t get_offset_of_idleSince_9() { return static_cast(offsetof(WebConnection_tBFE079FE6CA946AE000FE257DD8FE6F898BB3C88, ___idleSince_9)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_idleSince_9() const { return ___idleSince_9; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_idleSince_9() { return &___idleSince_9; } inline void set_idleSince_9(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___idleSince_9 = value; } inline static int32_t get_offset_of_currentOperation_10() { return static_cast(offsetof(WebConnection_tBFE079FE6CA946AE000FE257DD8FE6F898BB3C88, ___currentOperation_10)); } inline WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * get_currentOperation_10() const { return ___currentOperation_10; } inline WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 ** get_address_of_currentOperation_10() { return &___currentOperation_10; } inline void set_currentOperation_10(WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * value) { ___currentOperation_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentOperation_10), (void*)value); } }; // System.Net.WebConnectionStream struct WebConnectionStream_t3D04BDBD47522FD7C97ABF7F1B4498F72FA2E918 : public Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB { public: // System.Boolean System.Net.WebConnectionStream::closed bool ___closed_5; // System.Boolean System.Net.WebConnectionStream::disposed bool ___disposed_6; // System.Object System.Net.WebConnectionStream::locker RuntimeObject * ___locker_7; // System.Int32 System.Net.WebConnectionStream::read_timeout int32_t ___read_timeout_8; // System.Int32 System.Net.WebConnectionStream::write_timeout int32_t ___write_timeout_9; // System.Boolean System.Net.WebConnectionStream::IgnoreIOErrors bool ___IgnoreIOErrors_10; // System.Net.HttpWebRequest System.Net.WebConnectionStream::k__BackingField HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * ___U3CRequestU3Ek__BackingField_11; // System.Net.WebConnection System.Net.WebConnectionStream::k__BackingField WebConnection_tBFE079FE6CA946AE000FE257DD8FE6F898BB3C88 * ___U3CConnectionU3Ek__BackingField_12; // System.Net.WebOperation System.Net.WebConnectionStream::k__BackingField WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * ___U3COperationU3Ek__BackingField_13; // System.IO.Stream System.Net.WebConnectionStream::k__BackingField Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___U3CInnerStreamU3Ek__BackingField_14; public: inline static int32_t get_offset_of_closed_5() { return static_cast(offsetof(WebConnectionStream_t3D04BDBD47522FD7C97ABF7F1B4498F72FA2E918, ___closed_5)); } inline bool get_closed_5() const { return ___closed_5; } inline bool* get_address_of_closed_5() { return &___closed_5; } inline void set_closed_5(bool value) { ___closed_5 = value; } inline static int32_t get_offset_of_disposed_6() { return static_cast(offsetof(WebConnectionStream_t3D04BDBD47522FD7C97ABF7F1B4498F72FA2E918, ___disposed_6)); } inline bool get_disposed_6() const { return ___disposed_6; } inline bool* get_address_of_disposed_6() { return &___disposed_6; } inline void set_disposed_6(bool value) { ___disposed_6 = value; } inline static int32_t get_offset_of_locker_7() { return static_cast(offsetof(WebConnectionStream_t3D04BDBD47522FD7C97ABF7F1B4498F72FA2E918, ___locker_7)); } inline RuntimeObject * get_locker_7() const { return ___locker_7; } inline RuntimeObject ** get_address_of_locker_7() { return &___locker_7; } inline void set_locker_7(RuntimeObject * value) { ___locker_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___locker_7), (void*)value); } inline static int32_t get_offset_of_read_timeout_8() { return static_cast(offsetof(WebConnectionStream_t3D04BDBD47522FD7C97ABF7F1B4498F72FA2E918, ___read_timeout_8)); } inline int32_t get_read_timeout_8() const { return ___read_timeout_8; } inline int32_t* get_address_of_read_timeout_8() { return &___read_timeout_8; } inline void set_read_timeout_8(int32_t value) { ___read_timeout_8 = value; } inline static int32_t get_offset_of_write_timeout_9() { return static_cast(offsetof(WebConnectionStream_t3D04BDBD47522FD7C97ABF7F1B4498F72FA2E918, ___write_timeout_9)); } inline int32_t get_write_timeout_9() const { return ___write_timeout_9; } inline int32_t* get_address_of_write_timeout_9() { return &___write_timeout_9; } inline void set_write_timeout_9(int32_t value) { ___write_timeout_9 = value; } inline static int32_t get_offset_of_IgnoreIOErrors_10() { return static_cast(offsetof(WebConnectionStream_t3D04BDBD47522FD7C97ABF7F1B4498F72FA2E918, ___IgnoreIOErrors_10)); } inline bool get_IgnoreIOErrors_10() const { return ___IgnoreIOErrors_10; } inline bool* get_address_of_IgnoreIOErrors_10() { return &___IgnoreIOErrors_10; } inline void set_IgnoreIOErrors_10(bool value) { ___IgnoreIOErrors_10 = value; } inline static int32_t get_offset_of_U3CRequestU3Ek__BackingField_11() { return static_cast(offsetof(WebConnectionStream_t3D04BDBD47522FD7C97ABF7F1B4498F72FA2E918, ___U3CRequestU3Ek__BackingField_11)); } inline HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * get_U3CRequestU3Ek__BackingField_11() const { return ___U3CRequestU3Ek__BackingField_11; } inline HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A ** get_address_of_U3CRequestU3Ek__BackingField_11() { return &___U3CRequestU3Ek__BackingField_11; } inline void set_U3CRequestU3Ek__BackingField_11(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * value) { ___U3CRequestU3Ek__BackingField_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CRequestU3Ek__BackingField_11), (void*)value); } inline static int32_t get_offset_of_U3CConnectionU3Ek__BackingField_12() { return static_cast(offsetof(WebConnectionStream_t3D04BDBD47522FD7C97ABF7F1B4498F72FA2E918, ___U3CConnectionU3Ek__BackingField_12)); } inline WebConnection_tBFE079FE6CA946AE000FE257DD8FE6F898BB3C88 * get_U3CConnectionU3Ek__BackingField_12() const { return ___U3CConnectionU3Ek__BackingField_12; } inline WebConnection_tBFE079FE6CA946AE000FE257DD8FE6F898BB3C88 ** get_address_of_U3CConnectionU3Ek__BackingField_12() { return &___U3CConnectionU3Ek__BackingField_12; } inline void set_U3CConnectionU3Ek__BackingField_12(WebConnection_tBFE079FE6CA946AE000FE257DD8FE6F898BB3C88 * value) { ___U3CConnectionU3Ek__BackingField_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CConnectionU3Ek__BackingField_12), (void*)value); } inline static int32_t get_offset_of_U3COperationU3Ek__BackingField_13() { return static_cast(offsetof(WebConnectionStream_t3D04BDBD47522FD7C97ABF7F1B4498F72FA2E918, ___U3COperationU3Ek__BackingField_13)); } inline WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * get_U3COperationU3Ek__BackingField_13() const { return ___U3COperationU3Ek__BackingField_13; } inline WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 ** get_address_of_U3COperationU3Ek__BackingField_13() { return &___U3COperationU3Ek__BackingField_13; } inline void set_U3COperationU3Ek__BackingField_13(WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * value) { ___U3COperationU3Ek__BackingField_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3COperationU3Ek__BackingField_13), (void*)value); } inline static int32_t get_offset_of_U3CInnerStreamU3Ek__BackingField_14() { return static_cast(offsetof(WebConnectionStream_t3D04BDBD47522FD7C97ABF7F1B4498F72FA2E918, ___U3CInnerStreamU3Ek__BackingField_14)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_U3CInnerStreamU3Ek__BackingField_14() const { return ___U3CInnerStreamU3Ek__BackingField_14; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_U3CInnerStreamU3Ek__BackingField_14() { return &___U3CInnerStreamU3Ek__BackingField_14; } inline void set_U3CInnerStreamU3Ek__BackingField_14(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___U3CInnerStreamU3Ek__BackingField_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CInnerStreamU3Ek__BackingField_14), (void*)value); } }; // System.Net.WebExceptionInternalStatus struct WebExceptionInternalStatus_t5A2FD55F96B6C62DE1354CCB0A4B3787597D2F57 { public: // System.Int32 System.Net.WebExceptionInternalStatus::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(WebExceptionInternalStatus_t5A2FD55F96B6C62DE1354CCB0A4B3787597D2F57, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Net.WebExceptionStatus struct WebExceptionStatus_tF76E8FAA116C43DDF96AF8C8CE2D75C3587F31D9 { public: // System.Int32 System.Net.WebExceptionStatus::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(WebExceptionStatus_tF76E8FAA116C43DDF96AF8C8CE2D75C3587F31D9, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Net.WebHeaderCollectionType struct WebHeaderCollectionType_t07786FA148E21DD3628FCEA5DAE961CAC9202736 { public: // System.UInt16 System.Net.WebHeaderCollectionType::value__ uint16_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(WebHeaderCollectionType_t07786FA148E21DD3628FCEA5DAE961CAC9202736, ___value___2)); } inline uint16_t get_value___2() const { return ___value___2; } inline uint16_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(uint16_t value) { ___value___2 = value; } }; // System.Net.WebOperation struct WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 : public RuntimeObject { public: // System.Net.HttpWebRequest System.Net.WebOperation::k__BackingField HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * ___U3CRequestU3Ek__BackingField_0; // System.Net.WebConnection System.Net.WebOperation::k__BackingField WebConnection_tBFE079FE6CA946AE000FE257DD8FE6F898BB3C88 * ___U3CConnectionU3Ek__BackingField_1; // System.Net.ServicePoint System.Net.WebOperation::k__BackingField ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * ___U3CServicePointU3Ek__BackingField_2; // System.Net.BufferOffsetSize System.Net.WebOperation::k__BackingField BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F * ___U3CWriteBufferU3Ek__BackingField_3; // System.Boolean System.Net.WebOperation::k__BackingField bool ___U3CIsNtlmChallengeU3Ek__BackingField_4; // System.Threading.CancellationTokenSource System.Net.WebOperation::cts CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * ___cts_5; // System.Threading.Tasks.TaskCompletionSource`1 System.Net.WebOperation::requestTask TaskCompletionSource_1_tAF27606417C7EB40F6CABFF758970F72CCCB83D5 * ___requestTask_6; // System.Threading.Tasks.TaskCompletionSource`1 System.Net.WebOperation::requestWrittenTask TaskCompletionSource_1_tAF27606417C7EB40F6CABFF758970F72CCCB83D5 * ___requestWrittenTask_7; // System.Threading.Tasks.TaskCompletionSource`1 System.Net.WebOperation::responseTask TaskCompletionSource_1_t326763FDCC1EDF46DBC85450D97C3918281217E5 * ___responseTask_8; // System.Threading.Tasks.TaskCompletionSource`1 System.Net.WebOperation::completeResponseReadTask TaskCompletionSource_1_t56125454B9277AE49801F3DF08F7774ED6B499F3 * ___completeResponseReadTask_9; // System.Threading.Tasks.TaskCompletionSource`1> System.Net.WebOperation::finishedTask TaskCompletionSource_1_tA4F2D12802A86238A6B0FC63EABD6B8063A89649 * ___finishedTask_10; // System.Net.WebRequestStream System.Net.WebOperation::writeStream WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887 * ___writeStream_11; // System.Net.WebResponseStream System.Net.WebOperation::responseStream WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F * ___responseStream_12; // System.Runtime.ExceptionServices.ExceptionDispatchInfo System.Net.WebOperation::disposedInfo ExceptionDispatchInfo_t85442E41DA1485CFF22598AC362EE986DF3CDD09 * ___disposedInfo_13; // System.Runtime.ExceptionServices.ExceptionDispatchInfo System.Net.WebOperation::closedInfo ExceptionDispatchInfo_t85442E41DA1485CFF22598AC362EE986DF3CDD09 * ___closedInfo_14; // System.Net.WebOperation System.Net.WebOperation::priorityRequest WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * ___priorityRequest_15; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Net.WebOperation::finishedReading bool ___finishedReading_16; // System.Int32 System.Net.WebOperation::requestSent int32_t ___requestSent_17; public: inline static int32_t get_offset_of_U3CRequestU3Ek__BackingField_0() { return static_cast(offsetof(WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00, ___U3CRequestU3Ek__BackingField_0)); } inline HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * get_U3CRequestU3Ek__BackingField_0() const { return ___U3CRequestU3Ek__BackingField_0; } inline HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A ** get_address_of_U3CRequestU3Ek__BackingField_0() { return &___U3CRequestU3Ek__BackingField_0; } inline void set_U3CRequestU3Ek__BackingField_0(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * value) { ___U3CRequestU3Ek__BackingField_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CRequestU3Ek__BackingField_0), (void*)value); } inline static int32_t get_offset_of_U3CConnectionU3Ek__BackingField_1() { return static_cast(offsetof(WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00, ___U3CConnectionU3Ek__BackingField_1)); } inline WebConnection_tBFE079FE6CA946AE000FE257DD8FE6F898BB3C88 * get_U3CConnectionU3Ek__BackingField_1() const { return ___U3CConnectionU3Ek__BackingField_1; } inline WebConnection_tBFE079FE6CA946AE000FE257DD8FE6F898BB3C88 ** get_address_of_U3CConnectionU3Ek__BackingField_1() { return &___U3CConnectionU3Ek__BackingField_1; } inline void set_U3CConnectionU3Ek__BackingField_1(WebConnection_tBFE079FE6CA946AE000FE257DD8FE6F898BB3C88 * value) { ___U3CConnectionU3Ek__BackingField_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CConnectionU3Ek__BackingField_1), (void*)value); } inline static int32_t get_offset_of_U3CServicePointU3Ek__BackingField_2() { return static_cast(offsetof(WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00, ___U3CServicePointU3Ek__BackingField_2)); } inline ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * get_U3CServicePointU3Ek__BackingField_2() const { return ___U3CServicePointU3Ek__BackingField_2; } inline ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 ** get_address_of_U3CServicePointU3Ek__BackingField_2() { return &___U3CServicePointU3Ek__BackingField_2; } inline void set_U3CServicePointU3Ek__BackingField_2(ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * value) { ___U3CServicePointU3Ek__BackingField_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CServicePointU3Ek__BackingField_2), (void*)value); } inline static int32_t get_offset_of_U3CWriteBufferU3Ek__BackingField_3() { return static_cast(offsetof(WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00, ___U3CWriteBufferU3Ek__BackingField_3)); } inline BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F * get_U3CWriteBufferU3Ek__BackingField_3() const { return ___U3CWriteBufferU3Ek__BackingField_3; } inline BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F ** get_address_of_U3CWriteBufferU3Ek__BackingField_3() { return &___U3CWriteBufferU3Ek__BackingField_3; } inline void set_U3CWriteBufferU3Ek__BackingField_3(BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F * value) { ___U3CWriteBufferU3Ek__BackingField_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CWriteBufferU3Ek__BackingField_3), (void*)value); } inline static int32_t get_offset_of_U3CIsNtlmChallengeU3Ek__BackingField_4() { return static_cast(offsetof(WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00, ___U3CIsNtlmChallengeU3Ek__BackingField_4)); } inline bool get_U3CIsNtlmChallengeU3Ek__BackingField_4() const { return ___U3CIsNtlmChallengeU3Ek__BackingField_4; } inline bool* get_address_of_U3CIsNtlmChallengeU3Ek__BackingField_4() { return &___U3CIsNtlmChallengeU3Ek__BackingField_4; } inline void set_U3CIsNtlmChallengeU3Ek__BackingField_4(bool value) { ___U3CIsNtlmChallengeU3Ek__BackingField_4 = value; } inline static int32_t get_offset_of_cts_5() { return static_cast(offsetof(WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00, ___cts_5)); } inline CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * get_cts_5() const { return ___cts_5; } inline CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 ** get_address_of_cts_5() { return &___cts_5; } inline void set_cts_5(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * value) { ___cts_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___cts_5), (void*)value); } inline static int32_t get_offset_of_requestTask_6() { return static_cast(offsetof(WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00, ___requestTask_6)); } inline TaskCompletionSource_1_tAF27606417C7EB40F6CABFF758970F72CCCB83D5 * get_requestTask_6() const { return ___requestTask_6; } inline TaskCompletionSource_1_tAF27606417C7EB40F6CABFF758970F72CCCB83D5 ** get_address_of_requestTask_6() { return &___requestTask_6; } inline void set_requestTask_6(TaskCompletionSource_1_tAF27606417C7EB40F6CABFF758970F72CCCB83D5 * value) { ___requestTask_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___requestTask_6), (void*)value); } inline static int32_t get_offset_of_requestWrittenTask_7() { return static_cast(offsetof(WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00, ___requestWrittenTask_7)); } inline TaskCompletionSource_1_tAF27606417C7EB40F6CABFF758970F72CCCB83D5 * get_requestWrittenTask_7() const { return ___requestWrittenTask_7; } inline TaskCompletionSource_1_tAF27606417C7EB40F6CABFF758970F72CCCB83D5 ** get_address_of_requestWrittenTask_7() { return &___requestWrittenTask_7; } inline void set_requestWrittenTask_7(TaskCompletionSource_1_tAF27606417C7EB40F6CABFF758970F72CCCB83D5 * value) { ___requestWrittenTask_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___requestWrittenTask_7), (void*)value); } inline static int32_t get_offset_of_responseTask_8() { return static_cast(offsetof(WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00, ___responseTask_8)); } inline TaskCompletionSource_1_t326763FDCC1EDF46DBC85450D97C3918281217E5 * get_responseTask_8() const { return ___responseTask_8; } inline TaskCompletionSource_1_t326763FDCC1EDF46DBC85450D97C3918281217E5 ** get_address_of_responseTask_8() { return &___responseTask_8; } inline void set_responseTask_8(TaskCompletionSource_1_t326763FDCC1EDF46DBC85450D97C3918281217E5 * value) { ___responseTask_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___responseTask_8), (void*)value); } inline static int32_t get_offset_of_completeResponseReadTask_9() { return static_cast(offsetof(WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00, ___completeResponseReadTask_9)); } inline TaskCompletionSource_1_t56125454B9277AE49801F3DF08F7774ED6B499F3 * get_completeResponseReadTask_9() const { return ___completeResponseReadTask_9; } inline TaskCompletionSource_1_t56125454B9277AE49801F3DF08F7774ED6B499F3 ** get_address_of_completeResponseReadTask_9() { return &___completeResponseReadTask_9; } inline void set_completeResponseReadTask_9(TaskCompletionSource_1_t56125454B9277AE49801F3DF08F7774ED6B499F3 * value) { ___completeResponseReadTask_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___completeResponseReadTask_9), (void*)value); } inline static int32_t get_offset_of_finishedTask_10() { return static_cast(offsetof(WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00, ___finishedTask_10)); } inline TaskCompletionSource_1_tA4F2D12802A86238A6B0FC63EABD6B8063A89649 * get_finishedTask_10() const { return ___finishedTask_10; } inline TaskCompletionSource_1_tA4F2D12802A86238A6B0FC63EABD6B8063A89649 ** get_address_of_finishedTask_10() { return &___finishedTask_10; } inline void set_finishedTask_10(TaskCompletionSource_1_tA4F2D12802A86238A6B0FC63EABD6B8063A89649 * value) { ___finishedTask_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___finishedTask_10), (void*)value); } inline static int32_t get_offset_of_writeStream_11() { return static_cast(offsetof(WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00, ___writeStream_11)); } inline WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887 * get_writeStream_11() const { return ___writeStream_11; } inline WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887 ** get_address_of_writeStream_11() { return &___writeStream_11; } inline void set_writeStream_11(WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887 * value) { ___writeStream_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___writeStream_11), (void*)value); } inline static int32_t get_offset_of_responseStream_12() { return static_cast(offsetof(WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00, ___responseStream_12)); } inline WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F * get_responseStream_12() const { return ___responseStream_12; } inline WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F ** get_address_of_responseStream_12() { return &___responseStream_12; } inline void set_responseStream_12(WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F * value) { ___responseStream_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___responseStream_12), (void*)value); } inline static int32_t get_offset_of_disposedInfo_13() { return static_cast(offsetof(WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00, ___disposedInfo_13)); } inline ExceptionDispatchInfo_t85442E41DA1485CFF22598AC362EE986DF3CDD09 * get_disposedInfo_13() const { return ___disposedInfo_13; } inline ExceptionDispatchInfo_t85442E41DA1485CFF22598AC362EE986DF3CDD09 ** get_address_of_disposedInfo_13() { return &___disposedInfo_13; } inline void set_disposedInfo_13(ExceptionDispatchInfo_t85442E41DA1485CFF22598AC362EE986DF3CDD09 * value) { ___disposedInfo_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___disposedInfo_13), (void*)value); } inline static int32_t get_offset_of_closedInfo_14() { return static_cast(offsetof(WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00, ___closedInfo_14)); } inline ExceptionDispatchInfo_t85442E41DA1485CFF22598AC362EE986DF3CDD09 * get_closedInfo_14() const { return ___closedInfo_14; } inline ExceptionDispatchInfo_t85442E41DA1485CFF22598AC362EE986DF3CDD09 ** get_address_of_closedInfo_14() { return &___closedInfo_14; } inline void set_closedInfo_14(ExceptionDispatchInfo_t85442E41DA1485CFF22598AC362EE986DF3CDD09 * value) { ___closedInfo_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___closedInfo_14), (void*)value); } inline static int32_t get_offset_of_priorityRequest_15() { return static_cast(offsetof(WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00, ___priorityRequest_15)); } inline WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * get_priorityRequest_15() const { return ___priorityRequest_15; } inline WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 ** get_address_of_priorityRequest_15() { return &___priorityRequest_15; } inline void set_priorityRequest_15(WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * value) { ___priorityRequest_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___priorityRequest_15), (void*)value); } inline static int32_t get_offset_of_finishedReading_16() { return static_cast(offsetof(WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00, ___finishedReading_16)); } inline bool get_finishedReading_16() const { return ___finishedReading_16; } inline bool* get_address_of_finishedReading_16() { return &___finishedReading_16; } inline void set_finishedReading_16(bool value) { ___finishedReading_16 = value; } inline static int32_t get_offset_of_requestSent_17() { return static_cast(offsetof(WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00, ___requestSent_17)); } inline int32_t get_requestSent_17() const { return ___requestSent_17; } inline int32_t* get_address_of_requestSent_17() { return &___requestSent_17; } inline void set_requestSent_17(int32_t value) { ___requestSent_17 = value; } }; // System.Net.FtpWebRequest/RequestState struct RequestState_t4A97D7507BBB92677FEBA40EF882F80F11A89589 { public: // System.Int32 System.Net.FtpWebRequest/RequestState::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(RequestState_t4A97D7507BBB92677FEBA40EF882F80F11A89589, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Net.HttpWebRequest/NtlmAuthState struct NtlmAuthState_tB25DC6ECE6512540ECD9B75F3B047DA7E5976535 { public: // System.Int32 System.Net.HttpWebRequest/NtlmAuthState::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(NtlmAuthState_tB25DC6ECE6512540ECD9B75F3B047DA7E5976535, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Uri/Flags struct Flags_t72C622DF5C3ED762F55AB36EC2CCDDF3AF56B8D4 { public: // System.UInt64 System.Uri/Flags::value__ uint64_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Flags_t72C622DF5C3ED762F55AB36EC2CCDDF3AF56B8D4, ___value___2)); } inline uint64_t get_value___2() const { return ___value___2; } inline uint64_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(uint64_t value) { ___value___2 = value; } }; // System.Nullable`1 struct Nullable_1_tA368B61397E0DCBFA85FBD6D0C7EFB54328303DD { public: // T System.Nullable`1::value int32_t ___value_0; // System.Boolean System.Nullable`1::has_value bool ___has_value_1; public: inline static int32_t get_offset_of_value_0() { return static_cast(offsetof(Nullable_1_tA368B61397E0DCBFA85FBD6D0C7EFB54328303DD, ___value_0)); } inline int32_t get_value_0() const { return ___value_0; } inline int32_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(int32_t value) { ___value_0 = value; } inline static int32_t get_offset_of_has_value_1() { return static_cast(offsetof(Nullable_1_tA368B61397E0DCBFA85FBD6D0C7EFB54328303DD, ___has_value_1)); } inline bool get_has_value_1() const { return ___has_value_1; } inline bool* get_address_of_has_value_1() { return &___has_value_1; } inline void set_has_value_1(bool value) { ___has_value_1 = value; } }; // System.Threading.Tasks.Task`1> struct Task_1_tDEAB8548D192DBB144FB5A8A3D04AD2EEB5E3D13 : public Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 { public: // TResult System.Threading.Tasks.Task`1::m_result ValueTuple_5_tC03A966BCCF577698D4862E43CEE647247992092 ___m_result_40; public: inline static int32_t get_offset_of_m_result_40() { return static_cast(offsetof(Task_1_tDEAB8548D192DBB144FB5A8A3D04AD2EEB5E3D13, ___m_result_40)); } inline ValueTuple_5_tC03A966BCCF577698D4862E43CEE647247992092 get_m_result_40() const { return ___m_result_40; } inline ValueTuple_5_tC03A966BCCF577698D4862E43CEE647247992092 * get_address_of_m_result_40() { return &___m_result_40; } inline void set_m_result_40(ValueTuple_5_tC03A966BCCF577698D4862E43CEE647247992092 value) { ___m_result_40 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_result_40))->___Item1_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_result_40))->___Item4_3), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_result_40))->___Item5_4), (void*)NULL); #endif } }; struct Task_1_tDEAB8548D192DBB144FB5A8A3D04AD2EEB5E3D13_StaticFields { public: // System.Threading.Tasks.TaskFactory`1 System.Threading.Tasks.Task`1::s_Factory TaskFactory_1_t24824C666A75E5C8BF1E87AABAE1801F04F084A2 * ___s_Factory_41; // System.Func`2,System.Threading.Tasks.Task`1> System.Threading.Tasks.Task`1::TaskWhenAnyCast Func_2_tEE0B8A4A8105D5AA3534F2D0C4B428045CA296F1 * ___TaskWhenAnyCast_42; public: inline static int32_t get_offset_of_s_Factory_41() { return static_cast(offsetof(Task_1_tDEAB8548D192DBB144FB5A8A3D04AD2EEB5E3D13_StaticFields, ___s_Factory_41)); } inline TaskFactory_1_t24824C666A75E5C8BF1E87AABAE1801F04F084A2 * get_s_Factory_41() const { return ___s_Factory_41; } inline TaskFactory_1_t24824C666A75E5C8BF1E87AABAE1801F04F084A2 ** get_address_of_s_Factory_41() { return &___s_Factory_41; } inline void set_s_Factory_41(TaskFactory_1_t24824C666A75E5C8BF1E87AABAE1801F04F084A2 * value) { ___s_Factory_41 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Factory_41), (void*)value); } inline static int32_t get_offset_of_TaskWhenAnyCast_42() { return static_cast(offsetof(Task_1_tDEAB8548D192DBB144FB5A8A3D04AD2EEB5E3D13_StaticFields, ___TaskWhenAnyCast_42)); } inline Func_2_tEE0B8A4A8105D5AA3534F2D0C4B428045CA296F1 * get_TaskWhenAnyCast_42() const { return ___TaskWhenAnyCast_42; } inline Func_2_tEE0B8A4A8105D5AA3534F2D0C4B428045CA296F1 ** get_address_of_TaskWhenAnyCast_42() { return &___TaskWhenAnyCast_42; } inline void set_TaskWhenAnyCast_42(Func_2_tEE0B8A4A8105D5AA3534F2D0C4B428045CA296F1 * value) { ___TaskWhenAnyCast_42 = value; Il2CppCodeGenWriteBarrier((void**)(&___TaskWhenAnyCast_42), (void*)value); } }; // System.Threading.Tasks.Task`1 struct Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 : public Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 { public: // TResult System.Threading.Tasks.Task`1::m_result BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F * ___m_result_40; public: inline static int32_t get_offset_of_m_result_40() { return static_cast(offsetof(Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0, ___m_result_40)); } inline BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F * get_m_result_40() const { return ___m_result_40; } inline BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F ** get_address_of_m_result_40() { return &___m_result_40; } inline void set_m_result_40(BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F * value) { ___m_result_40 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_result_40), (void*)value); } }; struct Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0_StaticFields { public: // System.Threading.Tasks.TaskFactory`1 System.Threading.Tasks.Task`1::s_Factory TaskFactory_1_t371B198695EA725C7403DA0852C7CFFEDDD89920 * ___s_Factory_41; // System.Func`2,System.Threading.Tasks.Task`1> System.Threading.Tasks.Task`1::TaskWhenAnyCast Func_2_t7623436E35035C6EE69371DD393976F867BA3ABF * ___TaskWhenAnyCast_42; public: inline static int32_t get_offset_of_s_Factory_41() { return static_cast(offsetof(Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0_StaticFields, ___s_Factory_41)); } inline TaskFactory_1_t371B198695EA725C7403DA0852C7CFFEDDD89920 * get_s_Factory_41() const { return ___s_Factory_41; } inline TaskFactory_1_t371B198695EA725C7403DA0852C7CFFEDDD89920 ** get_address_of_s_Factory_41() { return &___s_Factory_41; } inline void set_s_Factory_41(TaskFactory_1_t371B198695EA725C7403DA0852C7CFFEDDD89920 * value) { ___s_Factory_41 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Factory_41), (void*)value); } inline static int32_t get_offset_of_TaskWhenAnyCast_42() { return static_cast(offsetof(Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0_StaticFields, ___TaskWhenAnyCast_42)); } inline Func_2_t7623436E35035C6EE69371DD393976F867BA3ABF * get_TaskWhenAnyCast_42() const { return ___TaskWhenAnyCast_42; } inline Func_2_t7623436E35035C6EE69371DD393976F867BA3ABF ** get_address_of_TaskWhenAnyCast_42() { return &___TaskWhenAnyCast_42; } inline void set_TaskWhenAnyCast_42(Func_2_t7623436E35035C6EE69371DD393976F867BA3ABF * value) { ___TaskWhenAnyCast_42 = value; Il2CppCodeGenWriteBarrier((void**)(&___TaskWhenAnyCast_42), (void*)value); } }; // System.Threading.Tasks.Task`1 struct Task_1_t4B8CF50BCA70ADAD54A2813B464DF4A25F896857 : public Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 { public: // TResult System.Threading.Tasks.Task`1::m_result HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * ___m_result_40; public: inline static int32_t get_offset_of_m_result_40() { return static_cast(offsetof(Task_1_t4B8CF50BCA70ADAD54A2813B464DF4A25F896857, ___m_result_40)); } inline HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * get_m_result_40() const { return ___m_result_40; } inline HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB ** get_address_of_m_result_40() { return &___m_result_40; } inline void set_m_result_40(HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * value) { ___m_result_40 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_result_40), (void*)value); } }; struct Task_1_t4B8CF50BCA70ADAD54A2813B464DF4A25F896857_StaticFields { public: // System.Threading.Tasks.TaskFactory`1 System.Threading.Tasks.Task`1::s_Factory TaskFactory_1_t1B64F65F924FFCC928A668B5EF32DEE31478691B * ___s_Factory_41; // System.Func`2,System.Threading.Tasks.Task`1> System.Threading.Tasks.Task`1::TaskWhenAnyCast Func_2_t83231D2AB79D8A20265500D02AEA10F0531EF5CC * ___TaskWhenAnyCast_42; public: inline static int32_t get_offset_of_s_Factory_41() { return static_cast(offsetof(Task_1_t4B8CF50BCA70ADAD54A2813B464DF4A25F896857_StaticFields, ___s_Factory_41)); } inline TaskFactory_1_t1B64F65F924FFCC928A668B5EF32DEE31478691B * get_s_Factory_41() const { return ___s_Factory_41; } inline TaskFactory_1_t1B64F65F924FFCC928A668B5EF32DEE31478691B ** get_address_of_s_Factory_41() { return &___s_Factory_41; } inline void set_s_Factory_41(TaskFactory_1_t1B64F65F924FFCC928A668B5EF32DEE31478691B * value) { ___s_Factory_41 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Factory_41), (void*)value); } inline static int32_t get_offset_of_TaskWhenAnyCast_42() { return static_cast(offsetof(Task_1_t4B8CF50BCA70ADAD54A2813B464DF4A25F896857_StaticFields, ___TaskWhenAnyCast_42)); } inline Func_2_t83231D2AB79D8A20265500D02AEA10F0531EF5CC * get_TaskWhenAnyCast_42() const { return ___TaskWhenAnyCast_42; } inline Func_2_t83231D2AB79D8A20265500D02AEA10F0531EF5CC ** get_address_of_TaskWhenAnyCast_42() { return &___TaskWhenAnyCast_42; } inline void set_TaskWhenAnyCast_42(Func_2_t83231D2AB79D8A20265500D02AEA10F0531EF5CC * value) { ___TaskWhenAnyCast_42 = value; Il2CppCodeGenWriteBarrier((void**)(&___TaskWhenAnyCast_42), (void*)value); } }; // System.Threading.Tasks.Task`1 struct Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 : public Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 { public: // TResult System.Threading.Tasks.Task`1::m_result int32_t ___m_result_40; public: inline static int32_t get_offset_of_m_result_40() { return static_cast(offsetof(Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725, ___m_result_40)); } inline int32_t get_m_result_40() const { return ___m_result_40; } inline int32_t* get_address_of_m_result_40() { return &___m_result_40; } inline void set_m_result_40(int32_t value) { ___m_result_40 = value; } }; struct Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725_StaticFields { public: // System.Threading.Tasks.TaskFactory`1 System.Threading.Tasks.Task`1::s_Factory TaskFactory_1_tCA6286B86C0D5D6C00D5A0DFE56F7E48A482DD5E * ___s_Factory_41; // System.Func`2,System.Threading.Tasks.Task`1> System.Threading.Tasks.Task`1::TaskWhenAnyCast Func_2_t53CFE8804C8D1C2FE8CC9204CF5DA5B98EC444D0 * ___TaskWhenAnyCast_42; public: inline static int32_t get_offset_of_s_Factory_41() { return static_cast(offsetof(Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725_StaticFields, ___s_Factory_41)); } inline TaskFactory_1_tCA6286B86C0D5D6C00D5A0DFE56F7E48A482DD5E * get_s_Factory_41() const { return ___s_Factory_41; } inline TaskFactory_1_tCA6286B86C0D5D6C00D5A0DFE56F7E48A482DD5E ** get_address_of_s_Factory_41() { return &___s_Factory_41; } inline void set_s_Factory_41(TaskFactory_1_tCA6286B86C0D5D6C00D5A0DFE56F7E48A482DD5E * value) { ___s_Factory_41 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Factory_41), (void*)value); } inline static int32_t get_offset_of_TaskWhenAnyCast_42() { return static_cast(offsetof(Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725_StaticFields, ___TaskWhenAnyCast_42)); } inline Func_2_t53CFE8804C8D1C2FE8CC9204CF5DA5B98EC444D0 * get_TaskWhenAnyCast_42() const { return ___TaskWhenAnyCast_42; } inline Func_2_t53CFE8804C8D1C2FE8CC9204CF5DA5B98EC444D0 ** get_address_of_TaskWhenAnyCast_42() { return &___TaskWhenAnyCast_42; } inline void set_TaskWhenAnyCast_42(Func_2_t53CFE8804C8D1C2FE8CC9204CF5DA5B98EC444D0 * value) { ___TaskWhenAnyCast_42 = value; Il2CppCodeGenWriteBarrier((void**)(&___TaskWhenAnyCast_42), (void*)value); } }; // System.Threading.Tasks.Task`1 struct Task_1_t2A3672CB79B7A66967AEB67A7CCF5EA583D25765 : public Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 { public: // TResult System.Threading.Tasks.Task`1::m_result WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * ___m_result_40; public: inline static int32_t get_offset_of_m_result_40() { return static_cast(offsetof(Task_1_t2A3672CB79B7A66967AEB67A7CCF5EA583D25765, ___m_result_40)); } inline WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * get_m_result_40() const { return ___m_result_40; } inline WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 ** get_address_of_m_result_40() { return &___m_result_40; } inline void set_m_result_40(WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * value) { ___m_result_40 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_result_40), (void*)value); } }; struct Task_1_t2A3672CB79B7A66967AEB67A7CCF5EA583D25765_StaticFields { public: // System.Threading.Tasks.TaskFactory`1 System.Threading.Tasks.Task`1::s_Factory TaskFactory_1_t59C1EE1FD5B07F2BEBFFB103A93A760D61A39406 * ___s_Factory_41; // System.Func`2,System.Threading.Tasks.Task`1> System.Threading.Tasks.Task`1::TaskWhenAnyCast Func_2_t2C94CFD55C2E528DE57128CD2A37F45F9E914E5C * ___TaskWhenAnyCast_42; public: inline static int32_t get_offset_of_s_Factory_41() { return static_cast(offsetof(Task_1_t2A3672CB79B7A66967AEB67A7CCF5EA583D25765_StaticFields, ___s_Factory_41)); } inline TaskFactory_1_t59C1EE1FD5B07F2BEBFFB103A93A760D61A39406 * get_s_Factory_41() const { return ___s_Factory_41; } inline TaskFactory_1_t59C1EE1FD5B07F2BEBFFB103A93A760D61A39406 ** get_address_of_s_Factory_41() { return &___s_Factory_41; } inline void set_s_Factory_41(TaskFactory_1_t59C1EE1FD5B07F2BEBFFB103A93A760D61A39406 * value) { ___s_Factory_41 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Factory_41), (void*)value); } inline static int32_t get_offset_of_TaskWhenAnyCast_42() { return static_cast(offsetof(Task_1_t2A3672CB79B7A66967AEB67A7CCF5EA583D25765_StaticFields, ___TaskWhenAnyCast_42)); } inline Func_2_t2C94CFD55C2E528DE57128CD2A37F45F9E914E5C * get_TaskWhenAnyCast_42() const { return ___TaskWhenAnyCast_42; } inline Func_2_t2C94CFD55C2E528DE57128CD2A37F45F9E914E5C ** get_address_of_TaskWhenAnyCast_42() { return &___TaskWhenAnyCast_42; } inline void set_TaskWhenAnyCast_42(Func_2_t2C94CFD55C2E528DE57128CD2A37F45F9E914E5C * value) { ___TaskWhenAnyCast_42 = value; Il2CppCodeGenWriteBarrier((void**)(&___TaskWhenAnyCast_42), (void*)value); } }; // System.AggregateException struct AggregateException_t45A871D3DBDA3E28FBCD8DF21F6772238FC55BD1 : public Exception_t { public: // System.Collections.ObjectModel.ReadOnlyCollection`1 System.AggregateException::m_innerExceptions ReadOnlyCollection_1_t06CAAF5787D8FDE0CB0F04082673EC9B212451BE * ___m_innerExceptions_17; public: inline static int32_t get_offset_of_m_innerExceptions_17() { return static_cast(offsetof(AggregateException_t45A871D3DBDA3E28FBCD8DF21F6772238FC55BD1, ___m_innerExceptions_17)); } inline ReadOnlyCollection_1_t06CAAF5787D8FDE0CB0F04082673EC9B212451BE * get_m_innerExceptions_17() const { return ___m_innerExceptions_17; } inline ReadOnlyCollection_1_t06CAAF5787D8FDE0CB0F04082673EC9B212451BE ** get_address_of_m_innerExceptions_17() { return &___m_innerExceptions_17; } inline void set_m_innerExceptions_17(ReadOnlyCollection_1_t06CAAF5787D8FDE0CB0F04082673EC9B212451BE * value) { ___m_innerExceptions_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_innerExceptions_17), (void*)value); } }; // System.ApplicationException struct ApplicationException_t8D709C0445A040467C6A632AD7F742B25AB2A407 : public Exception_t { public: public: }; // System.Reflection.AssemblyName struct AssemblyName_t066E458E26373ECD644F79643E9D4483212C9824 : public RuntimeObject { public: // System.String System.Reflection.AssemblyName::name String_t* ___name_0; // System.String System.Reflection.AssemblyName::codebase String_t* ___codebase_1; // System.Int32 System.Reflection.AssemblyName::major int32_t ___major_2; // System.Int32 System.Reflection.AssemblyName::minor int32_t ___minor_3; // System.Int32 System.Reflection.AssemblyName::build int32_t ___build_4; // System.Int32 System.Reflection.AssemblyName::revision int32_t ___revision_5; // System.Globalization.CultureInfo System.Reflection.AssemblyName::cultureinfo CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___cultureinfo_6; // System.Reflection.AssemblyNameFlags System.Reflection.AssemblyName::flags int32_t ___flags_7; // System.Configuration.Assemblies.AssemblyHashAlgorithm System.Reflection.AssemblyName::hashalg int32_t ___hashalg_8; // System.Reflection.StrongNameKeyPair System.Reflection.AssemblyName::keypair StrongNameKeyPair_tCA4C0AB8B98C6C03134BC8AB17DD4C76D8091FDF * ___keypair_9; // System.Byte[] System.Reflection.AssemblyName::publicKey ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___publicKey_10; // System.Byte[] System.Reflection.AssemblyName::keyToken ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___keyToken_11; // System.Configuration.Assemblies.AssemblyVersionCompatibility System.Reflection.AssemblyName::versioncompat int32_t ___versioncompat_12; // System.Version System.Reflection.AssemblyName::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_13; // System.Reflection.ProcessorArchitecture System.Reflection.AssemblyName::processor_architecture int32_t ___processor_architecture_14; // System.Reflection.AssemblyContentType System.Reflection.AssemblyName::contentType int32_t ___contentType_15; public: inline static int32_t get_offset_of_name_0() { return static_cast(offsetof(AssemblyName_t066E458E26373ECD644F79643E9D4483212C9824, ___name_0)); } inline String_t* get_name_0() const { return ___name_0; } inline String_t** get_address_of_name_0() { return &___name_0; } inline void set_name_0(String_t* value) { ___name_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value); } inline static int32_t get_offset_of_codebase_1() { return static_cast(offsetof(AssemblyName_t066E458E26373ECD644F79643E9D4483212C9824, ___codebase_1)); } inline String_t* get_codebase_1() const { return ___codebase_1; } inline String_t** get_address_of_codebase_1() { return &___codebase_1; } inline void set_codebase_1(String_t* value) { ___codebase_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___codebase_1), (void*)value); } inline static int32_t get_offset_of_major_2() { return static_cast(offsetof(AssemblyName_t066E458E26373ECD644F79643E9D4483212C9824, ___major_2)); } inline int32_t get_major_2() const { return ___major_2; } inline int32_t* get_address_of_major_2() { return &___major_2; } inline void set_major_2(int32_t value) { ___major_2 = value; } inline static int32_t get_offset_of_minor_3() { return static_cast(offsetof(AssemblyName_t066E458E26373ECD644F79643E9D4483212C9824, ___minor_3)); } inline int32_t get_minor_3() const { return ___minor_3; } inline int32_t* get_address_of_minor_3() { return &___minor_3; } inline void set_minor_3(int32_t value) { ___minor_3 = value; } inline static int32_t get_offset_of_build_4() { return static_cast(offsetof(AssemblyName_t066E458E26373ECD644F79643E9D4483212C9824, ___build_4)); } inline int32_t get_build_4() const { return ___build_4; } inline int32_t* get_address_of_build_4() { return &___build_4; } inline void set_build_4(int32_t value) { ___build_4 = value; } inline static int32_t get_offset_of_revision_5() { return static_cast(offsetof(AssemblyName_t066E458E26373ECD644F79643E9D4483212C9824, ___revision_5)); } inline int32_t get_revision_5() const { return ___revision_5; } inline int32_t* get_address_of_revision_5() { return &___revision_5; } inline void set_revision_5(int32_t value) { ___revision_5 = value; } inline static int32_t get_offset_of_cultureinfo_6() { return static_cast(offsetof(AssemblyName_t066E458E26373ECD644F79643E9D4483212C9824, ___cultureinfo_6)); } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_cultureinfo_6() const { return ___cultureinfo_6; } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_cultureinfo_6() { return &___cultureinfo_6; } inline void set_cultureinfo_6(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value) { ___cultureinfo_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___cultureinfo_6), (void*)value); } inline static int32_t get_offset_of_flags_7() { return static_cast(offsetof(AssemblyName_t066E458E26373ECD644F79643E9D4483212C9824, ___flags_7)); } inline int32_t get_flags_7() const { return ___flags_7; } inline int32_t* get_address_of_flags_7() { return &___flags_7; } inline void set_flags_7(int32_t value) { ___flags_7 = value; } inline static int32_t get_offset_of_hashalg_8() { return static_cast(offsetof(AssemblyName_t066E458E26373ECD644F79643E9D4483212C9824, ___hashalg_8)); } inline int32_t get_hashalg_8() const { return ___hashalg_8; } inline int32_t* get_address_of_hashalg_8() { return &___hashalg_8; } inline void set_hashalg_8(int32_t value) { ___hashalg_8 = value; } inline static int32_t get_offset_of_keypair_9() { return static_cast(offsetof(AssemblyName_t066E458E26373ECD644F79643E9D4483212C9824, ___keypair_9)); } inline StrongNameKeyPair_tCA4C0AB8B98C6C03134BC8AB17DD4C76D8091FDF * get_keypair_9() const { return ___keypair_9; } inline StrongNameKeyPair_tCA4C0AB8B98C6C03134BC8AB17DD4C76D8091FDF ** get_address_of_keypair_9() { return &___keypair_9; } inline void set_keypair_9(StrongNameKeyPair_tCA4C0AB8B98C6C03134BC8AB17DD4C76D8091FDF * value) { ___keypair_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___keypair_9), (void*)value); } inline static int32_t get_offset_of_publicKey_10() { return static_cast(offsetof(AssemblyName_t066E458E26373ECD644F79643E9D4483212C9824, ___publicKey_10)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_publicKey_10() const { return ___publicKey_10; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_publicKey_10() { return &___publicKey_10; } inline void set_publicKey_10(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___publicKey_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___publicKey_10), (void*)value); } inline static int32_t get_offset_of_keyToken_11() { return static_cast(offsetof(AssemblyName_t066E458E26373ECD644F79643E9D4483212C9824, ___keyToken_11)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_keyToken_11() const { return ___keyToken_11; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_keyToken_11() { return &___keyToken_11; } inline void set_keyToken_11(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___keyToken_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyToken_11), (void*)value); } inline static int32_t get_offset_of_versioncompat_12() { return static_cast(offsetof(AssemblyName_t066E458E26373ECD644F79643E9D4483212C9824, ___versioncompat_12)); } inline int32_t get_versioncompat_12() const { return ___versioncompat_12; } inline int32_t* get_address_of_versioncompat_12() { return &___versioncompat_12; } inline void set_versioncompat_12(int32_t value) { ___versioncompat_12 = value; } inline static int32_t get_offset_of_version_13() { return static_cast(offsetof(AssemblyName_t066E458E26373ECD644F79643E9D4483212C9824, ___version_13)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_13() const { return ___version_13; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_13() { return &___version_13; } inline void set_version_13(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_13), (void*)value); } inline static int32_t get_offset_of_processor_architecture_14() { return static_cast(offsetof(AssemblyName_t066E458E26373ECD644F79643E9D4483212C9824, ___processor_architecture_14)); } inline int32_t get_processor_architecture_14() const { return ___processor_architecture_14; } inline int32_t* get_address_of_processor_architecture_14() { return &___processor_architecture_14; } inline void set_processor_architecture_14(int32_t value) { ___processor_architecture_14 = value; } inline static int32_t get_offset_of_contentType_15() { return static_cast(offsetof(AssemblyName_t066E458E26373ECD644F79643E9D4483212C9824, ___contentType_15)); } inline int32_t get_contentType_15() const { return ___contentType_15; } inline int32_t* get_address_of_contentType_15() { return &___contentType_15; } inline void set_contentType_15(int32_t value) { ___contentType_15 = value; } }; // Native definition for P/Invoke marshalling of System.Reflection.AssemblyName struct AssemblyName_t066E458E26373ECD644F79643E9D4483212C9824_marshaled_pinvoke { char* ___name_0; char* ___codebase_1; int32_t ___major_2; int32_t ___minor_3; int32_t ___build_4; int32_t ___revision_5; CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_pinvoke* ___cultureinfo_6; int32_t ___flags_7; int32_t ___hashalg_8; StrongNameKeyPair_tCA4C0AB8B98C6C03134BC8AB17DD4C76D8091FDF * ___keypair_9; Il2CppSafeArray/*NONE*/* ___publicKey_10; Il2CppSafeArray/*NONE*/* ___keyToken_11; int32_t ___versioncompat_12; Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_13; int32_t ___processor_architecture_14; int32_t ___contentType_15; }; // Native definition for COM marshalling of System.Reflection.AssemblyName struct AssemblyName_t066E458E26373ECD644F79643E9D4483212C9824_marshaled_com { Il2CppChar* ___name_0; Il2CppChar* ___codebase_1; int32_t ___major_2; int32_t ___minor_3; int32_t ___build_4; int32_t ___revision_5; CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_com* ___cultureinfo_6; int32_t ___flags_7; int32_t ___hashalg_8; StrongNameKeyPair_tCA4C0AB8B98C6C03134BC8AB17DD4C76D8091FDF * ___keypair_9; Il2CppSafeArray/*NONE*/* ___publicKey_10; Il2CppSafeArray/*NONE*/* ___keyToken_11; int32_t ___versioncompat_12; Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_13; int32_t ___processor_architecture_14; int32_t ___contentType_15; }; // System.ComponentModel.BaseNumberConverter struct BaseNumberConverter_t6CA2001CE79249FCF74FC888710AAD5CA23B748C : public TypeConverter_t004F185B630F00F509F08BD8F8D82471867323B4 { public: public: }; // System.Globalization.CompareInfo struct CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 : public RuntimeObject { public: // System.String System.Globalization.CompareInfo::m_name String_t* ___m_name_3; // System.String System.Globalization.CompareInfo::m_sortName String_t* ___m_sortName_4; // System.Int32 System.Globalization.CompareInfo::win32LCID int32_t ___win32LCID_5; // System.Int32 System.Globalization.CompareInfo::culture int32_t ___culture_6; // System.Globalization.SortVersion System.Globalization.CompareInfo::m_SortVersion SortVersion_t4500287E608FE7BBAB01A3AB0F1073F772EF62AA * ___m_SortVersion_20; // Mono.Globalization.Unicode.SimpleCollator System.Globalization.CompareInfo::collator SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 * ___collator_21; public: inline static int32_t get_offset_of_m_name_3() { return static_cast(offsetof(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9, ___m_name_3)); } inline String_t* get_m_name_3() const { return ___m_name_3; } inline String_t** get_address_of_m_name_3() { return &___m_name_3; } inline void set_m_name_3(String_t* value) { ___m_name_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_name_3), (void*)value); } inline static int32_t get_offset_of_m_sortName_4() { return static_cast(offsetof(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9, ___m_sortName_4)); } inline String_t* get_m_sortName_4() const { return ___m_sortName_4; } inline String_t** get_address_of_m_sortName_4() { return &___m_sortName_4; } inline void set_m_sortName_4(String_t* value) { ___m_sortName_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_sortName_4), (void*)value); } inline static int32_t get_offset_of_win32LCID_5() { return static_cast(offsetof(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9, ___win32LCID_5)); } inline int32_t get_win32LCID_5() const { return ___win32LCID_5; } inline int32_t* get_address_of_win32LCID_5() { return &___win32LCID_5; } inline void set_win32LCID_5(int32_t value) { ___win32LCID_5 = value; } inline static int32_t get_offset_of_culture_6() { return static_cast(offsetof(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9, ___culture_6)); } inline int32_t get_culture_6() const { return ___culture_6; } inline int32_t* get_address_of_culture_6() { return &___culture_6; } inline void set_culture_6(int32_t value) { ___culture_6 = value; } inline static int32_t get_offset_of_m_SortVersion_20() { return static_cast(offsetof(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9, ___m_SortVersion_20)); } inline SortVersion_t4500287E608FE7BBAB01A3AB0F1073F772EF62AA * get_m_SortVersion_20() const { return ___m_SortVersion_20; } inline SortVersion_t4500287E608FE7BBAB01A3AB0F1073F772EF62AA ** get_address_of_m_SortVersion_20() { return &___m_SortVersion_20; } inline void set_m_SortVersion_20(SortVersion_t4500287E608FE7BBAB01A3AB0F1073F772EF62AA * value) { ___m_SortVersion_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_SortVersion_20), (void*)value); } inline static int32_t get_offset_of_collator_21() { return static_cast(offsetof(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9, ___collator_21)); } inline SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 * get_collator_21() const { return ___collator_21; } inline SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 ** get_address_of_collator_21() { return &___collator_21; } inline void set_collator_21(SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 * value) { ___collator_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___collator_21), (void*)value); } }; struct CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9_StaticFields { public: // System.Collections.Generic.Dictionary`2 System.Globalization.CompareInfo::collators Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB * ___collators_22; // System.Boolean System.Globalization.CompareInfo::managedCollation bool ___managedCollation_23; // System.Boolean System.Globalization.CompareInfo::managedCollationChecked bool ___managedCollationChecked_24; public: inline static int32_t get_offset_of_collators_22() { return static_cast(offsetof(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9_StaticFields, ___collators_22)); } inline Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB * get_collators_22() const { return ___collators_22; } inline Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB ** get_address_of_collators_22() { return &___collators_22; } inline void set_collators_22(Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB * value) { ___collators_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___collators_22), (void*)value); } inline static int32_t get_offset_of_managedCollation_23() { return static_cast(offsetof(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9_StaticFields, ___managedCollation_23)); } inline bool get_managedCollation_23() const { return ___managedCollation_23; } inline bool* get_address_of_managedCollation_23() { return &___managedCollation_23; } inline void set_managedCollation_23(bool value) { ___managedCollation_23 = value; } inline static int32_t get_offset_of_managedCollationChecked_24() { return static_cast(offsetof(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9_StaticFields, ___managedCollationChecked_24)); } inline bool get_managedCollationChecked_24() const { return ___managedCollationChecked_24; } inline bool* get_address_of_managedCollationChecked_24() { return &___managedCollationChecked_24; } inline void set_managedCollationChecked_24(bool value) { ___managedCollationChecked_24 = value; } }; // System.IO.Compression.DeflateStream struct DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5 : public Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB { public: // System.IO.Stream System.IO.Compression.DeflateStream::base_stream Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___base_stream_5; // System.IO.Compression.CompressionMode System.IO.Compression.DeflateStream::mode int32_t ___mode_6; // System.Boolean System.IO.Compression.DeflateStream::leaveOpen bool ___leaveOpen_7; // System.Boolean System.IO.Compression.DeflateStream::disposed bool ___disposed_8; // System.IO.Compression.DeflateStreamNative System.IO.Compression.DeflateStream::native DeflateStreamNative_tD3009C913258B881B44A87BC6A99C7118558A879 * ___native_9; public: inline static int32_t get_offset_of_base_stream_5() { return static_cast(offsetof(DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5, ___base_stream_5)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_base_stream_5() const { return ___base_stream_5; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_base_stream_5() { return &___base_stream_5; } inline void set_base_stream_5(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___base_stream_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___base_stream_5), (void*)value); } inline static int32_t get_offset_of_mode_6() { return static_cast(offsetof(DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5, ___mode_6)); } inline int32_t get_mode_6() const { return ___mode_6; } inline int32_t* get_address_of_mode_6() { return &___mode_6; } inline void set_mode_6(int32_t value) { ___mode_6 = value; } inline static int32_t get_offset_of_leaveOpen_7() { return static_cast(offsetof(DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5, ___leaveOpen_7)); } inline bool get_leaveOpen_7() const { return ___leaveOpen_7; } inline bool* get_address_of_leaveOpen_7() { return &___leaveOpen_7; } inline void set_leaveOpen_7(bool value) { ___leaveOpen_7 = value; } inline static int32_t get_offset_of_disposed_8() { return static_cast(offsetof(DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5, ___disposed_8)); } inline bool get_disposed_8() const { return ___disposed_8; } inline bool* get_address_of_disposed_8() { return &___disposed_8; } inline void set_disposed_8(bool value) { ___disposed_8 = value; } inline static int32_t get_offset_of_native_9() { return static_cast(offsetof(DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5, ___native_9)); } inline DeflateStreamNative_tD3009C913258B881B44A87BC6A99C7118558A879 * get_native_9() const { return ___native_9; } inline DeflateStreamNative_tD3009C913258B881B44A87BC6A99C7118558A879 ** get_address_of_native_9() { return &___native_9; } inline void set_native_9(DeflateStreamNative_tD3009C913258B881B44A87BC6A99C7118558A879 * value) { ___native_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___native_9), (void*)value); } }; // System.Threading.EventWaitHandle struct EventWaitHandle_t80CDEB33529EF7549E7D3E3B689D8272B9F37F3C : public WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842 { public: public: }; // System.IO.FileStream struct FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26 : public Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB { public: // System.Byte[] System.IO.FileStream::buf ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buf_7; // System.String System.IO.FileStream::name String_t* ___name_8; // Microsoft.Win32.SafeHandles.SafeFileHandle System.IO.FileStream::safeHandle SafeFileHandle_tC77A9860A03C31DC46AD2C08EC10EACDC3B7A662 * ___safeHandle_9; // System.Boolean System.IO.FileStream::isExposed bool ___isExposed_10; // System.Int64 System.IO.FileStream::append_startpos int64_t ___append_startpos_11; // System.IO.FileAccess System.IO.FileStream::access int32_t ___access_12; // System.Boolean System.IO.FileStream::owner bool ___owner_13; // System.Boolean System.IO.FileStream::async bool ___async_14; // System.Boolean System.IO.FileStream::canseek bool ___canseek_15; // System.Boolean System.IO.FileStream::anonymous bool ___anonymous_16; // System.Boolean System.IO.FileStream::buf_dirty bool ___buf_dirty_17; // System.Int32 System.IO.FileStream::buf_size int32_t ___buf_size_18; // System.Int32 System.IO.FileStream::buf_length int32_t ___buf_length_19; // System.Int32 System.IO.FileStream::buf_offset int32_t ___buf_offset_20; // System.Int64 System.IO.FileStream::buf_start int64_t ___buf_start_21; public: inline static int32_t get_offset_of_buf_7() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___buf_7)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_buf_7() const { return ___buf_7; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_buf_7() { return &___buf_7; } inline void set_buf_7(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___buf_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___buf_7), (void*)value); } inline static int32_t get_offset_of_name_8() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___name_8)); } inline String_t* get_name_8() const { return ___name_8; } inline String_t** get_address_of_name_8() { return &___name_8; } inline void set_name_8(String_t* value) { ___name_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_8), (void*)value); } inline static int32_t get_offset_of_safeHandle_9() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___safeHandle_9)); } inline SafeFileHandle_tC77A9860A03C31DC46AD2C08EC10EACDC3B7A662 * get_safeHandle_9() const { return ___safeHandle_9; } inline SafeFileHandle_tC77A9860A03C31DC46AD2C08EC10EACDC3B7A662 ** get_address_of_safeHandle_9() { return &___safeHandle_9; } inline void set_safeHandle_9(SafeFileHandle_tC77A9860A03C31DC46AD2C08EC10EACDC3B7A662 * value) { ___safeHandle_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___safeHandle_9), (void*)value); } inline static int32_t get_offset_of_isExposed_10() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___isExposed_10)); } inline bool get_isExposed_10() const { return ___isExposed_10; } inline bool* get_address_of_isExposed_10() { return &___isExposed_10; } inline void set_isExposed_10(bool value) { ___isExposed_10 = value; } inline static int32_t get_offset_of_append_startpos_11() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___append_startpos_11)); } inline int64_t get_append_startpos_11() const { return ___append_startpos_11; } inline int64_t* get_address_of_append_startpos_11() { return &___append_startpos_11; } inline void set_append_startpos_11(int64_t value) { ___append_startpos_11 = value; } inline static int32_t get_offset_of_access_12() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___access_12)); } inline int32_t get_access_12() const { return ___access_12; } inline int32_t* get_address_of_access_12() { return &___access_12; } inline void set_access_12(int32_t value) { ___access_12 = value; } inline static int32_t get_offset_of_owner_13() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___owner_13)); } inline bool get_owner_13() const { return ___owner_13; } inline bool* get_address_of_owner_13() { return &___owner_13; } inline void set_owner_13(bool value) { ___owner_13 = value; } inline static int32_t get_offset_of_async_14() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___async_14)); } inline bool get_async_14() const { return ___async_14; } inline bool* get_address_of_async_14() { return &___async_14; } inline void set_async_14(bool value) { ___async_14 = value; } inline static int32_t get_offset_of_canseek_15() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___canseek_15)); } inline bool get_canseek_15() const { return ___canseek_15; } inline bool* get_address_of_canseek_15() { return &___canseek_15; } inline void set_canseek_15(bool value) { ___canseek_15 = value; } inline static int32_t get_offset_of_anonymous_16() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___anonymous_16)); } inline bool get_anonymous_16() const { return ___anonymous_16; } inline bool* get_address_of_anonymous_16() { return &___anonymous_16; } inline void set_anonymous_16(bool value) { ___anonymous_16 = value; } inline static int32_t get_offset_of_buf_dirty_17() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___buf_dirty_17)); } inline bool get_buf_dirty_17() const { return ___buf_dirty_17; } inline bool* get_address_of_buf_dirty_17() { return &___buf_dirty_17; } inline void set_buf_dirty_17(bool value) { ___buf_dirty_17 = value; } inline static int32_t get_offset_of_buf_size_18() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___buf_size_18)); } inline int32_t get_buf_size_18() const { return ___buf_size_18; } inline int32_t* get_address_of_buf_size_18() { return &___buf_size_18; } inline void set_buf_size_18(int32_t value) { ___buf_size_18 = value; } inline static int32_t get_offset_of_buf_length_19() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___buf_length_19)); } inline int32_t get_buf_length_19() const { return ___buf_length_19; } inline int32_t* get_address_of_buf_length_19() { return &___buf_length_19; } inline void set_buf_length_19(int32_t value) { ___buf_length_19 = value; } inline static int32_t get_offset_of_buf_offset_20() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___buf_offset_20)); } inline int32_t get_buf_offset_20() const { return ___buf_offset_20; } inline int32_t* get_address_of_buf_offset_20() { return &___buf_offset_20; } inline void set_buf_offset_20(int32_t value) { ___buf_offset_20 = value; } inline static int32_t get_offset_of_buf_start_21() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___buf_start_21)); } inline int64_t get_buf_start_21() const { return ___buf_start_21; } inline int64_t* get_address_of_buf_start_21() { return &___buf_start_21; } inline void set_buf_start_21(int64_t value) { ___buf_start_21 = value; } }; struct FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26_StaticFields { public: // System.Byte[] System.IO.FileStream::buf_recycle ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buf_recycle_5; // System.Object System.IO.FileStream::buf_recycle_lock RuntimeObject * ___buf_recycle_lock_6; public: inline static int32_t get_offset_of_buf_recycle_5() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26_StaticFields, ___buf_recycle_5)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_buf_recycle_5() const { return ___buf_recycle_5; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_buf_recycle_5() { return &___buf_recycle_5; } inline void set_buf_recycle_5(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___buf_recycle_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___buf_recycle_5), (void*)value); } inline static int32_t get_offset_of_buf_recycle_lock_6() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26_StaticFields, ___buf_recycle_lock_6)); } inline RuntimeObject * get_buf_recycle_lock_6() const { return ___buf_recycle_lock_6; } inline RuntimeObject ** get_address_of_buf_recycle_lock_6() { return &___buf_recycle_lock_6; } inline void set_buf_recycle_lock_6(RuntimeObject * value) { ___buf_recycle_lock_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___buf_recycle_lock_6), (void*)value); } }; // System.Net.FtpStatus struct FtpStatus_t40908570BA05748EFCA5F4B12F77356A42A40837 : public RuntimeObject { public: // System.Net.FtpStatusCode System.Net.FtpStatus::statusCode int32_t ___statusCode_0; // System.String System.Net.FtpStatus::statusDescription String_t* ___statusDescription_1; public: inline static int32_t get_offset_of_statusCode_0() { return static_cast(offsetof(FtpStatus_t40908570BA05748EFCA5F4B12F77356A42A40837, ___statusCode_0)); } inline int32_t get_statusCode_0() const { return ___statusCode_0; } inline int32_t* get_address_of_statusCode_0() { return &___statusCode_0; } inline void set_statusCode_0(int32_t value) { ___statusCode_0 = value; } inline static int32_t get_offset_of_statusDescription_1() { return static_cast(offsetof(FtpStatus_t40908570BA05748EFCA5F4B12F77356A42A40837, ___statusDescription_1)); } inline String_t* get_statusDescription_1() const { return ___statusDescription_1; } inline String_t** get_address_of_statusDescription_1() { return &___statusDescription_1; } inline void set_statusDescription_1(String_t* value) { ___statusDescription_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___statusDescription_1), (void*)value); } }; // System.Net.FtpWebResponse struct FtpWebResponse_t4462ADF9C14124B97DC10705932A9234DACEED49 : public WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 { public: // System.IO.Stream System.Net.FtpWebResponse::stream Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream_1; // System.Uri System.Net.FtpWebResponse::uri Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri_2; // System.Net.FtpStatusCode System.Net.FtpWebResponse::statusCode int32_t ___statusCode_3; // System.DateTime System.Net.FtpWebResponse::lastModified DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___lastModified_4; // System.String System.Net.FtpWebResponse::bannerMessage String_t* ___bannerMessage_5; // System.String System.Net.FtpWebResponse::welcomeMessage String_t* ___welcomeMessage_6; // System.String System.Net.FtpWebResponse::exitMessage String_t* ___exitMessage_7; // System.String System.Net.FtpWebResponse::statusDescription String_t* ___statusDescription_8; // System.String System.Net.FtpWebResponse::method String_t* ___method_9; // System.Boolean System.Net.FtpWebResponse::disposed bool ___disposed_10; // System.Net.FtpWebRequest System.Net.FtpWebResponse::request FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D * ___request_11; // System.Int64 System.Net.FtpWebResponse::contentLength int64_t ___contentLength_12; public: inline static int32_t get_offset_of_stream_1() { return static_cast(offsetof(FtpWebResponse_t4462ADF9C14124B97DC10705932A9234DACEED49, ___stream_1)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_stream_1() const { return ___stream_1; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_stream_1() { return &___stream_1; } inline void set_stream_1(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___stream_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___stream_1), (void*)value); } inline static int32_t get_offset_of_uri_2() { return static_cast(offsetof(FtpWebResponse_t4462ADF9C14124B97DC10705932A9234DACEED49, ___uri_2)); } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * get_uri_2() const { return ___uri_2; } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** get_address_of_uri_2() { return &___uri_2; } inline void set_uri_2(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * value) { ___uri_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___uri_2), (void*)value); } inline static int32_t get_offset_of_statusCode_3() { return static_cast(offsetof(FtpWebResponse_t4462ADF9C14124B97DC10705932A9234DACEED49, ___statusCode_3)); } inline int32_t get_statusCode_3() const { return ___statusCode_3; } inline int32_t* get_address_of_statusCode_3() { return &___statusCode_3; } inline void set_statusCode_3(int32_t value) { ___statusCode_3 = value; } inline static int32_t get_offset_of_lastModified_4() { return static_cast(offsetof(FtpWebResponse_t4462ADF9C14124B97DC10705932A9234DACEED49, ___lastModified_4)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_lastModified_4() const { return ___lastModified_4; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_lastModified_4() { return &___lastModified_4; } inline void set_lastModified_4(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___lastModified_4 = value; } inline static int32_t get_offset_of_bannerMessage_5() { return static_cast(offsetof(FtpWebResponse_t4462ADF9C14124B97DC10705932A9234DACEED49, ___bannerMessage_5)); } inline String_t* get_bannerMessage_5() const { return ___bannerMessage_5; } inline String_t** get_address_of_bannerMessage_5() { return &___bannerMessage_5; } inline void set_bannerMessage_5(String_t* value) { ___bannerMessage_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___bannerMessage_5), (void*)value); } inline static int32_t get_offset_of_welcomeMessage_6() { return static_cast(offsetof(FtpWebResponse_t4462ADF9C14124B97DC10705932A9234DACEED49, ___welcomeMessage_6)); } inline String_t* get_welcomeMessage_6() const { return ___welcomeMessage_6; } inline String_t** get_address_of_welcomeMessage_6() { return &___welcomeMessage_6; } inline void set_welcomeMessage_6(String_t* value) { ___welcomeMessage_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___welcomeMessage_6), (void*)value); } inline static int32_t get_offset_of_exitMessage_7() { return static_cast(offsetof(FtpWebResponse_t4462ADF9C14124B97DC10705932A9234DACEED49, ___exitMessage_7)); } inline String_t* get_exitMessage_7() const { return ___exitMessage_7; } inline String_t** get_address_of_exitMessage_7() { return &___exitMessage_7; } inline void set_exitMessage_7(String_t* value) { ___exitMessage_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___exitMessage_7), (void*)value); } inline static int32_t get_offset_of_statusDescription_8() { return static_cast(offsetof(FtpWebResponse_t4462ADF9C14124B97DC10705932A9234DACEED49, ___statusDescription_8)); } inline String_t* get_statusDescription_8() const { return ___statusDescription_8; } inline String_t** get_address_of_statusDescription_8() { return &___statusDescription_8; } inline void set_statusDescription_8(String_t* value) { ___statusDescription_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___statusDescription_8), (void*)value); } inline static int32_t get_offset_of_method_9() { return static_cast(offsetof(FtpWebResponse_t4462ADF9C14124B97DC10705932A9234DACEED49, ___method_9)); } inline String_t* get_method_9() const { return ___method_9; } inline String_t** get_address_of_method_9() { return &___method_9; } inline void set_method_9(String_t* value) { ___method_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___method_9), (void*)value); } inline static int32_t get_offset_of_disposed_10() { return static_cast(offsetof(FtpWebResponse_t4462ADF9C14124B97DC10705932A9234DACEED49, ___disposed_10)); } inline bool get_disposed_10() const { return ___disposed_10; } inline bool* get_address_of_disposed_10() { return &___disposed_10; } inline void set_disposed_10(bool value) { ___disposed_10 = value; } inline static int32_t get_offset_of_request_11() { return static_cast(offsetof(FtpWebResponse_t4462ADF9C14124B97DC10705932A9234DACEED49, ___request_11)); } inline FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D * get_request_11() const { return ___request_11; } inline FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D ** get_address_of_request_11() { return &___request_11; } inline void set_request_11(FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D * value) { ___request_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___request_11), (void*)value); } inline static int32_t get_offset_of_contentLength_12() { return static_cast(offsetof(FtpWebResponse_t4462ADF9C14124B97DC10705932A9234DACEED49, ___contentLength_12)); } inline int64_t get_contentLength_12() const { return ___contentLength_12; } inline int64_t* get_address_of_contentLength_12() { return &___contentLength_12; } inline void set_contentLength_12(int64_t value) { ___contentLength_12 = value; } }; // System.ComponentModel.GuidConverter struct GuidConverter_t27D023D55EE237735492E3831AEDE23FD65ACBEB : public TypeConverter_t004F185B630F00F509F08BD8F8D82471867323B4 { public: public: }; // System.Net.HeaderVariantInfo struct HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3 { public: // System.String System.Net.HeaderVariantInfo::m_name String_t* ___m_name_0; // System.Net.CookieVariant System.Net.HeaderVariantInfo::m_variant int32_t ___m_variant_1; public: inline static int32_t get_offset_of_m_name_0() { return static_cast(offsetof(HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3, ___m_name_0)); } inline String_t* get_m_name_0() const { return ___m_name_0; } inline String_t** get_address_of_m_name_0() { return &___m_name_0; } inline void set_m_name_0(String_t* value) { ___m_name_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_name_0), (void*)value); } inline static int32_t get_offset_of_m_variant_1() { return static_cast(offsetof(HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3, ___m_variant_1)); } inline int32_t get_m_variant_1() const { return ___m_variant_1; } inline int32_t* get_address_of_m_variant_1() { return &___m_variant_1; } inline void set_m_variant_1(int32_t value) { ___m_variant_1 = value; } }; // Native definition for P/Invoke marshalling of System.Net.HeaderVariantInfo struct HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3_marshaled_pinvoke { char* ___m_name_0; int32_t ___m_variant_1; }; // Native definition for COM marshalling of System.Net.HeaderVariantInfo struct HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3_marshaled_com { Il2CppChar* ___m_name_0; int32_t ___m_variant_1; }; // System.Net.HttpWebResponse struct HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB : public WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 { public: // System.Uri System.Net.HttpWebResponse::uri Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri_1; // System.Net.WebHeaderCollection System.Net.HttpWebResponse::webHeaders WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * ___webHeaders_2; // System.Net.CookieCollection System.Net.HttpWebResponse::cookieCollection CookieCollection_t2D2FA42D43C1A8053D95FD2205360B2E0B94AF06 * ___cookieCollection_3; // System.String System.Net.HttpWebResponse::method String_t* ___method_4; // System.Version System.Net.HttpWebResponse::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_5; // System.Net.HttpStatusCode System.Net.HttpWebResponse::statusCode int32_t ___statusCode_6; // System.String System.Net.HttpWebResponse::statusDescription String_t* ___statusDescription_7; // System.Int64 System.Net.HttpWebResponse::contentLength int64_t ___contentLength_8; // System.String System.Net.HttpWebResponse::contentType String_t* ___contentType_9; // System.Net.CookieContainer System.Net.HttpWebResponse::cookie_container CookieContainer_tF22AADBBB0BBD4D3FF4440A226F8E8580B08F4C2 * ___cookie_container_10; // System.Boolean System.Net.HttpWebResponse::disposed bool ___disposed_11; // System.IO.Stream System.Net.HttpWebResponse::stream Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream_12; public: inline static int32_t get_offset_of_uri_1() { return static_cast(offsetof(HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB, ___uri_1)); } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * get_uri_1() const { return ___uri_1; } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** get_address_of_uri_1() { return &___uri_1; } inline void set_uri_1(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * value) { ___uri_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___uri_1), (void*)value); } inline static int32_t get_offset_of_webHeaders_2() { return static_cast(offsetof(HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB, ___webHeaders_2)); } inline WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * get_webHeaders_2() const { return ___webHeaders_2; } inline WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 ** get_address_of_webHeaders_2() { return &___webHeaders_2; } inline void set_webHeaders_2(WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * value) { ___webHeaders_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___webHeaders_2), (void*)value); } inline static int32_t get_offset_of_cookieCollection_3() { return static_cast(offsetof(HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB, ___cookieCollection_3)); } inline CookieCollection_t2D2FA42D43C1A8053D95FD2205360B2E0B94AF06 * get_cookieCollection_3() const { return ___cookieCollection_3; } inline CookieCollection_t2D2FA42D43C1A8053D95FD2205360B2E0B94AF06 ** get_address_of_cookieCollection_3() { return &___cookieCollection_3; } inline void set_cookieCollection_3(CookieCollection_t2D2FA42D43C1A8053D95FD2205360B2E0B94AF06 * value) { ___cookieCollection_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___cookieCollection_3), (void*)value); } inline static int32_t get_offset_of_method_4() { return static_cast(offsetof(HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB, ___method_4)); } inline String_t* get_method_4() const { return ___method_4; } inline String_t** get_address_of_method_4() { return &___method_4; } inline void set_method_4(String_t* value) { ___method_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___method_4), (void*)value); } inline static int32_t get_offset_of_version_5() { return static_cast(offsetof(HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB, ___version_5)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_5() const { return ___version_5; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_5() { return &___version_5; } inline void set_version_5(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_5), (void*)value); } inline static int32_t get_offset_of_statusCode_6() { return static_cast(offsetof(HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB, ___statusCode_6)); } inline int32_t get_statusCode_6() const { return ___statusCode_6; } inline int32_t* get_address_of_statusCode_6() { return &___statusCode_6; } inline void set_statusCode_6(int32_t value) { ___statusCode_6 = value; } inline static int32_t get_offset_of_statusDescription_7() { return static_cast(offsetof(HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB, ___statusDescription_7)); } inline String_t* get_statusDescription_7() const { return ___statusDescription_7; } inline String_t** get_address_of_statusDescription_7() { return &___statusDescription_7; } inline void set_statusDescription_7(String_t* value) { ___statusDescription_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___statusDescription_7), (void*)value); } inline static int32_t get_offset_of_contentLength_8() { return static_cast(offsetof(HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB, ___contentLength_8)); } inline int64_t get_contentLength_8() const { return ___contentLength_8; } inline int64_t* get_address_of_contentLength_8() { return &___contentLength_8; } inline void set_contentLength_8(int64_t value) { ___contentLength_8 = value; } inline static int32_t get_offset_of_contentType_9() { return static_cast(offsetof(HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB, ___contentType_9)); } inline String_t* get_contentType_9() const { return ___contentType_9; } inline String_t** get_address_of_contentType_9() { return &___contentType_9; } inline void set_contentType_9(String_t* value) { ___contentType_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___contentType_9), (void*)value); } inline static int32_t get_offset_of_cookie_container_10() { return static_cast(offsetof(HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB, ___cookie_container_10)); } inline CookieContainer_tF22AADBBB0BBD4D3FF4440A226F8E8580B08F4C2 * get_cookie_container_10() const { return ___cookie_container_10; } inline CookieContainer_tF22AADBBB0BBD4D3FF4440A226F8E8580B08F4C2 ** get_address_of_cookie_container_10() { return &___cookie_container_10; } inline void set_cookie_container_10(CookieContainer_tF22AADBBB0BBD4D3FF4440A226F8E8580B08F4C2 * value) { ___cookie_container_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___cookie_container_10), (void*)value); } inline static int32_t get_offset_of_disposed_11() { return static_cast(offsetof(HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB, ___disposed_11)); } inline bool get_disposed_11() const { return ___disposed_11; } inline bool* get_address_of_disposed_11() { return &___disposed_11; } inline void set_disposed_11(bool value) { ___disposed_11 = value; } inline static int32_t get_offset_of_stream_12() { return static_cast(offsetof(HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB, ___stream_12)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_stream_12() const { return ___stream_12; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_stream_12() { return &___stream_12; } inline void set_stream_12(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___stream_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___stream_12), (void*)value); } }; // System.IOSelectorJob struct IOSelectorJob_t684DF541EAF1AB720C017E9DE172EA8168FDBDA9 : public RuntimeObject { public: // System.IOOperation System.IOSelectorJob::operation int32_t ___operation_0; // System.IOAsyncCallback System.IOSelectorJob::callback IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E * ___callback_1; // System.IOAsyncResult System.IOSelectorJob::state IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9 * ___state_2; public: inline static int32_t get_offset_of_operation_0() { return static_cast(offsetof(IOSelectorJob_t684DF541EAF1AB720C017E9DE172EA8168FDBDA9, ___operation_0)); } inline int32_t get_operation_0() const { return ___operation_0; } inline int32_t* get_address_of_operation_0() { return &___operation_0; } inline void set_operation_0(int32_t value) { ___operation_0 = value; } inline static int32_t get_offset_of_callback_1() { return static_cast(offsetof(IOSelectorJob_t684DF541EAF1AB720C017E9DE172EA8168FDBDA9, ___callback_1)); } inline IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E * get_callback_1() const { return ___callback_1; } inline IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E ** get_address_of_callback_1() { return &___callback_1; } inline void set_callback_1(IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E * value) { ___callback_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___callback_1), (void*)value); } inline static int32_t get_offset_of_state_2() { return static_cast(offsetof(IOSelectorJob_t684DF541EAF1AB720C017E9DE172EA8168FDBDA9, ___state_2)); } inline IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9 * get_state_2() const { return ___state_2; } inline IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9 ** get_address_of_state_2() { return &___state_2; } inline void set_state_2(IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9 * value) { ___state_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___state_2), (void*)value); } }; // Native definition for P/Invoke marshalling of System.IOSelectorJob struct IOSelectorJob_t684DF541EAF1AB720C017E9DE172EA8168FDBDA9_marshaled_pinvoke { int32_t ___operation_0; Il2CppMethodPointer ___callback_1; IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9_marshaled_pinvoke* ___state_2; }; // Native definition for COM marshalling of System.IOSelectorJob struct IOSelectorJob_t684DF541EAF1AB720C017E9DE172EA8168FDBDA9_marshaled_com { int32_t ___operation_0; Il2CppMethodPointer ___callback_1; IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9_marshaled_com* ___state_2; }; // System.Net.IPAddress struct IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE : public RuntimeObject { public: // System.Int64 System.Net.IPAddress::m_Address int64_t ___m_Address_5; // System.String System.Net.IPAddress::m_ToString String_t* ___m_ToString_6; // System.Net.Sockets.AddressFamily System.Net.IPAddress::m_Family int32_t ___m_Family_10; // System.UInt16[] System.Net.IPAddress::m_Numbers UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* ___m_Numbers_11; // System.Int64 System.Net.IPAddress::m_ScopeId int64_t ___m_ScopeId_12; // System.Int32 System.Net.IPAddress::m_HashCode int32_t ___m_HashCode_13; public: inline static int32_t get_offset_of_m_Address_5() { return static_cast(offsetof(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE, ___m_Address_5)); } inline int64_t get_m_Address_5() const { return ___m_Address_5; } inline int64_t* get_address_of_m_Address_5() { return &___m_Address_5; } inline void set_m_Address_5(int64_t value) { ___m_Address_5 = value; } inline static int32_t get_offset_of_m_ToString_6() { return static_cast(offsetof(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE, ___m_ToString_6)); } inline String_t* get_m_ToString_6() const { return ___m_ToString_6; } inline String_t** get_address_of_m_ToString_6() { return &___m_ToString_6; } inline void set_m_ToString_6(String_t* value) { ___m_ToString_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ToString_6), (void*)value); } inline static int32_t get_offset_of_m_Family_10() { return static_cast(offsetof(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE, ___m_Family_10)); } inline int32_t get_m_Family_10() const { return ___m_Family_10; } inline int32_t* get_address_of_m_Family_10() { return &___m_Family_10; } inline void set_m_Family_10(int32_t value) { ___m_Family_10 = value; } inline static int32_t get_offset_of_m_Numbers_11() { return static_cast(offsetof(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE, ___m_Numbers_11)); } inline UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* get_m_Numbers_11() const { return ___m_Numbers_11; } inline UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67** get_address_of_m_Numbers_11() { return &___m_Numbers_11; } inline void set_m_Numbers_11(UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* value) { ___m_Numbers_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Numbers_11), (void*)value); } inline static int32_t get_offset_of_m_ScopeId_12() { return static_cast(offsetof(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE, ___m_ScopeId_12)); } inline int64_t get_m_ScopeId_12() const { return ___m_ScopeId_12; } inline int64_t* get_address_of_m_ScopeId_12() { return &___m_ScopeId_12; } inline void set_m_ScopeId_12(int64_t value) { ___m_ScopeId_12 = value; } inline static int32_t get_offset_of_m_HashCode_13() { return static_cast(offsetof(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE, ___m_HashCode_13)); } inline int32_t get_m_HashCode_13() const { return ___m_HashCode_13; } inline int32_t* get_address_of_m_HashCode_13() { return &___m_HashCode_13; } inline void set_m_HashCode_13(int32_t value) { ___m_HashCode_13 = value; } }; struct IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_StaticFields { public: // System.Net.IPAddress System.Net.IPAddress::Any IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * ___Any_0; // System.Net.IPAddress System.Net.IPAddress::Loopback IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * ___Loopback_1; // System.Net.IPAddress System.Net.IPAddress::Broadcast IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * ___Broadcast_2; // System.Net.IPAddress System.Net.IPAddress::None IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * ___None_3; // System.Net.IPAddress System.Net.IPAddress::IPv6Any IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * ___IPv6Any_7; // System.Net.IPAddress System.Net.IPAddress::IPv6Loopback IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * ___IPv6Loopback_8; // System.Net.IPAddress System.Net.IPAddress::IPv6None IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * ___IPv6None_9; public: inline static int32_t get_offset_of_Any_0() { return static_cast(offsetof(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_StaticFields, ___Any_0)); } inline IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * get_Any_0() const { return ___Any_0; } inline IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE ** get_address_of_Any_0() { return &___Any_0; } inline void set_Any_0(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * value) { ___Any_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Any_0), (void*)value); } inline static int32_t get_offset_of_Loopback_1() { return static_cast(offsetof(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_StaticFields, ___Loopback_1)); } inline IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * get_Loopback_1() const { return ___Loopback_1; } inline IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE ** get_address_of_Loopback_1() { return &___Loopback_1; } inline void set_Loopback_1(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * value) { ___Loopback_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Loopback_1), (void*)value); } inline static int32_t get_offset_of_Broadcast_2() { return static_cast(offsetof(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_StaticFields, ___Broadcast_2)); } inline IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * get_Broadcast_2() const { return ___Broadcast_2; } inline IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE ** get_address_of_Broadcast_2() { return &___Broadcast_2; } inline void set_Broadcast_2(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * value) { ___Broadcast_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___Broadcast_2), (void*)value); } inline static int32_t get_offset_of_None_3() { return static_cast(offsetof(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_StaticFields, ___None_3)); } inline IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * get_None_3() const { return ___None_3; } inline IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE ** get_address_of_None_3() { return &___None_3; } inline void set_None_3(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * value) { ___None_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___None_3), (void*)value); } inline static int32_t get_offset_of_IPv6Any_7() { return static_cast(offsetof(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_StaticFields, ___IPv6Any_7)); } inline IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * get_IPv6Any_7() const { return ___IPv6Any_7; } inline IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE ** get_address_of_IPv6Any_7() { return &___IPv6Any_7; } inline void set_IPv6Any_7(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * value) { ___IPv6Any_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___IPv6Any_7), (void*)value); } inline static int32_t get_offset_of_IPv6Loopback_8() { return static_cast(offsetof(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_StaticFields, ___IPv6Loopback_8)); } inline IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * get_IPv6Loopback_8() const { return ___IPv6Loopback_8; } inline IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE ** get_address_of_IPv6Loopback_8() { return &___IPv6Loopback_8; } inline void set_IPv6Loopback_8(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * value) { ___IPv6Loopback_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___IPv6Loopback_8), (void*)value); } inline static int32_t get_offset_of_IPv6None_9() { return static_cast(offsetof(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_StaticFields, ___IPv6None_9)); } inline IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * get_IPv6None_9() const { return ___IPv6None_9; } inline IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE ** get_address_of_IPv6None_9() { return &___IPv6None_9; } inline void set_IPv6None_9(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * value) { ___IPv6None_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___IPv6None_9), (void*)value); } }; // System.ComponentModel.InheritanceAttribute struct InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 { public: // System.ComponentModel.InheritanceLevel System.ComponentModel.InheritanceAttribute::inheritanceLevel int32_t ___inheritanceLevel_0; public: inline static int32_t get_offset_of_inheritanceLevel_0() { return static_cast(offsetof(InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74, ___inheritanceLevel_0)); } inline int32_t get_inheritanceLevel_0() const { return ___inheritanceLevel_0; } inline int32_t* get_address_of_inheritanceLevel_0() { return &___inheritanceLevel_0; } inline void set_inheritanceLevel_0(int32_t value) { ___inheritanceLevel_0 = value; } }; struct InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74_StaticFields { public: // System.ComponentModel.InheritanceAttribute System.ComponentModel.InheritanceAttribute::Inherited InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 * ___Inherited_1; // System.ComponentModel.InheritanceAttribute System.ComponentModel.InheritanceAttribute::InheritedReadOnly InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 * ___InheritedReadOnly_2; // System.ComponentModel.InheritanceAttribute System.ComponentModel.InheritanceAttribute::NotInherited InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 * ___NotInherited_3; // System.ComponentModel.InheritanceAttribute System.ComponentModel.InheritanceAttribute::Default InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 * ___Default_4; public: inline static int32_t get_offset_of_Inherited_1() { return static_cast(offsetof(InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74_StaticFields, ___Inherited_1)); } inline InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 * get_Inherited_1() const { return ___Inherited_1; } inline InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 ** get_address_of_Inherited_1() { return &___Inherited_1; } inline void set_Inherited_1(InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 * value) { ___Inherited_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Inherited_1), (void*)value); } inline static int32_t get_offset_of_InheritedReadOnly_2() { return static_cast(offsetof(InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74_StaticFields, ___InheritedReadOnly_2)); } inline InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 * get_InheritedReadOnly_2() const { return ___InheritedReadOnly_2; } inline InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 ** get_address_of_InheritedReadOnly_2() { return &___InheritedReadOnly_2; } inline void set_InheritedReadOnly_2(InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 * value) { ___InheritedReadOnly_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___InheritedReadOnly_2), (void*)value); } inline static int32_t get_offset_of_NotInherited_3() { return static_cast(offsetof(InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74_StaticFields, ___NotInherited_3)); } inline InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 * get_NotInherited_3() const { return ___NotInherited_3; } inline InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 ** get_address_of_NotInherited_3() { return &___NotInherited_3; } inline void set_NotInherited_3(InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 * value) { ___NotInherited_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___NotInherited_3), (void*)value); } inline static int32_t get_offset_of_Default_4() { return static_cast(offsetof(InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74_StaticFields, ___Default_4)); } inline InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 * get_Default_4() const { return ___Default_4; } inline InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 ** get_address_of_Default_4() { return &___Default_4; } inline void set_Default_4(InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 * value) { ___Default_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___Default_4), (void*)value); } }; // System.ComponentModel.ListChangedEventArgs struct ListChangedEventArgs_t7E1DD2BB933BE30107C8B95958746E6AF24F6632 : public EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA { public: // System.ComponentModel.ListChangedType System.ComponentModel.ListChangedEventArgs::listChangedType int32_t ___listChangedType_1; // System.Int32 System.ComponentModel.ListChangedEventArgs::newIndex int32_t ___newIndex_2; // System.Int32 System.ComponentModel.ListChangedEventArgs::oldIndex int32_t ___oldIndex_3; // System.ComponentModel.PropertyDescriptor System.ComponentModel.ListChangedEventArgs::propDesc PropertyDescriptor_t851C1421EDEEC6CB7D059D50CF94886ECCA1B22B * ___propDesc_4; public: inline static int32_t get_offset_of_listChangedType_1() { return static_cast(offsetof(ListChangedEventArgs_t7E1DD2BB933BE30107C8B95958746E6AF24F6632, ___listChangedType_1)); } inline int32_t get_listChangedType_1() const { return ___listChangedType_1; } inline int32_t* get_address_of_listChangedType_1() { return &___listChangedType_1; } inline void set_listChangedType_1(int32_t value) { ___listChangedType_1 = value; } inline static int32_t get_offset_of_newIndex_2() { return static_cast(offsetof(ListChangedEventArgs_t7E1DD2BB933BE30107C8B95958746E6AF24F6632, ___newIndex_2)); } inline int32_t get_newIndex_2() const { return ___newIndex_2; } inline int32_t* get_address_of_newIndex_2() { return &___newIndex_2; } inline void set_newIndex_2(int32_t value) { ___newIndex_2 = value; } inline static int32_t get_offset_of_oldIndex_3() { return static_cast(offsetof(ListChangedEventArgs_t7E1DD2BB933BE30107C8B95958746E6AF24F6632, ___oldIndex_3)); } inline int32_t get_oldIndex_3() const { return ___oldIndex_3; } inline int32_t* get_address_of_oldIndex_3() { return &___oldIndex_3; } inline void set_oldIndex_3(int32_t value) { ___oldIndex_3 = value; } inline static int32_t get_offset_of_propDesc_4() { return static_cast(offsetof(ListChangedEventArgs_t7E1DD2BB933BE30107C8B95958746E6AF24F6632, ___propDesc_4)); } inline PropertyDescriptor_t851C1421EDEEC6CB7D059D50CF94886ECCA1B22B * get_propDesc_4() const { return ___propDesc_4; } inline PropertyDescriptor_t851C1421EDEEC6CB7D059D50CF94886ECCA1B22B ** get_address_of_propDesc_4() { return &___propDesc_4; } inline void set_propDesc_4(PropertyDescriptor_t851C1421EDEEC6CB7D059D50CF94886ECCA1B22B * value) { ___propDesc_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___propDesc_4), (void*)value); } }; // System.ComponentModel.ListSortDescription struct ListSortDescription_t597DE86A6ADC6084FF85967475CBB07B706DF9C7 : public RuntimeObject { public: // System.ComponentModel.PropertyDescriptor System.ComponentModel.ListSortDescription::property PropertyDescriptor_t851C1421EDEEC6CB7D059D50CF94886ECCA1B22B * ___property_0; // System.ComponentModel.ListSortDirection System.ComponentModel.ListSortDescription::sortDirection int32_t ___sortDirection_1; public: inline static int32_t get_offset_of_property_0() { return static_cast(offsetof(ListSortDescription_t597DE86A6ADC6084FF85967475CBB07B706DF9C7, ___property_0)); } inline PropertyDescriptor_t851C1421EDEEC6CB7D059D50CF94886ECCA1B22B * get_property_0() const { return ___property_0; } inline PropertyDescriptor_t851C1421EDEEC6CB7D059D50CF94886ECCA1B22B ** get_address_of_property_0() { return &___property_0; } inline void set_property_0(PropertyDescriptor_t851C1421EDEEC6CB7D059D50CF94886ECCA1B22B * value) { ___property_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___property_0), (void*)value); } inline static int32_t get_offset_of_sortDirection_1() { return static_cast(offsetof(ListSortDescription_t597DE86A6ADC6084FF85967475CBB07B706DF9C7, ___sortDirection_1)); } inline int32_t get_sortDirection_1() const { return ___sortDirection_1; } inline int32_t* get_address_of_sortDirection_1() { return &___sortDirection_1; } inline void set_sortDirection_1(int32_t value) { ___sortDirection_1 = value; } }; // System.Net.NetworkInformation.MibIPGlobalProperties struct MibIPGlobalProperties_t3722DFB852035FAEC93E9F5FDFE3D163653B666B : public UnixIPGlobalProperties_t17A56352BFACD974A0828F84CA3424941E39B021 { public: // System.String System.Net.NetworkInformation.MibIPGlobalProperties::StatisticsFile String_t* ___StatisticsFile_1; // System.String System.Net.NetworkInformation.MibIPGlobalProperties::StatisticsFileIPv6 String_t* ___StatisticsFileIPv6_2; // System.String System.Net.NetworkInformation.MibIPGlobalProperties::TcpFile String_t* ___TcpFile_3; // System.String System.Net.NetworkInformation.MibIPGlobalProperties::Tcp6File String_t* ___Tcp6File_4; // System.String System.Net.NetworkInformation.MibIPGlobalProperties::UdpFile String_t* ___UdpFile_5; // System.String System.Net.NetworkInformation.MibIPGlobalProperties::Udp6File String_t* ___Udp6File_6; public: inline static int32_t get_offset_of_StatisticsFile_1() { return static_cast(offsetof(MibIPGlobalProperties_t3722DFB852035FAEC93E9F5FDFE3D163653B666B, ___StatisticsFile_1)); } inline String_t* get_StatisticsFile_1() const { return ___StatisticsFile_1; } inline String_t** get_address_of_StatisticsFile_1() { return &___StatisticsFile_1; } inline void set_StatisticsFile_1(String_t* value) { ___StatisticsFile_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___StatisticsFile_1), (void*)value); } inline static int32_t get_offset_of_StatisticsFileIPv6_2() { return static_cast(offsetof(MibIPGlobalProperties_t3722DFB852035FAEC93E9F5FDFE3D163653B666B, ___StatisticsFileIPv6_2)); } inline String_t* get_StatisticsFileIPv6_2() const { return ___StatisticsFileIPv6_2; } inline String_t** get_address_of_StatisticsFileIPv6_2() { return &___StatisticsFileIPv6_2; } inline void set_StatisticsFileIPv6_2(String_t* value) { ___StatisticsFileIPv6_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___StatisticsFileIPv6_2), (void*)value); } inline static int32_t get_offset_of_TcpFile_3() { return static_cast(offsetof(MibIPGlobalProperties_t3722DFB852035FAEC93E9F5FDFE3D163653B666B, ___TcpFile_3)); } inline String_t* get_TcpFile_3() const { return ___TcpFile_3; } inline String_t** get_address_of_TcpFile_3() { return &___TcpFile_3; } inline void set_TcpFile_3(String_t* value) { ___TcpFile_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___TcpFile_3), (void*)value); } inline static int32_t get_offset_of_Tcp6File_4() { return static_cast(offsetof(MibIPGlobalProperties_t3722DFB852035FAEC93E9F5FDFE3D163653B666B, ___Tcp6File_4)); } inline String_t* get_Tcp6File_4() const { return ___Tcp6File_4; } inline String_t** get_address_of_Tcp6File_4() { return &___Tcp6File_4; } inline void set_Tcp6File_4(String_t* value) { ___Tcp6File_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___Tcp6File_4), (void*)value); } inline static int32_t get_offset_of_UdpFile_5() { return static_cast(offsetof(MibIPGlobalProperties_t3722DFB852035FAEC93E9F5FDFE3D163653B666B, ___UdpFile_5)); } inline String_t* get_UdpFile_5() const { return ___UdpFile_5; } inline String_t** get_address_of_UdpFile_5() { return &___UdpFile_5; } inline void set_UdpFile_5(String_t* value) { ___UdpFile_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___UdpFile_5), (void*)value); } inline static int32_t get_offset_of_Udp6File_6() { return static_cast(offsetof(MibIPGlobalProperties_t3722DFB852035FAEC93E9F5FDFE3D163653B666B, ___Udp6File_6)); } inline String_t* get_Udp6File_6() const { return ___Udp6File_6; } inline String_t** get_address_of_Udp6File_6() { return &___Udp6File_6; } inline void set_Udp6File_6(String_t* value) { ___Udp6File_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___Udp6File_6), (void*)value); } }; struct MibIPGlobalProperties_t3722DFB852035FAEC93E9F5FDFE3D163653B666B_StaticFields { public: // System.Char[] System.Net.NetworkInformation.MibIPGlobalProperties::wsChars CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___wsChars_7; public: inline static int32_t get_offset_of_wsChars_7() { return static_cast(offsetof(MibIPGlobalProperties_t3722DFB852035FAEC93E9F5FDFE3D163653B666B_StaticFields, ___wsChars_7)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_wsChars_7() const { return ___wsChars_7; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_wsChars_7() { return &___wsChars_7; } inline void set_wsChars_7(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___wsChars_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___wsChars_7), (void*)value); } }; // System.Reflection.Module struct Module_tAAF0DBC4FB20AB46035441C66C41A8DB813C8CD7 : public RuntimeObject { public: // System.IntPtr System.Reflection.Module::_impl intptr_t ____impl_2; // System.Reflection.Assembly System.Reflection.Module::assembly Assembly_t * ___assembly_3; // System.String System.Reflection.Module::fqname String_t* ___fqname_4; // System.String System.Reflection.Module::name String_t* ___name_5; // System.String System.Reflection.Module::scopename String_t* ___scopename_6; // System.Boolean System.Reflection.Module::is_resource bool ___is_resource_7; // System.Int32 System.Reflection.Module::token int32_t ___token_8; public: inline static int32_t get_offset_of__impl_2() { return static_cast(offsetof(Module_tAAF0DBC4FB20AB46035441C66C41A8DB813C8CD7, ____impl_2)); } inline intptr_t get__impl_2() const { return ____impl_2; } inline intptr_t* get_address_of__impl_2() { return &____impl_2; } inline void set__impl_2(intptr_t value) { ____impl_2 = value; } inline static int32_t get_offset_of_assembly_3() { return static_cast(offsetof(Module_tAAF0DBC4FB20AB46035441C66C41A8DB813C8CD7, ___assembly_3)); } inline Assembly_t * get_assembly_3() const { return ___assembly_3; } inline Assembly_t ** get_address_of_assembly_3() { return &___assembly_3; } inline void set_assembly_3(Assembly_t * value) { ___assembly_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___assembly_3), (void*)value); } inline static int32_t get_offset_of_fqname_4() { return static_cast(offsetof(Module_tAAF0DBC4FB20AB46035441C66C41A8DB813C8CD7, ___fqname_4)); } inline String_t* get_fqname_4() const { return ___fqname_4; } inline String_t** get_address_of_fqname_4() { return &___fqname_4; } inline void set_fqname_4(String_t* value) { ___fqname_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___fqname_4), (void*)value); } inline static int32_t get_offset_of_name_5() { return static_cast(offsetof(Module_tAAF0DBC4FB20AB46035441C66C41A8DB813C8CD7, ___name_5)); } inline String_t* get_name_5() const { return ___name_5; } inline String_t** get_address_of_name_5() { return &___name_5; } inline void set_name_5(String_t* value) { ___name_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_5), (void*)value); } inline static int32_t get_offset_of_scopename_6() { return static_cast(offsetof(Module_tAAF0DBC4FB20AB46035441C66C41A8DB813C8CD7, ___scopename_6)); } inline String_t* get_scopename_6() const { return ___scopename_6; } inline String_t** get_address_of_scopename_6() { return &___scopename_6; } inline void set_scopename_6(String_t* value) { ___scopename_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___scopename_6), (void*)value); } inline static int32_t get_offset_of_is_resource_7() { return static_cast(offsetof(Module_tAAF0DBC4FB20AB46035441C66C41A8DB813C8CD7, ___is_resource_7)); } inline bool get_is_resource_7() const { return ___is_resource_7; } inline bool* get_address_of_is_resource_7() { return &___is_resource_7; } inline void set_is_resource_7(bool value) { ___is_resource_7 = value; } inline static int32_t get_offset_of_token_8() { return static_cast(offsetof(Module_tAAF0DBC4FB20AB46035441C66C41A8DB813C8CD7, ___token_8)); } inline int32_t get_token_8() const { return ___token_8; } inline int32_t* get_address_of_token_8() { return &___token_8; } inline void set_token_8(int32_t value) { ___token_8 = value; } }; struct Module_tAAF0DBC4FB20AB46035441C66C41A8DB813C8CD7_StaticFields { public: // System.Reflection.TypeFilter System.Reflection.Module::FilterTypeName TypeFilter_t8E0AA7E71F2D6695C61A52277E6CF6E49230F2C3 * ___FilterTypeName_0; // System.Reflection.TypeFilter System.Reflection.Module::FilterTypeNameIgnoreCase TypeFilter_t8E0AA7E71F2D6695C61A52277E6CF6E49230F2C3 * ___FilterTypeNameIgnoreCase_1; public: inline static int32_t get_offset_of_FilterTypeName_0() { return static_cast(offsetof(Module_tAAF0DBC4FB20AB46035441C66C41A8DB813C8CD7_StaticFields, ___FilterTypeName_0)); } inline TypeFilter_t8E0AA7E71F2D6695C61A52277E6CF6E49230F2C3 * get_FilterTypeName_0() const { return ___FilterTypeName_0; } inline TypeFilter_t8E0AA7E71F2D6695C61A52277E6CF6E49230F2C3 ** get_address_of_FilterTypeName_0() { return &___FilterTypeName_0; } inline void set_FilterTypeName_0(TypeFilter_t8E0AA7E71F2D6695C61A52277E6CF6E49230F2C3 * value) { ___FilterTypeName_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterTypeName_0), (void*)value); } inline static int32_t get_offset_of_FilterTypeNameIgnoreCase_1() { return static_cast(offsetof(Module_tAAF0DBC4FB20AB46035441C66C41A8DB813C8CD7_StaticFields, ___FilterTypeNameIgnoreCase_1)); } inline TypeFilter_t8E0AA7E71F2D6695C61A52277E6CF6E49230F2C3 * get_FilterTypeNameIgnoreCase_1() const { return ___FilterTypeNameIgnoreCase_1; } inline TypeFilter_t8E0AA7E71F2D6695C61A52277E6CF6E49230F2C3 ** get_address_of_FilterTypeNameIgnoreCase_1() { return &___FilterTypeNameIgnoreCase_1; } inline void set_FilterTypeNameIgnoreCase_1(TypeFilter_t8E0AA7E71F2D6695C61A52277E6CF6E49230F2C3 * value) { ___FilterTypeNameIgnoreCase_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterTypeNameIgnoreCase_1), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Reflection.Module struct Module_tAAF0DBC4FB20AB46035441C66C41A8DB813C8CD7_marshaled_pinvoke { intptr_t ____impl_2; Assembly_t_marshaled_pinvoke* ___assembly_3; char* ___fqname_4; char* ___name_5; char* ___scopename_6; int32_t ___is_resource_7; int32_t ___token_8; }; // Native definition for COM marshalling of System.Reflection.Module struct Module_tAAF0DBC4FB20AB46035441C66C41A8DB813C8CD7_marshaled_com { intptr_t ____impl_2; Assembly_t_marshaled_com* ___assembly_3; Il2CppChar* ___fqname_4; Il2CppChar* ___name_5; Il2CppChar* ___scopename_6; int32_t ___is_resource_7; int32_t ___token_8; }; // System.MulticastDelegate struct MulticastDelegate_t : public Delegate_t { public: // System.Delegate[] System.MulticastDelegate::delegates DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* ___delegates_11; public: inline static int32_t get_offset_of_delegates_11() { return static_cast(offsetof(MulticastDelegate_t, ___delegates_11)); } inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* get_delegates_11() const { return ___delegates_11; } inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8** get_address_of_delegates_11() { return &___delegates_11; } inline void set_delegates_11(DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* value) { ___delegates_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___delegates_11), (void*)value); } }; // Native definition for P/Invoke marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke { Delegate_t_marshaled_pinvoke** ___delegates_11; }; // Native definition for COM marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com { Delegate_t_marshaled_com** ___delegates_11; }; // System.Globalization.NumberFormatInfo struct NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D : public RuntimeObject { public: // System.Int32[] System.Globalization.NumberFormatInfo::numberGroupSizes Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___numberGroupSizes_1; // System.Int32[] System.Globalization.NumberFormatInfo::currencyGroupSizes Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___currencyGroupSizes_2; // System.Int32[] System.Globalization.NumberFormatInfo::percentGroupSizes Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___percentGroupSizes_3; // System.String System.Globalization.NumberFormatInfo::positiveSign String_t* ___positiveSign_4; // System.String System.Globalization.NumberFormatInfo::negativeSign String_t* ___negativeSign_5; // System.String System.Globalization.NumberFormatInfo::numberDecimalSeparator String_t* ___numberDecimalSeparator_6; // System.String System.Globalization.NumberFormatInfo::numberGroupSeparator String_t* ___numberGroupSeparator_7; // System.String System.Globalization.NumberFormatInfo::currencyGroupSeparator String_t* ___currencyGroupSeparator_8; // System.String System.Globalization.NumberFormatInfo::currencyDecimalSeparator String_t* ___currencyDecimalSeparator_9; // System.String System.Globalization.NumberFormatInfo::currencySymbol String_t* ___currencySymbol_10; // System.String System.Globalization.NumberFormatInfo::ansiCurrencySymbol String_t* ___ansiCurrencySymbol_11; // System.String System.Globalization.NumberFormatInfo::nanSymbol String_t* ___nanSymbol_12; // System.String System.Globalization.NumberFormatInfo::positiveInfinitySymbol String_t* ___positiveInfinitySymbol_13; // System.String System.Globalization.NumberFormatInfo::negativeInfinitySymbol String_t* ___negativeInfinitySymbol_14; // System.String System.Globalization.NumberFormatInfo::percentDecimalSeparator String_t* ___percentDecimalSeparator_15; // System.String System.Globalization.NumberFormatInfo::percentGroupSeparator String_t* ___percentGroupSeparator_16; // System.String System.Globalization.NumberFormatInfo::percentSymbol String_t* ___percentSymbol_17; // System.String System.Globalization.NumberFormatInfo::perMilleSymbol String_t* ___perMilleSymbol_18; // System.String[] System.Globalization.NumberFormatInfo::nativeDigits StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___nativeDigits_19; // System.Int32 System.Globalization.NumberFormatInfo::m_dataItem int32_t ___m_dataItem_20; // System.Int32 System.Globalization.NumberFormatInfo::numberDecimalDigits int32_t ___numberDecimalDigits_21; // System.Int32 System.Globalization.NumberFormatInfo::currencyDecimalDigits int32_t ___currencyDecimalDigits_22; // System.Int32 System.Globalization.NumberFormatInfo::currencyPositivePattern int32_t ___currencyPositivePattern_23; // System.Int32 System.Globalization.NumberFormatInfo::currencyNegativePattern int32_t ___currencyNegativePattern_24; // System.Int32 System.Globalization.NumberFormatInfo::numberNegativePattern int32_t ___numberNegativePattern_25; // System.Int32 System.Globalization.NumberFormatInfo::percentPositivePattern int32_t ___percentPositivePattern_26; // System.Int32 System.Globalization.NumberFormatInfo::percentNegativePattern int32_t ___percentNegativePattern_27; // System.Int32 System.Globalization.NumberFormatInfo::percentDecimalDigits int32_t ___percentDecimalDigits_28; // System.Int32 System.Globalization.NumberFormatInfo::digitSubstitution int32_t ___digitSubstitution_29; // System.Boolean System.Globalization.NumberFormatInfo::isReadOnly bool ___isReadOnly_30; // System.Boolean System.Globalization.NumberFormatInfo::m_useUserOverride bool ___m_useUserOverride_31; // System.Boolean System.Globalization.NumberFormatInfo::m_isInvariant bool ___m_isInvariant_32; // System.Boolean System.Globalization.NumberFormatInfo::validForParseAsNumber bool ___validForParseAsNumber_33; // System.Boolean System.Globalization.NumberFormatInfo::validForParseAsCurrency bool ___validForParseAsCurrency_34; public: inline static int32_t get_offset_of_numberGroupSizes_1() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___numberGroupSizes_1)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_numberGroupSizes_1() const { return ___numberGroupSizes_1; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_numberGroupSizes_1() { return &___numberGroupSizes_1; } inline void set_numberGroupSizes_1(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___numberGroupSizes_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___numberGroupSizes_1), (void*)value); } inline static int32_t get_offset_of_currencyGroupSizes_2() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___currencyGroupSizes_2)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_currencyGroupSizes_2() const { return ___currencyGroupSizes_2; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_currencyGroupSizes_2() { return &___currencyGroupSizes_2; } inline void set_currencyGroupSizes_2(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___currencyGroupSizes_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___currencyGroupSizes_2), (void*)value); } inline static int32_t get_offset_of_percentGroupSizes_3() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___percentGroupSizes_3)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_percentGroupSizes_3() const { return ___percentGroupSizes_3; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_percentGroupSizes_3() { return &___percentGroupSizes_3; } inline void set_percentGroupSizes_3(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___percentGroupSizes_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___percentGroupSizes_3), (void*)value); } inline static int32_t get_offset_of_positiveSign_4() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___positiveSign_4)); } inline String_t* get_positiveSign_4() const { return ___positiveSign_4; } inline String_t** get_address_of_positiveSign_4() { return &___positiveSign_4; } inline void set_positiveSign_4(String_t* value) { ___positiveSign_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___positiveSign_4), (void*)value); } inline static int32_t get_offset_of_negativeSign_5() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___negativeSign_5)); } inline String_t* get_negativeSign_5() const { return ___negativeSign_5; } inline String_t** get_address_of_negativeSign_5() { return &___negativeSign_5; } inline void set_negativeSign_5(String_t* value) { ___negativeSign_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___negativeSign_5), (void*)value); } inline static int32_t get_offset_of_numberDecimalSeparator_6() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___numberDecimalSeparator_6)); } inline String_t* get_numberDecimalSeparator_6() const { return ___numberDecimalSeparator_6; } inline String_t** get_address_of_numberDecimalSeparator_6() { return &___numberDecimalSeparator_6; } inline void set_numberDecimalSeparator_6(String_t* value) { ___numberDecimalSeparator_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___numberDecimalSeparator_6), (void*)value); } inline static int32_t get_offset_of_numberGroupSeparator_7() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___numberGroupSeparator_7)); } inline String_t* get_numberGroupSeparator_7() const { return ___numberGroupSeparator_7; } inline String_t** get_address_of_numberGroupSeparator_7() { return &___numberGroupSeparator_7; } inline void set_numberGroupSeparator_7(String_t* value) { ___numberGroupSeparator_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___numberGroupSeparator_7), (void*)value); } inline static int32_t get_offset_of_currencyGroupSeparator_8() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___currencyGroupSeparator_8)); } inline String_t* get_currencyGroupSeparator_8() const { return ___currencyGroupSeparator_8; } inline String_t** get_address_of_currencyGroupSeparator_8() { return &___currencyGroupSeparator_8; } inline void set_currencyGroupSeparator_8(String_t* value) { ___currencyGroupSeparator_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___currencyGroupSeparator_8), (void*)value); } inline static int32_t get_offset_of_currencyDecimalSeparator_9() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___currencyDecimalSeparator_9)); } inline String_t* get_currencyDecimalSeparator_9() const { return ___currencyDecimalSeparator_9; } inline String_t** get_address_of_currencyDecimalSeparator_9() { return &___currencyDecimalSeparator_9; } inline void set_currencyDecimalSeparator_9(String_t* value) { ___currencyDecimalSeparator_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___currencyDecimalSeparator_9), (void*)value); } inline static int32_t get_offset_of_currencySymbol_10() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___currencySymbol_10)); } inline String_t* get_currencySymbol_10() const { return ___currencySymbol_10; } inline String_t** get_address_of_currencySymbol_10() { return &___currencySymbol_10; } inline void set_currencySymbol_10(String_t* value) { ___currencySymbol_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___currencySymbol_10), (void*)value); } inline static int32_t get_offset_of_ansiCurrencySymbol_11() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___ansiCurrencySymbol_11)); } inline String_t* get_ansiCurrencySymbol_11() const { return ___ansiCurrencySymbol_11; } inline String_t** get_address_of_ansiCurrencySymbol_11() { return &___ansiCurrencySymbol_11; } inline void set_ansiCurrencySymbol_11(String_t* value) { ___ansiCurrencySymbol_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___ansiCurrencySymbol_11), (void*)value); } inline static int32_t get_offset_of_nanSymbol_12() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___nanSymbol_12)); } inline String_t* get_nanSymbol_12() const { return ___nanSymbol_12; } inline String_t** get_address_of_nanSymbol_12() { return &___nanSymbol_12; } inline void set_nanSymbol_12(String_t* value) { ___nanSymbol_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___nanSymbol_12), (void*)value); } inline static int32_t get_offset_of_positiveInfinitySymbol_13() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___positiveInfinitySymbol_13)); } inline String_t* get_positiveInfinitySymbol_13() const { return ___positiveInfinitySymbol_13; } inline String_t** get_address_of_positiveInfinitySymbol_13() { return &___positiveInfinitySymbol_13; } inline void set_positiveInfinitySymbol_13(String_t* value) { ___positiveInfinitySymbol_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___positiveInfinitySymbol_13), (void*)value); } inline static int32_t get_offset_of_negativeInfinitySymbol_14() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___negativeInfinitySymbol_14)); } inline String_t* get_negativeInfinitySymbol_14() const { return ___negativeInfinitySymbol_14; } inline String_t** get_address_of_negativeInfinitySymbol_14() { return &___negativeInfinitySymbol_14; } inline void set_negativeInfinitySymbol_14(String_t* value) { ___negativeInfinitySymbol_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___negativeInfinitySymbol_14), (void*)value); } inline static int32_t get_offset_of_percentDecimalSeparator_15() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___percentDecimalSeparator_15)); } inline String_t* get_percentDecimalSeparator_15() const { return ___percentDecimalSeparator_15; } inline String_t** get_address_of_percentDecimalSeparator_15() { return &___percentDecimalSeparator_15; } inline void set_percentDecimalSeparator_15(String_t* value) { ___percentDecimalSeparator_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___percentDecimalSeparator_15), (void*)value); } inline static int32_t get_offset_of_percentGroupSeparator_16() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___percentGroupSeparator_16)); } inline String_t* get_percentGroupSeparator_16() const { return ___percentGroupSeparator_16; } inline String_t** get_address_of_percentGroupSeparator_16() { return &___percentGroupSeparator_16; } inline void set_percentGroupSeparator_16(String_t* value) { ___percentGroupSeparator_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___percentGroupSeparator_16), (void*)value); } inline static int32_t get_offset_of_percentSymbol_17() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___percentSymbol_17)); } inline String_t* get_percentSymbol_17() const { return ___percentSymbol_17; } inline String_t** get_address_of_percentSymbol_17() { return &___percentSymbol_17; } inline void set_percentSymbol_17(String_t* value) { ___percentSymbol_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___percentSymbol_17), (void*)value); } inline static int32_t get_offset_of_perMilleSymbol_18() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___perMilleSymbol_18)); } inline String_t* get_perMilleSymbol_18() const { return ___perMilleSymbol_18; } inline String_t** get_address_of_perMilleSymbol_18() { return &___perMilleSymbol_18; } inline void set_perMilleSymbol_18(String_t* value) { ___perMilleSymbol_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___perMilleSymbol_18), (void*)value); } inline static int32_t get_offset_of_nativeDigits_19() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___nativeDigits_19)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_nativeDigits_19() const { return ___nativeDigits_19; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_nativeDigits_19() { return &___nativeDigits_19; } inline void set_nativeDigits_19(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___nativeDigits_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___nativeDigits_19), (void*)value); } inline static int32_t get_offset_of_m_dataItem_20() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___m_dataItem_20)); } inline int32_t get_m_dataItem_20() const { return ___m_dataItem_20; } inline int32_t* get_address_of_m_dataItem_20() { return &___m_dataItem_20; } inline void set_m_dataItem_20(int32_t value) { ___m_dataItem_20 = value; } inline static int32_t get_offset_of_numberDecimalDigits_21() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___numberDecimalDigits_21)); } inline int32_t get_numberDecimalDigits_21() const { return ___numberDecimalDigits_21; } inline int32_t* get_address_of_numberDecimalDigits_21() { return &___numberDecimalDigits_21; } inline void set_numberDecimalDigits_21(int32_t value) { ___numberDecimalDigits_21 = value; } inline static int32_t get_offset_of_currencyDecimalDigits_22() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___currencyDecimalDigits_22)); } inline int32_t get_currencyDecimalDigits_22() const { return ___currencyDecimalDigits_22; } inline int32_t* get_address_of_currencyDecimalDigits_22() { return &___currencyDecimalDigits_22; } inline void set_currencyDecimalDigits_22(int32_t value) { ___currencyDecimalDigits_22 = value; } inline static int32_t get_offset_of_currencyPositivePattern_23() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___currencyPositivePattern_23)); } inline int32_t get_currencyPositivePattern_23() const { return ___currencyPositivePattern_23; } inline int32_t* get_address_of_currencyPositivePattern_23() { return &___currencyPositivePattern_23; } inline void set_currencyPositivePattern_23(int32_t value) { ___currencyPositivePattern_23 = value; } inline static int32_t get_offset_of_currencyNegativePattern_24() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___currencyNegativePattern_24)); } inline int32_t get_currencyNegativePattern_24() const { return ___currencyNegativePattern_24; } inline int32_t* get_address_of_currencyNegativePattern_24() { return &___currencyNegativePattern_24; } inline void set_currencyNegativePattern_24(int32_t value) { ___currencyNegativePattern_24 = value; } inline static int32_t get_offset_of_numberNegativePattern_25() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___numberNegativePattern_25)); } inline int32_t get_numberNegativePattern_25() const { return ___numberNegativePattern_25; } inline int32_t* get_address_of_numberNegativePattern_25() { return &___numberNegativePattern_25; } inline void set_numberNegativePattern_25(int32_t value) { ___numberNegativePattern_25 = value; } inline static int32_t get_offset_of_percentPositivePattern_26() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___percentPositivePattern_26)); } inline int32_t get_percentPositivePattern_26() const { return ___percentPositivePattern_26; } inline int32_t* get_address_of_percentPositivePattern_26() { return &___percentPositivePattern_26; } inline void set_percentPositivePattern_26(int32_t value) { ___percentPositivePattern_26 = value; } inline static int32_t get_offset_of_percentNegativePattern_27() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___percentNegativePattern_27)); } inline int32_t get_percentNegativePattern_27() const { return ___percentNegativePattern_27; } inline int32_t* get_address_of_percentNegativePattern_27() { return &___percentNegativePattern_27; } inline void set_percentNegativePattern_27(int32_t value) { ___percentNegativePattern_27 = value; } inline static int32_t get_offset_of_percentDecimalDigits_28() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___percentDecimalDigits_28)); } inline int32_t get_percentDecimalDigits_28() const { return ___percentDecimalDigits_28; } inline int32_t* get_address_of_percentDecimalDigits_28() { return &___percentDecimalDigits_28; } inline void set_percentDecimalDigits_28(int32_t value) { ___percentDecimalDigits_28 = value; } inline static int32_t get_offset_of_digitSubstitution_29() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___digitSubstitution_29)); } inline int32_t get_digitSubstitution_29() const { return ___digitSubstitution_29; } inline int32_t* get_address_of_digitSubstitution_29() { return &___digitSubstitution_29; } inline void set_digitSubstitution_29(int32_t value) { ___digitSubstitution_29 = value; } inline static int32_t get_offset_of_isReadOnly_30() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___isReadOnly_30)); } inline bool get_isReadOnly_30() const { return ___isReadOnly_30; } inline bool* get_address_of_isReadOnly_30() { return &___isReadOnly_30; } inline void set_isReadOnly_30(bool value) { ___isReadOnly_30 = value; } inline static int32_t get_offset_of_m_useUserOverride_31() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___m_useUserOverride_31)); } inline bool get_m_useUserOverride_31() const { return ___m_useUserOverride_31; } inline bool* get_address_of_m_useUserOverride_31() { return &___m_useUserOverride_31; } inline void set_m_useUserOverride_31(bool value) { ___m_useUserOverride_31 = value; } inline static int32_t get_offset_of_m_isInvariant_32() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___m_isInvariant_32)); } inline bool get_m_isInvariant_32() const { return ___m_isInvariant_32; } inline bool* get_address_of_m_isInvariant_32() { return &___m_isInvariant_32; } inline void set_m_isInvariant_32(bool value) { ___m_isInvariant_32 = value; } inline static int32_t get_offset_of_validForParseAsNumber_33() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___validForParseAsNumber_33)); } inline bool get_validForParseAsNumber_33() const { return ___validForParseAsNumber_33; } inline bool* get_address_of_validForParseAsNumber_33() { return &___validForParseAsNumber_33; } inline void set_validForParseAsNumber_33(bool value) { ___validForParseAsNumber_33 = value; } inline static int32_t get_offset_of_validForParseAsCurrency_34() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___validForParseAsCurrency_34)); } inline bool get_validForParseAsCurrency_34() const { return ___validForParseAsCurrency_34; } inline bool* get_address_of_validForParseAsCurrency_34() { return &___validForParseAsCurrency_34; } inline void set_validForParseAsCurrency_34(bool value) { ___validForParseAsCurrency_34 = value; } }; struct NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D_StaticFields { public: // System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.NumberFormatInfo::invariantInfo NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * ___invariantInfo_0; public: inline static int32_t get_offset_of_invariantInfo_0() { return static_cast(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D_StaticFields, ___invariantInfo_0)); } inline NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * get_invariantInfo_0() const { return ___invariantInfo_0; } inline NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D ** get_address_of_invariantInfo_0() { return &___invariantInfo_0; } inline void set_invariantInfo_0(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * value) { ___invariantInfo_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___invariantInfo_0), (void*)value); } }; // System.OperatingSystem struct OperatingSystem_tBB911FE4834884FD79AF78F2B07C19B938491463 : public RuntimeObject { public: // System.PlatformID System.OperatingSystem::_platform int32_t ____platform_0; // System.Version System.OperatingSystem::_version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ____version_1; // System.String System.OperatingSystem::_servicePack String_t* ____servicePack_2; public: inline static int32_t get_offset_of__platform_0() { return static_cast(offsetof(OperatingSystem_tBB911FE4834884FD79AF78F2B07C19B938491463, ____platform_0)); } inline int32_t get__platform_0() const { return ____platform_0; } inline int32_t* get_address_of__platform_0() { return &____platform_0; } inline void set__platform_0(int32_t value) { ____platform_0 = value; } inline static int32_t get_offset_of__version_1() { return static_cast(offsetof(OperatingSystem_tBB911FE4834884FD79AF78F2B07C19B938491463, ____version_1)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get__version_1() const { return ____version_1; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of__version_1() { return &____version_1; } inline void set__version_1(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ____version_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____version_1), (void*)value); } inline static int32_t get_offset_of__servicePack_2() { return static_cast(offsetof(OperatingSystem_tBB911FE4834884FD79AF78F2B07C19B938491463, ____servicePack_2)); } inline String_t* get__servicePack_2() const { return ____servicePack_2; } inline String_t** get_address_of__servicePack_2() { return &____servicePack_2; } inline void set__servicePack_2(String_t* value) { ____servicePack_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____servicePack_2), (void*)value); } }; // System.Reflection.ParameterInfo struct ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 : public RuntimeObject { public: // System.Type System.Reflection.ParameterInfo::ClassImpl Type_t * ___ClassImpl_0; // System.Object System.Reflection.ParameterInfo::DefaultValueImpl RuntimeObject * ___DefaultValueImpl_1; // System.Reflection.MemberInfo System.Reflection.ParameterInfo::MemberImpl MemberInfo_t * ___MemberImpl_2; // System.String System.Reflection.ParameterInfo::NameImpl String_t* ___NameImpl_3; // System.Int32 System.Reflection.ParameterInfo::PositionImpl int32_t ___PositionImpl_4; // System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::AttrsImpl int32_t ___AttrsImpl_5; // System.Runtime.InteropServices.MarshalAsAttribute System.Reflection.ParameterInfo::marshalAs MarshalAsAttribute_t1689F84A11C34D0F35491C8F0DA4421467B6EFE6 * ___marshalAs_6; public: inline static int32_t get_offset_of_ClassImpl_0() { return static_cast(offsetof(ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7, ___ClassImpl_0)); } inline Type_t * get_ClassImpl_0() const { return ___ClassImpl_0; } inline Type_t ** get_address_of_ClassImpl_0() { return &___ClassImpl_0; } inline void set_ClassImpl_0(Type_t * value) { ___ClassImpl_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___ClassImpl_0), (void*)value); } inline static int32_t get_offset_of_DefaultValueImpl_1() { return static_cast(offsetof(ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7, ___DefaultValueImpl_1)); } inline RuntimeObject * get_DefaultValueImpl_1() const { return ___DefaultValueImpl_1; } inline RuntimeObject ** get_address_of_DefaultValueImpl_1() { return &___DefaultValueImpl_1; } inline void set_DefaultValueImpl_1(RuntimeObject * value) { ___DefaultValueImpl_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___DefaultValueImpl_1), (void*)value); } inline static int32_t get_offset_of_MemberImpl_2() { return static_cast(offsetof(ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7, ___MemberImpl_2)); } inline MemberInfo_t * get_MemberImpl_2() const { return ___MemberImpl_2; } inline MemberInfo_t ** get_address_of_MemberImpl_2() { return &___MemberImpl_2; } inline void set_MemberImpl_2(MemberInfo_t * value) { ___MemberImpl_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___MemberImpl_2), (void*)value); } inline static int32_t get_offset_of_NameImpl_3() { return static_cast(offsetof(ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7, ___NameImpl_3)); } inline String_t* get_NameImpl_3() const { return ___NameImpl_3; } inline String_t** get_address_of_NameImpl_3() { return &___NameImpl_3; } inline void set_NameImpl_3(String_t* value) { ___NameImpl_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___NameImpl_3), (void*)value); } inline static int32_t get_offset_of_PositionImpl_4() { return static_cast(offsetof(ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7, ___PositionImpl_4)); } inline int32_t get_PositionImpl_4() const { return ___PositionImpl_4; } inline int32_t* get_address_of_PositionImpl_4() { return &___PositionImpl_4; } inline void set_PositionImpl_4(int32_t value) { ___PositionImpl_4 = value; } inline static int32_t get_offset_of_AttrsImpl_5() { return static_cast(offsetof(ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7, ___AttrsImpl_5)); } inline int32_t get_AttrsImpl_5() const { return ___AttrsImpl_5; } inline int32_t* get_address_of_AttrsImpl_5() { return &___AttrsImpl_5; } inline void set_AttrsImpl_5(int32_t value) { ___AttrsImpl_5 = value; } inline static int32_t get_offset_of_marshalAs_6() { return static_cast(offsetof(ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7, ___marshalAs_6)); } inline MarshalAsAttribute_t1689F84A11C34D0F35491C8F0DA4421467B6EFE6 * get_marshalAs_6() const { return ___marshalAs_6; } inline MarshalAsAttribute_t1689F84A11C34D0F35491C8F0DA4421467B6EFE6 ** get_address_of_marshalAs_6() { return &___marshalAs_6; } inline void set_marshalAs_6(MarshalAsAttribute_t1689F84A11C34D0F35491C8F0DA4421467B6EFE6 * value) { ___marshalAs_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___marshalAs_6), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Reflection.ParameterInfo struct ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7_marshaled_pinvoke { Type_t * ___ClassImpl_0; Il2CppIUnknown* ___DefaultValueImpl_1; MemberInfo_t * ___MemberImpl_2; char* ___NameImpl_3; int32_t ___PositionImpl_4; int32_t ___AttrsImpl_5; MarshalAsAttribute_t1689F84A11C34D0F35491C8F0DA4421467B6EFE6 * ___marshalAs_6; }; // Native definition for COM marshalling of System.Reflection.ParameterInfo struct ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7_marshaled_com { Type_t * ___ClassImpl_0; Il2CppIUnknown* ___DefaultValueImpl_1; MemberInfo_t * ___MemberImpl_2; Il2CppChar* ___NameImpl_3; int32_t ___PositionImpl_4; int32_t ___AttrsImpl_5; MarshalAsAttribute_t1689F84A11C34D0F35491C8F0DA4421467B6EFE6 * ___marshalAs_6; }; // System.Text.RegularExpressions.Regex struct Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F : public RuntimeObject { public: // System.String System.Text.RegularExpressions.Regex::pattern String_t* ___pattern_0; // System.Text.RegularExpressions.RegexRunnerFactory System.Text.RegularExpressions.Regex::factory RegexRunnerFactory_tA425EC5DC77FC0AAD86EB116E5483E94679CAA96 * ___factory_1; // System.Text.RegularExpressions.RegexOptions System.Text.RegularExpressions.Regex::roptions int32_t ___roptions_2; // System.TimeSpan System.Text.RegularExpressions.Regex::internalMatchTimeout TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___internalMatchTimeout_5; // System.Collections.Hashtable System.Text.RegularExpressions.Regex::caps Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___caps_9; // System.Collections.Hashtable System.Text.RegularExpressions.Regex::capnames Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___capnames_10; // System.String[] System.Text.RegularExpressions.Regex::capslist StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___capslist_11; // System.Int32 System.Text.RegularExpressions.Regex::capsize int32_t ___capsize_12; // System.Text.RegularExpressions.ExclusiveReference System.Text.RegularExpressions.Regex::runnerref ExclusiveReference_t7F4A5D2416EA34710F520BAD225E61BC1E98D1D8 * ___runnerref_13; // System.Text.RegularExpressions.SharedReference System.Text.RegularExpressions.Regex::replref SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926 * ___replref_14; // System.Text.RegularExpressions.RegexCode System.Text.RegularExpressions.Regex::code RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * ___code_15; // System.Boolean System.Text.RegularExpressions.Regex::refsInitialized bool ___refsInitialized_16; public: inline static int32_t get_offset_of_pattern_0() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___pattern_0)); } inline String_t* get_pattern_0() const { return ___pattern_0; } inline String_t** get_address_of_pattern_0() { return &___pattern_0; } inline void set_pattern_0(String_t* value) { ___pattern_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___pattern_0), (void*)value); } inline static int32_t get_offset_of_factory_1() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___factory_1)); } inline RegexRunnerFactory_tA425EC5DC77FC0AAD86EB116E5483E94679CAA96 * get_factory_1() const { return ___factory_1; } inline RegexRunnerFactory_tA425EC5DC77FC0AAD86EB116E5483E94679CAA96 ** get_address_of_factory_1() { return &___factory_1; } inline void set_factory_1(RegexRunnerFactory_tA425EC5DC77FC0AAD86EB116E5483E94679CAA96 * value) { ___factory_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___factory_1), (void*)value); } inline static int32_t get_offset_of_roptions_2() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___roptions_2)); } inline int32_t get_roptions_2() const { return ___roptions_2; } inline int32_t* get_address_of_roptions_2() { return &___roptions_2; } inline void set_roptions_2(int32_t value) { ___roptions_2 = value; } inline static int32_t get_offset_of_internalMatchTimeout_5() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___internalMatchTimeout_5)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_internalMatchTimeout_5() const { return ___internalMatchTimeout_5; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_internalMatchTimeout_5() { return &___internalMatchTimeout_5; } inline void set_internalMatchTimeout_5(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___internalMatchTimeout_5 = value; } inline static int32_t get_offset_of_caps_9() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___caps_9)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_caps_9() const { return ___caps_9; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_caps_9() { return &___caps_9; } inline void set_caps_9(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___caps_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___caps_9), (void*)value); } inline static int32_t get_offset_of_capnames_10() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___capnames_10)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_capnames_10() const { return ___capnames_10; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_capnames_10() { return &___capnames_10; } inline void set_capnames_10(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___capnames_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___capnames_10), (void*)value); } inline static int32_t get_offset_of_capslist_11() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___capslist_11)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_capslist_11() const { return ___capslist_11; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_capslist_11() { return &___capslist_11; } inline void set_capslist_11(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___capslist_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___capslist_11), (void*)value); } inline static int32_t get_offset_of_capsize_12() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___capsize_12)); } inline int32_t get_capsize_12() const { return ___capsize_12; } inline int32_t* get_address_of_capsize_12() { return &___capsize_12; } inline void set_capsize_12(int32_t value) { ___capsize_12 = value; } inline static int32_t get_offset_of_runnerref_13() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___runnerref_13)); } inline ExclusiveReference_t7F4A5D2416EA34710F520BAD225E61BC1E98D1D8 * get_runnerref_13() const { return ___runnerref_13; } inline ExclusiveReference_t7F4A5D2416EA34710F520BAD225E61BC1E98D1D8 ** get_address_of_runnerref_13() { return &___runnerref_13; } inline void set_runnerref_13(ExclusiveReference_t7F4A5D2416EA34710F520BAD225E61BC1E98D1D8 * value) { ___runnerref_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___runnerref_13), (void*)value); } inline static int32_t get_offset_of_replref_14() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___replref_14)); } inline SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926 * get_replref_14() const { return ___replref_14; } inline SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926 ** get_address_of_replref_14() { return &___replref_14; } inline void set_replref_14(SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926 * value) { ___replref_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___replref_14), (void*)value); } inline static int32_t get_offset_of_code_15() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___code_15)); } inline RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * get_code_15() const { return ___code_15; } inline RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 ** get_address_of_code_15() { return &___code_15; } inline void set_code_15(RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * value) { ___code_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___code_15), (void*)value); } inline static int32_t get_offset_of_refsInitialized_16() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___refsInitialized_16)); } inline bool get_refsInitialized_16() const { return ___refsInitialized_16; } inline bool* get_address_of_refsInitialized_16() { return &___refsInitialized_16; } inline void set_refsInitialized_16(bool value) { ___refsInitialized_16 = value; } }; struct Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields { public: // System.TimeSpan System.Text.RegularExpressions.Regex::MaximumMatchTimeout TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MaximumMatchTimeout_3; // System.TimeSpan System.Text.RegularExpressions.Regex::InfiniteMatchTimeout TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___InfiniteMatchTimeout_4; // System.TimeSpan System.Text.RegularExpressions.Regex::FallbackDefaultMatchTimeout TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___FallbackDefaultMatchTimeout_7; // System.TimeSpan System.Text.RegularExpressions.Regex::DefaultMatchTimeout TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___DefaultMatchTimeout_8; // System.Collections.Generic.LinkedList`1 System.Text.RegularExpressions.Regex::livecode LinkedList_1_t0AD3FC1D19E68F4B148AFF908DC3719C9B117D92 * ___livecode_17; // System.Int32 System.Text.RegularExpressions.Regex::cacheSize int32_t ___cacheSize_18; public: inline static int32_t get_offset_of_MaximumMatchTimeout_3() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___MaximumMatchTimeout_3)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MaximumMatchTimeout_3() const { return ___MaximumMatchTimeout_3; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MaximumMatchTimeout_3() { return &___MaximumMatchTimeout_3; } inline void set_MaximumMatchTimeout_3(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___MaximumMatchTimeout_3 = value; } inline static int32_t get_offset_of_InfiniteMatchTimeout_4() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___InfiniteMatchTimeout_4)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_InfiniteMatchTimeout_4() const { return ___InfiniteMatchTimeout_4; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_InfiniteMatchTimeout_4() { return &___InfiniteMatchTimeout_4; } inline void set_InfiniteMatchTimeout_4(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___InfiniteMatchTimeout_4 = value; } inline static int32_t get_offset_of_FallbackDefaultMatchTimeout_7() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___FallbackDefaultMatchTimeout_7)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_FallbackDefaultMatchTimeout_7() const { return ___FallbackDefaultMatchTimeout_7; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_FallbackDefaultMatchTimeout_7() { return &___FallbackDefaultMatchTimeout_7; } inline void set_FallbackDefaultMatchTimeout_7(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___FallbackDefaultMatchTimeout_7 = value; } inline static int32_t get_offset_of_DefaultMatchTimeout_8() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___DefaultMatchTimeout_8)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_DefaultMatchTimeout_8() const { return ___DefaultMatchTimeout_8; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_DefaultMatchTimeout_8() { return &___DefaultMatchTimeout_8; } inline void set_DefaultMatchTimeout_8(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___DefaultMatchTimeout_8 = value; } inline static int32_t get_offset_of_livecode_17() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___livecode_17)); } inline LinkedList_1_t0AD3FC1D19E68F4B148AFF908DC3719C9B117D92 * get_livecode_17() const { return ___livecode_17; } inline LinkedList_1_t0AD3FC1D19E68F4B148AFF908DC3719C9B117D92 ** get_address_of_livecode_17() { return &___livecode_17; } inline void set_livecode_17(LinkedList_1_t0AD3FC1D19E68F4B148AFF908DC3719C9B117D92 * value) { ___livecode_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___livecode_17), (void*)value); } inline static int32_t get_offset_of_cacheSize_18() { return static_cast(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___cacheSize_18)); } inline int32_t get_cacheSize_18() const { return ___cacheSize_18; } inline int32_t* get_address_of_cacheSize_18() { return &___cacheSize_18; } inline void set_cacheSize_18(int32_t value) { ___cacheSize_18 = value; } }; // System.Configuration.SettingsContext struct SettingsContext_tFA3A44BB61DD49BEFF0C8A07A62692555F7683CF : public Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC { public: public: }; // System.Runtime.Serialization.StreamingContext struct StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 { public: // System.Object System.Runtime.Serialization.StreamingContext::m_additionalContext RuntimeObject * ___m_additionalContext_0; // System.Runtime.Serialization.StreamingContextStates System.Runtime.Serialization.StreamingContext::m_state int32_t ___m_state_1; public: inline static int32_t get_offset_of_m_additionalContext_0() { return static_cast(offsetof(StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505, ___m_additionalContext_0)); } inline RuntimeObject * get_m_additionalContext_0() const { return ___m_additionalContext_0; } inline RuntimeObject ** get_address_of_m_additionalContext_0() { return &___m_additionalContext_0; } inline void set_m_additionalContext_0(RuntimeObject * value) { ___m_additionalContext_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_additionalContext_0), (void*)value); } inline static int32_t get_offset_of_m_state_1() { return static_cast(offsetof(StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505, ___m_state_1)); } inline int32_t get_m_state_1() const { return ___m_state_1; } inline int32_t* get_address_of_m_state_1() { return &___m_state_1; } inline void set_m_state_1(int32_t value) { ___m_state_1 = value; } }; // Native definition for P/Invoke marshalling of System.Runtime.Serialization.StreamingContext struct StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505_marshaled_pinvoke { Il2CppIUnknown* ___m_additionalContext_0; int32_t ___m_state_1; }; // Native definition for COM marshalling of System.Runtime.Serialization.StreamingContext struct StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505_marshaled_com { Il2CppIUnknown* ___m_additionalContext_0; int32_t ___m_state_1; }; // System.SystemException struct SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 : public Exception_t { public: public: }; // System.Type struct Type_t : public MemberInfo_t { public: // System.RuntimeTypeHandle System.Type::_impl RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ____impl_9; public: inline static int32_t get_offset_of__impl_9() { return static_cast(offsetof(Type_t, ____impl_9)); } inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 get__impl_9() const { return ____impl_9; } inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 * get_address_of__impl_9() { return &____impl_9; } inline void set__impl_9(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 value) { ____impl_9 = value; } }; struct Type_t_StaticFields { public: // System.Reflection.MemberFilter System.Type::FilterAttribute MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterAttribute_0; // System.Reflection.MemberFilter System.Type::FilterName MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterName_1; // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterNameIgnoreCase_2; // System.Object System.Type::Missing RuntimeObject * ___Missing_3; // System.Char System.Type::Delimiter Il2CppChar ___Delimiter_4; // System.Type[] System.Type::EmptyTypes TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___EmptyTypes_5; // System.Reflection.Binder System.Type::defaultBinder Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * ___defaultBinder_6; public: inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterAttribute_0() const { return ___FilterAttribute_0; } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; } inline void set_FilterAttribute_0(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value) { ___FilterAttribute_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value); } inline static int32_t get_offset_of_FilterName_1() { return static_cast(offsetof(Type_t_StaticFields, ___FilterName_1)); } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterName_1() const { return ___FilterName_1; } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterName_1() { return &___FilterName_1; } inline void set_FilterName_1(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value) { ___FilterName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value); } inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; } inline void set_FilterNameIgnoreCase_2(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value) { ___FilterNameIgnoreCase_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value); } inline static int32_t get_offset_of_Missing_3() { return static_cast(offsetof(Type_t_StaticFields, ___Missing_3)); } inline RuntimeObject * get_Missing_3() const { return ___Missing_3; } inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; } inline void set_Missing_3(RuntimeObject * value) { ___Missing_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value); } inline static int32_t get_offset_of_Delimiter_4() { return static_cast(offsetof(Type_t_StaticFields, ___Delimiter_4)); } inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; } inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; } inline void set_Delimiter_4(Il2CppChar value) { ___Delimiter_4 = value; } inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); } inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* get_EmptyTypes_5() const { return ___EmptyTypes_5; } inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; } inline void set_EmptyTypes_5(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* value) { ___EmptyTypes_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value); } inline static int32_t get_offset_of_defaultBinder_6() { return static_cast(offsetof(Type_t_StaticFields, ___defaultBinder_6)); } inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * get_defaultBinder_6() const { return ___defaultBinder_6; } inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; } inline void set_defaultBinder_6(Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * value) { ___defaultBinder_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value); } }; // System.Net.NetworkInformation.UnixNoLibCIPGlobalProperties struct UnixNoLibCIPGlobalProperties_t502C0D31B2B758E43415DE9EAEB6A24B3924355F : public UnixIPGlobalProperties_t17A56352BFACD974A0828F84CA3424941E39B021 { public: public: }; // System.Uri struct Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 : public RuntimeObject { public: // System.String System.Uri::m_String String_t* ___m_String_16; // System.String System.Uri::m_originalUnicodeString String_t* ___m_originalUnicodeString_17; // System.UriParser System.Uri::m_Syntax UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___m_Syntax_18; // System.String System.Uri::m_DnsSafeHost String_t* ___m_DnsSafeHost_19; // System.Uri/Flags System.Uri::m_Flags uint64_t ___m_Flags_20; // System.Uri/UriInfo System.Uri::m_Info UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * ___m_Info_21; // System.Boolean System.Uri::m_iriParsing bool ___m_iriParsing_22; public: inline static int32_t get_offset_of_m_String_16() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_String_16)); } inline String_t* get_m_String_16() const { return ___m_String_16; } inline String_t** get_address_of_m_String_16() { return &___m_String_16; } inline void set_m_String_16(String_t* value) { ___m_String_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_String_16), (void*)value); } inline static int32_t get_offset_of_m_originalUnicodeString_17() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_originalUnicodeString_17)); } inline String_t* get_m_originalUnicodeString_17() const { return ___m_originalUnicodeString_17; } inline String_t** get_address_of_m_originalUnicodeString_17() { return &___m_originalUnicodeString_17; } inline void set_m_originalUnicodeString_17(String_t* value) { ___m_originalUnicodeString_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_originalUnicodeString_17), (void*)value); } inline static int32_t get_offset_of_m_Syntax_18() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_Syntax_18)); } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * get_m_Syntax_18() const { return ___m_Syntax_18; } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** get_address_of_m_Syntax_18() { return &___m_Syntax_18; } inline void set_m_Syntax_18(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * value) { ___m_Syntax_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Syntax_18), (void*)value); } inline static int32_t get_offset_of_m_DnsSafeHost_19() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_DnsSafeHost_19)); } inline String_t* get_m_DnsSafeHost_19() const { return ___m_DnsSafeHost_19; } inline String_t** get_address_of_m_DnsSafeHost_19() { return &___m_DnsSafeHost_19; } inline void set_m_DnsSafeHost_19(String_t* value) { ___m_DnsSafeHost_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_DnsSafeHost_19), (void*)value); } inline static int32_t get_offset_of_m_Flags_20() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_Flags_20)); } inline uint64_t get_m_Flags_20() const { return ___m_Flags_20; } inline uint64_t* get_address_of_m_Flags_20() { return &___m_Flags_20; } inline void set_m_Flags_20(uint64_t value) { ___m_Flags_20 = value; } inline static int32_t get_offset_of_m_Info_21() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_Info_21)); } inline UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * get_m_Info_21() const { return ___m_Info_21; } inline UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 ** get_address_of_m_Info_21() { return &___m_Info_21; } inline void set_m_Info_21(UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * value) { ___m_Info_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Info_21), (void*)value); } inline static int32_t get_offset_of_m_iriParsing_22() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_iriParsing_22)); } inline bool get_m_iriParsing_22() const { return ___m_iriParsing_22; } inline bool* get_address_of_m_iriParsing_22() { return &___m_iriParsing_22; } inline void set_m_iriParsing_22(bool value) { ___m_iriParsing_22 = value; } }; struct Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields { public: // System.String System.Uri::UriSchemeFile String_t* ___UriSchemeFile_0; // System.String System.Uri::UriSchemeFtp String_t* ___UriSchemeFtp_1; // System.String System.Uri::UriSchemeGopher String_t* ___UriSchemeGopher_2; // System.String System.Uri::UriSchemeHttp String_t* ___UriSchemeHttp_3; // System.String System.Uri::UriSchemeHttps String_t* ___UriSchemeHttps_4; // System.String System.Uri::UriSchemeWs String_t* ___UriSchemeWs_5; // System.String System.Uri::UriSchemeWss String_t* ___UriSchemeWss_6; // System.String System.Uri::UriSchemeMailto String_t* ___UriSchemeMailto_7; // System.String System.Uri::UriSchemeNews String_t* ___UriSchemeNews_8; // System.String System.Uri::UriSchemeNntp String_t* ___UriSchemeNntp_9; // System.String System.Uri::UriSchemeNetTcp String_t* ___UriSchemeNetTcp_10; // System.String System.Uri::UriSchemeNetPipe String_t* ___UriSchemeNetPipe_11; // System.String System.Uri::SchemeDelimiter String_t* ___SchemeDelimiter_12; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_ConfigInitialized bool ___s_ConfigInitialized_23; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_ConfigInitializing bool ___s_ConfigInitializing_24; // System.UriIdnScope modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_IdnScope int32_t ___s_IdnScope_25; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_IriParsing bool ___s_IriParsing_26; // System.Boolean System.Uri::useDotNetRelativeOrAbsolute bool ___useDotNetRelativeOrAbsolute_27; // System.Boolean System.Uri::IsWindowsFileSystem bool ___IsWindowsFileSystem_29; // System.Object System.Uri::s_initLock RuntimeObject * ___s_initLock_30; // System.Char[] System.Uri::HexLowerChars CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___HexLowerChars_34; // System.Char[] System.Uri::_WSchars CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ____WSchars_35; public: inline static int32_t get_offset_of_UriSchemeFile_0() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeFile_0)); } inline String_t* get_UriSchemeFile_0() const { return ___UriSchemeFile_0; } inline String_t** get_address_of_UriSchemeFile_0() { return &___UriSchemeFile_0; } inline void set_UriSchemeFile_0(String_t* value) { ___UriSchemeFile_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeFile_0), (void*)value); } inline static int32_t get_offset_of_UriSchemeFtp_1() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeFtp_1)); } inline String_t* get_UriSchemeFtp_1() const { return ___UriSchemeFtp_1; } inline String_t** get_address_of_UriSchemeFtp_1() { return &___UriSchemeFtp_1; } inline void set_UriSchemeFtp_1(String_t* value) { ___UriSchemeFtp_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeFtp_1), (void*)value); } inline static int32_t get_offset_of_UriSchemeGopher_2() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeGopher_2)); } inline String_t* get_UriSchemeGopher_2() const { return ___UriSchemeGopher_2; } inline String_t** get_address_of_UriSchemeGopher_2() { return &___UriSchemeGopher_2; } inline void set_UriSchemeGopher_2(String_t* value) { ___UriSchemeGopher_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeGopher_2), (void*)value); } inline static int32_t get_offset_of_UriSchemeHttp_3() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeHttp_3)); } inline String_t* get_UriSchemeHttp_3() const { return ___UriSchemeHttp_3; } inline String_t** get_address_of_UriSchemeHttp_3() { return &___UriSchemeHttp_3; } inline void set_UriSchemeHttp_3(String_t* value) { ___UriSchemeHttp_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeHttp_3), (void*)value); } inline static int32_t get_offset_of_UriSchemeHttps_4() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeHttps_4)); } inline String_t* get_UriSchemeHttps_4() const { return ___UriSchemeHttps_4; } inline String_t** get_address_of_UriSchemeHttps_4() { return &___UriSchemeHttps_4; } inline void set_UriSchemeHttps_4(String_t* value) { ___UriSchemeHttps_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeHttps_4), (void*)value); } inline static int32_t get_offset_of_UriSchemeWs_5() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeWs_5)); } inline String_t* get_UriSchemeWs_5() const { return ___UriSchemeWs_5; } inline String_t** get_address_of_UriSchemeWs_5() { return &___UriSchemeWs_5; } inline void set_UriSchemeWs_5(String_t* value) { ___UriSchemeWs_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeWs_5), (void*)value); } inline static int32_t get_offset_of_UriSchemeWss_6() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeWss_6)); } inline String_t* get_UriSchemeWss_6() const { return ___UriSchemeWss_6; } inline String_t** get_address_of_UriSchemeWss_6() { return &___UriSchemeWss_6; } inline void set_UriSchemeWss_6(String_t* value) { ___UriSchemeWss_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeWss_6), (void*)value); } inline static int32_t get_offset_of_UriSchemeMailto_7() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeMailto_7)); } inline String_t* get_UriSchemeMailto_7() const { return ___UriSchemeMailto_7; } inline String_t** get_address_of_UriSchemeMailto_7() { return &___UriSchemeMailto_7; } inline void set_UriSchemeMailto_7(String_t* value) { ___UriSchemeMailto_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeMailto_7), (void*)value); } inline static int32_t get_offset_of_UriSchemeNews_8() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeNews_8)); } inline String_t* get_UriSchemeNews_8() const { return ___UriSchemeNews_8; } inline String_t** get_address_of_UriSchemeNews_8() { return &___UriSchemeNews_8; } inline void set_UriSchemeNews_8(String_t* value) { ___UriSchemeNews_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNews_8), (void*)value); } inline static int32_t get_offset_of_UriSchemeNntp_9() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeNntp_9)); } inline String_t* get_UriSchemeNntp_9() const { return ___UriSchemeNntp_9; } inline String_t** get_address_of_UriSchemeNntp_9() { return &___UriSchemeNntp_9; } inline void set_UriSchemeNntp_9(String_t* value) { ___UriSchemeNntp_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNntp_9), (void*)value); } inline static int32_t get_offset_of_UriSchemeNetTcp_10() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeNetTcp_10)); } inline String_t* get_UriSchemeNetTcp_10() const { return ___UriSchemeNetTcp_10; } inline String_t** get_address_of_UriSchemeNetTcp_10() { return &___UriSchemeNetTcp_10; } inline void set_UriSchemeNetTcp_10(String_t* value) { ___UriSchemeNetTcp_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNetTcp_10), (void*)value); } inline static int32_t get_offset_of_UriSchemeNetPipe_11() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeNetPipe_11)); } inline String_t* get_UriSchemeNetPipe_11() const { return ___UriSchemeNetPipe_11; } inline String_t** get_address_of_UriSchemeNetPipe_11() { return &___UriSchemeNetPipe_11; } inline void set_UriSchemeNetPipe_11(String_t* value) { ___UriSchemeNetPipe_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNetPipe_11), (void*)value); } inline static int32_t get_offset_of_SchemeDelimiter_12() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___SchemeDelimiter_12)); } inline String_t* get_SchemeDelimiter_12() const { return ___SchemeDelimiter_12; } inline String_t** get_address_of_SchemeDelimiter_12() { return &___SchemeDelimiter_12; } inline void set_SchemeDelimiter_12(String_t* value) { ___SchemeDelimiter_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___SchemeDelimiter_12), (void*)value); } inline static int32_t get_offset_of_s_ConfigInitialized_23() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_ConfigInitialized_23)); } inline bool get_s_ConfigInitialized_23() const { return ___s_ConfigInitialized_23; } inline bool* get_address_of_s_ConfigInitialized_23() { return &___s_ConfigInitialized_23; } inline void set_s_ConfigInitialized_23(bool value) { ___s_ConfigInitialized_23 = value; } inline static int32_t get_offset_of_s_ConfigInitializing_24() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_ConfigInitializing_24)); } inline bool get_s_ConfigInitializing_24() const { return ___s_ConfigInitializing_24; } inline bool* get_address_of_s_ConfigInitializing_24() { return &___s_ConfigInitializing_24; } inline void set_s_ConfigInitializing_24(bool value) { ___s_ConfigInitializing_24 = value; } inline static int32_t get_offset_of_s_IdnScope_25() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_IdnScope_25)); } inline int32_t get_s_IdnScope_25() const { return ___s_IdnScope_25; } inline int32_t* get_address_of_s_IdnScope_25() { return &___s_IdnScope_25; } inline void set_s_IdnScope_25(int32_t value) { ___s_IdnScope_25 = value; } inline static int32_t get_offset_of_s_IriParsing_26() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_IriParsing_26)); } inline bool get_s_IriParsing_26() const { return ___s_IriParsing_26; } inline bool* get_address_of_s_IriParsing_26() { return &___s_IriParsing_26; } inline void set_s_IriParsing_26(bool value) { ___s_IriParsing_26 = value; } inline static int32_t get_offset_of_useDotNetRelativeOrAbsolute_27() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___useDotNetRelativeOrAbsolute_27)); } inline bool get_useDotNetRelativeOrAbsolute_27() const { return ___useDotNetRelativeOrAbsolute_27; } inline bool* get_address_of_useDotNetRelativeOrAbsolute_27() { return &___useDotNetRelativeOrAbsolute_27; } inline void set_useDotNetRelativeOrAbsolute_27(bool value) { ___useDotNetRelativeOrAbsolute_27 = value; } inline static int32_t get_offset_of_IsWindowsFileSystem_29() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___IsWindowsFileSystem_29)); } inline bool get_IsWindowsFileSystem_29() const { return ___IsWindowsFileSystem_29; } inline bool* get_address_of_IsWindowsFileSystem_29() { return &___IsWindowsFileSystem_29; } inline void set_IsWindowsFileSystem_29(bool value) { ___IsWindowsFileSystem_29 = value; } inline static int32_t get_offset_of_s_initLock_30() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_initLock_30)); } inline RuntimeObject * get_s_initLock_30() const { return ___s_initLock_30; } inline RuntimeObject ** get_address_of_s_initLock_30() { return &___s_initLock_30; } inline void set_s_initLock_30(RuntimeObject * value) { ___s_initLock_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_initLock_30), (void*)value); } inline static int32_t get_offset_of_HexLowerChars_34() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___HexLowerChars_34)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_HexLowerChars_34() const { return ___HexLowerChars_34; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_HexLowerChars_34() { return &___HexLowerChars_34; } inline void set_HexLowerChars_34(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___HexLowerChars_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___HexLowerChars_34), (void*)value); } inline static int32_t get_offset_of__WSchars_35() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ____WSchars_35)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get__WSchars_35() const { return ____WSchars_35; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of__WSchars_35() { return &____WSchars_35; } inline void set__WSchars_35(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ____WSchars_35 = value; Il2CppCodeGenWriteBarrier((void**)(&____WSchars_35), (void*)value); } }; // System.Net.WebHeaderCollection struct WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 : public NameValueCollection_tE3BED11C58844E8A4D9A74F359692B9A51781B4D { public: // System.String[] System.Net.WebHeaderCollection::m_CommonHeaders StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___m_CommonHeaders_12; // System.Int32 System.Net.WebHeaderCollection::m_NumCommonHeaders int32_t ___m_NumCommonHeaders_13; // System.Collections.Specialized.NameValueCollection System.Net.WebHeaderCollection::m_InnerCollection NameValueCollection_tE3BED11C58844E8A4D9A74F359692B9A51781B4D * ___m_InnerCollection_16; // System.Net.WebHeaderCollectionType System.Net.WebHeaderCollection::m_Type uint16_t ___m_Type_17; public: inline static int32_t get_offset_of_m_CommonHeaders_12() { return static_cast(offsetof(WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4, ___m_CommonHeaders_12)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_m_CommonHeaders_12() const { return ___m_CommonHeaders_12; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_m_CommonHeaders_12() { return &___m_CommonHeaders_12; } inline void set_m_CommonHeaders_12(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___m_CommonHeaders_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_CommonHeaders_12), (void*)value); } inline static int32_t get_offset_of_m_NumCommonHeaders_13() { return static_cast(offsetof(WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4, ___m_NumCommonHeaders_13)); } inline int32_t get_m_NumCommonHeaders_13() const { return ___m_NumCommonHeaders_13; } inline int32_t* get_address_of_m_NumCommonHeaders_13() { return &___m_NumCommonHeaders_13; } inline void set_m_NumCommonHeaders_13(int32_t value) { ___m_NumCommonHeaders_13 = value; } inline static int32_t get_offset_of_m_InnerCollection_16() { return static_cast(offsetof(WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4, ___m_InnerCollection_16)); } inline NameValueCollection_tE3BED11C58844E8A4D9A74F359692B9A51781B4D * get_m_InnerCollection_16() const { return ___m_InnerCollection_16; } inline NameValueCollection_tE3BED11C58844E8A4D9A74F359692B9A51781B4D ** get_address_of_m_InnerCollection_16() { return &___m_InnerCollection_16; } inline void set_m_InnerCollection_16(NameValueCollection_tE3BED11C58844E8A4D9A74F359692B9A51781B4D * value) { ___m_InnerCollection_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_InnerCollection_16), (void*)value); } inline static int32_t get_offset_of_m_Type_17() { return static_cast(offsetof(WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4, ___m_Type_17)); } inline uint16_t get_m_Type_17() const { return ___m_Type_17; } inline uint16_t* get_address_of_m_Type_17() { return &___m_Type_17; } inline void set_m_Type_17(uint16_t value) { ___m_Type_17 = value; } }; struct WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4_StaticFields { public: // System.Net.HeaderInfoTable System.Net.WebHeaderCollection::HInfo HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4 * ___HInfo_11; // System.String[] System.Net.WebHeaderCollection::s_CommonHeaderNames StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___s_CommonHeaderNames_14; // System.SByte[] System.Net.WebHeaderCollection::s_CommonHeaderHints SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7* ___s_CommonHeaderHints_15; // System.Char[] System.Net.WebHeaderCollection::HttpTrimCharacters CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___HttpTrimCharacters_18; // System.Net.WebHeaderCollection/RfcChar[] System.Net.WebHeaderCollection::RfcCharMap RfcCharU5BU5D_t58A49D25CFFD1B17023C3AD1BE05914C4A3FE8D3* ___RfcCharMap_19; public: inline static int32_t get_offset_of_HInfo_11() { return static_cast(offsetof(WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4_StaticFields, ___HInfo_11)); } inline HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4 * get_HInfo_11() const { return ___HInfo_11; } inline HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4 ** get_address_of_HInfo_11() { return &___HInfo_11; } inline void set_HInfo_11(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4 * value) { ___HInfo_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___HInfo_11), (void*)value); } inline static int32_t get_offset_of_s_CommonHeaderNames_14() { return static_cast(offsetof(WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4_StaticFields, ___s_CommonHeaderNames_14)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_s_CommonHeaderNames_14() const { return ___s_CommonHeaderNames_14; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_s_CommonHeaderNames_14() { return &___s_CommonHeaderNames_14; } inline void set_s_CommonHeaderNames_14(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___s_CommonHeaderNames_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_CommonHeaderNames_14), (void*)value); } inline static int32_t get_offset_of_s_CommonHeaderHints_15() { return static_cast(offsetof(WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4_StaticFields, ___s_CommonHeaderHints_15)); } inline SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7* get_s_CommonHeaderHints_15() const { return ___s_CommonHeaderHints_15; } inline SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7** get_address_of_s_CommonHeaderHints_15() { return &___s_CommonHeaderHints_15; } inline void set_s_CommonHeaderHints_15(SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7* value) { ___s_CommonHeaderHints_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_CommonHeaderHints_15), (void*)value); } inline static int32_t get_offset_of_HttpTrimCharacters_18() { return static_cast(offsetof(WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4_StaticFields, ___HttpTrimCharacters_18)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_HttpTrimCharacters_18() const { return ___HttpTrimCharacters_18; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_HttpTrimCharacters_18() { return &___HttpTrimCharacters_18; } inline void set_HttpTrimCharacters_18(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___HttpTrimCharacters_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___HttpTrimCharacters_18), (void*)value); } inline static int32_t get_offset_of_RfcCharMap_19() { return static_cast(offsetof(WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4_StaticFields, ___RfcCharMap_19)); } inline RfcCharU5BU5D_t58A49D25CFFD1B17023C3AD1BE05914C4A3FE8D3* get_RfcCharMap_19() const { return ___RfcCharMap_19; } inline RfcCharU5BU5D_t58A49D25CFFD1B17023C3AD1BE05914C4A3FE8D3** get_address_of_RfcCharMap_19() { return &___RfcCharMap_19; } inline void set_RfcCharMap_19(RfcCharU5BU5D_t58A49D25CFFD1B17023C3AD1BE05914C4A3FE8D3* value) { ___RfcCharMap_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___RfcCharMap_19), (void*)value); } }; // System.Net.WebRequest struct WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E : public MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 { public: // System.Net.Security.AuthenticationLevel System.Net.WebRequest::m_AuthenticationLevel int32_t ___m_AuthenticationLevel_4; // System.Security.Principal.TokenImpersonationLevel System.Net.WebRequest::m_ImpersonationLevel int32_t ___m_ImpersonationLevel_5; // System.Net.Cache.RequestCachePolicy System.Net.WebRequest::m_CachePolicy RequestCachePolicy_tC080799EE2DA10B7F24B2E69ABBF5636EB2D43ED * ___m_CachePolicy_6; // System.Net.Cache.RequestCacheProtocol System.Net.WebRequest::m_CacheProtocol RequestCacheProtocol_tD3294F615CA528D71DE764785CCE49EBBAD3E2A7 * ___m_CacheProtocol_7; // System.Net.Cache.RequestCacheBinding System.Net.WebRequest::m_CacheBinding RequestCacheBinding_tE74959972BA5BEBD27642CC91FD5E4A0A6BFA447 * ___m_CacheBinding_8; public: inline static int32_t get_offset_of_m_AuthenticationLevel_4() { return static_cast(offsetof(WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E, ___m_AuthenticationLevel_4)); } inline int32_t get_m_AuthenticationLevel_4() const { return ___m_AuthenticationLevel_4; } inline int32_t* get_address_of_m_AuthenticationLevel_4() { return &___m_AuthenticationLevel_4; } inline void set_m_AuthenticationLevel_4(int32_t value) { ___m_AuthenticationLevel_4 = value; } inline static int32_t get_offset_of_m_ImpersonationLevel_5() { return static_cast(offsetof(WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E, ___m_ImpersonationLevel_5)); } inline int32_t get_m_ImpersonationLevel_5() const { return ___m_ImpersonationLevel_5; } inline int32_t* get_address_of_m_ImpersonationLevel_5() { return &___m_ImpersonationLevel_5; } inline void set_m_ImpersonationLevel_5(int32_t value) { ___m_ImpersonationLevel_5 = value; } inline static int32_t get_offset_of_m_CachePolicy_6() { return static_cast(offsetof(WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E, ___m_CachePolicy_6)); } inline RequestCachePolicy_tC080799EE2DA10B7F24B2E69ABBF5636EB2D43ED * get_m_CachePolicy_6() const { return ___m_CachePolicy_6; } inline RequestCachePolicy_tC080799EE2DA10B7F24B2E69ABBF5636EB2D43ED ** get_address_of_m_CachePolicy_6() { return &___m_CachePolicy_6; } inline void set_m_CachePolicy_6(RequestCachePolicy_tC080799EE2DA10B7F24B2E69ABBF5636EB2D43ED * value) { ___m_CachePolicy_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_CachePolicy_6), (void*)value); } inline static int32_t get_offset_of_m_CacheProtocol_7() { return static_cast(offsetof(WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E, ___m_CacheProtocol_7)); } inline RequestCacheProtocol_tD3294F615CA528D71DE764785CCE49EBBAD3E2A7 * get_m_CacheProtocol_7() const { return ___m_CacheProtocol_7; } inline RequestCacheProtocol_tD3294F615CA528D71DE764785CCE49EBBAD3E2A7 ** get_address_of_m_CacheProtocol_7() { return &___m_CacheProtocol_7; } inline void set_m_CacheProtocol_7(RequestCacheProtocol_tD3294F615CA528D71DE764785CCE49EBBAD3E2A7 * value) { ___m_CacheProtocol_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_CacheProtocol_7), (void*)value); } inline static int32_t get_offset_of_m_CacheBinding_8() { return static_cast(offsetof(WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E, ___m_CacheBinding_8)); } inline RequestCacheBinding_tE74959972BA5BEBD27642CC91FD5E4A0A6BFA447 * get_m_CacheBinding_8() const { return ___m_CacheBinding_8; } inline RequestCacheBinding_tE74959972BA5BEBD27642CC91FD5E4A0A6BFA447 ** get_address_of_m_CacheBinding_8() { return &___m_CacheBinding_8; } inline void set_m_CacheBinding_8(RequestCacheBinding_tE74959972BA5BEBD27642CC91FD5E4A0A6BFA447 * value) { ___m_CacheBinding_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_CacheBinding_8), (void*)value); } }; struct WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E_StaticFields { public: // System.Collections.ArrayList modreq(System.Runtime.CompilerServices.IsVolatile) System.Net.WebRequest::s_PrefixList ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___s_PrefixList_1; // System.Object System.Net.WebRequest::s_InternalSyncObject RuntimeObject * ___s_InternalSyncObject_2; // System.Net.TimerThread/Queue System.Net.WebRequest::s_DefaultTimerQueue Queue_tBA613BE3643BDEB5F58ACBD9BD6499402CA178BB * ___s_DefaultTimerQueue_3; // System.Net.WebRequest/DesignerWebRequestCreate System.Net.WebRequest::webRequestCreate DesignerWebRequestCreate_tC9CEDD13174469ABB2A24A158F14669B05BA262A * ___webRequestCreate_9; // System.Net.IWebProxy modreq(System.Runtime.CompilerServices.IsVolatile) System.Net.WebRequest::s_DefaultWebProxy RuntimeObject* ___s_DefaultWebProxy_10; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Net.WebRequest::s_DefaultWebProxyInitialized bool ___s_DefaultWebProxyInitialized_11; public: inline static int32_t get_offset_of_s_PrefixList_1() { return static_cast(offsetof(WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E_StaticFields, ___s_PrefixList_1)); } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * get_s_PrefixList_1() const { return ___s_PrefixList_1; } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** get_address_of_s_PrefixList_1() { return &___s_PrefixList_1; } inline void set_s_PrefixList_1(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * value) { ___s_PrefixList_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_PrefixList_1), (void*)value); } inline static int32_t get_offset_of_s_InternalSyncObject_2() { return static_cast(offsetof(WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E_StaticFields, ___s_InternalSyncObject_2)); } inline RuntimeObject * get_s_InternalSyncObject_2() const { return ___s_InternalSyncObject_2; } inline RuntimeObject ** get_address_of_s_InternalSyncObject_2() { return &___s_InternalSyncObject_2; } inline void set_s_InternalSyncObject_2(RuntimeObject * value) { ___s_InternalSyncObject_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_InternalSyncObject_2), (void*)value); } inline static int32_t get_offset_of_s_DefaultTimerQueue_3() { return static_cast(offsetof(WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E_StaticFields, ___s_DefaultTimerQueue_3)); } inline Queue_tBA613BE3643BDEB5F58ACBD9BD6499402CA178BB * get_s_DefaultTimerQueue_3() const { return ___s_DefaultTimerQueue_3; } inline Queue_tBA613BE3643BDEB5F58ACBD9BD6499402CA178BB ** get_address_of_s_DefaultTimerQueue_3() { return &___s_DefaultTimerQueue_3; } inline void set_s_DefaultTimerQueue_3(Queue_tBA613BE3643BDEB5F58ACBD9BD6499402CA178BB * value) { ___s_DefaultTimerQueue_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultTimerQueue_3), (void*)value); } inline static int32_t get_offset_of_webRequestCreate_9() { return static_cast(offsetof(WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E_StaticFields, ___webRequestCreate_9)); } inline DesignerWebRequestCreate_tC9CEDD13174469ABB2A24A158F14669B05BA262A * get_webRequestCreate_9() const { return ___webRequestCreate_9; } inline DesignerWebRequestCreate_tC9CEDD13174469ABB2A24A158F14669B05BA262A ** get_address_of_webRequestCreate_9() { return &___webRequestCreate_9; } inline void set_webRequestCreate_9(DesignerWebRequestCreate_tC9CEDD13174469ABB2A24A158F14669B05BA262A * value) { ___webRequestCreate_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___webRequestCreate_9), (void*)value); } inline static int32_t get_offset_of_s_DefaultWebProxy_10() { return static_cast(offsetof(WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E_StaticFields, ___s_DefaultWebProxy_10)); } inline RuntimeObject* get_s_DefaultWebProxy_10() const { return ___s_DefaultWebProxy_10; } inline RuntimeObject** get_address_of_s_DefaultWebProxy_10() { return &___s_DefaultWebProxy_10; } inline void set_s_DefaultWebProxy_10(RuntimeObject* value) { ___s_DefaultWebProxy_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultWebProxy_10), (void*)value); } inline static int32_t get_offset_of_s_DefaultWebProxyInitialized_11() { return static_cast(offsetof(WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E_StaticFields, ___s_DefaultWebProxyInitialized_11)); } inline bool get_s_DefaultWebProxyInitialized_11() const { return ___s_DefaultWebProxyInitialized_11; } inline bool* get_address_of_s_DefaultWebProxyInitialized_11() { return &___s_DefaultWebProxyInitialized_11; } inline void set_s_DefaultWebProxyInitialized_11(bool value) { ___s_DefaultWebProxyInitialized_11 = value; } }; // System.Net.WebRequestStream struct WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887 : public WebConnectionStream_t3D04BDBD47522FD7C97ABF7F1B4498F72FA2E918 { public: // System.IO.MemoryStream System.Net.WebRequestStream::writeBuffer MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * ___writeBuffer_16; // System.Boolean System.Net.WebRequestStream::requestWritten bool ___requestWritten_17; // System.Boolean System.Net.WebRequestStream::allowBuffering bool ___allowBuffering_18; // System.Boolean System.Net.WebRequestStream::sendChunked bool ___sendChunked_19; // System.Net.WebCompletionSource System.Net.WebRequestStream::pendingWrite WebCompletionSource_tF1258B468350A374EC59049FE0E31C7879D6AB1E * ___pendingWrite_20; // System.Int64 System.Net.WebRequestStream::totalWritten int64_t ___totalWritten_21; // System.Byte[] System.Net.WebRequestStream::headers ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___headers_22; // System.Boolean System.Net.WebRequestStream::headersSent bool ___headersSent_23; // System.Int32 System.Net.WebRequestStream::completeRequestWritten int32_t ___completeRequestWritten_24; // System.Int32 System.Net.WebRequestStream::chunkTrailerWritten int32_t ___chunkTrailerWritten_25; // System.Boolean System.Net.WebRequestStream::k__BackingField bool ___U3CKeepAliveU3Ek__BackingField_26; public: inline static int32_t get_offset_of_writeBuffer_16() { return static_cast(offsetof(WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887, ___writeBuffer_16)); } inline MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * get_writeBuffer_16() const { return ___writeBuffer_16; } inline MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C ** get_address_of_writeBuffer_16() { return &___writeBuffer_16; } inline void set_writeBuffer_16(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * value) { ___writeBuffer_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___writeBuffer_16), (void*)value); } inline static int32_t get_offset_of_requestWritten_17() { return static_cast(offsetof(WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887, ___requestWritten_17)); } inline bool get_requestWritten_17() const { return ___requestWritten_17; } inline bool* get_address_of_requestWritten_17() { return &___requestWritten_17; } inline void set_requestWritten_17(bool value) { ___requestWritten_17 = value; } inline static int32_t get_offset_of_allowBuffering_18() { return static_cast(offsetof(WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887, ___allowBuffering_18)); } inline bool get_allowBuffering_18() const { return ___allowBuffering_18; } inline bool* get_address_of_allowBuffering_18() { return &___allowBuffering_18; } inline void set_allowBuffering_18(bool value) { ___allowBuffering_18 = value; } inline static int32_t get_offset_of_sendChunked_19() { return static_cast(offsetof(WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887, ___sendChunked_19)); } inline bool get_sendChunked_19() const { return ___sendChunked_19; } inline bool* get_address_of_sendChunked_19() { return &___sendChunked_19; } inline void set_sendChunked_19(bool value) { ___sendChunked_19 = value; } inline static int32_t get_offset_of_pendingWrite_20() { return static_cast(offsetof(WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887, ___pendingWrite_20)); } inline WebCompletionSource_tF1258B468350A374EC59049FE0E31C7879D6AB1E * get_pendingWrite_20() const { return ___pendingWrite_20; } inline WebCompletionSource_tF1258B468350A374EC59049FE0E31C7879D6AB1E ** get_address_of_pendingWrite_20() { return &___pendingWrite_20; } inline void set_pendingWrite_20(WebCompletionSource_tF1258B468350A374EC59049FE0E31C7879D6AB1E * value) { ___pendingWrite_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___pendingWrite_20), (void*)value); } inline static int32_t get_offset_of_totalWritten_21() { return static_cast(offsetof(WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887, ___totalWritten_21)); } inline int64_t get_totalWritten_21() const { return ___totalWritten_21; } inline int64_t* get_address_of_totalWritten_21() { return &___totalWritten_21; } inline void set_totalWritten_21(int64_t value) { ___totalWritten_21 = value; } inline static int32_t get_offset_of_headers_22() { return static_cast(offsetof(WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887, ___headers_22)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_headers_22() const { return ___headers_22; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_headers_22() { return &___headers_22; } inline void set_headers_22(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___headers_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___headers_22), (void*)value); } inline static int32_t get_offset_of_headersSent_23() { return static_cast(offsetof(WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887, ___headersSent_23)); } inline bool get_headersSent_23() const { return ___headersSent_23; } inline bool* get_address_of_headersSent_23() { return &___headersSent_23; } inline void set_headersSent_23(bool value) { ___headersSent_23 = value; } inline static int32_t get_offset_of_completeRequestWritten_24() { return static_cast(offsetof(WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887, ___completeRequestWritten_24)); } inline int32_t get_completeRequestWritten_24() const { return ___completeRequestWritten_24; } inline int32_t* get_address_of_completeRequestWritten_24() { return &___completeRequestWritten_24; } inline void set_completeRequestWritten_24(int32_t value) { ___completeRequestWritten_24 = value; } inline static int32_t get_offset_of_chunkTrailerWritten_25() { return static_cast(offsetof(WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887, ___chunkTrailerWritten_25)); } inline int32_t get_chunkTrailerWritten_25() const { return ___chunkTrailerWritten_25; } inline int32_t* get_address_of_chunkTrailerWritten_25() { return &___chunkTrailerWritten_25; } inline void set_chunkTrailerWritten_25(int32_t value) { ___chunkTrailerWritten_25 = value; } inline static int32_t get_offset_of_U3CKeepAliveU3Ek__BackingField_26() { return static_cast(offsetof(WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887, ___U3CKeepAliveU3Ek__BackingField_26)); } inline bool get_U3CKeepAliveU3Ek__BackingField_26() const { return ___U3CKeepAliveU3Ek__BackingField_26; } inline bool* get_address_of_U3CKeepAliveU3Ek__BackingField_26() { return &___U3CKeepAliveU3Ek__BackingField_26; } inline void set_U3CKeepAliveU3Ek__BackingField_26(bool value) { ___U3CKeepAliveU3Ek__BackingField_26 = value; } }; struct WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887_StaticFields { public: // System.Byte[] System.Net.WebRequestStream::crlf ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___crlf_15; public: inline static int32_t get_offset_of_crlf_15() { return static_cast(offsetof(WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887_StaticFields, ___crlf_15)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_crlf_15() const { return ___crlf_15; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_crlf_15() { return &___crlf_15; } inline void set_crlf_15(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___crlf_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___crlf_15), (void*)value); } }; // System.Net.WebResponseStream struct WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F : public WebConnectionStream_t3D04BDBD47522FD7C97ABF7F1B4498F72FA2E918 { public: // System.Net.BufferOffsetSize System.Net.WebResponseStream::readBuffer BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F * ___readBuffer_15; // System.Int64 System.Net.WebResponseStream::contentLength int64_t ___contentLength_16; // System.Int64 System.Net.WebResponseStream::totalRead int64_t ___totalRead_17; // System.Boolean System.Net.WebResponseStream::nextReadCalled bool ___nextReadCalled_18; // System.Int32 System.Net.WebResponseStream::stream_length int32_t ___stream_length_19; // System.Net.WebCompletionSource System.Net.WebResponseStream::pendingRead WebCompletionSource_tF1258B468350A374EC59049FE0E31C7879D6AB1E * ___pendingRead_20; // System.Object System.Net.WebResponseStream::locker RuntimeObject * ___locker_21; // System.Int32 System.Net.WebResponseStream::nestedRead int32_t ___nestedRead_22; // System.Boolean System.Net.WebResponseStream::read_eof bool ___read_eof_23; // System.Net.WebRequestStream System.Net.WebResponseStream::k__BackingField WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887 * ___U3CRequestStreamU3Ek__BackingField_24; // System.Net.WebHeaderCollection System.Net.WebResponseStream::k__BackingField WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * ___U3CHeadersU3Ek__BackingField_25; // System.Net.HttpStatusCode System.Net.WebResponseStream::k__BackingField int32_t ___U3CStatusCodeU3Ek__BackingField_26; // System.String System.Net.WebResponseStream::k__BackingField String_t* ___U3CStatusDescriptionU3Ek__BackingField_27; // System.Version System.Net.WebResponseStream::k__BackingField Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___U3CVersionU3Ek__BackingField_28; // System.Boolean System.Net.WebResponseStream::k__BackingField bool ___U3CKeepAliveU3Ek__BackingField_29; // System.Boolean System.Net.WebResponseStream::k__BackingField bool ___U3CChunkedReadU3Ek__BackingField_30; // System.Net.MonoChunkStream System.Net.WebResponseStream::k__BackingField MonoChunkStream_t890E01BB394186CFA1A1B92B07A1F996E9A2C9E7 * ___U3CChunkStreamU3Ek__BackingField_31; public: inline static int32_t get_offset_of_readBuffer_15() { return static_cast(offsetof(WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F, ___readBuffer_15)); } inline BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F * get_readBuffer_15() const { return ___readBuffer_15; } inline BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F ** get_address_of_readBuffer_15() { return &___readBuffer_15; } inline void set_readBuffer_15(BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F * value) { ___readBuffer_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___readBuffer_15), (void*)value); } inline static int32_t get_offset_of_contentLength_16() { return static_cast(offsetof(WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F, ___contentLength_16)); } inline int64_t get_contentLength_16() const { return ___contentLength_16; } inline int64_t* get_address_of_contentLength_16() { return &___contentLength_16; } inline void set_contentLength_16(int64_t value) { ___contentLength_16 = value; } inline static int32_t get_offset_of_totalRead_17() { return static_cast(offsetof(WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F, ___totalRead_17)); } inline int64_t get_totalRead_17() const { return ___totalRead_17; } inline int64_t* get_address_of_totalRead_17() { return &___totalRead_17; } inline void set_totalRead_17(int64_t value) { ___totalRead_17 = value; } inline static int32_t get_offset_of_nextReadCalled_18() { return static_cast(offsetof(WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F, ___nextReadCalled_18)); } inline bool get_nextReadCalled_18() const { return ___nextReadCalled_18; } inline bool* get_address_of_nextReadCalled_18() { return &___nextReadCalled_18; } inline void set_nextReadCalled_18(bool value) { ___nextReadCalled_18 = value; } inline static int32_t get_offset_of_stream_length_19() { return static_cast(offsetof(WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F, ___stream_length_19)); } inline int32_t get_stream_length_19() const { return ___stream_length_19; } inline int32_t* get_address_of_stream_length_19() { return &___stream_length_19; } inline void set_stream_length_19(int32_t value) { ___stream_length_19 = value; } inline static int32_t get_offset_of_pendingRead_20() { return static_cast(offsetof(WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F, ___pendingRead_20)); } inline WebCompletionSource_tF1258B468350A374EC59049FE0E31C7879D6AB1E * get_pendingRead_20() const { return ___pendingRead_20; } inline WebCompletionSource_tF1258B468350A374EC59049FE0E31C7879D6AB1E ** get_address_of_pendingRead_20() { return &___pendingRead_20; } inline void set_pendingRead_20(WebCompletionSource_tF1258B468350A374EC59049FE0E31C7879D6AB1E * value) { ___pendingRead_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___pendingRead_20), (void*)value); } inline static int32_t get_offset_of_locker_21() { return static_cast(offsetof(WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F, ___locker_21)); } inline RuntimeObject * get_locker_21() const { return ___locker_21; } inline RuntimeObject ** get_address_of_locker_21() { return &___locker_21; } inline void set_locker_21(RuntimeObject * value) { ___locker_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___locker_21), (void*)value); } inline static int32_t get_offset_of_nestedRead_22() { return static_cast(offsetof(WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F, ___nestedRead_22)); } inline int32_t get_nestedRead_22() const { return ___nestedRead_22; } inline int32_t* get_address_of_nestedRead_22() { return &___nestedRead_22; } inline void set_nestedRead_22(int32_t value) { ___nestedRead_22 = value; } inline static int32_t get_offset_of_read_eof_23() { return static_cast(offsetof(WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F, ___read_eof_23)); } inline bool get_read_eof_23() const { return ___read_eof_23; } inline bool* get_address_of_read_eof_23() { return &___read_eof_23; } inline void set_read_eof_23(bool value) { ___read_eof_23 = value; } inline static int32_t get_offset_of_U3CRequestStreamU3Ek__BackingField_24() { return static_cast(offsetof(WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F, ___U3CRequestStreamU3Ek__BackingField_24)); } inline WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887 * get_U3CRequestStreamU3Ek__BackingField_24() const { return ___U3CRequestStreamU3Ek__BackingField_24; } inline WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887 ** get_address_of_U3CRequestStreamU3Ek__BackingField_24() { return &___U3CRequestStreamU3Ek__BackingField_24; } inline void set_U3CRequestStreamU3Ek__BackingField_24(WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887 * value) { ___U3CRequestStreamU3Ek__BackingField_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CRequestStreamU3Ek__BackingField_24), (void*)value); } inline static int32_t get_offset_of_U3CHeadersU3Ek__BackingField_25() { return static_cast(offsetof(WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F, ___U3CHeadersU3Ek__BackingField_25)); } inline WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * get_U3CHeadersU3Ek__BackingField_25() const { return ___U3CHeadersU3Ek__BackingField_25; } inline WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 ** get_address_of_U3CHeadersU3Ek__BackingField_25() { return &___U3CHeadersU3Ek__BackingField_25; } inline void set_U3CHeadersU3Ek__BackingField_25(WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * value) { ___U3CHeadersU3Ek__BackingField_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CHeadersU3Ek__BackingField_25), (void*)value); } inline static int32_t get_offset_of_U3CStatusCodeU3Ek__BackingField_26() { return static_cast(offsetof(WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F, ___U3CStatusCodeU3Ek__BackingField_26)); } inline int32_t get_U3CStatusCodeU3Ek__BackingField_26() const { return ___U3CStatusCodeU3Ek__BackingField_26; } inline int32_t* get_address_of_U3CStatusCodeU3Ek__BackingField_26() { return &___U3CStatusCodeU3Ek__BackingField_26; } inline void set_U3CStatusCodeU3Ek__BackingField_26(int32_t value) { ___U3CStatusCodeU3Ek__BackingField_26 = value; } inline static int32_t get_offset_of_U3CStatusDescriptionU3Ek__BackingField_27() { return static_cast(offsetof(WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F, ___U3CStatusDescriptionU3Ek__BackingField_27)); } inline String_t* get_U3CStatusDescriptionU3Ek__BackingField_27() const { return ___U3CStatusDescriptionU3Ek__BackingField_27; } inline String_t** get_address_of_U3CStatusDescriptionU3Ek__BackingField_27() { return &___U3CStatusDescriptionU3Ek__BackingField_27; } inline void set_U3CStatusDescriptionU3Ek__BackingField_27(String_t* value) { ___U3CStatusDescriptionU3Ek__BackingField_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CStatusDescriptionU3Ek__BackingField_27), (void*)value); } inline static int32_t get_offset_of_U3CVersionU3Ek__BackingField_28() { return static_cast(offsetof(WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F, ___U3CVersionU3Ek__BackingField_28)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_U3CVersionU3Ek__BackingField_28() const { return ___U3CVersionU3Ek__BackingField_28; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_U3CVersionU3Ek__BackingField_28() { return &___U3CVersionU3Ek__BackingField_28; } inline void set_U3CVersionU3Ek__BackingField_28(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___U3CVersionU3Ek__BackingField_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CVersionU3Ek__BackingField_28), (void*)value); } inline static int32_t get_offset_of_U3CKeepAliveU3Ek__BackingField_29() { return static_cast(offsetof(WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F, ___U3CKeepAliveU3Ek__BackingField_29)); } inline bool get_U3CKeepAliveU3Ek__BackingField_29() const { return ___U3CKeepAliveU3Ek__BackingField_29; } inline bool* get_address_of_U3CKeepAliveU3Ek__BackingField_29() { return &___U3CKeepAliveU3Ek__BackingField_29; } inline void set_U3CKeepAliveU3Ek__BackingField_29(bool value) { ___U3CKeepAliveU3Ek__BackingField_29 = value; } inline static int32_t get_offset_of_U3CChunkedReadU3Ek__BackingField_30() { return static_cast(offsetof(WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F, ___U3CChunkedReadU3Ek__BackingField_30)); } inline bool get_U3CChunkedReadU3Ek__BackingField_30() const { return ___U3CChunkedReadU3Ek__BackingField_30; } inline bool* get_address_of_U3CChunkedReadU3Ek__BackingField_30() { return &___U3CChunkedReadU3Ek__BackingField_30; } inline void set_U3CChunkedReadU3Ek__BackingField_30(bool value) { ___U3CChunkedReadU3Ek__BackingField_30 = value; } inline static int32_t get_offset_of_U3CChunkStreamU3Ek__BackingField_31() { return static_cast(offsetof(WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F, ___U3CChunkStreamU3Ek__BackingField_31)); } inline MonoChunkStream_t890E01BB394186CFA1A1B92B07A1F996E9A2C9E7 * get_U3CChunkStreamU3Ek__BackingField_31() const { return ___U3CChunkStreamU3Ek__BackingField_31; } inline MonoChunkStream_t890E01BB394186CFA1A1B92B07A1F996E9A2C9E7 ** get_address_of_U3CChunkStreamU3Ek__BackingField_31() { return &___U3CChunkStreamU3Ek__BackingField_31; } inline void set_U3CChunkStreamU3Ek__BackingField_31(MonoChunkStream_t890E01BB394186CFA1A1B92B07A1F996E9A2C9E7 * value) { ___U3CChunkStreamU3Ek__BackingField_31 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CChunkStreamU3Ek__BackingField_31), (void*)value); } }; // System.Net.HttpWebRequest/<b__263_0>d struct U3CU3CGetRewriteHandlerU3Eb__263_0U3Ed_tBCD38108B3BEF76B04B459122190CFACB5802BE0 { public: // System.Int32 System.Net.HttpWebRequest/<b__263_0>d::<>1__state int32_t ___U3CU3E1__state_0; // System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1 System.Net.HttpWebRequest/<b__263_0>d::<>t__builder AsyncTaskMethodBuilder_1_t73D9138C5A15D02CE27A5E53B9C8862A8E99880D ___U3CU3Et__builder_1; // System.Net.HttpWebRequest System.Net.HttpWebRequest/<b__263_0>d::<>4__this HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * ___U3CU3E4__this_2; // System.IO.MemoryStream System.Net.HttpWebRequest/<b__263_0>d::5__1 MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * ___U3CmsU3E5__1_3; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter System.Net.HttpWebRequest/<b__263_0>d::<>u__1 ConfiguredTaskAwaiter_tF5D70726C84CD1BBDFC5E58FFB1000C5750EA28C ___U3CU3Eu__1_4; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast(offsetof(U3CU3CGetRewriteHandlerU3Eb__263_0U3Ed_tBCD38108B3BEF76B04B459122190CFACB5802BE0, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3Et__builder_1() { return static_cast(offsetof(U3CU3CGetRewriteHandlerU3Eb__263_0U3Ed_tBCD38108B3BEF76B04B459122190CFACB5802BE0, ___U3CU3Et__builder_1)); } inline AsyncTaskMethodBuilder_1_t73D9138C5A15D02CE27A5E53B9C8862A8E99880D get_U3CU3Et__builder_1() const { return ___U3CU3Et__builder_1; } inline AsyncTaskMethodBuilder_1_t73D9138C5A15D02CE27A5E53B9C8862A8E99880D * get_address_of_U3CU3Et__builder_1() { return &___U3CU3Et__builder_1; } inline void set_U3CU3Et__builder_1(AsyncTaskMethodBuilder_1_t73D9138C5A15D02CE27A5E53B9C8862A8E99880D value) { ___U3CU3Et__builder_1 = value; Il2CppCodeGenWriteBarrier((void**)&((&(((&___U3CU3Et__builder_1))->___m_coreState_1))->___m_stateMachine_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___U3CU3Et__builder_1))->___m_coreState_1))->___m_defaultContextAction_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3Et__builder_1))->___m_task_2), (void*)NULL); #endif } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast(offsetof(U3CU3CGetRewriteHandlerU3Eb__263_0U3Ed_tBCD38108B3BEF76B04B459122190CFACB5802BE0, ___U3CU3E4__this_2)); } inline HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } inline static int32_t get_offset_of_U3CmsU3E5__1_3() { return static_cast(offsetof(U3CU3CGetRewriteHandlerU3Eb__263_0U3Ed_tBCD38108B3BEF76B04B459122190CFACB5802BE0, ___U3CmsU3E5__1_3)); } inline MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * get_U3CmsU3E5__1_3() const { return ___U3CmsU3E5__1_3; } inline MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C ** get_address_of_U3CmsU3E5__1_3() { return &___U3CmsU3E5__1_3; } inline void set_U3CmsU3E5__1_3(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * value) { ___U3CmsU3E5__1_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CmsU3E5__1_3), (void*)value); } inline static int32_t get_offset_of_U3CU3Eu__1_4() { return static_cast(offsetof(U3CU3CGetRewriteHandlerU3Eb__263_0U3Ed_tBCD38108B3BEF76B04B459122190CFACB5802BE0, ___U3CU3Eu__1_4)); } inline ConfiguredTaskAwaiter_tF5D70726C84CD1BBDFC5E58FFB1000C5750EA28C get_U3CU3Eu__1_4() const { return ___U3CU3Eu__1_4; } inline ConfiguredTaskAwaiter_tF5D70726C84CD1BBDFC5E58FFB1000C5750EA28C * get_address_of_U3CU3Eu__1_4() { return &___U3CU3Eu__1_4; } inline void set_U3CU3Eu__1_4(ConfiguredTaskAwaiter_tF5D70726C84CD1BBDFC5E58FFB1000C5750EA28C value) { ___U3CU3Eu__1_4 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3Eu__1_4))->___m_task_0), (void*)NULL); } }; // System.Net.HttpWebRequest/d__237 struct U3CGetResponseFromDataU3Ed__237_t5060E721E44AB6651008E532D792EE39E62B7820 { public: // System.Int32 System.Net.HttpWebRequest/d__237::<>1__state int32_t ___U3CU3E1__state_0; // System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1> System.Net.HttpWebRequest/d__237::<>t__builder AsyncTaskMethodBuilder_1_t04278D5078B08CC7E24AFDDAEE48378547262884 ___U3CU3Et__builder_1; // System.Net.HttpWebRequest System.Net.HttpWebRequest/d__237::<>4__this HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * ___U3CU3E4__this_2; // System.Net.WebResponseStream System.Net.HttpWebRequest/d__237::stream WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F * ___stream_3; // System.Threading.CancellationToken System.Net.HttpWebRequest/d__237::cancellationToken CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken_4; // System.Net.WebException System.Net.HttpWebRequest/d__237::5__1 WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * ___U3CthrowMeU3E5__1_5; // System.Threading.Tasks.Task`1 System.Net.HttpWebRequest/d__237::5__2 Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 * ___U3CrewriteHandlerU3E5__2_6; // System.Boolean System.Net.HttpWebRequest/d__237::5__3 bool ___U3CredirectU3E5__3_7; // System.Net.HttpWebResponse System.Net.HttpWebRequest/d__237::5__4 HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * ___U3CresponseU3E5__4_8; // System.Net.BufferOffsetSize System.Net.HttpWebRequest/d__237::5__5 BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F * ___U3CwriteBufferU3E5__5_9; // System.Boolean System.Net.HttpWebRequest/d__237::5__6 bool ___U3CmustReadAllU3E5__6_10; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter System.Net.HttpWebRequest/d__237::<>u__1 ConfiguredTaskAwaiter_tF5D70726C84CD1BBDFC5E58FFB1000C5750EA28C ___U3CU3Eu__1_11; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter System.Net.HttpWebRequest/d__237::<>u__2 ConfiguredTaskAwaiter_t9BA9BBF3EA6747232564192A575618E22362EAC8 ___U3CU3Eu__2_12; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast(offsetof(U3CGetResponseFromDataU3Ed__237_t5060E721E44AB6651008E532D792EE39E62B7820, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3Et__builder_1() { return static_cast(offsetof(U3CGetResponseFromDataU3Ed__237_t5060E721E44AB6651008E532D792EE39E62B7820, ___U3CU3Et__builder_1)); } inline AsyncTaskMethodBuilder_1_t04278D5078B08CC7E24AFDDAEE48378547262884 get_U3CU3Et__builder_1() const { return ___U3CU3Et__builder_1; } inline AsyncTaskMethodBuilder_1_t04278D5078B08CC7E24AFDDAEE48378547262884 * get_address_of_U3CU3Et__builder_1() { return &___U3CU3Et__builder_1; } inline void set_U3CU3Et__builder_1(AsyncTaskMethodBuilder_1_t04278D5078B08CC7E24AFDDAEE48378547262884 value) { ___U3CU3Et__builder_1 = value; Il2CppCodeGenWriteBarrier((void**)&((&(((&___U3CU3Et__builder_1))->___m_coreState_1))->___m_stateMachine_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___U3CU3Et__builder_1))->___m_coreState_1))->___m_defaultContextAction_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3Et__builder_1))->___m_task_2), (void*)NULL); #endif } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast(offsetof(U3CGetResponseFromDataU3Ed__237_t5060E721E44AB6651008E532D792EE39E62B7820, ___U3CU3E4__this_2)); } inline HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } inline static int32_t get_offset_of_stream_3() { return static_cast(offsetof(U3CGetResponseFromDataU3Ed__237_t5060E721E44AB6651008E532D792EE39E62B7820, ___stream_3)); } inline WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F * get_stream_3() const { return ___stream_3; } inline WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F ** get_address_of_stream_3() { return &___stream_3; } inline void set_stream_3(WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F * value) { ___stream_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___stream_3), (void*)value); } inline static int32_t get_offset_of_cancellationToken_4() { return static_cast(offsetof(U3CGetResponseFromDataU3Ed__237_t5060E721E44AB6651008E532D792EE39E62B7820, ___cancellationToken_4)); } inline CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD get_cancellationToken_4() const { return ___cancellationToken_4; } inline CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * get_address_of_cancellationToken_4() { return &___cancellationToken_4; } inline void set_cancellationToken_4(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD value) { ___cancellationToken_4 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___cancellationToken_4))->___m_source_0), (void*)NULL); } inline static int32_t get_offset_of_U3CthrowMeU3E5__1_5() { return static_cast(offsetof(U3CGetResponseFromDataU3Ed__237_t5060E721E44AB6651008E532D792EE39E62B7820, ___U3CthrowMeU3E5__1_5)); } inline WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * get_U3CthrowMeU3E5__1_5() const { return ___U3CthrowMeU3E5__1_5; } inline WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 ** get_address_of_U3CthrowMeU3E5__1_5() { return &___U3CthrowMeU3E5__1_5; } inline void set_U3CthrowMeU3E5__1_5(WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * value) { ___U3CthrowMeU3E5__1_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CthrowMeU3E5__1_5), (void*)value); } inline static int32_t get_offset_of_U3CrewriteHandlerU3E5__2_6() { return static_cast(offsetof(U3CGetResponseFromDataU3Ed__237_t5060E721E44AB6651008E532D792EE39E62B7820, ___U3CrewriteHandlerU3E5__2_6)); } inline Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 * get_U3CrewriteHandlerU3E5__2_6() const { return ___U3CrewriteHandlerU3E5__2_6; } inline Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 ** get_address_of_U3CrewriteHandlerU3E5__2_6() { return &___U3CrewriteHandlerU3E5__2_6; } inline void set_U3CrewriteHandlerU3E5__2_6(Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 * value) { ___U3CrewriteHandlerU3E5__2_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CrewriteHandlerU3E5__2_6), (void*)value); } inline static int32_t get_offset_of_U3CredirectU3E5__3_7() { return static_cast(offsetof(U3CGetResponseFromDataU3Ed__237_t5060E721E44AB6651008E532D792EE39E62B7820, ___U3CredirectU3E5__3_7)); } inline bool get_U3CredirectU3E5__3_7() const { return ___U3CredirectU3E5__3_7; } inline bool* get_address_of_U3CredirectU3E5__3_7() { return &___U3CredirectU3E5__3_7; } inline void set_U3CredirectU3E5__3_7(bool value) { ___U3CredirectU3E5__3_7 = value; } inline static int32_t get_offset_of_U3CresponseU3E5__4_8() { return static_cast(offsetof(U3CGetResponseFromDataU3Ed__237_t5060E721E44AB6651008E532D792EE39E62B7820, ___U3CresponseU3E5__4_8)); } inline HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * get_U3CresponseU3E5__4_8() const { return ___U3CresponseU3E5__4_8; } inline HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB ** get_address_of_U3CresponseU3E5__4_8() { return &___U3CresponseU3E5__4_8; } inline void set_U3CresponseU3E5__4_8(HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * value) { ___U3CresponseU3E5__4_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CresponseU3E5__4_8), (void*)value); } inline static int32_t get_offset_of_U3CwriteBufferU3E5__5_9() { return static_cast(offsetof(U3CGetResponseFromDataU3Ed__237_t5060E721E44AB6651008E532D792EE39E62B7820, ___U3CwriteBufferU3E5__5_9)); } inline BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F * get_U3CwriteBufferU3E5__5_9() const { return ___U3CwriteBufferU3E5__5_9; } inline BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F ** get_address_of_U3CwriteBufferU3E5__5_9() { return &___U3CwriteBufferU3E5__5_9; } inline void set_U3CwriteBufferU3E5__5_9(BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F * value) { ___U3CwriteBufferU3E5__5_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CwriteBufferU3E5__5_9), (void*)value); } inline static int32_t get_offset_of_U3CmustReadAllU3E5__6_10() { return static_cast(offsetof(U3CGetResponseFromDataU3Ed__237_t5060E721E44AB6651008E532D792EE39E62B7820, ___U3CmustReadAllU3E5__6_10)); } inline bool get_U3CmustReadAllU3E5__6_10() const { return ___U3CmustReadAllU3E5__6_10; } inline bool* get_address_of_U3CmustReadAllU3E5__6_10() { return &___U3CmustReadAllU3E5__6_10; } inline void set_U3CmustReadAllU3E5__6_10(bool value) { ___U3CmustReadAllU3E5__6_10 = value; } inline static int32_t get_offset_of_U3CU3Eu__1_11() { return static_cast(offsetof(U3CGetResponseFromDataU3Ed__237_t5060E721E44AB6651008E532D792EE39E62B7820, ___U3CU3Eu__1_11)); } inline ConfiguredTaskAwaiter_tF5D70726C84CD1BBDFC5E58FFB1000C5750EA28C get_U3CU3Eu__1_11() const { return ___U3CU3Eu__1_11; } inline ConfiguredTaskAwaiter_tF5D70726C84CD1BBDFC5E58FFB1000C5750EA28C * get_address_of_U3CU3Eu__1_11() { return &___U3CU3Eu__1_11; } inline void set_U3CU3Eu__1_11(ConfiguredTaskAwaiter_tF5D70726C84CD1BBDFC5E58FFB1000C5750EA28C value) { ___U3CU3Eu__1_11 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3Eu__1_11))->___m_task_0), (void*)NULL); } inline static int32_t get_offset_of_U3CU3Eu__2_12() { return static_cast(offsetof(U3CGetResponseFromDataU3Ed__237_t5060E721E44AB6651008E532D792EE39E62B7820, ___U3CU3Eu__2_12)); } inline ConfiguredTaskAwaiter_t9BA9BBF3EA6747232564192A575618E22362EAC8 get_U3CU3Eu__2_12() const { return ___U3CU3Eu__2_12; } inline ConfiguredTaskAwaiter_t9BA9BBF3EA6747232564192A575618E22362EAC8 * get_address_of_U3CU3Eu__2_12() { return &___U3CU3Eu__2_12; } inline void set_U3CU3Eu__2_12(ConfiguredTaskAwaiter_t9BA9BBF3EA6747232564192A575618E22362EAC8 value) { ___U3CU3Eu__2_12 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3Eu__2_12))->___m_task_0), (void*)NULL); } }; // System.Net.HttpWebRequest/d__236 struct U3CMyGetResponseAsyncU3Ed__236_t2A216534B524FE18EECD3B35C67CE5AB4767E7F1 { public: // System.Int32 System.Net.HttpWebRequest/d__236::<>1__state int32_t ___U3CU3E1__state_0; // System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1 System.Net.HttpWebRequest/d__236::<>t__builder AsyncTaskMethodBuilder_1_tC844D2260A71782812AB64F7BF5EDC8C4ED35A75 ___U3CU3Et__builder_1; // System.Net.HttpWebRequest System.Net.HttpWebRequest/d__236::<>4__this HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * ___U3CU3E4__this_2; // System.Threading.CancellationToken System.Net.HttpWebRequest/d__236::cancellationToken CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken_3; // System.Net.WebOperation System.Net.HttpWebRequest/d__236::5__1 WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * ___U3CoperationU3E5__1_4; // System.Net.WebException System.Net.HttpWebRequest/d__236::5__2 WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * ___U3CthrowMeU3E5__2_5; // System.Net.WebCompletionSource System.Net.HttpWebRequest/d__236::5__3 WebCompletionSource_tF1258B468350A374EC59049FE0E31C7879D6AB1E * ___U3CcompletionU3E5__3_6; // System.Boolean System.Net.HttpWebRequest/d__236::5__4 bool ___U3CredirectU3E5__4_7; // System.Net.HttpWebResponse System.Net.HttpWebRequest/d__236::5__5 HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * ___U3CresponseU3E5__5_8; // System.Net.WebOperation System.Net.HttpWebRequest/d__236::5__6 WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * ___U3CntlmU3E5__6_9; // System.Boolean System.Net.HttpWebRequest/d__236::5__7 bool ___U3CmustReadAllU3E5__7_10; // System.Net.WebResponseStream System.Net.HttpWebRequest/d__236::5__8 WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F * ___U3CstreamU3E5__8_11; // System.Net.BufferOffsetSize System.Net.HttpWebRequest/d__236::5__9 BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F * ___U3CwriteBufferU3E5__9_12; // System.Runtime.CompilerServices.TaskAwaiter`1 System.Net.HttpWebRequest/d__236::<>u__1 TaskAwaiter_1_t2BBED4D00A5731637EDEB15212DE3D1A1559E2CD ___U3CU3Eu__1_13; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter System.Net.HttpWebRequest/d__236::<>u__2 ConfiguredTaskAwaiter_tF5D70726C84CD1BBDFC5E58FFB1000C5750EA28C ___U3CU3Eu__2_14; // System.Runtime.CompilerServices.TaskAwaiter`1 System.Net.HttpWebRequest/d__236::<>u__3 TaskAwaiter_1_t06282E0E3DA9FB287C9BDB4911AC044F21933C81 ___U3CU3Eu__3_15; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter> System.Net.HttpWebRequest/d__236::<>u__4 ConfiguredTaskAwaiter_t1E2C8B0B4B5DBC914F5301A6EFDF7AD4D3998D06 ___U3CU3Eu__4_16; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast(offsetof(U3CMyGetResponseAsyncU3Ed__236_t2A216534B524FE18EECD3B35C67CE5AB4767E7F1, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3Et__builder_1() { return static_cast(offsetof(U3CMyGetResponseAsyncU3Ed__236_t2A216534B524FE18EECD3B35C67CE5AB4767E7F1, ___U3CU3Et__builder_1)); } inline AsyncTaskMethodBuilder_1_tC844D2260A71782812AB64F7BF5EDC8C4ED35A75 get_U3CU3Et__builder_1() const { return ___U3CU3Et__builder_1; } inline AsyncTaskMethodBuilder_1_tC844D2260A71782812AB64F7BF5EDC8C4ED35A75 * get_address_of_U3CU3Et__builder_1() { return &___U3CU3Et__builder_1; } inline void set_U3CU3Et__builder_1(AsyncTaskMethodBuilder_1_tC844D2260A71782812AB64F7BF5EDC8C4ED35A75 value) { ___U3CU3Et__builder_1 = value; Il2CppCodeGenWriteBarrier((void**)&((&(((&___U3CU3Et__builder_1))->___m_coreState_1))->___m_stateMachine_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___U3CU3Et__builder_1))->___m_coreState_1))->___m_defaultContextAction_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3Et__builder_1))->___m_task_2), (void*)NULL); #endif } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast(offsetof(U3CMyGetResponseAsyncU3Ed__236_t2A216534B524FE18EECD3B35C67CE5AB4767E7F1, ___U3CU3E4__this_2)); } inline HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } inline static int32_t get_offset_of_cancellationToken_3() { return static_cast(offsetof(U3CMyGetResponseAsyncU3Ed__236_t2A216534B524FE18EECD3B35C67CE5AB4767E7F1, ___cancellationToken_3)); } inline CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD get_cancellationToken_3() const { return ___cancellationToken_3; } inline CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * get_address_of_cancellationToken_3() { return &___cancellationToken_3; } inline void set_cancellationToken_3(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD value) { ___cancellationToken_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___cancellationToken_3))->___m_source_0), (void*)NULL); } inline static int32_t get_offset_of_U3CoperationU3E5__1_4() { return static_cast(offsetof(U3CMyGetResponseAsyncU3Ed__236_t2A216534B524FE18EECD3B35C67CE5AB4767E7F1, ___U3CoperationU3E5__1_4)); } inline WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * get_U3CoperationU3E5__1_4() const { return ___U3CoperationU3E5__1_4; } inline WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 ** get_address_of_U3CoperationU3E5__1_4() { return &___U3CoperationU3E5__1_4; } inline void set_U3CoperationU3E5__1_4(WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * value) { ___U3CoperationU3E5__1_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CoperationU3E5__1_4), (void*)value); } inline static int32_t get_offset_of_U3CthrowMeU3E5__2_5() { return static_cast(offsetof(U3CMyGetResponseAsyncU3Ed__236_t2A216534B524FE18EECD3B35C67CE5AB4767E7F1, ___U3CthrowMeU3E5__2_5)); } inline WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * get_U3CthrowMeU3E5__2_5() const { return ___U3CthrowMeU3E5__2_5; } inline WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 ** get_address_of_U3CthrowMeU3E5__2_5() { return &___U3CthrowMeU3E5__2_5; } inline void set_U3CthrowMeU3E5__2_5(WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * value) { ___U3CthrowMeU3E5__2_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CthrowMeU3E5__2_5), (void*)value); } inline static int32_t get_offset_of_U3CcompletionU3E5__3_6() { return static_cast(offsetof(U3CMyGetResponseAsyncU3Ed__236_t2A216534B524FE18EECD3B35C67CE5AB4767E7F1, ___U3CcompletionU3E5__3_6)); } inline WebCompletionSource_tF1258B468350A374EC59049FE0E31C7879D6AB1E * get_U3CcompletionU3E5__3_6() const { return ___U3CcompletionU3E5__3_6; } inline WebCompletionSource_tF1258B468350A374EC59049FE0E31C7879D6AB1E ** get_address_of_U3CcompletionU3E5__3_6() { return &___U3CcompletionU3E5__3_6; } inline void set_U3CcompletionU3E5__3_6(WebCompletionSource_tF1258B468350A374EC59049FE0E31C7879D6AB1E * value) { ___U3CcompletionU3E5__3_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CcompletionU3E5__3_6), (void*)value); } inline static int32_t get_offset_of_U3CredirectU3E5__4_7() { return static_cast(offsetof(U3CMyGetResponseAsyncU3Ed__236_t2A216534B524FE18EECD3B35C67CE5AB4767E7F1, ___U3CredirectU3E5__4_7)); } inline bool get_U3CredirectU3E5__4_7() const { return ___U3CredirectU3E5__4_7; } inline bool* get_address_of_U3CredirectU3E5__4_7() { return &___U3CredirectU3E5__4_7; } inline void set_U3CredirectU3E5__4_7(bool value) { ___U3CredirectU3E5__4_7 = value; } inline static int32_t get_offset_of_U3CresponseU3E5__5_8() { return static_cast(offsetof(U3CMyGetResponseAsyncU3Ed__236_t2A216534B524FE18EECD3B35C67CE5AB4767E7F1, ___U3CresponseU3E5__5_8)); } inline HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * get_U3CresponseU3E5__5_8() const { return ___U3CresponseU3E5__5_8; } inline HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB ** get_address_of_U3CresponseU3E5__5_8() { return &___U3CresponseU3E5__5_8; } inline void set_U3CresponseU3E5__5_8(HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * value) { ___U3CresponseU3E5__5_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CresponseU3E5__5_8), (void*)value); } inline static int32_t get_offset_of_U3CntlmU3E5__6_9() { return static_cast(offsetof(U3CMyGetResponseAsyncU3Ed__236_t2A216534B524FE18EECD3B35C67CE5AB4767E7F1, ___U3CntlmU3E5__6_9)); } inline WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * get_U3CntlmU3E5__6_9() const { return ___U3CntlmU3E5__6_9; } inline WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 ** get_address_of_U3CntlmU3E5__6_9() { return &___U3CntlmU3E5__6_9; } inline void set_U3CntlmU3E5__6_9(WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * value) { ___U3CntlmU3E5__6_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CntlmU3E5__6_9), (void*)value); } inline static int32_t get_offset_of_U3CmustReadAllU3E5__7_10() { return static_cast(offsetof(U3CMyGetResponseAsyncU3Ed__236_t2A216534B524FE18EECD3B35C67CE5AB4767E7F1, ___U3CmustReadAllU3E5__7_10)); } inline bool get_U3CmustReadAllU3E5__7_10() const { return ___U3CmustReadAllU3E5__7_10; } inline bool* get_address_of_U3CmustReadAllU3E5__7_10() { return &___U3CmustReadAllU3E5__7_10; } inline void set_U3CmustReadAllU3E5__7_10(bool value) { ___U3CmustReadAllU3E5__7_10 = value; } inline static int32_t get_offset_of_U3CstreamU3E5__8_11() { return static_cast(offsetof(U3CMyGetResponseAsyncU3Ed__236_t2A216534B524FE18EECD3B35C67CE5AB4767E7F1, ___U3CstreamU3E5__8_11)); } inline WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F * get_U3CstreamU3E5__8_11() const { return ___U3CstreamU3E5__8_11; } inline WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F ** get_address_of_U3CstreamU3E5__8_11() { return &___U3CstreamU3E5__8_11; } inline void set_U3CstreamU3E5__8_11(WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F * value) { ___U3CstreamU3E5__8_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CstreamU3E5__8_11), (void*)value); } inline static int32_t get_offset_of_U3CwriteBufferU3E5__9_12() { return static_cast(offsetof(U3CMyGetResponseAsyncU3Ed__236_t2A216534B524FE18EECD3B35C67CE5AB4767E7F1, ___U3CwriteBufferU3E5__9_12)); } inline BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F * get_U3CwriteBufferU3E5__9_12() const { return ___U3CwriteBufferU3E5__9_12; } inline BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F ** get_address_of_U3CwriteBufferU3E5__9_12() { return &___U3CwriteBufferU3E5__9_12; } inline void set_U3CwriteBufferU3E5__9_12(BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F * value) { ___U3CwriteBufferU3E5__9_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CwriteBufferU3E5__9_12), (void*)value); } inline static int32_t get_offset_of_U3CU3Eu__1_13() { return static_cast(offsetof(U3CMyGetResponseAsyncU3Ed__236_t2A216534B524FE18EECD3B35C67CE5AB4767E7F1, ___U3CU3Eu__1_13)); } inline TaskAwaiter_1_t2BBED4D00A5731637EDEB15212DE3D1A1559E2CD get_U3CU3Eu__1_13() const { return ___U3CU3Eu__1_13; } inline TaskAwaiter_1_t2BBED4D00A5731637EDEB15212DE3D1A1559E2CD * get_address_of_U3CU3Eu__1_13() { return &___U3CU3Eu__1_13; } inline void set_U3CU3Eu__1_13(TaskAwaiter_1_t2BBED4D00A5731637EDEB15212DE3D1A1559E2CD value) { ___U3CU3Eu__1_13 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3Eu__1_13))->___m_task_0), (void*)NULL); } inline static int32_t get_offset_of_U3CU3Eu__2_14() { return static_cast(offsetof(U3CMyGetResponseAsyncU3Ed__236_t2A216534B524FE18EECD3B35C67CE5AB4767E7F1, ___U3CU3Eu__2_14)); } inline ConfiguredTaskAwaiter_tF5D70726C84CD1BBDFC5E58FFB1000C5750EA28C get_U3CU3Eu__2_14() const { return ___U3CU3Eu__2_14; } inline ConfiguredTaskAwaiter_tF5D70726C84CD1BBDFC5E58FFB1000C5750EA28C * get_address_of_U3CU3Eu__2_14() { return &___U3CU3Eu__2_14; } inline void set_U3CU3Eu__2_14(ConfiguredTaskAwaiter_tF5D70726C84CD1BBDFC5E58FFB1000C5750EA28C value) { ___U3CU3Eu__2_14 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3Eu__2_14))->___m_task_0), (void*)NULL); } inline static int32_t get_offset_of_U3CU3Eu__3_15() { return static_cast(offsetof(U3CMyGetResponseAsyncU3Ed__236_t2A216534B524FE18EECD3B35C67CE5AB4767E7F1, ___U3CU3Eu__3_15)); } inline TaskAwaiter_1_t06282E0E3DA9FB287C9BDB4911AC044F21933C81 get_U3CU3Eu__3_15() const { return ___U3CU3Eu__3_15; } inline TaskAwaiter_1_t06282E0E3DA9FB287C9BDB4911AC044F21933C81 * get_address_of_U3CU3Eu__3_15() { return &___U3CU3Eu__3_15; } inline void set_U3CU3Eu__3_15(TaskAwaiter_1_t06282E0E3DA9FB287C9BDB4911AC044F21933C81 value) { ___U3CU3Eu__3_15 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3Eu__3_15))->___m_task_0), (void*)NULL); } inline static int32_t get_offset_of_U3CU3Eu__4_16() { return static_cast(offsetof(U3CMyGetResponseAsyncU3Ed__236_t2A216534B524FE18EECD3B35C67CE5AB4767E7F1, ___U3CU3Eu__4_16)); } inline ConfiguredTaskAwaiter_t1E2C8B0B4B5DBC914F5301A6EFDF7AD4D3998D06 get_U3CU3Eu__4_16() const { return ___U3CU3Eu__4_16; } inline ConfiguredTaskAwaiter_t1E2C8B0B4B5DBC914F5301A6EFDF7AD4D3998D06 * get_address_of_U3CU3Eu__4_16() { return &___U3CU3Eu__4_16; } inline void set_U3CU3Eu__4_16(ConfiguredTaskAwaiter_t1E2C8B0B4B5DBC914F5301A6EFDF7AD4D3998D06 value) { ___U3CU3Eu__4_16 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3Eu__4_16))->___m_task_0), (void*)NULL); } }; // System.Net.HttpWebRequest/AuthorizationState struct AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 { public: // System.Net.HttpWebRequest System.Net.HttpWebRequest/AuthorizationState::request HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * ___request_0; // System.Boolean System.Net.HttpWebRequest/AuthorizationState::isProxy bool ___isProxy_1; // System.Boolean System.Net.HttpWebRequest/AuthorizationState::isCompleted bool ___isCompleted_2; // System.Net.HttpWebRequest/NtlmAuthState System.Net.HttpWebRequest/AuthorizationState::ntlm_auth_state int32_t ___ntlm_auth_state_3; public: inline static int32_t get_offset_of_request_0() { return static_cast(offsetof(AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55, ___request_0)); } inline HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * get_request_0() const { return ___request_0; } inline HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A ** get_address_of_request_0() { return &___request_0; } inline void set_request_0(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * value) { ___request_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___request_0), (void*)value); } inline static int32_t get_offset_of_isProxy_1() { return static_cast(offsetof(AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55, ___isProxy_1)); } inline bool get_isProxy_1() const { return ___isProxy_1; } inline bool* get_address_of_isProxy_1() { return &___isProxy_1; } inline void set_isProxy_1(bool value) { ___isProxy_1 = value; } inline static int32_t get_offset_of_isCompleted_2() { return static_cast(offsetof(AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55, ___isCompleted_2)); } inline bool get_isCompleted_2() const { return ___isCompleted_2; } inline bool* get_address_of_isCompleted_2() { return &___isCompleted_2; } inline void set_isCompleted_2(bool value) { ___isCompleted_2 = value; } inline static int32_t get_offset_of_ntlm_auth_state_3() { return static_cast(offsetof(AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55, ___ntlm_auth_state_3)); } inline int32_t get_ntlm_auth_state_3() const { return ___ntlm_auth_state_3; } inline int32_t* get_address_of_ntlm_auth_state_3() { return &___ntlm_auth_state_3; } inline void set_ntlm_auth_state_3(int32_t value) { ___ntlm_auth_state_3 = value; } }; // Native definition for P/Invoke marshalling of System.Net.HttpWebRequest/AuthorizationState struct AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55_marshaled_pinvoke { HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * ___request_0; int32_t ___isProxy_1; int32_t ___isCompleted_2; int32_t ___ntlm_auth_state_3; }; // Native definition for COM marshalling of System.Net.HttpWebRequest/AuthorizationState struct AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55_marshaled_com { HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * ___request_0; int32_t ___isProxy_1; int32_t ___isCompleted_2; int32_t ___ntlm_auth_state_3; }; // System.Func`1> struct Func_1_tA554ECD263DF723DB4D49570AF9703DEC8DE6EE4 : public MulticastDelegate_t { public: public: }; // System.Func`2> struct Func_2_t722A0F06995E0C53FEEF8E2E44E139CFBE2A81C6 : public MulticastDelegate_t { public: public: }; // System.Func`2 struct Func_2_t1536C4C0AD9482796F7C72574A4B3DE8607E4E20 : public MulticastDelegate_t { public: public: }; // System.ArgumentException struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: // System.String System.ArgumentException::m_paramName String_t* ___m_paramName_17; public: inline static int32_t get_offset_of_m_paramName_17() { return static_cast(offsetof(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00, ___m_paramName_17)); } inline String_t* get_m_paramName_17() const { return ___m_paramName_17; } inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; } inline void set_m_paramName_17(String_t* value) { ___m_paramName_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_paramName_17), (void*)value); } }; // System.AsyncCallback struct AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA : public MulticastDelegate_t { public: public: }; // System.Runtime.InteropServices.ExternalException struct ExternalException_tC18275DD0AEB2CDF9F85D94670C5A49A4DC3B783 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.FormatException struct FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.Net.FtpWebRequest struct FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D : public WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E { public: // System.Uri System.Net.FtpWebRequest::requestUri Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___requestUri_12; // System.String System.Net.FtpWebRequest::file_name String_t* ___file_name_13; // System.Net.ServicePoint System.Net.FtpWebRequest::servicePoint ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * ___servicePoint_14; // System.IO.Stream System.Net.FtpWebRequest::origDataStream Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___origDataStream_15; // System.IO.Stream System.Net.FtpWebRequest::dataStream Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___dataStream_16; // System.IO.Stream System.Net.FtpWebRequest::controlStream Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___controlStream_17; // System.IO.StreamReader System.Net.FtpWebRequest::controlReader StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3 * ___controlReader_18; // System.Net.NetworkCredential System.Net.FtpWebRequest::credentials NetworkCredential_t263CA6068540C6DA0E1CDE919BD7A15C28D55686 * ___credentials_19; // System.Net.IPHostEntry System.Net.FtpWebRequest::hostEntry IPHostEntry_tD787E3A1E0F633AC5A7761921DE4DC2A8EA117AA * ___hostEntry_20; // System.Net.IPEndPoint System.Net.FtpWebRequest::localEndPoint IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * ___localEndPoint_21; // System.Net.IPEndPoint System.Net.FtpWebRequest::remoteEndPoint IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * ___remoteEndPoint_22; // System.Net.IWebProxy System.Net.FtpWebRequest::proxy RuntimeObject* ___proxy_23; // System.Int32 System.Net.FtpWebRequest::timeout int32_t ___timeout_24; // System.Int32 System.Net.FtpWebRequest::rwTimeout int32_t ___rwTimeout_25; // System.Int64 System.Net.FtpWebRequest::offset int64_t ___offset_26; // System.Boolean System.Net.FtpWebRequest::binary bool ___binary_27; // System.Boolean System.Net.FtpWebRequest::enableSsl bool ___enableSsl_28; // System.Boolean System.Net.FtpWebRequest::usePassive bool ___usePassive_29; // System.Boolean System.Net.FtpWebRequest::keepAlive bool ___keepAlive_30; // System.String System.Net.FtpWebRequest::method String_t* ___method_31; // System.String System.Net.FtpWebRequest::renameTo String_t* ___renameTo_32; // System.Object System.Net.FtpWebRequest::locker RuntimeObject * ___locker_33; // System.Net.FtpWebRequest/RequestState System.Net.FtpWebRequest::requestState int32_t ___requestState_34; // System.Net.FtpAsyncResult System.Net.FtpWebRequest::asyncResult FtpAsyncResult_t224DB9CD548355D326629E3F74E301C502FDCF42 * ___asyncResult_35; // System.Net.FtpWebResponse System.Net.FtpWebRequest::ftpResponse FtpWebResponse_t4462ADF9C14124B97DC10705932A9234DACEED49 * ___ftpResponse_36; // System.IO.Stream System.Net.FtpWebRequest::requestStream Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___requestStream_37; // System.String System.Net.FtpWebRequest::initial_path String_t* ___initial_path_38; // System.Text.Encoding System.Net.FtpWebRequest::dataEncoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___dataEncoding_40; public: inline static int32_t get_offset_of_requestUri_12() { return static_cast(offsetof(FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D, ___requestUri_12)); } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * get_requestUri_12() const { return ___requestUri_12; } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** get_address_of_requestUri_12() { return &___requestUri_12; } inline void set_requestUri_12(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * value) { ___requestUri_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___requestUri_12), (void*)value); } inline static int32_t get_offset_of_file_name_13() { return static_cast(offsetof(FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D, ___file_name_13)); } inline String_t* get_file_name_13() const { return ___file_name_13; } inline String_t** get_address_of_file_name_13() { return &___file_name_13; } inline void set_file_name_13(String_t* value) { ___file_name_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___file_name_13), (void*)value); } inline static int32_t get_offset_of_servicePoint_14() { return static_cast(offsetof(FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D, ___servicePoint_14)); } inline ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * get_servicePoint_14() const { return ___servicePoint_14; } inline ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 ** get_address_of_servicePoint_14() { return &___servicePoint_14; } inline void set_servicePoint_14(ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * value) { ___servicePoint_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___servicePoint_14), (void*)value); } inline static int32_t get_offset_of_origDataStream_15() { return static_cast(offsetof(FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D, ___origDataStream_15)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_origDataStream_15() const { return ___origDataStream_15; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_origDataStream_15() { return &___origDataStream_15; } inline void set_origDataStream_15(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___origDataStream_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___origDataStream_15), (void*)value); } inline static int32_t get_offset_of_dataStream_16() { return static_cast(offsetof(FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D, ___dataStream_16)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_dataStream_16() const { return ___dataStream_16; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_dataStream_16() { return &___dataStream_16; } inline void set_dataStream_16(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___dataStream_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___dataStream_16), (void*)value); } inline static int32_t get_offset_of_controlStream_17() { return static_cast(offsetof(FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D, ___controlStream_17)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_controlStream_17() const { return ___controlStream_17; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_controlStream_17() { return &___controlStream_17; } inline void set_controlStream_17(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___controlStream_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___controlStream_17), (void*)value); } inline static int32_t get_offset_of_controlReader_18() { return static_cast(offsetof(FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D, ___controlReader_18)); } inline StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3 * get_controlReader_18() const { return ___controlReader_18; } inline StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3 ** get_address_of_controlReader_18() { return &___controlReader_18; } inline void set_controlReader_18(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3 * value) { ___controlReader_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___controlReader_18), (void*)value); } inline static int32_t get_offset_of_credentials_19() { return static_cast(offsetof(FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D, ___credentials_19)); } inline NetworkCredential_t263CA6068540C6DA0E1CDE919BD7A15C28D55686 * get_credentials_19() const { return ___credentials_19; } inline NetworkCredential_t263CA6068540C6DA0E1CDE919BD7A15C28D55686 ** get_address_of_credentials_19() { return &___credentials_19; } inline void set_credentials_19(NetworkCredential_t263CA6068540C6DA0E1CDE919BD7A15C28D55686 * value) { ___credentials_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___credentials_19), (void*)value); } inline static int32_t get_offset_of_hostEntry_20() { return static_cast(offsetof(FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D, ___hostEntry_20)); } inline IPHostEntry_tD787E3A1E0F633AC5A7761921DE4DC2A8EA117AA * get_hostEntry_20() const { return ___hostEntry_20; } inline IPHostEntry_tD787E3A1E0F633AC5A7761921DE4DC2A8EA117AA ** get_address_of_hostEntry_20() { return &___hostEntry_20; } inline void set_hostEntry_20(IPHostEntry_tD787E3A1E0F633AC5A7761921DE4DC2A8EA117AA * value) { ___hostEntry_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___hostEntry_20), (void*)value); } inline static int32_t get_offset_of_localEndPoint_21() { return static_cast(offsetof(FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D, ___localEndPoint_21)); } inline IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * get_localEndPoint_21() const { return ___localEndPoint_21; } inline IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E ** get_address_of_localEndPoint_21() { return &___localEndPoint_21; } inline void set_localEndPoint_21(IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * value) { ___localEndPoint_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___localEndPoint_21), (void*)value); } inline static int32_t get_offset_of_remoteEndPoint_22() { return static_cast(offsetof(FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D, ___remoteEndPoint_22)); } inline IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * get_remoteEndPoint_22() const { return ___remoteEndPoint_22; } inline IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E ** get_address_of_remoteEndPoint_22() { return &___remoteEndPoint_22; } inline void set_remoteEndPoint_22(IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * value) { ___remoteEndPoint_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___remoteEndPoint_22), (void*)value); } inline static int32_t get_offset_of_proxy_23() { return static_cast(offsetof(FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D, ___proxy_23)); } inline RuntimeObject* get_proxy_23() const { return ___proxy_23; } inline RuntimeObject** get_address_of_proxy_23() { return &___proxy_23; } inline void set_proxy_23(RuntimeObject* value) { ___proxy_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___proxy_23), (void*)value); } inline static int32_t get_offset_of_timeout_24() { return static_cast(offsetof(FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D, ___timeout_24)); } inline int32_t get_timeout_24() const { return ___timeout_24; } inline int32_t* get_address_of_timeout_24() { return &___timeout_24; } inline void set_timeout_24(int32_t value) { ___timeout_24 = value; } inline static int32_t get_offset_of_rwTimeout_25() { return static_cast(offsetof(FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D, ___rwTimeout_25)); } inline int32_t get_rwTimeout_25() const { return ___rwTimeout_25; } inline int32_t* get_address_of_rwTimeout_25() { return &___rwTimeout_25; } inline void set_rwTimeout_25(int32_t value) { ___rwTimeout_25 = value; } inline static int32_t get_offset_of_offset_26() { return static_cast(offsetof(FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D, ___offset_26)); } inline int64_t get_offset_26() const { return ___offset_26; } inline int64_t* get_address_of_offset_26() { return &___offset_26; } inline void set_offset_26(int64_t value) { ___offset_26 = value; } inline static int32_t get_offset_of_binary_27() { return static_cast(offsetof(FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D, ___binary_27)); } inline bool get_binary_27() const { return ___binary_27; } inline bool* get_address_of_binary_27() { return &___binary_27; } inline void set_binary_27(bool value) { ___binary_27 = value; } inline static int32_t get_offset_of_enableSsl_28() { return static_cast(offsetof(FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D, ___enableSsl_28)); } inline bool get_enableSsl_28() const { return ___enableSsl_28; } inline bool* get_address_of_enableSsl_28() { return &___enableSsl_28; } inline void set_enableSsl_28(bool value) { ___enableSsl_28 = value; } inline static int32_t get_offset_of_usePassive_29() { return static_cast(offsetof(FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D, ___usePassive_29)); } inline bool get_usePassive_29() const { return ___usePassive_29; } inline bool* get_address_of_usePassive_29() { return &___usePassive_29; } inline void set_usePassive_29(bool value) { ___usePassive_29 = value; } inline static int32_t get_offset_of_keepAlive_30() { return static_cast(offsetof(FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D, ___keepAlive_30)); } inline bool get_keepAlive_30() const { return ___keepAlive_30; } inline bool* get_address_of_keepAlive_30() { return &___keepAlive_30; } inline void set_keepAlive_30(bool value) { ___keepAlive_30 = value; } inline static int32_t get_offset_of_method_31() { return static_cast(offsetof(FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D, ___method_31)); } inline String_t* get_method_31() const { return ___method_31; } inline String_t** get_address_of_method_31() { return &___method_31; } inline void set_method_31(String_t* value) { ___method_31 = value; Il2CppCodeGenWriteBarrier((void**)(&___method_31), (void*)value); } inline static int32_t get_offset_of_renameTo_32() { return static_cast(offsetof(FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D, ___renameTo_32)); } inline String_t* get_renameTo_32() const { return ___renameTo_32; } inline String_t** get_address_of_renameTo_32() { return &___renameTo_32; } inline void set_renameTo_32(String_t* value) { ___renameTo_32 = value; Il2CppCodeGenWriteBarrier((void**)(&___renameTo_32), (void*)value); } inline static int32_t get_offset_of_locker_33() { return static_cast(offsetof(FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D, ___locker_33)); } inline RuntimeObject * get_locker_33() const { return ___locker_33; } inline RuntimeObject ** get_address_of_locker_33() { return &___locker_33; } inline void set_locker_33(RuntimeObject * value) { ___locker_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___locker_33), (void*)value); } inline static int32_t get_offset_of_requestState_34() { return static_cast(offsetof(FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D, ___requestState_34)); } inline int32_t get_requestState_34() const { return ___requestState_34; } inline int32_t* get_address_of_requestState_34() { return &___requestState_34; } inline void set_requestState_34(int32_t value) { ___requestState_34 = value; } inline static int32_t get_offset_of_asyncResult_35() { return static_cast(offsetof(FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D, ___asyncResult_35)); } inline FtpAsyncResult_t224DB9CD548355D326629E3F74E301C502FDCF42 * get_asyncResult_35() const { return ___asyncResult_35; } inline FtpAsyncResult_t224DB9CD548355D326629E3F74E301C502FDCF42 ** get_address_of_asyncResult_35() { return &___asyncResult_35; } inline void set_asyncResult_35(FtpAsyncResult_t224DB9CD548355D326629E3F74E301C502FDCF42 * value) { ___asyncResult_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___asyncResult_35), (void*)value); } inline static int32_t get_offset_of_ftpResponse_36() { return static_cast(offsetof(FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D, ___ftpResponse_36)); } inline FtpWebResponse_t4462ADF9C14124B97DC10705932A9234DACEED49 * get_ftpResponse_36() const { return ___ftpResponse_36; } inline FtpWebResponse_t4462ADF9C14124B97DC10705932A9234DACEED49 ** get_address_of_ftpResponse_36() { return &___ftpResponse_36; } inline void set_ftpResponse_36(FtpWebResponse_t4462ADF9C14124B97DC10705932A9234DACEED49 * value) { ___ftpResponse_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___ftpResponse_36), (void*)value); } inline static int32_t get_offset_of_requestStream_37() { return static_cast(offsetof(FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D, ___requestStream_37)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_requestStream_37() const { return ___requestStream_37; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_requestStream_37() { return &___requestStream_37; } inline void set_requestStream_37(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___requestStream_37 = value; Il2CppCodeGenWriteBarrier((void**)(&___requestStream_37), (void*)value); } inline static int32_t get_offset_of_initial_path_38() { return static_cast(offsetof(FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D, ___initial_path_38)); } inline String_t* get_initial_path_38() const { return ___initial_path_38; } inline String_t** get_address_of_initial_path_38() { return &___initial_path_38; } inline void set_initial_path_38(String_t* value) { ___initial_path_38 = value; Il2CppCodeGenWriteBarrier((void**)(&___initial_path_38), (void*)value); } inline static int32_t get_offset_of_dataEncoding_40() { return static_cast(offsetof(FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D, ___dataEncoding_40)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_dataEncoding_40() const { return ___dataEncoding_40; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_dataEncoding_40() { return &___dataEncoding_40; } inline void set_dataEncoding_40(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___dataEncoding_40 = value; Il2CppCodeGenWriteBarrier((void**)(&___dataEncoding_40), (void*)value); } }; struct FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D_StaticFields { public: // System.String[] System.Net.FtpWebRequest::supportedCommands StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___supportedCommands_39; public: inline static int32_t get_offset_of_supportedCommands_39() { return static_cast(offsetof(FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D_StaticFields, ___supportedCommands_39)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_supportedCommands_39() const { return ___supportedCommands_39; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_supportedCommands_39() { return &___supportedCommands_39; } inline void set_supportedCommands_39(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___supportedCommands_39 = value; Il2CppCodeGenWriteBarrier((void**)(&___supportedCommands_39), (void*)value); } }; // System.ComponentModel.HandledEventHandler struct HandledEventHandler_t28A2B5D1C438B57403577D52457CA29231591468 : public MulticastDelegate_t { public: public: }; // System.Net.HeaderParser struct HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD : public MulticastDelegate_t { public: public: }; // System.Net.HttpContinueDelegate struct HttpContinueDelegate_t84ADA70221E0AC5A340AD9D012F81C1683FC240F : public MulticastDelegate_t { public: public: }; // System.Net.HttpWebRequest struct HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A : public WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E { public: // System.Uri System.Net.HttpWebRequest::requestUri Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___requestUri_12; // System.Uri System.Net.HttpWebRequest::actualUri Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___actualUri_13; // System.Boolean System.Net.HttpWebRequest::hostChanged bool ___hostChanged_14; // System.Boolean System.Net.HttpWebRequest::allowAutoRedirect bool ___allowAutoRedirect_15; // System.Boolean System.Net.HttpWebRequest::allowBuffering bool ___allowBuffering_16; // System.Security.Cryptography.X509Certificates.X509CertificateCollection System.Net.HttpWebRequest::certificates X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B * ___certificates_17; // System.String System.Net.HttpWebRequest::connectionGroup String_t* ___connectionGroup_18; // System.Boolean System.Net.HttpWebRequest::haveContentLength bool ___haveContentLength_19; // System.Int64 System.Net.HttpWebRequest::contentLength int64_t ___contentLength_20; // System.Net.HttpContinueDelegate System.Net.HttpWebRequest::continueDelegate HttpContinueDelegate_t84ADA70221E0AC5A340AD9D012F81C1683FC240F * ___continueDelegate_21; // System.Net.CookieContainer System.Net.HttpWebRequest::cookieContainer CookieContainer_tF22AADBBB0BBD4D3FF4440A226F8E8580B08F4C2 * ___cookieContainer_22; // System.Net.ICredentials System.Net.HttpWebRequest::credentials RuntimeObject* ___credentials_23; // System.Boolean System.Net.HttpWebRequest::haveResponse bool ___haveResponse_24; // System.Boolean System.Net.HttpWebRequest::requestSent bool ___requestSent_25; // System.Net.WebHeaderCollection System.Net.HttpWebRequest::webHeaders WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * ___webHeaders_26; // System.Boolean System.Net.HttpWebRequest::keepAlive bool ___keepAlive_27; // System.Int32 System.Net.HttpWebRequest::maxAutoRedirect int32_t ___maxAutoRedirect_28; // System.String System.Net.HttpWebRequest::mediaType String_t* ___mediaType_29; // System.String System.Net.HttpWebRequest::method String_t* ___method_30; // System.String System.Net.HttpWebRequest::initialMethod String_t* ___initialMethod_31; // System.Boolean System.Net.HttpWebRequest::pipelined bool ___pipelined_32; // System.Boolean System.Net.HttpWebRequest::preAuthenticate bool ___preAuthenticate_33; // System.Boolean System.Net.HttpWebRequest::usedPreAuth bool ___usedPreAuth_34; // System.Version System.Net.HttpWebRequest::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_35; // System.Boolean System.Net.HttpWebRequest::force_version bool ___force_version_36; // System.Version System.Net.HttpWebRequest::actualVersion Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___actualVersion_37; // System.Net.IWebProxy System.Net.HttpWebRequest::proxy RuntimeObject* ___proxy_38; // System.Boolean System.Net.HttpWebRequest::sendChunked bool ___sendChunked_39; // System.Net.ServicePoint System.Net.HttpWebRequest::servicePoint ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * ___servicePoint_40; // System.Int32 System.Net.HttpWebRequest::timeout int32_t ___timeout_41; // System.Net.WebRequestStream System.Net.HttpWebRequest::writeStream WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887 * ___writeStream_42; // System.Net.HttpWebResponse System.Net.HttpWebRequest::webResponse HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * ___webResponse_43; // System.Net.WebCompletionSource System.Net.HttpWebRequest::responseTask WebCompletionSource_tF1258B468350A374EC59049FE0E31C7879D6AB1E * ___responseTask_44; // System.Net.WebOperation System.Net.HttpWebRequest::currentOperation WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * ___currentOperation_45; // System.Int32 System.Net.HttpWebRequest::aborted int32_t ___aborted_46; // System.Boolean System.Net.HttpWebRequest::gotRequestStream bool ___gotRequestStream_47; // System.Int32 System.Net.HttpWebRequest::redirects int32_t ___redirects_48; // System.Boolean System.Net.HttpWebRequest::expectContinue bool ___expectContinue_49; // System.Boolean System.Net.HttpWebRequest::getResponseCalled bool ___getResponseCalled_50; // System.Object System.Net.HttpWebRequest::locker RuntimeObject * ___locker_51; // System.Boolean System.Net.HttpWebRequest::finished_reading bool ___finished_reading_52; // System.Net.DecompressionMethods System.Net.HttpWebRequest::auto_decomp int32_t ___auto_decomp_53; // System.Int32 System.Net.HttpWebRequest::readWriteTimeout int32_t ___readWriteTimeout_55; // Mono.Security.Interface.MonoTlsProvider System.Net.HttpWebRequest::tlsProvider MonoTlsProvider_tBE72637BEDBD1516A1BC30D94F7159B7289CF0D7 * ___tlsProvider_56; // Mono.Security.Interface.MonoTlsSettings System.Net.HttpWebRequest::tlsSettings MonoTlsSettings_tBDF72C906FE6477EFBA9493F7F5CB5ADE2C80E21 * ___tlsSettings_57; // System.Net.ServerCertValidationCallback System.Net.HttpWebRequest::certValidationCallback ServerCertValidationCallback_t885D5EF5D7240832CCAD6FA7D59D4ED2DEAAB1FA * ___certValidationCallback_58; // System.Net.HttpWebRequest/AuthorizationState System.Net.HttpWebRequest::auth_state AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 ___auth_state_59; // System.Net.HttpWebRequest/AuthorizationState System.Net.HttpWebRequest::proxy_auth_state AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 ___proxy_auth_state_60; // System.String System.Net.HttpWebRequest::host String_t* ___host_61; // System.Func`2 System.Net.HttpWebRequest::ResendContentFactory Func_2_t1536C4C0AD9482796F7C72574A4B3DE8607E4E20 * ___ResendContentFactory_62; // System.Boolean System.Net.HttpWebRequest::k__BackingField bool ___U3CThrowOnErrorU3Ek__BackingField_63; // System.Boolean System.Net.HttpWebRequest::unsafe_auth_blah bool ___unsafe_auth_blah_64; public: inline static int32_t get_offset_of_requestUri_12() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___requestUri_12)); } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * get_requestUri_12() const { return ___requestUri_12; } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** get_address_of_requestUri_12() { return &___requestUri_12; } inline void set_requestUri_12(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * value) { ___requestUri_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___requestUri_12), (void*)value); } inline static int32_t get_offset_of_actualUri_13() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___actualUri_13)); } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * get_actualUri_13() const { return ___actualUri_13; } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** get_address_of_actualUri_13() { return &___actualUri_13; } inline void set_actualUri_13(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * value) { ___actualUri_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___actualUri_13), (void*)value); } inline static int32_t get_offset_of_hostChanged_14() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___hostChanged_14)); } inline bool get_hostChanged_14() const { return ___hostChanged_14; } inline bool* get_address_of_hostChanged_14() { return &___hostChanged_14; } inline void set_hostChanged_14(bool value) { ___hostChanged_14 = value; } inline static int32_t get_offset_of_allowAutoRedirect_15() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___allowAutoRedirect_15)); } inline bool get_allowAutoRedirect_15() const { return ___allowAutoRedirect_15; } inline bool* get_address_of_allowAutoRedirect_15() { return &___allowAutoRedirect_15; } inline void set_allowAutoRedirect_15(bool value) { ___allowAutoRedirect_15 = value; } inline static int32_t get_offset_of_allowBuffering_16() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___allowBuffering_16)); } inline bool get_allowBuffering_16() const { return ___allowBuffering_16; } inline bool* get_address_of_allowBuffering_16() { return &___allowBuffering_16; } inline void set_allowBuffering_16(bool value) { ___allowBuffering_16 = value; } inline static int32_t get_offset_of_certificates_17() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___certificates_17)); } inline X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B * get_certificates_17() const { return ___certificates_17; } inline X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B ** get_address_of_certificates_17() { return &___certificates_17; } inline void set_certificates_17(X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B * value) { ___certificates_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___certificates_17), (void*)value); } inline static int32_t get_offset_of_connectionGroup_18() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___connectionGroup_18)); } inline String_t* get_connectionGroup_18() const { return ___connectionGroup_18; } inline String_t** get_address_of_connectionGroup_18() { return &___connectionGroup_18; } inline void set_connectionGroup_18(String_t* value) { ___connectionGroup_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___connectionGroup_18), (void*)value); } inline static int32_t get_offset_of_haveContentLength_19() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___haveContentLength_19)); } inline bool get_haveContentLength_19() const { return ___haveContentLength_19; } inline bool* get_address_of_haveContentLength_19() { return &___haveContentLength_19; } inline void set_haveContentLength_19(bool value) { ___haveContentLength_19 = value; } inline static int32_t get_offset_of_contentLength_20() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___contentLength_20)); } inline int64_t get_contentLength_20() const { return ___contentLength_20; } inline int64_t* get_address_of_contentLength_20() { return &___contentLength_20; } inline void set_contentLength_20(int64_t value) { ___contentLength_20 = value; } inline static int32_t get_offset_of_continueDelegate_21() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___continueDelegate_21)); } inline HttpContinueDelegate_t84ADA70221E0AC5A340AD9D012F81C1683FC240F * get_continueDelegate_21() const { return ___continueDelegate_21; } inline HttpContinueDelegate_t84ADA70221E0AC5A340AD9D012F81C1683FC240F ** get_address_of_continueDelegate_21() { return &___continueDelegate_21; } inline void set_continueDelegate_21(HttpContinueDelegate_t84ADA70221E0AC5A340AD9D012F81C1683FC240F * value) { ___continueDelegate_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___continueDelegate_21), (void*)value); } inline static int32_t get_offset_of_cookieContainer_22() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___cookieContainer_22)); } inline CookieContainer_tF22AADBBB0BBD4D3FF4440A226F8E8580B08F4C2 * get_cookieContainer_22() const { return ___cookieContainer_22; } inline CookieContainer_tF22AADBBB0BBD4D3FF4440A226F8E8580B08F4C2 ** get_address_of_cookieContainer_22() { return &___cookieContainer_22; } inline void set_cookieContainer_22(CookieContainer_tF22AADBBB0BBD4D3FF4440A226F8E8580B08F4C2 * value) { ___cookieContainer_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___cookieContainer_22), (void*)value); } inline static int32_t get_offset_of_credentials_23() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___credentials_23)); } inline RuntimeObject* get_credentials_23() const { return ___credentials_23; } inline RuntimeObject** get_address_of_credentials_23() { return &___credentials_23; } inline void set_credentials_23(RuntimeObject* value) { ___credentials_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___credentials_23), (void*)value); } inline static int32_t get_offset_of_haveResponse_24() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___haveResponse_24)); } inline bool get_haveResponse_24() const { return ___haveResponse_24; } inline bool* get_address_of_haveResponse_24() { return &___haveResponse_24; } inline void set_haveResponse_24(bool value) { ___haveResponse_24 = value; } inline static int32_t get_offset_of_requestSent_25() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___requestSent_25)); } inline bool get_requestSent_25() const { return ___requestSent_25; } inline bool* get_address_of_requestSent_25() { return &___requestSent_25; } inline void set_requestSent_25(bool value) { ___requestSent_25 = value; } inline static int32_t get_offset_of_webHeaders_26() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___webHeaders_26)); } inline WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * get_webHeaders_26() const { return ___webHeaders_26; } inline WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 ** get_address_of_webHeaders_26() { return &___webHeaders_26; } inline void set_webHeaders_26(WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * value) { ___webHeaders_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___webHeaders_26), (void*)value); } inline static int32_t get_offset_of_keepAlive_27() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___keepAlive_27)); } inline bool get_keepAlive_27() const { return ___keepAlive_27; } inline bool* get_address_of_keepAlive_27() { return &___keepAlive_27; } inline void set_keepAlive_27(bool value) { ___keepAlive_27 = value; } inline static int32_t get_offset_of_maxAutoRedirect_28() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___maxAutoRedirect_28)); } inline int32_t get_maxAutoRedirect_28() const { return ___maxAutoRedirect_28; } inline int32_t* get_address_of_maxAutoRedirect_28() { return &___maxAutoRedirect_28; } inline void set_maxAutoRedirect_28(int32_t value) { ___maxAutoRedirect_28 = value; } inline static int32_t get_offset_of_mediaType_29() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___mediaType_29)); } inline String_t* get_mediaType_29() const { return ___mediaType_29; } inline String_t** get_address_of_mediaType_29() { return &___mediaType_29; } inline void set_mediaType_29(String_t* value) { ___mediaType_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___mediaType_29), (void*)value); } inline static int32_t get_offset_of_method_30() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___method_30)); } inline String_t* get_method_30() const { return ___method_30; } inline String_t** get_address_of_method_30() { return &___method_30; } inline void set_method_30(String_t* value) { ___method_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___method_30), (void*)value); } inline static int32_t get_offset_of_initialMethod_31() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___initialMethod_31)); } inline String_t* get_initialMethod_31() const { return ___initialMethod_31; } inline String_t** get_address_of_initialMethod_31() { return &___initialMethod_31; } inline void set_initialMethod_31(String_t* value) { ___initialMethod_31 = value; Il2CppCodeGenWriteBarrier((void**)(&___initialMethod_31), (void*)value); } inline static int32_t get_offset_of_pipelined_32() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___pipelined_32)); } inline bool get_pipelined_32() const { return ___pipelined_32; } inline bool* get_address_of_pipelined_32() { return &___pipelined_32; } inline void set_pipelined_32(bool value) { ___pipelined_32 = value; } inline static int32_t get_offset_of_preAuthenticate_33() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___preAuthenticate_33)); } inline bool get_preAuthenticate_33() const { return ___preAuthenticate_33; } inline bool* get_address_of_preAuthenticate_33() { return &___preAuthenticate_33; } inline void set_preAuthenticate_33(bool value) { ___preAuthenticate_33 = value; } inline static int32_t get_offset_of_usedPreAuth_34() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___usedPreAuth_34)); } inline bool get_usedPreAuth_34() const { return ___usedPreAuth_34; } inline bool* get_address_of_usedPreAuth_34() { return &___usedPreAuth_34; } inline void set_usedPreAuth_34(bool value) { ___usedPreAuth_34 = value; } inline static int32_t get_offset_of_version_35() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___version_35)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_35() const { return ___version_35; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_35() { return &___version_35; } inline void set_version_35(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_35), (void*)value); } inline static int32_t get_offset_of_force_version_36() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___force_version_36)); } inline bool get_force_version_36() const { return ___force_version_36; } inline bool* get_address_of_force_version_36() { return &___force_version_36; } inline void set_force_version_36(bool value) { ___force_version_36 = value; } inline static int32_t get_offset_of_actualVersion_37() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___actualVersion_37)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_actualVersion_37() const { return ___actualVersion_37; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_actualVersion_37() { return &___actualVersion_37; } inline void set_actualVersion_37(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___actualVersion_37 = value; Il2CppCodeGenWriteBarrier((void**)(&___actualVersion_37), (void*)value); } inline static int32_t get_offset_of_proxy_38() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___proxy_38)); } inline RuntimeObject* get_proxy_38() const { return ___proxy_38; } inline RuntimeObject** get_address_of_proxy_38() { return &___proxy_38; } inline void set_proxy_38(RuntimeObject* value) { ___proxy_38 = value; Il2CppCodeGenWriteBarrier((void**)(&___proxy_38), (void*)value); } inline static int32_t get_offset_of_sendChunked_39() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___sendChunked_39)); } inline bool get_sendChunked_39() const { return ___sendChunked_39; } inline bool* get_address_of_sendChunked_39() { return &___sendChunked_39; } inline void set_sendChunked_39(bool value) { ___sendChunked_39 = value; } inline static int32_t get_offset_of_servicePoint_40() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___servicePoint_40)); } inline ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * get_servicePoint_40() const { return ___servicePoint_40; } inline ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 ** get_address_of_servicePoint_40() { return &___servicePoint_40; } inline void set_servicePoint_40(ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * value) { ___servicePoint_40 = value; Il2CppCodeGenWriteBarrier((void**)(&___servicePoint_40), (void*)value); } inline static int32_t get_offset_of_timeout_41() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___timeout_41)); } inline int32_t get_timeout_41() const { return ___timeout_41; } inline int32_t* get_address_of_timeout_41() { return &___timeout_41; } inline void set_timeout_41(int32_t value) { ___timeout_41 = value; } inline static int32_t get_offset_of_writeStream_42() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___writeStream_42)); } inline WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887 * get_writeStream_42() const { return ___writeStream_42; } inline WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887 ** get_address_of_writeStream_42() { return &___writeStream_42; } inline void set_writeStream_42(WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887 * value) { ___writeStream_42 = value; Il2CppCodeGenWriteBarrier((void**)(&___writeStream_42), (void*)value); } inline static int32_t get_offset_of_webResponse_43() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___webResponse_43)); } inline HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * get_webResponse_43() const { return ___webResponse_43; } inline HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB ** get_address_of_webResponse_43() { return &___webResponse_43; } inline void set_webResponse_43(HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * value) { ___webResponse_43 = value; Il2CppCodeGenWriteBarrier((void**)(&___webResponse_43), (void*)value); } inline static int32_t get_offset_of_responseTask_44() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___responseTask_44)); } inline WebCompletionSource_tF1258B468350A374EC59049FE0E31C7879D6AB1E * get_responseTask_44() const { return ___responseTask_44; } inline WebCompletionSource_tF1258B468350A374EC59049FE0E31C7879D6AB1E ** get_address_of_responseTask_44() { return &___responseTask_44; } inline void set_responseTask_44(WebCompletionSource_tF1258B468350A374EC59049FE0E31C7879D6AB1E * value) { ___responseTask_44 = value; Il2CppCodeGenWriteBarrier((void**)(&___responseTask_44), (void*)value); } inline static int32_t get_offset_of_currentOperation_45() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___currentOperation_45)); } inline WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * get_currentOperation_45() const { return ___currentOperation_45; } inline WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 ** get_address_of_currentOperation_45() { return &___currentOperation_45; } inline void set_currentOperation_45(WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * value) { ___currentOperation_45 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentOperation_45), (void*)value); } inline static int32_t get_offset_of_aborted_46() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___aborted_46)); } inline int32_t get_aborted_46() const { return ___aborted_46; } inline int32_t* get_address_of_aborted_46() { return &___aborted_46; } inline void set_aborted_46(int32_t value) { ___aborted_46 = value; } inline static int32_t get_offset_of_gotRequestStream_47() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___gotRequestStream_47)); } inline bool get_gotRequestStream_47() const { return ___gotRequestStream_47; } inline bool* get_address_of_gotRequestStream_47() { return &___gotRequestStream_47; } inline void set_gotRequestStream_47(bool value) { ___gotRequestStream_47 = value; } inline static int32_t get_offset_of_redirects_48() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___redirects_48)); } inline int32_t get_redirects_48() const { return ___redirects_48; } inline int32_t* get_address_of_redirects_48() { return &___redirects_48; } inline void set_redirects_48(int32_t value) { ___redirects_48 = value; } inline static int32_t get_offset_of_expectContinue_49() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___expectContinue_49)); } inline bool get_expectContinue_49() const { return ___expectContinue_49; } inline bool* get_address_of_expectContinue_49() { return &___expectContinue_49; } inline void set_expectContinue_49(bool value) { ___expectContinue_49 = value; } inline static int32_t get_offset_of_getResponseCalled_50() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___getResponseCalled_50)); } inline bool get_getResponseCalled_50() const { return ___getResponseCalled_50; } inline bool* get_address_of_getResponseCalled_50() { return &___getResponseCalled_50; } inline void set_getResponseCalled_50(bool value) { ___getResponseCalled_50 = value; } inline static int32_t get_offset_of_locker_51() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___locker_51)); } inline RuntimeObject * get_locker_51() const { return ___locker_51; } inline RuntimeObject ** get_address_of_locker_51() { return &___locker_51; } inline void set_locker_51(RuntimeObject * value) { ___locker_51 = value; Il2CppCodeGenWriteBarrier((void**)(&___locker_51), (void*)value); } inline static int32_t get_offset_of_finished_reading_52() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___finished_reading_52)); } inline bool get_finished_reading_52() const { return ___finished_reading_52; } inline bool* get_address_of_finished_reading_52() { return &___finished_reading_52; } inline void set_finished_reading_52(bool value) { ___finished_reading_52 = value; } inline static int32_t get_offset_of_auto_decomp_53() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___auto_decomp_53)); } inline int32_t get_auto_decomp_53() const { return ___auto_decomp_53; } inline int32_t* get_address_of_auto_decomp_53() { return &___auto_decomp_53; } inline void set_auto_decomp_53(int32_t value) { ___auto_decomp_53 = value; } inline static int32_t get_offset_of_readWriteTimeout_55() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___readWriteTimeout_55)); } inline int32_t get_readWriteTimeout_55() const { return ___readWriteTimeout_55; } inline int32_t* get_address_of_readWriteTimeout_55() { return &___readWriteTimeout_55; } inline void set_readWriteTimeout_55(int32_t value) { ___readWriteTimeout_55 = value; } inline static int32_t get_offset_of_tlsProvider_56() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___tlsProvider_56)); } inline MonoTlsProvider_tBE72637BEDBD1516A1BC30D94F7159B7289CF0D7 * get_tlsProvider_56() const { return ___tlsProvider_56; } inline MonoTlsProvider_tBE72637BEDBD1516A1BC30D94F7159B7289CF0D7 ** get_address_of_tlsProvider_56() { return &___tlsProvider_56; } inline void set_tlsProvider_56(MonoTlsProvider_tBE72637BEDBD1516A1BC30D94F7159B7289CF0D7 * value) { ___tlsProvider_56 = value; Il2CppCodeGenWriteBarrier((void**)(&___tlsProvider_56), (void*)value); } inline static int32_t get_offset_of_tlsSettings_57() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___tlsSettings_57)); } inline MonoTlsSettings_tBDF72C906FE6477EFBA9493F7F5CB5ADE2C80E21 * get_tlsSettings_57() const { return ___tlsSettings_57; } inline MonoTlsSettings_tBDF72C906FE6477EFBA9493F7F5CB5ADE2C80E21 ** get_address_of_tlsSettings_57() { return &___tlsSettings_57; } inline void set_tlsSettings_57(MonoTlsSettings_tBDF72C906FE6477EFBA9493F7F5CB5ADE2C80E21 * value) { ___tlsSettings_57 = value; Il2CppCodeGenWriteBarrier((void**)(&___tlsSettings_57), (void*)value); } inline static int32_t get_offset_of_certValidationCallback_58() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___certValidationCallback_58)); } inline ServerCertValidationCallback_t885D5EF5D7240832CCAD6FA7D59D4ED2DEAAB1FA * get_certValidationCallback_58() const { return ___certValidationCallback_58; } inline ServerCertValidationCallback_t885D5EF5D7240832CCAD6FA7D59D4ED2DEAAB1FA ** get_address_of_certValidationCallback_58() { return &___certValidationCallback_58; } inline void set_certValidationCallback_58(ServerCertValidationCallback_t885D5EF5D7240832CCAD6FA7D59D4ED2DEAAB1FA * value) { ___certValidationCallback_58 = value; Il2CppCodeGenWriteBarrier((void**)(&___certValidationCallback_58), (void*)value); } inline static int32_t get_offset_of_auth_state_59() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___auth_state_59)); } inline AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 get_auth_state_59() const { return ___auth_state_59; } inline AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 * get_address_of_auth_state_59() { return &___auth_state_59; } inline void set_auth_state_59(AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 value) { ___auth_state_59 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___auth_state_59))->___request_0), (void*)NULL); } inline static int32_t get_offset_of_proxy_auth_state_60() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___proxy_auth_state_60)); } inline AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 get_proxy_auth_state_60() const { return ___proxy_auth_state_60; } inline AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 * get_address_of_proxy_auth_state_60() { return &___proxy_auth_state_60; } inline void set_proxy_auth_state_60(AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 value) { ___proxy_auth_state_60 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___proxy_auth_state_60))->___request_0), (void*)NULL); } inline static int32_t get_offset_of_host_61() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___host_61)); } inline String_t* get_host_61() const { return ___host_61; } inline String_t** get_address_of_host_61() { return &___host_61; } inline void set_host_61(String_t* value) { ___host_61 = value; Il2CppCodeGenWriteBarrier((void**)(&___host_61), (void*)value); } inline static int32_t get_offset_of_ResendContentFactory_62() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___ResendContentFactory_62)); } inline Func_2_t1536C4C0AD9482796F7C72574A4B3DE8607E4E20 * get_ResendContentFactory_62() const { return ___ResendContentFactory_62; } inline Func_2_t1536C4C0AD9482796F7C72574A4B3DE8607E4E20 ** get_address_of_ResendContentFactory_62() { return &___ResendContentFactory_62; } inline void set_ResendContentFactory_62(Func_2_t1536C4C0AD9482796F7C72574A4B3DE8607E4E20 * value) { ___ResendContentFactory_62 = value; Il2CppCodeGenWriteBarrier((void**)(&___ResendContentFactory_62), (void*)value); } inline static int32_t get_offset_of_U3CThrowOnErrorU3Ek__BackingField_63() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___U3CThrowOnErrorU3Ek__BackingField_63)); } inline bool get_U3CThrowOnErrorU3Ek__BackingField_63() const { return ___U3CThrowOnErrorU3Ek__BackingField_63; } inline bool* get_address_of_U3CThrowOnErrorU3Ek__BackingField_63() { return &___U3CThrowOnErrorU3Ek__BackingField_63; } inline void set_U3CThrowOnErrorU3Ek__BackingField_63(bool value) { ___U3CThrowOnErrorU3Ek__BackingField_63 = value; } inline static int32_t get_offset_of_unsafe_auth_blah_64() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___unsafe_auth_blah_64)); } inline bool get_unsafe_auth_blah_64() const { return ___unsafe_auth_blah_64; } inline bool* get_address_of_unsafe_auth_blah_64() { return &___unsafe_auth_blah_64; } inline void set_unsafe_auth_blah_64(bool value) { ___unsafe_auth_blah_64 = value; } }; struct HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A_StaticFields { public: // System.Int32 System.Net.HttpWebRequest::defaultMaxResponseHeadersLength int32_t ___defaultMaxResponseHeadersLength_54; public: inline static int32_t get_offset_of_defaultMaxResponseHeadersLength_54() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A_StaticFields, ___defaultMaxResponseHeadersLength_54)); } inline int32_t get_defaultMaxResponseHeadersLength_54() const { return ___defaultMaxResponseHeadersLength_54; } inline int32_t* get_address_of_defaultMaxResponseHeadersLength_54() { return &___defaultMaxResponseHeadersLength_54; } inline void set_defaultMaxResponseHeadersLength_54(int32_t value) { ___defaultMaxResponseHeadersLength_54 = value; } }; // System.IOAsyncCallback struct IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E : public MulticastDelegate_t { public: public: }; // System.IO.IOException struct IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: // System.String System.IO.IOException::_maybeFullPath String_t* ____maybeFullPath_17; public: inline static int32_t get_offset_of__maybeFullPath_17() { return static_cast(offsetof(IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA, ____maybeFullPath_17)); } inline String_t* get__maybeFullPath_17() const { return ____maybeFullPath_17; } inline String_t** get_address_of__maybeFullPath_17() { return &____maybeFullPath_17; } inline void set__maybeFullPath_17(String_t* value) { ____maybeFullPath_17 = value; Il2CppCodeGenWriteBarrier((void**)(&____maybeFullPath_17), (void*)value); } }; // System.ComponentModel.Int16Converter struct Int16Converter_t06F8132C8D9EB4AACD2798F07FF71AA0F4D23363 : public BaseNumberConverter_t6CA2001CE79249FCF74FC888710AAD5CA23B748C { public: public: }; // System.ComponentModel.Int32Converter struct Int32Converter_t7CB6D229AF03701BFDDC546C8C398AAF320BA094 : public BaseNumberConverter_t6CA2001CE79249FCF74FC888710AAD5CA23B748C { public: public: }; // System.ComponentModel.Int64Converter struct Int64Converter_t397B7C232C9417FB27D70380FD5C9287819F19F5 : public BaseNumberConverter_t6CA2001CE79249FCF74FC888710AAD5CA23B748C { public: public: }; // System.Net.InternalException struct InternalException_tC23D90FD6F24F6AFC7163A5F8AF3D4AF817D2184 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.InvalidOperationException struct InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.ComponentModel.LicenseException struct LicenseException_tF6DDD20031120A48931FEA84CC6ACB3D89B612DF : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: // System.Type System.ComponentModel.LicenseException::type Type_t * ___type_17; // System.Object System.ComponentModel.LicenseException::instance RuntimeObject * ___instance_18; public: inline static int32_t get_offset_of_type_17() { return static_cast(offsetof(LicenseException_tF6DDD20031120A48931FEA84CC6ACB3D89B612DF, ___type_17)); } inline Type_t * get_type_17() const { return ___type_17; } inline Type_t ** get_address_of_type_17() { return &___type_17; } inline void set_type_17(Type_t * value) { ___type_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___type_17), (void*)value); } inline static int32_t get_offset_of_instance_18() { return static_cast(offsetof(LicenseException_tF6DDD20031120A48931FEA84CC6ACB3D89B612DF, ___instance_18)); } inline RuntimeObject * get_instance_18() const { return ___instance_18; } inline RuntimeObject ** get_address_of_instance_18() { return &___instance_18; } inline void set_instance_18(RuntimeObject * value) { ___instance_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_18), (void*)value); } }; // System.ComponentModel.ListChangedEventHandler struct ListChangedEventHandler_t02874ED3C8355742E3E62AED85A53F3140506B8C : public MulticastDelegate_t { public: public: }; // System.Net.Security.LocalCertSelectionCallback struct LocalCertSelectionCallback_t6BACE61FA922DCD211EDF7331345481DD5D27A2C : public MulticastDelegate_t { public: public: }; // System.Net.Security.LocalCertificateSelectionCallback struct LocalCertificateSelectionCallback_t4115D8E729443BDCD5A5207B9ED63F2A6621D0E1 : public MulticastDelegate_t { public: public: }; // System.Threading.ManualResetEvent struct ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA : public EventWaitHandle_t80CDEB33529EF7549E7D3E3B689D8272B9F37F3C { public: public: }; // Mono.Security.Interface.MonoTlsSettings struct MonoTlsSettings_tBDF72C906FE6477EFBA9493F7F5CB5ADE2C80E21 : public RuntimeObject { public: // Mono.Security.Interface.MonoRemoteCertificateValidationCallback Mono.Security.Interface.MonoTlsSettings::k__BackingField MonoRemoteCertificateValidationCallback_t2839B48DF46207F939A25D598EE37F40F97CE5CF * ___U3CRemoteCertificateValidationCallbackU3Ek__BackingField_0; // Mono.Security.Interface.MonoLocalCertificateSelectionCallback Mono.Security.Interface.MonoTlsSettings::k__BackingField MonoLocalCertificateSelectionCallback_t4622F0909260C4D909995190EBD3804A1CBE990A * ___U3CClientCertificateSelectionCallbackU3Ek__BackingField_1; // System.Nullable`1 Mono.Security.Interface.MonoTlsSettings::k__BackingField Nullable_1_t70A8504898A1894C4480C80B2A7FAC6E7823F89D ___U3CCertificateValidationTimeU3Ek__BackingField_2; // System.Security.Cryptography.X509Certificates.X509CertificateCollection Mono.Security.Interface.MonoTlsSettings::k__BackingField X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B * ___U3CTrustAnchorsU3Ek__BackingField_3; // System.Object Mono.Security.Interface.MonoTlsSettings::k__BackingField RuntimeObject * ___U3CUserSettingsU3Ek__BackingField_4; // System.String[] Mono.Security.Interface.MonoTlsSettings::k__BackingField StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___U3CCertificateSearchPathsU3Ek__BackingField_5; // System.Boolean Mono.Security.Interface.MonoTlsSettings::k__BackingField bool ___U3CSendCloseNotifyU3Ek__BackingField_6; // System.Nullable`1 Mono.Security.Interface.MonoTlsSettings::k__BackingField Nullable_1_tA368B61397E0DCBFA85FBD6D0C7EFB54328303DD ___U3CEnabledProtocolsU3Ek__BackingField_7; // Mono.Security.Interface.CipherSuiteCode[] Mono.Security.Interface.MonoTlsSettings::k__BackingField CipherSuiteCodeU5BU5D_t1F0A013E35A79A56B467224340EFB73B2DA94C7C* ___U3CEnabledCiphersU3Ek__BackingField_8; // System.Boolean Mono.Security.Interface.MonoTlsSettings::cloned bool ___cloned_9; // System.Boolean Mono.Security.Interface.MonoTlsSettings::checkCertName bool ___checkCertName_10; // System.Boolean Mono.Security.Interface.MonoTlsSettings::checkCertRevocationStatus bool ___checkCertRevocationStatus_11; // System.Nullable`1 Mono.Security.Interface.MonoTlsSettings::useServicePointManagerCallback Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ___useServicePointManagerCallback_12; // System.Boolean Mono.Security.Interface.MonoTlsSettings::skipSystemValidators bool ___skipSystemValidators_13; // System.Boolean Mono.Security.Interface.MonoTlsSettings::callbackNeedsChain bool ___callbackNeedsChain_14; // Mono.Security.Interface.ICertificateValidator Mono.Security.Interface.MonoTlsSettings::certificateValidator RuntimeObject* ___certificateValidator_15; public: inline static int32_t get_offset_of_U3CRemoteCertificateValidationCallbackU3Ek__BackingField_0() { return static_cast(offsetof(MonoTlsSettings_tBDF72C906FE6477EFBA9493F7F5CB5ADE2C80E21, ___U3CRemoteCertificateValidationCallbackU3Ek__BackingField_0)); } inline MonoRemoteCertificateValidationCallback_t2839B48DF46207F939A25D598EE37F40F97CE5CF * get_U3CRemoteCertificateValidationCallbackU3Ek__BackingField_0() const { return ___U3CRemoteCertificateValidationCallbackU3Ek__BackingField_0; } inline MonoRemoteCertificateValidationCallback_t2839B48DF46207F939A25D598EE37F40F97CE5CF ** get_address_of_U3CRemoteCertificateValidationCallbackU3Ek__BackingField_0() { return &___U3CRemoteCertificateValidationCallbackU3Ek__BackingField_0; } inline void set_U3CRemoteCertificateValidationCallbackU3Ek__BackingField_0(MonoRemoteCertificateValidationCallback_t2839B48DF46207F939A25D598EE37F40F97CE5CF * value) { ___U3CRemoteCertificateValidationCallbackU3Ek__BackingField_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CRemoteCertificateValidationCallbackU3Ek__BackingField_0), (void*)value); } inline static int32_t get_offset_of_U3CClientCertificateSelectionCallbackU3Ek__BackingField_1() { return static_cast(offsetof(MonoTlsSettings_tBDF72C906FE6477EFBA9493F7F5CB5ADE2C80E21, ___U3CClientCertificateSelectionCallbackU3Ek__BackingField_1)); } inline MonoLocalCertificateSelectionCallback_t4622F0909260C4D909995190EBD3804A1CBE990A * get_U3CClientCertificateSelectionCallbackU3Ek__BackingField_1() const { return ___U3CClientCertificateSelectionCallbackU3Ek__BackingField_1; } inline MonoLocalCertificateSelectionCallback_t4622F0909260C4D909995190EBD3804A1CBE990A ** get_address_of_U3CClientCertificateSelectionCallbackU3Ek__BackingField_1() { return &___U3CClientCertificateSelectionCallbackU3Ek__BackingField_1; } inline void set_U3CClientCertificateSelectionCallbackU3Ek__BackingField_1(MonoLocalCertificateSelectionCallback_t4622F0909260C4D909995190EBD3804A1CBE990A * value) { ___U3CClientCertificateSelectionCallbackU3Ek__BackingField_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CClientCertificateSelectionCallbackU3Ek__BackingField_1), (void*)value); } inline static int32_t get_offset_of_U3CCertificateValidationTimeU3Ek__BackingField_2() { return static_cast(offsetof(MonoTlsSettings_tBDF72C906FE6477EFBA9493F7F5CB5ADE2C80E21, ___U3CCertificateValidationTimeU3Ek__BackingField_2)); } inline Nullable_1_t70A8504898A1894C4480C80B2A7FAC6E7823F89D get_U3CCertificateValidationTimeU3Ek__BackingField_2() const { return ___U3CCertificateValidationTimeU3Ek__BackingField_2; } inline Nullable_1_t70A8504898A1894C4480C80B2A7FAC6E7823F89D * get_address_of_U3CCertificateValidationTimeU3Ek__BackingField_2() { return &___U3CCertificateValidationTimeU3Ek__BackingField_2; } inline void set_U3CCertificateValidationTimeU3Ek__BackingField_2(Nullable_1_t70A8504898A1894C4480C80B2A7FAC6E7823F89D value) { ___U3CCertificateValidationTimeU3Ek__BackingField_2 = value; } inline static int32_t get_offset_of_U3CTrustAnchorsU3Ek__BackingField_3() { return static_cast(offsetof(MonoTlsSettings_tBDF72C906FE6477EFBA9493F7F5CB5ADE2C80E21, ___U3CTrustAnchorsU3Ek__BackingField_3)); } inline X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B * get_U3CTrustAnchorsU3Ek__BackingField_3() const { return ___U3CTrustAnchorsU3Ek__BackingField_3; } inline X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B ** get_address_of_U3CTrustAnchorsU3Ek__BackingField_3() { return &___U3CTrustAnchorsU3Ek__BackingField_3; } inline void set_U3CTrustAnchorsU3Ek__BackingField_3(X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B * value) { ___U3CTrustAnchorsU3Ek__BackingField_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CTrustAnchorsU3Ek__BackingField_3), (void*)value); } inline static int32_t get_offset_of_U3CUserSettingsU3Ek__BackingField_4() { return static_cast(offsetof(MonoTlsSettings_tBDF72C906FE6477EFBA9493F7F5CB5ADE2C80E21, ___U3CUserSettingsU3Ek__BackingField_4)); } inline RuntimeObject * get_U3CUserSettingsU3Ek__BackingField_4() const { return ___U3CUserSettingsU3Ek__BackingField_4; } inline RuntimeObject ** get_address_of_U3CUserSettingsU3Ek__BackingField_4() { return &___U3CUserSettingsU3Ek__BackingField_4; } inline void set_U3CUserSettingsU3Ek__BackingField_4(RuntimeObject * value) { ___U3CUserSettingsU3Ek__BackingField_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CUserSettingsU3Ek__BackingField_4), (void*)value); } inline static int32_t get_offset_of_U3CCertificateSearchPathsU3Ek__BackingField_5() { return static_cast(offsetof(MonoTlsSettings_tBDF72C906FE6477EFBA9493F7F5CB5ADE2C80E21, ___U3CCertificateSearchPathsU3Ek__BackingField_5)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_U3CCertificateSearchPathsU3Ek__BackingField_5() const { return ___U3CCertificateSearchPathsU3Ek__BackingField_5; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_U3CCertificateSearchPathsU3Ek__BackingField_5() { return &___U3CCertificateSearchPathsU3Ek__BackingField_5; } inline void set_U3CCertificateSearchPathsU3Ek__BackingField_5(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___U3CCertificateSearchPathsU3Ek__BackingField_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CCertificateSearchPathsU3Ek__BackingField_5), (void*)value); } inline static int32_t get_offset_of_U3CSendCloseNotifyU3Ek__BackingField_6() { return static_cast(offsetof(MonoTlsSettings_tBDF72C906FE6477EFBA9493F7F5CB5ADE2C80E21, ___U3CSendCloseNotifyU3Ek__BackingField_6)); } inline bool get_U3CSendCloseNotifyU3Ek__BackingField_6() const { return ___U3CSendCloseNotifyU3Ek__BackingField_6; } inline bool* get_address_of_U3CSendCloseNotifyU3Ek__BackingField_6() { return &___U3CSendCloseNotifyU3Ek__BackingField_6; } inline void set_U3CSendCloseNotifyU3Ek__BackingField_6(bool value) { ___U3CSendCloseNotifyU3Ek__BackingField_6 = value; } inline static int32_t get_offset_of_U3CEnabledProtocolsU3Ek__BackingField_7() { return static_cast(offsetof(MonoTlsSettings_tBDF72C906FE6477EFBA9493F7F5CB5ADE2C80E21, ___U3CEnabledProtocolsU3Ek__BackingField_7)); } inline Nullable_1_tA368B61397E0DCBFA85FBD6D0C7EFB54328303DD get_U3CEnabledProtocolsU3Ek__BackingField_7() const { return ___U3CEnabledProtocolsU3Ek__BackingField_7; } inline Nullable_1_tA368B61397E0DCBFA85FBD6D0C7EFB54328303DD * get_address_of_U3CEnabledProtocolsU3Ek__BackingField_7() { return &___U3CEnabledProtocolsU3Ek__BackingField_7; } inline void set_U3CEnabledProtocolsU3Ek__BackingField_7(Nullable_1_tA368B61397E0DCBFA85FBD6D0C7EFB54328303DD value) { ___U3CEnabledProtocolsU3Ek__BackingField_7 = value; } inline static int32_t get_offset_of_U3CEnabledCiphersU3Ek__BackingField_8() { return static_cast(offsetof(MonoTlsSettings_tBDF72C906FE6477EFBA9493F7F5CB5ADE2C80E21, ___U3CEnabledCiphersU3Ek__BackingField_8)); } inline CipherSuiteCodeU5BU5D_t1F0A013E35A79A56B467224340EFB73B2DA94C7C* get_U3CEnabledCiphersU3Ek__BackingField_8() const { return ___U3CEnabledCiphersU3Ek__BackingField_8; } inline CipherSuiteCodeU5BU5D_t1F0A013E35A79A56B467224340EFB73B2DA94C7C** get_address_of_U3CEnabledCiphersU3Ek__BackingField_8() { return &___U3CEnabledCiphersU3Ek__BackingField_8; } inline void set_U3CEnabledCiphersU3Ek__BackingField_8(CipherSuiteCodeU5BU5D_t1F0A013E35A79A56B467224340EFB73B2DA94C7C* value) { ___U3CEnabledCiphersU3Ek__BackingField_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CEnabledCiphersU3Ek__BackingField_8), (void*)value); } inline static int32_t get_offset_of_cloned_9() { return static_cast(offsetof(MonoTlsSettings_tBDF72C906FE6477EFBA9493F7F5CB5ADE2C80E21, ___cloned_9)); } inline bool get_cloned_9() const { return ___cloned_9; } inline bool* get_address_of_cloned_9() { return &___cloned_9; } inline void set_cloned_9(bool value) { ___cloned_9 = value; } inline static int32_t get_offset_of_checkCertName_10() { return static_cast(offsetof(MonoTlsSettings_tBDF72C906FE6477EFBA9493F7F5CB5ADE2C80E21, ___checkCertName_10)); } inline bool get_checkCertName_10() const { return ___checkCertName_10; } inline bool* get_address_of_checkCertName_10() { return &___checkCertName_10; } inline void set_checkCertName_10(bool value) { ___checkCertName_10 = value; } inline static int32_t get_offset_of_checkCertRevocationStatus_11() { return static_cast(offsetof(MonoTlsSettings_tBDF72C906FE6477EFBA9493F7F5CB5ADE2C80E21, ___checkCertRevocationStatus_11)); } inline bool get_checkCertRevocationStatus_11() const { return ___checkCertRevocationStatus_11; } inline bool* get_address_of_checkCertRevocationStatus_11() { return &___checkCertRevocationStatus_11; } inline void set_checkCertRevocationStatus_11(bool value) { ___checkCertRevocationStatus_11 = value; } inline static int32_t get_offset_of_useServicePointManagerCallback_12() { return static_cast(offsetof(MonoTlsSettings_tBDF72C906FE6477EFBA9493F7F5CB5ADE2C80E21, ___useServicePointManagerCallback_12)); } inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 get_useServicePointManagerCallback_12() const { return ___useServicePointManagerCallback_12; } inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * get_address_of_useServicePointManagerCallback_12() { return &___useServicePointManagerCallback_12; } inline void set_useServicePointManagerCallback_12(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 value) { ___useServicePointManagerCallback_12 = value; } inline static int32_t get_offset_of_skipSystemValidators_13() { return static_cast(offsetof(MonoTlsSettings_tBDF72C906FE6477EFBA9493F7F5CB5ADE2C80E21, ___skipSystemValidators_13)); } inline bool get_skipSystemValidators_13() const { return ___skipSystemValidators_13; } inline bool* get_address_of_skipSystemValidators_13() { return &___skipSystemValidators_13; } inline void set_skipSystemValidators_13(bool value) { ___skipSystemValidators_13 = value; } inline static int32_t get_offset_of_callbackNeedsChain_14() { return static_cast(offsetof(MonoTlsSettings_tBDF72C906FE6477EFBA9493F7F5CB5ADE2C80E21, ___callbackNeedsChain_14)); } inline bool get_callbackNeedsChain_14() const { return ___callbackNeedsChain_14; } inline bool* get_address_of_callbackNeedsChain_14() { return &___callbackNeedsChain_14; } inline void set_callbackNeedsChain_14(bool value) { ___callbackNeedsChain_14 = value; } inline static int32_t get_offset_of_certificateValidator_15() { return static_cast(offsetof(MonoTlsSettings_tBDF72C906FE6477EFBA9493F7F5CB5ADE2C80E21, ___certificateValidator_15)); } inline RuntimeObject* get_certificateValidator_15() const { return ___certificateValidator_15; } inline RuntimeObject** get_address_of_certificateValidator_15() { return &___certificateValidator_15; } inline void set_certificateValidator_15(RuntimeObject* value) { ___certificateValidator_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___certificateValidator_15), (void*)value); } }; struct MonoTlsSettings_tBDF72C906FE6477EFBA9493F7F5CB5ADE2C80E21_StaticFields { public: // Mono.Security.Interface.MonoTlsSettings Mono.Security.Interface.MonoTlsSettings::defaultSettings MonoTlsSettings_tBDF72C906FE6477EFBA9493F7F5CB5ADE2C80E21 * ___defaultSettings_16; public: inline static int32_t get_offset_of_defaultSettings_16() { return static_cast(offsetof(MonoTlsSettings_tBDF72C906FE6477EFBA9493F7F5CB5ADE2C80E21_StaticFields, ___defaultSettings_16)); } inline MonoTlsSettings_tBDF72C906FE6477EFBA9493F7F5CB5ADE2C80E21 * get_defaultSettings_16() const { return ___defaultSettings_16; } inline MonoTlsSettings_tBDF72C906FE6477EFBA9493F7F5CB5ADE2C80E21 ** get_address_of_defaultSettings_16() { return &___defaultSettings_16; } inline void set_defaultSettings_16(MonoTlsSettings_tBDF72C906FE6477EFBA9493F7F5CB5ADE2C80E21 * value) { ___defaultSettings_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultSettings_16), (void*)value); } }; // System.NotImplementedException struct NotImplementedException_t26260C4EE0444C5FA022994203060B3A42A3ADE6 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.NotSupportedException struct NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.OperationCanceledException struct OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: // System.Threading.CancellationToken System.OperationCanceledException::_cancellationToken CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ____cancellationToken_17; public: inline static int32_t get_offset_of__cancellationToken_17() { return static_cast(offsetof(OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB, ____cancellationToken_17)); } inline CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD get__cancellationToken_17() const { return ____cancellationToken_17; } inline CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * get_address_of__cancellationToken_17() { return &____cancellationToken_17; } inline void set__cancellationToken_17(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD value) { ____cancellationToken_17 = value; Il2CppCodeGenWriteBarrier((void**)&(((&____cancellationToken_17))->___m_source_0), (void*)NULL); } }; // System.Reflection.TargetInvocationException struct TargetInvocationException_t30F4C50D323F448CD2E08BDB8F47694B08EB354C : public ApplicationException_t8D709C0445A040467C6A632AD7F742B25AB2A407 { public: public: }; // System.Threading.ThreadAbortException struct ThreadAbortException_t16772A32C3654FCFF0399F11874CB783CC51C153 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.UnauthorizedAccessException struct UnauthorizedAccessException_t737F79AE4901C68E935CD553A20978CEEF44F333 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.Threading.WaitCallback struct WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319 : public MulticastDelegate_t { public: public: }; // System.ArgumentNullException struct ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB : public ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 { public: public: }; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 : public ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 { public: // System.Object System.ArgumentOutOfRangeException::m_actualValue RuntimeObject * ___m_actualValue_19; public: inline static int32_t get_offset_of_m_actualValue_19() { return static_cast(offsetof(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8, ___m_actualValue_19)); } inline RuntimeObject * get_m_actualValue_19() const { return ___m_actualValue_19; } inline RuntimeObject ** get_address_of_m_actualValue_19() { return &___m_actualValue_19; } inline void set_m_actualValue_19(RuntimeObject * value) { ___m_actualValue_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_actualValue_19), (void*)value); } }; struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_StaticFields { public: // System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.ArgumentOutOfRangeException::_rangeMessage String_t* ____rangeMessage_18; public: inline static int32_t get_offset_of__rangeMessage_18() { return static_cast(offsetof(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_StaticFields, ____rangeMessage_18)); } inline String_t* get__rangeMessage_18() const { return ____rangeMessage_18; } inline String_t** get_address_of__rangeMessage_18() { return &____rangeMessage_18; } inline void set__rangeMessage_18(String_t* value) { ____rangeMessage_18 = value; Il2CppCodeGenWriteBarrier((void**)(&____rangeMessage_18), (void*)value); } }; // System.ComponentModel.InvalidAsynchronousStateException struct InvalidAsynchronousStateException_t17D9B79C66D44A743F58704DA2691E881A3248BB : public ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 { public: public: }; // System.ComponentModel.InvalidEnumArgumentException struct InvalidEnumArgumentException_t900DF12581D586D2D9538FBB6F568175243D6637 : public ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 { public: public: }; // System.ObjectDisposedException struct ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A : public InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB { public: // System.String System.ObjectDisposedException::objectName String_t* ___objectName_17; public: inline static int32_t get_offset_of_objectName_17() { return static_cast(offsetof(ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A, ___objectName_17)); } inline String_t* get_objectName_17() const { return ___objectName_17; } inline String_t** get_address_of_objectName_17() { return &___objectName_17; } inline void set_objectName_17(String_t* value) { ___objectName_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___objectName_17), (void*)value); } }; // System.IO.PathTooLongException struct PathTooLongException_t117AA1F09A957F54EC7B0F100344E81E82AC71B7 : public IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA { public: public: }; // System.Net.ProtocolViolationException struct ProtocolViolationException_tBAAE896920B7768552D235DA44C1F7EACDBF9299 : public InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB { public: public: }; // System.Net.WebException struct WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 : public InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB { public: // System.Net.WebExceptionStatus System.Net.WebException::m_Status int32_t ___m_Status_17; // System.Net.WebResponse System.Net.WebException::m_Response WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * ___m_Response_18; // System.Net.WebExceptionInternalStatus System.Net.WebException::m_InternalStatus int32_t ___m_InternalStatus_19; public: inline static int32_t get_offset_of_m_Status_17() { return static_cast(offsetof(WebException_t824617203133537D3B05BF786C22AECE0E2DBD08, ___m_Status_17)); } inline int32_t get_m_Status_17() const { return ___m_Status_17; } inline int32_t* get_address_of_m_Status_17() { return &___m_Status_17; } inline void set_m_Status_17(int32_t value) { ___m_Status_17 = value; } inline static int32_t get_offset_of_m_Response_18() { return static_cast(offsetof(WebException_t824617203133537D3B05BF786C22AECE0E2DBD08, ___m_Response_18)); } inline WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * get_m_Response_18() const { return ___m_Response_18; } inline WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 ** get_address_of_m_Response_18() { return &___m_Response_18; } inline void set_m_Response_18(WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * value) { ___m_Response_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Response_18), (void*)value); } inline static int32_t get_offset_of_m_InternalStatus_19() { return static_cast(offsetof(WebException_t824617203133537D3B05BF786C22AECE0E2DBD08, ___m_InternalStatus_19)); } inline int32_t get_m_InternalStatus_19() const { return ___m_InternalStatus_19; } inline int32_t* get_address_of_m_InternalStatus_19() { return &___m_InternalStatus_19; } inline void set_m_InternalStatus_19(int32_t value) { ___m_InternalStatus_19 = value; } }; // System.ComponentModel.Win32Exception struct Win32Exception_t4B7A329153AA0E88CA08533EFB6DB2F2A8E90950 : public ExternalException_tC18275DD0AEB2CDF9F85D94670C5A49A4DC3B783 { public: // System.Int32 System.ComponentModel.Win32Exception::nativeErrorCode int32_t ___nativeErrorCode_17; public: inline static int32_t get_offset_of_nativeErrorCode_17() { return static_cast(offsetof(Win32Exception_t4B7A329153AA0E88CA08533EFB6DB2F2A8E90950, ___nativeErrorCode_17)); } inline int32_t get_nativeErrorCode_17() const { return ___nativeErrorCode_17; } inline int32_t* get_address_of_nativeErrorCode_17() { return &___nativeErrorCode_17; } inline void set_nativeErrorCode_17(int32_t value) { ___nativeErrorCode_17 = value; } }; struct Win32Exception_t4B7A329153AA0E88CA08533EFB6DB2F2A8E90950_StaticFields { public: // System.Boolean System.ComponentModel.Win32Exception::s_ErrorMessagesInitialized bool ___s_ErrorMessagesInitialized_18; // System.Collections.Generic.Dictionary`2 System.ComponentModel.Win32Exception::s_ErrorMessage Dictionary_2_t0ACB62D0885C7AB376463C70665400A39808C5FB * ___s_ErrorMessage_19; public: inline static int32_t get_offset_of_s_ErrorMessagesInitialized_18() { return static_cast(offsetof(Win32Exception_t4B7A329153AA0E88CA08533EFB6DB2F2A8E90950_StaticFields, ___s_ErrorMessagesInitialized_18)); } inline bool get_s_ErrorMessagesInitialized_18() const { return ___s_ErrorMessagesInitialized_18; } inline bool* get_address_of_s_ErrorMessagesInitialized_18() { return &___s_ErrorMessagesInitialized_18; } inline void set_s_ErrorMessagesInitialized_18(bool value) { ___s_ErrorMessagesInitialized_18 = value; } inline static int32_t get_offset_of_s_ErrorMessage_19() { return static_cast(offsetof(Win32Exception_t4B7A329153AA0E88CA08533EFB6DB2F2A8E90950_StaticFields, ___s_ErrorMessage_19)); } inline Dictionary_2_t0ACB62D0885C7AB376463C70665400A39808C5FB * get_s_ErrorMessage_19() const { return ___s_ErrorMessage_19; } inline Dictionary_2_t0ACB62D0885C7AB376463C70665400A39808C5FB ** get_address_of_s_ErrorMessage_19() { return &___s_ErrorMessage_19; } inline void set_s_ErrorMessage_19(Dictionary_2_t0ACB62D0885C7AB376463C70665400A39808C5FB * value) { ___s_ErrorMessage_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_ErrorMessage_19), (void*)value); } }; // System.Net.Sockets.SocketException struct SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88 : public Win32Exception_t4B7A329153AA0E88CA08533EFB6DB2F2A8E90950 { public: // System.Net.EndPoint System.Net.Sockets.SocketException::m_EndPoint EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA * ___m_EndPoint_20; public: inline static int32_t get_offset_of_m_EndPoint_20() { return static_cast(offsetof(SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88, ___m_EndPoint_20)); } inline EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA * get_m_EndPoint_20() const { return ___m_EndPoint_20; } inline EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA ** get_address_of_m_EndPoint_20() { return &___m_EndPoint_20; } inline void set_m_EndPoint_20(EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA * value) { ___m_EndPoint_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_EndPoint_20), (void*)value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // System.Byte[] struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726 : public RuntimeArray { public: ALIGN_FIELD (8) uint8_t m_Items[1]; public: inline uint8_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint8_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, uint8_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value) { m_Items[index] = value; } }; // System.Int32[] struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32 : public RuntimeArray { public: ALIGN_FIELD (8) int32_t m_Items[1]; public: inline int32_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int32_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int32_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value) { m_Items[index] = value; } }; // System.Text.RegularExpressions.Group[] struct GroupU5BU5D_tE125DBFFA979634FDDAEDF77F5EC47134D764AB5 : public RuntimeArray { public: ALIGN_FIELD (8) Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 * m_Items[1]; public: inline Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 ** 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, Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Int32[][] struct Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF : public RuntimeArray { public: ALIGN_FIELD (8) Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* m_Items[1]; public: inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** 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, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Type[] struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755 : public RuntimeArray { public: ALIGN_FIELD (8) Type_t * m_Items[1]; public: inline Type_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Type_t ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Type_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Type_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Type_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Type_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Object[] struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE : public RuntimeArray { public: ALIGN_FIELD (8) RuntimeObject * m_Items[1]; public: inline RuntimeObject * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Delegate[] struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8 : public RuntimeArray { public: ALIGN_FIELD (8) Delegate_t * m_Items[1]; public: inline Delegate_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Delegate_t ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Delegate_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Delegate_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Delegate_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.String[] struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A : public RuntimeArray { public: ALIGN_FIELD (8) String_t* m_Items[1]; public: inline String_t* GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline String_t** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, String_t* value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Char[] struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34 : public RuntimeArray { public: ALIGN_FIELD (8) Il2CppChar m_Items[1]; public: inline Il2CppChar GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Il2CppChar value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value) { m_Items[index] = value; } }; // System.Net.HeaderInfo[] struct HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653 : public RuntimeArray { public: ALIGN_FIELD (8) HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * m_Items[1]; public: inline HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 ** 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, HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.UInt16[] struct UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67 : public RuntimeArray { public: ALIGN_FIELD (8) uint16_t m_Items[1]; public: inline uint16_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint16_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, uint16_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint16_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint16_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint16_t value) { m_Items[index] = value; } }; // System.Net.IPAddress[] struct IPAddressU5BU5D_tCB5D2302BEB72DDB30825F9EF457D39EEA5001EB : public RuntimeArray { public: ALIGN_FIELD (8) IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * m_Items[1]; public: inline IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE ** 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, IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Int64[] struct Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6 : public RuntimeArray { public: ALIGN_FIELD (8) int64_t m_Items[1]; public: inline int64_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int64_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, int64_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int64_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int64_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int64_t value) { m_Items[index] = value; } }; // System.Reflection.ParameterInfo[] struct ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B : public RuntimeArray { public: ALIGN_FIELD (8) ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 * m_Items[1]; public: inline ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 ** 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, ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.ComponentModel.ListSortDescription[] struct ListSortDescriptionU5BU5D_t6165BB474C2E3D97625028AE493FE8C30DE740D2 : public RuntimeArray { public: ALIGN_FIELD (8) ListSortDescription_t597DE86A6ADC6084FF85967475CBB07B706DF9C7 * m_Items[1]; public: inline ListSortDescription_t597DE86A6ADC6084FF85967475CBB07B706DF9C7 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline ListSortDescription_t597DE86A6ADC6084FF85967475CBB07B706DF9C7 ** 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, ListSortDescription_t597DE86A6ADC6084FF85967475CBB07B706DF9C7 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline ListSortDescription_t597DE86A6ADC6084FF85967475CBB07B706DF9C7 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline ListSortDescription_t597DE86A6ADC6084FF85967475CBB07B706DF9C7 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, ListSortDescription_t597DE86A6ADC6084FF85967475CBB07B706DF9C7 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; IL2CPP_EXTERN_C void IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9_marshal_pinvoke(const IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9& unmarshaled, IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9_marshal_pinvoke_back(const IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9_marshaled_pinvoke& marshaled, IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9& unmarshaled); IL2CPP_EXTERN_C void IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9_marshal_pinvoke_cleanup(IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9_marshal_com(const IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9& unmarshaled, IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9_marshaled_com& marshaled); IL2CPP_EXTERN_C void IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9_marshal_com_back(const IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9_marshaled_com& marshaled, IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9& unmarshaled); IL2CPP_EXTERN_C void IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9_marshal_com_cleanup(IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9_marshaled_com& marshaled); // !!0 System.Threading.Tasks.TaskToApm::End(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TaskToApm_End_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m94BEE28ADAAC7223EE34485FD592C44F0EBC36B4_gshared (RuntimeObject* ___asyncResult0, const RuntimeMethod* method); // System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1 System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::Create() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 AsyncTaskMethodBuilder_1_Create_m15C4F32E60C597AA1347204CBEF22D65960AAEC8_gshared (const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::Startd__236>(!!0&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_Start_TisU3CMyGetResponseAsyncU3Ed__236_t2A216534B524FE18EECD3B35C67CE5AB4767E7F1_mE5ABC5E41BA23FE0D4062DA4E226D9D4C6B55FEC_gshared (AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 * __this, U3CMyGetResponseAsyncU3Ed__236_t2A216534B524FE18EECD3B35C67CE5AB4767E7F1 * ___stateMachine0, const RuntimeMethod* method); // System.Threading.Tasks.Task`1 System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::get_Task() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * AsyncTaskMethodBuilder_1_get_Task_mC1B213B5C16F6485FF6FF94D233C0291C6BCF5F0_gshared (AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 * __this, const RuntimeMethod* method); // System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1 System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1>::Create() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsyncTaskMethodBuilder_1_t7F448C9784E540366CBBD018041BC8A8A74DB09F AsyncTaskMethodBuilder_1_Create_mFC9A27AAE51EBC98A4BCF38325C78307AF1E9203_gshared (const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1>::Startd__237>(!!0&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_Start_TisU3CGetResponseFromDataU3Ed__237_t5060E721E44AB6651008E532D792EE39E62B7820_mBFD58721C729D45E149B2F114C68F2B7FFA4E550_gshared (AsyncTaskMethodBuilder_1_t7F448C9784E540366CBBD018041BC8A8A74DB09F * __this, U3CGetResponseFromDataU3Ed__237_t5060E721E44AB6651008E532D792EE39E62B7820 * ___stateMachine0, const RuntimeMethod* method); // System.Threading.Tasks.Task`1 System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1>::get_Task() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tE94AB6C165EA2F3E1ABDD296587402D1475A31FF * AsyncTaskMethodBuilder_1_get_Task_m5BCF2044768B4B5E9872A16BFFFCFF6EE740C39D_gshared (AsyncTaskMethodBuilder_1_t7F448C9784E540366CBBD018041BC8A8A74DB09F * __this, const RuntimeMethod* method); // System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReadOnlyCollection_1_get_Count_m2D719EE02B7FE98B5D6E9515334C594836D2C0C7_gshared (ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 * __this, const RuntimeMethod* method); // System.Void System.Func`2::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_2__ctor_m4FDD6D066F0A0D7F7ABA0E4067D0EC7A295FEF9E_gshared (Func_2_tFB4752E44FC81929027C0874E2CC5BC203FB9299 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Threading.Tasks.Task`1 System.Net.HttpWebRequest::RunWithTimeout(System.Func`2>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * HttpWebRequest_RunWithTimeout_TisRuntimeObject_mEBCB8356242FD9DB7F1FA3559EEBC4AE0CAFFEA8_gshared (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, Func_2_t7257A481AA060D9C75F810267E933801215EB8D4 * ___func0, const RuntimeMethod* method); // !!0 System.Threading.Tasks.TaskToApm::End(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TaskToApm_End_TisRuntimeObject_m1807DBCBB97D2E67D1166093B940781D6B550DEF_gshared (RuntimeObject* ___asyncResult0, const RuntimeMethod* method); // !0 System.Threading.Tasks.Task`1::get_Result() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Task_1_get_Result_m5AE0280900FE1B30E8F1A784C0D2021A7B946106_gshared (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * __this, const RuntimeMethod* method); // System.Void System.ValueTuple`2::.ctor(!0,!1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_2__ctor_m048D63CDB7084AEC874B1A762649AF39AAC80F8D_gshared (ValueTuple_2_t79AB170062B95AB2D9CA3EC791830C8AD6608E12 * __this, RuntimeObject * ___item10, bool ___item21, const RuntimeMethod* method); // System.Void System.ValueTuple`2::.ctor(!0,!1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_2__ctor_mBABF7EBF37F40A20153104D68C2BD6FB6A777D20_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject * ___item10, RuntimeObject * ___item21, const RuntimeMethod* method); // System.Threading.Tasks.Task`1 System.Threading.Tasks.Task::FromResult(!!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * Task_FromResult_TisRuntimeObject_m946FF2F9AECDCA195EF1C972DB32D57DF36A0988_gshared (RuntimeObject * ___result0, const RuntimeMethod* method); // System.Void System.Func`1::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_1__ctor_m2A4FE889FB540EA198F7757D17DC2290461E5EE9_gshared (Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // !0 System.Func`1::Invoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Func_1_Invoke_m93C94FD300D841FFC12C9B8607F97CAEFC847701_gshared (Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 * __this, const RuntimeMethod* method); // System.Void System.ValueTuple`4::.ctor(!0,!1,!2,!3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_4__ctor_m706D5CF9C73BDDEA063DF15BE85AED70F88E2F65_gshared (ValueTuple_4_t4F2C0B2F8B604C9267A8B1D6F45F73574634ABAC * __this, bool ___item10, bool ___item21, RuntimeObject * ___item32, RuntimeObject * ___item43, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::Startb__263_0>d>(!!0&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_Start_TisU3CU3CGetRewriteHandlerU3Eb__263_0U3Ed_tBCD38108B3BEF76B04B459122190CFACB5802BE0_mD05C7DE994594F779AE03D1CE6AD18A19A2E0FC2_gshared (AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 * __this, U3CU3CGetRewriteHandlerU3Eb__263_0U3Ed_tBCD38108B3BEF76B04B459122190CFACB5802BE0 * ___stateMachine0, const RuntimeMethod* method); // !0 System.Collections.Generic.KeyValuePair`2::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_m1382814B15BCE20E539C28DDCF09B0322D4645B9_gshared_inline (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * __this, const RuntimeMethod* method); // !1 System.Collections.Generic.KeyValuePair`2::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_m9049D745F37362B8AD0CCA94F08CC18D9A734799_gshared_inline (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2::.ctor(!0,!1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m464A96D10BD1A619B4460B46883E3430923B95D2_gshared (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * __this, int32_t ___key0, int32_t ___value1, const RuntimeMethod* method); // System.Void System.Net.WebResponse::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebResponse__ctor_mDD72EDEB98B8AFA20480EE261E74EAAE10CB63E0 (WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * __this, const RuntimeMethod* method); // System.Net.FtpStatusCode System.Net.FtpStatus::get_StatusCode() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t FtpStatus_get_StatusCode_mC67001BE9C902DAD12A08E2D178C8FB277FF5081_inline (FtpStatus_t40908570BA05748EFCA5F4B12F77356A42A40837 * __this, const RuntimeMethod* method); // System.String System.Net.FtpStatus::get_StatusDescription() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* FtpStatus_get_StatusDescription_m92E877F6DF8CC7794B43E239E8F09D827419DAAB_inline (FtpStatus_t40908570BA05748EFCA5F4B12F77356A42A40837 * __this, const RuntimeMethod* method); // System.Void System.Net.FtpWebResponse::.ctor(System.Net.FtpWebRequest,System.Uri,System.String,System.Net.FtpStatusCode,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebResponse__ctor_m07A7D99473E67AE46FBBE1CB3A7E55ED4994EAF9 (FtpWebResponse_t4462ADF9C14124B97DC10705932A9234DACEED49 * __this, FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D * ___request0, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri1, String_t* ___method2, int32_t ___statusCode3, String_t* ___statusDescription4, const RuntimeMethod* method); // System.Void System.Net.WebHeaderCollection::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebHeaderCollection__ctor_mA79C59CAE93CD777F7B475AE4C74FFAF48892263 (WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * __this, const RuntimeMethod* method); // System.Void System.Net.FtpWebRequest::OperationCompleted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebRequest_OperationCompleted_m39ED7068AD735A8A7D902A2DAD93FB506F974696 (FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D * __this, const RuntimeMethod* method); // System.Boolean System.String::op_Inequality(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2 (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method); // System.Void System.Net.FtpWebResponse::CheckDisposed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebResponse_CheckDisposed_m6B801F447BB22BBEE680ABB19D95609A9ED241E2 (FtpWebResponse_t4462ADF9C14124B97DC10705932A9234DACEED49 * __this, const RuntimeMethod* method); // System.Type System.Object::GetType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B (RuntimeObject * __this, const RuntimeMethod* method); // System.Void System.ObjectDisposedException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectDisposedException__ctor_mE57C6A61713668708F9B3CEF060A8D006B1FE880 (ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A * __this, String_t* ___objectName0, const RuntimeMethod* method); // System.Void System.IO.Compression.GZipStream::.ctor(System.IO.Stream,System.IO.Compression.CompressionMode,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GZipStream__ctor_mB3960180B764F1399480D5B5B79433943EDBB799 (GZipStream_t3C2FE429FBD114B00B7B65623757F5862196B9B6 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream0, int32_t ___mode1, bool ___leaveOpen2, const RuntimeMethod* method); // System.Void System.IO.Stream::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stream__ctor_m5EB0B4BCC014E7D1F18FE0E72B2D6D0C5C13D5C4 (Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * __this, const RuntimeMethod* method); // System.Void System.IO.Compression.DeflateStream::.ctor(System.IO.Stream,System.IO.Compression.CompressionMode,System.Boolean,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeflateStream__ctor_mB1FE9763B287BCA943AEBB3832117BACCE1D4C24 (DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream0, int32_t ___mode1, bool ___leaveOpen2, int32_t ___windowsBits3, const RuntimeMethod* method); // System.Void System.NotSupportedException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90 (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.IO.Compression.GZipStream::CheckDeflateStream() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GZipStream_CheckDeflateStream_mBFDFD94751C45AB953DFB16D9ECE11D50E09AC92 (GZipStream_t3C2FE429FBD114B00B7B65623757F5862196B9B6 * __this, const RuntimeMethod* method); // System.Threading.CancellationToken System.Threading.CancellationToken::get_None() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD CancellationToken_get_None_m13F4B9DCF5D7BE8E9E3F60026C98E50A946FE9DF (const RuntimeMethod* method); // System.IAsyncResult System.Threading.Tasks.TaskToApm::Begin(System.Threading.Tasks.Task,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TaskToApm_Begin_m0A8A1E0B6104AD2D83E5767147A2808B89756AD6 (Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___task0, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback1, RuntimeObject * ___state2, const RuntimeMethod* method); // !!0 System.Threading.Tasks.TaskToApm::End(System.IAsyncResult) inline int32_t TaskToApm_End_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m94BEE28ADAAC7223EE34485FD592C44F0EBC36B4 (RuntimeObject* ___asyncResult0, const RuntimeMethod* method) { return (( int32_t (*) (RuntimeObject*, const RuntimeMethod*))TaskToApm_End_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m94BEE28ADAAC7223EE34485FD592C44F0EBC36B4_gshared)(___asyncResult0, method); } // System.Void System.Threading.Tasks.TaskToApm::End(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskToApm_End_m91446ED84F2ED6AE3003382E1B7AE44EA6937493 (RuntimeObject* ___asyncResult0, const RuntimeMethod* method); // System.Void System.IO.Stream::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stream_Dispose_m117324084DDAD414761AD29FB17A419840BA6EA0 (Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * __this, const RuntimeMethod* method); // System.Void System.IO.Stream::Dispose(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stream_Dispose_mDC5C7A9933446223A84ED106AE3E949E644FB0BE (Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * __this, bool ___disposing0, const RuntimeMethod* method); // System.Void System.IO.Compression.GZipStream::ThrowStreamClosedException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void GZipStream_ThrowStreamClosedException_mD4D02CC04BEC4DD3D91CFC141C3C9D2D611DF1C8 (const RuntimeMethod* method); // System.Void System.ObjectDisposedException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectDisposedException__ctor_mC830C2F97D5314DF72EEFFE749E7F7FB467D0382 (ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A * __this, String_t* ___objectName0, String_t* ___message1, const RuntimeMethod* method); // System.Void System.Attribute::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Attribute__ctor_m5C1862A7DFC2C25A4797A8C5F681FBB5CB53ECE1 (Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 * __this, const RuntimeMethod* method); // System.Net.IWebProxy System.Net.WebRequest::get_DefaultWebProxy() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WebRequest_get_DefaultWebProxy_m147C9E334AE2191485F998833473F567AC3EEDCB (const RuntimeMethod* method); // System.Net.IWebProxy System.Net.GlobalProxySelection::GetEmptyWebProxy() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* GlobalProxySelection_GetEmptyWebProxy_m709E1782A9353D2C99AFCFA6F13FC308108367A5 (const RuntimeMethod* method); // System.Net.WebProxy System.Net.WebRequest/WebProxyWrapper::get_WebProxy() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR WebProxy_tC96F42021301BBF649AE2A2AF8A58920F5563B6E * WebProxyWrapper_get_WebProxy_m64E0A52B9081B75ACED10724A2805F6ECE3C89AB_inline (WebProxyWrapper_tEF5FEF9C3A75F32ABD48893D8B1029B6DB629CEB * __this, const RuntimeMethod* method); // System.Void System.Net.EmptyWebProxy::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyWebProxy__ctor_m5EC0BA8242BECE3F0E67CC143135CBE8670BFFFD (EmptyWebProxy_tBFFA078A103E63530CC4A80AD137D6C8E3A77686 * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.Capture::.ctor(System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Capture__ctor_m5FB71B7ADA66B2D3AD6B681BEE846F0FD62F11C3 (Capture_t048191E7E0D3177DCD8610E4968075AB41FB91D6 * __this, String_t* ___text0, int32_t ___i1, int32_t ___l2, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.Group::.ctor(System.String,System.Int32[],System.Int32,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Group__ctor_m5FE82FDB5B4EE244EB46909ACC099806555EB32F (Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 * __this, String_t* ___text0, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___caps1, int32_t ___capcount2, String_t* ___name3, const RuntimeMethod* method); // System.Void System.Object::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405 (RuntimeObject * __this, const RuntimeMethod* method); // System.Text.RegularExpressions.Group System.Text.RegularExpressions.GroupCollection::GetGroup(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 * GroupCollection_GetGroup_m8824F1E25823F06F2B060E64152E8AC3B8300236 (GroupCollection_tAA9CA4E93B1A9D6B7199EE25AEB32922E72AA556 * __this, int32_t ___groupnum0, const RuntimeMethod* method); // System.Text.RegularExpressions.Group System.Text.RegularExpressions.GroupCollection::GetGroupImpl(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 * GroupCollection_GetGroupImpl_mA161F33BBD5BC291025BAAD97458E02422B76348 (GroupCollection_tAA9CA4E93B1A9D6B7199EE25AEB32922E72AA556 * __this, int32_t ___groupnum0, const RuntimeMethod* method); // System.String System.Text.RegularExpressions.Regex::GroupNameFromNumber(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Regex_GroupNameFromNumber_mEC9EA505C734A60A6D10397D5ABB37EED1C244B9 (Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * __this, int32_t ___i0, const RuntimeMethod* method); // System.Void System.ArgumentNullException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97 (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * __this, String_t* ___paramName0, const RuntimeMethod* method); // System.Text.RegularExpressions.Group System.Text.RegularExpressions.GroupCollection::get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 * GroupCollection_get_Item_mC96099D0350BD4846B66097F31D6B4DDDFE1CA97 (GroupCollection_tAA9CA4E93B1A9D6B7199EE25AEB32922E72AA556 * __this, int32_t ___groupnum0, const RuntimeMethod* method); // System.Void System.Array::SetValue(System.Object,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_mD28884941182C5B7118CFBA3D55DB9CEA8797455 (RuntimeArray * __this, RuntimeObject * ___value0, int32_t ___index1, const RuntimeMethod* method); // System.Int32 System.Text.RegularExpressions.GroupCollection::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GroupCollection_get_Count_mAECC6108C576E7C3F0F6B8E0F9F0D5B742467A43 (GroupCollection_tAA9CA4E93B1A9D6B7199EE25AEB32922E72AA556 * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.GroupEnumerator::.ctor(System.Text.RegularExpressions.GroupCollection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GroupEnumerator__ctor_mFE577B10768A029DBC40A368D8A48B8F1D5479B2 (GroupEnumerator_t99051268604236D2D3064D0BDF2D358B42D884CB * __this, GroupCollection_tAA9CA4E93B1A9D6B7199EE25AEB32922E72AA556 * ___rgc0, const RuntimeMethod* method); // System.Text.RegularExpressions.Capture System.Text.RegularExpressions.GroupEnumerator::get_Capture() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Capture_t048191E7E0D3177DCD8610E4968075AB41FB91D6 * GroupEnumerator_get_Capture_mA37A878E91115550F8F08147CE2CB6A30EBF602D (GroupEnumerator_t99051268604236D2D3064D0BDF2D358B42D884CB * __this, const RuntimeMethod* method); // System.String SR::GetString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462 (String_t* ___name0, const RuntimeMethod* method); // System.Void System.InvalidOperationException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * __this, String_t* ___message0, const RuntimeMethod* method); // System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E (RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ___handle0, const RuntimeMethod* method); // System.Boolean System.Type::op_Equality(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method); // System.Boolean System.ComponentModel.TypeConverter::CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeConverter_CanConvertFrom_m0EDDA8ACFFED3FE88C89F97EC764D625A1CD120D (TypeConverter_t004F185B630F00F509F08BD8F8D82471867323B4 * __this, RuntimeObject* ___context0, Type_t * ___sourceType1, const RuntimeMethod* method); // System.Boolean System.ComponentModel.TypeConverter::CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeConverter_CanConvertTo_m86E815C6F6AEA1999AF2114ADF977F6E8B8FAF28 (TypeConverter_t004F185B630F00F509F08BD8F8D82471867323B4 * __this, RuntimeObject* ___context0, Type_t * ___destinationType1, const RuntimeMethod* method); // System.String System.String::Trim() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_m3FEC641D7046124B7F381701903B50B5171DE0A2 (String_t* __this, const RuntimeMethod* method); // System.Void System.Guid::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Guid__ctor_mF80313305B9CD2AD39B621E1CEC5C7DFDFFBDE66 (Guid_t * __this, String_t* ___g0, const RuntimeMethod* method); // System.Object System.ComponentModel.TypeConverter::ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TypeConverter_ConvertFrom_m8FA823F1E9BE68C98E7E062A8BFFA600DA06C153 (TypeConverter_t004F185B630F00F509F08BD8F8D82471867323B4 * __this, RuntimeObject* ___context0, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___culture1, RuntimeObject * ___value2, const RuntimeMethod* method); // System.Reflection.ConstructorInfo System.Type::GetConstructor(System.Type[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * Type_GetConstructor_m98D609FCFA8EB6E54A9FF705D77EEE16603B278C (Type_t * __this, TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___types0, const RuntimeMethod* method); // System.Boolean System.Reflection.ConstructorInfo::op_Inequality(System.Reflection.ConstructorInfo,System.Reflection.ConstructorInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConstructorInfo_op_Inequality_m14EF5800ABCDCE484FEC9C73ED6D84E8343442CC (ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * ___left0, ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * ___right1, const RuntimeMethod* method); // System.Void System.ComponentModel.Design.Serialization.InstanceDescriptor::.ctor(System.Reflection.MemberInfo,System.Collections.ICollection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InstanceDescriptor__ctor_m85C5E50209E04E10F4A808758DD4B7DF5A9ECDC4 (InstanceDescriptor_tC4566EF05EA27C1ADEF2ACC405AA2ADEB7A31C81 * __this, MemberInfo_t * ___member0, RuntimeObject* ___arguments1, const RuntimeMethod* method); // System.Object System.ComponentModel.TypeConverter::ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TypeConverter_ConvertTo_m217CDCD7FC43CECBF0F077DF139FDE0B4D263D47 (TypeConverter_t004F185B630F00F509F08BD8F8D82471867323B4 * __this, RuntimeObject* ___context0, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___culture1, RuntimeObject * ___value2, Type_t * ___destinationType3, const RuntimeMethod* method); // System.Void System.ComponentModel.TypeConverter::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeConverter__ctor_mCD87E569A2C4CB1331A069396FFA98E65726A16C (TypeConverter_t004F185B630F00F509F08BD8F8D82471867323B4 * __this, const RuntimeMethod* method); // System.Void System.ComponentModel.HandledEventArgs::.ctor(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HandledEventArgs__ctor_m7EFDE472B7D4AD28CB084F460DE2301456135C01 (HandledEventArgs_t233C36247A00D894E2DCCAAC168378ED73300150 * __this, bool ___defaultHandledValue0, const RuntimeMethod* method); // System.Void System.EventArgs::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventArgs__ctor_m5ECB9A8ED0A9E2DBB1ED999BAC1CB44F4354E571 (EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA * __this, const RuntimeMethod* method); // System.Void System.Collections.Specialized.StringCollection::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringCollection__ctor_m9E4F5359AEFDC2281D4E651A948F6EAE1B812488 (StringCollection_tA998B5DFD2921A16BBD33D32B8F6CCFFCEB6537E * __this, const RuntimeMethod* method); // System.Int32 System.String::get_Length() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline (String_t* __this, const RuntimeMethod* method); // System.Char System.String::get_Chars(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70 (String_t* __this, int32_t ___index0, const RuntimeMethod* method); // System.String System.String::CreateString(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_m16F181739FD8BA877868803DE2CE0EF0A4668D0E (String_t* __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___val0, int32_t ___startIndex1, int32_t ___length2, const RuntimeMethod* method); // System.Int32 System.Collections.Specialized.StringCollection::Add(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StringCollection_Add_m74C07154AC7259B8219DF6A79B76EF5B7E12A6EE (StringCollection_tA998B5DFD2921A16BBD33D32B8F6CCFFCEB6537E * __this, String_t* ___value0, const RuntimeMethod* method); // System.Int32 System.Collections.Specialized.StringCollection::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StringCollection_get_Count_mC75C516535FA84F1F00EA0B8080DA833F2668B6E (StringCollection_tA998B5DFD2921A16BBD33D32B8F6CCFFCEB6537E * __this, const RuntimeMethod* method); // System.Void System.Collections.Specialized.StringCollection::CopyTo(System.String[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringCollection_CopyTo_m4AEACC92E456EE1A0CA6AE045E1CF3739216A5E4 (StringCollection_tA998B5DFD2921A16BBD33D32B8F6CCFFCEB6537E * __this, StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___array0, int32_t ___index1, const RuntimeMethod* method); // System.Void System.Net.HeaderInfo::.ctor(System.String,System.Boolean,System.Boolean,System.Boolean,System.Net.HeaderParser) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393 (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * __this, String_t* ___name0, bool ___requestRestricted1, bool ___responseRestricted2, bool ___multi3, HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * ___p4, const RuntimeMethod* method); // System.Void System.Net.HeaderParser::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HeaderParser__ctor_m472893312CE6499CF0B133E43208D60D8F045642 (HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Collections.Hashtable::.ctor(System.Int32,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_m08A6EF344F497A176BD48FDB33FFEFBEAC70C87C (Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * __this, int32_t ___capacity0, RuntimeObject* ___equalityComparer1, const RuntimeMethod* method); // System.Void System.Net.HeaderVariantInfo::.ctor(System.String,System.Net.CookieVariant) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HeaderVariantInfo__ctor_mB0775C718895238F3289605480ECD66D13DE19C0 (HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3 * __this, String_t* ___name0, int32_t ___variant1, const RuntimeMethod* method); // System.String System.Net.HeaderVariantInfo::get_Name() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* HeaderVariantInfo_get_Name_m94033FAF3ED87FB13E9F7445D6B26A9F545C10C5_inline (HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3 * __this, const RuntimeMethod* method); // System.Net.CookieVariant System.Net.HeaderVariantInfo::get_Variant() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t HeaderVariantInfo_get_Variant_m7B4EE8A87D64408629421635C393524FDA57A3E1_inline (HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3 * __this, const RuntimeMethod* method); // System.Void System.Net.HttpWebRequest::.ctor(System.Uri) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequest__ctor_m34F4D99DEAEB2ABDA7B321DE9D934E2AFFE7ED87 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri0, const RuntimeMethod* method); // System.String System.Net.HttpStatusDescription::Get(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* HttpStatusDescription_Get_mA25D6763223B9F856548976E4E7D8CA5B7468B0C (int32_t ___code0, const RuntimeMethod* method); // System.Void System.Version::.ctor(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Version__ctor_mA9BC7F2404CB129697C64851406DF468B753FFDF (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * __this, int32_t ___major0, int32_t ___minor1, const RuntimeMethod* method); // System.Void System.Net.WebRequest::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebRequest__ctor_m3ACCFDB5F433B9BC39C8A0E7A6629AB4DFF67B9A (WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E * __this, const RuntimeMethod* method); // System.Net.IWebProxy System.Net.WebRequest::get_InternalDefaultWebProxy() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WebRequest_get_InternalDefaultWebProxy_m89CE4F19D2478740536BA55770E5B8311A6B5E92 (const RuntimeMethod* method); // System.Void System.Net.WebHeaderCollection::.ctor(System.Net.WebHeaderCollectionType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebHeaderCollection__ctor_m6D0F9AAA2847C2E88504774B186D7187253FA463 (WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * __this, uint16_t ___type0, const RuntimeMethod* method); // System.Void System.Net.HttpWebRequest::set_ThrowOnError(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HttpWebRequest_set_ThrowOnError_mAAE39F767EF8CE4BA64472DD870F8116C0F306AA_inline (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, bool ___value0, const RuntimeMethod* method); // System.Void System.Net.HttpWebRequest::ResetAuthorization() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequest_ResetAuthorization_mB46C878D3130CF8EF4BB6547E17554A0DB49A56C (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method); // System.Object System.Runtime.Serialization.SerializationInfo::GetValue(System.String,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SerializationInfo_GetValue_mF6E311779D55AD7C80B2D19FF2A7E9683AEF2A99 (SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * __this, String_t* ___name0, Type_t * ___type1, const RuntimeMethod* method); // System.Boolean System.Runtime.Serialization.SerializationInfo::GetBoolean(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializationInfo_GetBoolean_m705ADACFB52D6385DDB6B2525C1979ECBE6D5849 (SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * __this, String_t* ___name0, const RuntimeMethod* method); // System.String System.Runtime.Serialization.SerializationInfo::GetString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SerializationInfo_GetString_m50298DCBCD07D858EE19414052CB02EE4DDD3C2C (SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * __this, String_t* ___name0, const RuntimeMethod* method); // System.Int64 System.Runtime.Serialization.SerializationInfo::GetInt64(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t SerializationInfo_GetInt64_m13BC92A489CE4540FC55BB00D2A3460B0D9A0DEC (SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * __this, String_t* ___name0, const RuntimeMethod* method); // System.Int32 System.Runtime.Serialization.SerializationInfo::GetInt32(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SerializationInfo_GetInt32_mB22BBD01CBC189B7A76465CBFF7224F619395D30 (SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * __this, String_t* ___name0, const RuntimeMethod* method); // System.Void System.Net.HttpWebRequest/AuthorizationState::.ctor(System.Net.HttpWebRequest,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AuthorizationState__ctor_m33AFDC1A78F1C2709F58ADE60766E6DB40B23108 (AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 * __this, HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * ___request0, bool ___isProxy1, const RuntimeMethod* method); // System.String System.Net.WebHeaderCollection::CheckBadChars(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebHeaderCollection_CheckBadChars_m5362EEC82635C2EE076C81543FD65130C9EBD1CF (String_t* ___name0, bool ___isHeaderValue1, const RuntimeMethod* method); // System.Void System.Net.WebHeaderCollection::RemoveInternal(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebHeaderCollection_RemoveInternal_m89528036293926837E8EA5703C1306C1E351B117 (WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * __this, String_t* ___name0, const RuntimeMethod* method); // System.Void System.Net.WebHeaderCollection::AddInternal(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebHeaderCollection_AddInternal_m6B83E38C739FBD15C7F70C6304C786A1C3BA0B04 (WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method); // System.Void System.Net.HttpWebRequest::CheckRequestStarted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequest_CheckRequestStarted_mE63D6C6514D6956B8D1E3D8D027644BB28F77770 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method); // System.Void System.Net.HttpWebRequest::SetSpecialHeaders(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequest_SetSpecialHeaders_m8C446813B49F5EF3779DEF1A24B097CE31B6D547 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, String_t* ___HeaderName0, String_t* ___value1, const RuntimeMethod* method); // System.Boolean System.Net.HttpWebRequest::get_MethodWithBuffer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HttpWebRequest_get_MethodWithBuffer_mDFB58A016AEF0EA84BA2EF5F07F582B23D9FC035 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method); // System.Void System.Security.Cryptography.X509Certificates.X509CertificateCollection::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509CertificateCollection__ctor_m038CE3FFE670E8DC426728EE334DF915BC3F1644 (X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B * __this, const RuntimeMethod* method); // System.Boolean System.String::IsNullOrEmpty(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C (String_t* ___value0, const RuntimeMethod* method); // System.String System.String::ToLowerInvariant() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToLowerInvariant_m070E99F11A6005755BD6579A6CC835694395F79F (String_t* __this, const RuntimeMethod* method); // System.Boolean System.String::Contains(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Contains_mA26BDCCE8F191E8965EB8EEFC18BB4D0F85A075A (String_t* __this, String_t* ___value0, const RuntimeMethod* method); // System.Void System.ArgumentException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * __this, String_t* ___message0, const RuntimeMethod* method); // System.String System.String::Concat(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method); // System.Void System.Net.WebHeaderCollection::CheckUpdate(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebHeaderCollection_CheckUpdate_mA9C6560CF6C8928ABCB0BEB858A00CAEC898FECF (WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method); // System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_mE43AFC74F5F3932913C023A04B24905E093C5005 (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method); // System.String System.String::ToLower() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToLower_m7875A49FE166D0A68F3F6B6E70C0C056EBEFD31D (String_t* __this, const RuntimeMethod* method); // System.Boolean System.String::op_Equality(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method); // System.Void System.ArgumentException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * __this, String_t* ___message0, String_t* ___paramName1, const RuntimeMethod* method); // System.String System.Collections.Specialized.NameValueCollection::get_Item(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NameValueCollection_get_Item_mCA21B55D4454D35073475B2966BA0F9207D16FED (NameValueCollection_tE3BED11C58844E8A4D9A74F359692B9A51781B4D * __this, String_t* ___name0, const RuntimeMethod* method); // System.String System.Uri::get_Authority() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_Authority_m453C817B1681F5FD99431A7FDF6F11CDB9FAC093 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method); // System.String System.Uri::get_Scheme() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_Scheme_mEC4980E1C82DE3963007E33C759742A02A26FF29 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method); // System.Boolean System.Net.HttpWebRequest::CheckValidHost(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HttpWebRequest_CheckValidHost_m97757C1B4B8D674CC94A590E272CCBAE0D19355A (String_t* ___scheme0, String_t* ___val1, const RuntimeMethod* method); // System.Int32 System.String::IndexOf(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mEE2D2F738175E3FF05580366D6226DBD673CA2BE (String_t* __this, Il2CppChar ___value0, const RuntimeMethod* method); // System.Boolean System.Net.IPAddress::TryParse(System.String,System.Net.IPAddress&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPAddress_TryParse_m43158BF9D76398954BE04773A6A15898EFE27F3E (String_t* ___ipString0, IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE ** ___address1, const RuntimeMethod* method); // System.String System.String::Concat(System.String,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m37A5BF26F8F8F1892D60D727303B23FB604FEE78 (String_t* ___str00, String_t* ___str11, String_t* ___str22, String_t* ___str33, const RuntimeMethod* method); // System.Boolean System.Uri::IsWellFormedUriString(System.String,System.UriKind) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_IsWellFormedUriString_mF90D5434E6C63D063E21C97064A098F6DB3C5CBA (String_t* ___uriString0, int32_t ___uriKind1, const RuntimeMethod* method); // System.String System.String::ToUpperInvariant() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToUpperInvariant_mA1D82B6DA175D228E2BE5A315B4C68AB222FA84E (String_t* __this, const RuntimeMethod* method); // System.Net.ServicePoint System.Net.HttpWebRequest::GetServicePoint() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * HttpWebRequest_GetServicePoint_m380927C1AF6310F83D8BD1B578B9B7B06AB32A3A (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method); // System.Void System.Net.WebHeaderCollection::SetInternal(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebHeaderCollection_SetInternal_mD14173DCCD03148462674B04D44BCD60E32BAEB8 (WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method); // System.Net.ICredentials System.Net.CredentialCache::get_DefaultCredentials() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* CredentialCache_get_DefaultCredentials_m04BE43C08715BE89006B3E298A7706E7C05D05AA_inline (const RuntimeMethod* method); // System.Boolean System.Net.ServicePoint::get_UsesProxy() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ServicePoint_get_UsesProxy_mE6CE550E4DFEB85A673160DE35CD67AFA87F35BD_inline (ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * __this, const RuntimeMethod* method); // System.Boolean System.Net.ServicePoint::get_UseConnect() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ServicePoint_get_UseConnect_m33B1EC23452734FFED85B21F9439A546BFBD3CC7_inline (ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * __this, const RuntimeMethod* method); // System.Void System.Threading.Monitor::Enter(System.Object,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4 (RuntimeObject * ___obj0, bool* ___lockTaken1, const RuntimeMethod* method); // System.Net.ServicePoint System.Net.ServicePointManager::FindServicePoint(System.Uri,System.Net.IWebProxy) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * ServicePointManager_FindServicePoint_m109F6EB5F2E4E9C818FC341CABC1716C2A460586 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___address0, RuntimeObject* ___proxy1, const RuntimeMethod* method); // System.Void System.Threading.Monitor::Exit(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A (RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Void System.Net.WebOperation::.ctor(System.Net.HttpWebRequest,System.Net.BufferOffsetSize,System.Boolean,System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebOperation__ctor_m96504E6643DE8C742BA96388F16B1A96E1241B61 (WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * __this, HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * ___request0, BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F * ___writeBuffer1, bool ___isNtlmChallenge2, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken3, const RuntimeMethod* method); // System.Void System.Net.ServicePoint::SendRequest(System.Net.WebOperation,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ServicePoint_SendRequest_mED98FDFB12725FDB1BFF3E6D08AFD9B2C8674AB7 (ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * __this, WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * ___operation0, String_t* ___groupName1, const RuntimeMethod* method); // System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1 System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::Create() inline AsyncTaskMethodBuilder_1_tC844D2260A71782812AB64F7BF5EDC8C4ED35A75 AsyncTaskMethodBuilder_1_Create_m0323F5F458EB90D6A9ACBD8D234274194ED2D6DB (const RuntimeMethod* method) { return (( AsyncTaskMethodBuilder_1_tC844D2260A71782812AB64F7BF5EDC8C4ED35A75 (*) (const RuntimeMethod*))AsyncTaskMethodBuilder_1_Create_m15C4F32E60C597AA1347204CBEF22D65960AAEC8_gshared)(method); } // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::Startd__236>(!!0&) inline void AsyncTaskMethodBuilder_1_Start_TisU3CMyGetResponseAsyncU3Ed__236_t2A216534B524FE18EECD3B35C67CE5AB4767E7F1_m6082A579E513B450D8B1CF9C33AC310F1DB2E4A7 (AsyncTaskMethodBuilder_1_tC844D2260A71782812AB64F7BF5EDC8C4ED35A75 * __this, U3CMyGetResponseAsyncU3Ed__236_t2A216534B524FE18EECD3B35C67CE5AB4767E7F1 * ___stateMachine0, const RuntimeMethod* method) { (( void (*) (AsyncTaskMethodBuilder_1_tC844D2260A71782812AB64F7BF5EDC8C4ED35A75 *, U3CMyGetResponseAsyncU3Ed__236_t2A216534B524FE18EECD3B35C67CE5AB4767E7F1 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_Start_TisU3CMyGetResponseAsyncU3Ed__236_t2A216534B524FE18EECD3B35C67CE5AB4767E7F1_mE5ABC5E41BA23FE0D4062DA4E226D9D4C6B55FEC_gshared)(__this, ___stateMachine0, method); } // System.Threading.Tasks.Task`1 System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::get_Task() inline Task_1_t4B8CF50BCA70ADAD54A2813B464DF4A25F896857 * AsyncTaskMethodBuilder_1_get_Task_m5DD3A19AD3B8F6F0F0D97C39656E386ECD9D3EF7 (AsyncTaskMethodBuilder_1_tC844D2260A71782812AB64F7BF5EDC8C4ED35A75 * __this, const RuntimeMethod* method) { return (( Task_1_t4B8CF50BCA70ADAD54A2813B464DF4A25F896857 * (*) (AsyncTaskMethodBuilder_1_tC844D2260A71782812AB64F7BF5EDC8C4ED35A75 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_get_Task_mC1B213B5C16F6485FF6FF94D233C0291C6BCF5F0_gshared)(__this, method); } // System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1 System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1>::Create() inline AsyncTaskMethodBuilder_1_t04278D5078B08CC7E24AFDDAEE48378547262884 AsyncTaskMethodBuilder_1_Create_m2784475EA8D7B60FDAA718B1F44731B600B5BA03 (const RuntimeMethod* method) { return (( AsyncTaskMethodBuilder_1_t04278D5078B08CC7E24AFDDAEE48378547262884 (*) (const RuntimeMethod*))AsyncTaskMethodBuilder_1_Create_mFC9A27AAE51EBC98A4BCF38325C78307AF1E9203_gshared)(method); } // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1>::Startd__237>(!!0&) inline void AsyncTaskMethodBuilder_1_Start_TisU3CGetResponseFromDataU3Ed__237_t5060E721E44AB6651008E532D792EE39E62B7820_mBA5C61FD1A74C31D3EE6FFC7572C1D970E27CC42 (AsyncTaskMethodBuilder_1_t04278D5078B08CC7E24AFDDAEE48378547262884 * __this, U3CGetResponseFromDataU3Ed__237_t5060E721E44AB6651008E532D792EE39E62B7820 * ___stateMachine0, const RuntimeMethod* method) { (( void (*) (AsyncTaskMethodBuilder_1_t04278D5078B08CC7E24AFDDAEE48378547262884 *, U3CGetResponseFromDataU3Ed__237_t5060E721E44AB6651008E532D792EE39E62B7820 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_Start_TisU3CGetResponseFromDataU3Ed__237_t5060E721E44AB6651008E532D792EE39E62B7820_mBFD58721C729D45E149B2F114C68F2B7FFA4E550_gshared)(__this, ___stateMachine0, method); } // System.Threading.Tasks.Task`1 System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1>::get_Task() inline Task_1_tDEAB8548D192DBB144FB5A8A3D04AD2EEB5E3D13 * AsyncTaskMethodBuilder_1_get_Task_m23F8E3E88E9654E0568A88EA9527957BA08D5135 (AsyncTaskMethodBuilder_1_t04278D5078B08CC7E24AFDDAEE48378547262884 * __this, const RuntimeMethod* method) { return (( Task_1_tDEAB8548D192DBB144FB5A8A3D04AD2EEB5E3D13 * (*) (AsyncTaskMethodBuilder_1_t04278D5078B08CC7E24AFDDAEE48378547262884 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_get_Task_m5BCF2044768B4B5E9872A16BFFFCFF6EE740C39D_gshared)(__this, method); } // System.AggregateException System.AggregateException::Flatten() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AggregateException_t45A871D3DBDA3E28FBCD8DF21F6772238FC55BD1 * AggregateException_Flatten_mE14D462A6ADE827340E60E73AB20C254C5800A4F (AggregateException_t45A871D3DBDA3E28FBCD8DF21F6772238FC55BD1 * __this, const RuntimeMethod* method); // System.Collections.ObjectModel.ReadOnlyCollection`1 System.AggregateException::get_InnerExceptions() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlyCollection_1_t06CAAF5787D8FDE0CB0F04082673EC9B212451BE * AggregateException_get_InnerExceptions_m2020FC3A2334DDB72FEBFB2BF4CFE088FF83FEFE_inline (AggregateException_t45A871D3DBDA3E28FBCD8DF21F6772238FC55BD1 * __this, const RuntimeMethod* method); // System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1::get_Count() inline int32_t ReadOnlyCollection_1_get_Count_m95D66C3D4F27B0911596D60D79CFA46BFEA96F97 (ReadOnlyCollection_1_t06CAAF5787D8FDE0CB0F04082673EC9B212451BE * __this, const RuntimeMethod* method) { return (( int32_t (*) (ReadOnlyCollection_1_t06CAAF5787D8FDE0CB0F04082673EC9B212451BE *, const RuntimeMethod*))ReadOnlyCollection_1_get_Count_m2D719EE02B7FE98B5D6E9515334C594836D2C0C7_gshared)(__this, method); } // System.Exception System.Exception::get_InnerException() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Exception_t * Exception_get_InnerException_m10D85773B6B191C7D4E7D3C2954B84F9BB195218_inline (Exception_t * __this, const RuntimeMethod* method); // System.Exception System.Net.HttpWebRequest::FlattenException(System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * HttpWebRequest_FlattenException_mF89FAFEB483D313C297FF23D4F30445BE126BE8D (Exception_t * ___e0, const RuntimeMethod* method); // System.Boolean System.Net.HttpWebRequest::get_Aborted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HttpWebRequest_get_Aborted_m3818067645E7BF5CC50320409AD3E0946F580257 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method); // System.Net.WebExceptionStatus System.Net.WebException::get_Status() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t WebException_get_Status_mF9C17E60BDB642F222DF2E3EC033320C34258DF5_inline (WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * __this, const RuntimeMethod* method); // System.Net.WebException System.Net.HttpWebRequest::CreateRequestAbortedException() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * HttpWebRequest_CreateRequestAbortedException_m5ADF0586581A200AB3F80DC50A107A39167B4E4A (const RuntimeMethod* method); // System.Void System.Net.WebException::.ctor(System.String,System.Exception,System.Net.WebExceptionStatus,System.Net.WebResponse) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebException__ctor_m7C17EA99B1FE182295AF99B968D67080AD4E2CCE (WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * __this, String_t* ___message0, Exception_t * ___innerException1, int32_t ___status2, WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * ___response3, const RuntimeMethod* method); // System.String SR::Format(System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_Format_m9FB0DE0E3CE685F3CC51CC7558F42F10931B8645 (String_t* ___resourceFormat0, RuntimeObject * ___p11, const RuntimeMethod* method); // System.Void System.Net.WebException::.ctor(System.String,System.Net.WebExceptionStatus) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebException__ctor_m4D8BF7D61087F7AA4018215A6DCF7578AEA4DB08 (WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * __this, String_t* ___message0, int32_t ___status1, const RuntimeMethod* method); // System.Void System.Func`2>::.ctor(System.Object,System.IntPtr) inline void Func_2__ctor_m62E759845593E554996802B482EA6AA05F35E84A (Func_2_t722A0F06995E0C53FEEF8E2E44E139CFBE2A81C6 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Func_2_t722A0F06995E0C53FEEF8E2E44E139CFBE2A81C6 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_2__ctor_m4FDD6D066F0A0D7F7ABA0E4067D0EC7A295FEF9E_gshared)(__this, ___object0, ___method1, method); } // System.Threading.Tasks.Task`1 System.Net.HttpWebRequest::RunWithTimeout(System.Func`2>) inline Task_1_t4B8CF50BCA70ADAD54A2813B464DF4A25F896857 * HttpWebRequest_RunWithTimeout_TisHttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB_mBAC220A31B5399542C4DA2F36115ADC95E4A3DEC (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, Func_2_t722A0F06995E0C53FEEF8E2E44E139CFBE2A81C6 * ___func0, const RuntimeMethod* method) { return (( Task_1_t4B8CF50BCA70ADAD54A2813B464DF4A25F896857 * (*) (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A *, Func_2_t722A0F06995E0C53FEEF8E2E44E139CFBE2A81C6 *, const RuntimeMethod*))HttpWebRequest_RunWithTimeout_TisRuntimeObject_mEBCB8356242FD9DB7F1FA3559EEBC4AE0CAFFEA8_gshared)(__this, ___func0, method); } // !!0 System.Threading.Tasks.TaskToApm::End(System.IAsyncResult) inline HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * TaskToApm_End_TisHttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB_mAE705CE8DA50B91ADA5F1CAA04A054F666C084A5 (RuntimeObject* ___asyncResult0, const RuntimeMethod* method) { return (( HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * (*) (RuntimeObject*, const RuntimeMethod*))TaskToApm_End_TisRuntimeObject_m1807DBCBB97D2E67D1166093B940781D6B550DEF_gshared)(___asyncResult0, method); } // !0 System.Threading.Tasks.Task`1::get_Result() inline WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * Task_1_get_Result_m8A2AACA33ADC6E785A413B31CF8D4BB3BDAC07F1 (Task_1_t2A3672CB79B7A66967AEB67A7CCF5EA583D25765 * __this, const RuntimeMethod* method) { return (( WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * (*) (Task_1_t2A3672CB79B7A66967AEB67A7CCF5EA583D25765 *, const RuntimeMethod*))Task_1_get_Result_m5AE0280900FE1B30E8F1A784C0D2021A7B946106_gshared)(__this, method); } // System.Int32 System.Threading.Interlocked::CompareExchange(System.Int32&,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Interlocked_CompareExchange_m317AD9524376B7BE74DD9069346E345F2B131382 (int32_t* ___location10, int32_t ___value1, int32_t ___comparand2, const RuntimeMethod* method); // System.Void System.Net.WebOperation::Abort() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebOperation_Abort_mE41B80D197393221CB1360218916ACF5AA549241 (WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * __this, const RuntimeMethod* method); // System.Boolean System.Net.WebCompletionSource::TrySetCanceled() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WebCompletionSource_TrySetCanceled_m24AE0F4B396E33B14937C4E3716F45143C4436FB (WebCompletionSource_tF1258B468350A374EC59049FE0E31C7879D6AB1E * __this, const RuntimeMethod* method); // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Object,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_mA20A32DFDB224FCD9595675255264FD10940DFC6 (SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * __this, String_t* ___name0, RuntimeObject * ___value1, Type_t * ___type2, const RuntimeMethod* method); // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_m324F3E0B02B746D5F460499F5A25988FD608AD7B (SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * __this, String_t* ___name0, bool ___value1, const RuntimeMethod* method); // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_mA50C2668EF700C2239DDC362F8DB409020BB763D (SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * __this, String_t* ___name0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_mD0C00DE59B4C6649A6BFA5EBC7D8618B46B967D5 (SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * __this, String_t* ___name0, int64_t ___value1, const RuntimeMethod* method); // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_m3DF5B182A63FFCD12287E97EA38944D0C6405BB5 (SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * __this, String_t* ___name0, int32_t ___value1, const RuntimeMethod* method); // System.Void System.Net.HttpContinueDelegate::Invoke(System.Int32,System.Net.WebHeaderCollection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpContinueDelegate_Invoke_mBB31F6155FA0BCFF94576BA0F43C19568592BD5F (HttpContinueDelegate_t84ADA70221E0AC5A340AD9D012F81C1683FC240F * __this, int32_t ___StatusCode0, WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * ___httpHeaders1, const RuntimeMethod* method); // System.Void System.Net.WebException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebException__ctor_mEBC92BF36C0C3C6CC044180748D41AB9AADEEDC9 (WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.Net.HttpWebRequest::RewriteRedirectToGet() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequest_RewriteRedirectToGet_m926990A30CA5A19D77EFBD788758D5BFF54692EF (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method); // System.Void System.NotImplementedException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotImplementedException__ctor_m8A9AA4499614A5BC57DD21713D0720630C130AEB (NotImplementedException_t26260C4EE0444C5FA022994203060B3A42A3ADE6 * __this, String_t* ___message0, const RuntimeMethod* method); // System.String System.String::Concat(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m4D0DDA7FEDB75304E5FDAF8489A0478EE58A45F2 (RuntimeObject * ___arg00, RuntimeObject * ___arg11, const RuntimeMethod* method); // System.Void System.Net.ProtocolViolationException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProtocolViolationException__ctor_mDD18BFEE8140195ECBAD99A4E8079FE063A92D79 (ProtocolViolationException_tBAAE896920B7768552D235DA44C1F7EACDBF9299 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Boolean System.Net.HttpWebRequest::get_InternalAllowBuffering() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HttpWebRequest_get_InternalAllowBuffering_m6447C59856EA745F81D89B8BF10443D6DA1C5396 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method); // System.Int32 System.Net.WebRequestStream::get_WriteBufferLength() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t WebRequestStream_get_WriteBufferLength_m7273B48C66EA74818498EA8B0A27BFC9E6DA81D8 (WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887 * __this, const RuntimeMethod* method); // System.String System.String::Format(System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mB3D38E5238C3164DB4D7D29339D9E225A4496D17 (String_t* ___format0, RuntimeObject * ___arg01, const RuntimeMethod* method); // System.Void System.Uri::.ctor(System.Uri,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_m0B44AFB01F3FEDE9319BA4556288340D16101F9D (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___baseUri0, String_t* ___relativeUri1, const RuntimeMethod* method); // System.String System.String::Format(System.String,System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66 (String_t* ___format0, RuntimeObject * ___arg01, RuntimeObject * ___arg12, const RuntimeMethod* method); // System.String System.Net.HttpWebRequest::get_Host() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* HttpWebRequest_get_Host_m4BE36083497FB8F5B7F317A1C097C0BCBE993533 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method); // System.Void System.Net.WebHeaderCollection::ChangeInternal(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebHeaderCollection_ChangeInternal_m2C0BFAF67320629676F805D70D8A97D50BA03EF0 (WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method); // System.Net.HttpWebRequest/NtlmAuthState System.Net.HttpWebRequest/AuthorizationState::get_NtlmAuthState() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t AuthorizationState_get_NtlmAuthState_mFEDD4ECDE8761AD54175DBBD0EA53C45CD545998_inline (AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 * __this, const RuntimeMethod* method); // System.String System.Int64::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int64_ToString_m8AAA883F340993DCDF339C208F3416C3BA82589F (int64_t* __this, const RuntimeMethod* method); // System.Boolean System.Version::op_Equality(System.Version,System.Version) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Version_op_Equality_mB8525AD6D098EE54D9E0E5C9046F24B5CB197662 (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___v10, Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___v21, const RuntimeMethod* method); // System.Boolean System.Net.ServicePoint::get_SendContinue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ServicePoint_get_SendContinue_m0708B1804863BCECDFE5FB7A5120B15530087704 (ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * __this, const RuntimeMethod* method); // System.Boolean System.Net.HttpWebRequest::get_ProxyQuery() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HttpWebRequest_get_ProxyQuery_m5AC4ED79E30E2253BE5508B87805592B4FD2F1F5 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method); // System.Int32 System.String::IndexOf(System.String,System.StringComparison) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mD99F5378A4220A0DA0D5097007417E777722ABDA (String_t* __this, String_t* ___value0, int32_t ___comparisonType1, const RuntimeMethod* method); // System.String System.Net.CookieContainer::GetCookieHeader(System.Uri) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CookieContainer_GetCookieHeader_m56FF8245FC28A3C8583AE0EEE8CF43A081D5CAB3 (CookieContainer_tF22AADBBB0BBD4D3FF4440A226F8E8580B08F4C2 * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri0, const RuntimeMethod* method); // System.Void System.Net.HttpWebRequest::DoPreAuthenticate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequest_DoPreAuthenticate_mA75D8713BEB89C84A5FEF0A7740B3499F508A7AA (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method); // System.Net.Authorization System.Net.AuthenticationManager::PreAuthenticate(System.Net.WebRequest,System.Net.ICredentials) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Authorization_t4207BA9B4BECE231F74BE9DBC09952FACFAE81EF * AuthenticationManager_PreAuthenticate_m5C036738DC30669FB5CC79CEFBA53AFC7411BA88 (WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E * ___request0, RuntimeObject* ___credentials1, const RuntimeMethod* method); // System.String System.Net.Authorization::get_Message() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Authorization_get_Message_mA648F467F28DCD3ECBE3C8505B719519BD803C2A_inline (Authorization_t4207BA9B4BECE231F74BE9DBC09952FACFAE81EF * __this, const RuntimeMethod* method); // System.Void System.Collections.Specialized.NameValueCollection::set_Item(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NameValueCollection_set_Item_m068F8AB7B8D0EDFD8A9DA582E80A20ACF9E8D692 (NameValueCollection_tE3BED11C58844E8A4D9A74F359692B9A51781B4D * __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method); // System.Void System.Text.StringBuilder::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9 (StringBuilder_t * __this, const RuntimeMethod* method); // System.String System.Uri::get_PathAndQuery() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_PathAndQuery_m0FFF28F15DF953C5866C2A0DEEA2034ECE6A0F35 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method); // System.String System.String::Format(System.String,System.Object,System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m039737CCD992C5BFC8D16DFD681F5E8786E87FA6 (String_t* ___format0, RuntimeObject * ___arg01, RuntimeObject * ___arg12, RuntimeObject * ___arg23, const RuntimeMethod* method); // System.Boolean System.Version::op_Inequality(System.Version,System.Version) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Version_op_Inequality_mCF079498CD00AA720348D8F7CABEBC8DDA798B0F (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___v10, Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___v21, const RuntimeMethod* method); // System.Boolean System.Version::op_LessThan(System.Version,System.Version) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Version_op_LessThan_mB0C93EF569AE4C84BB666CD12AC7C326243CE3FF (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___v10, Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___v21, const RuntimeMethod* method); // System.Int32 System.Version::get_Major() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Version_get_Major_mBDD414863C4A05FADE87F8C39C8CE8ED6DE6C460_inline (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * __this, const RuntimeMethod* method); // System.Int32 System.Version::get_Minor() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Version_get_Minor_m8FCC5D46616E2E54B213EDF31CF3EB57EC998BCE_inline (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * __this, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::AppendFormat(System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_AppendFormat_m97C4AAABA51FCC2D426BD22FE05BEC045AB9D6F8 (StringBuilder_t * __this, String_t* ___format0, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___args1, const RuntimeMethod* method); // System.String System.Net.HttpWebRequest::GetHeaders() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* HttpWebRequest_GetHeaders_m3D09D15A7A2D66D84942B9601893C60F6A9EF332 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1 (StringBuilder_t * __this, String_t* ___value0, const RuntimeMethod* method); // System.Text.Encoding System.Text.Encoding::get_UTF8() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * Encoding_get_UTF8_mC877FB3137BBD566AEE7B15F9BF61DC4EF8F5E5E (const RuntimeMethod* method); // System.Void System.ValueTuple`2::.ctor(!0,!1) inline void ValueTuple_2__ctor_m94864A1292FF05A543AF60D5B4B030C91C09B5DC (ValueTuple_2_tD78E716C9AB70F51F241465A32F5F5E49DA3529A * __this, WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * ___item10, bool ___item21, const RuntimeMethod* method) { (( void (*) (ValueTuple_2_tD78E716C9AB70F51F241465A32F5F5E49DA3529A *, WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 *, bool, const RuntimeMethod*))ValueTuple_2__ctor_m048D63CDB7084AEC874B1A762649AF39AAC80F8D_gshared)(__this, ___item10, ___item21, method); } // System.Net.WebOperation System.Net.WebConnectionStream::get_Operation() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * WebConnectionStream_get_Operation_mD926B0BCCEBE04C640DE920C22736C109E95FF27_inline (WebConnectionStream_t3D04BDBD47522FD7C97ABF7F1B4498F72FA2E918 * __this, const RuntimeMethod* method); // System.Void System.Net.WebOperation::SetPriorityRequest(System.Net.WebOperation) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebOperation_SetPriorityRequest_m053832617F1EA98EA4A02960BE635C2697485CE9 (WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * __this, WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * ___operation0, const RuntimeMethod* method); // System.Net.WebConnection System.Net.WebConnectionStream::get_Connection() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR WebConnection_tBFE079FE6CA946AE000FE257DD8FE6F898BB3C88 * WebConnectionStream_get_Connection_m24DACC6F27A46E8201E23C10F3A4CB322136F546_inline (WebConnectionStream_t3D04BDBD47522FD7C97ABF7F1B4498F72FA2E918 * __this, const RuntimeMethod* method); // System.Void System.Net.WebConnection::set_NtlmCredential(System.Net.NetworkCredential) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void WebConnection_set_NtlmCredential_m2CB4ACA640EF4E2664728A662DB51EFA34169F33_inline (WebConnection_tBFE079FE6CA946AE000FE257DD8FE6F898BB3C88 * __this, NetworkCredential_t263CA6068540C6DA0E1CDE919BD7A15C28D55686 * ___value0, const RuntimeMethod* method); // System.Void System.Net.WebConnection::set_UnsafeAuthenticatedConnectionSharing(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void WebConnection_set_UnsafeAuthenticatedConnectionSharing_mDF2C242F4AA72103C903B77ECEEC77E31B861D2D_inline (WebConnection_tBFE079FE6CA946AE000FE257DD8FE6F898BB3C88 * __this, bool ___value0, const RuntimeMethod* method); // System.Boolean System.Net.HttpWebRequest/AuthorizationState::CheckAuthorization(System.Net.WebResponse,System.Net.HttpStatusCode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AuthorizationState_CheckAuthorization_mD0838BEBBE0758BCC35AC158CC8D7A8D068BA530 (AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 * __this, WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * ___response0, int32_t ___code1, const RuntimeMethod* method); // System.Void System.ValueTuple`2,System.Net.WebException>::.ctor(!0,!1) inline void ValueTuple_2__ctor_mFF98EA786F5E638ADF3425C005884F10344AF6B7 (ValueTuple_2_t1621CD4F642143300FDDE5DD742EE63BDD1A912B * __this, Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 * ___item10, WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * ___item21, const RuntimeMethod* method) { (( void (*) (ValueTuple_2_t1621CD4F642143300FDDE5DD742EE63BDD1A912B *, Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 *, WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 *, const RuntimeMethod*))ValueTuple_2__ctor_mBABF7EBF37F40A20153104D68C2BD6FB6A777D20_gshared)(__this, ___item10, ___item21, method); } // System.Net.BufferOffsetSize System.Net.WebRequestStream::GetWriteBuffer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F * WebRequestStream_GetWriteBuffer_m1DFC67A5EA52C446730DAEF5594B2EB729E52B73 (WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887 * __this, const RuntimeMethod* method); // System.Threading.Tasks.Task`1 System.Threading.Tasks.Task::FromResult(!!0) inline Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 * Task_FromResult_TisBufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F_m4C83A1CC72A6604BB7D0018D55A4718AB48C8E3E (BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F * ___result0, const RuntimeMethod* method) { return (( Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 * (*) (BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F *, const RuntimeMethod*))Task_FromResult_TisRuntimeObject_m946FF2F9AECDCA195EF1C972DB32D57DF36A0988_gshared)(___result0, method); } // System.Void System.Func`1>::.ctor(System.Object,System.IntPtr) inline void Func_1__ctor_m70E48EBD58B772FF497E06B6D00E1E9DD2FD384C (Func_1_tA554ECD263DF723DB4D49570AF9703DEC8DE6EE4 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Func_1_tA554ECD263DF723DB4D49570AF9703DEC8DE6EE4 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_1__ctor_m2A4FE889FB540EA198F7757D17DC2290461E5EE9_gshared)(__this, ___object0, ___method1, method); } // !0 System.Func`1>::Invoke() inline Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 * Func_1_Invoke_mFD9EDC2BD9D6D41ED14BD782562A94A6FE8A001A (Func_1_tA554ECD263DF723DB4D49570AF9703DEC8DE6EE4 * __this, const RuntimeMethod* method) { return (( Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 * (*) (Func_1_tA554ECD263DF723DB4D49570AF9703DEC8DE6EE4 *, const RuntimeMethod*))Func_1_Invoke_m93C94FD300D841FFC12C9B8607F97CAEFC847701_gshared)(__this, method); } // System.Boolean System.Net.HttpWebRequest/AuthorizationState::get_IsCompleted() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool AuthorizationState_get_IsCompleted_mABE39DA7D1F4B5D38315EB2CB3E862243602153A_inline (AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 * __this, const RuntimeMethod* method); // System.Boolean System.Net.HttpWebRequest::CheckAuthorization(System.Net.WebResponse,System.Net.HttpStatusCode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HttpWebRequest_CheckAuthorization_mBFD43C285829AADD842336C02579A5340724C2C4 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * ___response0, int32_t ___code1, const RuntimeMethod* method); // System.Void System.ValueTuple`4,System.Net.WebException>::.ctor(!0,!1,!2,!3) inline void ValueTuple_4__ctor_m4C3944E2195833C5FFE382F82C1A088A4378AE6B (ValueTuple_4_tA55DEA5229133F0BC4EC4246133E0AFC1DF98F0B * __this, bool ___item10, bool ___item21, Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 * ___item32, WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * ___item43, const RuntimeMethod* method) { (( void (*) (ValueTuple_4_tA55DEA5229133F0BC4EC4246133E0AFC1DF98F0B *, bool, bool, Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 *, WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 *, const RuntimeMethod*))ValueTuple_4__ctor_m706D5CF9C73BDDEA063DF15BE85AED70F88E2F65_gshared)(__this, ___item10, ___item21, ___item32, ___item43, method); } // System.ValueTuple`2,System.Net.WebException> System.Net.HttpWebRequest::GetRewriteHandler(System.Net.HttpWebResponse,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_2_t1621CD4F642143300FDDE5DD742EE63BDD1A912B HttpWebRequest_GetRewriteHandler_m738A251B8F35D52F5180E492AC159D41C573EB08 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * ___response0, bool ___redirect1, const RuntimeMethod* method); // System.Boolean System.Net.HttpWebRequest::get_ThrowOnError() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool HttpWebRequest_get_ThrowOnError_m0B8D02222A712AD394B318277BEB989794008266_inline (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method); // System.Void System.Net.WebConnectionStream::InternalClose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebConnectionStream_InternalClose_m81218D2A038DDB1B214BDC9C596BC1839D4D558B (WebConnectionStream_t3D04BDBD47522FD7C97ABF7F1B4498F72FA2E918 * __this, const RuntimeMethod* method); // System.Boolean System.Net.HttpWebRequest::Redirect(System.Net.HttpStatusCode,System.Net.WebResponse) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HttpWebRequest_Redirect_m157E18FBFBCF9B50EC86DFBD6BE6E5AB665FC550 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, int32_t ___code0, WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * ___response1, const RuntimeMethod* method); // System.Void System.Net.HttpWebRequest/AuthorizationState::Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AuthorizationState_Reset_m50782ECAB7A02CDD325253EC646A797780547BD2 (AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 * __this, const RuntimeMethod* method); // System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1 System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::Create() inline AsyncTaskMethodBuilder_1_t73D9138C5A15D02CE27A5E53B9C8862A8E99880D AsyncTaskMethodBuilder_1_Create_mE503CEED7AC730E62009DD49A65125F30077E06D (const RuntimeMethod* method) { return (( AsyncTaskMethodBuilder_1_t73D9138C5A15D02CE27A5E53B9C8862A8E99880D (*) (const RuntimeMethod*))AsyncTaskMethodBuilder_1_Create_m15C4F32E60C597AA1347204CBEF22D65960AAEC8_gshared)(method); } // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::Startb__263_0>d>(!!0&) inline void AsyncTaskMethodBuilder_1_Start_TisU3CU3CGetRewriteHandlerU3Eb__263_0U3Ed_tBCD38108B3BEF76B04B459122190CFACB5802BE0_m394A89A63CB8F49CF67A45D6669087E769D8D4BB (AsyncTaskMethodBuilder_1_t73D9138C5A15D02CE27A5E53B9C8862A8E99880D * __this, U3CU3CGetRewriteHandlerU3Eb__263_0U3Ed_tBCD38108B3BEF76B04B459122190CFACB5802BE0 * ___stateMachine0, const RuntimeMethod* method) { (( void (*) (AsyncTaskMethodBuilder_1_t73D9138C5A15D02CE27A5E53B9C8862A8E99880D *, U3CU3CGetRewriteHandlerU3Eb__263_0U3Ed_tBCD38108B3BEF76B04B459122190CFACB5802BE0 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_Start_TisU3CU3CGetRewriteHandlerU3Eb__263_0U3Ed_tBCD38108B3BEF76B04B459122190CFACB5802BE0_mD05C7DE994594F779AE03D1CE6AD18A19A2E0FC2_gshared)(__this, ___stateMachine0, method); } // System.Threading.Tasks.Task`1 System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::get_Task() inline Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 * AsyncTaskMethodBuilder_1_get_Task_m28AA925998D7C34C2313A3BC5F4299CCF54828D6 (AsyncTaskMethodBuilder_1_t73D9138C5A15D02CE27A5E53B9C8862A8E99880D * __this, const RuntimeMethod* method) { return (( Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 * (*) (AsyncTaskMethodBuilder_1_t73D9138C5A15D02CE27A5E53B9C8862A8E99880D *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_get_Task_mC1B213B5C16F6485FF6FF94D233C0291C6BCF5F0_gshared)(__this, method); } // System.String System.Net.HttpStatusDescription::Get(System.Net.HttpStatusCode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* HttpStatusDescription_Get_mBCAF1CF569C7D10C4FCDA614E2265B4F4789799D (int32_t ___code0, const RuntimeMethod* method); // System.Net.WebHeaderCollection System.Net.WebResponseStream::get_Headers() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * WebResponseStream_get_Headers_mA7D647A682410D694CC962C67D38EEA488C4A9A3_inline (WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F * __this, const RuntimeMethod* method); // System.Version System.Net.WebResponseStream::get_Version() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * WebResponseStream_get_Version_m4BBC5EA52F6A9B3FF1EA288ED90E97F17E593356_inline (WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F * __this, const RuntimeMethod* method); // System.Net.HttpStatusCode System.Net.WebResponseStream::get_StatusCode() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t WebResponseStream_get_StatusCode_m837CED65B650A68F08F672C9B4FF3A074CE06B94_inline (WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F * __this, const RuntimeMethod* method); // System.String System.Net.WebResponseStream::get_StatusDescription() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* WebResponseStream_get_StatusDescription_m2E93D3E49082E272D8665DE08338EF8C4B85BBB7_inline (WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F * __this, const RuntimeMethod* method); // System.Boolean System.Int64::TryParse(System.String,System.Int64&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int64_TryParse_m6EA988890D7F9954EA49A7227E60B3C674930650 (String_t* ___s0, int64_t* ___result1, const RuntimeMethod* method); // System.Void System.Net.HttpWebResponse::FillCookies() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebResponse_FillCookies_m9B885920F4ECFDD93B04DD7AC77AB545BF14D4F9 (HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * __this, const RuntimeMethod* method); // System.Net.HttpWebRequest System.Net.WebConnectionStream::get_Request() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * WebConnectionStream_get_Request_m31D1A8BD789373DC74A6ACED727E3A46A972BA0B_inline (WebConnectionStream_t3D04BDBD47522FD7C97ABF7F1B4498F72FA2E918 * __this, const RuntimeMethod* method); // System.Net.DecompressionMethods System.Net.HttpWebRequest::get_AutomaticDecompression() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t HttpWebRequest_get_AutomaticDecompression_mFABD0DE3DB921E7DBD581B204A431CB995706FE2_inline (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method); // System.Void System.IO.Compression.GZipStream::.ctor(System.IO.Stream,System.IO.Compression.CompressionMode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GZipStream__ctor_mCBA224338F8CA4CA9D21D7EA7744AA3A180AA01F (GZipStream_t3C2FE429FBD114B00B7B65623757F5862196B9B6 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream0, int32_t ___mode1, const RuntimeMethod* method); // System.Void System.Net.WebHeaderCollection::Remove(System.Net.HttpRequestHeader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebHeaderCollection_Remove_m86DCBB3885394CE022B908A700D748DE2528CD55 (WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * __this, int32_t ___header0, const RuntimeMethod* method); // System.Void System.IO.Compression.DeflateStream::.ctor(System.IO.Stream,System.IO.Compression.CompressionMode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeflateStream__ctor_m804A770D5C1B40351C22AFC0223DE7018DCC6B74 (DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream0, int32_t ___mode1, const RuntimeMethod* method); // System.Void System.Net.HttpWebResponse::CheckDisposed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebResponse_CheckDisposed_mEDF7CAD6C09F5858A56F8F1D6192A7501091F72B (HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * __this, const RuntimeMethod* method); // System.Boolean System.String::Equals(System.String,System.String,System.StringComparison) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_mD65682B0BB7933CC7A8561AE34DED02E4F3BBBE5 (String_t* ___a0, String_t* ___b1, int32_t ___comparisonType2, const RuntimeMethod* method); // System.Void System.Net.WebResponse::Dispose(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebResponse_Dispose_mD8EDE43B78CFB8B192059E92EFBE98E459A96E40 (WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * __this, bool ___disposing0, const RuntimeMethod* method); // System.Net.CookieCollection System.Net.CookieContainer::CookieCutter(System.Uri,System.String,System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CookieCollection_t2D2FA42D43C1A8053D95FD2205360B2E0B94AF06 * CookieContainer_CookieCutter_m9BFB21F49579F0D2B933977104E63BBBF48B6130 (CookieContainer_tF22AADBBB0BBD4D3FF4440A226F8E8580B08F4C2 * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri0, String_t* ___headerName1, String_t* ___setCookieHeader2, bool ___isThrow3, const RuntimeMethod* method); // System.Int32 System.Net.CookieCollection::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CookieCollection_get_Count_m329458A1D5426014346F371D1B86AB4678FF34AE (CookieCollection_t2D2FA42D43C1A8053D95FD2205360B2E0B94AF06 * __this, const RuntimeMethod* method); // System.Void System.Net.CookieCollection::Add(System.Net.CookieCollection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CookieCollection_Add_m79D156C7D15F4727B0C7936902E7D215B3E2AD5C (CookieCollection_t2D2FA42D43C1A8053D95FD2205360B2E0B94AF06 * __this, CookieCollection_t2D2FA42D43C1A8053D95FD2205360B2E0B94AF06 * ___cookies0, const RuntimeMethod* method); // System.Object System.Collections.Specialized.ListDictionary::get_Item(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ListDictionary_get_Item_m234AF1C6B763954DA1EC8BD5C74BA2D16E8D74DC (ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * __this, RuntimeObject * ___key0, const RuntimeMethod* method); // System.Void System.ArgumentNullException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_mAD2F05A24C92A657CBCA8C43A9A373C53739A283 (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method); // System.Int32 System.Collections.Specialized.ListDictionary::get_Count() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ListDictionary_get_Count_m63B5332C669C858EBC423472A502528612C890F1_inline (ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * __this, const RuntimeMethod* method); // System.Void System.Collections.Specialized.HybridDictionary::ChangeOver() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HybridDictionary_ChangeOver_m720F3CC680ABE10D68E6E5D67EE646435498EC8B (HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A * __this, const RuntimeMethod* method); // System.Void System.Collections.Specialized.ListDictionary::set_Item(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListDictionary_set_Item_m68050184A6FE6BB7B33891F19FE8D87D458499AD (ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.StringComparer System.StringComparer::get_OrdinalIgnoreCase() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * StringComparer_get_OrdinalIgnoreCase_m8FD38206B6FFE866E97CE4DF84B037F0DF175288_inline (const RuntimeMethod* method); // System.Void System.Collections.Specialized.ListDictionary::.ctor(System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListDictionary__ctor_mEF3028294A42FC5771EBED7DC1DCB104E284A79A (ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.Collections.IDictionaryEnumerator System.Collections.Specialized.ListDictionary::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ListDictionary_GetEnumerator_m6B44040F7259D5F7F1E15F4A4FA0FAE38BFEE236 (ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * __this, const RuntimeMethod* method); // System.Void System.Collections.Hashtable::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_mF6B704809ABE222280933EA170B6664286C91FDC (Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * __this, int32_t ___capacity0, const RuntimeMethod* method); // System.Collections.Specialized.ListDictionary System.Collections.Specialized.HybridDictionary::get_List() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * HybridDictionary_get_List_m04D20BE02A5E09BE885C0780E74435ACCD56D78C (HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A * __this, const RuntimeMethod* method); // System.Collections.ICollection System.Collections.Specialized.ListDictionary::get_Keys() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ListDictionary_get_Keys_m038D10831F91ACB00D71A9E7F4FA63CAD94D4BAE (ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * __this, const RuntimeMethod* method); // System.Collections.ICollection System.Collections.Specialized.ListDictionary::get_Values() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ListDictionary_get_Values_m144BEBB77FDEC181980793D89DC54DC2077A10AE (ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * __this, const RuntimeMethod* method); // System.Void System.Collections.Specialized.ListDictionary::Add(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListDictionary_Add_mD622807A74E5FF8AF27DFF445307D81DFCFADB28 (ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Void System.Collections.Specialized.ListDictionary::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListDictionary_Clear_mF7AE377851CEEEF217FF6E0DFF49EAF86D4E04BD (ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Specialized.ListDictionary::Contains(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ListDictionary_Contains_m06D47395FA7A1B7379C8BBFD38D7A8CFEB721D08 (ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * __this, RuntimeObject * ___key0, const RuntimeMethod* method); // System.Void System.Collections.Specialized.ListDictionary::CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListDictionary_CopyTo_mBF4FD9B59407ABF719E2565E788A2DC9A4769564 (ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method); // System.Void System.Collections.Specialized.ListDictionary::Remove(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListDictionary_Remove_mD8EE339742816A3140A4FF43174AEDB7648BA8AC (ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * __this, RuntimeObject * ___key0, const RuntimeMethod* method); // System.Void System.Threading.ManualResetEvent::.ctor(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManualResetEvent__ctor_mF80BD5B0955BDA8CD514F48EBFF48698E5D03850 (ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * __this, bool ___initialState0, const RuntimeMethod* method); // System.Boolean System.Threading.EventWaitHandle::Set() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventWaitHandle_Set_m81764C887F38A1153224557B26CD688B59987B38 (EventWaitHandle_t80CDEB33529EF7549E7D3E3B689D8272B9F37F3C * __this, const RuntimeMethod* method); // System.Void System.IOAsyncCallback::Invoke(System.IOAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IOAsyncCallback_Invoke_mA74FD3E451CC9609430B5FBF1B2D25EEBE2F32BC (IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E * __this, IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9 * ___ioares0, const RuntimeMethod* method); // System.Void System.ArgumentOutOfRangeException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * __this, String_t* ___paramName0, const RuntimeMethod* method); // System.Net.IPAddress System.Net.IPAddress::InternalParse(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * IPAddress_InternalParse_mA345622709EB5B07BB8D50F3E28CB519BB419E26 (String_t* ___ipString0, bool ___tryParse1, const RuntimeMethod* method); // System.Int32 System.Runtime.CompilerServices.RuntimeHelpers::get_OffsetToStringData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RuntimeHelpers_get_OffsetToStringData_mEB8E6EAEBAFAB7CD7F7A915B3081785AABB9FC42 (const RuntimeMethod* method); // System.Boolean System.IPv6AddressHelper::IsValidStrict(System.Char*,System.Int32,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPv6AddressHelper_IsValidStrict_m3BD3CD0DCD4FD29996CFC9369F2C2904BE80604E (Il2CppChar* ___name0, int32_t ___start1, int32_t* ___end2, const RuntimeMethod* method); // System.Boolean System.IPv6AddressHelper::Parse(System.String,System.UInt16*,System.Int32,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPv6AddressHelper_Parse_m40C11CFE4C02F7BDE4A8A9B5AD65B5481576E91B (String_t* ___address0, uint16_t* ___numbers1, int32_t ___start2, String_t** ___scopeId3, const RuntimeMethod* method); // System.Void System.Net.IPAddress::.ctor(System.UInt16[],System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IPAddress__ctor_mEE088A7E8AE4F63C519837672A2EA0650E6A9B1C (IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * __this, UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* ___address0, uint32_t ___scopeid1, const RuntimeMethod* method); // System.String System.String::Substring(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_mB6B87FD76552BBF6D4E2B9F07F857FE051DCE190 (String_t* __this, int32_t ___startIndex0, const RuntimeMethod* method); // System.Boolean System.UInt32::TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.UInt32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UInt32_TryParse_m5A92B541CF9CC6532CB23BDE6DF7460E5EAC8435 (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, uint32_t* ___result3, const RuntimeMethod* method); // System.Void System.Net.Sockets.SocketException::.ctor(System.Net.Sockets.SocketError) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SocketException__ctor_m8625815C7AFB0F3BF9287520D8F64A69199D6DCA (SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88 * __this, int32_t ___socketError0, const RuntimeMethod* method); // System.Void System.FormatException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormatException__ctor_mF8CFF64B9AB9A6B4AD5B33FC72E6EA7F6631FD51 (FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method); // System.Int64 System.IPv4AddressHelper::ParseNonCanonical(System.Char*,System.Int32,System.Int32&,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t IPv4AddressHelper_ParseNonCanonical_mE2C4832ED252F3CE61B73DBE25B4959568E2FE31 (Il2CppChar* ___name0, int32_t ___start1, int32_t* ___end2, bool ___notImplicitFile3, const RuntimeMethod* method); // System.Void System.FormatException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormatException__ctor_mB8F9A26F985EF9A6C0C082F7D70CFDF2DBDBB23B (FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.Net.IPAddress::.ctor(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IPAddress__ctor_mA672DA31F082CC6E8B10BEC436D94450E630E16F (IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * __this, int64_t ___newAddress0, const RuntimeMethod* method); // System.Int64 System.Net.IPAddress::get_ScopeId() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t IPAddress_get_ScopeId_mEDF9FA0FCEFAC4109AEDAD316DC18C5EE841CE5B (IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * __this, const RuntimeMethod* method); // System.Void System.Net.IPv6AddressFormatter::.ctor(System.UInt16[],System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IPv6AddressFormatter__ctor_mEEFF87906A194838D6E4A31AB724A28808E539E5 (IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA * __this, UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* ___addr0, int64_t ___scopeId1, const RuntimeMethod* method); // System.String System.Net.IPv6AddressFormatter::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IPv6AddressFormatter_ToString_m5FB0F927F3B0BAA521BC92562A7F5A78460023DC (IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA * __this, const RuntimeMethod* method); // System.String System.String::CreateString(System.Char*,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_m854F19B67F5E1B63737E096BF53CC56AB12AF777 (String_t* __this, Il2CppChar* ___value0, int32_t ___startIndex1, int32_t ___length2, const RuntimeMethod* method); // System.Boolean System.Net.IPAddress::Equals(System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPAddress_Equals_m4B1CA27458D8182146569D0BC82A2D3A23346516 (IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * __this, RuntimeObject * ___comparandObj0, bool ___compareScopeId1, const RuntimeMethod* method); // System.StringComparer System.StringComparer::get_InvariantCultureIgnoreCase() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * StringComparer_get_InvariantCultureIgnoreCase_m091360FF9FE3516559AFF706AF431E6FD4CCF2C2_inline (const RuntimeMethod* method); // System.Net.Sockets.AddressFamily System.Net.IPAddress::get_AddressFamily() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t IPAddress_get_AddressFamily_m0554FC6CF1296D4C1456F3D73CB110E38634B24D_inline (IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * __this, const RuntimeMethod* method); // System.Void System.Net.IPAddress::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IPAddress__ctor_m75238FEA3E8B108639752167DBE53DDD799CD7B8 (IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * __this, int32_t ___newAddress0, const RuntimeMethod* method); // System.Void System.Net.IPAddress::.ctor(System.Byte[],System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IPAddress__ctor_m1E185EFDA876C940958AF536535E2E4C16C0D1D2 (IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___address0, int64_t ___scopeid1, const RuntimeMethod* method); // System.Void System.Net.EndPoint::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EndPoint__ctor_m128E616435E17A62A3DD7D0BC759FB0CF7F87C29 (EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA * __this, const RuntimeMethod* method); // System.Boolean System.Net.ValidationHelper::ValidateTcpPort(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValidationHelper_ValidateTcpPort_mC3E43EB25CB11FD1E24201705A66E50903A1893E (int32_t ___port0, const RuntimeMethod* method); // System.Int32 System.Net.IPEndPoint::get_Port() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t IPEndPoint_get_Port_m442D84417A9E8942514FFBB9714FEE6BD094C6C3_inline (IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * __this, const RuntimeMethod* method); // System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo::get_InvariantInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * NumberFormatInfo_get_InvariantInfo_m286BBD095BFCA546BD2CD67E856D1A205436C03F (const RuntimeMethod* method); // System.String System.Int32::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m027A8C9419D2FE56ED5D2EE42A6F3B3CE0130471 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Net.IPAddress System.Net.IPEndPoint::get_Address() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * IPEndPoint_get_Address_mD98DD9465D2DE39A73DD098B79062DBCE15C2A95_inline (IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * __this, const RuntimeMethod* method); // System.Void System.Net.SocketAddress::.ctor(System.Net.IPAddress,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SocketAddress__ctor_m9738A4ADE5808D768AE732070C89F7ABA6BED994 (SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * __this, IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * ___ipaddress0, int32_t ___port1, const RuntimeMethod* method); // System.Net.Sockets.AddressFamily System.Net.SocketAddress::get_Family() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SocketAddress_get_Family_m415D59360C9C2E480D2D98775983A573CCD9D7E0 (SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * __this, const RuntimeMethod* method); // System.String SR::GetString(System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_GetString_m4FFAF18248A54C5B67E4760C5ED4869A87BCAD7F (String_t* ___name0, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___args1, const RuntimeMethod* method); // System.Int32 System.Net.SocketAddress::get_Size() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SocketAddress_get_Size_m6383C5C4F9200464ACB6D583020F81019602CFA4_inline (SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * __this, const RuntimeMethod* method); // System.Net.IPEndPoint System.Net.SocketAddress::GetIPEndPoint() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * SocketAddress_GetIPEndPoint_m251711A31597B8B2702F9212292CB699B84771AE (SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * __this, const RuntimeMethod* method); // System.Void System.Net.IPEndPoint::.ctor(System.Net.IPAddress,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IPEndPoint__ctor_m22783A215BA0B38674F6A6CB6803804268561321 (IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * __this, IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * ___address0, int32_t ___port1, const RuntimeMethod* method); // System.OperatingSystem System.Environment::get_OSVersion() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR OperatingSystem_tBB911FE4834884FD79AF78F2B07C19B938491463 * Environment_get_OSVersion_m9C59BAF537F0A8B51ABC3BEE212F08DCC498F64E (const RuntimeMethod* method); // System.PlatformID System.OperatingSystem::get_Platform() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t OperatingSystem_get_Platform_m1E43B8C2B6CCDD74474E9AB9CF4EF7445D8BE1DF_inline (OperatingSystem_tBB911FE4834884FD79AF78F2B07C19B938491463 * __this, const RuntimeMethod* method); // System.Void System.Net.NetworkInformation.UnixNoLibCIPGlobalProperties::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnixNoLibCIPGlobalProperties__ctor_mB8161FF612E1613FC30AFA5CAA97C5E368C66291 (UnixNoLibCIPGlobalProperties_t502C0D31B2B758E43415DE9EAEB6A24B3924355F * __this, const RuntimeMethod* method); // System.Boolean System.IO.Directory::Exists(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Directory_Exists_m17E38B91F6D9A0064D614FF2237BBFC0127468FE (String_t* ___path0, const RuntimeMethod* method); // System.Void System.Net.NetworkInformation.MibIPGlobalProperties::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MibIPGlobalProperties__ctor_m64009FA9C2EDC7E97A8BFDADD97F30699037CAA6 (MibIPGlobalProperties_t3722DFB852035FAEC93E9F5FDFE3D163653B666B * __this, String_t* ___procDir0, const RuntimeMethod* method); // System.Boolean System.IO.File::Exists(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool File_Exists_mDAEBF2732BC830270FD98346F069B04E97BB1D5B (String_t* ___path0, const RuntimeMethod* method); // System.Void System.Net.NetworkInformation.UnixIPGlobalProperties::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnixIPGlobalProperties__ctor_mF2ADB564F94ABCB20CB71DDE34FAB070BA12A868 (UnixIPGlobalProperties_t17A56352BFACD974A0828F84CA3424941E39B021 * __this, const RuntimeMethod* method); // System.Void System.Net.NetworkInformation.Win32IPGlobalProperties::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Win32IPGlobalProperties__ctor_m7D031774BB16D9BF7096D7CC6B44AED107B31484 (Win32IPGlobalProperties_t44A5F09048FBAA07204FDF98BE8588D70CCBF9F5 * __this, const RuntimeMethod* method); // System.Net.NetworkInformation.IPGlobalProperties System.Net.NetworkInformation.IPGlobalProperties::GetIPGlobalProperties() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IPGlobalProperties_tD2935E387BBC03382D35AD2B6288214CAB4095C5 * IPGlobalProperties_GetIPGlobalProperties_m0A1551F6E8ED8083D6561AF637B4EC238D98A295 (const RuntimeMethod* method); // System.Boolean System.IPv4AddressHelper::Parse(System.String,System.Byte*,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPv4AddressHelper_Parse_m9B4CB7935241AA6DC67171684E19AF8190364768 (String_t* ___name0, uint8_t* ___numbers1, int32_t ___start2, int32_t ___end3, const RuntimeMethod* method); // System.String System.String::Concat(System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m6F0ED62933448F8B944E52872E1EE86F6705D306 (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___args0, const RuntimeMethod* method); // System.Boolean System.IPv4AddressHelper::ParseCanonical(System.String,System.Byte*,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPv4AddressHelper_ParseCanonical_mEDA5683F6AC98D0C403C60B16C2F859590A653AA (String_t* ___name0, uint8_t* ___numbers1, int32_t ___start2, int32_t ___end3, const RuntimeMethod* method); // System.Boolean System.IPv4AddressHelper::IsValidCanonical(System.Char*,System.Int32,System.Int32&,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPv4AddressHelper_IsValidCanonical_mCB1804B552E1977E9F89B1A912B2969A73DEB0C7 (Il2CppChar* ___name0, int32_t ___start1, int32_t* ___end2, bool ___allowIPv63, bool ___notImplicitFile4, const RuntimeMethod* method); // System.UInt16 System.Net.IPv6AddressFormatter::SwapUShort(System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t IPv6AddressFormatter_SwapUShort_m422438633F4CADBE0EAB77D23AD3334FD01ACEC6 (uint16_t ___number0, const RuntimeMethod* method); // System.UInt32 System.Net.IPv6AddressFormatter::AsIPv4Int() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t IPv6AddressFormatter_AsIPv4Int_m875CCBC60A506A331C9D591D5A88D49EBB6730E7 (IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA * __this, const RuntimeMethod* method); // System.Boolean System.Net.IPv6AddressFormatter::IsIPv4Compatible() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPv6AddressFormatter_IsIPv4Compatible_m769BBFB4FBB844EC8AB61A635495A7F2925FDD99 (IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA * __this, const RuntimeMethod* method); // System.Boolean System.Net.IPv6AddressFormatter::IsIPv4Mapped() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPv6AddressFormatter_IsIPv4Mapped_m46AE9AECC6E77E6A53ACBF60BEF336D45FF236DB (IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA * __this, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::AppendFormat(System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_AppendFormat_mA3A12EF6C7AC4C5EBC41FCA633F4FC036205669E (StringBuilder_t * __this, String_t* ___format0, RuntimeObject * ___arg01, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E (StringBuilder_t * __this, Il2CppChar ___value0, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m8DA7E8B858ADF12EF8CE62A4083B60510B1D1510 (StringBuilder_t * __this, int64_t ___value0, const RuntimeMethod* method); // System.String System.IPv6AddressHelper::CreateCanonicalName(System.UInt16*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IPv6AddressHelper_CreateCanonicalName_m0A4D273AB7676EBF0E66E7CBE15100D4614163C2 (uint16_t* ___numbers0, const RuntimeMethod* method); // System.String System.String::Concat(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method); // System.Boolean System.UriParser::get_ShouldUseLegacyV2Quirks() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UriParser_get_ShouldUseLegacyV2Quirks_mB8917CAC10CD13E44F2EB21D4033044BEAF132B2 (const RuntimeMethod* method); // System.Globalization.CultureInfo System.Globalization.CultureInfo::get_InvariantCulture() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164 (const RuntimeMethod* method); // System.String System.String::Format(System.IFormatProvider,System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mF96F0621DC567D09C07F1EAC66B31AD261A9DC21 (RuntimeObject* ___provider0, String_t* ___format1, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___args2, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2 System.IPv6AddressHelper::FindCompressionRange(System.UInt16*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB IPv6AddressHelper_FindCompressionRange_m5D45C7CDE351D8B073A56656BA062453CD5124A5 (uint16_t* ___numbers0, const RuntimeMethod* method); // System.Boolean System.IPv6AddressHelper::ShouldHaveIpv4Embedded(System.UInt16*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPv6AddressHelper_ShouldHaveIpv4Embedded_m7EDC33D2523FB9961D20EB54A136369E6548E19C (uint16_t* ___numbers0, const RuntimeMethod* method); // !0 System.Collections.Generic.KeyValuePair`2::get_Key() inline int32_t KeyValuePair_2_get_Key_m1382814B15BCE20E539C28DDCF09B0322D4645B9_inline (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *, const RuntimeMethod*))KeyValuePair_2_get_Key_m1382814B15BCE20E539C28DDCF09B0322D4645B9_gshared_inline)(__this, method); } // !1 System.Collections.Generic.KeyValuePair`2::get_Value() inline int32_t KeyValuePair_2_get_Value_m9049D745F37362B8AD0CCA94F08CC18D9A734799_inline (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *, const RuntimeMethod*))KeyValuePair_2_get_Value_m9049D745F37362B8AD0CCA94F08CC18D9A734799_gshared_inline)(__this, method); } // System.String System.String::Format(System.IFormatProvider,System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m90ED4B078849D42FA1A7C5EB7AC7F74F235F6916 (RuntimeObject* ___provider0, String_t* ___format1, RuntimeObject * ___arg02, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2::.ctor(!0,!1) inline void KeyValuePair_2__ctor_m464A96D10BD1A619B4460B46883E3430923B95D2 (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * __this, int32_t ___key0, int32_t ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *, int32_t, int32_t, const RuntimeMethod*))KeyValuePair_2__ctor_m464A96D10BD1A619B4460B46883E3430923B95D2_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Uri::IsHexDigit(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_IsHexDigit_m87121EC1F62716CC681A4458BF2E6A6B844BD95F (Il2CppChar ___character0, const RuntimeMethod* method); // System.Boolean System.IPv4AddressHelper::IsValid(System.Char*,System.Int32,System.Int32&,System.Boolean,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPv4AddressHelper_IsValid_m6CAD01230EC033CB8F4ABB645327065A56E2ED7D (Il2CppChar* ___name0, int32_t ___start1, int32_t* ___end2, bool ___allowIPv63, bool ___notImplicitFile4, bool ___unknownScheme5, const RuntimeMethod* method); // System.Boolean System.IPv6AddressHelper::InternalIsValid(System.Char*,System.Int32,System.Int32&,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPv6AddressHelper_InternalIsValid_mE50A940EF05F93B144F0BCFFB9AA5F7E4E23F160 (Il2CppChar* ___name0, int32_t ___start1, int32_t* ___end2, bool ___validateStrictAddress3, const RuntimeMethod* method); // System.String System.String::Substring(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B (String_t* __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method); // System.Int32 System.IPv4AddressHelper::ParseHostNumber(System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IPv4AddressHelper_ParseHostNumber_mA0B8E60CD5047E9A4276CB424C028F070240D29E (String_t* ___str0, int32_t ___start1, int32_t ___end2, const RuntimeMethod* method); // System.Int32 System.Uri::FromHex(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Uri_FromHex_m16E5FED0B58BA0A603C6BDDE6AA90F3C3FC78977 (Il2CppChar ___digit0, const RuntimeMethod* method); // System.Boolean System.ComponentModel.ImmutableObjectAttribute::get_Immutable() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ImmutableObjectAttribute_get_Immutable_m5429A55E126E25C10027E1547DE417EE8D78D466_inline (ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A * __this, const RuntimeMethod* method); // System.Int32 System.Attribute::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Attribute_GetHashCode_m46EC3256A8DDAC7AC7576362EB50ABD0F83123B4 (Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 * __this, const RuntimeMethod* method); // System.Void System.ComponentModel.ImmutableObjectAttribute::.ctor(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImmutableObjectAttribute__ctor_mFC9EE18E32BC0FD906A22E39D3ED044F303B192E (ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A * __this, bool ___immutable0, const RuntimeMethod* method); // System.ComponentModel.InheritanceLevel System.ComponentModel.InheritanceAttribute::get_InheritanceLevel() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InheritanceAttribute_get_InheritanceLevel_mB637DB7D7A747B7DC3C79128F4EFE1AEC4503ABD_inline (InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 * __this, const RuntimeMethod* method); // System.ComponentModel.TypeConverter System.ComponentModel.TypeDescriptor::GetConverter(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeConverter_t004F185B630F00F509F08BD8F8D82471867323B4 * TypeDescriptor_GetConverter_m4A087A264082284312079152F6E572EB7B92BDC3 (Type_t * ___type0, const RuntimeMethod* method); // System.String System.ComponentModel.TypeConverter::ConvertToString(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeConverter_ConvertToString_m8A78AD655B39CC8CB93FA00672E8ACABD67DFC12 (TypeConverter_t004F185B630F00F509F08BD8F8D82471867323B4 * __this, RuntimeObject * ___value0, const RuntimeMethod* method); // System.Void System.ComponentModel.InheritanceAttribute::.ctor(System.ComponentModel.InheritanceLevel) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InheritanceAttribute__ctor_m9BAA8FA34233525EACEF10FA37587D861182D46F (InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 * __this, int32_t ___inheritanceLevel0, const RuntimeMethod* method); // System.Void System.ComponentModel.Design.Serialization.InstanceDescriptor::.ctor(System.Reflection.MemberInfo,System.Collections.ICollection,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InstanceDescriptor__ctor_m6DBEE7486D6D8CD230607B73C8BC078F45282E9A (InstanceDescriptor_tC4566EF05EA27C1ADEF2ACC405AA2ADEB7A31C81 * __this, MemberInfo_t * ___member0, RuntimeObject* ___arguments1, bool ___isComplete2, const RuntimeMethod* method); // System.Boolean System.Reflection.FieldInfo::get_IsStatic() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FieldInfo_get_IsStatic_mE36F3A5B2DFF613C704AA56989D90D72760391EB (FieldInfo_t * __this, const RuntimeMethod* method); // System.Boolean System.Reflection.MethodBase::get_IsStatic() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodBase_get_IsStatic_mDFDF51EDFE5DBDD5FE942564A1F56E3C7E3DE43F (MethodBase_t * __this, const RuntimeMethod* method); // System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetGetMethod() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * PropertyInfo_GetGetMethod_mF4C45BCBA7BFBFF2F4E933A9F588D8BF9656EE00 (PropertyInfo_t * __this, const RuntimeMethod* method); // System.Boolean System.Reflection.MethodInfo::op_Inequality(System.Reflection.MethodInfo,System.Reflection.MethodInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodInfo_op_Inequality_mDE1DAA5D330E9C975AC6423FC2D06862637BE68D (MethodInfo_t * ___left0, MethodInfo_t * ___right1, const RuntimeMethod* method); // System.Object System.ComponentModel.Design.Serialization.InstanceDescriptor::Invoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InstanceDescriptor_Invoke_m7FBD796F29EFD98E2CFEEB78C9D1AF8D564747EF (InstanceDescriptor_tC4566EF05EA27C1ADEF2ACC405AA2ADEB7A31C81 * __this, const RuntimeMethod* method); // System.Object System.Reflection.ConstructorInfo::Invoke(System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ConstructorInfo_Invoke_m8DF5D6F53038C7B6443EEA82D922724F39CD2906 (ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * __this, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___parameters0, const RuntimeMethod* method); // System.Object System.Reflection.MethodBase::Invoke(System.Object,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * MethodBase_Invoke_m5DA5E74F34F8FFA8133445BAE0266FD54F7D4EB3 (MethodBase_t * __this, RuntimeObject * ___obj0, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___parameters1, const RuntimeMethod* method); // System.Int16 System.Convert::ToInt16(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m596184FDE05FC12DF129949A7131FC80AD2A7A2F (String_t* ___value0, int32_t ___fromBase1, const RuntimeMethod* method); // System.Int16 System.Int16::Parse(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Int16_Parse_mAE47C17BE0A5C7A6B369E4DF51B07031A56FDCB8 (String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Int16 System.Int16::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Int16_Parse_mE08930AF16117CC6540BD2A2C8261E72539A37C1 (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method); // System.String System.Int16::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int16_ToString_m1388D477B5BC62BDDDBE9139D9629A15D78F8AFC (int16_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Void System.ComponentModel.BaseNumberConverter::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseNumberConverter__ctor_m18967D5B511402093936893A249438FB94D5BDA3 (BaseNumberConverter_t6CA2001CE79249FCF74FC888710AAD5CA23B748C * __this, const RuntimeMethod* method); // System.Int32 System.Convert::ToInt32(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m21526761291049AC762DEAEA073870C8A8583643 (String_t* ___value0, int32_t ___fromBase1, const RuntimeMethod* method); // System.Int32 System.Int32::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_Parse_m9A5A7D8A221A68F8C39EC308AC751704B36E86FC (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method); // System.Int32 System.Int32::Parse(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_Parse_mCCC6B0A23CE31124F68EF486CC61705CDE61F084 (String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.String System.Int32::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m246774E1922012AE787EB97743F42CB798B70CD8 (int32_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Int64 System.Convert::ToInt64(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m2BA2F84EF3C42430B6C24ED443BCF3D43771ECBE (String_t* ___value0, int32_t ___fromBase1, const RuntimeMethod* method); // System.Int64 System.Int64::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Int64_Parse_mDEBD8725B503BD8627E7AF21E1F50A58DD7FCA9A (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method); // System.Int64 System.Int64::Parse(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Int64_Parse_m8DDFA7706B4470D748A591EA89D224D608BD756C (String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.String System.Int64::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int64_ToString_m7D336E8DDEB43FC06A3AEE62072C899CBD0012AE (int64_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.String System.IO.Path::GetFullPath(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Path_GetFullPath_m4AECE56CB0187AD8375137200EDA24AE4F317963 (String_t* ___path0, const RuntimeMethod* method); // System.Void System.SystemException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_m54043F92E08342467699C9618B84A119033D4B99 (SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 * __this, const RuntimeMethod* method); // System.Void System.IO.IOException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IOException__ctor_m208E01C02FF2C1D6C5AA661A5816C744804E1690 (IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.UnauthorizedAccessException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnauthorizedAccessException__ctor_m805F2DF539D1327A845A6B723C67CD28B40E65E4 (UnauthorizedAccessException_t737F79AE4901C68E935CD553A20978CEEF44F333 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.IO.PathTooLongException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PathTooLongException__ctor_m55EEF94300422D2A4A3F371713DABEF1A2535893 (PathTooLongException_t117AA1F09A957F54EC7B0F100344E81E82AC71B7 * __this, String_t* ___message0, const RuntimeMethod* method); // System.String System.IO.Ports.InternalResources::GetMessage(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InternalResources_GetMessage_m1E95E16D2202AAC52AD65854B4440BF434F8B21B (int32_t ___errorCode0, const RuntimeMethod* method); // System.Int32 System.IO.Ports.InternalResources::MakeHRFromErrorCode(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InternalResources_MakeHRFromErrorCode_m43E00E360CBA177132FD050C0091D3018597599A (int32_t ___errorCode0, const RuntimeMethod* method); // System.Void System.IO.IOException::.ctor(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IOException__ctor_m7B348BC88E42D0F9599A1016361672DF4F77E7F3 (IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA * __this, String_t* ___message0, int32_t ___hresult1, const RuntimeMethod* method); // System.Void System.ComponentModel.InvalidAsynchronousStateException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidAsynchronousStateException__ctor_m7016168F98004AE24AC16AC808E5AB3C31A3F643 (InvalidAsynchronousStateException_t17D9B79C66D44A743F58704DA2691E881A3248BB * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.ArgumentException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m2D82228EC0D314063BFC7BB308A43927D1D76852 (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method); // System.Void System.ArgumentException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m95833EB3FF48C75962637E97E056E84C5F608CC5 (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method); // System.Void System.ComponentModel.InvalidEnumArgumentException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidEnumArgumentException__ctor_m9F82770D492E88AD5D679EE8A52400E5993CD2C9 (InvalidEnumArgumentException_t900DF12581D586D2D9538FBB6F568175243D6637 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Globalization.CultureInfo System.Globalization.CultureInfo::get_CurrentCulture() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * CultureInfo_get_CurrentCulture_m99E5F5BD20445F2A73F7EA0014A4E783DF3840BB (const RuntimeMethod* method); // System.Int32 System.Collections.Comparer::Compare(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3 (Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * __this, RuntimeObject * ___a0, RuntimeObject * ___b1, const RuntimeMethod* method); // System.Void System.InvariantComparer::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvariantComparer__ctor_m0B31370ECF4BF6922E8BE172354A7E6B6EFAFBDF (InvariantComparer_tE1CE2D4C00592623FA9BCEBA4990245E775A032E * __this, const RuntimeMethod* method); // System.Boolean System.Char::IsSurrogatePair(System.Char,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsSurrogatePair_m6EAA02AF7F2918866B74A89988A00373EFF50709 (Il2CppChar ___highSurrogate0, Il2CppChar ___lowSurrogate1, const RuntimeMethod* method); // System.String System.String::CreateString(System.Char[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_mC7F57CE6ED768CF86591160424FE55D5CBA7C344 (String_t* __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___val0, const RuntimeMethod* method); // System.Int32 System.String::CompareOrdinal(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_CompareOrdinal_m1C7F94040504F35C89EBC8826D77FEA81B9C2C0E (String_t* ___strA0, String_t* ___strB1, const RuntimeMethod* method); // System.Boolean System.Uri::IsGenDelim(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_IsGenDelim_m93EB89B013A4AE8B5C5D792EB8BEAD2BF8EC5997 (Il2CppChar ___ch0, const RuntimeMethod* method); // System.Runtime.InteropServices.GCHandle System.Runtime.InteropServices.GCHandle::Alloc(System.Object,System.Runtime.InteropServices.GCHandleType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 GCHandle_Alloc_mBF5C4C0E8605F97427BFDF96D68AACD4A4D6DDEC (RuntimeObject * ___value0, int32_t ___type1, const RuntimeMethod* method); // System.IntPtr System.Runtime.InteropServices.GCHandle::AddrOfPinnedObject() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t GCHandle_AddrOfPinnedObject_m0604506F2BDCD2DC8C167FBC3BF3E965888F7589 (GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 * __this, const RuntimeMethod* method); // System.Void* System.IntPtr::op_Explicit(System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* IntPtr_op_Explicit_mE8B472FDC632CBD121F7ADF4F94546D6610BACDD (intptr_t ___value0, const RuntimeMethod* method); // System.Char System.UriHelper::EscapedAscii(System.Char,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar UriHelper_EscapedAscii_m80D926F5C8B177B5D041BBFEADEAB2363A324461 (Il2CppChar ___digit0, Il2CppChar ___next1, const RuntimeMethod* method); // System.Boolean System.IriHelper::CheckIsReserved(System.Char,System.UriComponents) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IriHelper_CheckIsReserved_m9EFA3BDFD606F7EDB5DBF0549B20BFF2E4775C7F (Il2CppChar ___ch0, int32_t ___component1, const RuntimeMethod* method); // System.Boolean System.UriHelper::IsNotSafeForUnescape(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UriHelper_IsNotSafeForUnescape_m5504A36A2CC19ABC23255896A98D9912D390107F (Il2CppChar ___ch0, const RuntimeMethod* method); // System.Void System.Text.EncoderReplacementFallback::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderReplacementFallback__ctor_m07299910DC3D3F6B9F8F37A4ADD40A500F97D1D4 (EncoderReplacementFallback_t61E36A507D7FA8034B49F86DBE560EC77A6A8418 * __this, String_t* ___replacement0, const RuntimeMethod* method); // System.Void System.Text.Encoding::set_EncoderFallback(System.Text.EncoderFallback) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Encoding_set_EncoderFallback_m75BA39C6302BD7EFBB4A48B02C406A14789B244A (Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * __this, EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 * ___value0, const RuntimeMethod* method); // System.Void System.Text.DecoderReplacementFallback::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderReplacementFallback__ctor_m7E6C273B2682E373C787568EB0BB0B2E4B6C2253 (DecoderReplacementFallback_t8DA345EC4EF3A35A2667365F691EE69408A62130 * __this, String_t* ___replacement0, const RuntimeMethod* method); // System.Void System.Text.Encoding::set_DecoderFallback(System.Text.DecoderFallback) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Encoding_set_DecoderFallback_m771EA02DA99D57E19B6FC48E8C3A46F8A6D4CBB8 (Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * __this, DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D * ___value0, const RuntimeMethod* method); // System.Void System.UriHelper::MatchUTF8Sequence(System.Char*,System.Char[],System.Int32&,System.Char[],System.Int32,System.Byte[],System.Int32,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UriHelper_MatchUTF8Sequence_m4A148931E07097731DC7EA68EAA933E9330BE81B (Il2CppChar* ___pDest0, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___dest1, int32_t* ___destOffset2, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___unescapedChars3, int32_t ___charCount4, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___bytes5, int32_t ___byteCount6, bool ___isQuery7, bool ___iriParsing8, const RuntimeMethod* method); // System.Boolean System.Char::IsHighSurrogate(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsHighSurrogate_m7BECD1C98C902946F069D8936F8A557F1F7DFF01 (Il2CppChar ___c0, const RuntimeMethod* method); // System.Boolean System.IriHelper::CheckIriUnicodeRange(System.Char,System.Char,System.Boolean&,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IriHelper_CheckIriUnicodeRange_m03144D55C396E2870F76F85B29852F8314346A1A (Il2CppChar ___highSurr0, Il2CppChar ___lowSurr1, bool* ___surrogatePair2, bool ___isQuery3, const RuntimeMethod* method); // System.Boolean System.IriHelper::CheckIriUnicodeRange(System.Char,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IriHelper_CheckIriUnicodeRange_m5E205B2F096045DE5259E0E98A062DD0813206F6 (Il2CppChar ___unicode0, bool ___isQuery1, const RuntimeMethod* method); // System.Boolean System.Uri::IsBidiControlCharacter(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_IsBidiControlCharacter_m36A30E0708EE0209208B23136C2BEC9C802C697B (Il2CppChar ___ch0, const RuntimeMethod* method); // System.Void System.Buffer::Memcpy(System.Byte*,System.Byte*,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_Memcpy_m67752CDFBB079C42EFA9EBA2BB9A0C96DFAA2178 (uint8_t* ___dest0, uint8_t* ___src1, int32_t ___size2, const RuntimeMethod* method); // System.Boolean System.Runtime.InteropServices.GCHandle::get_IsAllocated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GCHandle_get_IsAllocated_mEDA4DAC6AD6D881110E96CAFDAB78C068F5B144D (GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 * __this, const RuntimeMethod* method); // System.Void System.Runtime.InteropServices.GCHandle::Free() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GCHandle_Free_mB4E9415544FC9F0075C02AB17E270E49AF006025 (GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 * __this, const RuntimeMethod* method); // System.Void System.UriHelper::EscapeAsciiChar(System.Char,System.Char[],System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UriHelper_EscapeAsciiChar_m7590A6410A9F1AE1207006EF9B46578E1A3DFD33 (Il2CppChar ___ch0, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___to1, int32_t* ___pos2, const RuntimeMethod* method); // System.Void System.Net.LazyAsyncResult/ThreadContext::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadContext__ctor_mE89CF3AF57457840698C5046CD32EF8B02CDC40A (ThreadContext_tB361ABC018EE4C7009FD3A3A5D39D2346A1B5FA3 * __this, const RuntimeMethod* method); // System.Boolean System.Net.LazyAsyncResult::LazilyCreateEvent(System.Threading.ManualResetEvent&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LazyAsyncResult_LazilyCreateEvent_m821224E938E16E225251F7CA33A2B146F822D5EC (LazyAsyncResult_t4203C3EF8ACCFBDEE0B5209D86AD466A95A36B32 * __this, ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA ** ___waitHandle0, const RuntimeMethod* method); // System.Object System.Threading.Interlocked::CompareExchange(System.Object&,System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Interlocked_CompareExchange_mFAD09589A5DAFDBABB05C62A2D35CD5B92BC6961 (RuntimeObject ** ___location10, RuntimeObject * ___value1, RuntimeObject * ___comparand2, const RuntimeMethod* method); // System.Boolean System.Net.LazyAsyncResult::get_InternalPeekCompleted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LazyAsyncResult_get_InternalPeekCompleted_mFC74F0FA177B7C8386E798906A50387288365DEF (LazyAsyncResult_t4203C3EF8ACCFBDEE0B5209D86AD466A95A36B32 * __this, const RuntimeMethod* method); // System.Int32 System.Threading.Interlocked::Increment(System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Interlocked_Increment_mEF7FA106280D9E57DA8A97887389A961B65E47D8 (int32_t* ___location0, const RuntimeMethod* method); // System.Void System.Net.LazyAsyncResult::ProtectedInvokeCallback(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LazyAsyncResult_ProtectedInvokeCallback_mB9317AC9B30205D1D84B82F8F4C0674928EFC19E (LazyAsyncResult_t4203C3EF8ACCFBDEE0B5209D86AD466A95A36B32 * __this, RuntimeObject * ___result0, intptr_t ___userToken1, const RuntimeMethod* method); // System.Net.LazyAsyncResult/ThreadContext System.Net.LazyAsyncResult::get_CurrentThreadContext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ThreadContext_tB361ABC018EE4C7009FD3A3A5D39D2346A1B5FA3 * LazyAsyncResult_get_CurrentThreadContext_m612DA3FE475024D1FD9FA7DF7AF92CAEE96AE3EC (const RuntimeMethod* method); // System.Void System.Threading.WaitCallback::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WaitCallback__ctor_m50EFFE5096DF1DE733EA9895CEEC8EB6F142D5D5 (WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Boolean System.Threading.ThreadPool::QueueUserWorkItem(System.Threading.WaitCallback) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR bool ThreadPool_QueueUserWorkItem_m76F5D0CD8F37E5D736F781049045AD9173E9A323 (WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319 * ___callBack0, const RuntimeMethod* method); // System.Void System.AsyncCallback::Invoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncCallback_Invoke_mFCCCB843AEC4B5B3FC89BCED2BA839783920EA47 (AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * __this, RuntimeObject* ___ar0, const RuntimeMethod* method); // System.Object System.Net.LazyAsyncResult::WaitForCompletion(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * LazyAsyncResult_WaitForCompletion_mFD63E1FA929C91833D3B6C71CAE665C2325CDC10 (LazyAsyncResult_t4203C3EF8ACCFBDEE0B5209D86AD466A95A36B32 * __this, bool ___snap0, const RuntimeMethod* method); // System.Boolean System.Net.LazyAsyncResult::get_IsCompleted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LazyAsyncResult_get_IsCompleted_mAFE99853AF0218509257AE85FE20144A244393C3 (LazyAsyncResult_t4203C3EF8ACCFBDEE0B5209D86AD466A95A36B32 * __this, const RuntimeMethod* method); // System.Void System.Threading.Thread::SpinWait(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_SpinWait_m6276C02E66DD83A83D5F39E2B20411B8CBA33673 (int32_t ___iterations0, const RuntimeMethod* method); // System.Boolean System.String::StartsWith(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_StartsWith_mDE2FF98CAFFD13F88EDEB6C40158DDF840BFCF12 (String_t* __this, String_t* ___value0, const RuntimeMethod* method); // System.Void System.ComponentModel.LicFileLicenseProvider/LicFileLicense::.ctor(System.ComponentModel.LicFileLicenseProvider,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicFileLicense__ctor_m251341985150814E5E4A30B33D3A9BD2195766EB (LicFileLicense_t48E8BE071EB96D1E15F23A7D51B387776EE73128 * __this, LicFileLicenseProvider_t0C159066151EF942824ECDC68036A1F5BBA2E5DF * ___owner0, String_t* ___key1, const RuntimeMethod* method); // System.String System.IO.Path::GetDirectoryName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Path_GetDirectoryName_mFF7B47C1E2D3A3FD4B769257808A619D7117BEDE (String_t* ___path0, const RuntimeMethod* method); // System.Void System.IO.FileStream::.ctor(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileStream__ctor_m3B5FED0863BA31DCF29A27B99FFDCB699626C326 (FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26 * __this, String_t* ___path0, int32_t ___mode1, int32_t ___access2, int32_t ___share3, const RuntimeMethod* method); // System.Void System.IO.StreamReader::.ctor(System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamReader__ctor_m0F256281F982E077C73A4C297F1301026A3C2905 (StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream0, const RuntimeMethod* method); // System.Void System.ComponentModel.LicenseProvider::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseProvider__ctor_mF89C5F85ABCDC20F05E3ABCE71B2D97B4C3D25BB (LicenseProvider_tBC40978A52764598AA24EC34F19F002CAECD7A10 * __this, const RuntimeMethod* method); // System.Void System.ComponentModel.LicenseException::.ctor(System.Type,System.Object,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseException__ctor_mF2D92E05E6C50FC074302429812A557AF8F4E7E0 (LicenseException_tF6DDD20031120A48931FEA84CC6ACB3D89B612DF * __this, Type_t * ___type0, RuntimeObject * ___instance1, String_t* ___message2, const RuntimeMethod* method); // System.Void System.SystemException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_m65B6562BDBB8EF84A384B217BE96647C0BAC770A (SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.Exception::set_HResult(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Exception_set_HResult_mB9E603303A0678B32684B0EEC144334BAB0E6392_inline (Exception_t * __this, int32_t ___value0, const RuntimeMethod* method); // System.Void System.SystemException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_m14A39C396B94BEE4EFEA201FB748572011855A94 (SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method); // System.Void System.SystemException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_m20F619D15EAA349C6CE181A65A47C336200EBD19 (SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method); // System.Void System.Exception::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception_GetObjectData_m2031046D41E7BEE3C743E918B358A336F99D6882 (Exception_t * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method); // System.Void System.ComponentModel.Design.RuntimeLicenseContext::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeLicenseContext__ctor_m1E50AC997E6F16F86B60D8FF2A4C5EDCF968E28C (RuntimeLicenseContext_t38F0BCEF3097D49437450B0D1432588C2E5B1E2A * __this, const RuntimeMethod* method); // System.Void System.Collections.Hashtable::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_m2D9C25FB57ACD33B0DF8391D38A165975A1D9A91 (Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * __this, const RuntimeMethod* method); // System.Object System.ComponentModel.LicenseManager::CreateWithContext(System.Type,System.ComponentModel.LicenseContext,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * LicenseManager_CreateWithContext_m8C5B9B0671D943B516B93935938766FBBF0429B3 (Type_t * ___type0, LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * ___creationContext1, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___args2, const RuntimeMethod* method); // System.ComponentModel.LicenseContext System.ComponentModel.LicenseManager::get_CurrentContext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * LicenseManager_get_CurrentContext_mC4A5E2B82E17E8AF2D0B8FEEE80DCC7258B2CE85 (const RuntimeMethod* method); // System.Void System.ComponentModel.LicenseManager::set_CurrentContext(System.ComponentModel.LicenseContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseManager_set_CurrentContext_m16A96AEE43F9CBC1868E29AD301ED0E531C326EF (LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * ___value0, const RuntimeMethod* method); // System.Void System.ComponentModel.LicenseManager::LockContext(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseManager_LockContext_mBE27047F427EA27048552745DE05BEF500523A57 (RuntimeObject * ___contextUser0, const RuntimeMethod* method); // System.Object System.SecurityUtils::SecureCreateInstance(System.Type,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SecurityUtils_SecureCreateInstance_mD5B39B271B2A41D3F33DEB21C81C507038E95CE1 (Type_t * ___type0, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___args1, const RuntimeMethod* method); // System.Void System.ComponentModel.LicenseManager::UnlockContext(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseManager_UnlockContext_mA44BC1596521A5C16075490C731CD10D3FAE731F (RuntimeObject * ___contextUser0, const RuntimeMethod* method); // System.IntPtr System.RuntimeTypeHandle::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t RuntimeTypeHandle_get_Value_m78299A03EF551606AEA2F77C9ECEE38E1D741885_inline (RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 * __this, const RuntimeMethod* method); // System.Boolean System.ComponentModel.LicenseManager::ValidateInternal(System.Type,System.Object,System.Boolean,System.ComponentModel.License&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LicenseManager_ValidateInternal_mFFC28A6FF9EB19299BF6A56483652332DABC423C (Type_t * ___type0, RuntimeObject * ___instance1, bool ___allowExceptions2, License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 ** ___license3, const RuntimeMethod* method); // System.Boolean System.ComponentModel.LicenseManager::ValidateInternalRecursive(System.ComponentModel.LicenseContext,System.Type,System.Object,System.Boolean,System.ComponentModel.License&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LicenseManager_ValidateInternalRecursive_m10B65A5CB9E91A8A5DB91DF42A6711DC7CE797E6 (LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * ___context0, Type_t * ___type1, RuntimeObject * ___instance2, bool ___allowExceptions3, License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 ** ___license4, String_t** ___licenseKey5, const RuntimeMethod* method); // System.ComponentModel.LicenseProvider System.ComponentModel.LicenseManager::GetCachedProvider(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LicenseProvider_tBC40978A52764598AA24EC34F19F002CAECD7A10 * LicenseManager_GetCachedProvider_m2214BDD19DF59EBD2CD3BC1376FA89576A98D1F8 (Type_t * ___type0, const RuntimeMethod* method); // System.Boolean System.ComponentModel.LicenseManager::GetCachedNoLicenseProvider(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LicenseManager_GetCachedNoLicenseProvider_mC7441067606A41888DB5BEBCB56E576BC8572F18 (Type_t * ___type0, const RuntimeMethod* method); // System.Attribute System.Attribute::GetCustomAttribute(System.Reflection.MemberInfo,System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 * Attribute_GetCustomAttribute_m2BF1101C0D9584CA284648B287DD50DAA331BCED (MemberInfo_t * ___element0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method); // System.Type System.ComponentModel.LicenseProviderAttribute::get_LicenseProvider() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * LicenseProviderAttribute_get_LicenseProvider_m458ACC093F592CD53B7D78A12CCCD3ECA0818143 (LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B * __this, const RuntimeMethod* method); // System.ComponentModel.LicenseProvider System.ComponentModel.LicenseManager::GetCachedProviderInstance(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LicenseProvider_tBC40978A52764598AA24EC34F19F002CAECD7A10 * LicenseManager_GetCachedProviderInstance_mE9FC852818CFD6C5212CADD7A0B99DFD970BAEE3 (Type_t * ___providerType0, const RuntimeMethod* method); // System.Object System.SecurityUtils::SecureCreateInstance(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SecurityUtils_SecureCreateInstance_m695DFC54D65143549A28688268441C425836F8F7 (Type_t * ___type0, const RuntimeMethod* method); // System.Void System.ComponentModel.LicenseManager::CacheProvider(System.Type,System.ComponentModel.LicenseProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseManager_CacheProvider_m7ACC6482DF5E0B82B16AE5E0F43E92B1F0E0A86F (Type_t * ___type0, LicenseProvider_tBC40978A52764598AA24EC34F19F002CAECD7A10 * ___provider1, const RuntimeMethod* method); // System.Boolean System.Type::op_Inequality(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Inequality_m6DDC5E923203A79BF505F9275B694AD3FAA36DB0 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method); // System.Void System.ComponentModel.LicenseException::.ctor(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseException__ctor_mE9358A7DC2DED9E7DAC0189DDB6DA7F166C975A4 (LicenseException_tF6DDD20031120A48931FEA84CC6ACB3D89B612DF * __this, Type_t * ___type0, const RuntimeMethod* method); // System.Void System.ComponentModel.LicenseException::.ctor(System.Type,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseException__ctor_m3DC920F991C8D11CAFB428CB0EE6C4B0A683FFC7 (LicenseException_tF6DDD20031120A48931FEA84CC6ACB3D89B612DF * __this, Type_t * ___type0, RuntimeObject * ___instance1, const RuntimeMethod* method); // System.Void System.ComponentModel.LicenseProviderAttribute::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseProviderAttribute__ctor_mA39DC8AB831D37CCCD86CB120F028DED795D37B9 (LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B * __this, String_t* ___typeName0, const RuntimeMethod* method); // System.Void System.ComponentModel.LicenseProviderAttribute::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseProviderAttribute__ctor_m6069633C360443CDC6E31E5E17DEA2A7BA3F8B22 (LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B * __this, const RuntimeMethod* method); // System.Void System.Net.Sockets.LingerOption::set_Enabled(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void LingerOption_set_Enabled_m3F544534413C4239E4A0A6D39AE8FF28EEF04207_inline (LingerOption_t4E191E63AB49943D401B71B3E7830E6586CE0E34 * __this, bool ___value0, const RuntimeMethod* method); // System.Void System.Net.Sockets.LingerOption::set_LingerTime(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void LingerOption_set_LingerTime_m4BF89E47E5A4D261B800DD00A8B73DA7EE719C37_inline (LingerOption_t4E191E63AB49943D401B71B3E7830E6586CE0E34 * __this, int32_t ___value0, const RuntimeMethod* method); // System.Boolean System.ComponentModel.ListBindableAttribute::get_ListBindable() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ListBindableAttribute_get_ListBindable_m86C2633502AF31DE15F0012622965BA952C98758_inline (ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4 * __this, const RuntimeMethod* method); // System.Void System.ComponentModel.ListBindableAttribute::.ctor(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListBindableAttribute__ctor_mDA94097937F0FBC03C6C58229965B5CE61958C5A (ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4 * __this, bool ___listBindable0, const RuntimeMethod* method); // System.Void System.ComponentModel.ListChangedEventArgs::.ctor(System.ComponentModel.ListChangedType,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListChangedEventArgs__ctor_m913D6B801515C5A0F44170B452C2D3A44F8DD890 (ListChangedEventArgs_t7E1DD2BB933BE30107C8B95958746E6AF24F6632 * __this, int32_t ___listChangedType0, int32_t ___newIndex1, int32_t ___oldIndex2, const RuntimeMethod* method); // System.Void System.ComponentModel.ListChangedEventArgs::.ctor(System.ComponentModel.ListChangedType,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListChangedEventArgs__ctor_m962F15947E5744DBEEC896D6DD22419796581BE3 (ListChangedEventArgs_t7E1DD2BB933BE30107C8B95958746E6AF24F6632 * __this, int32_t ___listChangedType0, int32_t ___newIndex1, const RuntimeMethod* method); // System.Void System.Collections.Specialized.ListDictionary/DictionaryNode::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DictionaryNode__ctor_m38EC4C8C8EF2A5ABDD91B178DDB0CF0E0D7D15E2 (DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * __this, const RuntimeMethod* method); // System.Void System.Collections.Specialized.ListDictionary/NodeKeyValueCollection::.ctor(System.Collections.Specialized.ListDictionary,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeKeyValueCollection__ctor_mBB36F9963382776073923DB97C6C0DFC220E3BCC (NodeKeyValueCollection_t2F7684ED43AA56DE152F992016C086757FDEB696 * __this, ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * ___list0, bool ___isKeys1, const RuntimeMethod* method); // System.Int32 System.Array::get_Length() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10 (RuntimeArray * __this, const RuntimeMethod* method); // System.Void System.Collections.DictionaryEntry::.ctor(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4 (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Void System.Collections.Specialized.ListDictionary/NodeEnumerator::.ctor(System.Collections.Specialized.ListDictionary) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeEnumerator__ctor_m96E6D528E4C4D03DF5FE2C904501B77246EE5B17 (NodeEnumerator_t76D13EB0B0B4D56A1780BBD21073FB65F9C97A7C * __this, ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * ___list0, const RuntimeMethod* method); // System.Void System.Collections.ArrayList::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList__ctor_m6847CFECD6BDC2AD10A4AC9852A572B88B8D6B1B (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * __this, const RuntimeMethod* method); // System.ComponentModel.ListSortDescription System.ComponentModel.ListSortDescriptionCollection::get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ListSortDescription_t597DE86A6ADC6084FF85967475CBB07B706DF9C7 * ListSortDescriptionCollection_get_Item_m7FCF595593A2A506D8C79E278E4E8F438C05B3B4 (ListSortDescriptionCollection_tC9C0CEDAF9496F7A1A7E6F665189295CE400F60A * __this, int32_t ___index0, const RuntimeMethod* method); // System.Boolean System.ComponentModel.LocalizableAttribute::get_IsLocalizable() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool LocalizableAttribute_get_IsLocalizable_m70767051954132A34D9E3D3EB1E32D6136BC8726_inline (LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB * __this, const RuntimeMethod* method); // System.Void System.ComponentModel.LocalizableAttribute::.ctor(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalizableAttribute__ctor_m4F2DA30C70C63D6975F1354B09BCDF4556CA5835 (LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB * __this, bool ___isLocalizable0, const RuntimeMethod* method); // System.String System.ComponentModel.LookupBindingPropertiesAttribute::get_DataSource() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* LookupBindingPropertiesAttribute_get_DataSource_m8CDCC95274637F9644A73EE371B6895ECDE38A43_inline (LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C * __this, const RuntimeMethod* method); // System.Void System.ComponentModel.LookupBindingPropertiesAttribute::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LookupBindingPropertiesAttribute__ctor_m366F1BC9272CD08F596BD54C721497769AF09773 (LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C * __this, const RuntimeMethod* method); #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Net.FtpWebResponse::.ctor(System.Net.FtpWebRequest,System.Uri,System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebResponse__ctor_m20B2A6014E98A042A89C70BF47F3263BADF9333E (FtpWebResponse_t4462ADF9C14124B97DC10705932A9234DACEED49 * __this, FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D * ___request0, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri1, String_t* ___method2, bool ___keepAlive3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_0 = ((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var))->get_MinValue_31(); __this->set_lastModified_4(L_0); String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); __this->set_bannerMessage_5(L_1); String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); __this->set_welcomeMessage_6(L_2); String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); __this->set_exitMessage_7(L_3); __this->set_contentLength_12(((int64_t)((int64_t)(-1)))); WebResponse__ctor_mDD72EDEB98B8AFA20480EE261E74EAAE10CB63E0(__this, /*hidden argument*/NULL); FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D * L_4 = ___request0; __this->set_request_11(L_4); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_5 = ___uri1; __this->set_uri_2(L_5); String_t* L_6 = ___method2; __this->set_method_9(L_6); return; } } // System.Void System.Net.FtpWebResponse::.ctor(System.Net.FtpWebRequest,System.Uri,System.String,System.Net.FtpStatusCode,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebResponse__ctor_m07A7D99473E67AE46FBBE1CB3A7E55ED4994EAF9 (FtpWebResponse_t4462ADF9C14124B97DC10705932A9234DACEED49 * __this, FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D * ___request0, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri1, String_t* ___method2, int32_t ___statusCode3, String_t* ___statusDescription4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_0 = ((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var))->get_MinValue_31(); __this->set_lastModified_4(L_0); String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); __this->set_bannerMessage_5(L_1); String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); __this->set_welcomeMessage_6(L_2); String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); __this->set_exitMessage_7(L_3); __this->set_contentLength_12(((int64_t)((int64_t)(-1)))); WebResponse__ctor_mDD72EDEB98B8AFA20480EE261E74EAAE10CB63E0(__this, /*hidden argument*/NULL); FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D * L_4 = ___request0; __this->set_request_11(L_4); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_5 = ___uri1; __this->set_uri_2(L_5); String_t* L_6 = ___method2; __this->set_method_9(L_6); int32_t L_7 = ___statusCode3; __this->set_statusCode_3(L_7); String_t* L_8 = ___statusDescription4; __this->set_statusDescription_8(L_8); return; } } // System.Void System.Net.FtpWebResponse::.ctor(System.Net.FtpWebRequest,System.Uri,System.String,System.Net.FtpStatus) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebResponse__ctor_m2DA5535EC46AB5284A871D9D62A4A44C7884B772 (FtpWebResponse_t4462ADF9C14124B97DC10705932A9234DACEED49 * __this, FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D * ___request0, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri1, String_t* ___method2, FtpStatus_t40908570BA05748EFCA5F4B12F77356A42A40837 * ___status3, const RuntimeMethod* method) { { FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D * L_0 = ___request0; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_1 = ___uri1; String_t* L_2 = ___method2; FtpStatus_t40908570BA05748EFCA5F4B12F77356A42A40837 * L_3 = ___status3; NullCheck(L_3); int32_t L_4; L_4 = FtpStatus_get_StatusCode_mC67001BE9C902DAD12A08E2D178C8FB277FF5081_inline(L_3, /*hidden argument*/NULL); FtpStatus_t40908570BA05748EFCA5F4B12F77356A42A40837 * L_5 = ___status3; NullCheck(L_5); String_t* L_6; L_6 = FtpStatus_get_StatusDescription_m92E877F6DF8CC7794B43E239E8F09D827419DAAB_inline(L_5, /*hidden argument*/NULL); FtpWebResponse__ctor_m07A7D99473E67AE46FBBE1CB3A7E55ED4994EAF9(__this, L_0, L_1, L_2, L_4, L_6, /*hidden argument*/NULL); return; } } // System.Net.WebHeaderCollection System.Net.FtpWebResponse::get_Headers() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * FtpWebResponse_get_Headers_mCBB6E410D206EFD4665783562EF7F0024ECA0D80 (FtpWebResponse_t4462ADF9C14124B97DC10705932A9234DACEED49 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_0 = (WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 *)il2cpp_codegen_object_new(WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4_il2cpp_TypeInfo_var); WebHeaderCollection__ctor_mA79C59CAE93CD777F7B475AE4C74FFAF48892263(L_0, /*hidden argument*/NULL); return L_0; } } // System.Uri System.Net.FtpWebResponse::get_ResponseUri() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * FtpWebResponse_get_ResponseUri_mD4EDF403A15B2C7A6A40FEDB9F85D813A63D8C14 (FtpWebResponse_t4462ADF9C14124B97DC10705932A9234DACEED49 * __this, const RuntimeMethod* method) { { Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_0 = __this->get_uri_2(); return L_0; } } // System.Void System.Net.FtpWebResponse::set_LastModified(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebResponse_set_LastModified_mB0788FCB6FBF63C284B2DE63D86AB95CA9C2A3D2 (FtpWebResponse_t4462ADF9C14124B97DC10705932A9234DACEED49 * __this, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___value0, const RuntimeMethod* method) { { DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_0 = ___value0; __this->set_lastModified_4(L_0); return; } } // System.Void System.Net.FtpWebResponse::set_BannerMessage(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebResponse_set_BannerMessage_m513F3C3FE4DDA1E230EEF5CA92A03F54C20E58D7 (FtpWebResponse_t4462ADF9C14124B97DC10705932A9234DACEED49 * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->set_bannerMessage_5(L_0); return; } } // System.Void System.Net.FtpWebResponse::set_WelcomeMessage(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebResponse_set_WelcomeMessage_m61B251B52C2311B4C7AA1E25B8456D2CC813CD5C (FtpWebResponse_t4462ADF9C14124B97DC10705932A9234DACEED49 * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->set_welcomeMessage_6(L_0); return; } } // System.Void System.Net.FtpWebResponse::set_StatusCode(System.Net.FtpStatusCode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebResponse_set_StatusCode_mB5B7043FE30DA817E1A4956D3D1756230B4D8A01 (FtpWebResponse_t4462ADF9C14124B97DC10705932A9234DACEED49 * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set_statusCode_3(L_0); return; } } // System.Void System.Net.FtpWebResponse::Close() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebResponse_Close_m130883D69C20B16E345F16B14B8764BF92530EFB (FtpWebResponse_t4462ADF9C14124B97DC10705932A9234DACEED49 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { bool L_0 = __this->get_disposed_10(); if (!L_0) { goto IL_0009; } } { return; } IL_0009: { __this->set_disposed_10((bool)1); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_1 = __this->get_stream_1(); if (!L_1) { goto IL_003b; } } { Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_2 = __this->get_stream_1(); NullCheck(L_2); VirtualActionInvoker0::Invoke(18 /* System.Void System.IO.Stream::Close() */, L_2); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_3 = __this->get_stream_1(); IL2CPP_RUNTIME_CLASS_INIT(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_il2cpp_TypeInfo_var); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_4 = ((Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_StaticFields*)il2cpp_codegen_static_fields_for(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_il2cpp_TypeInfo_var))->get_Null_1(); if ((!(((RuntimeObject*)(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB *)L_3) == ((RuntimeObject*)(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB *)L_4)))) { goto IL_003b; } } { FtpWebRequest_t9CA7B151B9A2C305627461D607795EC345CD267D * L_5 = __this->get_request_11(); NullCheck(L_5); FtpWebRequest_OperationCompleted_m39ED7068AD735A8A7D902A2DAD93FB506F974696(L_5, /*hidden argument*/NULL); } IL_003b: { __this->set_stream_1((Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB *)NULL); return; } } // System.IO.Stream System.Net.FtpWebResponse::GetResponseStream() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * FtpWebResponse_GetResponseStream_m76F9D81EE2208DF7B82C8B2D8DEE9FEB1379B040 (FtpWebResponse_t4462ADF9C14124B97DC10705932A9234DACEED49 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral127982D8D48B627D6FEB2E03467C76CE65E3AD8A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2264BCDAE97447CBA2BF489CDD8241719D321D83); s_Il2CppMethodInitialized = true; } { Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_0 = __this->get_stream_1(); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_il2cpp_TypeInfo_var); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_1 = ((Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_StaticFields*)il2cpp_codegen_static_fields_for(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_il2cpp_TypeInfo_var))->get_Null_1(); return L_1; } IL_000e: { String_t* L_2 = __this->get_method_9(); bool L_3; L_3 = String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2(L_2, _stringLiteral2264BCDAE97447CBA2BF489CDD8241719D321D83, /*hidden argument*/NULL); if (!L_3) { goto IL_0038; } } { String_t* L_4 = __this->get_method_9(); bool L_5; L_5 = String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2(L_4, _stringLiteral127982D8D48B627D6FEB2E03467C76CE65E3AD8A, /*hidden argument*/NULL); if (!L_5) { goto IL_0038; } } { FtpWebResponse_CheckDisposed_m6B801F447BB22BBEE680ABB19D95609A9ED241E2(__this, /*hidden argument*/NULL); } IL_0038: { Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_6 = __this->get_stream_1(); return L_6; } } // System.Void System.Net.FtpWebResponse::set_Stream(System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebResponse_set_Stream_mF4F189761287CE77596991E70D6341AF4112F283 (FtpWebResponse_t4462ADF9C14124B97DC10705932A9234DACEED49 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___value0, const RuntimeMethod* method) { { Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_0 = ___value0; __this->set_stream_1(L_0); return; } } // System.Void System.Net.FtpWebResponse::UpdateStatus(System.Net.FtpStatus) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebResponse_UpdateStatus_mCB44582EE8FAF787D8901A8667439272043ECEAE (FtpWebResponse_t4462ADF9C14124B97DC10705932A9234DACEED49 * __this, FtpStatus_t40908570BA05748EFCA5F4B12F77356A42A40837 * ___status0, const RuntimeMethod* method) { { FtpStatus_t40908570BA05748EFCA5F4B12F77356A42A40837 * L_0 = ___status0; NullCheck(L_0); int32_t L_1; L_1 = FtpStatus_get_StatusCode_mC67001BE9C902DAD12A08E2D178C8FB277FF5081_inline(L_0, /*hidden argument*/NULL); __this->set_statusCode_3(L_1); FtpStatus_t40908570BA05748EFCA5F4B12F77356A42A40837 * L_2 = ___status0; NullCheck(L_2); String_t* L_3; L_3 = FtpStatus_get_StatusDescription_m92E877F6DF8CC7794B43E239E8F09D827419DAAB_inline(L_2, /*hidden argument*/NULL); __this->set_statusDescription_8(L_3); return; } } // System.Void System.Net.FtpWebResponse::CheckDisposed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebResponse_CheckDisposed_m6B801F447BB22BBEE680ABB19D95609A9ED241E2 (FtpWebResponse_t4462ADF9C14124B97DC10705932A9234DACEED49 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_disposed_10(); if (!L_0) { goto IL_0019; } } { Type_t * L_1; L_1 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(__this, /*hidden argument*/NULL); NullCheck(L_1); String_t* L_2; L_2 = VirtualFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_FullName() */, L_1); ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A * L_3 = (ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A_il2cpp_TypeInfo_var))); ObjectDisposedException__ctor_mE57C6A61713668708F9B3CEF060A8D006B1FE880(L_3, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpWebResponse_CheckDisposed_m6B801F447BB22BBEE680ABB19D95609A9ED241E2_RuntimeMethod_var))); } IL_0019: { return; } } // System.Boolean System.Net.FtpWebResponse::IsFinal() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FtpWebResponse_IsFinal_m6917993127AC3E42798E1707B7CAE719A096DFA1 (FtpWebResponse_t4462ADF9C14124B97DC10705932A9234DACEED49 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_statusCode_3(); return (bool)((((int32_t)((((int32_t)L_0) < ((int32_t)((int32_t)200)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.IO.Compression.GZipStream::.ctor(System.IO.Stream,System.IO.Compression.CompressionMode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GZipStream__ctor_mCBA224338F8CA4CA9D21D7EA7744AA3A180AA01F (GZipStream_t3C2FE429FBD114B00B7B65623757F5862196B9B6 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream0, int32_t ___mode1, const RuntimeMethod* method) { { Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_0 = ___stream0; int32_t L_1 = ___mode1; GZipStream__ctor_mB3960180B764F1399480D5B5B79433943EDBB799(__this, L_0, L_1, (bool)0, /*hidden argument*/NULL); return; } } // System.Void System.IO.Compression.GZipStream::.ctor(System.IO.Stream,System.IO.Compression.CompressionMode,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GZipStream__ctor_mB3960180B764F1399480D5B5B79433943EDBB799 (GZipStream_t3C2FE429FBD114B00B7B65623757F5862196B9B6 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream0, int32_t ___mode1, bool ___leaveOpen2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_il2cpp_TypeInfo_var); Stream__ctor_m5EB0B4BCC014E7D1F18FE0E72B2D6D0C5C13D5C4(__this, /*hidden argument*/NULL); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_0 = ___stream0; int32_t L_1 = ___mode1; bool L_2 = ___leaveOpen2; DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5 * L_3 = (DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5 *)il2cpp_codegen_object_new(DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5_il2cpp_TypeInfo_var); DeflateStream__ctor_mB1FE9763B287BCA943AEBB3832117BACCE1D4C24(L_3, L_0, L_1, L_2, ((int32_t)31), /*hidden argument*/NULL); __this->set__deflateStream_5(L_3); return; } } // System.Boolean System.IO.Compression.GZipStream::get_CanRead() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GZipStream_get_CanRead_m497E40DBEB52A4D107ADC99FEB0208B5056E671E (GZipStream_t3C2FE429FBD114B00B7B65623757F5862196B9B6 * __this, const RuntimeMethod* method) { DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5 * G_B2_0 = NULL; DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5 * G_B1_0 = NULL; { DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5 * L_0 = __this->get__deflateStream_5(); DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5 * L_1 = L_0; G_B1_0 = L_1; if (L_1) { G_B2_0 = L_1; goto IL_000c; } } { return (bool)0; } IL_000c: { NullCheck(G_B2_0); bool L_2; L_2 = VirtualFuncInvoker0< bool >::Invoke(7 /* System.Boolean System.IO.Stream::get_CanRead() */, G_B2_0); return L_2; } } // System.Boolean System.IO.Compression.GZipStream::get_CanWrite() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GZipStream_get_CanWrite_m6CA9878AA502CD325062E742BD8BBA38BD74EA93 (GZipStream_t3C2FE429FBD114B00B7B65623757F5862196B9B6 * __this, const RuntimeMethod* method) { DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5 * G_B2_0 = NULL; DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5 * G_B1_0 = NULL; { DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5 * L_0 = __this->get__deflateStream_5(); DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5 * L_1 = L_0; G_B1_0 = L_1; if (L_1) { G_B2_0 = L_1; goto IL_000c; } } { return (bool)0; } IL_000c: { NullCheck(G_B2_0); bool L_2; L_2 = VirtualFuncInvoker0< bool >::Invoke(9 /* System.Boolean System.IO.Stream::get_CanWrite() */, G_B2_0); return L_2; } } // System.Boolean System.IO.Compression.GZipStream::get_CanSeek() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GZipStream_get_CanSeek_m33BA0754E63EC31419B3373F5A994E590846DECB (GZipStream_t3C2FE429FBD114B00B7B65623757F5862196B9B6 * __this, const RuntimeMethod* method) { DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5 * G_B2_0 = NULL; DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5 * G_B1_0 = NULL; { DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5 * L_0 = __this->get__deflateStream_5(); DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5 * L_1 = L_0; G_B1_0 = L_1; if (L_1) { G_B2_0 = L_1; goto IL_000c; } } { return (bool)0; } IL_000c: { NullCheck(G_B2_0); bool L_2; L_2 = VirtualFuncInvoker0< bool >::Invoke(8 /* System.Boolean System.IO.Stream::get_CanSeek() */, G_B2_0); return L_2; } } // System.Int64 System.IO.Compression.GZipStream::get_Length() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t GZipStream_get_Length_m28EB4F3B6C4226767A0A55004A4F2B5735B97A3C (GZipStream_t3C2FE429FBD114B00B7B65623757F5862196B9B6 * __this, const RuntimeMethod* method) { { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral898F62C1CB5B52471F58EE23AAB5BCB055458288)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&GZipStream_get_Length_m28EB4F3B6C4226767A0A55004A4F2B5735B97A3C_RuntimeMethod_var))); } } // System.Int64 System.IO.Compression.GZipStream::get_Position() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t GZipStream_get_Position_m39192B2AD2E1EA0EBEE91A31737DDC2CDB4E7EE1 (GZipStream_t3C2FE429FBD114B00B7B65623757F5862196B9B6 * __this, const RuntimeMethod* method) { { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral898F62C1CB5B52471F58EE23AAB5BCB055458288)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&GZipStream_get_Position_m39192B2AD2E1EA0EBEE91A31737DDC2CDB4E7EE1_RuntimeMethod_var))); } } // System.Void System.IO.Compression.GZipStream::set_Position(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GZipStream_set_Position_mE671D3381FB3233B9E2BEF27F750D7415528F8CA (GZipStream_t3C2FE429FBD114B00B7B65623757F5862196B9B6 * __this, int64_t ___value0, const RuntimeMethod* method) { { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral898F62C1CB5B52471F58EE23AAB5BCB055458288)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&GZipStream_set_Position_mE671D3381FB3233B9E2BEF27F750D7415528F8CA_RuntimeMethod_var))); } } // System.Void System.IO.Compression.GZipStream::Flush() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GZipStream_Flush_m84B66386AF2338A8FF4325F3A806E3C45F3CDC02 (GZipStream_t3C2FE429FBD114B00B7B65623757F5862196B9B6 * __this, const RuntimeMethod* method) { { GZipStream_CheckDeflateStream_mBFDFD94751C45AB953DFB16D9ECE11D50E09AC92(__this, /*hidden argument*/NULL); DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5 * L_0 = __this->get__deflateStream_5(); NullCheck(L_0); VirtualActionInvoker0::Invoke(20 /* System.Void System.IO.Stream::Flush() */, L_0); return; } } // System.Int64 System.IO.Compression.GZipStream::Seek(System.Int64,System.IO.SeekOrigin) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t GZipStream_Seek_m6F2A52B29A3B05EA7A152900C9B9CA6659DC1992 (GZipStream_t3C2FE429FBD114B00B7B65623757F5862196B9B6 * __this, int64_t ___offset0, int32_t ___origin1, const RuntimeMethod* method) { { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral898F62C1CB5B52471F58EE23AAB5BCB055458288)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&GZipStream_Seek_m6F2A52B29A3B05EA7A152900C9B9CA6659DC1992_RuntimeMethod_var))); } } // System.Void System.IO.Compression.GZipStream::SetLength(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GZipStream_SetLength_mCD9134EF5190975DCEC5B680264D5F91247437FC (GZipStream_t3C2FE429FBD114B00B7B65623757F5862196B9B6 * __this, int64_t ___value0, const RuntimeMethod* method) { { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral898F62C1CB5B52471F58EE23AAB5BCB055458288)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&GZipStream_SetLength_mCD9134EF5190975DCEC5B680264D5F91247437FC_RuntimeMethod_var))); } } // System.Int32 System.IO.Compression.GZipStream::ReadByte() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GZipStream_ReadByte_mC5CF331EFC0C95009CC1B59202A94FC8E8C9EE16 (GZipStream_t3C2FE429FBD114B00B7B65623757F5862196B9B6 * __this, const RuntimeMethod* method) { { GZipStream_CheckDeflateStream_mBFDFD94751C45AB953DFB16D9ECE11D50E09AC92(__this, /*hidden argument*/NULL); DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5 * L_0 = __this->get__deflateStream_5(); NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(31 /* System.Int32 System.IO.Stream::ReadByte() */, L_0); return L_1; } } // System.IAsyncResult System.IO.Compression.GZipStream::BeginRead(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* GZipStream_BeginRead_m57C35E4ACE74AB712E62F760819CEFBBB8DD1341 (GZipStream_t3C2FE429FBD114B00B7B65623757F5862196B9B6 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___array0, int32_t ___offset1, int32_t ___count2, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___asyncCallback3, RuntimeObject * ___asyncState4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___array0; int32_t L_1 = ___offset1; int32_t L_2 = ___count2; IL2CPP_RUNTIME_CLASS_INIT(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_il2cpp_TypeInfo_var); CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_3; L_3 = CancellationToken_get_None_m13F4B9DCF5D7BE8E9E3F60026C98E50A946FE9DF(/*hidden argument*/NULL); Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * L_4; L_4 = VirtualFuncInvoker4< Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD >::Invoke(24 /* System.Threading.Tasks.Task`1 System.IO.Stream::ReadAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken) */, __this, L_0, L_1, L_2, L_3); AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * L_5 = ___asyncCallback3; RuntimeObject * L_6 = ___asyncState4; RuntimeObject* L_7; L_7 = TaskToApm_Begin_m0A8A1E0B6104AD2D83E5767147A2808B89756AD6(L_4, L_5, L_6, /*hidden argument*/NULL); return L_7; } } // System.Int32 System.IO.Compression.GZipStream::EndRead(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GZipStream_EndRead_m22C6D4894AE62EA516FCC773980BA7D8512B1EEA (GZipStream_t3C2FE429FBD114B00B7B65623757F5862196B9B6 * __this, RuntimeObject* ___asyncResult0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TaskToApm_End_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m94BEE28ADAAC7223EE34485FD592C44F0EBC36B4_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___asyncResult0; int32_t L_1; L_1 = TaskToApm_End_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m94BEE28ADAAC7223EE34485FD592C44F0EBC36B4(L_0, /*hidden argument*/TaskToApm_End_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m94BEE28ADAAC7223EE34485FD592C44F0EBC36B4_RuntimeMethod_var); return L_1; } } // System.Int32 System.IO.Compression.GZipStream::Read(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GZipStream_Read_m756C14A02FE465D2FBB91A24EFB2B6DF82BAF089 (GZipStream_t3C2FE429FBD114B00B7B65623757F5862196B9B6 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___array0, int32_t ___offset1, int32_t ___count2, const RuntimeMethod* method) { { GZipStream_CheckDeflateStream_mBFDFD94751C45AB953DFB16D9ECE11D50E09AC92(__this, /*hidden argument*/NULL); DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5 * L_0 = __this->get__deflateStream_5(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = ___array0; int32_t L_2 = ___offset1; int32_t L_3 = ___count2; NullCheck(L_0); int32_t L_4; L_4 = VirtualFuncInvoker3< int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(30 /* System.Int32 System.IO.Stream::Read(System.Byte[],System.Int32,System.Int32) */, L_0, L_1, L_2, L_3); return L_4; } } // System.IAsyncResult System.IO.Compression.GZipStream::BeginWrite(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* GZipStream_BeginWrite_m14010757156D2D33CDC46726B41666F3D5942007 (GZipStream_t3C2FE429FBD114B00B7B65623757F5862196B9B6 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___array0, int32_t ___offset1, int32_t ___count2, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___asyncCallback3, RuntimeObject * ___asyncState4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___array0; int32_t L_1 = ___offset1; int32_t L_2 = ___count2; IL2CPP_RUNTIME_CLASS_INIT(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_il2cpp_TypeInfo_var); CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_3; L_3 = CancellationToken_get_None_m13F4B9DCF5D7BE8E9E3F60026C98E50A946FE9DF(/*hidden argument*/NULL); Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_4; L_4 = VirtualFuncInvoker4< Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD >::Invoke(27 /* System.Threading.Tasks.Task System.IO.Stream::WriteAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken) */, __this, L_0, L_1, L_2, L_3); AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * L_5 = ___asyncCallback3; RuntimeObject * L_6 = ___asyncState4; RuntimeObject* L_7; L_7 = TaskToApm_Begin_m0A8A1E0B6104AD2D83E5767147A2808B89756AD6(L_4, L_5, L_6, /*hidden argument*/NULL); return L_7; } } // System.Void System.IO.Compression.GZipStream::EndWrite(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GZipStream_EndWrite_m1A609B940CD196C8813E54687FA2635CA6FDA2DB (GZipStream_t3C2FE429FBD114B00B7B65623757F5862196B9B6 * __this, RuntimeObject* ___asyncResult0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___asyncResult0; TaskToApm_End_m91446ED84F2ED6AE3003382E1B7AE44EA6937493(L_0, /*hidden argument*/NULL); return; } } // System.Void System.IO.Compression.GZipStream::Write(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GZipStream_Write_mFE0DDD12E1619DDBB728EAFC1D55C913D0157F16 (GZipStream_t3C2FE429FBD114B00B7B65623757F5862196B9B6 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___array0, int32_t ___offset1, int32_t ___count2, const RuntimeMethod* method) { { GZipStream_CheckDeflateStream_mBFDFD94751C45AB953DFB16D9ECE11D50E09AC92(__this, /*hidden argument*/NULL); DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5 * L_0 = __this->get__deflateStream_5(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = ___array0; int32_t L_2 = ___offset1; int32_t L_3 = ___count2; NullCheck(L_0); VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_0, L_1, L_2, L_3); return; } } // System.Void System.IO.Compression.GZipStream::CopyTo(System.IO.Stream,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GZipStream_CopyTo_m3A31A8BE4CC7A04979ABDAD2C93DFA45C4754449 (GZipStream_t3C2FE429FBD114B00B7B65623757F5862196B9B6 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___destination0, int32_t ___bufferSize1, const RuntimeMethod* method) { { GZipStream_CheckDeflateStream_mBFDFD94751C45AB953DFB16D9ECE11D50E09AC92(__this, /*hidden argument*/NULL); DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5 * L_0 = __this->get__deflateStream_5(); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_1 = ___destination0; int32_t L_2 = ___bufferSize1; NullCheck(L_0); VirtualActionInvoker2< Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB *, int32_t >::Invoke(17 /* System.Void System.IO.Stream::CopyTo(System.IO.Stream,System.Int32) */, L_0, L_1, L_2); return; } } // System.Void System.IO.Compression.GZipStream::Dispose(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GZipStream_Dispose_m78FDD06F6429A137A91F25253E12983986B5AF32 (GZipStream_t3C2FE429FBD114B00B7B65623757F5862196B9B6 * __this, bool ___disposing0, const RuntimeMethod* method) { Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; IL_0000: try {// begin try (depth: 1) { bool L_0 = ___disposing0; if (!L_0) { goto IL_0016; } } IL_0003: { DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5 * L_1 = __this->get__deflateStream_5(); if (!L_1) { goto IL_0016; } } IL_000b: { DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5 * L_2 = __this->get__deflateStream_5(); NullCheck(L_2); Stream_Dispose_m117324084DDAD414761AD29FB17A419840BA6EA0(L_2, /*hidden argument*/NULL); } IL_0016: { __this->set__deflateStream_5((DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5 *)NULL); IL2CPP_LEAVE(0x27, FINALLY_001f); } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_001f; } FINALLY_001f: {// begin finally (depth: 1) bool L_3 = ___disposing0; Stream_Dispose_mDC5C7A9933446223A84ED106AE3E949E644FB0BE(__this, L_3, /*hidden argument*/NULL); IL2CPP_END_FINALLY(31) }// end finally (depth: 1) IL2CPP_CLEANUP(31) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x27, IL_0027) } IL_0027: { return; } } // System.Threading.Tasks.Task`1 System.IO.Compression.GZipStream::ReadAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * GZipStream_ReadAsync_m819D76DE35F4CACAF21DACD88A36BEB11FC8A15E (GZipStream_t3C2FE429FBD114B00B7B65623757F5862196B9B6 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___array0, int32_t ___offset1, int32_t ___count2, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken3, const RuntimeMethod* method) { { GZipStream_CheckDeflateStream_mBFDFD94751C45AB953DFB16D9ECE11D50E09AC92(__this, /*hidden argument*/NULL); DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5 * L_0 = __this->get__deflateStream_5(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = ___array0; int32_t L_2 = ___offset1; int32_t L_3 = ___count2; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_4 = ___cancellationToken3; NullCheck(L_0); Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * L_5; L_5 = VirtualFuncInvoker4< Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 *, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD >::Invoke(24 /* System.Threading.Tasks.Task`1 System.IO.Stream::ReadAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken) */, L_0, L_1, L_2, L_3, L_4); return L_5; } } // System.Threading.Tasks.Task System.IO.Compression.GZipStream::WriteAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * GZipStream_WriteAsync_mD3C923CCE376D02E77C0638F02E44129C5AD5A93 (GZipStream_t3C2FE429FBD114B00B7B65623757F5862196B9B6 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___array0, int32_t ___offset1, int32_t ___count2, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken3, const RuntimeMethod* method) { { GZipStream_CheckDeflateStream_mBFDFD94751C45AB953DFB16D9ECE11D50E09AC92(__this, /*hidden argument*/NULL); DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5 * L_0 = __this->get__deflateStream_5(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = ___array0; int32_t L_2 = ___offset1; int32_t L_3 = ___count2; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_4 = ___cancellationToken3; NullCheck(L_0); Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_5; L_5 = VirtualFuncInvoker4< Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD >::Invoke(27 /* System.Threading.Tasks.Task System.IO.Stream::WriteAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken) */, L_0, L_1, L_2, L_3, L_4); return L_5; } } // System.Threading.Tasks.Task System.IO.Compression.GZipStream::FlushAsync(System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * GZipStream_FlushAsync_mF17F23B73E25156A98AFEB7085A4183AE5AF1F06 (GZipStream_t3C2FE429FBD114B00B7B65623757F5862196B9B6 * __this, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken0, const RuntimeMethod* method) { { GZipStream_CheckDeflateStream_mBFDFD94751C45AB953DFB16D9ECE11D50E09AC92(__this, /*hidden argument*/NULL); DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5 * L_0 = __this->get__deflateStream_5(); CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_1 = ___cancellationToken0; NullCheck(L_0); Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_2; L_2 = VirtualFuncInvoker1< Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD >::Invoke(21 /* System.Threading.Tasks.Task System.IO.Stream::FlushAsync(System.Threading.CancellationToken) */, L_0, L_1); return L_2; } } // System.Threading.Tasks.Task System.IO.Compression.GZipStream::CopyToAsync(System.IO.Stream,System.Int32,System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * GZipStream_CopyToAsync_mEAB7345B59DDBC8476650F43063F32860A0FDDEA (GZipStream_t3C2FE429FBD114B00B7B65623757F5862196B9B6 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___destination0, int32_t ___bufferSize1, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken2, const RuntimeMethod* method) { { GZipStream_CheckDeflateStream_mBFDFD94751C45AB953DFB16D9ECE11D50E09AC92(__this, /*hidden argument*/NULL); DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5 * L_0 = __this->get__deflateStream_5(); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_1 = ___destination0; int32_t L_2 = ___bufferSize1; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_3 = ___cancellationToken2; NullCheck(L_0); Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_4; L_4 = VirtualFuncInvoker3< Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 *, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB *, int32_t, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD >::Invoke(16 /* System.Threading.Tasks.Task System.IO.Stream::CopyToAsync(System.IO.Stream,System.Int32,System.Threading.CancellationToken) */, L_0, L_1, L_2, L_3); return L_4; } } // System.Void System.IO.Compression.GZipStream::CheckDeflateStream() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GZipStream_CheckDeflateStream_mBFDFD94751C45AB953DFB16D9ECE11D50E09AC92 (GZipStream_t3C2FE429FBD114B00B7B65623757F5862196B9B6 * __this, const RuntimeMethod* method) { { DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5 * L_0 = __this->get__deflateStream_5(); if (L_0) { goto IL_000d; } } { GZipStream_ThrowStreamClosedException_mD4D02CC04BEC4DD3D91CFC141C3C9D2D611DF1C8(/*hidden argument*/NULL); } IL_000d: { return; } } // System.Void System.IO.Compression.GZipStream::ThrowStreamClosedException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void GZipStream_ThrowStreamClosedException_mD4D02CC04BEC4DD3D91CFC141C3C9D2D611DF1C8 (const RuntimeMethod* method) { { ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A * L_0 = (ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A_il2cpp_TypeInfo_var))); ObjectDisposedException__ctor_mC830C2F97D5314DF72EEFFE749E7F7FB467D0382(L_0, (String_t*)NULL, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1D7DDE0CD98D0546D34DBFE1AA66C5982F4E297B)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&GZipStream_ThrowStreamClosedException_mD4D02CC04BEC4DD3D91CFC141C3C9D2D611DF1C8_RuntimeMethod_var))); } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.CodeDom.Compiler.GeneratedCodeAttribute::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GeneratedCodeAttribute__ctor_m9559A5626DF12955B74E0787573BB5A68C43F6D7 (GeneratedCodeAttribute_tFAE0CBAC44F15D84CCDFEFACB02A8FEF95B198EF * __this, String_t* ___tool0, String_t* ___version1, const RuntimeMethod* method) { { Attribute__ctor_m5C1862A7DFC2C25A4797A8C5F681FBB5CB53ECE1(__this, /*hidden argument*/NULL); String_t* L_0 = ___tool0; __this->set_tool_0(L_0); String_t* L_1 = ___version1; __this->set_version_1(L_1); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Net.IWebProxy System.Net.GlobalProxySelection::get_Select() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* GlobalProxySelection_get_Select_mB426350582C09C6940AA328D851F719BBAA5494B (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebProxyWrapper_tEF5FEF9C3A75F32ABD48893D8B1029B6DB629CEB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; WebProxyWrapper_tEF5FEF9C3A75F32ABD48893D8B1029B6DB629CEB * V_1 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E_il2cpp_TypeInfo_var); RuntimeObject* L_0; L_0 = WebRequest_get_DefaultWebProxy_m147C9E334AE2191485F998833473F567AC3EEDCB(/*hidden argument*/NULL); V_0 = L_0; RuntimeObject* L_1 = V_0; if (L_1) { goto IL_000f; } } { RuntimeObject* L_2; L_2 = GlobalProxySelection_GetEmptyWebProxy_m709E1782A9353D2C99AFCFA6F13FC308108367A5(/*hidden argument*/NULL); return L_2; } IL_000f: { RuntimeObject* L_3 = V_0; V_1 = ((WebProxyWrapper_tEF5FEF9C3A75F32ABD48893D8B1029B6DB629CEB *)IsInstClass((RuntimeObject*)L_3, WebProxyWrapper_tEF5FEF9C3A75F32ABD48893D8B1029B6DB629CEB_il2cpp_TypeInfo_var)); WebProxyWrapper_tEF5FEF9C3A75F32ABD48893D8B1029B6DB629CEB * L_4 = V_1; if (!L_4) { goto IL_0020; } } { WebProxyWrapper_tEF5FEF9C3A75F32ABD48893D8B1029B6DB629CEB * L_5 = V_1; NullCheck(L_5); WebProxy_tC96F42021301BBF649AE2A2AF8A58920F5563B6E * L_6; L_6 = WebProxyWrapper_get_WebProxy_m64E0A52B9081B75ACED10724A2805F6ECE3C89AB_inline(L_5, /*hidden argument*/NULL); return L_6; } IL_0020: { RuntimeObject* L_7 = V_0; return L_7; } } // System.Net.IWebProxy System.Net.GlobalProxySelection::GetEmptyWebProxy() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* GlobalProxySelection_GetEmptyWebProxy_m709E1782A9353D2C99AFCFA6F13FC308108367A5 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EmptyWebProxy_tBFFA078A103E63530CC4A80AD137D6C8E3A77686_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { EmptyWebProxy_tBFFA078A103E63530CC4A80AD137D6C8E3A77686 * L_0 = (EmptyWebProxy_tBFFA078A103E63530CC4A80AD137D6C8E3A77686 *)il2cpp_codegen_object_new(EmptyWebProxy_tBFFA078A103E63530CC4A80AD137D6C8E3A77686_il2cpp_TypeInfo_var); EmptyWebProxy__ctor_m5EC0BA8242BECE3F0E67CC143135CBE8670BFFFD(L_0, /*hidden argument*/NULL); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Text.RegularExpressions.Group::.ctor(System.String,System.Int32[],System.Int32,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Group__ctor_m5FE82FDB5B4EE244EB46909ACC099806555EB32F (Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 * __this, String_t* ___text0, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___caps1, int32_t ___capcount2, String_t* ___name3, const RuntimeMethod* method) { String_t* G_B2_0 = NULL; Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 * G_B2_1 = NULL; String_t* G_B1_0 = NULL; Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 * G_B1_1 = NULL; int32_t G_B3_0 = 0; String_t* G_B3_1 = NULL; Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 * G_B3_2 = NULL; int32_t G_B5_0 = 0; String_t* G_B5_1 = NULL; Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 * G_B5_2 = NULL; int32_t G_B4_0 = 0; String_t* G_B4_1 = NULL; Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 * G_B4_2 = NULL; int32_t G_B6_0 = 0; int32_t G_B6_1 = 0; String_t* G_B6_2 = NULL; Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 * G_B6_3 = NULL; { String_t* L_0 = ___text0; int32_t L_1 = ___capcount2; G_B1_0 = L_0; G_B1_1 = __this; if (!L_1) { G_B2_0 = L_0; G_B2_1 = __this; goto IL_000e; } } { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_2 = ___caps1; int32_t L_3 = ___capcount2; NullCheck(L_2); int32_t L_4 = ((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)1)), (int32_t)2)); int32_t L_5 = (L_2)->GetAt(static_cast(L_4)); G_B3_0 = L_5; G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_000f; } IL_000e: { G_B3_0 = 0; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_000f: { int32_t L_6 = ___capcount2; G_B4_0 = G_B3_0; G_B4_1 = G_B3_1; G_B4_2 = G_B3_2; if (!L_6) { G_B5_0 = G_B3_0; G_B5_1 = G_B3_1; G_B5_2 = G_B3_2; goto IL_001b; } } { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_7 = ___caps1; int32_t L_8 = ___capcount2; NullCheck(L_7); int32_t L_9 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_8, (int32_t)2)), (int32_t)1)); int32_t L_10 = (L_7)->GetAt(static_cast(L_9)); G_B6_0 = L_10; G_B6_1 = G_B4_0; G_B6_2 = G_B4_1; G_B6_3 = G_B4_2; goto IL_001c; } IL_001b: { G_B6_0 = 0; G_B6_1 = G_B5_0; G_B6_2 = G_B5_1; G_B6_3 = G_B5_2; } IL_001c: { NullCheck(G_B6_3); Capture__ctor_m5FB71B7ADA66B2D3AD6B681BEE846F0FD62F11C3(G_B6_3, G_B6_2, G_B6_1, G_B6_0, /*hidden argument*/NULL); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_11 = ___caps1; __this->set__caps_4(L_11); int32_t L_12 = ___capcount2; __this->set__capcount_5(L_12); String_t* L_13 = ___name3; __this->set__name_7(L_13); return; } } // System.Boolean System.Text.RegularExpressions.Group::get_Success() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Group_get_Success_m917CA7077102642C3C24106F13B9F5F5D5130C1B (Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__capcount_5(); return (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0); } } // System.Void System.Text.RegularExpressions.Group::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Group__cctor_mC2C601CAA7A29E2CF56AE1A25B7C0683B05C8BE1 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_1 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)0); String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 * L_3 = (Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 *)il2cpp_codegen_object_new(Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883_il2cpp_TypeInfo_var); Group__ctor_m5FE82FDB5B4EE244EB46909ACC099806555EB32F(L_3, L_0, L_1, 0, L_2, /*hidden argument*/NULL); ((Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883_StaticFields*)il2cpp_codegen_static_fields_for(Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883_il2cpp_TypeInfo_var))->set__emptygroup_3(L_3); return; } } // System.Void System.Text.RegularExpressions.Group::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Group__ctor_m2EEFD01EAA4B135ED614049B00261D0736EF8107 (Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Group__ctor_m2EEFD01EAA4B135ED614049B00261D0736EF8107_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(Group__ctor_m2EEFD01EAA4B135ED614049B00261D0736EF8107_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Text.RegularExpressions.GroupCollection::.ctor(System.Text.RegularExpressions.Match,System.Collections.Hashtable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GroupCollection__ctor_m7DC940E706407EAE4AC45F297F021CD11F26CF6A (GroupCollection_tAA9CA4E93B1A9D6B7199EE25AEB32922E72AA556 * __this, Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * ___match0, Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___caps1, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * L_0 = ___match0; __this->set__match_0(L_0); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_1 = ___caps1; __this->set__captureMap_1(L_1); return; } } // System.Object System.Text.RegularExpressions.GroupCollection::get_SyncRoot() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * GroupCollection_get_SyncRoot_m9D32B2F5AE2C8968E660B524D678B806C79763E0 (GroupCollection_tAA9CA4E93B1A9D6B7199EE25AEB32922E72AA556 * __this, const RuntimeMethod* method) { { Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * L_0 = __this->get__match_0(); return L_0; } } // System.Boolean System.Text.RegularExpressions.GroupCollection::get_IsSynchronized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GroupCollection_get_IsSynchronized_m05B4F9773FBA0A24E9F851FC590ACF60F9DA0FAB (GroupCollection_tAA9CA4E93B1A9D6B7199EE25AEB32922E72AA556 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Int32 System.Text.RegularExpressions.GroupCollection::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GroupCollection_get_Count_mAECC6108C576E7C3F0F6B8E0F9F0D5B742467A43 (GroupCollection_tAA9CA4E93B1A9D6B7199EE25AEB32922E72AA556 * __this, const RuntimeMethod* method) { { Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * L_0 = __this->get__match_0(); NullCheck(L_0); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_1 = L_0->get__matchcount_16(); NullCheck(L_1); return ((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))); } } // System.Text.RegularExpressions.Group System.Text.RegularExpressions.GroupCollection::get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 * GroupCollection_get_Item_mC96099D0350BD4846B66097F31D6B4DDDFE1CA97 (GroupCollection_tAA9CA4E93B1A9D6B7199EE25AEB32922E72AA556 * __this, int32_t ___groupnum0, const RuntimeMethod* method) { { int32_t L_0 = ___groupnum0; Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 * L_1; L_1 = GroupCollection_GetGroup_m8824F1E25823F06F2B060E64152E8AC3B8300236(__this, L_0, /*hidden argument*/NULL); return L_1; } } // System.Text.RegularExpressions.Group System.Text.RegularExpressions.GroupCollection::GetGroup(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 * GroupCollection_GetGroup_m8824F1E25823F06F2B060E64152E8AC3B8300236 (GroupCollection_tAA9CA4E93B1A9D6B7199EE25AEB32922E72AA556 * __this, int32_t ___groupnum0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_0 = __this->get__captureMap_1(); if (!L_0) { goto IL_0030; } } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_1 = __this->get__captureMap_1(); int32_t L_2 = ___groupnum0; int32_t L_3 = L_2; RuntimeObject * L_4 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_3); NullCheck(L_1); RuntimeObject * L_5; L_5 = VirtualFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_1, L_4); V_0 = L_5; RuntimeObject * L_6 = V_0; if (L_6) { goto IL_0023; } } { IL2CPP_RUNTIME_CLASS_INIT(Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883_il2cpp_TypeInfo_var); Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 * L_7 = ((Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883_StaticFields*)il2cpp_codegen_static_fields_for(Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883_il2cpp_TypeInfo_var))->get__emptygroup_3(); return L_7; } IL_0023: { RuntimeObject * L_8 = V_0; Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 * L_9; L_9 = GroupCollection_GetGroupImpl_mA161F33BBD5BC291025BAAD97458E02422B76348(__this, ((*(int32_t*)((int32_t*)UnBox(L_8, Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_9; } IL_0030: { int32_t L_10 = ___groupnum0; Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * L_11 = __this->get__match_0(); NullCheck(L_11); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_12 = L_11->get__matchcount_16(); NullCheck(L_12); if ((((int32_t)L_10) >= ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))))) { goto IL_0044; } } { int32_t L_13 = ___groupnum0; if ((((int32_t)L_13) >= ((int32_t)0))) { goto IL_004a; } } IL_0044: { IL2CPP_RUNTIME_CLASS_INIT(Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883_il2cpp_TypeInfo_var); Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 * L_14 = ((Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883_StaticFields*)il2cpp_codegen_static_fields_for(Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883_il2cpp_TypeInfo_var))->get__emptygroup_3(); return L_14; } IL_004a: { int32_t L_15 = ___groupnum0; Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 * L_16; L_16 = GroupCollection_GetGroupImpl_mA161F33BBD5BC291025BAAD97458E02422B76348(__this, L_15, /*hidden argument*/NULL); return L_16; } } // System.Text.RegularExpressions.Group System.Text.RegularExpressions.GroupCollection::GetGroupImpl(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 * GroupCollection_GetGroupImpl_mA161F33BBD5BC291025BAAD97458E02422B76348 (GroupCollection_tAA9CA4E93B1A9D6B7199EE25AEB32922E72AA556 * __this, int32_t ___groupnum0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GroupU5BU5D_tE125DBFFA979634FDDAEDF77F5EC47134D764AB5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; String_t* V_1 = NULL; { int32_t L_0 = ___groupnum0; if (L_0) { goto IL_000a; } } { Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * L_1 = __this->get__match_0(); return L_1; } IL_000a: { GroupU5BU5D_tE125DBFFA979634FDDAEDF77F5EC47134D764AB5* L_2 = __this->get__groups_2(); if (L_2) { goto IL_008a; } } { Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * L_3 = __this->get__match_0(); NullCheck(L_3); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_4 = L_3->get__matchcount_16(); NullCheck(L_4); GroupU5BU5D_tE125DBFFA979634FDDAEDF77F5EC47134D764AB5* L_5 = (GroupU5BU5D_tE125DBFFA979634FDDAEDF77F5EC47134D764AB5*)(GroupU5BU5D_tE125DBFFA979634FDDAEDF77F5EC47134D764AB5*)SZArrayNew(GroupU5BU5D_tE125DBFFA979634FDDAEDF77F5EC47134D764AB5_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))), (int32_t)1))); __this->set__groups_2(L_5); V_0 = 0; goto IL_007f; } IL_0030: { Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * L_6 = __this->get__match_0(); NullCheck(L_6); Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * L_7 = L_6->get__regex_10(); int32_t L_8 = V_0; NullCheck(L_7); String_t* L_9; L_9 = Regex_GroupNameFromNumber_mEC9EA505C734A60A6D10397D5ABB37EED1C244B9(L_7, ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)), /*hidden argument*/NULL); V_1 = L_9; GroupU5BU5D_tE125DBFFA979634FDDAEDF77F5EC47134D764AB5* L_10 = __this->get__groups_2(); int32_t L_11 = V_0; Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * L_12 = __this->get__match_0(); NullCheck(L_12); String_t* L_13 = ((Capture_t048191E7E0D3177DCD8610E4968075AB41FB91D6 *)L_12)->get__text_0(); Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * L_14 = __this->get__match_0(); NullCheck(L_14); Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF* L_15 = L_14->get__matches_15(); int32_t L_16 = V_0; NullCheck(L_15); int32_t L_17 = ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_18 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(L_15)->GetAt(static_cast(L_17)); Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * L_19 = __this->get__match_0(); NullCheck(L_19); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_20 = L_19->get__matchcount_16(); int32_t L_21 = V_0; NullCheck(L_20); int32_t L_22 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1)); int32_t L_23 = (L_20)->GetAt(static_cast(L_22)); String_t* L_24 = V_1; Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 * L_25 = (Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 *)il2cpp_codegen_object_new(Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883_il2cpp_TypeInfo_var); Group__ctor_m5FE82FDB5B4EE244EB46909ACC099806555EB32F(L_25, L_13, L_18, L_23, L_24, /*hidden argument*/NULL); NullCheck(L_10); ArrayElementTypeCheck (L_10, L_25); (L_10)->SetAt(static_cast(L_11), (Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 *)L_25); int32_t L_26 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1)); } IL_007f: { int32_t L_27 = V_0; GroupU5BU5D_tE125DBFFA979634FDDAEDF77F5EC47134D764AB5* L_28 = __this->get__groups_2(); NullCheck(L_28); if ((((int32_t)L_27) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_28)->max_length)))))) { goto IL_0030; } } IL_008a: { GroupU5BU5D_tE125DBFFA979634FDDAEDF77F5EC47134D764AB5* L_29 = __this->get__groups_2(); int32_t L_30 = ___groupnum0; NullCheck(L_29); int32_t L_31 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_30, (int32_t)1)); Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 * L_32 = (L_29)->GetAt(static_cast(L_31)); return L_32; } } // System.Void System.Text.RegularExpressions.GroupCollection::CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GroupCollection_CopyTo_mEBB026E2CE653D4797B1F3441D3CA1AF2FE4A06E (GroupCollection_tAA9CA4E93B1A9D6B7199EE25AEB32922E72AA556 * __this, RuntimeArray * ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&GroupCollection_CopyTo_mEBB026E2CE653D4797B1F3441D3CA1AF2FE4A06E_RuntimeMethod_var))); } IL_000e: { int32_t L_2 = ___arrayIndex1; V_0 = L_2; V_1 = 0; goto IL_002a; } IL_0014: { RuntimeArray * L_3 = ___array0; int32_t L_4 = V_1; Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 * L_5; L_5 = GroupCollection_get_Item_mC96099D0350BD4846B66097F31D6B4DDDFE1CA97(__this, L_4, /*hidden argument*/NULL); int32_t L_6 = V_0; NullCheck(L_3); Array_SetValue_mD28884941182C5B7118CFBA3D55DB9CEA8797455(L_3, L_5, L_6, /*hidden argument*/NULL); int32_t L_7 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)); int32_t L_8 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)); } IL_002a: { int32_t L_9 = V_1; int32_t L_10; L_10 = GroupCollection_get_Count_mAECC6108C576E7C3F0F6B8E0F9F0D5B742467A43(__this, /*hidden argument*/NULL); if ((((int32_t)L_9) < ((int32_t)L_10))) { goto IL_0014; } } { return; } } // System.Collections.IEnumerator System.Text.RegularExpressions.GroupCollection::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* GroupCollection_GetEnumerator_m2FA24AD194C005DEE73F1D16874A479728813DA9 (GroupCollection_tAA9CA4E93B1A9D6B7199EE25AEB32922E72AA556 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GroupEnumerator_t99051268604236D2D3064D0BDF2D358B42D884CB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { GroupEnumerator_t99051268604236D2D3064D0BDF2D358B42D884CB * L_0 = (GroupEnumerator_t99051268604236D2D3064D0BDF2D358B42D884CB *)il2cpp_codegen_object_new(GroupEnumerator_t99051268604236D2D3064D0BDF2D358B42D884CB_il2cpp_TypeInfo_var); GroupEnumerator__ctor_mFE577B10768A029DBC40A368D8A48B8F1D5479B2(L_0, __this, /*hidden argument*/NULL); return L_0; } } // System.Void System.Text.RegularExpressions.GroupCollection::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GroupCollection__ctor_m0E2105EC5E4078F03D98853239AC10219BFAE78B (GroupCollection_tAA9CA4E93B1A9D6B7199EE25AEB32922E72AA556 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GroupCollection__ctor_m0E2105EC5E4078F03D98853239AC10219BFAE78B_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(GroupCollection__ctor_m0E2105EC5E4078F03D98853239AC10219BFAE78B_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Text.RegularExpressions.GroupEnumerator::.ctor(System.Text.RegularExpressions.GroupCollection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GroupEnumerator__ctor_mFE577B10768A029DBC40A368D8A48B8F1D5479B2 (GroupEnumerator_t99051268604236D2D3064D0BDF2D358B42D884CB * __this, GroupCollection_tAA9CA4E93B1A9D6B7199EE25AEB32922E72AA556 * ___rgc0, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); __this->set__curindex_1((-1)); GroupCollection_tAA9CA4E93B1A9D6B7199EE25AEB32922E72AA556 * L_0 = ___rgc0; __this->set__rgc_0(L_0); return; } } // System.Boolean System.Text.RegularExpressions.GroupEnumerator::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GroupEnumerator_MoveNext_m1A95E15B99089341CC06EC0335B4444B43074D82 (GroupEnumerator_t99051268604236D2D3064D0BDF2D358B42D884CB * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { GroupCollection_tAA9CA4E93B1A9D6B7199EE25AEB32922E72AA556 * L_0 = __this->get__rgc_0(); NullCheck(L_0); int32_t L_1; L_1 = GroupCollection_get_Count_mAECC6108C576E7C3F0F6B8E0F9F0D5B742467A43(L_0, /*hidden argument*/NULL); V_0 = L_1; int32_t L_2 = __this->get__curindex_1(); int32_t L_3 = V_0; if ((((int32_t)L_2) < ((int32_t)L_3))) { goto IL_0017; } } { return (bool)0; } IL_0017: { int32_t L_4 = __this->get__curindex_1(); __this->set__curindex_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); int32_t L_5 = __this->get__curindex_1(); int32_t L_6 = V_0; return (bool)((((int32_t)L_5) < ((int32_t)L_6))? 1 : 0); } } // System.Object System.Text.RegularExpressions.GroupEnumerator::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * GroupEnumerator_get_Current_m3DBEB28D71BCD80F013B392B8FB3FEC88A372206 (GroupEnumerator_t99051268604236D2D3064D0BDF2D358B42D884CB * __this, const RuntimeMethod* method) { { Capture_t048191E7E0D3177DCD8610E4968075AB41FB91D6 * L_0; L_0 = GroupEnumerator_get_Capture_mA37A878E91115550F8F08147CE2CB6A30EBF602D(__this, /*hidden argument*/NULL); return L_0; } } // System.Text.RegularExpressions.Capture System.Text.RegularExpressions.GroupEnumerator::get_Capture() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Capture_t048191E7E0D3177DCD8610E4968075AB41FB91D6 * GroupEnumerator_get_Capture_mA37A878E91115550F8F08147CE2CB6A30EBF602D (GroupEnumerator_t99051268604236D2D3064D0BDF2D358B42D884CB * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__curindex_1(); if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_001c; } } { int32_t L_1 = __this->get__curindex_1(); GroupCollection_tAA9CA4E93B1A9D6B7199EE25AEB32922E72AA556 * L_2 = __this->get__rgc_0(); NullCheck(L_2); int32_t L_3; L_3 = GroupCollection_get_Count_mAECC6108C576E7C3F0F6B8E0F9F0D5B742467A43(L_2, /*hidden argument*/NULL); if ((((int32_t)L_1) < ((int32_t)L_3))) { goto IL_002c; } } IL_001c: { String_t* L_4; L_4 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_5 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_5, L_4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&GroupEnumerator_get_Capture_mA37A878E91115550F8F08147CE2CB6A30EBF602D_RuntimeMethod_var))); } IL_002c: { GroupCollection_tAA9CA4E93B1A9D6B7199EE25AEB32922E72AA556 * L_6 = __this->get__rgc_0(); int32_t L_7 = __this->get__curindex_1(); NullCheck(L_6); Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 * L_8; L_8 = GroupCollection_get_Item_mC96099D0350BD4846B66097F31D6B4DDDFE1CA97(L_6, L_7, /*hidden argument*/NULL); return L_8; } } // System.Void System.Text.RegularExpressions.GroupEnumerator::Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GroupEnumerator_Reset_mCC8BAEE9E46DB67F36E1F4A49A38E87A8FEE8C22 (GroupEnumerator_t99051268604236D2D3064D0BDF2D358B42D884CB * __this, const RuntimeMethod* method) { { __this->set__curindex_1((-1)); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean System.ComponentModel.GuidConverter::CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GuidConverter_CanConvertFrom_m1A8432C4C46791D67B860934E395ADF902CF158E (GuidConverter_t27D023D55EE237735492E3831AEDE23FD65ACBEB * __this, RuntimeObject* ___context0, Type_t * ___sourceType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { 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); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___sourceType1; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_1 = { reinterpret_cast (String_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_2; L_2 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_1, /*hidden argument*/NULL); bool L_3; L_3 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046(L_0, L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0014; } } { return (bool)1; } IL_0014: { RuntimeObject* L_4 = ___context0; Type_t * L_5 = ___sourceType1; bool L_6; L_6 = TypeConverter_CanConvertFrom_m0EDDA8ACFFED3FE88C89F97EC764D625A1CD120D(__this, L_4, L_5, /*hidden argument*/NULL); return L_6; } } // System.Boolean System.ComponentModel.GuidConverter::CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GuidConverter_CanConvertTo_m2BB56B8AD48E75524EAC7326ECA2F7BBB23CF6EC (GuidConverter_t27D023D55EE237735492E3831AEDE23FD65ACBEB * __this, RuntimeObject* ___context0, Type_t * ___destinationType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InstanceDescriptor_tC4566EF05EA27C1ADEF2ACC405AA2ADEB7A31C81_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___destinationType1; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_1 = { reinterpret_cast (InstanceDescriptor_tC4566EF05EA27C1ADEF2ACC405AA2ADEB7A31C81_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_2; L_2 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_1, /*hidden argument*/NULL); bool L_3; L_3 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046(L_0, L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0014; } } { return (bool)1; } IL_0014: { RuntimeObject* L_4 = ___context0; Type_t * L_5 = ___destinationType1; bool L_6; L_6 = TypeConverter_CanConvertTo_m86E815C6F6AEA1999AF2114ADF977F6E8B8FAF28(__this, L_4, L_5, /*hidden argument*/NULL); return L_6; } } // System.Object System.ComponentModel.GuidConverter::ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * GuidConverter_ConvertFrom_m93052534B202309B4400E9EF17316FE0334A295E (GuidConverter_t27D023D55EE237735492E3831AEDE23FD65ACBEB * __this, RuntimeObject* ___context0, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___culture1, RuntimeObject * ___value2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Guid_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value2; if (!((String_t*)IsInstSealed((RuntimeObject*)L_0, String_t_il2cpp_TypeInfo_var))) { goto IL_001e; } } { RuntimeObject * L_1 = ___value2; NullCheck(((String_t*)CastclassSealed((RuntimeObject*)L_1, String_t_il2cpp_TypeInfo_var))); String_t* L_2; L_2 = String_Trim_m3FEC641D7046124B7F381701903B50B5171DE0A2(((String_t*)CastclassSealed((RuntimeObject*)L_1, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); Guid_t L_3; memset((&L_3), 0, sizeof(L_3)); Guid__ctor_mF80313305B9CD2AD39B621E1CEC5C7DFDFFBDE66((&L_3), L_2, /*hidden argument*/NULL); Guid_t L_4 = L_3; RuntimeObject * L_5 = Box(Guid_t_il2cpp_TypeInfo_var, &L_4); return L_5; } IL_001e: { RuntimeObject* L_6 = ___context0; CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_7 = ___culture1; RuntimeObject * L_8 = ___value2; RuntimeObject * L_9; L_9 = TypeConverter_ConvertFrom_m8FA823F1E9BE68C98E7E062A8BFFA600DA06C153(__this, L_6, L_7, L_8, /*hidden argument*/NULL); return L_9; } } // System.Object System.ComponentModel.GuidConverter::ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * GuidConverter_ConvertTo_m3A8F4CFBFB5192B9A30117E004D2A2AC699D9348 (GuidConverter_t27D023D55EE237735492E3831AEDE23FD65ACBEB * __this, RuntimeObject* ___context0, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___culture1, RuntimeObject * ___value2, Type_t * ___destinationType3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Guid_t_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Guid_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InstanceDescriptor_tC4566EF05EA27C1ADEF2ACC405AA2ADEB7A31C81_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InstanceDescriptor_tC4566EF05EA27C1ADEF2ACC405AA2ADEB7A31C81_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * V_0 = NULL; { Type_t * L_0 = ___destinationType3; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1; L_1 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0015; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF54F5AD89BFF7ACC574BFC039F72C349137EC667)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&GuidConverter_ConvertTo_m3A8F4CFBFB5192B9A30117E004D2A2AC699D9348_RuntimeMethod_var))); } IL_0015: { Type_t * L_3 = ___destinationType3; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_4 = { reinterpret_cast (InstanceDescriptor_tC4566EF05EA27C1ADEF2ACC405AA2ADEB7A31C81_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_5; L_5 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_4, /*hidden argument*/NULL); bool L_6; L_6 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046(L_3, L_5, /*hidden argument*/NULL); if (!L_6) { goto IL_0072; } } { RuntimeObject * L_7 = ___value2; if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_7, Guid_t_il2cpp_TypeInfo_var))) { goto IL_0072; } } { RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_8 = { reinterpret_cast (Guid_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_9; L_9 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_8, /*hidden argument*/NULL); TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_10 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)SZArrayNew(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755_il2cpp_TypeInfo_var, (uint32_t)1); TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_11 = L_10; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_12 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t * L_13; L_13 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_12, /*hidden argument*/NULL); NullCheck(L_11); ArrayElementTypeCheck (L_11, L_13); (L_11)->SetAt(static_cast(0), (Type_t *)L_13); NullCheck(L_9); ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * L_14; L_14 = Type_GetConstructor_m98D609FCFA8EB6E54A9FF705D77EEE16603B278C(L_9, L_11, /*hidden argument*/NULL); V_0 = L_14; ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * L_15 = V_0; IL2CPP_RUNTIME_CLASS_INIT(ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B_il2cpp_TypeInfo_var); bool L_16; L_16 = ConstructorInfo_op_Inequality_m14EF5800ABCDCE484FEC9C73ED6D84E8343442CC(L_15, (ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B *)NULL, /*hidden argument*/NULL); if (!L_16) { goto IL_0072; } } { ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * L_17 = V_0; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_18 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_19 = L_18; RuntimeObject * L_20 = ___value2; NullCheck(L_20); String_t* L_21; L_21 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_20); NullCheck(L_19); ArrayElementTypeCheck (L_19, L_21); (L_19)->SetAt(static_cast(0), (RuntimeObject *)L_21); InstanceDescriptor_tC4566EF05EA27C1ADEF2ACC405AA2ADEB7A31C81 * L_22 = (InstanceDescriptor_tC4566EF05EA27C1ADEF2ACC405AA2ADEB7A31C81 *)il2cpp_codegen_object_new(InstanceDescriptor_tC4566EF05EA27C1ADEF2ACC405AA2ADEB7A31C81_il2cpp_TypeInfo_var); InstanceDescriptor__ctor_m85C5E50209E04E10F4A808758DD4B7DF5A9ECDC4(L_22, L_17, (RuntimeObject*)(RuntimeObject*)L_19, /*hidden argument*/NULL); return L_22; } IL_0072: { RuntimeObject* L_23 = ___context0; CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_24 = ___culture1; RuntimeObject * L_25 = ___value2; Type_t * L_26 = ___destinationType3; RuntimeObject * L_27; L_27 = TypeConverter_ConvertTo_m217CDCD7FC43CECBF0F077DF139FDE0B4D263D47(__this, L_23, L_24, L_25, L_26, /*hidden argument*/NULL); return L_27; } } // System.Void System.ComponentModel.GuidConverter::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GuidConverter__ctor_m1BA8AF81DABE7B8D1A8C897AD94B208B99429E10 (GuidConverter_t27D023D55EE237735492E3831AEDE23FD65ACBEB * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeConverter_t004F185B630F00F509F08BD8F8D82471867323B4_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(TypeConverter_t004F185B630F00F509F08BD8F8D82471867323B4_il2cpp_TypeInfo_var); TypeConverter__ctor_mCD87E569A2C4CB1331A069396FFA98E65726A16C(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ComponentModel.HandledEventArgs::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HandledEventArgs__ctor_mAF75D3305A11EEB7A91CBF2C094E518BFEE87F0F (HandledEventArgs_t233C36247A00D894E2DCCAAC168378ED73300150 * __this, const RuntimeMethod* method) { { HandledEventArgs__ctor_m7EFDE472B7D4AD28CB084F460DE2301456135C01(__this, (bool)0, /*hidden argument*/NULL); return; } } // System.Void System.ComponentModel.HandledEventArgs::.ctor(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HandledEventArgs__ctor_m7EFDE472B7D4AD28CB084F460DE2301456135C01 (HandledEventArgs_t233C36247A00D894E2DCCAAC168378ED73300150 * __this, bool ___defaultHandledValue0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA_il2cpp_TypeInfo_var); EventArgs__ctor_m5ECB9A8ED0A9E2DBB1ED999BAC1CB44F4354E571(__this, /*hidden argument*/NULL); bool L_0 = ___defaultHandledValue0; __this->set_handled_1(L_0); return; } } // System.Boolean System.ComponentModel.HandledEventArgs::get_Handled() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HandledEventArgs_get_Handled_mF2ABFAE0707F77DF56806958329F6421712F96D3 (HandledEventArgs_t233C36247A00D894E2DCCAAC168378ED73300150 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_handled_1(); return L_0; } } // System.Void System.ComponentModel.HandledEventArgs::set_Handled(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HandledEventArgs_set_Handled_m0F67F12B5D72F3189D8105138FB95CC496609EA6 (HandledEventArgs_t233C36247A00D894E2DCCAAC168378ED73300150 * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set_handled_1(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.ComponentModel.HandledEventHandler::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HandledEventHandler__ctor_mF19805BCBF48B4C569B15AB2EC3466A2D2971437 (HandledEventHandler_t28A2B5D1C438B57403577D52457CA29231591468 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Void System.ComponentModel.HandledEventHandler::Invoke(System.Object,System.ComponentModel.HandledEventArgs) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HandledEventHandler_Invoke_m33576308BDB66D06C862CF0EB07993DD20FF96EC (HandledEventHandler_t28A2B5D1C438B57403577D52457CA29231591468 * __this, RuntimeObject * ___sender0, HandledEventArgs_t233C36247A00D894E2DCCAAC168378ED73300150 * ___e1, const RuntimeMethod* method) { DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!currentDelegate->get_method_is_virtual_10()) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 2) { // open typedef void (*FunctionPointerType) (RuntimeObject *, HandledEventArgs_t233C36247A00D894E2DCCAAC168378ED73300150 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod); } else { // closed typedef void (*FunctionPointerType) (void*, RuntimeObject *, HandledEventArgs_t233C36247A00D894E2DCCAAC168378ED73300150 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___e1, targetMethod); } } else if (___parameterCount != 2) { // open if (currentDelegate->get_method_is_virtual_10()) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker1< HandledEventArgs_t233C36247A00D894E2DCCAAC168378ED73300150 * >::Invoke(targetMethod, ___sender0, ___e1); else GenericVirtualActionInvoker1< HandledEventArgs_t233C36247A00D894E2DCCAAC168378ED73300150 * >::Invoke(targetMethod, ___sender0, ___e1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker1< HandledEventArgs_t233C36247A00D894E2DCCAAC168378ED73300150 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___sender0, ___e1); else VirtualActionInvoker1< HandledEventArgs_t233C36247A00D894E2DCCAAC168378ED73300150 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___sender0, ___e1); } } else { typedef void (*FunctionPointerType) (RuntimeObject *, HandledEventArgs_t233C36247A00D894E2DCCAAC168378ED73300150 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod); } } else { // closed if (targetThis == NULL) { typedef void (*FunctionPointerType) (RuntimeObject *, HandledEventArgs_t233C36247A00D894E2DCCAAC168378ED73300150 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod); } else { typedef void (*FunctionPointerType) (void*, RuntimeObject *, HandledEventArgs_t233C36247A00D894E2DCCAAC168378ED73300150 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___e1, targetMethod); } } } } // System.IAsyncResult System.ComponentModel.HandledEventHandler::BeginInvoke(System.Object,System.ComponentModel.HandledEventArgs,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* HandledEventHandler_BeginInvoke_m1412F096FD40CECF9402CF5B090F4C44C4B6F939 (HandledEventHandler_t28A2B5D1C438B57403577D52457CA29231591468 * __this, RuntimeObject * ___sender0, HandledEventArgs_t233C36247A00D894E2DCCAAC168378ED73300150 * ___e1, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method) { void *__d_args[3] = {0}; __d_args[0] = ___sender0; __d_args[1] = ___e1; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);; } // System.Void System.ComponentModel.HandledEventHandler::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HandledEventHandler_EndInvoke_m67E4331789EEBB185C342A913B64638872BBD648 (HandledEventHandler_t28A2B5D1C438B57403577D52457CA29231591468 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Net.HeaderInfo::.ctor(System.String,System.Boolean,System.Boolean,System.Boolean,System.Net.HeaderParser) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393 (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * __this, String_t* ___name0, bool ___requestRestricted1, bool ___responseRestricted2, bool ___multi3, HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * ___p4, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); String_t* L_0 = ___name0; __this->set_HeaderName_3(L_0); bool L_1 = ___requestRestricted1; __this->set_IsRequestRestricted_0(L_1); bool L_2 = ___responseRestricted2; __this->set_IsResponseRestricted_1(L_2); HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_3 = ___p4; __this->set_Parser_2(L_3); bool L_4 = ___multi3; __this->set_AllowMultiValues_4(L_4); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.String[] System.Net.HeaderInfoTable::ParseSingleValue(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* HeaderInfoTable_ParseSingleValue_m66383EA99A42C133C63A6568D5BAB52D7A3043DF (String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_0 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_1 = L_0; String_t* L_2 = ___value0; NullCheck(L_1); ArrayElementTypeCheck (L_1, L_2); (L_1)->SetAt(static_cast(0), (String_t*)L_2); return L_1; } } // System.String[] System.Net.HeaderInfoTable::ParseMultiValue(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* HeaderInfoTable_ParseMultiValue_mE007CE0399B5999CFA8C530CA8AB5B9C17C6564C (String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringCollection_tA998B5DFD2921A16BBD33D32B8F6CCFFCEB6537E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } StringCollection_tA998B5DFD2921A16BBD33D32B8F6CCFFCEB6537E * V_0 = NULL; bool V_1 = false; int32_t V_2 = 0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* V_3 = NULL; String_t* V_4 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* V_5 = NULL; int32_t V_6 = 0; { StringCollection_tA998B5DFD2921A16BBD33D32B8F6CCFFCEB6537E * L_0 = (StringCollection_tA998B5DFD2921A16BBD33D32B8F6CCFFCEB6537E *)il2cpp_codegen_object_new(StringCollection_tA998B5DFD2921A16BBD33D32B8F6CCFFCEB6537E_il2cpp_TypeInfo_var); StringCollection__ctor_m9E4F5359AEFDC2281D4E651A948F6EAE1B812488(L_0, /*hidden argument*/NULL); V_0 = L_0; V_1 = (bool)0; V_2 = 0; String_t* L_1 = ___value0; NullCheck(L_1); int32_t L_2; L_2 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_1, /*hidden argument*/NULL); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_3 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)SZArrayNew(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var, (uint32_t)L_2); V_3 = L_3; V_6 = 0; goto IL_006e; } IL_001b: { String_t* L_4 = ___value0; int32_t L_5 = V_6; NullCheck(L_4); Il2CppChar L_6; L_6 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_4, L_5, /*hidden argument*/NULL); if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)34))))) { goto IL_002e; } } { bool L_7 = V_1; V_1 = (bool)((((int32_t)L_7) == ((int32_t)0))? 1 : 0); goto IL_0059; } IL_002e: { String_t* L_8 = ___value0; int32_t L_9 = V_6; NullCheck(L_8); Il2CppChar L_10; L_10 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_8, L_9, /*hidden argument*/NULL); if ((!(((uint32_t)L_10) == ((uint32_t)((int32_t)44))))) { goto IL_0059; } } { bool L_11 = V_1; if (L_11) { goto IL_0059; } } { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_12 = V_3; int32_t L_13 = V_2; String_t* L_14; L_14 = String_CreateString_m16F181739FD8BA877868803DE2CE0EF0A4668D0E(NULL, L_12, 0, L_13, /*hidden argument*/NULL); V_4 = L_14; StringCollection_tA998B5DFD2921A16BBD33D32B8F6CCFFCEB6537E * L_15 = V_0; String_t* L_16 = V_4; NullCheck(L_16); String_t* L_17; L_17 = String_Trim_m3FEC641D7046124B7F381701903B50B5171DE0A2(L_16, /*hidden argument*/NULL); NullCheck(L_15); int32_t L_18; L_18 = StringCollection_Add_m74C07154AC7259B8219DF6A79B76EF5B7E12A6EE(L_15, L_17, /*hidden argument*/NULL); V_2 = 0; goto IL_0068; } IL_0059: { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_19 = V_3; int32_t L_20 = V_2; int32_t L_21 = L_20; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1)); String_t* L_22 = ___value0; int32_t L_23 = V_6; NullCheck(L_22); Il2CppChar L_24; L_24 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_22, L_23, /*hidden argument*/NULL); NullCheck(L_19); (L_19)->SetAt(static_cast(L_21), (Il2CppChar)L_24); } IL_0068: { int32_t L_25 = V_6; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1)); } IL_006e: { int32_t L_26 = V_6; String_t* L_27 = ___value0; NullCheck(L_27); int32_t L_28; L_28 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_27, /*hidden argument*/NULL); if ((((int32_t)L_26) < ((int32_t)L_28))) { goto IL_001b; } } { int32_t L_29 = V_2; if (!L_29) { goto IL_0093; } } { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_30 = V_3; int32_t L_31 = V_2; String_t* L_32; L_32 = String_CreateString_m16F181739FD8BA877868803DE2CE0EF0A4668D0E(NULL, L_30, 0, L_31, /*hidden argument*/NULL); V_4 = L_32; StringCollection_tA998B5DFD2921A16BBD33D32B8F6CCFFCEB6537E * L_33 = V_0; String_t* L_34 = V_4; NullCheck(L_34); String_t* L_35; L_35 = String_Trim_m3FEC641D7046124B7F381701903B50B5171DE0A2(L_34, /*hidden argument*/NULL); NullCheck(L_33); int32_t L_36; L_36 = StringCollection_Add_m74C07154AC7259B8219DF6A79B76EF5B7E12A6EE(L_33, L_35, /*hidden argument*/NULL); } IL_0093: { StringCollection_tA998B5DFD2921A16BBD33D32B8F6CCFFCEB6537E * L_37 = V_0; NullCheck(L_37); int32_t L_38; L_38 = StringCollection_get_Count_mC75C516535FA84F1F00EA0B8080DA833F2668B6E(L_37, /*hidden argument*/NULL); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_39 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)L_38); V_5 = L_39; StringCollection_tA998B5DFD2921A16BBD33D32B8F6CCFFCEB6537E * L_40 = V_0; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_41 = V_5; NullCheck(L_40); StringCollection_CopyTo_m4AEACC92E456EE1A0CA6AE045E1CF3739216A5E4(L_40, L_41, 0, /*hidden argument*/NULL); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_42 = V_5; return L_42; } } // System.Void System.Net.HeaderInfoTable::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HeaderInfoTable__cctor_m69E892F08E1F5EE2FE205017FC6D0C72B5384F82 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CaseInsensitiveAscii_tE8AAF0B896B91D60F4A8569A7DB4C668204E16EA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HeaderInfoTable_ParseMultiValue_mE007CE0399B5999CFA8C530CA8AB5B9C17C6564C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HeaderInfoTable_ParseSingleValue_m66383EA99A42C133C63A6568D5BAB52D7A3043DF_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral015C9226A90A65B547DB1B59894F3908A8F2CC06); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0242F31341D314854DB5EA5749448625B0A0AAE3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0BB9AAEC2AAAB32BFE978A4C45400CAF08F6749C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0D0D0C17BC59054E43F2DF1F9E9184032FBFBF01); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0DD32B18A388C5F1A6BAFD3629759260C61F767C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0E5584AFF0328C3E9B727CFB3887E9E710B0F53D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1488F649920198F59A3B53EA7C81503935DEF05E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral16D46E00A879AD1C9053ED90B4B148D721A45E92); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1C0680A8F698A8F35416CE75A2356C661641B7D9); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1F1F0198EC371523C2BEEAB18E73243B7B5F5D0D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral24F45929493475FECA90729BA5EAF2D06F8722A4); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3015B2A3D39F343DF5439AC8F9FFEFD31A155603); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral39CB21871F9F9FE5AE18BA5E81ED4EC6DADB8E03); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3D98372962A0D30238C43F12D007AFE39E995B24); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3E2494FB2D245D91FF110697DD6EA93C8AD044C7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3EBDBD8FCA12AE01917E5179BB979BD9077F8144); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral47E7DF78FEB33C4D463D475ACA6A5FCA4DE8ACF8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral48C75149E263D08DBE3F3CB86DF011FA96C010AF); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4BD4A20D743286D24CF77C38E693ECBCE8CD3A7E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4DD4C5922A070C5C0CE53FC4868A2D61BF64A7C3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral56B55F1AE7D34548BDC41081085DD3561CB80578); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral57BD43C20A057CCCB23650CB346EACEE7B31AE72); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5B58EBE31E594BF8FA4BEA3CD075473149322B18); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5C5EE883BE58477D29789770C77CED0740EA2109); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5C648DB5BA0DE7A010730BEEDB7FEADB7EB4A556); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral61896E01350C3D7139AB7C79A29A3A8ED072B0C0); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral67A54AB78AD61DDEB268617E3EE621D1193804DC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral68ACB6B47D3431BDBD286C3153B250E20552A4AD); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral69246FD8ECCD71895CF44BE2EB6A80E686C5A018); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6996DC0CC92C7C284749109C7F02D201312B6A5C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral783C5B36660265F9D49078CA35348CD0ABDD49DF); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7C5B2C0D17D684D4380087821D68BB021A77AA5D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral837AB1353B48531677906AF6731DF5EF5ACDA3F1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral86E7C0314F9CA521BDA0F361B0D90037E62E63C2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8D28F1F930CE88A866A5AFD45B7587A776D2A2E5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral935884DFDF8F8A8A6D67558F0B4C92779D175C75); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9D5A3AE3D2B0B5E5AF5AB489000D9B88FA11E907); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralABDF52D360297C3F8D7E4851B2C8262AF0F3CE00); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAFECF3A5E478A812AD9761D0C14980023E407962); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBB1692DA8ED7544A3193330A7D73D82D06F61206); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBBC4BD37A426D68F16FC03A3F4AAC387168995BC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC6370F4D10E7342974C38CE91A5C8121AA774FD8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCC5A4102A5DDF34A7044AFF9259491C106ED8FB6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCC624D1FAF7A8A629CE51F4FE3FFB1FBA27EDF86); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD287833BBB7D5D15C278205064EAFF8ECF8A16AA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD83A084C77919D323023FA38BD9EC97511C0C3F1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE31FBB002AD5481E70CB59BB178B49C5B9330F0E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE8258FE4B53775D781FF54E8010D50E54F753759); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF0ACB78DD0CBEFD7DD81D25C5219DDB4067ECBD2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF4C926E25326963C2B7FEF2E308523C33CF6D9F0); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFAE55AFF6F18607FEDBE2F4C0C6BA4D4F219D504); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFF1B24927A3EECD0984D30EA640A9B0CBAA6729C); s_Il2CppMethodInitialized = true; } HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* V_0 = NULL; int32_t V_1 = 0; { String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_1 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_SingleParser_2(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_2 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_2, L_0, (bool)0, (bool)0, (bool)0, L_1, /*hidden argument*/NULL); ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->set_UnknownHeaderInfo_1(L_2); HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_3 = (HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD *)il2cpp_codegen_object_new(HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD_il2cpp_TypeInfo_var); HeaderParser__ctor_m472893312CE6499CF0B133E43208D60D8F045642(L_3, NULL, (intptr_t)((intptr_t)HeaderInfoTable_ParseSingleValue_m66383EA99A42C133C63A6568D5BAB52D7A3043DF_RuntimeMethod_var), /*hidden argument*/NULL); ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->set_SingleParser_2(L_3); HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_4 = (HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD *)il2cpp_codegen_object_new(HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD_il2cpp_TypeInfo_var); HeaderParser__ctor_m472893312CE6499CF0B133E43208D60D8F045642(L_4, NULL, (intptr_t)((intptr_t)HeaderInfoTable_ParseMultiValue_mE007CE0399B5999CFA8C530CA8AB5B9C17C6564C_RuntimeMethod_var), /*hidden argument*/NULL); ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->set_MultiParser_3(L_4); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_5 = (HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653*)(HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653*)SZArrayNew(HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653_il2cpp_TypeInfo_var, (uint32_t)((int32_t)52)); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_6 = L_5; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_7 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_SingleParser_2(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_8 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_8, _stringLiteral6996DC0CC92C7C284749109C7F02D201312B6A5C, (bool)0, (bool)0, (bool)0, L_7, /*hidden argument*/NULL); NullCheck(L_6); ArrayElementTypeCheck (L_6, L_8); (L_6)->SetAt(static_cast(0), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_8); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_9 = L_6; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_10 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_MultiParser_3(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_11 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_11, _stringLiteral47E7DF78FEB33C4D463D475ACA6A5FCA4DE8ACF8, (bool)0, (bool)0, (bool)1, L_10, /*hidden argument*/NULL); NullCheck(L_9); ArrayElementTypeCheck (L_9, L_11); (L_9)->SetAt(static_cast(1), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_11); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_12 = L_9; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_13 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_MultiParser_3(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_14 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_14, _stringLiteral16D46E00A879AD1C9053ED90B4B148D721A45E92, (bool)1, (bool)0, (bool)1, L_13, /*hidden argument*/NULL); NullCheck(L_12); ArrayElementTypeCheck (L_12, L_14); (L_12)->SetAt(static_cast(2), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_14); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_15 = L_12; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_16 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_MultiParser_3(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_17 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_17, _stringLiteral9D5A3AE3D2B0B5E5AF5AB489000D9B88FA11E907, (bool)0, (bool)0, (bool)1, L_16, /*hidden argument*/NULL); NullCheck(L_15); ArrayElementTypeCheck (L_15, L_17); (L_15)->SetAt(static_cast(3), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_17); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_18 = L_15; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_19 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_MultiParser_3(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_20 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_20, _stringLiteralABDF52D360297C3F8D7E4851B2C8262AF0F3CE00, (bool)0, (bool)0, (bool)1, L_19, /*hidden argument*/NULL); NullCheck(L_18); ArrayElementTypeCheck (L_18, L_20); (L_18)->SetAt(static_cast(4), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_20); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_21 = L_18; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_22 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_MultiParser_3(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_23 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_23, _stringLiteral1F1F0198EC371523C2BEEAB18E73243B7B5F5D0D, (bool)0, (bool)0, (bool)1, L_22, /*hidden argument*/NULL); NullCheck(L_21); ArrayElementTypeCheck (L_21, L_23); (L_21)->SetAt(static_cast(5), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_23); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_24 = L_21; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_25 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_MultiParser_3(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_26 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_26, _stringLiteral0E5584AFF0328C3E9B727CFB3887E9E710B0F53D, (bool)0, (bool)0, (bool)1, L_25, /*hidden argument*/NULL); NullCheck(L_24); ArrayElementTypeCheck (L_24, L_26); (L_24)->SetAt(static_cast(6), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_26); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_27 = L_24; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_28 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_MultiParser_3(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_29 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_29, _stringLiteral015C9226A90A65B547DB1B59894F3908A8F2CC06, (bool)0, (bool)0, (bool)1, L_28, /*hidden argument*/NULL); NullCheck(L_27); ArrayElementTypeCheck (L_27, L_29); (L_27)->SetAt(static_cast(7), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_29); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_30 = L_27; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_31 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_MultiParser_3(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_32 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_32, _stringLiteral67A54AB78AD61DDEB268617E3EE621D1193804DC, (bool)0, (bool)0, (bool)1, L_31, /*hidden argument*/NULL); NullCheck(L_30); ArrayElementTypeCheck (L_30, L_32); (L_30)->SetAt(static_cast(8), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_32); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_33 = L_30; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_34 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_MultiParser_3(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_35 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_35, _stringLiteralBBC4BD37A426D68F16FC03A3F4AAC387168995BC, (bool)1, (bool)0, (bool)1, L_34, /*hidden argument*/NULL); NullCheck(L_33); ArrayElementTypeCheck (L_33, L_35); (L_33)->SetAt(static_cast(((int32_t)9)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_35); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_36 = L_33; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_37 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_SingleParser_2(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_38 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_38, _stringLiteral4DD4C5922A070C5C0CE53FC4868A2D61BF64A7C3, (bool)0, (bool)0, (bool)0, L_37, /*hidden argument*/NULL); NullCheck(L_36); ArrayElementTypeCheck (L_36, L_38); (L_36)->SetAt(static_cast(((int32_t)10)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_38); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_39 = L_36; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_40 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_SingleParser_2(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_41 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_41, _stringLiteral5B58EBE31E594BF8FA4BEA3CD075473149322B18, (bool)1, (bool)0, (bool)0, L_40, /*hidden argument*/NULL); NullCheck(L_39); ArrayElementTypeCheck (L_39, L_41); (L_39)->SetAt(static_cast(((int32_t)11)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_41); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_42 = L_39; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_43 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_MultiParser_3(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_44 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_44, _stringLiteral69246FD8ECCD71895CF44BE2EB6A80E686C5A018, (bool)0, (bool)0, (bool)1, L_43, /*hidden argument*/NULL); NullCheck(L_42); ArrayElementTypeCheck (L_42, L_44); (L_42)->SetAt(static_cast(((int32_t)12)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_44); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_45 = L_42; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_46 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_SingleParser_2(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_47 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_47, _stringLiteralFF1B24927A3EECD0984D30EA640A9B0CBAA6729C, (bool)0, (bool)0, (bool)0, L_46, /*hidden argument*/NULL); NullCheck(L_45); ArrayElementTypeCheck (L_45, L_47); (L_45)->SetAt(static_cast(((int32_t)13)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_47); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_48 = L_45; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_49 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_SingleParser_2(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_50 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_50, _stringLiteral86E7C0314F9CA521BDA0F361B0D90037E62E63C2, (bool)1, (bool)1, (bool)0, L_49, /*hidden argument*/NULL); NullCheck(L_48); ArrayElementTypeCheck (L_48, L_50); (L_48)->SetAt(static_cast(((int32_t)14)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_50); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_51 = L_48; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_52 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_MultiParser_3(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_53 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_53, _stringLiteral3EBDBD8FCA12AE01917E5179BB979BD9077F8144, (bool)0, (bool)0, (bool)1, L_52, /*hidden argument*/NULL); NullCheck(L_51); ArrayElementTypeCheck (L_51, L_53); (L_51)->SetAt(static_cast(((int32_t)15)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_53); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_54 = L_51; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_55 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_MultiParser_3(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_56 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_56, _stringLiteralCC5A4102A5DDF34A7044AFF9259491C106ED8FB6, (bool)0, (bool)0, (bool)1, L_55, /*hidden argument*/NULL); NullCheck(L_54); ArrayElementTypeCheck (L_54, L_56); (L_54)->SetAt(static_cast(((int32_t)16)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_56); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_57 = L_54; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_58 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_SingleParser_2(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_59 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_59, _stringLiteral935884DFDF8F8A8A6D67558F0B4C92779D175C75, (bool)0, (bool)0, (bool)0, L_58, /*hidden argument*/NULL); NullCheck(L_57); ArrayElementTypeCheck (L_57, L_59); (L_57)->SetAt(static_cast(((int32_t)17)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_59); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_60 = L_57; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_61 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_SingleParser_2(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_62 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_62, _stringLiteral39CB21871F9F9FE5AE18BA5E81ED4EC6DADB8E03, (bool)1, (bool)0, (bool)0, L_61, /*hidden argument*/NULL); NullCheck(L_60); ArrayElementTypeCheck (L_60, L_62); (L_60)->SetAt(static_cast(((int32_t)18)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_62); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_63 = L_60; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_64 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_SingleParser_2(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_65 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_65, _stringLiteral3015B2A3D39F343DF5439AC8F9FFEFD31A155603, (bool)0, (bool)0, (bool)0, L_64, /*hidden argument*/NULL); NullCheck(L_63); ArrayElementTypeCheck (L_63, L_65); (L_63)->SetAt(static_cast(((int32_t)19)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_65); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_66 = L_63; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_67 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_MultiParser_3(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_68 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_68, _stringLiteralD83A084C77919D323023FA38BD9EC97511C0C3F1, (bool)1, (bool)0, (bool)1, L_67, /*hidden argument*/NULL); NullCheck(L_66); ArrayElementTypeCheck (L_66, L_68); (L_66)->SetAt(static_cast(((int32_t)20)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_68); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_69 = L_66; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_70 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_SingleParser_2(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_71 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_71, _stringLiteral7C5B2C0D17D684D4380087821D68BB021A77AA5D, (bool)0, (bool)0, (bool)0, L_70, /*hidden argument*/NULL); NullCheck(L_69); ArrayElementTypeCheck (L_69, L_71); (L_69)->SetAt(static_cast(((int32_t)21)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_71); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_72 = L_69; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_73 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_SingleParser_2(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_74 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_74, _stringLiteral783C5B36660265F9D49078CA35348CD0ABDD49DF, (bool)0, (bool)0, (bool)0, L_73, /*hidden argument*/NULL); NullCheck(L_72); ArrayElementTypeCheck (L_72, L_74); (L_72)->SetAt(static_cast(((int32_t)22)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_74); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_75 = L_72; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_76 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_SingleParser_2(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_77 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_77, _stringLiteral0242F31341D314854DB5EA5749448625B0A0AAE3, (bool)1, (bool)0, (bool)0, L_76, /*hidden argument*/NULL); NullCheck(L_75); ArrayElementTypeCheck (L_75, L_77); (L_75)->SetAt(static_cast(((int32_t)23)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_77); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_78 = L_75; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_79 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_MultiParser_3(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_80 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_80, _stringLiteral61896E01350C3D7139AB7C79A29A3A8ED072B0C0, (bool)0, (bool)0, (bool)1, L_79, /*hidden argument*/NULL); NullCheck(L_78); ArrayElementTypeCheck (L_78, L_80); (L_78)->SetAt(static_cast(((int32_t)24)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_80); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_81 = L_78; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_82 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_SingleParser_2(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_83 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_83, _stringLiteral5C648DB5BA0DE7A010730BEEDB7FEADB7EB4A556, (bool)0, (bool)0, (bool)0, L_82, /*hidden argument*/NULL); NullCheck(L_81); ArrayElementTypeCheck (L_81, L_83); (L_81)->SetAt(static_cast(((int32_t)25)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_83); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_84 = L_81; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_85 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_MultiParser_3(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_86 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_86, _stringLiteralE31FBB002AD5481E70CB59BB178B49C5B9330F0E, (bool)0, (bool)0, (bool)1, L_85, /*hidden argument*/NULL); NullCheck(L_84); ArrayElementTypeCheck (L_84, L_86); (L_84)->SetAt(static_cast(((int32_t)26)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_86); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_87 = L_84; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_88 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_SingleParser_2(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_89 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_89, _stringLiteralAFECF3A5E478A812AD9761D0C14980023E407962, (bool)1, (bool)0, (bool)0, L_88, /*hidden argument*/NULL); NullCheck(L_87); ArrayElementTypeCheck (L_87, L_89); (L_87)->SetAt(static_cast(((int32_t)27)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_89); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_90 = L_87; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_91 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_SingleParser_2(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_92 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_92, _stringLiteralC6370F4D10E7342974C38CE91A5C8121AA774FD8, (bool)0, (bool)0, (bool)0, L_91, /*hidden argument*/NULL); NullCheck(L_90); ArrayElementTypeCheck (L_90, L_92); (L_90)->SetAt(static_cast(((int32_t)28)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_92); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_93 = L_90; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_94 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_SingleParser_2(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_95 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_95, _stringLiteral4BD4A20D743286D24CF77C38E693ECBCE8CD3A7E, (bool)0, (bool)1, (bool)0, L_94, /*hidden argument*/NULL); NullCheck(L_93); ArrayElementTypeCheck (L_93, L_95); (L_93)->SetAt(static_cast(((int32_t)29)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_95); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_96 = L_93; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_97 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_SingleParser_2(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_98 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_98, _stringLiteral0DD32B18A388C5F1A6BAFD3629759260C61F767C, (bool)0, (bool)0, (bool)0, L_97, /*hidden argument*/NULL); NullCheck(L_96); ArrayElementTypeCheck (L_96, L_98); (L_96)->SetAt(static_cast(((int32_t)30)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_98); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_99 = L_96; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_100 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_SingleParser_2(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_101 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_101, _stringLiteral8D28F1F930CE88A866A5AFD45B7587A776D2A2E5, (bool)0, (bool)0, (bool)0, L_100, /*hidden argument*/NULL); NullCheck(L_99); ArrayElementTypeCheck (L_99, L_101); (L_99)->SetAt(static_cast(((int32_t)31)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_101); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_102 = L_99; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_103 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_SingleParser_2(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_104 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_104, _stringLiteral3D98372962A0D30238C43F12D007AFE39E995B24, (bool)0, (bool)0, (bool)0, L_103, /*hidden argument*/NULL); NullCheck(L_102); ArrayElementTypeCheck (L_102, L_104); (L_102)->SetAt(static_cast(((int32_t)32)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_104); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_105 = L_102; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_106 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_MultiParser_3(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_107 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_107, _stringLiteral1C0680A8F698A8F35416CE75A2356C661641B7D9, (bool)0, (bool)0, (bool)1, L_106, /*hidden argument*/NULL); NullCheck(L_105); ArrayElementTypeCheck (L_105, L_107); (L_105)->SetAt(static_cast(((int32_t)33)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_107); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_108 = L_105; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_109 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_MultiParser_3(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_110 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_110, _stringLiteralCC624D1FAF7A8A629CE51F4FE3FFB1FBA27EDF86, (bool)0, (bool)0, (bool)1, L_109, /*hidden argument*/NULL); NullCheck(L_108); ArrayElementTypeCheck (L_108, L_110); (L_108)->SetAt(static_cast(((int32_t)34)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_110); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_111 = L_108; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_112 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_MultiParser_3(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_113 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_113, _stringLiteralBB1692DA8ED7544A3193330A7D73D82D06F61206, (bool)0, (bool)0, (bool)1, L_112, /*hidden argument*/NULL); NullCheck(L_111); ArrayElementTypeCheck (L_111, L_113); (L_111)->SetAt(static_cast(((int32_t)35)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_113); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_114 = L_111; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_115 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_MultiParser_3(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_116 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_116, _stringLiteralF0ACB78DD0CBEFD7DD81D25C5219DDB4067ECBD2, (bool)1, (bool)0, (bool)1, L_115, /*hidden argument*/NULL); NullCheck(L_114); ArrayElementTypeCheck (L_114, L_116); (L_114)->SetAt(static_cast(((int32_t)36)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_116); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_117 = L_114; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_118 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_MultiParser_3(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_119 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_119, _stringLiteralF4C926E25326963C2B7FEF2E308523C33CF6D9F0, (bool)1, (bool)0, (bool)1, L_118, /*hidden argument*/NULL); NullCheck(L_117); ArrayElementTypeCheck (L_117, L_119); (L_117)->SetAt(static_cast(((int32_t)37)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_119); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_120 = L_117; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_121 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_SingleParser_2(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_122 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_122, _stringLiteral1488F649920198F59A3B53EA7C81503935DEF05E, (bool)1, (bool)0, (bool)0, L_121, /*hidden argument*/NULL); NullCheck(L_120); ArrayElementTypeCheck (L_120, L_122); (L_120)->SetAt(static_cast(((int32_t)38)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_122); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_123 = L_120; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_124 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_SingleParser_2(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_125 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_125, _stringLiteral0BB9AAEC2AAAB32BFE978A4C45400CAF08F6749C, (bool)0, (bool)0, (bool)0, L_124, /*hidden argument*/NULL); NullCheck(L_123); ArrayElementTypeCheck (L_123, L_125); (L_123)->SetAt(static_cast(((int32_t)39)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_125); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_126 = L_123; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_127 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_SingleParser_2(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_128 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_128, _stringLiteral0D0D0C17BC59054E43F2DF1F9E9184032FBFBF01, (bool)0, (bool)0, (bool)0, L_127, /*hidden argument*/NULL); NullCheck(L_126); ArrayElementTypeCheck (L_126, L_128); (L_126)->SetAt(static_cast(((int32_t)40)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_128); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_129 = L_126; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_130 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_MultiParser_3(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_131 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_131, _stringLiteral5C5EE883BE58477D29789770C77CED0740EA2109, (bool)0, (bool)0, (bool)1, L_130, /*hidden argument*/NULL); NullCheck(L_129); ArrayElementTypeCheck (L_129, L_131); (L_129)->SetAt(static_cast(((int32_t)41)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_131); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_132 = L_129; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_133 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_MultiParser_3(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_134 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_134, _stringLiteralE8258FE4B53775D781FF54E8010D50E54F753759, (bool)0, (bool)0, (bool)1, L_133, /*hidden argument*/NULL); NullCheck(L_132); ArrayElementTypeCheck (L_132, L_134); (L_132)->SetAt(static_cast(((int32_t)42)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_134); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_135 = L_132; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_136 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_MultiParser_3(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_137 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_137, _stringLiteral56B55F1AE7D34548BDC41081085DD3561CB80578, (bool)0, (bool)0, (bool)1, L_136, /*hidden argument*/NULL); NullCheck(L_135); ArrayElementTypeCheck (L_135, L_137); (L_135)->SetAt(static_cast(((int32_t)43)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_137); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_138 = L_135; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_139 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_MultiParser_3(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_140 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_140, _stringLiteralD287833BBB7D5D15C278205064EAFF8ECF8A16AA, (bool)0, (bool)0, (bool)1, L_139, /*hidden argument*/NULL); NullCheck(L_138); ArrayElementTypeCheck (L_138, L_140); (L_138)->SetAt(static_cast(((int32_t)44)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_140); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_141 = L_138; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_142 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_MultiParser_3(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_143 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_143, _stringLiteral68ACB6B47D3431BDBD286C3153B250E20552A4AD, (bool)1, (bool)1, (bool)1, L_142, /*hidden argument*/NULL); NullCheck(L_141); ArrayElementTypeCheck (L_141, L_143); (L_141)->SetAt(static_cast(((int32_t)45)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_143); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_144 = L_141; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_145 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_MultiParser_3(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_146 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_146, _stringLiteral24F45929493475FECA90729BA5EAF2D06F8722A4, (bool)0, (bool)0, (bool)1, L_145, /*hidden argument*/NULL); NullCheck(L_144); ArrayElementTypeCheck (L_144, L_146); (L_144)->SetAt(static_cast(((int32_t)46)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_146); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_147 = L_144; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_148 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_SingleParser_2(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_149 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_149, _stringLiteral48C75149E263D08DBE3F3CB86DF011FA96C010AF, (bool)1, (bool)0, (bool)0, L_148, /*hidden argument*/NULL); NullCheck(L_147); ArrayElementTypeCheck (L_147, L_149); (L_147)->SetAt(static_cast(((int32_t)47)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_149); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_150 = L_147; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_151 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_MultiParser_3(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_152 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_152, _stringLiteralFAE55AFF6F18607FEDBE2F4C0C6BA4D4F219D504, (bool)0, (bool)0, (bool)1, L_151, /*hidden argument*/NULL); NullCheck(L_150); ArrayElementTypeCheck (L_150, L_152); (L_150)->SetAt(static_cast(((int32_t)48)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_152); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_153 = L_150; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_154 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_MultiParser_3(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_155 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_155, _stringLiteral57BD43C20A057CCCB23650CB346EACEE7B31AE72, (bool)0, (bool)0, (bool)1, L_154, /*hidden argument*/NULL); NullCheck(L_153); ArrayElementTypeCheck (L_153, L_155); (L_153)->SetAt(static_cast(((int32_t)49)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_155); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_156 = L_153; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_157 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_MultiParser_3(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_158 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_158, _stringLiteral3E2494FB2D245D91FF110697DD6EA93C8AD044C7, (bool)0, (bool)0, (bool)1, L_157, /*hidden argument*/NULL); NullCheck(L_156); ArrayElementTypeCheck (L_156, L_158); (L_156)->SetAt(static_cast(((int32_t)50)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_158); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_159 = L_156; HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * L_160 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_SingleParser_2(); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_161 = (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)il2cpp_codegen_object_new(HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); HeaderInfo__ctor_m9B515C741E98093173780BC724C0AD044B395393(L_161, _stringLiteral837AB1353B48531677906AF6731DF5EF5ACDA3F1, (bool)0, (bool)1, (bool)1, L_160, /*hidden argument*/NULL); NullCheck(L_159); ArrayElementTypeCheck (L_159, L_161); (L_159)->SetAt(static_cast(((int32_t)51)), (HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)L_161); V_0 = L_159; HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_162 = V_0; NullCheck(L_162); IL2CPP_RUNTIME_CLASS_INIT(CaseInsensitiveAscii_tE8AAF0B896B91D60F4A8569A7DB4C668204E16EA_il2cpp_TypeInfo_var); CaseInsensitiveAscii_tE8AAF0B896B91D60F4A8569A7DB4C668204E16EA * L_163 = ((CaseInsensitiveAscii_tE8AAF0B896B91D60F4A8569A7DB4C668204E16EA_StaticFields*)il2cpp_codegen_static_fields_for(CaseInsensitiveAscii_tE8AAF0B896B91D60F4A8569A7DB4C668204E16EA_il2cpp_TypeInfo_var))->get_StaticInstance_0(); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_164 = (Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC *)il2cpp_codegen_object_new(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var); Hashtable__ctor_m08A6EF344F497A176BD48FDB33FFEFBEAC70C87C(L_164, ((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_162)->max_length))), (int32_t)2)), L_163, /*hidden argument*/NULL); ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->set_HeaderHashTable_0(L_164); V_1 = 0; goto IL_04e1; } IL_04c8: { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_165 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_HeaderHashTable_0(); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_166 = V_0; int32_t L_167 = V_1; NullCheck(L_166); int32_t L_168 = L_167; HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_169 = (L_166)->GetAt(static_cast(L_168)); NullCheck(L_169); String_t* L_170 = L_169->get_HeaderName_3(); HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_171 = V_0; int32_t L_172 = V_1; NullCheck(L_171); int32_t L_173 = L_172; HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_174 = (L_171)->GetAt(static_cast(L_173)); NullCheck(L_165); VirtualActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_165, L_170, L_174); int32_t L_175 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_175, (int32_t)1)); } IL_04e1: { int32_t L_176 = V_1; HeaderInfoU5BU5D_t316DFB0DAA40032F9200E1BB48A3D8ECCB2F6653* L_177 = V_0; NullCheck(L_177); if ((((int32_t)L_176) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_177)->max_length)))))) { goto IL_04c8; } } { return; } } // System.Net.HeaderInfo System.Net.HeaderInfoTable::get_Item(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * HeaderInfoTable_get_Item_m13EB127C357A9276F74C65C0EEDEA3A1EF5E8D5F (HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4 * __this, String_t* ___name0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * V_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_0 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_HeaderHashTable_0(); String_t* L_1 = ___name0; NullCheck(L_0); RuntimeObject * L_2; L_2 = VirtualFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_0, L_1); V_0 = ((HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 *)CastclassClass((RuntimeObject*)L_2, HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2_il2cpp_TypeInfo_var)); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_3 = V_0; if (L_3) { goto IL_001a; } } { IL2CPP_RUNTIME_CLASS_INIT(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var); HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_4 = ((HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4_il2cpp_TypeInfo_var))->get_UnknownHeaderInfo_1(); return L_4; } IL_001a: { HeaderInfo_t072F969A763641C1350BC6E436527054FACA88A2 * L_5 = V_0; return L_5; } } // System.Void System.Net.HeaderInfoTable::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HeaderInfoTable__ctor_mA44867F178E91B5FB9540ECB02A129F2868FC82E (HeaderInfoTable_tC14711FD51BE2B331032AB0BAE14E2E2D88E77D4 * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif IL2CPP_EXTERN_C StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* DelegatePInvokeWrapper_HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD (HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * __this, String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } typedef char** (DEFAULT_CALL *PInvokeFunc)(char*); PInvokeFunc il2cppPInvokeFunc = reinterpret_cast(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method)); // Marshaling of parameter '___value0' to native representation char* ____value0_marshaled = NULL; ____value0_marshaled = il2cpp_codegen_marshal_string(___value0); // Native function invocation char** returnValue = il2cppPInvokeFunc(____value0_marshaled); // Marshaling of return value back from native representation StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* _returnValue_unmarshaled = NULL; if (returnValue != NULL) { if (_returnValue_unmarshaled == NULL) { _returnValue_unmarshaled = reinterpret_cast((StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, 1)); } il2cpp_array_size_t _arrayLength = (_returnValue_unmarshaled)->max_length; for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(_arrayLength); i++) { String_t* _returnValue_i__unmarshaled = NULL; _returnValue_i__unmarshaled = il2cpp_codegen_marshal_string_result((returnValue)[i]); (_returnValue_unmarshaled)->SetAtUnchecked(static_cast(i), _returnValue_i__unmarshaled); } } // Marshaling cleanup of return value native representation if (returnValue != NULL) { const il2cpp_array_size_t returnValue_CleanupLoopCount = 1; for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(returnValue_CleanupLoopCount); i++) { il2cpp_codegen_marshal_free((returnValue)[i]); (returnValue)[i] = NULL; } il2cpp_codegen_marshal_free(returnValue); returnValue = NULL; } // Marshaling cleanup of parameter '___value0' native representation il2cpp_codegen_marshal_free(____value0_marshaled); ____value0_marshaled = NULL; return _returnValue_unmarshaled; } // System.Void System.Net.HeaderParser::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HeaderParser__ctor_m472893312CE6499CF0B133E43208D60D8F045642 (HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.String[] System.Net.HeaderParser::Invoke(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* HeaderParser_Invoke_m3A5FC4D267C12585E1869DFB57D913613380D813 (HeaderParser_tF8B96DD5415462AC2671AA8D318957235C82FABD * __this, String_t* ___value0, const RuntimeMethod* method) { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* result = NULL; DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!currentDelegate->get_method_is_virtual_10()) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* (*FunctionPointerType) (String_t*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod); } else { // closed typedef StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* (*FunctionPointerType) (void*, String_t*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod); } } else if (___parameterCount != 1) { // open if (currentDelegate->get_method_is_virtual_10()) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker0< StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* >::Invoke(targetMethod, ___value0); else result = GenericVirtualFuncInvoker0< StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* >::Invoke(targetMethod, ___value0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker0< StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___value0); else result = VirtualFuncInvoker0< StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___value0); } } else { typedef StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* (*FunctionPointerType) (String_t*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod); } } else { // closed if (targetThis == NULL) { typedef StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* (*FunctionPointerType) (String_t*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___value0, targetMethod); } else { typedef StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* (*FunctionPointerType) (void*, String_t*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___value0, targetMethod); } } } return result; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: System.Net.HeaderVariantInfo IL2CPP_EXTERN_C void HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3_marshal_pinvoke(const HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3& unmarshaled, HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3_marshaled_pinvoke& marshaled) { marshaled.___m_name_0 = il2cpp_codegen_marshal_string(unmarshaled.get_m_name_0()); marshaled.___m_variant_1 = unmarshaled.get_m_variant_1(); } IL2CPP_EXTERN_C void HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3_marshal_pinvoke_back(const HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3_marshaled_pinvoke& marshaled, HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3& unmarshaled) { unmarshaled.set_m_name_0(il2cpp_codegen_marshal_string_result(marshaled.___m_name_0)); int32_t unmarshaled_m_variant_temp_1 = 0; unmarshaled_m_variant_temp_1 = marshaled.___m_variant_1; unmarshaled.set_m_variant_1(unmarshaled_m_variant_temp_1); } // Conversion method for clean up from marshalling of: System.Net.HeaderVariantInfo IL2CPP_EXTERN_C void HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3_marshal_pinvoke_cleanup(HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3_marshaled_pinvoke& marshaled) { il2cpp_codegen_marshal_free(marshaled.___m_name_0); marshaled.___m_name_0 = NULL; } // Conversion methods for marshalling of: System.Net.HeaderVariantInfo IL2CPP_EXTERN_C void HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3_marshal_com(const HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3& unmarshaled, HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3_marshaled_com& marshaled) { marshaled.___m_name_0 = il2cpp_codegen_marshal_bstring(unmarshaled.get_m_name_0()); marshaled.___m_variant_1 = unmarshaled.get_m_variant_1(); } IL2CPP_EXTERN_C void HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3_marshal_com_back(const HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3_marshaled_com& marshaled, HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3& unmarshaled) { unmarshaled.set_m_name_0(il2cpp_codegen_marshal_bstring_result(marshaled.___m_name_0)); int32_t unmarshaled_m_variant_temp_1 = 0; unmarshaled_m_variant_temp_1 = marshaled.___m_variant_1; unmarshaled.set_m_variant_1(unmarshaled_m_variant_temp_1); } // Conversion method for clean up from marshalling of: System.Net.HeaderVariantInfo IL2CPP_EXTERN_C void HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3_marshal_com_cleanup(HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3_marshaled_com& marshaled) { il2cpp_codegen_marshal_free_bstring(marshaled.___m_name_0); marshaled.___m_name_0 = NULL; } // System.Void System.Net.HeaderVariantInfo::.ctor(System.String,System.Net.CookieVariant) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HeaderVariantInfo__ctor_mB0775C718895238F3289605480ECD66D13DE19C0 (HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3 * __this, String_t* ___name0, int32_t ___variant1, const RuntimeMethod* method) { { String_t* L_0 = ___name0; __this->set_m_name_0(L_0); int32_t L_1 = ___variant1; __this->set_m_variant_1(L_1); return; } } IL2CPP_EXTERN_C void HeaderVariantInfo__ctor_mB0775C718895238F3289605480ECD66D13DE19C0_AdjustorThunk (RuntimeObject * __this, String_t* ___name0, int32_t ___variant1, const RuntimeMethod* method) { HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3 * _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); HeaderVariantInfo__ctor_mB0775C718895238F3289605480ECD66D13DE19C0(_thisAdjusted, ___name0, ___variant1, method); } // System.String System.Net.HeaderVariantInfo::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* HeaderVariantInfo_get_Name_m94033FAF3ED87FB13E9F7445D6B26A9F545C10C5 (HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_m_name_0(); return L_0; } } IL2CPP_EXTERN_C String_t* HeaderVariantInfo_get_Name_m94033FAF3ED87FB13E9F7445D6B26A9F545C10C5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3 * _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = HeaderVariantInfo_get_Name_m94033FAF3ED87FB13E9F7445D6B26A9F545C10C5_inline(_thisAdjusted, method); return _returnValue; } // System.Net.CookieVariant System.Net.HeaderVariantInfo::get_Variant() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HeaderVariantInfo_get_Variant_m7B4EE8A87D64408629421635C393524FDA57A3E1 (HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_m_variant_1(); return L_0; } } IL2CPP_EXTERN_C int32_t HeaderVariantInfo_get_Variant_m7B4EE8A87D64408629421635C393524FDA57A3E1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3 * _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = HeaderVariantInfo_get_Variant_m7B4EE8A87D64408629421635C393524FDA57A3E1_inline(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Net.Configuration.HttpCachePolicyElement::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpCachePolicyElement__ctor_m6250E80EBE2A90269CEE9EE57B8A8260894B6BDA (HttpCachePolicyElement_t9908817A6011A4DDEC3F2B5F1C64A0CBA79B1A23 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpCachePolicyElement__ctor_m6250E80EBE2A90269CEE9EE57B8A8260894B6BDA_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(HttpCachePolicyElement__ctor_m6250E80EBE2A90269CEE9EE57B8A8260894B6BDA_RuntimeMethod_var); return; } } // System.TimeSpan System.Net.Configuration.HttpCachePolicyElement::get_MaximumAge() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 HttpCachePolicyElement_get_MaximumAge_m2828C14D6F625DBEAFFE05D7B195301E5844998E (HttpCachePolicyElement_t9908817A6011A4DDEC3F2B5F1C64A0CBA79B1A23 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpCachePolicyElement_get_MaximumAge_m2828C14D6F625DBEAFFE05D7B195301E5844998E_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 V_0; memset((&V_0), 0, sizeof(V_0)); { il2cpp_codegen_raise_profile_exception(HttpCachePolicyElement_get_MaximumAge_m2828C14D6F625DBEAFFE05D7B195301E5844998E_RuntimeMethod_var); il2cpp_codegen_initobj((&V_0), sizeof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 )); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_0 = V_0; return L_0; } } // System.Void System.Net.Configuration.HttpCachePolicyElement::set_MaximumAge(System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpCachePolicyElement_set_MaximumAge_mDAD78C25D9E0F6799FE1F0B4E6410E83A174EAFC (HttpCachePolicyElement_t9908817A6011A4DDEC3F2B5F1C64A0CBA79B1A23 * __this, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpCachePolicyElement_set_MaximumAge_mDAD78C25D9E0F6799FE1F0B4E6410E83A174EAFC_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(HttpCachePolicyElement_set_MaximumAge_mDAD78C25D9E0F6799FE1F0B4E6410E83A174EAFC_RuntimeMethod_var); return; } } // System.TimeSpan System.Net.Configuration.HttpCachePolicyElement::get_MaximumStale() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 HttpCachePolicyElement_get_MaximumStale_mC7D1DEAF254552DEB3DD907FC936F9661DE168BD (HttpCachePolicyElement_t9908817A6011A4DDEC3F2B5F1C64A0CBA79B1A23 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpCachePolicyElement_get_MaximumStale_mC7D1DEAF254552DEB3DD907FC936F9661DE168BD_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 V_0; memset((&V_0), 0, sizeof(V_0)); { il2cpp_codegen_raise_profile_exception(HttpCachePolicyElement_get_MaximumStale_mC7D1DEAF254552DEB3DD907FC936F9661DE168BD_RuntimeMethod_var); il2cpp_codegen_initobj((&V_0), sizeof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 )); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_0 = V_0; return L_0; } } // System.Void System.Net.Configuration.HttpCachePolicyElement::set_MaximumStale(System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpCachePolicyElement_set_MaximumStale_m61DC99E5BAE2B138C81A1A2F4FEB7907D4740247 (HttpCachePolicyElement_t9908817A6011A4DDEC3F2B5F1C64A0CBA79B1A23 * __this, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpCachePolicyElement_set_MaximumStale_m61DC99E5BAE2B138C81A1A2F4FEB7907D4740247_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(HttpCachePolicyElement_set_MaximumStale_m61DC99E5BAE2B138C81A1A2F4FEB7907D4740247_RuntimeMethod_var); return; } } // System.TimeSpan System.Net.Configuration.HttpCachePolicyElement::get_MinimumFresh() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 HttpCachePolicyElement_get_MinimumFresh_m6BE2BE0923F014E6AC4A5634768DB2C1399A2857 (HttpCachePolicyElement_t9908817A6011A4DDEC3F2B5F1C64A0CBA79B1A23 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpCachePolicyElement_get_MinimumFresh_m6BE2BE0923F014E6AC4A5634768DB2C1399A2857_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 V_0; memset((&V_0), 0, sizeof(V_0)); { il2cpp_codegen_raise_profile_exception(HttpCachePolicyElement_get_MinimumFresh_m6BE2BE0923F014E6AC4A5634768DB2C1399A2857_RuntimeMethod_var); il2cpp_codegen_initobj((&V_0), sizeof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 )); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_0 = V_0; return L_0; } } // System.Void System.Net.Configuration.HttpCachePolicyElement::set_MinimumFresh(System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpCachePolicyElement_set_MinimumFresh_mD88DB73C22AFB0FF7BD1E1926FDC409F5A4687F7 (HttpCachePolicyElement_t9908817A6011A4DDEC3F2B5F1C64A0CBA79B1A23 * __this, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpCachePolicyElement_set_MinimumFresh_mD88DB73C22AFB0FF7BD1E1926FDC409F5A4687F7_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(HttpCachePolicyElement_set_MinimumFresh_mD88DB73C22AFB0FF7BD1E1926FDC409F5A4687F7_RuntimeMethod_var); return; } } // System.Net.Cache.HttpRequestCacheLevel System.Net.Configuration.HttpCachePolicyElement::get_PolicyLevel() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HttpCachePolicyElement_get_PolicyLevel_m867435106DEEAE671F5578658A8DE5D2FF913EF2 (HttpCachePolicyElement_t9908817A6011A4DDEC3F2B5F1C64A0CBA79B1A23 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpCachePolicyElement_get_PolicyLevel_m867435106DEEAE671F5578658A8DE5D2FF913EF2_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { il2cpp_codegen_raise_profile_exception(HttpCachePolicyElement_get_PolicyLevel_m867435106DEEAE671F5578658A8DE5D2FF913EF2_RuntimeMethod_var); il2cpp_codegen_initobj((&V_0), sizeof(int32_t)); int32_t L_0 = V_0; return L_0; } } // System.Void System.Net.Configuration.HttpCachePolicyElement::set_PolicyLevel(System.Net.Cache.HttpRequestCacheLevel) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpCachePolicyElement_set_PolicyLevel_m23C748B8A95946453BF4D79A4109BC1D06DE39F4 (HttpCachePolicyElement_t9908817A6011A4DDEC3F2B5F1C64A0CBA79B1A23 * __this, int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpCachePolicyElement_set_PolicyLevel_m23C748B8A95946453BF4D79A4109BC1D06DE39F4_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(HttpCachePolicyElement_set_PolicyLevel_m23C748B8A95946453BF4D79A4109BC1D06DE39F4_RuntimeMethod_var); return; } } // System.Configuration.ConfigurationPropertyCollection System.Net.Configuration.HttpCachePolicyElement::get_Properties() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfigurationPropertyCollection_t8C098DB59DF7BA2C2A71369978F4225B92B2F59B * HttpCachePolicyElement_get_Properties_m81D9E7890BB9DAABE79668CE0A2B425DD670EF46 (HttpCachePolicyElement_t9908817A6011A4DDEC3F2B5F1C64A0CBA79B1A23 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpCachePolicyElement_get_Properties_m81D9E7890BB9DAABE79668CE0A2B425DD670EF46_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(HttpCachePolicyElement_get_Properties_m81D9E7890BB9DAABE79668CE0A2B425DD670EF46_RuntimeMethod_var); return (ConfigurationPropertyCollection_t8C098DB59DF7BA2C2A71369978F4225B92B2F59B *)NULL; } } // System.Void System.Net.Configuration.HttpCachePolicyElement::DeserializeElement(System.Xml.XmlReader,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpCachePolicyElement_DeserializeElement_mF4643E77A4022FE070F94ED1B1B17BBADB18885F (HttpCachePolicyElement_t9908817A6011A4DDEC3F2B5F1C64A0CBA79B1A23 * __this, XmlReader_tECCB3D8B757F8CE744EF0430F338BEF15E060138 * ___reader0, bool ___serializeCollectionKey1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpCachePolicyElement_DeserializeElement_mF4643E77A4022FE070F94ED1B1B17BBADB18885F_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(HttpCachePolicyElement_DeserializeElement_mF4643E77A4022FE070F94ED1B1B17BBADB18885F_RuntimeMethod_var); return; } } // System.Void System.Net.Configuration.HttpCachePolicyElement::Reset(System.Configuration.ConfigurationElement) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpCachePolicyElement_Reset_m865F35D77900436D9942AFBB835A0A865B46E1CD (HttpCachePolicyElement_t9908817A6011A4DDEC3F2B5F1C64A0CBA79B1A23 * __this, ConfigurationElement_t571C446CFDFF39CF17130653C433786BEFF25DFA * ___parentElement0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpCachePolicyElement_Reset_m865F35D77900436D9942AFBB835A0A865B46E1CD_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(HttpCachePolicyElement_Reset_m865F35D77900436D9942AFBB835A0A865B46E1CD_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Net.HttpContinueDelegate::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpContinueDelegate__ctor_mFA137B57734EE9D5C75A3333EB7CF4C9BBDE28B4 (HttpContinueDelegate_t84ADA70221E0AC5A340AD9D012F81C1683FC240F * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Void System.Net.HttpContinueDelegate::Invoke(System.Int32,System.Net.WebHeaderCollection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpContinueDelegate_Invoke_mBB31F6155FA0BCFF94576BA0F43C19568592BD5F (HttpContinueDelegate_t84ADA70221E0AC5A340AD9D012F81C1683FC240F * __this, int32_t ___StatusCode0, WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * ___httpHeaders1, const RuntimeMethod* method) { DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!currentDelegate->get_method_is_virtual_10()) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 2) { // open typedef void (*FunctionPointerType) (int32_t, WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___StatusCode0, ___httpHeaders1, targetMethod); } else { // closed typedef void (*FunctionPointerType) (void*, int32_t, WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___StatusCode0, ___httpHeaders1, targetMethod); } } else { // closed typedef void (*FunctionPointerType) (void*, int32_t, WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___StatusCode0, ___httpHeaders1, targetMethod); } } } #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.Net.Configuration.HttpListenerElement::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpListenerElement__ctor_m07EEB4A901E39E72D3C3698B4D9452BB2C6A57DD (HttpListenerElement_t6E336B2902766D07BF1E27F8988D6C6DFEC8ABA4 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpListenerElement__ctor_m07EEB4A901E39E72D3C3698B4D9452BB2C6A57DD_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(HttpListenerElement__ctor_m07EEB4A901E39E72D3C3698B4D9452BB2C6A57DD_RuntimeMethod_var); return; } } // System.Configuration.ConfigurationPropertyCollection System.Net.Configuration.HttpListenerElement::get_Properties() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfigurationPropertyCollection_t8C098DB59DF7BA2C2A71369978F4225B92B2F59B * HttpListenerElement_get_Properties_mC1FCF8377DB5BBC3CB954EDC82462AF6F4A4D3DC (HttpListenerElement_t6E336B2902766D07BF1E27F8988D6C6DFEC8ABA4 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpListenerElement_get_Properties_mC1FCF8377DB5BBC3CB954EDC82462AF6F4A4D3DC_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(HttpListenerElement_get_Properties_mC1FCF8377DB5BBC3CB954EDC82462AF6F4A4D3DC_RuntimeMethod_var); return (ConfigurationPropertyCollection_t8C098DB59DF7BA2C2A71369978F4225B92B2F59B *)NULL; } } // System.Net.Configuration.HttpListenerTimeoutsElement System.Net.Configuration.HttpListenerElement::get_Timeouts() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HttpListenerTimeoutsElement_t44346970BBEEBE94C0112DAFE8A9334C3BE66D7A * HttpListenerElement_get_Timeouts_m142AD8484F67DEF1F2C4777041CA49CA73F2DF4B (HttpListenerElement_t6E336B2902766D07BF1E27F8988D6C6DFEC8ABA4 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpListenerElement_get_Timeouts_m142AD8484F67DEF1F2C4777041CA49CA73F2DF4B_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(HttpListenerElement_get_Timeouts_m142AD8484F67DEF1F2C4777041CA49CA73F2DF4B_RuntimeMethod_var); return (HttpListenerTimeoutsElement_t44346970BBEEBE94C0112DAFE8A9334C3BE66D7A *)NULL; } } // System.Boolean System.Net.Configuration.HttpListenerElement::get_UnescapeRequestUrl() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HttpListenerElement_get_UnescapeRequestUrl_m98F847E2F7AE345CAE1024E047A43C9C68C6DB43 (HttpListenerElement_t6E336B2902766D07BF1E27F8988D6C6DFEC8ABA4 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpListenerElement_get_UnescapeRequestUrl_m98F847E2F7AE345CAE1024E047A43C9C68C6DB43_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; { il2cpp_codegen_raise_profile_exception(HttpListenerElement_get_UnescapeRequestUrl_m98F847E2F7AE345CAE1024E047A43C9C68C6DB43_RuntimeMethod_var); il2cpp_codegen_initobj((&V_0), sizeof(bool)); bool L_0 = V_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.Net.Configuration.HttpListenerTimeoutsElement::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpListenerTimeoutsElement__ctor_m16C746C548DE49C71BF259B7EFF57CA1AE6F035F (HttpListenerTimeoutsElement_t44346970BBEEBE94C0112DAFE8A9334C3BE66D7A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpListenerTimeoutsElement__ctor_m16C746C548DE49C71BF259B7EFF57CA1AE6F035F_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(HttpListenerTimeoutsElement__ctor_m16C746C548DE49C71BF259B7EFF57CA1AE6F035F_RuntimeMethod_var); return; } } // System.TimeSpan System.Net.Configuration.HttpListenerTimeoutsElement::get_DrainEntityBody() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 HttpListenerTimeoutsElement_get_DrainEntityBody_m0C13905ECD142260B328AC679C639028ABCF0CE2 (HttpListenerTimeoutsElement_t44346970BBEEBE94C0112DAFE8A9334C3BE66D7A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpListenerTimeoutsElement_get_DrainEntityBody_m0C13905ECD142260B328AC679C639028ABCF0CE2_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 V_0; memset((&V_0), 0, sizeof(V_0)); { il2cpp_codegen_raise_profile_exception(HttpListenerTimeoutsElement_get_DrainEntityBody_m0C13905ECD142260B328AC679C639028ABCF0CE2_RuntimeMethod_var); il2cpp_codegen_initobj((&V_0), sizeof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 )); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_0 = V_0; return L_0; } } // System.TimeSpan System.Net.Configuration.HttpListenerTimeoutsElement::get_EntityBody() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 HttpListenerTimeoutsElement_get_EntityBody_m0AC0A46DD745E35BB10FF3BA849F49EC907AC71F (HttpListenerTimeoutsElement_t44346970BBEEBE94C0112DAFE8A9334C3BE66D7A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpListenerTimeoutsElement_get_EntityBody_m0AC0A46DD745E35BB10FF3BA849F49EC907AC71F_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 V_0; memset((&V_0), 0, sizeof(V_0)); { il2cpp_codegen_raise_profile_exception(HttpListenerTimeoutsElement_get_EntityBody_m0AC0A46DD745E35BB10FF3BA849F49EC907AC71F_RuntimeMethod_var); il2cpp_codegen_initobj((&V_0), sizeof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 )); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_0 = V_0; return L_0; } } // System.TimeSpan System.Net.Configuration.HttpListenerTimeoutsElement::get_HeaderWait() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 HttpListenerTimeoutsElement_get_HeaderWait_mDA369F5DC6421A6ACD5F315BCCA063B0B9959FBE (HttpListenerTimeoutsElement_t44346970BBEEBE94C0112DAFE8A9334C3BE66D7A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpListenerTimeoutsElement_get_HeaderWait_mDA369F5DC6421A6ACD5F315BCCA063B0B9959FBE_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 V_0; memset((&V_0), 0, sizeof(V_0)); { il2cpp_codegen_raise_profile_exception(HttpListenerTimeoutsElement_get_HeaderWait_mDA369F5DC6421A6ACD5F315BCCA063B0B9959FBE_RuntimeMethod_var); il2cpp_codegen_initobj((&V_0), sizeof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 )); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_0 = V_0; return L_0; } } // System.TimeSpan System.Net.Configuration.HttpListenerTimeoutsElement::get_IdleConnection() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 HttpListenerTimeoutsElement_get_IdleConnection_mF9804AB54FB2942ECB416ECE754AD6841085CB84 (HttpListenerTimeoutsElement_t44346970BBEEBE94C0112DAFE8A9334C3BE66D7A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpListenerTimeoutsElement_get_IdleConnection_mF9804AB54FB2942ECB416ECE754AD6841085CB84_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 V_0; memset((&V_0), 0, sizeof(V_0)); { il2cpp_codegen_raise_profile_exception(HttpListenerTimeoutsElement_get_IdleConnection_mF9804AB54FB2942ECB416ECE754AD6841085CB84_RuntimeMethod_var); il2cpp_codegen_initobj((&V_0), sizeof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 )); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_0 = V_0; return L_0; } } // System.Int64 System.Net.Configuration.HttpListenerTimeoutsElement::get_MinSendBytesPerSecond() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t HttpListenerTimeoutsElement_get_MinSendBytesPerSecond_mF20973CA46DC6087BC7D2B272A2CD06258894F6A (HttpListenerTimeoutsElement_t44346970BBEEBE94C0112DAFE8A9334C3BE66D7A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpListenerTimeoutsElement_get_MinSendBytesPerSecond_mF20973CA46DC6087BC7D2B272A2CD06258894F6A_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; { il2cpp_codegen_raise_profile_exception(HttpListenerTimeoutsElement_get_MinSendBytesPerSecond_mF20973CA46DC6087BC7D2B272A2CD06258894F6A_RuntimeMethod_var); il2cpp_codegen_initobj((&V_0), sizeof(int64_t)); int64_t L_0 = V_0; return L_0; } } // System.Configuration.ConfigurationPropertyCollection System.Net.Configuration.HttpListenerTimeoutsElement::get_Properties() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfigurationPropertyCollection_t8C098DB59DF7BA2C2A71369978F4225B92B2F59B * HttpListenerTimeoutsElement_get_Properties_m60656A26C69B941B335D02349FF02ACCBFD76289 (HttpListenerTimeoutsElement_t44346970BBEEBE94C0112DAFE8A9334C3BE66D7A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpListenerTimeoutsElement_get_Properties_m60656A26C69B941B335D02349FF02ACCBFD76289_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(HttpListenerTimeoutsElement_get_Properties_m60656A26C69B941B335D02349FF02ACCBFD76289_RuntimeMethod_var); return (ConfigurationPropertyCollection_t8C098DB59DF7BA2C2A71369978F4225B92B2F59B *)NULL; } } // System.TimeSpan System.Net.Configuration.HttpListenerTimeoutsElement::get_RequestQueue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 HttpListenerTimeoutsElement_get_RequestQueue_mC5356A6CD861680ED3EBFD6F910A000F7C1B780E (HttpListenerTimeoutsElement_t44346970BBEEBE94C0112DAFE8A9334C3BE66D7A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpListenerTimeoutsElement_get_RequestQueue_mC5356A6CD861680ED3EBFD6F910A000F7C1B780E_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 V_0; memset((&V_0), 0, sizeof(V_0)); { il2cpp_codegen_raise_profile_exception(HttpListenerTimeoutsElement_get_RequestQueue_mC5356A6CD861680ED3EBFD6F910A000F7C1B780E_RuntimeMethod_var); il2cpp_codegen_initobj((&V_0), sizeof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 )); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_0 = V_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 #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.Net.HttpRequestCreator::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpRequestCreator__ctor_m06C2AEB34BE1C386F12AFEA48D7F330E429653BE (HttpRequestCreator_t43BC553258C031FFD5AF8A9552EAC1D152215999 * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } // System.Net.WebRequest System.Net.HttpRequestCreator::Create(System.Uri) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E * HttpRequestCreator_Create_m8B42C3EE0D53119899DDEF28D227EF203932AFCD (HttpRequestCreator_t43BC553258C031FFD5AF8A9552EAC1D152215999 * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_0 = ___uri0; HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * L_1 = (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A *)il2cpp_codegen_object_new(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A_il2cpp_TypeInfo_var); HttpWebRequest__ctor_m34F4D99DEAEB2ABDA7B321DE9D934E2AFFE7ED87(L_1, L_0, /*hidden argument*/NULL); return L_1; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.String System.Net.HttpStatusDescription::Get(System.Net.HttpStatusCode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* HttpStatusDescription_Get_mBCAF1CF569C7D10C4FCDA614E2265B4F4789799D (int32_t ___code0, const RuntimeMethod* method) { { int32_t L_0 = ___code0; String_t* L_1; L_1 = HttpStatusDescription_Get_mA25D6763223B9F856548976E4E7D8CA5B7468B0C(L_0, /*hidden argument*/NULL); return L_1; } } // System.String System.Net.HttpStatusDescription::Get(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* HttpStatusDescription_Get_mA25D6763223B9F856548976E4E7D8CA5B7468B0C (int32_t ___code0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0364C72BE904E3ADE54BF5E119AE5118FB40AA1A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral03B0003D0D8E2A8E5362DE99BBEA39EA96A9C3E5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral08A450F548521FDFEBA667312F9A431EE34BA178); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0A50A3D1071CE799296E5CFB761240C5B52DE775); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral119F0E9F42CFFBE1B27FEC0ECBBE9E085281B880); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1930F6D1B07497278FE515B25D6DD211CD6D3C18); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1A7AC5824B83EB5BA5D89B25F18BAE2101E973DA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1AB43FCBBA222F523FFCE3C9461AAB5D743F76D6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1AE348EAFA097AB898941EAFE912D711A407DA10); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1EF3C8F3B0F018FBA2C53A20A7D08610BCC629DD); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral24D17737E33030C56D2C3E06DB62C278083AA261); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral255FE37F496637BC45F444E342969CE065FC90C4); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral27F0FFEE5B6CC862A416BEBB70F083B5608654D1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral32AD7C42537BC83D17ED81607E9208D784DC1B19); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral32F74DBDB4B5F9723CBC53173B8D121D7C665A46); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3F252CD9ABB957173F446A397727620AD6EB7AF4); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral463E55B684AE43C1A3682F1D7FE7E39DDBC31E3E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4FB673A2A07C618E01768C6260511A6880551B23); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral55BBC16A4A40C09B90EAF098D099D3A5F4BC1F86); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral55F464F84B19794A979F344758FC55D19045FF02); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral564DEEC481C398C29E309566929FA09DD5B3886A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6CB9B09125F5657D30A7EE432F4D40804A093E7D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral723026F172D8ABA19C7E032F65CF137A11B4A798); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral77A0126B8A4943A5BC6B9D38FDB4A4DF4D2A6EBD); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral82B4B8E60DCE4DDEE3B897CE36A1EC95687CBF58); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral83F0F9FC74A47E5614C31204FEC7074328DABBCB); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9278193EC42D1B0C862FB45D4C3BA7010774B42F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA05C9D1B89012925BAEDD7624001935AA4B5543B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA4F9C2CEC1279047D9B945B18E0AAECA78865E73); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAA9773D742A5537400CADA67B6444803DEA37180); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralABC27212BEA204D7BA46C192101D57033D602159); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB49BEA8F924DADF63777282F4B1888A5C137DEE3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB579810D9A136F333128F9E937313B4E0B019571); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB993CE8D5531F2990366A7BFE03339AA151249EC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC123978EE5BDDE00D993F19944BEA3D43008E7E8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC29FA4DBBBB48AC826C19FA553AB7BEFD13201C8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC5C58F9068586CA1F05B25B4DA6A78E7BAA772B7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC758B8CF0FD7E0E94C11A471512F47DC85C293BB); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCB29749D0E878769D7FF81C337E5AEC541C7750A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD2369AFFF46A363B3E6260B0C136163AF05408A1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD59231C2422E7B5D41EA371645AFAAA13C6F1F9E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDBE75E9321FF5F55580F29826F9C3D7E78AD25BA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE586D26F2F2D2462A182B41FF7B0C66457161A10); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE753A25AE5A1E05C8AD795ADA386236516088D4F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE8DE367F5BD9DABB5C2820CA28E33FF70CF3E330); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF5BE21E2C6918506BE733726F596D12733E6552D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFB3E0ED07C46CFF60D19C0C5E71197CD62C54C4D); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___code0; if ((((int32_t)L_0) > ((int32_t)((int32_t)207)))) { goto IL_004e; } } { int32_t L_1 = ___code0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)((int32_t)100)))) { case 0: { goto IL_0123; } case 1: { goto IL_0129; } case 2: { goto IL_012f; } } } { int32_t L_2 = ___code0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)((int32_t)200)))) { case 0: { goto IL_0135; } case 1: { goto IL_013b; } case 2: { goto IL_0141; } case 3: { goto IL_0147; } case 4: { goto IL_014d; } case 5: { goto IL_0153; } case 6: { goto IL_0159; } case 7: { goto IL_015f; } } } { goto IL_023d; } IL_004e: { int32_t L_3 = ___code0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)((int32_t)300)))) { case 0: { goto IL_0165; } case 1: { goto IL_016b; } case 2: { goto IL_0171; } case 3: { goto IL_0177; } case 4: { goto IL_017d; } case 5: { goto IL_0183; } case 6: { goto IL_023d; } case 7: { goto IL_0189; } } } { int32_t L_4 = ___code0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)((int32_t)400)))) { case 0: { goto IL_018f; } case 1: { goto IL_0195; } case 2: { goto IL_019b; } case 3: { goto IL_01a1; } case 4: { goto IL_01a7; } case 5: { goto IL_01ad; } case 6: { goto IL_01b3; } case 7: { goto IL_01b9; } case 8: { goto IL_01bf; } case 9: { goto IL_01c5; } case 10: { goto IL_01cb; } case 11: { goto IL_01d1; } case 12: { goto IL_01d7; } case 13: { goto IL_01dd; } case 14: { goto IL_01e3; } case 15: { goto IL_01e9; } case 16: { goto IL_01ef; } case 17: { goto IL_01f5; } case 18: { goto IL_023d; } case 19: { goto IL_023d; } case 20: { goto IL_023d; } case 21: { goto IL_023d; } case 22: { goto IL_01fb; } case 23: { goto IL_0201; } case 24: { goto IL_0207; } case 25: { goto IL_023d; } case 26: { goto IL_020d; } } } { int32_t L_5 = ___code0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)((int32_t)500)))) { case 0: { goto IL_0213; } case 1: { goto IL_0219; } case 2: { goto IL_021f; } case 3: { goto IL_0225; } case 4: { goto IL_022b; } case 5: { goto IL_0231; } case 6: { goto IL_023d; } case 7: { goto IL_0237; } } } { goto IL_023d; } IL_0123: { return _stringLiteralE586D26F2F2D2462A182B41FF7B0C66457161A10; } IL_0129: { return _stringLiteralDBE75E9321FF5F55580F29826F9C3D7E78AD25BA; } IL_012f: { return _stringLiteral32AD7C42537BC83D17ED81607E9208D784DC1B19; } IL_0135: { return _stringLiteral1AE348EAFA097AB898941EAFE912D711A407DA10; } IL_013b: { return _stringLiteral9278193EC42D1B0C862FB45D4C3BA7010774B42F; } IL_0141: { return _stringLiteralE753A25AE5A1E05C8AD795ADA386236516088D4F; } IL_0147: { return _stringLiteral83F0F9FC74A47E5614C31204FEC7074328DABBCB; } IL_014d: { return _stringLiteralAA9773D742A5537400CADA67B6444803DEA37180; } IL_0153: { return _stringLiteral08A450F548521FDFEBA667312F9A431EE34BA178; } IL_0159: { return _stringLiteral119F0E9F42CFFBE1B27FEC0ECBBE9E085281B880; } IL_015f: { return _stringLiteralB49BEA8F924DADF63777282F4B1888A5C137DEE3; } IL_0165: { return _stringLiteralE8DE367F5BD9DABB5C2820CA28E33FF70CF3E330; } IL_016b: { return _stringLiteralA05C9D1B89012925BAEDD7624001935AA4B5543B; } IL_0171: { return _stringLiteral24D17737E33030C56D2C3E06DB62C278083AA261; } IL_0177: { return _stringLiteralF5BE21E2C6918506BE733726F596D12733E6552D; } IL_017d: { return _stringLiteral82B4B8E60DCE4DDEE3B897CE36A1EC95687CBF58; } IL_0183: { return _stringLiteral1930F6D1B07497278FE515B25D6DD211CD6D3C18; } IL_0189: { return _stringLiteral77A0126B8A4943A5BC6B9D38FDB4A4DF4D2A6EBD; } IL_018f: { return _stringLiteralD59231C2422E7B5D41EA371645AFAAA13C6F1F9E; } IL_0195: { return _stringLiteral255FE37F496637BC45F444E342969CE065FC90C4; } IL_019b: { return _stringLiteral1EF3C8F3B0F018FBA2C53A20A7D08610BCC629DD; } IL_01a1: { return _stringLiteralC123978EE5BDDE00D993F19944BEA3D43008E7E8; } IL_01a7: { return _stringLiteral55F464F84B19794A979F344758FC55D19045FF02; } IL_01ad: { return _stringLiteralA4F9C2CEC1279047D9B945B18E0AAECA78865E73; } IL_01b3: { return _stringLiteral723026F172D8ABA19C7E032F65CF137A11B4A798; } IL_01b9: { return _stringLiteral6CB9B09125F5657D30A7EE432F4D40804A093E7D; } IL_01bf: { return _stringLiteral03B0003D0D8E2A8E5362DE99BBEA39EA96A9C3E5; } IL_01c5: { return _stringLiteralABC27212BEA204D7BA46C192101D57033D602159; } IL_01cb: { return _stringLiteral1AB43FCBBA222F523FFCE3C9461AAB5D743F76D6; } IL_01d1: { return _stringLiteral3F252CD9ABB957173F446A397727620AD6EB7AF4; } IL_01d7: { return _stringLiteralC758B8CF0FD7E0E94C11A471512F47DC85C293BB; } IL_01dd: { return _stringLiteral564DEEC481C398C29E309566929FA09DD5B3886A; } IL_01e3: { return _stringLiteral4FB673A2A07C618E01768C6260511A6880551B23; } IL_01e9: { return _stringLiteral55BBC16A4A40C09B90EAF098D099D3A5F4BC1F86; } IL_01ef: { return _stringLiteralD2369AFFF46A363B3E6260B0C136163AF05408A1; } IL_01f5: { return _stringLiteralCB29749D0E878769D7FF81C337E5AEC541C7750A; } IL_01fb: { return _stringLiteral32F74DBDB4B5F9723CBC53173B8D121D7C665A46; } IL_0201: { return _stringLiteral0364C72BE904E3ADE54BF5E119AE5118FB40AA1A; } IL_0207: { return _stringLiteralB579810D9A136F333128F9E937313B4E0B019571; } IL_020d: { return _stringLiteralC5C58F9068586CA1F05B25B4DA6A78E7BAA772B7; } IL_0213: { return _stringLiteral463E55B684AE43C1A3682F1D7FE7E39DDBC31E3E; } IL_0219: { return _stringLiteral1A7AC5824B83EB5BA5D89B25F18BAE2101E973DA; } IL_021f: { return _stringLiteralB993CE8D5531F2990366A7BFE03339AA151249EC; } IL_0225: { return _stringLiteralC29FA4DBBBB48AC826C19FA553AB7BEFD13201C8; } IL_022b: { return _stringLiteral0A50A3D1071CE799296E5CFB761240C5B52DE775; } IL_0231: { return _stringLiteral27F0FFEE5B6CC862A416BEBB70F083B5608654D1; } IL_0237: { return _stringLiteralFB3E0ED07C46CFF60D19C0C5E71197CD62C54C4D; } IL_023d: { return (String_t*)NULL; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Net.HttpVersion::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpVersion__cctor_m28C73AF80CBE88253CE08E87C2C76AAFE33B4DED (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpVersion_t15E4A5DA9E037A055F4630E01EB12A988915448E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mA9BC7F2404CB129697C64851406DF468B753FFDF(L_0, 1, 0, /*hidden argument*/NULL); ((HttpVersion_t15E4A5DA9E037A055F4630E01EB12A988915448E_StaticFields*)il2cpp_codegen_static_fields_for(HttpVersion_t15E4A5DA9E037A055F4630E01EB12A988915448E_il2cpp_TypeInfo_var))->set_Version10_0(L_0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_1 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mA9BC7F2404CB129697C64851406DF468B753FFDF(L_1, 1, 1, /*hidden argument*/NULL); ((HttpVersion_t15E4A5DA9E037A055F4630E01EB12A988915448E_StaticFields*)il2cpp_codegen_static_fields_for(HttpVersion_t15E4A5DA9E037A055F4630E01EB12A988915448E_il2cpp_TypeInfo_var))->set_Version11_1(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.Net.HttpWebRequest::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequest__cctor_m5A396A851E86B56F55849BFFE08528A1483D59C8 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ((HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A_StaticFields*)il2cpp_codegen_static_fields_for(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A_il2cpp_TypeInfo_var))->set_defaultMaxResponseHeadersLength_54(((int32_t)65536)); return; } } // System.Void System.Net.HttpWebRequest::.ctor(System.Uri) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequest__ctor_m34F4D99DEAEB2ABDA7B321DE9D934E2AFFE7ED87 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpVersion_t15E4A5DA9E037A055F4630E01EB12A988915448E_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*)&WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6); s_Il2CppMethodInitialized = true; } { __this->set_allowAutoRedirect_15((bool)1); __this->set_allowBuffering_16((bool)1); __this->set_contentLength_20(((int64_t)((int64_t)(-1)))); __this->set_keepAlive_27((bool)1); __this->set_maxAutoRedirect_28(((int32_t)50)); String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); __this->set_mediaType_29(L_0); __this->set_method_30(_stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6); __this->set_initialMethod_31(_stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6); __this->set_pipelined_32((bool)1); IL2CPP_RUNTIME_CLASS_INIT(HttpVersion_t15E4A5DA9E037A055F4630E01EB12A988915448E_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_1 = ((HttpVersion_t15E4A5DA9E037A055F4630E01EB12A988915448E_StaticFields*)il2cpp_codegen_static_fields_for(HttpVersion_t15E4A5DA9E037A055F4630E01EB12A988915448E_il2cpp_TypeInfo_var))->get_Version11_1(); __this->set_version_35(L_1); __this->set_timeout_41(((int32_t)100000)); RuntimeObject * L_2 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(L_2, /*hidden argument*/NULL); __this->set_locker_51(L_2); __this->set_readWriteTimeout_55(((int32_t)300000)); IL2CPP_RUNTIME_CLASS_INIT(WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E_il2cpp_TypeInfo_var); WebRequest__ctor_m3ACCFDB5F433B9BC39C8A0E7A6629AB4DFF67B9A(__this, /*hidden argument*/NULL); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_3 = ___uri0; __this->set_requestUri_12(L_3); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_4 = ___uri0; __this->set_actualUri_13(L_4); RuntimeObject* L_5; L_5 = WebRequest_get_InternalDefaultWebProxy_m89CE4F19D2478740536BA55770E5B8311A6B5E92(/*hidden argument*/NULL); __this->set_proxy_38(L_5); WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_6 = (WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 *)il2cpp_codegen_object_new(WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4_il2cpp_TypeInfo_var); WebHeaderCollection__ctor_m6D0F9AAA2847C2E88504774B186D7187253FA463(L_6, 3, /*hidden argument*/NULL); __this->set_webHeaders_26(L_6); HttpWebRequest_set_ThrowOnError_mAAE39F767EF8CE4BA64472DD870F8116C0F306AA_inline(__this, (bool)1, /*hidden argument*/NULL); HttpWebRequest_ResetAuthorization_mB46C878D3130CF8EF4BB6547E17554A0DB49A56C(__this, /*hidden argument*/NULL); return; } } // System.Void System.Net.HttpWebRequest::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequest__ctor_m37FE79885E818FA7A4BB502CC00F216A40C759CF (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___serializationInfo0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___streamingContext1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpVersion_t15E4A5DA9E037A055F4630E01EB12A988915448E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IWebProxy_t27B6C29F0B62B717A9778AD251E31C21A91C32B3_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IWebProxy_t27B6C29F0B62B717A9778AD251E31C21A91C32B3_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*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3488D135BC095F9C0E239111D4289F524E08D1FC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4044F71E1BE65840634E2AF1C09536F10DBF2AF5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4D3FA87AD70FDA38C5DB0AB2E09C2350CF2423AF); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral50E959F3E0EEB3D739AC7919A13BB1F0932B9330); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6D70AF6CE5201D93C1F33B3E09C323C6D711A6D3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral77ECC8C351E23508E0840DADDC8F41A66A14CAFC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7BEFDD0A0757E283E60A94FE124494664FCFAC5D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral82EA3C9AFC08F0CECEBC1B257606B3106346FCAF); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral83682544C2518E15957808301F6AFA81555B7B99); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral92831A3FADAD854BEDD33A31A9754AEB8E61BACD); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB710A3516E150FA663CDCA0C2650AF2BDDE346A2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB764975C73BFA882AF2146869B213BBDDF06F6E4); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD072EB3279517095515F5954E1970330B3A510DC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD23E1D8D3BB0A59383DCD9925ED64F3642F85D3F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD69F44EE85E93078FAAAFEAB54A24724D3AC6786); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDD7A745EDCF0962E7880255CFF586992E8210B7F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE4FD92166270752CAF8CD83C4F787558916F3F4C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE6B69D85FB61842B89C67EF09BA23C056804EF34); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE705C6345C26AF82E64D22DBE44B2A3514F2F06F); s_Il2CppMethodInitialized = true; } SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * V_0 = NULL; { __this->set_allowAutoRedirect_15((bool)1); __this->set_allowBuffering_16((bool)1); __this->set_contentLength_20(((int64_t)((int64_t)(-1)))); __this->set_keepAlive_27((bool)1); __this->set_maxAutoRedirect_28(((int32_t)50)); String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); __this->set_mediaType_29(L_0); __this->set_method_30(_stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6); __this->set_initialMethod_31(_stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6); __this->set_pipelined_32((bool)1); IL2CPP_RUNTIME_CLASS_INIT(HttpVersion_t15E4A5DA9E037A055F4630E01EB12A988915448E_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_1 = ((HttpVersion_t15E4A5DA9E037A055F4630E01EB12A988915448E_StaticFields*)il2cpp_codegen_static_fields_for(HttpVersion_t15E4A5DA9E037A055F4630E01EB12A988915448E_il2cpp_TypeInfo_var))->get_Version11_1(); __this->set_version_35(L_1); __this->set_timeout_41(((int32_t)100000)); RuntimeObject * L_2 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(L_2, /*hidden argument*/NULL); __this->set_locker_51(L_2); __this->set_readWriteTimeout_55(((int32_t)300000)); IL2CPP_RUNTIME_CLASS_INIT(WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E_il2cpp_TypeInfo_var); WebRequest__ctor_m3ACCFDB5F433B9BC39C8A0E7A6629AB4DFF67B9A(__this, /*hidden argument*/NULL); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_3 = ___serializationInfo0; V_0 = L_3; SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_4 = V_0; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_5 = { reinterpret_cast (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_6; L_6 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_5, /*hidden argument*/NULL); NullCheck(L_4); RuntimeObject * L_7; L_7 = SerializationInfo_GetValue_mF6E311779D55AD7C80B2D19FF2A7E9683AEF2A99(L_4, _stringLiteralE4FD92166270752CAF8CD83C4F787558916F3F4C, L_6, /*hidden argument*/NULL); __this->set_requestUri_12(((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)CastclassClass((RuntimeObject*)L_7, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_8 = V_0; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_9 = { reinterpret_cast (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_0_0_0_var) }; Type_t * L_10; L_10 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_9, /*hidden argument*/NULL); NullCheck(L_8); RuntimeObject * L_11; L_11 = SerializationInfo_GetValue_mF6E311779D55AD7C80B2D19FF2A7E9683AEF2A99(L_8, _stringLiteralD072EB3279517095515F5954E1970330B3A510DC, L_10, /*hidden argument*/NULL); __this->set_actualUri_13(((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)CastclassClass((RuntimeObject*)L_11, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_12 = V_0; NullCheck(L_12); bool L_13; L_13 = SerializationInfo_GetBoolean_m705ADACFB52D6385DDB6B2525C1979ECBE6D5849(L_12, _stringLiteralDD7A745EDCF0962E7880255CFF586992E8210B7F, /*hidden argument*/NULL); __this->set_allowAutoRedirect_15(L_13); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_14 = V_0; NullCheck(L_14); bool L_15; L_15 = SerializationInfo_GetBoolean_m705ADACFB52D6385DDB6B2525C1979ECBE6D5849(L_14, _stringLiteral92831A3FADAD854BEDD33A31A9754AEB8E61BACD, /*hidden argument*/NULL); __this->set_allowBuffering_16(L_15); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_16 = V_0; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_17 = { reinterpret_cast (X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B_0_0_0_var) }; Type_t * L_18; L_18 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_17, /*hidden argument*/NULL); NullCheck(L_16); RuntimeObject * L_19; L_19 = SerializationInfo_GetValue_mF6E311779D55AD7C80B2D19FF2A7E9683AEF2A99(L_16, _stringLiteralB764975C73BFA882AF2146869B213BBDDF06F6E4, L_18, /*hidden argument*/NULL); __this->set_certificates_17(((X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B *)CastclassClass((RuntimeObject*)L_19, X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B_il2cpp_TypeInfo_var))); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_20 = V_0; NullCheck(L_20); String_t* L_21; L_21 = SerializationInfo_GetString_m50298DCBCD07D858EE19414052CB02EE4DDD3C2C(L_20, _stringLiteral77ECC8C351E23508E0840DADDC8F41A66A14CAFC, /*hidden argument*/NULL); __this->set_connectionGroup_18(L_21); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_22 = V_0; NullCheck(L_22); int64_t L_23; L_23 = SerializationInfo_GetInt64_m13BC92A489CE4540FC55BB00D2A3460B0D9A0DEC(L_22, _stringLiteralD23E1D8D3BB0A59383DCD9925ED64F3642F85D3F, /*hidden argument*/NULL); __this->set_contentLength_20(L_23); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_24 = V_0; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_25 = { reinterpret_cast (WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4_0_0_0_var) }; Type_t * L_26; L_26 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_25, /*hidden argument*/NULL); NullCheck(L_24); RuntimeObject * L_27; L_27 = SerializationInfo_GetValue_mF6E311779D55AD7C80B2D19FF2A7E9683AEF2A99(L_24, _stringLiteral83682544C2518E15957808301F6AFA81555B7B99, L_26, /*hidden argument*/NULL); __this->set_webHeaders_26(((WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 *)CastclassClass((RuntimeObject*)L_27, WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4_il2cpp_TypeInfo_var))); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_28 = V_0; NullCheck(L_28); bool L_29; L_29 = SerializationInfo_GetBoolean_m705ADACFB52D6385DDB6B2525C1979ECBE6D5849(L_28, _stringLiteralB710A3516E150FA663CDCA0C2650AF2BDDE346A2, /*hidden argument*/NULL); __this->set_keepAlive_27(L_29); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_30 = V_0; NullCheck(L_30); int32_t L_31; L_31 = SerializationInfo_GetInt32_mB22BBD01CBC189B7A76465CBFF7224F619395D30(L_30, _stringLiteral7BEFDD0A0757E283E60A94FE124494664FCFAC5D, /*hidden argument*/NULL); __this->set_maxAutoRedirect_28(L_31); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_32 = V_0; NullCheck(L_32); String_t* L_33; L_33 = SerializationInfo_GetString_m50298DCBCD07D858EE19414052CB02EE4DDD3C2C(L_32, _stringLiteral6D70AF6CE5201D93C1F33B3E09C323C6D711A6D3, /*hidden argument*/NULL); __this->set_mediaType_29(L_33); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_34 = V_0; NullCheck(L_34); String_t* L_35; L_35 = SerializationInfo_GetString_m50298DCBCD07D858EE19414052CB02EE4DDD3C2C(L_34, _stringLiteral82EA3C9AFC08F0CECEBC1B257606B3106346FCAF, /*hidden argument*/NULL); __this->set_method_30(L_35); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_36 = V_0; NullCheck(L_36); String_t* L_37; L_37 = SerializationInfo_GetString_m50298DCBCD07D858EE19414052CB02EE4DDD3C2C(L_36, _stringLiteral3488D135BC095F9C0E239111D4289F524E08D1FC, /*hidden argument*/NULL); __this->set_initialMethod_31(L_37); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_38 = V_0; NullCheck(L_38); bool L_39; L_39 = SerializationInfo_GetBoolean_m705ADACFB52D6385DDB6B2525C1979ECBE6D5849(L_38, _stringLiteral4D3FA87AD70FDA38C5DB0AB2E09C2350CF2423AF, /*hidden argument*/NULL); __this->set_pipelined_32(L_39); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_40 = V_0; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_41 = { reinterpret_cast (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_0_0_0_var) }; Type_t * L_42; L_42 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_41, /*hidden argument*/NULL); NullCheck(L_40); RuntimeObject * L_43; L_43 = SerializationInfo_GetValue_mF6E311779D55AD7C80B2D19FF2A7E9683AEF2A99(L_40, _stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052, L_42, /*hidden argument*/NULL); __this->set_version_35(((Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)CastclassSealed((RuntimeObject*)L_43, Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var))); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_44 = V_0; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_45 = { reinterpret_cast (IWebProxy_t27B6C29F0B62B717A9778AD251E31C21A91C32B3_0_0_0_var) }; Type_t * L_46; L_46 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_45, /*hidden argument*/NULL); NullCheck(L_44); RuntimeObject * L_47; L_47 = SerializationInfo_GetValue_mF6E311779D55AD7C80B2D19FF2A7E9683AEF2A99(L_44, _stringLiteralD69F44EE85E93078FAAAFEAB54A24724D3AC6786, L_46, /*hidden argument*/NULL); __this->set_proxy_38(((RuntimeObject*)Castclass((RuntimeObject*)L_47, IWebProxy_t27B6C29F0B62B717A9778AD251E31C21A91C32B3_il2cpp_TypeInfo_var))); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_48 = V_0; NullCheck(L_48); bool L_49; L_49 = SerializationInfo_GetBoolean_m705ADACFB52D6385DDB6B2525C1979ECBE6D5849(L_48, _stringLiteral50E959F3E0EEB3D739AC7919A13BB1F0932B9330, /*hidden argument*/NULL); __this->set_sendChunked_39(L_49); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_50 = V_0; NullCheck(L_50); int32_t L_51; L_51 = SerializationInfo_GetInt32_mB22BBD01CBC189B7A76465CBFF7224F619395D30(L_50, _stringLiteral4044F71E1BE65840634E2AF1C09536F10DBF2AF5, /*hidden argument*/NULL); __this->set_timeout_41(L_51); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_52 = V_0; NullCheck(L_52); int32_t L_53; L_53 = SerializationInfo_GetInt32_mB22BBD01CBC189B7A76465CBFF7224F619395D30(L_52, _stringLiteralE6B69D85FB61842B89C67EF09BA23C056804EF34, /*hidden argument*/NULL); __this->set_redirects_48(L_53); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_54 = V_0; NullCheck(L_54); String_t* L_55; L_55 = SerializationInfo_GetString_m50298DCBCD07D858EE19414052CB02EE4DDD3C2C(L_54, _stringLiteralE705C6345C26AF82E64D22DBE44B2A3514F2F06F, /*hidden argument*/NULL); __this->set_host_61(L_55); HttpWebRequest_ResetAuthorization_mB46C878D3130CF8EF4BB6547E17554A0DB49A56C(__this, /*hidden argument*/NULL); return; } } // System.Void System.Net.HttpWebRequest::ResetAuthorization() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequest_ResetAuthorization_mB46C878D3130CF8EF4BB6547E17554A0DB49A56C (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { { AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 L_0; memset((&L_0), 0, sizeof(L_0)); AuthorizationState__ctor_m33AFDC1A78F1C2709F58ADE60766E6DB40B23108((&L_0), __this, (bool)0, /*hidden argument*/NULL); __this->set_auth_state_59(L_0); AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 L_1; memset((&L_1), 0, sizeof(L_1)); AuthorizationState__ctor_m33AFDC1A78F1C2709F58ADE60766E6DB40B23108((&L_1), __this, (bool)1, /*hidden argument*/NULL); __this->set_proxy_auth_state_60(L_1); return; } } // System.Void System.Net.HttpWebRequest::SetSpecialHeaders(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequest_SetSpecialHeaders_m8C446813B49F5EF3779DEF1A24B097CE31B6D547 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, String_t* ___HeaderName0, String_t* ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4_il2cpp_TypeInfo_var); String_t* L_1; L_1 = WebHeaderCollection_CheckBadChars_m5362EEC82635C2EE076C81543FD65130C9EBD1CF(L_0, (bool)1, /*hidden argument*/NULL); ___value1 = L_1; WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_2 = __this->get_webHeaders_26(); String_t* L_3 = ___HeaderName0; NullCheck(L_2); WebHeaderCollection_RemoveInternal_m89528036293926837E8EA5703C1306C1E351B117(L_2, L_3, /*hidden argument*/NULL); String_t* L_4 = ___value1; NullCheck(L_4); int32_t L_5; L_5 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_002a; } } { WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_6 = __this->get_webHeaders_26(); String_t* L_7 = ___HeaderName0; String_t* L_8 = ___value1; NullCheck(L_6); WebHeaderCollection_AddInternal_m6B83E38C739FBD15C7F70C6304C786A1C3BA0B04(L_6, L_7, L_8, /*hidden argument*/NULL); } IL_002a: { return; } } // System.Void System.Net.HttpWebRequest::set_Accept(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequest_set_Accept_m7B41B22B55267564BD8E39178D6EAF4670DAC5BD (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral16D46E00A879AD1C9053ED90B4B148D721A45E92); s_Il2CppMethodInitialized = true; } { HttpWebRequest_CheckRequestStarted_mE63D6C6514D6956B8D1E3D8D027644BB28F77770(__this, /*hidden argument*/NULL); String_t* L_0 = ___value0; HttpWebRequest_SetSpecialHeaders_m8C446813B49F5EF3779DEF1A24B097CE31B6D547(__this, _stringLiteral16D46E00A879AD1C9053ED90B4B148D721A45E92, L_0, /*hidden argument*/NULL); return; } } // System.Uri System.Net.HttpWebRequest::get_Address() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * HttpWebRequest_get_Address_m8B4240A8AD46F12716B28F8549750BA30D2E368B (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { { Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_0 = __this->get_actualUri_13(); return L_0; } } // System.Void System.Net.HttpWebRequest::set_Address(System.Uri) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequest_set_Address_mE538AB6AC85692B1BD77E147BB6ECC7E4F5EB51E (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___value0, const RuntimeMethod* method) { { Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_0 = ___value0; __this->set_actualUri_13(L_0); return; } } // System.Boolean System.Net.HttpWebRequest::get_AllowWriteStreamBuffering() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HttpWebRequest_get_AllowWriteStreamBuffering_m4F3418F7730DD25F4D33BE63FB5C21AA89C06DAB (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_allowBuffering_16(); return L_0; } } // System.Net.DecompressionMethods System.Net.HttpWebRequest::get_AutomaticDecompression() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HttpWebRequest_get_AutomaticDecompression_mFABD0DE3DB921E7DBD581B204A431CB995706FE2 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_auto_decomp_53(); return L_0; } } // System.Boolean System.Net.HttpWebRequest::get_InternalAllowBuffering() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HttpWebRequest_get_InternalAllowBuffering_m6447C59856EA745F81D89B8BF10443D6DA1C5396 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_allowBuffering_16(); if (!L_0) { goto IL_000f; } } { bool L_1; L_1 = HttpWebRequest_get_MethodWithBuffer_mDFB58A016AEF0EA84BA2EF5F07F582B23D9FC035(__this, /*hidden argument*/NULL); return L_1; } IL_000f: { return (bool)0; } } // System.Boolean System.Net.HttpWebRequest::get_MethodWithBuffer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HttpWebRequest_get_MethodWithBuffer_mDFB58A016AEF0EA84BA2EF5F07F582B23D9FC035 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4C69A5ABD36AE74665BC61E90B89CFBA61C28AF8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral569045DB02C57E62748D078AAAB3C20AAB0640AB); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7DAC516092AE075D549759FBFE57497622D29F15); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral91AF7BC406658352833505726E74AFFBE9F4456D); s_Il2CppMethodInitialized = true; } { String_t* L_0 = __this->get_method_30(); bool L_1; L_1 = String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2(L_0, _stringLiteral7DAC516092AE075D549759FBFE57497622D29F15, /*hidden argument*/NULL); if (!L_1) { goto IL_0059; } } { String_t* L_2 = __this->get_method_30(); bool L_3; L_3 = String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2(L_2, _stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6, /*hidden argument*/NULL); if (!L_3) { goto IL_0059; } } { String_t* L_4 = __this->get_method_30(); bool L_5; L_5 = String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2(L_4, _stringLiteral91AF7BC406658352833505726E74AFFBE9F4456D, /*hidden argument*/NULL); if (!L_5) { goto IL_0059; } } { String_t* L_6 = __this->get_method_30(); bool L_7; L_7 = String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2(L_6, _stringLiteral4C69A5ABD36AE74665BC61E90B89CFBA61C28AF8, /*hidden argument*/NULL); if (!L_7) { goto IL_0059; } } { String_t* L_8 = __this->get_method_30(); bool L_9; L_9 = String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2(L_8, _stringLiteral569045DB02C57E62748D078AAAB3C20AAB0640AB, /*hidden argument*/NULL); return L_9; } IL_0059: { return (bool)0; } } // Mono.Security.Interface.MonoTlsProvider System.Net.HttpWebRequest::get_TlsProvider() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MonoTlsProvider_tBE72637BEDBD1516A1BC30D94F7159B7289CF0D7 * HttpWebRequest_get_TlsProvider_m522A745ADDE50C0F25D25A366E35A9DB0D4DE281 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { { MonoTlsProvider_tBE72637BEDBD1516A1BC30D94F7159B7289CF0D7 * L_0 = __this->get_tlsProvider_56(); return L_0; } } // Mono.Security.Interface.MonoTlsSettings System.Net.HttpWebRequest::get_TlsSettings() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MonoTlsSettings_tBDF72C906FE6477EFBA9493F7F5CB5ADE2C80E21 * HttpWebRequest_get_TlsSettings_mD57C8AFBCF00FD71E557AE9F87A1765BC4AF720A (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { { MonoTlsSettings_tBDF72C906FE6477EFBA9493F7F5CB5ADE2C80E21 * L_0 = __this->get_tlsSettings_57(); return L_0; } } // System.Security.Cryptography.X509Certificates.X509CertificateCollection System.Net.HttpWebRequest::get_ClientCertificates() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B * HttpWebRequest_get_ClientCertificates_m500DFD3C22558CD2AE72FD46DBCB100897182AD5 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B * L_0 = __this->get_certificates_17(); if (L_0) { goto IL_0013; } } { X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B * L_1 = (X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B *)il2cpp_codegen_object_new(X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B_il2cpp_TypeInfo_var); X509CertificateCollection__ctor_m038CE3FFE670E8DC426728EE334DF915BC3F1644(L_1, /*hidden argument*/NULL); __this->set_certificates_17(L_1); } IL_0013: { X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B * L_2 = __this->get_certificates_17(); return L_2; } } // System.Void System.Net.HttpWebRequest::set_Connection(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequest_set_Connection_mCB2AFC069CE58F31F7F1000A1ADE87E931EA1BF8 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral093507DEB05FB14DD8659BC619825EC3274FD8C6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8C5B5A80C04C3A4ACA2BEED3EDD587DD1F5398C6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBBC4BD37A426D68F16FC03A3F4AAC387168995BC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF7104A9589FA67ED48B653C3D5283464FCCA722D); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { HttpWebRequest_CheckRequestStarted_mE63D6C6514D6956B8D1E3D8D027644BB28F77770(__this, /*hidden argument*/NULL); String_t* L_0 = ___value0; bool L_1; L_1 = String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_001f; } } { WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_2 = __this->get_webHeaders_26(); NullCheck(L_2); WebHeaderCollection_RemoveInternal_m89528036293926837E8EA5703C1306C1E351B117(L_2, _stringLiteralBBC4BD37A426D68F16FC03A3F4AAC387168995BC, /*hidden argument*/NULL); return; } IL_001f: { String_t* L_3 = ___value0; NullCheck(L_3); String_t* L_4; L_4 = String_ToLowerInvariant_m070E99F11A6005755BD6579A6CC835694395F79F(L_3, /*hidden argument*/NULL); V_0 = L_4; String_t* L_5 = V_0; NullCheck(L_5); bool L_6; L_6 = String_Contains_mA26BDCCE8F191E8965EB8EEFC18BB4D0F85A075A(L_5, _stringLiteral8C5B5A80C04C3A4ACA2BEED3EDD587DD1F5398C6, /*hidden argument*/NULL); if (L_6) { goto IL_0040; } } { String_t* L_7 = V_0; NullCheck(L_7); bool L_8; L_8 = String_Contains_mA26BDCCE8F191E8965EB8EEFC18BB4D0F85A075A(L_7, _stringLiteral093507DEB05FB14DD8659BC619825EC3274FD8C6, /*hidden argument*/NULL); if (!L_8) { goto IL_004b; } } IL_0040: { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_9 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE38B6A6B7E4DA30BA1533DBC355658B090E943D9)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HttpWebRequest_set_Connection_mCB2AFC069CE58F31F7F1000A1ADE87E931EA1BF8_RuntimeMethod_var))); } IL_004b: { bool L_10 = __this->get_keepAlive_27(); if (!L_10) { goto IL_0060; } } { String_t* L_11 = ___value0; String_t* L_12; L_12 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_11, _stringLiteralF7104A9589FA67ED48B653C3D5283464FCCA722D, /*hidden argument*/NULL); ___value0 = L_12; } IL_0060: { WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_13 = __this->get_webHeaders_26(); String_t* L_14 = ___value0; NullCheck(L_13); WebHeaderCollection_CheckUpdate_mA9C6560CF6C8928ABCB0BEB858A00CAEC898FECF(L_13, _stringLiteralBBC4BD37A426D68F16FC03A3F4AAC387168995BC, L_14, /*hidden argument*/NULL); return; } } // System.Int64 System.Net.HttpWebRequest::get_ContentLength() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t HttpWebRequest_get_ContentLength_m153682CF433EEA898201F39005C0C49E2EFC011D (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { { int64_t L_0 = __this->get_contentLength_20(); return L_0; } } // System.Void System.Net.HttpWebRequest::set_ContentLength(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequest_set_ContentLength_mE2A505E5AADB267FDBB776C01BC7D5C79CCB0A2F (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, int64_t ___value0, const RuntimeMethod* method) { { HttpWebRequest_CheckRequestStarted_mE63D6C6514D6956B8D1E3D8D027644BB28F77770(__this, /*hidden argument*/NULL); int64_t L_0 = ___value0; if ((((int64_t)L_0) >= ((int64_t)((int64_t)((int64_t)0))))) { goto IL_001b; } } { ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_1 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_mE43AFC74F5F3932913C023A04B24905E093C5005(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral150A075BFD52624CD8474AD9151762042ECD5E36)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HttpWebRequest_set_ContentLength_mE2A505E5AADB267FDBB776C01BC7D5C79CCB0A2F_RuntimeMethod_var))); } IL_001b: { int64_t L_2 = ___value0; __this->set_contentLength_20(L_2); __this->set_haveContentLength_19((bool)1); return; } } // System.Void System.Net.HttpWebRequest::set_InternalContentLength(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequest_set_InternalContentLength_m83D835628EA18F9C6C453F108BAA772E0AF19C13 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, int64_t ___value0, const RuntimeMethod* method) { { int64_t L_0 = ___value0; __this->set_contentLength_20(L_0); return; } } // System.Boolean System.Net.HttpWebRequest::get_ThrowOnError() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HttpWebRequest_get_ThrowOnError_m0B8D02222A712AD394B318277BEB989794008266 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_U3CThrowOnErrorU3Ek__BackingField_63(); return L_0; } } // System.Void System.Net.HttpWebRequest::set_ThrowOnError(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequest_set_ThrowOnError_mAAE39F767EF8CE4BA64472DD870F8116C0F306AA (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set_U3CThrowOnErrorU3Ek__BackingField_63(L_0); return; } } // System.Void System.Net.HttpWebRequest::set_ContentType(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequest_set_ContentType_m0AD5A42D018BA841725A933F10F924F6FE140DB8 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5B58EBE31E594BF8FA4BEA3CD075473149322B18); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; HttpWebRequest_SetSpecialHeaders_m8C446813B49F5EF3779DEF1A24B097CE31B6D547(__this, _stringLiteral5B58EBE31E594BF8FA4BEA3CD075473149322B18, L_0, /*hidden argument*/NULL); return; } } // System.Net.ICredentials System.Net.HttpWebRequest::get_Credentials() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* HttpWebRequest_get_Credentials_mAD678DD9458AE9AD92B40C52C488C1FCC0FF1083 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = __this->get_credentials_23(); return L_0; } } // System.Void System.Net.HttpWebRequest::set_Credentials(System.Net.ICredentials) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequest_set_Credentials_mBF9584583D3341B305161654AD79D9B16CE5894D (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, RuntimeObject* ___value0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___value0; __this->set_credentials_23(L_0); return; } } // System.Void System.Net.HttpWebRequest::set_Expect(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequest_set_Expect_m1027F3D356A5B51E1E3246F02093358AA6114A98 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC2CC7AACC16A09D4E080B1F896BFA903A86AFAC4); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD83A084C77919D323023FA38BD9EC97511C0C3F1); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { HttpWebRequest_CheckRequestStarted_mE63D6C6514D6956B8D1E3D8D027644BB28F77770(__this, /*hidden argument*/NULL); String_t* L_0 = ___value0; V_0 = L_0; String_t* L_1 = V_0; if (!L_1) { goto IL_0017; } } { String_t* L_2 = V_0; NullCheck(L_2); String_t* L_3; L_3 = String_Trim_m3FEC641D7046124B7F381701903B50B5171DE0A2(L_2, /*hidden argument*/NULL); NullCheck(L_3); String_t* L_4; L_4 = String_ToLower_m7875A49FE166D0A68F3F6B6E70C0C056EBEFD31D(L_3, /*hidden argument*/NULL); V_0 = L_4; } IL_0017: { String_t* L_5 = V_0; if (!L_5) { goto IL_0022; } } { String_t* L_6 = V_0; NullCheck(L_6); int32_t L_7; L_7 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_6, /*hidden argument*/NULL); if (L_7) { goto IL_0033; } } IL_0022: { WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_8 = __this->get_webHeaders_26(); NullCheck(L_8); WebHeaderCollection_RemoveInternal_m89528036293926837E8EA5703C1306C1E351B117(L_8, _stringLiteralD83A084C77919D323023FA38BD9EC97511C0C3F1, /*hidden argument*/NULL); return; } IL_0033: { String_t* L_9 = V_0; bool L_10; L_10 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_9, _stringLiteralC2CC7AACC16A09D4E080B1F896BFA903A86AFAC4, /*hidden argument*/NULL); if (!L_10) { goto IL_0050; } } { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_11 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_11, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral124537AF647CA248AF101F80C2722CE993047BFB)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HttpWebRequest_set_Expect_m1027F3D356A5B51E1E3246F02093358AA6114A98_RuntimeMethod_var))); } IL_0050: { WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_12 = __this->get_webHeaders_26(); String_t* L_13 = ___value0; NullCheck(L_12); WebHeaderCollection_CheckUpdate_mA9C6560CF6C8928ABCB0BEB858A00CAEC898FECF(L_12, _stringLiteralD83A084C77919D323023FA38BD9EC97511C0C3F1, L_13, /*hidden argument*/NULL); return; } } // System.Net.WebHeaderCollection System.Net.HttpWebRequest::get_Headers() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * HttpWebRequest_get_Headers_m2BFF4F7AD7602BFD3F0A3A8981B8BE743558220E (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { { WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_0 = __this->get_webHeaders_26(); return L_0; } } // System.Void System.Net.HttpWebRequest::set_Headers(System.Net.WebHeaderCollection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequest_set_Headers_mEDBAFA9EB14A64C65051206202B07F57155B165F (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * V_0 = NULL; WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * V_1 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* V_2 = NULL; int32_t V_3 = 0; String_t* V_4 = NULL; { HttpWebRequest_CheckRequestStarted_mE63D6C6514D6956B8D1E3D8D027644BB28F77770(__this, /*hidden argument*/NULL); WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_0 = ___value0; V_0 = L_0; WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_1 = (WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 *)il2cpp_codegen_object_new(WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4_il2cpp_TypeInfo_var); WebHeaderCollection__ctor_m6D0F9AAA2847C2E88504774B186D7187253FA463(L_1, 3, /*hidden argument*/NULL); V_1 = L_1; WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_2 = V_0; NullCheck(L_2); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_3; L_3 = VirtualFuncInvoker0< StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* >::Invoke(22 /* System.String[] System.Collections.Specialized.NameValueCollection::get_AllKeys() */, L_2); V_2 = L_3; V_3 = 0; goto IL_0033; } IL_001a: { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_4 = V_2; int32_t L_5 = V_3; NullCheck(L_4); int32_t L_6 = L_5; String_t* L_7 = (L_4)->GetAt(static_cast(L_6)); V_4 = L_7; WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_8 = V_1; String_t* L_9 = V_4; WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_10 = V_0; String_t* L_11 = V_4; NullCheck(L_10); String_t* L_12; L_12 = NameValueCollection_get_Item_mCA21B55D4454D35073475B2966BA0F9207D16FED(L_10, L_11, /*hidden argument*/NULL); NullCheck(L_8); VirtualActionInvoker2< String_t*, String_t* >::Invoke(15 /* System.Void System.Collections.Specialized.NameValueCollection::Add(System.String,System.String) */, L_8, L_9, L_12); int32_t L_13 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)); } IL_0033: { int32_t L_14 = V_3; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_15 = V_2; NullCheck(L_15); if ((((int32_t)L_14) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_15)->max_length)))))) { goto IL_001a; } } { WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_16 = V_1; __this->set_webHeaders_26(L_16); return; } } // System.String System.Net.HttpWebRequest::get_Host() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* HttpWebRequest_get_Host_m4BE36083497FB8F5B7F317A1C097C0BCBE993533 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_host_61(); if (L_0) { goto IL_0014; } } { Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_1 = __this->get_actualUri_13(); NullCheck(L_1); String_t* L_2; L_2 = Uri_get_Authority_m453C817B1681F5FD99431A7FDF6F11CDB9FAC093(L_1, /*hidden argument*/NULL); return L_2; } IL_0014: { String_t* L_3 = __this->get_host_61(); return L_3; } } // System.Void System.Net.HttpWebRequest::set_Host(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequest_set_Host_m3EBF27EB9FF9388DCA96DA8D7D007DE72C43C90C (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HttpWebRequest_set_Host_m3EBF27EB9FF9388DCA96DA8D7D007DE72C43C90C_RuntimeMethod_var))); } IL_000e: { Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_2 = __this->get_actualUri_13(); NullCheck(L_2); String_t* L_3; L_3 = Uri_get_Scheme_mEC4980E1C82DE3963007E33C759742A02A26FF29(L_2, /*hidden argument*/NULL); String_t* L_4 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A_il2cpp_TypeInfo_var); bool L_5; L_5 = HttpWebRequest_CheckValidHost_m97757C1B4B8D674CC94A590E272CCBAE0D19355A(L_3, L_4, /*hidden argument*/NULL); if (L_5) { goto IL_0032; } } { String_t* L_6 = ___value0; String_t* L_7; L_7 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral733B028A6A17EFB43054EA0EC29D81659F2320AB)), L_6, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_8, L_7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HttpWebRequest_set_Host_m3EBF27EB9FF9388DCA96DA8D7D007DE72C43C90C_RuntimeMethod_var))); } IL_0032: { String_t* L_9 = ___value0; __this->set_host_61(L_9); return; } } // System.Boolean System.Net.HttpWebRequest::CheckValidHost(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HttpWebRequest_CheckValidHost_m97757C1B4B8D674CC94A590E272CCBAE0D19355A (String_t* ___scheme0, String_t* ___val1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6A1D52382547009AB732F651FE2CA42F1BBA769A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1); s_Il2CppMethodInitialized = true; } IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * V_0 = NULL; { String_t* L_0 = ___val1; NullCheck(L_0); int32_t L_1; L_1 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_0, /*hidden argument*/NULL); if (L_1) { goto IL_000a; } } { return (bool)0; } IL_000a: { String_t* L_2 = ___val1; NullCheck(L_2); Il2CppChar L_3; L_3 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_2, 0, /*hidden argument*/NULL); if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)46))))) { goto IL_0017; } } { return (bool)0; } IL_0017: { String_t* L_4 = ___val1; NullCheck(L_4); int32_t L_5; L_5 = String_IndexOf_mEE2D2F738175E3FF05580366D6226DBD673CA2BE(L_4, ((int32_t)47), /*hidden argument*/NULL); if ((((int32_t)L_5) < ((int32_t)0))) { goto IL_0024; } } { return (bool)0; } IL_0024: { String_t* L_6 = ___val1; IL2CPP_RUNTIME_CLASS_INIT(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var); bool L_7; L_7 = IPAddress_TryParse_m43158BF9D76398954BE04773A6A15898EFE27F3E(L_6, (IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE **)(&V_0), /*hidden argument*/NULL); if (!L_7) { goto IL_0030; } } { return (bool)1; } IL_0030: { String_t* L_8 = ___scheme0; String_t* L_9 = ___val1; String_t* L_10; L_10 = String_Concat_m37A5BF26F8F8F1892D60D727303B23FB604FEE78(L_8, _stringLiteral6A1D52382547009AB732F651FE2CA42F1BBA769A, L_9, _stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_11; L_11 = Uri_IsWellFormedUriString_mF90D5434E6C63D063E21C97064A098F6DB3C5CBA(L_10, 1, /*hidden argument*/NULL); return L_11; } } // System.Boolean System.Net.HttpWebRequest::get_KeepAlive() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HttpWebRequest_get_KeepAlive_mFCE6EAEB969B0519309095AF291907CA714D85E9 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_keepAlive_27(); return L_0; } } // System.Int32 System.Net.HttpWebRequest::get_ReadWriteTimeout() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HttpWebRequest_get_ReadWriteTimeout_mFEC5FFC4F714670AD8CBF7D7191AB38C1C1465F1 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_readWriteTimeout_55(); return L_0; } } // System.String System.Net.HttpWebRequest::get_Method() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* HttpWebRequest_get_Method_m959D0808BFBE779B78B94445AD825689FAF2C12A (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_method_30(); return L_0; } } // System.Void System.Net.HttpWebRequest::set_Method(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequest_set_Method_m5A27BF0559BFF8E1D1E25133E7138FC41B3D6CE4 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral053EEFAEF1C074E36F0A13EAC660D9884666B708); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral14E338D17C42E552FA7AF42CDAE40CA1F0E8A04D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4C69A5ABD36AE74665BC61E90B89CFBA61C28AF8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral569045DB02C57E62748D078AAAB3C20AAB0640AB); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7DAC516092AE075D549759FBFE57497622D29F15); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral91AF7BC406658352833505726E74AFFBE9F4456D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDD6065F6BEE8EC9D2DE042E63D3ABB71AA1D0A38); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; if (!L_0) { goto IL_0015; } } { String_t* L_1 = ___value0; NullCheck(L_1); String_t* L_2; L_2 = String_Trim_m3FEC641D7046124B7F381701903B50B5171DE0A2(L_1, /*hidden argument*/NULL); bool L_3; L_3 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_2, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, /*hidden argument*/NULL); if (!L_3) { goto IL_0020; } } IL_0015: { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3CC4026FE171927653778424F8334FE664A643C5)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HttpWebRequest_set_Method_m5A27BF0559BFF8E1D1E25133E7138FC41B3D6CE4_RuntimeMethod_var))); } IL_0020: { String_t* L_5 = ___value0; NullCheck(L_5); String_t* L_6; L_6 = String_ToUpperInvariant_mA1D82B6DA175D228E2BE5A315B4C68AB222FA84E(L_5, /*hidden argument*/NULL); __this->set_method_30(L_6); String_t* L_7 = __this->get_method_30(); bool L_8; L_8 = String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2(L_7, _stringLiteral7DAC516092AE075D549759FBFE57497622D29F15, /*hidden argument*/NULL); if (!L_8) { goto IL_00c6; } } { String_t* L_9 = __this->get_method_30(); bool L_10; L_10 = String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2(L_9, _stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6, /*hidden argument*/NULL); if (!L_10) { goto IL_00c6; } } { String_t* L_11 = __this->get_method_30(); bool L_12; L_12 = String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2(L_11, _stringLiteral14E338D17C42E552FA7AF42CDAE40CA1F0E8A04D, /*hidden argument*/NULL); if (!L_12) { goto IL_00c6; } } { String_t* L_13 = __this->get_method_30(); bool L_14; L_14 = String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2(L_13, _stringLiteral053EEFAEF1C074E36F0A13EAC660D9884666B708, /*hidden argument*/NULL); if (!L_14) { goto IL_00c6; } } { String_t* L_15 = __this->get_method_30(); bool L_16; L_16 = String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2(L_15, _stringLiteralDD6065F6BEE8EC9D2DE042E63D3ABB71AA1D0A38, /*hidden argument*/NULL); if (!L_16) { goto IL_00c6; } } { String_t* L_17 = __this->get_method_30(); bool L_18; L_18 = String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2(L_17, _stringLiteral4C69A5ABD36AE74665BC61E90B89CFBA61C28AF8, /*hidden argument*/NULL); if (!L_18) { goto IL_00c6; } } { String_t* L_19 = __this->get_method_30(); bool L_20; L_20 = String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2(L_19, _stringLiteral569045DB02C57E62748D078AAAB3C20AAB0640AB, /*hidden argument*/NULL); if (!L_20) { goto IL_00c6; } } { String_t* L_21 = __this->get_method_30(); bool L_22; L_22 = String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2(L_21, _stringLiteral91AF7BC406658352833505726E74AFFBE9F4456D, /*hidden argument*/NULL); if (!L_22) { goto IL_00c6; } } { String_t* L_23 = ___value0; __this->set_method_30(L_23); } IL_00c6: { return; } } // System.Version System.Net.HttpWebRequest::get_ProtocolVersion() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * HttpWebRequest_get_ProtocolVersion_m782143F502A32DD7BCA0F1C1810BBE181986F6CD (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { { Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = __this->get_version_35(); return L_0; } } // System.Net.IWebProxy System.Net.HttpWebRequest::get_Proxy() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* HttpWebRequest_get_Proxy_mE1831C8332A00D2D8FBDB8103EBAA114D6C66936 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = __this->get_proxy_38(); return L_0; } } // System.Void System.Net.HttpWebRequest::set_Proxy(System.Net.IWebProxy) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequest_set_Proxy_mF007EF7A8B1DA5EFB7DFCCB978D38EBC745B4189 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, RuntimeObject* ___value0, const RuntimeMethod* method) { { HttpWebRequest_CheckRequestStarted_mE63D6C6514D6956B8D1E3D8D027644BB28F77770(__this, /*hidden argument*/NULL); RuntimeObject* L_0 = ___value0; __this->set_proxy_38(L_0); __this->set_servicePoint_40((ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 *)NULL); ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * L_1; L_1 = HttpWebRequest_GetServicePoint_m380927C1AF6310F83D8BD1B578B9B7B06AB32A3A(__this, /*hidden argument*/NULL); return; } } // System.Void System.Net.HttpWebRequest::set_Referer(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequest_set_Referer_mDF9B4207F56FB48772392386CB692B08F5F53A5E (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1488F649920198F59A3B53EA7C81503935DEF05E); s_Il2CppMethodInitialized = true; } { HttpWebRequest_CheckRequestStarted_mE63D6C6514D6956B8D1E3D8D027644BB28F77770(__this, /*hidden argument*/NULL); String_t* L_0 = ___value0; if (!L_0) { goto IL_0016; } } { String_t* L_1 = ___value0; NullCheck(L_1); String_t* L_2; L_2 = String_Trim_m3FEC641D7046124B7F381701903B50B5171DE0A2(L_1, /*hidden argument*/NULL); NullCheck(L_2); int32_t L_3; L_3 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_2, /*hidden argument*/NULL); if (L_3) { goto IL_0027; } } IL_0016: { WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_4 = __this->get_webHeaders_26(); NullCheck(L_4); WebHeaderCollection_RemoveInternal_m89528036293926837E8EA5703C1306C1E351B117(L_4, _stringLiteral1488F649920198F59A3B53EA7C81503935DEF05E, /*hidden argument*/NULL); return; } IL_0027: { WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_5 = __this->get_webHeaders_26(); String_t* L_6 = ___value0; NullCheck(L_5); WebHeaderCollection_SetInternal_mD14173DCCD03148462674B04D44BCD60E32BAEB8(L_5, _stringLiteral1488F649920198F59A3B53EA7C81503935DEF05E, L_6, /*hidden argument*/NULL); return; } } // System.Uri System.Net.HttpWebRequest::get_RequestUri() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * HttpWebRequest_get_RequestUri_m26CBEF035713103C4B27E32C0B0A08B4F43AC4C9 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { { Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_0 = __this->get_requestUri_12(); return L_0; } } // System.Boolean System.Net.HttpWebRequest::get_SendChunked() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HttpWebRequest_get_SendChunked_m8E640766CDE7A99AA19F42DD4F1A0A4A19074776 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_sendChunked_39(); return L_0; } } // System.Net.ServicePoint System.Net.HttpWebRequest::get_ServicePoint() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * HttpWebRequest_get_ServicePoint_m87CA558F0C7B4A6D585F42616771173F75DE2567 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { { ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * L_0; L_0 = HttpWebRequest_GetServicePoint_m380927C1AF6310F83D8BD1B578B9B7B06AB32A3A(__this, /*hidden argument*/NULL); return L_0; } } // System.Net.ServicePoint System.Net.HttpWebRequest::get_ServicePointNoLock() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * HttpWebRequest_get_ServicePointNoLock_mAB6BB5851482B6EA1FFB3943897D7B9399795B13 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { { ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * L_0 = __this->get_servicePoint_40(); return L_0; } } // System.Int32 System.Net.HttpWebRequest::get_Timeout() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HttpWebRequest_get_Timeout_m182C995FDC79E6F04570169AC33A0448E32ECC79 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_timeout_41(); return L_0; } } // System.String System.Net.HttpWebRequest::get_TransferEncoding() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* HttpWebRequest_get_TransferEncoding_m7F6F14E19631A22F3FFEF7AAEACA2702A98B1668 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral68ACB6B47D3431BDBD286C3153B250E20552A4AD); s_Il2CppMethodInitialized = true; } { WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_0 = __this->get_webHeaders_26(); NullCheck(L_0); String_t* L_1; L_1 = NameValueCollection_get_Item_mCA21B55D4454D35073475B2966BA0F9207D16FED(L_0, _stringLiteral68ACB6B47D3431BDBD286C3153B250E20552A4AD, /*hidden argument*/NULL); return L_1; } } // System.Boolean System.Net.HttpWebRequest::get_UseDefaultCredentials() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HttpWebRequest_get_UseDefaultCredentials_m768CD272BFB25ED46F296480BF07D15E3CDB8981 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { { RuntimeObject* L_0; L_0 = CredentialCache_get_DefaultCredentials_m04BE43C08715BE89006B3E298A7706E7C05D05AA_inline(/*hidden argument*/NULL); RuntimeObject* L_1; L_1 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(17 /* System.Net.ICredentials System.Net.WebRequest::get_Credentials() */, __this); return (bool)((((RuntimeObject*)(RuntimeObject*)L_0) == ((RuntimeObject*)(RuntimeObject*)L_1))? 1 : 0); } } // System.Void System.Net.HttpWebRequest::set_UserAgent(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequest_set_UserAgent_m65BC4B6DB21940A86896691156D440026410FE17 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral48C75149E263D08DBE3F3CB86DF011FA96C010AF); s_Il2CppMethodInitialized = true; } { WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_0 = __this->get_webHeaders_26(); String_t* L_1 = ___value0; NullCheck(L_0); WebHeaderCollection_SetInternal_mD14173DCCD03148462674B04D44BCD60E32BAEB8(L_0, _stringLiteral48C75149E263D08DBE3F3CB86DF011FA96C010AF, L_1, /*hidden argument*/NULL); return; } } // System.Boolean System.Net.HttpWebRequest::get_UnsafeAuthenticatedConnectionSharing() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HttpWebRequest_get_UnsafeAuthenticatedConnectionSharing_m1AB8D793FB4FC146D1656CFAC2EF24EF26BC48F6 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_unsafe_auth_blah_64(); return L_0; } } // System.Boolean System.Net.HttpWebRequest::get_ExpectContinue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HttpWebRequest_get_ExpectContinue_m86E7F74975F7E4B1CD45F78C054B21B7B8B65966 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_expectContinue_49(); return L_0; } } // System.Void System.Net.HttpWebRequest::set_ExpectContinue(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequest_set_ExpectContinue_mE358227A4289083DD0E5E40E836D060C3B9B87A8 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set_expectContinue_49(L_0); return; } } // System.Uri System.Net.HttpWebRequest::get_AuthUri() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * HttpWebRequest_get_AuthUri_m73CE601DCC9A4F368AEA6186CDC4FFBA20D3A11A (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { { Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_0 = __this->get_actualUri_13(); return L_0; } } // System.Boolean System.Net.HttpWebRequest::get_ProxyQuery() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HttpWebRequest_get_ProxyQuery_m5AC4ED79E30E2253BE5508B87805592B4FD2F1F5 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { { ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * L_0 = __this->get_servicePoint_40(); NullCheck(L_0); bool L_1; L_1 = ServicePoint_get_UsesProxy_mE6CE550E4DFEB85A673160DE35CD67AFA87F35BD_inline(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_001c; } } { ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * L_2 = __this->get_servicePoint_40(); NullCheck(L_2); bool L_3; L_3 = ServicePoint_get_UseConnect_m33B1EC23452734FFED85B21F9439A546BFBD3CC7_inline(L_2, /*hidden argument*/NULL); return (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0); } IL_001c: { return (bool)0; } } // System.Net.ServerCertValidationCallback System.Net.HttpWebRequest::get_ServerCertValidationCallback() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ServerCertValidationCallback_t885D5EF5D7240832CCAD6FA7D59D4ED2DEAAB1FA * HttpWebRequest_get_ServerCertValidationCallback_mC40F344BFA88D34DBD794CDB8BD0B8A5F5D78AA6 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { { ServerCertValidationCallback_t885D5EF5D7240832CCAD6FA7D59D4ED2DEAAB1FA * L_0 = __this->get_certValidationCallback_58(); return L_0; } } // System.Net.ServicePoint System.Net.HttpWebRequest::GetServicePoint() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * HttpWebRequest_GetServicePoint_m380927C1AF6310F83D8BD1B578B9B7B06AB32A3A (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ServicePointManager_tD9336F95A52899746A9008AF4A3505363FD2C2AD_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; bool V_1 = false; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { RuntimeObject * L_0 = __this->get_locker_51(); V_0 = L_0; V_1 = (bool)0; } IL_0009: try {// begin try (depth: 1) { RuntimeObject * L_1 = V_0; Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4(L_1, (bool*)(&V_1), /*hidden argument*/NULL); bool L_2 = __this->get_hostChanged_14(); if (L_2) { goto IL_0021; } } IL_0019: { ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * L_3 = __this->get_servicePoint_40(); if (L_3) { goto IL_003f; } } IL_0021: { Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_4 = __this->get_actualUri_13(); RuntimeObject* L_5 = __this->get_proxy_38(); IL2CPP_RUNTIME_CLASS_INIT(ServicePointManager_tD9336F95A52899746A9008AF4A3505363FD2C2AD_il2cpp_TypeInfo_var); ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * L_6; L_6 = ServicePointManager_FindServicePoint_m109F6EB5F2E4E9C818FC341CABC1716C2A460586(L_4, L_5, /*hidden argument*/NULL); __this->set_servicePoint_40(L_6); __this->set_hostChanged_14((bool)0); } IL_003f: { IL2CPP_LEAVE(0x4B, FINALLY_0041); } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0041; } FINALLY_0041: {// begin finally (depth: 1) { bool L_7 = V_1; if (!L_7) { goto IL_004a; } } IL_0044: { RuntimeObject * L_8 = V_0; Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A(L_8, /*hidden argument*/NULL); } IL_004a: { IL2CPP_END_FINALLY(65) } }// end finally (depth: 1) IL2CPP_CLEANUP(65) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x4B, IL_004b) } IL_004b: { ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * L_9 = __this->get_servicePoint_40(); return L_9; } } // System.Net.WebOperation System.Net.HttpWebRequest::SendRequest(System.Boolean,System.Net.BufferOffsetSize,System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * HttpWebRequest_SendRequest_mD19869D903F914F762A6C7CAE53A4078FEC94040 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, bool ___redirecting0, BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F * ___writeBuffer1, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; bool V_1 = false; WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * V_2 = NULL; WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * V_3 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { RuntimeObject * L_0 = __this->get_locker_51(); V_0 = L_0; V_1 = (bool)0; } IL_0009: try {// begin try (depth: 1) { RuntimeObject * L_1 = V_0; Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4(L_1, (bool*)(&V_1), /*hidden argument*/NULL); bool L_2 = ___redirecting0; if (L_2) { goto IL_0035; } } IL_0014: { bool L_3 = __this->get_requestSent_25(); if (!L_3) { goto IL_0035; } } IL_001c: { WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * L_4 = __this->get_currentOperation_45(); V_2 = L_4; WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * L_5 = V_2; if (L_5) { goto IL_0031; } } IL_0026: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_6 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4D964E3542CA396276F7DDCCE27613D982065CFF)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HttpWebRequest_SendRequest_mD19869D903F914F762A6C7CAE53A4078FEC94040_RuntimeMethod_var))); } IL_0031: { WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * L_7 = V_2; V_3 = L_7; IL2CPP_LEAVE(0x96, FINALLY_008c); } IL_0035: { BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F * L_8 = ___writeBuffer1; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_9 = ___cancellationToken2; WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * L_10 = (WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 *)il2cpp_codegen_object_new(WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00_il2cpp_TypeInfo_var); WebOperation__ctor_m96504E6643DE8C742BA96388F16B1A96E1241B61(L_10, __this, L_8, (bool)0, L_9, /*hidden argument*/NULL); V_2 = L_10; WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 ** L_11 = __this->get_address_of_currentOperation_45(); WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * L_12 = V_2; WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * L_13; L_13 = InterlockedCompareExchangeImpl((WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 **)L_11, L_12, (WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 *)NULL); if (!L_13) { goto IL_0059; } } IL_004e: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_14 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_14, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCFE25B37C16B0E4BB7D218D140551332C7027A1D)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HttpWebRequest_SendRequest_mD19869D903F914F762A6C7CAE53A4078FEC94040_RuntimeMethod_var))); } IL_0059: { __this->set_requestSent_25((bool)1); bool L_15 = ___redirecting0; if (L_15) { goto IL_006a; } } IL_0063: { __this->set_redirects_48(0); } IL_006a: { ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * L_16; L_16 = HttpWebRequest_GetServicePoint_m380927C1AF6310F83D8BD1B578B9B7B06AB32A3A(__this, /*hidden argument*/NULL); __this->set_servicePoint_40(L_16); ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * L_17 = __this->get_servicePoint_40(); WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * L_18 = V_2; String_t* L_19 = __this->get_connectionGroup_18(); NullCheck(L_17); ServicePoint_SendRequest_mED98FDFB12725FDB1BFF3E6D08AFD9B2C8674AB7(L_17, L_18, L_19, /*hidden argument*/NULL); WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * L_20 = V_2; V_3 = L_20; IL2CPP_LEAVE(0x96, FINALLY_008c); } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_008c; } FINALLY_008c: {// begin finally (depth: 1) { bool L_21 = V_1; if (!L_21) { goto IL_0095; } } IL_008f: { RuntimeObject * L_22 = V_0; Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A(L_22, /*hidden argument*/NULL); } IL_0095: { IL2CPP_END_FINALLY(140) } }// end finally (depth: 1) IL2CPP_CLEANUP(140) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x96, IL_0096) } IL_0096: { WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * L_23 = V_3; return L_23; } } // System.Threading.Tasks.Task`1 System.Net.HttpWebRequest::MyGetResponseAsync(System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t4B8CF50BCA70ADAD54A2813B464DF4A25F896857 * HttpWebRequest_MyGetResponseAsync_m5A859A0730A22DFA2D6495F46AFABED7AA3000AC (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_Create_m0323F5F458EB90D6A9ACBD8D234274194ED2D6DB_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_Start_TisU3CMyGetResponseAsyncU3Ed__236_t2A216534B524FE18EECD3B35C67CE5AB4767E7F1_m6082A579E513B450D8B1CF9C33AC310F1DB2E4A7_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_get_Task_m5DD3A19AD3B8F6F0F0D97C39656E386ECD9D3EF7_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_tC844D2260A71782812AB64F7BF5EDC8C4ED35A75_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } U3CMyGetResponseAsyncU3Ed__236_t2A216534B524FE18EECD3B35C67CE5AB4767E7F1 V_0; memset((&V_0), 0, sizeof(V_0)); AsyncTaskMethodBuilder_1_tC844D2260A71782812AB64F7BF5EDC8C4ED35A75 V_1; memset((&V_1), 0, sizeof(V_1)); { (&V_0)->set_U3CU3E4__this_2(__this); CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_0 = ___cancellationToken0; (&V_0)->set_cancellationToken_3(L_0); IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskMethodBuilder_1_tC844D2260A71782812AB64F7BF5EDC8C4ED35A75_il2cpp_TypeInfo_var); AsyncTaskMethodBuilder_1_tC844D2260A71782812AB64F7BF5EDC8C4ED35A75 L_1; L_1 = AsyncTaskMethodBuilder_1_Create_m0323F5F458EB90D6A9ACBD8D234274194ED2D6DB(/*hidden argument*/AsyncTaskMethodBuilder_1_Create_m0323F5F458EB90D6A9ACBD8D234274194ED2D6DB_RuntimeMethod_var); (&V_0)->set_U3CU3Et__builder_1(L_1); (&V_0)->set_U3CU3E1__state_0((-1)); U3CMyGetResponseAsyncU3Ed__236_t2A216534B524FE18EECD3B35C67CE5AB4767E7F1 L_2 = V_0; AsyncTaskMethodBuilder_1_tC844D2260A71782812AB64F7BF5EDC8C4ED35A75 L_3 = L_2.get_U3CU3Et__builder_1(); V_1 = L_3; AsyncTaskMethodBuilder_1_Start_TisU3CMyGetResponseAsyncU3Ed__236_t2A216534B524FE18EECD3B35C67CE5AB4767E7F1_m6082A579E513B450D8B1CF9C33AC310F1DB2E4A7((AsyncTaskMethodBuilder_1_tC844D2260A71782812AB64F7BF5EDC8C4ED35A75 *)(&V_1), (U3CMyGetResponseAsyncU3Ed__236_t2A216534B524FE18EECD3B35C67CE5AB4767E7F1 *)(&V_0), /*hidden argument*/AsyncTaskMethodBuilder_1_Start_TisU3CMyGetResponseAsyncU3Ed__236_t2A216534B524FE18EECD3B35C67CE5AB4767E7F1_m6082A579E513B450D8B1CF9C33AC310F1DB2E4A7_RuntimeMethod_var); AsyncTaskMethodBuilder_1_tC844D2260A71782812AB64F7BF5EDC8C4ED35A75 * L_4 = (&V_0)->get_address_of_U3CU3Et__builder_1(); Task_1_t4B8CF50BCA70ADAD54A2813B464DF4A25F896857 * L_5; L_5 = AsyncTaskMethodBuilder_1_get_Task_m5DD3A19AD3B8F6F0F0D97C39656E386ECD9D3EF7((AsyncTaskMethodBuilder_1_tC844D2260A71782812AB64F7BF5EDC8C4ED35A75 *)L_4, /*hidden argument*/AsyncTaskMethodBuilder_1_get_Task_m5DD3A19AD3B8F6F0F0D97C39656E386ECD9D3EF7_RuntimeMethod_var); return L_5; } } // System.Threading.Tasks.Task`1> System.Net.HttpWebRequest::GetResponseFromData(System.Net.WebResponseStream,System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tDEAB8548D192DBB144FB5A8A3D04AD2EEB5E3D13 * HttpWebRequest_GetResponseFromData_m0CE9AAE446C972A590EC15776779EEC20BBD5297 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F * ___stream0, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_Create_m2784475EA8D7B60FDAA718B1F44731B600B5BA03_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_Start_TisU3CGetResponseFromDataU3Ed__237_t5060E721E44AB6651008E532D792EE39E62B7820_mBA5C61FD1A74C31D3EE6FFC7572C1D970E27CC42_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_get_Task_m23F8E3E88E9654E0568A88EA9527957BA08D5135_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_t04278D5078B08CC7E24AFDDAEE48378547262884_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } U3CGetResponseFromDataU3Ed__237_t5060E721E44AB6651008E532D792EE39E62B7820 V_0; memset((&V_0), 0, sizeof(V_0)); AsyncTaskMethodBuilder_1_t04278D5078B08CC7E24AFDDAEE48378547262884 V_1; memset((&V_1), 0, sizeof(V_1)); { (&V_0)->set_U3CU3E4__this_2(__this); WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F * L_0 = ___stream0; (&V_0)->set_stream_3(L_0); CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_1 = ___cancellationToken1; (&V_0)->set_cancellationToken_4(L_1); IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskMethodBuilder_1_t04278D5078B08CC7E24AFDDAEE48378547262884_il2cpp_TypeInfo_var); AsyncTaskMethodBuilder_1_t04278D5078B08CC7E24AFDDAEE48378547262884 L_2; L_2 = AsyncTaskMethodBuilder_1_Create_m2784475EA8D7B60FDAA718B1F44731B600B5BA03(/*hidden argument*/AsyncTaskMethodBuilder_1_Create_m2784475EA8D7B60FDAA718B1F44731B600B5BA03_RuntimeMethod_var); (&V_0)->set_U3CU3Et__builder_1(L_2); (&V_0)->set_U3CU3E1__state_0((-1)); U3CGetResponseFromDataU3Ed__237_t5060E721E44AB6651008E532D792EE39E62B7820 L_3 = V_0; AsyncTaskMethodBuilder_1_t04278D5078B08CC7E24AFDDAEE48378547262884 L_4 = L_3.get_U3CU3Et__builder_1(); V_1 = L_4; AsyncTaskMethodBuilder_1_Start_TisU3CGetResponseFromDataU3Ed__237_t5060E721E44AB6651008E532D792EE39E62B7820_mBA5C61FD1A74C31D3EE6FFC7572C1D970E27CC42((AsyncTaskMethodBuilder_1_t04278D5078B08CC7E24AFDDAEE48378547262884 *)(&V_1), (U3CGetResponseFromDataU3Ed__237_t5060E721E44AB6651008E532D792EE39E62B7820 *)(&V_0), /*hidden argument*/AsyncTaskMethodBuilder_1_Start_TisU3CGetResponseFromDataU3Ed__237_t5060E721E44AB6651008E532D792EE39E62B7820_mBA5C61FD1A74C31D3EE6FFC7572C1D970E27CC42_RuntimeMethod_var); AsyncTaskMethodBuilder_1_t04278D5078B08CC7E24AFDDAEE48378547262884 * L_5 = (&V_0)->get_address_of_U3CU3Et__builder_1(); Task_1_tDEAB8548D192DBB144FB5A8A3D04AD2EEB5E3D13 * L_6; L_6 = AsyncTaskMethodBuilder_1_get_Task_m23F8E3E88E9654E0568A88EA9527957BA08D5135((AsyncTaskMethodBuilder_1_t04278D5078B08CC7E24AFDDAEE48378547262884 *)L_5, /*hidden argument*/AsyncTaskMethodBuilder_1_get_Task_m23F8E3E88E9654E0568A88EA9527957BA08D5135_RuntimeMethod_var); return L_6; } } // System.Exception System.Net.HttpWebRequest::FlattenException(System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * HttpWebRequest_FlattenException_mF89FAFEB483D313C297FF23D4F30445BE126BE8D (Exception_t * ___e0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AggregateException_t45A871D3DBDA3E28FBCD8DF21F6772238FC55BD1_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyCollection_1_get_Count_m95D66C3D4F27B0911596D60D79CFA46BFEA96F97_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } AggregateException_t45A871D3DBDA3E28FBCD8DF21F6772238FC55BD1 * V_0 = NULL; { Exception_t * L_0 = ___e0; AggregateException_t45A871D3DBDA3E28FBCD8DF21F6772238FC55BD1 * L_1 = ((AggregateException_t45A871D3DBDA3E28FBCD8DF21F6772238FC55BD1 *)IsInstClass((RuntimeObject*)L_0, AggregateException_t45A871D3DBDA3E28FBCD8DF21F6772238FC55BD1_il2cpp_TypeInfo_var)); V_0 = L_1; if (!L_1) { goto IL_0026; } } { AggregateException_t45A871D3DBDA3E28FBCD8DF21F6772238FC55BD1 * L_2 = V_0; NullCheck(L_2); AggregateException_t45A871D3DBDA3E28FBCD8DF21F6772238FC55BD1 * L_3; L_3 = AggregateException_Flatten_mE14D462A6ADE827340E60E73AB20C254C5800A4F(L_2, /*hidden argument*/NULL); V_0 = L_3; AggregateException_t45A871D3DBDA3E28FBCD8DF21F6772238FC55BD1 * L_4 = V_0; NullCheck(L_4); ReadOnlyCollection_1_t06CAAF5787D8FDE0CB0F04082673EC9B212451BE * L_5; L_5 = AggregateException_get_InnerExceptions_m2020FC3A2334DDB72FEBFB2BF4CFE088FF83FEFE_inline(L_4, /*hidden argument*/NULL); NullCheck(L_5); int32_t L_6; L_6 = ReadOnlyCollection_1_get_Count_m95D66C3D4F27B0911596D60D79CFA46BFEA96F97(L_5, /*hidden argument*/ReadOnlyCollection_1_get_Count_m95D66C3D4F27B0911596D60D79CFA46BFEA96F97_RuntimeMethod_var); if ((!(((uint32_t)L_6) == ((uint32_t)1)))) { goto IL_0026; } } { AggregateException_t45A871D3DBDA3E28FBCD8DF21F6772238FC55BD1 * L_7 = V_0; NullCheck(L_7); Exception_t * L_8; L_8 = Exception_get_InnerException_m10D85773B6B191C7D4E7D3C2954B84F9BB195218_inline(L_7, /*hidden argument*/NULL); return L_8; } IL_0026: { Exception_t * L_9 = ___e0; return L_9; } } // System.Net.WebException System.Net.HttpWebRequest::GetWebException(System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * HttpWebRequest_GetWebException_m7E00B81FEE694F16C4C8DF09C187E54C70CEFDC7 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, Exception_t * ___e0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebException_t824617203133537D3B05BF786C22AECE0E2DBD08_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * V_0 = NULL; { Exception_t * L_0 = ___e0; IL2CPP_RUNTIME_CLASS_INIT(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A_il2cpp_TypeInfo_var); Exception_t * L_1; L_1 = HttpWebRequest_FlattenException_mF89FAFEB483D313C297FF23D4F30445BE126BE8D(L_0, /*hidden argument*/NULL); ___e0 = L_1; Exception_t * L_2 = ___e0; WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * L_3 = ((WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 *)IsInstClass((RuntimeObject*)L_2, WebException_t824617203133537D3B05BF786C22AECE0E2DBD08_il2cpp_TypeInfo_var)); V_0 = L_3; if (!L_3) { goto IL_002f; } } { bool L_4; L_4 = HttpWebRequest_get_Aborted_m3818067645E7BF5CC50320409AD3E0946F580257(__this, /*hidden argument*/NULL); if (!L_4) { goto IL_002d; } } { WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * L_5 = V_0; NullCheck(L_5); int32_t L_6; L_6 = WebException_get_Status_mF9C17E60BDB642F222DF2E3EC033320C34258DF5_inline(L_5, /*hidden argument*/NULL); if ((((int32_t)L_6) == ((int32_t)6))) { goto IL_002d; } } { WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * L_7 = V_0; NullCheck(L_7); int32_t L_8; L_8 = WebException_get_Status_mF9C17E60BDB642F222DF2E3EC033320C34258DF5_inline(L_7, /*hidden argument*/NULL); if ((!(((uint32_t)L_8) == ((uint32_t)((int32_t)14))))) { goto IL_002f; } } IL_002d: { WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * L_9 = V_0; return L_9; } IL_002f: { bool L_10; L_10 = HttpWebRequest_get_Aborted_m3818067645E7BF5CC50320409AD3E0946F580257(__this, /*hidden argument*/NULL); if (L_10) { goto IL_0047; } } { Exception_t * L_11 = ___e0; if (((OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB *)IsInstClass((RuntimeObject*)L_11, OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB_il2cpp_TypeInfo_var))) { goto IL_0047; } } { Exception_t * L_12 = ___e0; if (!((ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A *)IsInstClass((RuntimeObject*)L_12, ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A_il2cpp_TypeInfo_var))) { goto IL_004d; } } IL_0047: { IL2CPP_RUNTIME_CLASS_INIT(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A_il2cpp_TypeInfo_var); WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * L_13; L_13 = HttpWebRequest_CreateRequestAbortedException_m5ADF0586581A200AB3F80DC50A107A39167B4E4A(/*hidden argument*/NULL); return L_13; } IL_004d: { Exception_t * L_14 = ___e0; NullCheck(L_14); String_t* L_15; L_15 = VirtualFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, L_14); Exception_t * L_16 = ___e0; WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * L_17 = (WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 *)il2cpp_codegen_object_new(WebException_t824617203133537D3B05BF786C22AECE0E2DBD08_il2cpp_TypeInfo_var); WebException__ctor_m7C17EA99B1FE182295AF99B968D67080AD4E2CCE(L_17, L_15, L_16, ((int32_t)16), (WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 *)NULL, /*hidden argument*/NULL); return L_17; } } // System.Net.WebException System.Net.HttpWebRequest::CreateRequestAbortedException() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * HttpWebRequest_CreateRequestAbortedException_m5ADF0586581A200AB3F80DC50A107A39167B4E4A (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebExceptionStatus_tF76E8FAA116C43DDF96AF8C8CE2D75C3587F31D9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebException_t824617203133537D3B05BF786C22AECE0E2DBD08_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0FA004E16C1F8A76235BDB24ACD45448069285BB); s_Il2CppMethodInitialized = true; } { int32_t L_0 = 6; RuntimeObject * L_1 = Box(WebExceptionStatus_tF76E8FAA116C43DDF96AF8C8CE2D75C3587F31D9_il2cpp_TypeInfo_var, &L_0); String_t* L_2; L_2 = SR_Format_m9FB0DE0E3CE685F3CC51CC7558F42F10931B8645(_stringLiteral0FA004E16C1F8A76235BDB24ACD45448069285BB, L_1, /*hidden argument*/NULL); WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * L_3 = (WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 *)il2cpp_codegen_object_new(WebException_t824617203133537D3B05BF786C22AECE0E2DBD08_il2cpp_TypeInfo_var); WebException__ctor_m4D8BF7D61087F7AA4018215A6DCF7578AEA4DB08(L_3, L_2, 6, /*hidden argument*/NULL); return L_3; } } // System.IAsyncResult System.Net.HttpWebRequest::BeginGetResponse(System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* HttpWebRequest_BeginGetResponse_m82884B2FA82ED8A0B6CA3283C8A3EAA20B49ED5A (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback0, RuntimeObject * ___state1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2__ctor_m62E759845593E554996802B482EA6AA05F35E84A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_t722A0F06995E0C53FEEF8E2E44E139CFBE2A81C6_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpWebRequest_MyGetResponseAsync_m5A859A0730A22DFA2D6495F46AFABED7AA3000AC_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpWebRequest_RunWithTimeout_TisHttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB_mBAC220A31B5399542C4DA2F36115ADC95E4A3DEC_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { bool L_0; L_0 = HttpWebRequest_get_Aborted_m3818067645E7BF5CC50320409AD3E0946F580257(__this, /*hidden argument*/NULL); if (!L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A_il2cpp_TypeInfo_var))); WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * L_1; L_1 = HttpWebRequest_CreateRequestAbortedException_m5ADF0586581A200AB3F80DC50A107A39167B4E4A(/*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HttpWebRequest_BeginGetResponse_m82884B2FA82ED8A0B6CA3283C8A3EAA20B49ED5A_RuntimeMethod_var))); } IL_000e: { Func_2_t722A0F06995E0C53FEEF8E2E44E139CFBE2A81C6 * L_2 = (Func_2_t722A0F06995E0C53FEEF8E2E44E139CFBE2A81C6 *)il2cpp_codegen_object_new(Func_2_t722A0F06995E0C53FEEF8E2E44E139CFBE2A81C6_il2cpp_TypeInfo_var); Func_2__ctor_m62E759845593E554996802B482EA6AA05F35E84A(L_2, __this, (intptr_t)((intptr_t)HttpWebRequest_MyGetResponseAsync_m5A859A0730A22DFA2D6495F46AFABED7AA3000AC_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_m62E759845593E554996802B482EA6AA05F35E84A_RuntimeMethod_var); Task_1_t4B8CF50BCA70ADAD54A2813B464DF4A25F896857 * L_3; L_3 = HttpWebRequest_RunWithTimeout_TisHttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB_mBAC220A31B5399542C4DA2F36115ADC95E4A3DEC(__this, L_2, /*hidden argument*/HttpWebRequest_RunWithTimeout_TisHttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB_mBAC220A31B5399542C4DA2F36115ADC95E4A3DEC_RuntimeMethod_var); AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * L_4 = ___callback0; RuntimeObject * L_5 = ___state1; RuntimeObject* L_6; L_6 = TaskToApm_Begin_m0A8A1E0B6104AD2D83E5767147A2808B89756AD6(L_3, L_4, L_5, /*hidden argument*/NULL); return L_6; } } // System.Net.WebResponse System.Net.HttpWebRequest::EndGetResponse(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * HttpWebRequest_EndGetResponse_mFD72851FD650800927397100ECD7E8BC55F54682 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, RuntimeObject* ___asyncResult0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TaskToApm_End_TisHttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB_mAE705CE8DA50B91ADA5F1CAA04A054F666C084A5_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * V_0 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; { RuntimeObject* L_0 = ___asyncResult0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral453A1400C5EBA45D0DD93B54ED1EC6D42377A4B5)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HttpWebRequest_EndGetResponse_mFD72851FD650800927397100ECD7E8BC55F54682_RuntimeMethod_var))); } IL_000e: { } IL_000f: try {// begin try (depth: 1) RuntimeObject* L_2 = ___asyncResult0; HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * L_3; L_3 = TaskToApm_End_TisHttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB_mAE705CE8DA50B91ADA5F1CAA04A054F666C084A5(L_2, /*hidden argument*/TaskToApm_End_TisHttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB_mAE705CE8DA50B91ADA5F1CAA04A054F666C084A5_RuntimeMethod_var); V_0 = L_3; goto IL_001e; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0018; } throw e; } CATCH_0018: {// begin catch(System.Exception) IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A_il2cpp_TypeInfo_var))); Exception_t * L_4; L_4 = HttpWebRequest_FlattenException_mF89FAFEB483D313C297FF23D4F30445BE126BE8D(((Exception_t *)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HttpWebRequest_EndGetResponse_mFD72851FD650800927397100ECD7E8BC55F54682_RuntimeMethod_var))); }// end catch (depth: 1) IL_001e: { WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * L_5 = V_0; return L_5; } } // System.Net.WebResponse System.Net.HttpWebRequest::GetResponse() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * HttpWebRequest_GetResponse_m51A76E6FB272A858DD883E996273A04AE4A39301 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_1_get_Result_m8A2AACA33ADC6E785A413B31CF8D4BB3BDAC07F1_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * V_0 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; IL_0000: try {// begin try (depth: 1) Task_1_t2A3672CB79B7A66967AEB67A7CCF5EA583D25765 * L_0; L_0 = VirtualFuncInvoker0< Task_1_t2A3672CB79B7A66967AEB67A7CCF5EA583D25765 * >::Invoke(26 /* System.Threading.Tasks.Task`1 System.Net.WebRequest::GetResponseAsync() */, __this); NullCheck(L_0); WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * L_1; L_1 = Task_1_get_Result_m8A2AACA33ADC6E785A413B31CF8D4BB3BDAC07F1(L_0, /*hidden argument*/Task_1_get_Result_m8A2AACA33ADC6E785A413B31CF8D4BB3BDAC07F1_RuntimeMethod_var); V_0 = L_1; goto IL_0014; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_000e; } throw e; } CATCH_000e: {// begin catch(System.Exception) IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A_il2cpp_TypeInfo_var))); Exception_t * L_2; L_2 = HttpWebRequest_FlattenException_mF89FAFEB483D313C297FF23D4F30445BE126BE8D(((Exception_t *)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HttpWebRequest_GetResponse_m51A76E6FB272A858DD883E996273A04AE4A39301_RuntimeMethod_var))); }// end catch (depth: 1) IL_0014: { WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * L_3 = V_0; return L_3; } } // System.Void System.Net.HttpWebRequest::set_FinishedReading(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequest_set_FinishedReading_m3135DD65D0B7A8C656EC84F0ED2CFFEF611E79F4 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set_finished_reading_52(L_0); return; } } // System.Boolean System.Net.HttpWebRequest::get_Aborted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HttpWebRequest_get_Aborted_m3818067645E7BF5CC50320409AD3E0946F580257 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { { int32_t* L_0 = __this->get_address_of_aborted_46(); int32_t L_1; L_1 = Interlocked_CompareExchange_m317AD9524376B7BE74DD9069346E345F2B131382((int32_t*)L_0, 0, 0, /*hidden argument*/NULL); return (bool)((((int32_t)L_1) == ((int32_t)1))? 1 : 0); } } // System.Void System.Net.HttpWebRequest::Abort() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequest_Abort_m24CD2B450F6242DCF0AC6DABB467F505E7C869B2 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * V_0 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; WebCompletionSource_tF1258B468350A374EC59049FE0E31C7879D6AB1E * G_B6_0 = NULL; WebCompletionSource_tF1258B468350A374EC59049FE0E31C7879D6AB1E * G_B5_0 = NULL; { int32_t* L_0 = __this->get_address_of_aborted_46(); int32_t L_1; L_1 = Interlocked_CompareExchange_m317AD9524376B7BE74DD9069346E345F2B131382((int32_t*)L_0, 1, 0, /*hidden argument*/NULL); if ((!(((uint32_t)L_1) == ((uint32_t)1)))) { goto IL_0011; } } { return; } IL_0011: { __this->set_haveResponse_24((bool)1); WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * L_2 = __this->get_currentOperation_45(); V_0 = L_2; WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * L_3 = V_0; if (!L_3) { goto IL_0028; } } { WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * L_4 = V_0; NullCheck(L_4); WebOperation_Abort_mE41B80D197393221CB1360218916ACF5AA549241(L_4, /*hidden argument*/NULL); } IL_0028: { WebCompletionSource_tF1258B468350A374EC59049FE0E31C7879D6AB1E * L_5 = __this->get_responseTask_44(); WebCompletionSource_tF1258B468350A374EC59049FE0E31C7879D6AB1E * L_6 = L_5; G_B5_0 = L_6; if (L_6) { G_B6_0 = L_6; goto IL_0034; } } { goto IL_003a; } IL_0034: { NullCheck(G_B6_0); bool L_7; L_7 = WebCompletionSource_TrySetCanceled_m24AE0F4B396E33B14937C4E3716F45143C4436FB(G_B6_0, /*hidden argument*/NULL); } IL_003a: { HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * L_8 = __this->get_webResponse_43(); if (!L_8) { goto IL_0059; } } IL_0042: try {// begin try (depth: 1) HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * L_9 = __this->get_webResponse_43(); NullCheck(L_9); VirtualActionInvoker0::Invoke(9 /* System.Void System.Net.WebResponse::Close() */, L_9); __this->set_webResponse_43((HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB *)NULL); goto IL_0059; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0056; } throw e; } CATCH_0056: {// begin catch(System.Object) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0059; }// end catch (depth: 1) IL_0059: { return; } } // System.Void System.Net.HttpWebRequest::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequest_System_Runtime_Serialization_ISerializable_GetObjectData_m3B43B7FA26F335B661343C4686CBAC6D4B00727B (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___serializationInfo0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___streamingContext1, const RuntimeMethod* method) { { SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_0 = ___serializationInfo0; StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 L_1 = ___streamingContext1; VirtualActionInvoker2< SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 *, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 >::Invoke(7 /* System.Void System.Net.WebRequest::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, __this, L_0, L_1); return; } } // System.Void System.Net.HttpWebRequest::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequest_GetObjectData_mA0387A42ACDA0C1DCA5B0BBC62C17D57E5D19222 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___serializationInfo0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___streamingContext1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IWebProxy_t27B6C29F0B62B717A9778AD251E31C21A91C32B3_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3488D135BC095F9C0E239111D4289F524E08D1FC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4044F71E1BE65840634E2AF1C09536F10DBF2AF5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4D3FA87AD70FDA38C5DB0AB2E09C2350CF2423AF); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral50E959F3E0EEB3D739AC7919A13BB1F0932B9330); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6D70AF6CE5201D93C1F33B3E09C323C6D711A6D3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral77ECC8C351E23508E0840DADDC8F41A66A14CAFC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7BEFDD0A0757E283E60A94FE124494664FCFAC5D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral82EA3C9AFC08F0CECEBC1B257606B3106346FCAF); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral83682544C2518E15957808301F6AFA81555B7B99); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral92831A3FADAD854BEDD33A31A9754AEB8E61BACD); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB710A3516E150FA663CDCA0C2650AF2BDDE346A2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB764975C73BFA882AF2146869B213BBDDF06F6E4); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD072EB3279517095515F5954E1970330B3A510DC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD23E1D8D3BB0A59383DCD9925ED64F3642F85D3F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD69F44EE85E93078FAAAFEAB54A24724D3AC6786); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDD7A745EDCF0962E7880255CFF586992E8210B7F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE4FD92166270752CAF8CD83C4F787558916F3F4C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE6B69D85FB61842B89C67EF09BA23C056804EF34); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE705C6345C26AF82E64D22DBE44B2A3514F2F06F); s_Il2CppMethodInitialized = true; } { SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_0 = ___serializationInfo0; SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_1 = L_0; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_2 = __this->get_requestUri_12(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_4; L_4 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_3, /*hidden argument*/NULL); NullCheck(L_1); SerializationInfo_AddValue_mA20A32DFDB224FCD9595675255264FD10940DFC6(L_1, _stringLiteralE4FD92166270752CAF8CD83C4F787558916F3F4C, L_2, L_4, /*hidden argument*/NULL); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_5 = L_1; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_6 = __this->get_actualUri_13(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_7 = { reinterpret_cast (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_0_0_0_var) }; Type_t * L_8; L_8 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_7, /*hidden argument*/NULL); NullCheck(L_5); SerializationInfo_AddValue_mA20A32DFDB224FCD9595675255264FD10940DFC6(L_5, _stringLiteralD072EB3279517095515F5954E1970330B3A510DC, L_6, L_8, /*hidden argument*/NULL); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_9 = L_5; bool L_10 = __this->get_allowAutoRedirect_15(); NullCheck(L_9); SerializationInfo_AddValue_m324F3E0B02B746D5F460499F5A25988FD608AD7B(L_9, _stringLiteralDD7A745EDCF0962E7880255CFF586992E8210B7F, L_10, /*hidden argument*/NULL); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_11 = L_9; bool L_12 = __this->get_allowBuffering_16(); NullCheck(L_11); SerializationInfo_AddValue_m324F3E0B02B746D5F460499F5A25988FD608AD7B(L_11, _stringLiteral92831A3FADAD854BEDD33A31A9754AEB8E61BACD, L_12, /*hidden argument*/NULL); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_13 = L_11; X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B * L_14 = __this->get_certificates_17(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_15 = { reinterpret_cast (X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B_0_0_0_var) }; Type_t * L_16; L_16 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_15, /*hidden argument*/NULL); NullCheck(L_13); SerializationInfo_AddValue_mA20A32DFDB224FCD9595675255264FD10940DFC6(L_13, _stringLiteralB764975C73BFA882AF2146869B213BBDDF06F6E4, L_14, L_16, /*hidden argument*/NULL); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_17 = L_13; String_t* L_18 = __this->get_connectionGroup_18(); NullCheck(L_17); SerializationInfo_AddValue_mA50C2668EF700C2239DDC362F8DB409020BB763D(L_17, _stringLiteral77ECC8C351E23508E0840DADDC8F41A66A14CAFC, L_18, /*hidden argument*/NULL); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_19 = L_17; int64_t L_20 = __this->get_contentLength_20(); NullCheck(L_19); SerializationInfo_AddValue_mD0C00DE59B4C6649A6BFA5EBC7D8618B46B967D5(L_19, _stringLiteralD23E1D8D3BB0A59383DCD9925ED64F3642F85D3F, L_20, /*hidden argument*/NULL); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_21 = L_19; WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_22 = __this->get_webHeaders_26(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_23 = { reinterpret_cast (WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4_0_0_0_var) }; Type_t * L_24; L_24 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_23, /*hidden argument*/NULL); NullCheck(L_21); SerializationInfo_AddValue_mA20A32DFDB224FCD9595675255264FD10940DFC6(L_21, _stringLiteral83682544C2518E15957808301F6AFA81555B7B99, L_22, L_24, /*hidden argument*/NULL); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_25 = L_21; bool L_26 = __this->get_keepAlive_27(); NullCheck(L_25); SerializationInfo_AddValue_m324F3E0B02B746D5F460499F5A25988FD608AD7B(L_25, _stringLiteralB710A3516E150FA663CDCA0C2650AF2BDDE346A2, L_26, /*hidden argument*/NULL); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_27 = L_25; int32_t L_28 = __this->get_maxAutoRedirect_28(); NullCheck(L_27); SerializationInfo_AddValue_m3DF5B182A63FFCD12287E97EA38944D0C6405BB5(L_27, _stringLiteral7BEFDD0A0757E283E60A94FE124494664FCFAC5D, L_28, /*hidden argument*/NULL); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_29 = L_27; String_t* L_30 = __this->get_mediaType_29(); NullCheck(L_29); SerializationInfo_AddValue_mA50C2668EF700C2239DDC362F8DB409020BB763D(L_29, _stringLiteral6D70AF6CE5201D93C1F33B3E09C323C6D711A6D3, L_30, /*hidden argument*/NULL); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_31 = L_29; String_t* L_32 = __this->get_method_30(); NullCheck(L_31); SerializationInfo_AddValue_mA50C2668EF700C2239DDC362F8DB409020BB763D(L_31, _stringLiteral82EA3C9AFC08F0CECEBC1B257606B3106346FCAF, L_32, /*hidden argument*/NULL); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_33 = L_31; String_t* L_34 = __this->get_initialMethod_31(); NullCheck(L_33); SerializationInfo_AddValue_mA50C2668EF700C2239DDC362F8DB409020BB763D(L_33, _stringLiteral3488D135BC095F9C0E239111D4289F524E08D1FC, L_34, /*hidden argument*/NULL); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_35 = L_33; bool L_36 = __this->get_pipelined_32(); NullCheck(L_35); SerializationInfo_AddValue_m324F3E0B02B746D5F460499F5A25988FD608AD7B(L_35, _stringLiteral4D3FA87AD70FDA38C5DB0AB2E09C2350CF2423AF, L_36, /*hidden argument*/NULL); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_37 = L_35; Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_38 = __this->get_version_35(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_39 = { reinterpret_cast (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_0_0_0_var) }; Type_t * L_40; L_40 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_39, /*hidden argument*/NULL); NullCheck(L_37); SerializationInfo_AddValue_mA20A32DFDB224FCD9595675255264FD10940DFC6(L_37, _stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052, L_38, L_40, /*hidden argument*/NULL); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_41 = L_37; RuntimeObject* L_42 = __this->get_proxy_38(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_43 = { reinterpret_cast (IWebProxy_t27B6C29F0B62B717A9778AD251E31C21A91C32B3_0_0_0_var) }; Type_t * L_44; L_44 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_43, /*hidden argument*/NULL); NullCheck(L_41); SerializationInfo_AddValue_mA20A32DFDB224FCD9595675255264FD10940DFC6(L_41, _stringLiteralD69F44EE85E93078FAAAFEAB54A24724D3AC6786, L_42, L_44, /*hidden argument*/NULL); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_45 = L_41; bool L_46 = __this->get_sendChunked_39(); NullCheck(L_45); SerializationInfo_AddValue_m324F3E0B02B746D5F460499F5A25988FD608AD7B(L_45, _stringLiteral50E959F3E0EEB3D739AC7919A13BB1F0932B9330, L_46, /*hidden argument*/NULL); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_47 = L_45; int32_t L_48 = __this->get_timeout_41(); NullCheck(L_47); SerializationInfo_AddValue_m3DF5B182A63FFCD12287E97EA38944D0C6405BB5(L_47, _stringLiteral4044F71E1BE65840634E2AF1C09536F10DBF2AF5, L_48, /*hidden argument*/NULL); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_49 = L_47; int32_t L_50 = __this->get_redirects_48(); NullCheck(L_49); SerializationInfo_AddValue_m3DF5B182A63FFCD12287E97EA38944D0C6405BB5(L_49, _stringLiteralE6B69D85FB61842B89C67EF09BA23C056804EF34, L_50, /*hidden argument*/NULL); String_t* L_51 = __this->get_host_61(); NullCheck(L_49); SerializationInfo_AddValue_mA50C2668EF700C2239DDC362F8DB409020BB763D(L_49, _stringLiteralE705C6345C26AF82E64D22DBE44B2A3514F2F06F, L_51, /*hidden argument*/NULL); return; } } // System.Void System.Net.HttpWebRequest::CheckRequestStarted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequest_CheckRequestStarted_mE63D6C6514D6956B8D1E3D8D027644BB28F77770 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_requestSent_25(); if (!L_0) { goto IL_0013; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_1 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral30615F6D61D6E54ADC19B1094DDA5C74B7ACC426)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HttpWebRequest_CheckRequestStarted_mE63D6C6514D6956B8D1E3D8D027644BB28F77770_RuntimeMethod_var))); } IL_0013: { return; } } // System.Void System.Net.HttpWebRequest::DoContinueDelegate(System.Int32,System.Net.WebHeaderCollection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequest_DoContinueDelegate_m7F1D38124E3281C3054D6F8D864DFC624A322A1B (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, int32_t ___statusCode0, WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * ___headers1, const RuntimeMethod* method) { { HttpContinueDelegate_t84ADA70221E0AC5A340AD9D012F81C1683FC240F * L_0 = __this->get_continueDelegate_21(); if (!L_0) { goto IL_0015; } } { HttpContinueDelegate_t84ADA70221E0AC5A340AD9D012F81C1683FC240F * L_1 = __this->get_continueDelegate_21(); int32_t L_2 = ___statusCode0; WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_3 = ___headers1; NullCheck(L_1); HttpContinueDelegate_Invoke_mBB31F6155FA0BCFF94576BA0F43C19568592BD5F(L_1, L_2, L_3, /*hidden argument*/NULL); } IL_0015: { return; } } // System.Void System.Net.HttpWebRequest::RewriteRedirectToGet() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequest_RewriteRedirectToGet_m926990A30CA5A19D77EFBD788758D5BFF54692EF (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral68ACB6B47D3431BDBD286C3153B250E20552A4AD); s_Il2CppMethodInitialized = true; } { __this->set_method_30(_stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6); WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_0 = __this->get_webHeaders_26(); NullCheck(L_0); WebHeaderCollection_RemoveInternal_m89528036293926837E8EA5703C1306C1E351B117(L_0, _stringLiteral68ACB6B47D3431BDBD286C3153B250E20552A4AD, /*hidden argument*/NULL); __this->set_sendChunked_39((bool)0); return; } } // System.Boolean System.Net.HttpWebRequest::Redirect(System.Net.HttpStatusCode,System.Net.WebResponse) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HttpWebRequest_Redirect_m157E18FBFBCF9B50EC86DFBD6BE6E5AB665FC550 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, int32_t ___code0, WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * ___response1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NotImplementedException_t26260C4EE0444C5FA022994203060B3A42A3ADE6_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ProtocolViolationException_tBAAE896920B7768552D235DA44C1F7EACDBF9299_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebException_t824617203133537D3B05BF786C22AECE0E2DBD08_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral009CD778B9CB8CEFADF6517ECF6B8C675D6507B5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0DD32B18A388C5F1A6BAFD3629759260C61F767C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral115207EC26C7407DBAFB2698E0109D3A06E54ADF); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral14E338D17C42E552FA7AF42CDAE40CA1F0E8A04D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral842B97533A7EFDCC23A3F8E50B63375B68A5369B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBBF165EA4AF2BA756BC7EA25505B64C36A62BE43); s_Il2CppMethodInitialized = true; } Exception_t * V_0 = NULL; String_t* V_1 = NULL; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * V_2 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * G_B27_0 = NULL; HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * G_B26_0 = NULL; int32_t G_B28_0 = 0; HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * G_B28_1 = NULL; { int32_t L_0 = __this->get_redirects_48(); __this->set_redirects_48(((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1))); V_0 = (Exception_t *)NULL; V_1 = (String_t*)NULL; int32_t L_1 = ___code0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)((int32_t)300)))) { case 0: { goto IL_0040; } case 1: { goto IL_004d; } case 2: { goto IL_004d; } case 3: { goto IL_0067; } case 4: { goto IL_006f; } case 5: { goto IL_0071; } case 6: { goto IL_007e; } case 7: { goto IL_0094; } } } { goto IL_007e; } IL_0040: { WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * L_2 = (WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 *)il2cpp_codegen_object_new(WebException_t824617203133537D3B05BF786C22AECE0E2DBD08_il2cpp_TypeInfo_var); WebException__ctor_mEBC92BF36C0C3C6CC044180748D41AB9AADEEDC9(L_2, _stringLiteralBBF165EA4AF2BA756BC7EA25505B64C36A62BE43, /*hidden argument*/NULL); V_0 = L_2; goto IL_0094; } IL_004d: { String_t* L_3 = __this->get_method_30(); bool L_4; L_4 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_3, _stringLiteral14E338D17C42E552FA7AF42CDAE40CA1F0E8A04D, /*hidden argument*/NULL); if (!L_4) { goto IL_0094; } } { HttpWebRequest_RewriteRedirectToGet_m926990A30CA5A19D77EFBD788758D5BFF54692EF(__this, /*hidden argument*/NULL); goto IL_0094; } IL_0067: { HttpWebRequest_RewriteRedirectToGet_m926990A30CA5A19D77EFBD788758D5BFF54692EF(__this, /*hidden argument*/NULL); goto IL_0094; } IL_006f: { return (bool)0; } IL_0071: { NotImplementedException_t26260C4EE0444C5FA022994203060B3A42A3ADE6 * L_5 = (NotImplementedException_t26260C4EE0444C5FA022994203060B3A42A3ADE6 *)il2cpp_codegen_object_new(NotImplementedException_t26260C4EE0444C5FA022994203060B3A42A3ADE6_il2cpp_TypeInfo_var); NotImplementedException__ctor_m8A9AA4499614A5BC57DD21713D0720630C130AEB(L_5, _stringLiteral842B97533A7EFDCC23A3F8E50B63375B68A5369B, /*hidden argument*/NULL); V_0 = L_5; goto IL_0094; } IL_007e: { int32_t L_6 = ___code0; int32_t L_7 = ((int32_t)L_6); RuntimeObject * L_8 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_7); String_t* L_9; L_9 = String_Concat_m4D0DDA7FEDB75304E5FDAF8489A0478EE58A45F2(_stringLiteral009CD778B9CB8CEFADF6517ECF6B8C675D6507B5, L_8, /*hidden argument*/NULL); ProtocolViolationException_tBAAE896920B7768552D235DA44C1F7EACDBF9299 * L_10 = (ProtocolViolationException_tBAAE896920B7768552D235DA44C1F7EACDBF9299 *)il2cpp_codegen_object_new(ProtocolViolationException_tBAAE896920B7768552D235DA44C1F7EACDBF9299_il2cpp_TypeInfo_var); ProtocolViolationException__ctor_mDD18BFEE8140195ECBAD99A4E8079FE063A92D79(L_10, L_9, /*hidden argument*/NULL); V_0 = L_10; } IL_0094: { String_t* L_11 = __this->get_method_30(); bool L_12; L_12 = String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2(L_11, _stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6, /*hidden argument*/NULL); if (!L_12) { goto IL_00dc; } } { bool L_13; L_13 = HttpWebRequest_get_InternalAllowBuffering_m6447C59856EA745F81D89B8BF10443D6DA1C5396(__this, /*hidden argument*/NULL); if (L_13) { goto IL_00dc; } } { Func_2_t1536C4C0AD9482796F7C72574A4B3DE8607E4E20 * L_14 = __this->get_ResendContentFactory_62(); if (L_14) { goto IL_00dc; } } { WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887 * L_15 = __this->get_writeStream_42(); NullCheck(L_15); int32_t L_16; L_16 = WebRequestStream_get_WriteBufferLength_m7273B48C66EA74818498EA8B0A27BFC9E6DA81D8(L_15, /*hidden argument*/NULL); if ((((int32_t)L_16) > ((int32_t)0))) { goto IL_00ce; } } { int64_t L_17 = __this->get_contentLength_20(); if ((((int64_t)L_17) <= ((int64_t)((int64_t)((int64_t)0))))) { goto IL_00dc; } } IL_00ce: { WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * L_18 = ___response1; WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * L_19 = (WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 *)il2cpp_codegen_object_new(WebException_t824617203133537D3B05BF786C22AECE0E2DBD08_il2cpp_TypeInfo_var); WebException__ctor_m7C17EA99B1FE182295AF99B968D67080AD4E2CCE(L_19, _stringLiteral115207EC26C7407DBAFB2698E0109D3A06E54ADF, (Exception_t *)NULL, 7, L_18, /*hidden argument*/NULL); V_0 = L_19; } IL_00dc: { Exception_t * L_20 = V_0; if (!L_20) { goto IL_00e1; } } { Exception_t * L_21 = V_0; IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HttpWebRequest_Redirect_m157E18FBFBCF9B50EC86DFBD6BE6E5AB665FC550_RuntimeMethod_var))); } IL_00e1: { bool L_22; L_22 = VirtualFuncInvoker0< bool >::Invoke(28 /* System.Boolean System.Net.HttpWebRequest::get_AllowWriteStreamBuffering() */, __this); if (L_22) { goto IL_00fb; } } { String_t* L_23 = __this->get_method_30(); bool L_24; L_24 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_23, _stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6, /*hidden argument*/NULL); if (!L_24) { goto IL_0103; } } IL_00fb: { __this->set_contentLength_20(((int64_t)((int64_t)(-1)))); } IL_0103: { WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * L_25 = ___response1; NullCheck(L_25); WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_26; L_26 = VirtualFuncInvoker0< WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * >::Invoke(13 /* System.Net.WebHeaderCollection System.Net.WebResponse::get_Headers() */, L_25); NullCheck(L_26); String_t* L_27; L_27 = NameValueCollection_get_Item_mCA21B55D4454D35073475B2966BA0F9207D16FED(L_26, _stringLiteral0DD32B18A388C5F1A6BAFD3629759260C61F767C, /*hidden argument*/NULL); V_1 = L_27; String_t* L_28 = V_1; if (L_28) { goto IL_0130; } } { int32_t L_29 = ___code0; int32_t L_30 = ((int32_t)L_29); RuntimeObject * L_31 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)), &L_30); String_t* L_32; L_32 = String_Format_mB3D38E5238C3164DB4D7D29339D9E225A4496D17(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA4B524BA30057D100946AAE80A0CF01DEF5BDEC0)), L_31, /*hidden argument*/NULL); WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * L_33 = ___response1; WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * L_34 = (WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebException_t824617203133537D3B05BF786C22AECE0E2DBD08_il2cpp_TypeInfo_var))); WebException__ctor_m7C17EA99B1FE182295AF99B968D67080AD4E2CCE(L_34, L_32, (Exception_t *)NULL, 7, L_33, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_34, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HttpWebRequest_Redirect_m157E18FBFBCF9B50EC86DFBD6BE6E5AB665FC550_RuntimeMethod_var))); } IL_0130: { Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_35 = __this->get_actualUri_13(); V_2 = L_35; } IL_0137: try {// begin try (depth: 1) Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_36 = __this->get_actualUri_13(); String_t* L_37 = V_1; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_38 = (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)il2cpp_codegen_object_new(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); Uri__ctor_m0B44AFB01F3FEDE9319BA4556288340D16101F9D(L_38, L_36, L_37, /*hidden argument*/NULL); __this->set_actualUri_13(L_38); goto IL_0166; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_014b; } throw e; } CATCH_014b: {// begin catch(System.Exception) String_t* L_39 = V_1; int32_t L_40 = ___code0; int32_t L_41 = ((int32_t)L_40); RuntimeObject * L_42 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)), &L_41); String_t* L_43; L_43 = String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFD6612A78B2A0C77E9DC300D4EB64C11094FE01F)), L_39, L_42, /*hidden argument*/NULL); WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * L_44 = ___response1; WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * L_45 = (WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebException_t824617203133537D3B05BF786C22AECE0E2DBD08_il2cpp_TypeInfo_var))); WebException__ctor_m7C17EA99B1FE182295AF99B968D67080AD4E2CCE(L_45, L_43, (Exception_t *)NULL, 7, L_44, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_45, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HttpWebRequest_Redirect_m157E18FBFBCF9B50EC86DFBD6BE6E5AB665FC550_RuntimeMethod_var))); }// end catch (depth: 1) IL_0166: { Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_46 = __this->get_actualUri_13(); NullCheck(L_46); String_t* L_47; L_47 = Uri_get_Scheme_mEC4980E1C82DE3963007E33C759742A02A26FF29(L_46, /*hidden argument*/NULL); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_48 = V_2; NullCheck(L_48); String_t* L_49; L_49 = Uri_get_Scheme_mEC4980E1C82DE3963007E33C759742A02A26FF29(L_48, /*hidden argument*/NULL); bool L_50; L_50 = String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2(L_47, L_49, /*hidden argument*/NULL); G_B26_0 = __this; if (L_50) { G_B27_0 = __this; goto IL_0192; } } { String_t* L_51; L_51 = HttpWebRequest_get_Host_m4BE36083497FB8F5B7F317A1C097C0BCBE993533(__this, /*hidden argument*/NULL); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_52 = V_2; NullCheck(L_52); String_t* L_53; L_53 = Uri_get_Authority_m453C817B1681F5FD99431A7FDF6F11CDB9FAC093(L_52, /*hidden argument*/NULL); bool L_54; L_54 = String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2(L_51, L_53, /*hidden argument*/NULL); G_B28_0 = ((int32_t)(L_54)); G_B28_1 = G_B26_0; goto IL_0193; } IL_0192: { G_B28_0 = 1; G_B28_1 = G_B27_0; } IL_0193: { NullCheck(G_B28_1); G_B28_1->set_hostChanged_14((bool)G_B28_0); return (bool)1; } } // System.String System.Net.HttpWebRequest::GetHeaders() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* HttpWebRequest_GetHeaders_m3D09D15A7A2D66D84942B9601893C60F6A9EF332 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpVersion_t15E4A5DA9E037A055F4630E01EB12A988915448E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0242F31341D314854DB5EA5749448625B0A0AAE3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral04799565CD60A911F9CBB57805A3592363822500); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral093507DEB05FB14DD8659BC619825EC3274FD8C6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0E5584AFF0328C3E9B727CFB3887E9E710B0F53D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral179A7752540EF152886B7EDDBBEA8F584E6DF2F3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral67A54AB78AD61DDEB268617E3EE621D1193804DC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral68ACB6B47D3431BDBD286C3153B250E20552A4AD); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7145DB000FB7A15A3BC887316484C05C47DF929F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral86E7C0314F9CA521BDA0F361B0D90037E62E63C2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8C5B5A80C04C3A4ACA2BEED3EDD587DD1F5398C6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBBC4BD37A426D68F16FC03A3F4AAC387168995BC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC2CC7AACC16A09D4E080B1F896BFA903A86AFAC4); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD83A084C77919D323023FA38BD9EC97511C0C3F1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE63C3C7F5D1BA8FF5FE520557DB93719F06BE87A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF0ACB78DD0CBEFD7DD81D25C5219DDB4067ECBD2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024); s_Il2CppMethodInitialized = true; } bool V_0 = false; bool V_1 = false; String_t* V_2 = NULL; Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * V_3 = NULL; bool V_4 = false; String_t* V_5 = NULL; String_t* V_6 = NULL; String_t* G_B25_0 = NULL; WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * G_B27_0 = NULL; WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * G_B26_0 = NULL; String_t* G_B28_0 = NULL; WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * G_B28_1 = NULL; int32_t G_B31_0 = 0; String_t* G_B49_0 = NULL; { V_0 = (bool)0; bool L_0 = __this->get_sendChunked_39(); if (!L_0) { goto IL_0036; } } { V_0 = (bool)1; WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_1 = __this->get_webHeaders_26(); NullCheck(L_1); WebHeaderCollection_ChangeInternal_m2C0BFAF67320629676F805D70D8A97D50BA03EF0(L_1, _stringLiteral68ACB6B47D3431BDBD286C3153B250E20552A4AD, _stringLiteral7145DB000FB7A15A3BC887316484C05C47DF929F, /*hidden argument*/NULL); WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_2 = __this->get_webHeaders_26(); NullCheck(L_2); WebHeaderCollection_RemoveInternal_m89528036293926837E8EA5703C1306C1E351B117(L_2, _stringLiteral86E7C0314F9CA521BDA0F361B0D90037E62E63C2, /*hidden argument*/NULL); goto IL_0105; } IL_0036: { int64_t L_3 = __this->get_contentLength_20(); if ((((int64_t)L_3) == ((int64_t)((int64_t)((int64_t)(-1)))))) { goto IL_00f5; } } { AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 * L_4 = __this->get_address_of_auth_state_59(); int32_t L_5; L_5 = AuthorizationState_get_NtlmAuthState_mFEDD4ECDE8761AD54175DBBD0EA53C45CD545998_inline((AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 *)L_4, /*hidden argument*/NULL); if ((((int32_t)L_5) == ((int32_t)1))) { goto IL_005f; } } { AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 * L_6 = __this->get_address_of_proxy_auth_state_60(); int32_t L_7; L_7 = AuthorizationState_get_NtlmAuthState_mFEDD4ECDE8761AD54175DBBD0EA53C45CD545998_inline((AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 *)L_6, /*hidden argument*/NULL); if ((!(((uint32_t)L_7) == ((uint32_t)1)))) { goto IL_00a2; } } IL_005f: { bool L_8 = __this->get_haveContentLength_19(); if (L_8) { goto IL_0079; } } { bool L_9 = __this->get_gotRequestStream_47(); if (L_9) { goto IL_0079; } } { int64_t L_10 = __this->get_contentLength_20(); if ((((int64_t)L_10) <= ((int64_t)((int64_t)((int64_t)0))))) { goto IL_0090; } } IL_0079: { WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_11 = __this->get_webHeaders_26(); NullCheck(L_11); WebHeaderCollection_SetInternal_mD14173DCCD03148462674B04D44BCD60E32BAEB8(L_11, _stringLiteral86E7C0314F9CA521BDA0F361B0D90037E62E63C2, _stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024, /*hidden argument*/NULL); goto IL_00e3; } IL_0090: { WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_12 = __this->get_webHeaders_26(); NullCheck(L_12); WebHeaderCollection_RemoveInternal_m89528036293926837E8EA5703C1306C1E351B117(L_12, _stringLiteral86E7C0314F9CA521BDA0F361B0D90037E62E63C2, /*hidden argument*/NULL); goto IL_00e3; } IL_00a2: { int64_t L_13 = __this->get_contentLength_20(); if ((((int64_t)L_13) <= ((int64_t)((int64_t)((int64_t)0))))) { goto IL_00ae; } } { V_0 = (bool)1; } IL_00ae: { bool L_14 = __this->get_haveContentLength_19(); if (L_14) { goto IL_00c8; } } { bool L_15 = __this->get_gotRequestStream_47(); if (L_15) { goto IL_00c8; } } { int64_t L_16 = __this->get_contentLength_20(); if ((((int64_t)L_16) <= ((int64_t)((int64_t)((int64_t)0))))) { goto IL_00e3; } } IL_00c8: { WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_17 = __this->get_webHeaders_26(); int64_t* L_18 = __this->get_address_of_contentLength_20(); String_t* L_19; L_19 = Int64_ToString_m8AAA883F340993DCDF339C208F3416C3BA82589F((int64_t*)L_18, /*hidden argument*/NULL); NullCheck(L_17); WebHeaderCollection_SetInternal_mD14173DCCD03148462674B04D44BCD60E32BAEB8(L_17, _stringLiteral86E7C0314F9CA521BDA0F361B0D90037E62E63C2, L_19, /*hidden argument*/NULL); } IL_00e3: { WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_20 = __this->get_webHeaders_26(); NullCheck(L_20); WebHeaderCollection_RemoveInternal_m89528036293926837E8EA5703C1306C1E351B117(L_20, _stringLiteral68ACB6B47D3431BDBD286C3153B250E20552A4AD, /*hidden argument*/NULL); goto IL_0105; } IL_00f5: { WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_21 = __this->get_webHeaders_26(); NullCheck(L_21); WebHeaderCollection_RemoveInternal_m89528036293926837E8EA5703C1306C1E351B117(L_21, _stringLiteral86E7C0314F9CA521BDA0F361B0D90037E62E63C2, /*hidden argument*/NULL); } IL_0105: { Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_22 = __this->get_actualVersion_37(); IL2CPP_RUNTIME_CLASS_INIT(HttpVersion_t15E4A5DA9E037A055F4630E01EB12A988915448E_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_23 = ((HttpVersion_t15E4A5DA9E037A055F4630E01EB12A988915448E_StaticFields*)il2cpp_codegen_static_fields_for(HttpVersion_t15E4A5DA9E037A055F4630E01EB12A988915448E_il2cpp_TypeInfo_var))->get_Version11_1(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_24; L_24 = Version_op_Equality_mB8525AD6D098EE54D9E0E5C9046F24B5CB197662(L_22, L_23, /*hidden argument*/NULL); bool L_25 = V_0; if (!((int32_t)((int32_t)L_24&(int32_t)L_25))) { goto IL_0144; } } { ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * L_26 = __this->get_servicePoint_40(); NullCheck(L_26); bool L_27; L_27 = ServicePoint_get_SendContinue_m0708B1804863BCECDFE5FB7A5120B15530087704(L_26, /*hidden argument*/NULL); if (!L_27) { goto IL_0144; } } { WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_28 = __this->get_webHeaders_26(); NullCheck(L_28); WebHeaderCollection_ChangeInternal_m2C0BFAF67320629676F805D70D8A97D50BA03EF0(L_28, _stringLiteralD83A084C77919D323023FA38BD9EC97511C0C3F1, _stringLiteralC2CC7AACC16A09D4E080B1F896BFA903A86AFAC4, /*hidden argument*/NULL); __this->set_expectContinue_49((bool)1); goto IL_015b; } IL_0144: { WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_29 = __this->get_webHeaders_26(); NullCheck(L_29); WebHeaderCollection_RemoveInternal_m89528036293926837E8EA5703C1306C1E351B117(L_29, _stringLiteralD83A084C77919D323023FA38BD9EC97511C0C3F1, /*hidden argument*/NULL); __this->set_expectContinue_49((bool)0); } IL_015b: { bool L_30; L_30 = HttpWebRequest_get_ProxyQuery_m5AC4ED79E30E2253BE5508B87805592B4FD2F1F5(__this, /*hidden argument*/NULL); V_1 = L_30; bool L_31 = V_1; if (L_31) { goto IL_016c; } } { G_B25_0 = _stringLiteralBBC4BD37A426D68F16FC03A3F4AAC387168995BC; goto IL_0171; } IL_016c: { G_B25_0 = _stringLiteralF0ACB78DD0CBEFD7DD81D25C5219DDB4067ECBD2; } IL_0171: { V_2 = G_B25_0; WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_32 = __this->get_webHeaders_26(); bool L_33 = V_1; G_B26_0 = L_32; if (!L_33) { G_B27_0 = L_32; goto IL_0182; } } { G_B28_0 = _stringLiteralBBC4BD37A426D68F16FC03A3F4AAC387168995BC; G_B28_1 = G_B26_0; goto IL_0187; } IL_0182: { G_B28_0 = _stringLiteralF0ACB78DD0CBEFD7DD81D25C5219DDB4067ECBD2; G_B28_1 = G_B27_0; } IL_0187: { NullCheck(G_B28_1); WebHeaderCollection_RemoveInternal_m89528036293926837E8EA5703C1306C1E351B117(G_B28_1, G_B28_0, /*hidden argument*/NULL); ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * L_34 = __this->get_servicePoint_40(); NullCheck(L_34); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_35; L_35 = VirtualFuncInvoker0< Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * >::Invoke(4 /* System.Version System.Net.ServicePoint::get_ProtocolVersion() */, L_34); V_3 = L_35; Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_36 = V_3; IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_37; L_37 = Version_op_Equality_mB8525AD6D098EE54D9E0E5C9046F24B5CB197662(L_36, (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)NULL, /*hidden argument*/NULL); if (L_37) { goto IL_01ae; } } { Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_38 = V_3; IL2CPP_RUNTIME_CLASS_INIT(HttpVersion_t15E4A5DA9E037A055F4630E01EB12A988915448E_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_39 = ((HttpVersion_t15E4A5DA9E037A055F4630E01EB12A988915448E_StaticFields*)il2cpp_codegen_static_fields_for(HttpVersion_t15E4A5DA9E037A055F4630E01EB12A988915448E_il2cpp_TypeInfo_var))->get_Version10_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_40; L_40 = Version_op_Equality_mB8525AD6D098EE54D9E0E5C9046F24B5CB197662(L_38, L_39, /*hidden argument*/NULL); G_B31_0 = ((int32_t)(L_40)); goto IL_01af; } IL_01ae: { G_B31_0 = 1; } IL_01af: { V_4 = (bool)G_B31_0; bool L_41 = __this->get_keepAlive_27(); if (!L_41) { goto IL_0209; } } { Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_42 = __this->get_version_35(); IL2CPP_RUNTIME_CLASS_INIT(HttpVersion_t15E4A5DA9E037A055F4630E01EB12A988915448E_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_43 = ((HttpVersion_t15E4A5DA9E037A055F4630E01EB12A988915448E_StaticFields*)il2cpp_codegen_static_fields_for(HttpVersion_t15E4A5DA9E037A055F4630E01EB12A988915448E_il2cpp_TypeInfo_var))->get_Version10_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_44; L_44 = Version_op_Equality_mB8525AD6D098EE54D9E0E5C9046F24B5CB197662(L_42, L_43, /*hidden argument*/NULL); bool L_45 = V_4; if (!((int32_t)((int32_t)L_44|(int32_t)L_45))) { goto IL_0209; } } { WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_46 = __this->get_webHeaders_26(); String_t* L_47 = V_2; NullCheck(L_46); String_t* L_48; L_48 = NameValueCollection_get_Item_mCA21B55D4454D35073475B2966BA0F9207D16FED(L_46, L_47, /*hidden argument*/NULL); if (!L_48) { goto IL_01f6; } } { WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_49 = __this->get_webHeaders_26(); String_t* L_50 = V_2; NullCheck(L_49); String_t* L_51; L_51 = NameValueCollection_get_Item_mCA21B55D4454D35073475B2966BA0F9207D16FED(L_49, L_50, /*hidden argument*/NULL); NullCheck(L_51); int32_t L_52; L_52 = String_IndexOf_mD99F5378A4220A0DA0D5097007417E777722ABDA(L_51, _stringLiteral8C5B5A80C04C3A4ACA2BEED3EDD587DD1F5398C6, 5, /*hidden argument*/NULL); if ((!(((uint32_t)L_52) == ((uint32_t)(-1))))) { goto IL_0234; } } IL_01f6: { WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_53 = __this->get_webHeaders_26(); String_t* L_54 = V_2; NullCheck(L_53); WebHeaderCollection_ChangeInternal_m2C0BFAF67320629676F805D70D8A97D50BA03EF0(L_53, L_54, _stringLiteral8C5B5A80C04C3A4ACA2BEED3EDD587DD1F5398C6, /*hidden argument*/NULL); goto IL_0234; } IL_0209: { bool L_55 = __this->get_keepAlive_27(); if (L_55) { goto IL_0234; } } { Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_56 = __this->get_version_35(); IL2CPP_RUNTIME_CLASS_INIT(HttpVersion_t15E4A5DA9E037A055F4630E01EB12A988915448E_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_57 = ((HttpVersion_t15E4A5DA9E037A055F4630E01EB12A988915448E_StaticFields*)il2cpp_codegen_static_fields_for(HttpVersion_t15E4A5DA9E037A055F4630E01EB12A988915448E_il2cpp_TypeInfo_var))->get_Version11_1(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_58; L_58 = Version_op_Equality_mB8525AD6D098EE54D9E0E5C9046F24B5CB197662(L_56, L_57, /*hidden argument*/NULL); if (!L_58) { goto IL_0234; } } { WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_59 = __this->get_webHeaders_26(); String_t* L_60 = V_2; NullCheck(L_59); WebHeaderCollection_ChangeInternal_m2C0BFAF67320629676F805D70D8A97D50BA03EF0(L_59, L_60, _stringLiteral093507DEB05FB14DD8659BC619825EC3274FD8C6, /*hidden argument*/NULL); } IL_0234: { WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_61 = __this->get_webHeaders_26(); String_t* L_62; L_62 = HttpWebRequest_get_Host_m4BE36083497FB8F5B7F317A1C097C0BCBE993533(__this, /*hidden argument*/NULL); NullCheck(L_61); WebHeaderCollection_SetInternal_mD14173DCCD03148462674B04D44BCD60E32BAEB8(L_61, _stringLiteral0242F31341D314854DB5EA5749448625B0A0AAE3, L_62, /*hidden argument*/NULL); CookieContainer_tF22AADBBB0BBD4D3FF4440A226F8E8580B08F4C2 * L_63 = __this->get_cookieContainer_22(); if (!L_63) { goto IL_0297; } } { CookieContainer_tF22AADBBB0BBD4D3FF4440A226F8E8580B08F4C2 * L_64 = __this->get_cookieContainer_22(); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_65 = __this->get_actualUri_13(); NullCheck(L_64); String_t* L_66; L_66 = CookieContainer_GetCookieHeader_m56FF8245FC28A3C8583AE0EEE8CF43A081D5CAB3(L_64, L_65, /*hidden argument*/NULL); V_6 = L_66; String_t* L_67 = V_6; bool L_68; L_68 = String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2(L_67, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, /*hidden argument*/NULL); if (!L_68) { goto IL_0287; } } { WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_69 = __this->get_webHeaders_26(); String_t* L_70 = V_6; NullCheck(L_69); WebHeaderCollection_ChangeInternal_m2C0BFAF67320629676F805D70D8A97D50BA03EF0(L_69, _stringLiteral67A54AB78AD61DDEB268617E3EE621D1193804DC, L_70, /*hidden argument*/NULL); goto IL_0297; } IL_0287: { WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_71 = __this->get_webHeaders_26(); NullCheck(L_71); WebHeaderCollection_RemoveInternal_m89528036293926837E8EA5703C1306C1E351B117(L_71, _stringLiteral67A54AB78AD61DDEB268617E3EE621D1193804DC, /*hidden argument*/NULL); } IL_0297: { V_5 = (String_t*)NULL; int32_t L_72 = __this->get_auto_decomp_53(); if (!((int32_t)((int32_t)L_72&(int32_t)1))) { goto IL_02ab; } } { V_5 = _stringLiteral04799565CD60A911F9CBB57805A3592363822500; } IL_02ab: { int32_t L_73 = __this->get_auto_decomp_53(); if (!((int32_t)((int32_t)L_73&(int32_t)2))) { goto IL_02c7; } } { String_t* L_74 = V_5; if (L_74) { goto IL_02c0; } } { G_B49_0 = _stringLiteral179A7752540EF152886B7EDDBBEA8F584E6DF2F3; goto IL_02c5; } IL_02c0: { G_B49_0 = _stringLiteralE63C3C7F5D1BA8FF5FE520557DB93719F06BE87A; } IL_02c5: { V_5 = G_B49_0; } IL_02c7: { String_t* L_75 = V_5; if (!L_75) { goto IL_02dd; } } { WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_76 = __this->get_webHeaders_26(); String_t* L_77 = V_5; NullCheck(L_76); WebHeaderCollection_ChangeInternal_m2C0BFAF67320629676F805D70D8A97D50BA03EF0(L_76, _stringLiteral0E5584AFF0328C3E9B727CFB3887E9E710B0F53D, L_77, /*hidden argument*/NULL); } IL_02dd: { bool L_78 = __this->get_usedPreAuth_34(); if (L_78) { goto IL_02f3; } } { bool L_79 = __this->get_preAuthenticate_33(); if (!L_79) { goto IL_02f3; } } { HttpWebRequest_DoPreAuthenticate_mA75D8713BEB89C84A5FEF0A7740B3499F508A7AA(__this, /*hidden argument*/NULL); } IL_02f3: { WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_80 = __this->get_webHeaders_26(); NullCheck(L_80); String_t* L_81; L_81 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_80); return L_81; } } // System.Void System.Net.HttpWebRequest::DoPreAuthenticate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequest_DoPreAuthenticate_mA75D8713BEB89C84A5FEF0A7740B3499F508A7AA (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AuthenticationManager_t12B1063A3B3145FC13818CAB49FEB75164840AAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IWebProxy_t27B6C29F0B62B717A9778AD251E31C21A91C32B3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9D5A3AE3D2B0B5E5AF5AB489000D9B88FA11E907); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBB1692DA8ED7544A3193330A7D73D82D06F61206); s_Il2CppMethodInitialized = true; } bool V_0 = false; RuntimeObject* V_1 = NULL; Authorization_t4207BA9B4BECE231F74BE9DBC09952FACFAE81EF * V_2 = NULL; String_t* V_3 = NULL; int32_t G_B3_0 = 0; RuntimeObject* G_B7_0 = NULL; String_t* G_B13_0 = NULL; { RuntimeObject* L_0 = __this->get_proxy_38(); if (!L_0) { goto IL_001e; } } { RuntimeObject* L_1 = __this->get_proxy_38(); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_2 = __this->get_actualUri_13(); NullCheck(L_1); bool L_3; L_3 = InterfaceFuncInvoker1< bool, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * >::Invoke(1 /* System.Boolean System.Net.IWebProxy::IsBypassed(System.Uri) */, IWebProxy_t27B6C29F0B62B717A9778AD251E31C21A91C32B3_il2cpp_TypeInfo_var, L_1, L_2); G_B3_0 = ((((int32_t)L_3) == ((int32_t)0))? 1 : 0); goto IL_001f; } IL_001e: { G_B3_0 = 0; } IL_001f: { V_0 = (bool)G_B3_0; bool L_4 = V_0; if (!L_4) { goto IL_0038; } } { RuntimeObject* L_5 = __this->get_credentials_23(); if (L_5) { goto IL_0038; } } { RuntimeObject* L_6 = __this->get_proxy_38(); NullCheck(L_6); RuntimeObject* L_7; L_7 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2 /* System.Net.ICredentials System.Net.IWebProxy::get_Credentials() */, IWebProxy_t27B6C29F0B62B717A9778AD251E31C21A91C32B3_il2cpp_TypeInfo_var, L_6); G_B7_0 = L_7; goto IL_003e; } IL_0038: { RuntimeObject* L_8 = __this->get_credentials_23(); G_B7_0 = L_8; } IL_003e: { V_1 = G_B7_0; RuntimeObject* L_9 = V_1; IL2CPP_RUNTIME_CLASS_INIT(AuthenticationManager_t12B1063A3B3145FC13818CAB49FEB75164840AAA_il2cpp_TypeInfo_var); Authorization_t4207BA9B4BECE231F74BE9DBC09952FACFAE81EF * L_10; L_10 = AuthenticationManager_PreAuthenticate_m5C036738DC30669FB5CC79CEFBA53AFC7411BA88(__this, L_9, /*hidden argument*/NULL); V_2 = L_10; Authorization_t4207BA9B4BECE231F74BE9DBC09952FACFAE81EF * L_11 = V_2; if (L_11) { goto IL_004b; } } { return; } IL_004b: { WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_12 = __this->get_webHeaders_26(); NullCheck(L_12); WebHeaderCollection_RemoveInternal_m89528036293926837E8EA5703C1306C1E351B117(L_12, _stringLiteralBB1692DA8ED7544A3193330A7D73D82D06F61206, /*hidden argument*/NULL); WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_13 = __this->get_webHeaders_26(); NullCheck(L_13); WebHeaderCollection_RemoveInternal_m89528036293926837E8EA5703C1306C1E351B117(L_13, _stringLiteral9D5A3AE3D2B0B5E5AF5AB489000D9B88FA11E907, /*hidden argument*/NULL); bool L_14 = V_0; if (!L_14) { goto IL_0076; } } { RuntimeObject* L_15 = __this->get_credentials_23(); if (!L_15) { goto IL_007d; } } IL_0076: { G_B13_0 = _stringLiteral9D5A3AE3D2B0B5E5AF5AB489000D9B88FA11E907; goto IL_0082; } IL_007d: { G_B13_0 = _stringLiteralBB1692DA8ED7544A3193330A7D73D82D06F61206; } IL_0082: { V_3 = G_B13_0; WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_16 = __this->get_webHeaders_26(); String_t* L_17 = V_3; Authorization_t4207BA9B4BECE231F74BE9DBC09952FACFAE81EF * L_18 = V_2; NullCheck(L_18); String_t* L_19; L_19 = Authorization_get_Message_mA648F467F28DCD3ECBE3C8505B719519BD803C2A_inline(L_18, /*hidden argument*/NULL); NullCheck(L_16); NameValueCollection_set_Item_m068F8AB7B8D0EDFD8A9DA582E80A20ACF9E8D692(L_16, L_17, L_19, /*hidden argument*/NULL); __this->set_usedPreAuth_34((bool)1); return; } } // System.Byte[] System.Net.HttpWebRequest::GetRequestHeaders() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* HttpWebRequest_GetRequestHeaders_m3B6049DA9BBF3C0010212922C6E7082EEBE13214 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCCF9B4381E17EB3FA83CA75FC222B202151023BF); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF3D9848D37659886492A7B82871CF5FF29A443E7); s_Il2CppMethodInitialized = true; } StringBuilder_t * V_0 = NULL; String_t* V_1 = NULL; String_t* V_2 = NULL; { StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9(L_0, /*hidden argument*/NULL); V_0 = L_0; bool L_1; L_1 = HttpWebRequest_get_ProxyQuery_m5AC4ED79E30E2253BE5508B87805592B4FD2F1F5(__this, /*hidden argument*/NULL); if (L_1) { goto IL_001c; } } { Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_2 = __this->get_actualUri_13(); NullCheck(L_2); String_t* L_3; L_3 = Uri_get_PathAndQuery_m0FFF28F15DF953C5866C2A0DEEA2034ECE6A0F35(L_2, /*hidden argument*/NULL); V_1 = L_3; goto IL_0043; } IL_001c: { Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_4 = __this->get_actualUri_13(); NullCheck(L_4); String_t* L_5; L_5 = Uri_get_Scheme_mEC4980E1C82DE3963007E33C759742A02A26FF29(L_4, /*hidden argument*/NULL); String_t* L_6; L_6 = HttpWebRequest_get_Host_m4BE36083497FB8F5B7F317A1C097C0BCBE993533(__this, /*hidden argument*/NULL); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_7 = __this->get_actualUri_13(); NullCheck(L_7); String_t* L_8; L_8 = Uri_get_PathAndQuery_m0FFF28F15DF953C5866C2A0DEEA2034ECE6A0F35(L_7, /*hidden argument*/NULL); String_t* L_9; L_9 = String_Format_m039737CCD992C5BFC8D16DFD681F5E8786E87FA6(_stringLiteralCCF9B4381E17EB3FA83CA75FC222B202151023BF, L_5, L_6, L_8, /*hidden argument*/NULL); V_1 = L_9; } IL_0043: { bool L_10 = __this->get_force_version_36(); if (L_10) { goto IL_0089; } } { ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * L_11 = __this->get_servicePoint_40(); NullCheck(L_11); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_12; L_12 = VirtualFuncInvoker0< Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * >::Invoke(4 /* System.Version System.Net.ServicePoint::get_ProtocolVersion() */, L_11); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_13; L_13 = Version_op_Inequality_mCF079498CD00AA720348D8F7CABEBC8DDA798B0F(L_12, (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)NULL, /*hidden argument*/NULL); if (!L_13) { goto IL_0089; } } { ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * L_14 = __this->get_servicePoint_40(); NullCheck(L_14); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_15; L_15 = VirtualFuncInvoker0< Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * >::Invoke(4 /* System.Version System.Net.ServicePoint::get_ProtocolVersion() */, L_14); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_16 = __this->get_version_35(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_17; L_17 = Version_op_LessThan_mB0C93EF569AE4C84BB666CD12AC7C326243CE3FF(L_15, L_16, /*hidden argument*/NULL); if (!L_17) { goto IL_0089; } } { ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * L_18 = __this->get_servicePoint_40(); NullCheck(L_18); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_19; L_19 = VirtualFuncInvoker0< Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * >::Invoke(4 /* System.Version System.Net.ServicePoint::get_ProtocolVersion() */, L_18); __this->set_actualVersion_37(L_19); goto IL_0095; } IL_0089: { Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_20 = __this->get_version_35(); __this->set_actualVersion_37(L_20); } IL_0095: { StringBuilder_t * L_21 = V_0; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_22 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)4); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_23 = L_22; String_t* L_24 = __this->get_method_30(); NullCheck(L_23); ArrayElementTypeCheck (L_23, L_24); (L_23)->SetAt(static_cast(0), (RuntimeObject *)L_24); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_25 = L_23; String_t* L_26 = V_1; NullCheck(L_25); ArrayElementTypeCheck (L_25, L_26); (L_25)->SetAt(static_cast(1), (RuntimeObject *)L_26); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = L_25; Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_28 = __this->get_actualVersion_37(); NullCheck(L_28); int32_t L_29; L_29 = Version_get_Major_mBDD414863C4A05FADE87F8C39C8CE8ED6DE6C460_inline(L_28, /*hidden argument*/NULL); int32_t L_30 = L_29; RuntimeObject * L_31 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_30); NullCheck(L_27); ArrayElementTypeCheck (L_27, L_31); (L_27)->SetAt(static_cast(2), (RuntimeObject *)L_31); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_32 = L_27; Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_33 = __this->get_actualVersion_37(); NullCheck(L_33); int32_t L_34; L_34 = Version_get_Minor_m8FCC5D46616E2E54B213EDF31CF3EB57EC998BCE_inline(L_33, /*hidden argument*/NULL); int32_t L_35 = L_34; RuntimeObject * L_36 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_35); NullCheck(L_32); ArrayElementTypeCheck (L_32, L_36); (L_32)->SetAt(static_cast(3), (RuntimeObject *)L_36); NullCheck(L_21); StringBuilder_t * L_37; L_37 = StringBuilder_AppendFormat_m97C4AAABA51FCC2D426BD22FE05BEC045AB9D6F8(L_21, _stringLiteralF3D9848D37659886492A7B82871CF5FF29A443E7, L_32, /*hidden argument*/NULL); StringBuilder_t * L_38 = V_0; String_t* L_39; L_39 = HttpWebRequest_GetHeaders_m3D09D15A7A2D66D84942B9601893C60F6A9EF332(__this, /*hidden argument*/NULL); NullCheck(L_38); StringBuilder_t * L_40; L_40 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_38, L_39, /*hidden argument*/NULL); StringBuilder_t * L_41 = V_0; NullCheck(L_41); String_t* L_42; L_42 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_41); V_2 = L_42; Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_43; L_43 = Encoding_get_UTF8_mC877FB3137BBD566AEE7B15F9BF61DC4EF8F5E5E(/*hidden argument*/NULL); String_t* L_44 = V_2; NullCheck(L_43); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_45; L_45 = VirtualFuncInvoker1< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, String_t* >::Invoke(18 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_43, L_44); return L_45; } } // System.ValueTuple`2 System.Net.HttpWebRequest::HandleNtlmAuth(System.Net.WebResponseStream,System.Net.HttpWebResponse,System.Net.BufferOffsetSize,System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_2_tD78E716C9AB70F51F241465A32F5F5E49DA3529A HttpWebRequest_HandleNtlmAuth_mEA5D713B4B79D9F17FB7BFFC4AAFAEF9CB23EC98 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F * ___stream0, HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * ___response1, BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F * ___writeBuffer2, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___cancellationToken3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICredentials_t7F4F7C8E1E36461DC5388554FF404E2203D30C48_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IWebProxy_t27B6C29F0B62B717A9778AD251E31C21A91C32B3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueTuple_2__ctor_m94864A1292FF05A543AF60D5B4B030C91C09B5DC_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3556155D25CE64C710CC61A8C9D361B08530D364); s_Il2CppMethodInitialized = true; } bool V_0 = false; bool V_1 = false; WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * V_2 = NULL; RuntimeObject* V_3 = NULL; AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 V_4; memset((&V_4), 0, sizeof(V_4)); AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 G_B3_0; memset((&G_B3_0), 0, sizeof(G_B3_0)); int32_t G_B8_0 = 0; RuntimeObject* G_B12_0 = NULL; { HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * L_0 = ___response1; NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(14 /* System.Net.HttpStatusCode System.Net.HttpWebResponse::get_StatusCode() */, L_0); V_0 = (bool)((((int32_t)L_1) == ((int32_t)((int32_t)407)))? 1 : 0); bool L_2 = V_0; if (L_2) { goto IL_0019; } } { AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 L_3 = __this->get_auth_state_59(); G_B3_0 = L_3; goto IL_001f; } IL_0019: { AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 L_4 = __this->get_proxy_auth_state_60(); G_B3_0 = L_4; } IL_001f: { V_4 = G_B3_0; int32_t L_5; L_5 = AuthorizationState_get_NtlmAuthState_mFEDD4ECDE8761AD54175DBBD0EA53C45CD545998_inline((AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 *)(&V_4), /*hidden argument*/NULL); if (L_5) { goto IL_0032; } } { ValueTuple_2_tD78E716C9AB70F51F241465A32F5F5E49DA3529A L_6; memset((&L_6), 0, sizeof(L_6)); ValueTuple_2__ctor_m94864A1292FF05A543AF60D5B4B030C91C09B5DC((&L_6), (WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 *)NULL, (bool)0, /*hidden argument*/ValueTuple_2__ctor_m94864A1292FF05A543AF60D5B4B030C91C09B5DC_RuntimeMethod_var); return L_6; } IL_0032: { AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 * L_7 = __this->get_address_of_auth_state_59(); int32_t L_8; L_8 = AuthorizationState_get_NtlmAuthState_mFEDD4ECDE8761AD54175DBBD0EA53C45CD545998_inline((AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 *)L_7, /*hidden argument*/NULL); if ((((int32_t)L_8) == ((int32_t)1))) { goto IL_0050; } } { AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 * L_9 = __this->get_address_of_proxy_auth_state_60(); int32_t L_10; L_10 = AuthorizationState_get_NtlmAuthState_mFEDD4ECDE8761AD54175DBBD0EA53C45CD545998_inline((AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 *)L_9, /*hidden argument*/NULL); G_B8_0 = ((((int32_t)L_10) == ((int32_t)1))? 1 : 0); goto IL_0051; } IL_0050: { G_B8_0 = 1; } IL_0051: { V_1 = (bool)G_B8_0; BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F * L_11 = ___writeBuffer2; bool L_12 = V_1; CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_13 = ___cancellationToken3; WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * L_14 = (WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 *)il2cpp_codegen_object_new(WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00_il2cpp_TypeInfo_var); WebOperation__ctor_m96504E6643DE8C742BA96388F16B1A96E1241B61(L_14, __this, L_11, L_12, L_13, /*hidden argument*/NULL); V_2 = L_14; WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F * L_15 = ___stream0; NullCheck(L_15); WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * L_16; L_16 = WebConnectionStream_get_Operation_mD926B0BCCEBE04C640DE920C22736C109E95FF27_inline(L_15, /*hidden argument*/NULL); WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * L_17 = V_2; NullCheck(L_16); WebOperation_SetPriorityRequest_m053832617F1EA98EA4A02960BE635C2697485CE9(L_16, L_17, /*hidden argument*/NULL); bool L_18 = V_0; if (!L_18) { goto IL_0081; } } { RuntimeObject* L_19 = __this->get_proxy_38(); if (!L_19) { goto IL_0081; } } { RuntimeObject* L_20 = __this->get_proxy_38(); NullCheck(L_20); RuntimeObject* L_21; L_21 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2 /* System.Net.ICredentials System.Net.IWebProxy::get_Credentials() */, IWebProxy_t27B6C29F0B62B717A9778AD251E31C21A91C32B3_il2cpp_TypeInfo_var, L_20); G_B12_0 = L_21; goto IL_0087; } IL_0081: { RuntimeObject* L_22 = __this->get_credentials_23(); G_B12_0 = L_22; } IL_0087: { V_3 = G_B12_0; RuntimeObject* L_23 = V_3; if (!L_23) { goto IL_00b8; } } { WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F * L_24 = ___stream0; NullCheck(L_24); WebConnection_tBFE079FE6CA946AE000FE257DD8FE6F898BB3C88 * L_25; L_25 = WebConnectionStream_get_Connection_m24DACC6F27A46E8201E23C10F3A4CB322136F546_inline(L_24, /*hidden argument*/NULL); RuntimeObject* L_26 = V_3; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_27 = __this->get_requestUri_12(); NullCheck(L_26); NetworkCredential_t263CA6068540C6DA0E1CDE919BD7A15C28D55686 * L_28; L_28 = InterfaceFuncInvoker2< NetworkCredential_t263CA6068540C6DA0E1CDE919BD7A15C28D55686 *, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *, String_t* >::Invoke(0 /* System.Net.NetworkCredential System.Net.ICredentials::GetCredential(System.Uri,System.String) */, ICredentials_t7F4F7C8E1E36461DC5388554FF404E2203D30C48_il2cpp_TypeInfo_var, L_26, L_27, _stringLiteral3556155D25CE64C710CC61A8C9D361B08530D364); NullCheck(L_25); WebConnection_set_NtlmCredential_m2CB4ACA640EF4E2664728A662DB51EFA34169F33_inline(L_25, L_28, /*hidden argument*/NULL); WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F * L_29 = ___stream0; NullCheck(L_29); WebConnection_tBFE079FE6CA946AE000FE257DD8FE6F898BB3C88 * L_30; L_30 = WebConnectionStream_get_Connection_m24DACC6F27A46E8201E23C10F3A4CB322136F546_inline(L_29, /*hidden argument*/NULL); bool L_31 = __this->get_unsafe_auth_blah_64(); NullCheck(L_30); WebConnection_set_UnsafeAuthenticatedConnectionSharing_mDF2C242F4AA72103C903B77ECEEC77E31B861D2D_inline(L_30, L_31, /*hidden argument*/NULL); } IL_00b8: { WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * L_32 = V_2; bool L_33 = V_1; ValueTuple_2_tD78E716C9AB70F51F241465A32F5F5E49DA3529A L_34; memset((&L_34), 0, sizeof(L_34)); ValueTuple_2__ctor_m94864A1292FF05A543AF60D5B4B030C91C09B5DC((&L_34), L_32, L_33, /*hidden argument*/ValueTuple_2__ctor_m94864A1292FF05A543AF60D5B4B030C91C09B5DC_RuntimeMethod_var); return L_34; } } // System.Boolean System.Net.HttpWebRequest::CheckAuthorization(System.Net.WebResponse,System.Net.HttpStatusCode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HttpWebRequest_CheckAuthorization_mBFD43C285829AADD842336C02579A5340724C2C4 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * ___response0, int32_t ___code1, const RuntimeMethod* method) { { int32_t L_0 = ___code1; if (((((int32_t)L_0) == ((int32_t)((int32_t)407)))? 1 : 0)) { goto IL_0018; } } { AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 * L_1 = __this->get_address_of_auth_state_59(); WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * L_2 = ___response0; int32_t L_3 = ___code1; bool L_4; L_4 = AuthorizationState_CheckAuthorization_mD0838BEBBE0758BCC35AC158CC8D7A8D068BA530((AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 *)L_1, L_2, L_3, /*hidden argument*/NULL); return L_4; } IL_0018: { AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 * L_5 = __this->get_address_of_proxy_auth_state_60(); WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * L_6 = ___response0; int32_t L_7 = ___code1; bool L_8; L_8 = AuthorizationState_CheckAuthorization_mD0838BEBBE0758BCC35AC158CC8D7A8D068BA530((AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 *)L_5, L_6, L_7, /*hidden argument*/NULL); return L_8; } } // System.ValueTuple`2,System.Net.WebException> System.Net.HttpWebRequest::GetRewriteHandler(System.Net.HttpWebResponse,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_2_t1621CD4F642143300FDDE5DD742EE63BDD1A912B HttpWebRequest_GetRewriteHandler_m738A251B8F35D52F5180E492AC159D41C573EB08 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * ___response0, bool ___redirect1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_1_Invoke_mFD9EDC2BD9D6D41ED14BD782562A94A6FE8A001A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_1__ctor_m70E48EBD58B772FF497E06B6D00E1E9DD2FD384C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_1_tA554ECD263DF723DB4D49570AF9703DEC8DE6EE4_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpWebRequest_U3CGetRewriteHandlerU3Eb__263_0_mA36957ACE779C085A46B322E329B88B6E3BF6B48_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_FromResult_TisBufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F_m4C83A1CC72A6604BB7D0018D55A4718AB48C8E3E_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueTuple_2__ctor_mFF98EA786F5E638ADF3425C005884F10344AF6B7_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebException_t824617203133537D3B05BF786C22AECE0E2DBD08_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral115207EC26C7407DBAFB2698E0109D3A06E54ADF); s_Il2CppMethodInitialized = true; } { bool L_0 = ___redirect1; if (!L_0) { goto IL_0030; } } { bool L_1; L_1 = HttpWebRequest_get_MethodWithBuffer_mDFB58A016AEF0EA84BA2EF5F07F582B23D9FC035(__this, /*hidden argument*/NULL); if (L_1) { goto IL_0013; } } { ValueTuple_2_t1621CD4F642143300FDDE5DD742EE63BDD1A912B L_2; memset((&L_2), 0, sizeof(L_2)); ValueTuple_2__ctor_mFF98EA786F5E638ADF3425C005884F10344AF6B7((&L_2), (Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 *)NULL, (WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 *)NULL, /*hidden argument*/ValueTuple_2__ctor_mFF98EA786F5E638ADF3425C005884F10344AF6B7_RuntimeMethod_var); return L_2; } IL_0013: { WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887 * L_3 = __this->get_writeStream_42(); NullCheck(L_3); int32_t L_4; L_4 = WebRequestStream_get_WriteBufferLength_m7273B48C66EA74818498EA8B0A27BFC9E6DA81D8(L_3, /*hidden argument*/NULL); if (!L_4) { goto IL_0028; } } { int64_t L_5 = __this->get_contentLength_20(); if (L_5) { goto IL_0030; } } IL_0028: { ValueTuple_2_t1621CD4F642143300FDDE5DD742EE63BDD1A912B L_6; memset((&L_6), 0, sizeof(L_6)); ValueTuple_2__ctor_mFF98EA786F5E638ADF3425C005884F10344AF6B7((&L_6), (Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 *)NULL, (WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 *)NULL, /*hidden argument*/ValueTuple_2__ctor_mFF98EA786F5E638ADF3425C005884F10344AF6B7_RuntimeMethod_var); return L_6; } IL_0030: { bool L_7; L_7 = VirtualFuncInvoker0< bool >::Invoke(28 /* System.Boolean System.Net.HttpWebRequest::get_AllowWriteStreamBuffering() */, __this); if (!L_7) { goto IL_004f; } } { WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887 * L_8 = __this->get_writeStream_42(); NullCheck(L_8); BufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F * L_9; L_9 = WebRequestStream_GetWriteBuffer_m1DFC67A5EA52C446730DAEF5594B2EB729E52B73(L_8, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_il2cpp_TypeInfo_var); Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 * L_10; L_10 = Task_FromResult_TisBufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F_m4C83A1CC72A6604BB7D0018D55A4718AB48C8E3E(L_9, /*hidden argument*/Task_FromResult_TisBufferOffsetSize_tF2771CD84FA1EB3961DB41CF866EDE296987572F_m4C83A1CC72A6604BB7D0018D55A4718AB48C8E3E_RuntimeMethod_var); ValueTuple_2_t1621CD4F642143300FDDE5DD742EE63BDD1A912B L_11; memset((&L_11), 0, sizeof(L_11)); ValueTuple_2__ctor_mFF98EA786F5E638ADF3425C005884F10344AF6B7((&L_11), L_10, (WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 *)NULL, /*hidden argument*/ValueTuple_2__ctor_mFF98EA786F5E638ADF3425C005884F10344AF6B7_RuntimeMethod_var); return L_11; } IL_004f: { Func_2_t1536C4C0AD9482796F7C72574A4B3DE8607E4E20 * L_12 = __this->get_ResendContentFactory_62(); if (L_12) { goto IL_006b; } } { HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * L_13 = ___response0; WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * L_14 = (WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 *)il2cpp_codegen_object_new(WebException_t824617203133537D3B05BF786C22AECE0E2DBD08_il2cpp_TypeInfo_var); WebException__ctor_m7C17EA99B1FE182295AF99B968D67080AD4E2CCE(L_14, _stringLiteral115207EC26C7407DBAFB2698E0109D3A06E54ADF, (Exception_t *)NULL, 7, L_13, /*hidden argument*/NULL); ValueTuple_2_t1621CD4F642143300FDDE5DD742EE63BDD1A912B L_15; memset((&L_15), 0, sizeof(L_15)); ValueTuple_2__ctor_mFF98EA786F5E638ADF3425C005884F10344AF6B7((&L_15), (Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 *)NULL, L_14, /*hidden argument*/ValueTuple_2__ctor_mFF98EA786F5E638ADF3425C005884F10344AF6B7_RuntimeMethod_var); return L_15; } IL_006b: { Func_1_tA554ECD263DF723DB4D49570AF9703DEC8DE6EE4 * L_16 = (Func_1_tA554ECD263DF723DB4D49570AF9703DEC8DE6EE4 *)il2cpp_codegen_object_new(Func_1_tA554ECD263DF723DB4D49570AF9703DEC8DE6EE4_il2cpp_TypeInfo_var); Func_1__ctor_m70E48EBD58B772FF497E06B6D00E1E9DD2FD384C(L_16, __this, (intptr_t)((intptr_t)HttpWebRequest_U3CGetRewriteHandlerU3Eb__263_0_mA36957ACE779C085A46B322E329B88B6E3BF6B48_RuntimeMethod_var), /*hidden argument*/Func_1__ctor_m70E48EBD58B772FF497E06B6D00E1E9DD2FD384C_RuntimeMethod_var); NullCheck(L_16); Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 * L_17; L_17 = Func_1_Invoke_mFD9EDC2BD9D6D41ED14BD782562A94A6FE8A001A(L_16, /*hidden argument*/Func_1_Invoke_mFD9EDC2BD9D6D41ED14BD782562A94A6FE8A001A_RuntimeMethod_var); ValueTuple_2_t1621CD4F642143300FDDE5DD742EE63BDD1A912B L_18; memset((&L_18), 0, sizeof(L_18)); ValueTuple_2__ctor_mFF98EA786F5E638ADF3425C005884F10344AF6B7((&L_18), L_17, (WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 *)NULL, /*hidden argument*/ValueTuple_2__ctor_mFF98EA786F5E638ADF3425C005884F10344AF6B7_RuntimeMethod_var); return L_18; } } // System.ValueTuple`4,System.Net.WebException> System.Net.HttpWebRequest::CheckFinalStatus(System.Net.HttpWebResponse) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_4_tA55DEA5229133F0BC4EC4246133E0AFC1DF98F0B HttpWebRequest_CheckFinalStatus_mA7B86C114CE26219CD58C78F5D80A300C5FB3D64 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * ___response0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueTuple_4__ctor_m4C3944E2195833C5FFE382F82C1A088A4378AE6B_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebException_t824617203133537D3B05BF786C22AECE0E2DBD08_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6D2AFE039B56F95142AEA3CAEDF4CDFA030555A5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAE0FE550C017CBB356425EAF984EE8AA74DFDCCE); s_Il2CppMethodInitialized = true; } WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * V_0 = NULL; bool V_1 = false; int32_t V_2 = 0; Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 * V_3 = NULL; int32_t V_4 = 0; bool V_5 = false; { V_0 = (WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 *)NULL; V_1 = (bool)0; V_2 = 0; V_3 = (Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 *)NULL; HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * L_0 = ___response0; NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(14 /* System.Net.HttpStatusCode System.Net.HttpWebResponse::get_StatusCode() */, L_0); V_2 = L_1; AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 * L_2 = __this->get_address_of_auth_state_59(); bool L_3; L_3 = AuthorizationState_get_IsCompleted_mABE39DA7D1F4B5D38315EB2CB3E862243602153A_inline((AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 *)L_2, /*hidden argument*/NULL); if (L_3) { goto IL_002c; } } { int32_t L_4 = V_2; if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)401))))) { goto IL_002c; } } { RuntimeObject* L_5 = __this->get_credentials_23(); if (L_5) { goto IL_004f; } } IL_002c: { bool L_6; L_6 = HttpWebRequest_get_ProxyQuery_m5AC4ED79E30E2253BE5508B87805592B4FD2F1F5(__this, /*hidden argument*/NULL); if (!L_6) { goto IL_00cb; } } { AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 * L_7 = __this->get_address_of_proxy_auth_state_60(); bool L_8; L_8 = AuthorizationState_get_IsCompleted_mABE39DA7D1F4B5D38315EB2CB3E862243602153A_inline((AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 *)L_7, /*hidden argument*/NULL); if (L_8) { goto IL_00cb; } } { int32_t L_9 = V_2; if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)407))))) { goto IL_00cb; } } IL_004f: { bool L_10 = __this->get_usedPreAuth_34(); if (L_10) { goto IL_00cb; } } { HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * L_11 = ___response0; int32_t L_12 = V_2; bool L_13; L_13 = HttpWebRequest_CheckAuthorization_mBFD43C285829AADD842336C02579A5340724C2C4(__this, L_11, L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_00cb; } } { V_1 = (bool)1; bool L_14; L_14 = HttpWebRequest_get_MethodWithBuffer_mDFB58A016AEF0EA84BA2EF5F07F582B23D9FC035(__this, /*hidden argument*/NULL); if (L_14) { goto IL_0075; } } { bool L_15 = V_1; ValueTuple_4_tA55DEA5229133F0BC4EC4246133E0AFC1DF98F0B L_16; memset((&L_16), 0, sizeof(L_16)); ValueTuple_4__ctor_m4C3944E2195833C5FFE382F82C1A088A4378AE6B((&L_16), (bool)1, L_15, (Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 *)NULL, (WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 *)NULL, /*hidden argument*/ValueTuple_4__ctor_m4C3944E2195833C5FFE382F82C1A088A4378AE6B_RuntimeMethod_var); return L_16; } IL_0075: { HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * L_17 = ___response0; ValueTuple_2_t1621CD4F642143300FDDE5DD742EE63BDD1A912B L_18; L_18 = HttpWebRequest_GetRewriteHandler_m738A251B8F35D52F5180E492AC159D41C573EB08(__this, L_17, (bool)0, /*hidden argument*/NULL); ValueTuple_2_t1621CD4F642143300FDDE5DD742EE63BDD1A912B L_19 = L_18; Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 * L_20 = L_19.get_Item1_0(); V_3 = L_20; WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * L_21 = L_19.get_Item2_1(); V_0 = L_21; WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * L_22 = V_0; if (L_22) { goto IL_0097; } } { bool L_23 = V_1; Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 * L_24 = V_3; ValueTuple_4_tA55DEA5229133F0BC4EC4246133E0AFC1DF98F0B L_25; memset((&L_25), 0, sizeof(L_25)); ValueTuple_4__ctor_m4C3944E2195833C5FFE382F82C1A088A4378AE6B((&L_25), (bool)1, L_23, L_24, (WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 *)NULL, /*hidden argument*/ValueTuple_4__ctor_m4C3944E2195833C5FFE382F82C1A088A4378AE6B_RuntimeMethod_var); return L_25; } IL_0097: { bool L_26; L_26 = HttpWebRequest_get_ThrowOnError_m0B8D02222A712AD394B318277BEB989794008266_inline(__this, /*hidden argument*/NULL); if (L_26) { goto IL_00a9; } } { bool L_27 = V_1; ValueTuple_4_tA55DEA5229133F0BC4EC4246133E0AFC1DF98F0B L_28; memset((&L_28), 0, sizeof(L_28)); ValueTuple_4__ctor_m4C3944E2195833C5FFE382F82C1A088A4378AE6B((&L_28), (bool)0, L_27, (Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 *)NULL, (WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 *)NULL, /*hidden argument*/ValueTuple_4__ctor_m4C3944E2195833C5FFE382F82C1A088A4378AE6B_RuntimeMethod_var); return L_28; } IL_00a9: { WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887 * L_29 = __this->get_writeStream_42(); NullCheck(L_29); WebConnectionStream_InternalClose_m81218D2A038DDB1B214BDC9C596BC1839D4D558B(L_29, /*hidden argument*/NULL); __this->set_writeStream_42((WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887 *)NULL); HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * L_30 = ___response0; NullCheck(L_30); VirtualActionInvoker0::Invoke(9 /* System.Void System.Net.WebResponse::Close() */, L_30); bool L_31 = V_1; WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * L_32 = V_0; ValueTuple_4_tA55DEA5229133F0BC4EC4246133E0AFC1DF98F0B L_33; memset((&L_33), 0, sizeof(L_33)); ValueTuple_4__ctor_m4C3944E2195833C5FFE382F82C1A088A4378AE6B((&L_33), (bool)0, L_31, (Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 *)NULL, L_32, /*hidden argument*/ValueTuple_4__ctor_m4C3944E2195833C5FFE382F82C1A088A4378AE6B_RuntimeMethod_var); return L_33; } IL_00cb: { int32_t L_34 = V_2; if ((((int32_t)L_34) < ((int32_t)((int32_t)400)))) { goto IL_00f6; } } { int32_t L_35 = V_2; int32_t L_36 = ((int32_t)L_35); RuntimeObject * L_37 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_36); HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * L_38 = ___response0; NullCheck(L_38); String_t* L_39; L_39 = VirtualFuncInvoker0< String_t* >::Invoke(15 /* System.String System.Net.HttpWebResponse::get_StatusDescription() */, L_38); String_t* L_40; L_40 = String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66(_stringLiteralAE0FE550C017CBB356425EAF984EE8AA74DFDCCE, L_37, L_39, /*hidden argument*/NULL); HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * L_41 = ___response0; WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * L_42 = (WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 *)il2cpp_codegen_object_new(WebException_t824617203133537D3B05BF786C22AECE0E2DBD08_il2cpp_TypeInfo_var); WebException__ctor_m7C17EA99B1FE182295AF99B968D67080AD4E2CCE(L_42, L_40, (Exception_t *)NULL, 7, L_41, /*hidden argument*/NULL); V_0 = L_42; V_1 = (bool)1; goto IL_0155; } IL_00f6: { int32_t L_43 = V_2; if ((!(((uint32_t)L_43) == ((uint32_t)((int32_t)304))))) { goto IL_0127; } } { bool L_44 = __this->get_allowAutoRedirect_15(); if (!L_44) { goto IL_0127; } } { int32_t L_45 = V_2; int32_t L_46 = ((int32_t)L_45); RuntimeObject * L_47 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_46); HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * L_48 = ___response0; NullCheck(L_48); String_t* L_49; L_49 = VirtualFuncInvoker0< String_t* >::Invoke(15 /* System.String System.Net.HttpWebResponse::get_StatusDescription() */, L_48); String_t* L_50; L_50 = String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66(_stringLiteralAE0FE550C017CBB356425EAF984EE8AA74DFDCCE, L_47, L_49, /*hidden argument*/NULL); HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * L_51 = ___response0; WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * L_52 = (WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 *)il2cpp_codegen_object_new(WebException_t824617203133537D3B05BF786C22AECE0E2DBD08_il2cpp_TypeInfo_var); WebException__ctor_m7C17EA99B1FE182295AF99B968D67080AD4E2CCE(L_52, L_50, (Exception_t *)NULL, 7, L_51, /*hidden argument*/NULL); V_0 = L_52; goto IL_0155; } IL_0127: { int32_t L_53 = V_2; if ((((int32_t)L_53) < ((int32_t)((int32_t)300)))) { goto IL_0155; } } { bool L_54 = __this->get_allowAutoRedirect_15(); if (!L_54) { goto IL_0155; } } { int32_t L_55 = __this->get_redirects_48(); int32_t L_56 = __this->get_maxAutoRedirect_28(); if ((((int32_t)L_55) < ((int32_t)L_56))) { goto IL_0155; } } { HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * L_57 = ___response0; WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * L_58 = (WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 *)il2cpp_codegen_object_new(WebException_t824617203133537D3B05BF786C22AECE0E2DBD08_il2cpp_TypeInfo_var); WebException__ctor_m7C17EA99B1FE182295AF99B968D67080AD4E2CCE(L_58, _stringLiteral6D2AFE039B56F95142AEA3CAEDF4CDFA030555A5, (Exception_t *)NULL, 7, L_57, /*hidden argument*/NULL); V_0 = L_58; V_1 = (bool)1; } IL_0155: { WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * L_59 = V_0; if (L_59) { goto IL_01d2; } } { int32_t L_60 = V_2; V_4 = L_60; V_5 = (bool)0; bool L_61 = __this->get_allowAutoRedirect_15(); if (!L_61) { goto IL_01b0; } } { int32_t L_62 = V_4; if ((((int32_t)L_62) < ((int32_t)((int32_t)300)))) { goto IL_01b0; } } { int32_t L_63 = V_2; HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * L_64 = ___response0; bool L_65; L_65 = HttpWebRequest_Redirect_m157E18FBFBCF9B50EC86DFBD6BE6E5AB665FC550(__this, L_63, L_64, /*hidden argument*/NULL); V_5 = L_65; HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * L_66 = ___response0; ValueTuple_2_t1621CD4F642143300FDDE5DD742EE63BDD1A912B L_67; L_67 = HttpWebRequest_GetRewriteHandler_m738A251B8F35D52F5180E492AC159D41C573EB08(__this, L_66, (bool)1, /*hidden argument*/NULL); ValueTuple_2_t1621CD4F642143300FDDE5DD742EE63BDD1A912B L_68 = L_67; Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 * L_69 = L_68.get_Item1_0(); V_3 = L_69; WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * L_70 = L_68.get_Item2_1(); V_0 = L_70; bool L_71 = V_5; if (!L_71) { goto IL_01b0; } } { bool L_72 = __this->get_unsafe_auth_blah_64(); if (L_72) { goto IL_01b0; } } { AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 * L_73 = __this->get_address_of_auth_state_59(); AuthorizationState_Reset_m50782ECAB7A02CDD325253EC646A797780547BD2((AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 *)L_73, /*hidden argument*/NULL); AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 * L_74 = __this->get_address_of_proxy_auth_state_60(); AuthorizationState_Reset_m50782ECAB7A02CDD325253EC646A797780547BD2((AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 *)L_74, /*hidden argument*/NULL); } IL_01b0: { int32_t L_75 = V_4; if ((((int32_t)L_75) < ((int32_t)((int32_t)300)))) { goto IL_01c4; } } { int32_t L_76 = V_4; if ((((int32_t)L_76) == ((int32_t)((int32_t)304)))) { goto IL_01c4; } } { V_1 = (bool)1; } IL_01c4: { WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * L_77 = V_0; if (L_77) { goto IL_01d2; } } { bool L_78 = V_5; bool L_79 = V_1; Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 * L_80 = V_3; ValueTuple_4_tA55DEA5229133F0BC4EC4246133E0AFC1DF98F0B L_81; memset((&L_81), 0, sizeof(L_81)); ValueTuple_4__ctor_m4C3944E2195833C5FFE382F82C1A088A4378AE6B((&L_81), L_78, L_79, L_80, (WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 *)NULL, /*hidden argument*/ValueTuple_4__ctor_m4C3944E2195833C5FFE382F82C1A088A4378AE6B_RuntimeMethod_var); return L_81; } IL_01d2: { bool L_82; L_82 = HttpWebRequest_get_ThrowOnError_m0B8D02222A712AD394B318277BEB989794008266_inline(__this, /*hidden argument*/NULL); if (L_82) { goto IL_01e4; } } { bool L_83 = V_1; ValueTuple_4_tA55DEA5229133F0BC4EC4246133E0AFC1DF98F0B L_84; memset((&L_84), 0, sizeof(L_84)); ValueTuple_4__ctor_m4C3944E2195833C5FFE382F82C1A088A4378AE6B((&L_84), (bool)0, L_83, (Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 *)NULL, (WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 *)NULL, /*hidden argument*/ValueTuple_4__ctor_m4C3944E2195833C5FFE382F82C1A088A4378AE6B_RuntimeMethod_var); return L_84; } IL_01e4: { WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887 * L_85 = __this->get_writeStream_42(); if (!L_85) { goto IL_01fe; } } { WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887 * L_86 = __this->get_writeStream_42(); NullCheck(L_86); WebConnectionStream_InternalClose_m81218D2A038DDB1B214BDC9C596BC1839D4D558B(L_86, /*hidden argument*/NULL); __this->set_writeStream_42((WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887 *)NULL); } IL_01fe: { bool L_87 = V_1; WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * L_88 = V_0; ValueTuple_4_tA55DEA5229133F0BC4EC4246133E0AFC1DF98F0B L_89; memset((&L_89), 0, sizeof(L_89)); ValueTuple_4__ctor_m4C3944E2195833C5FFE382F82C1A088A4378AE6B((&L_89), (bool)0, L_87, (Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 *)NULL, L_88, /*hidden argument*/ValueTuple_4__ctor_m4C3944E2195833C5FFE382F82C1A088A4378AE6B_RuntimeMethod_var); return L_89; } } // System.Threading.Tasks.Task`1 System.Net.HttpWebRequest::b__263_0() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 * HttpWebRequest_U3CGetRewriteHandlerU3Eb__263_0_mA36957ACE779C085A46B322E329B88B6E3BF6B48 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_Create_mE503CEED7AC730E62009DD49A65125F30077E06D_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_Start_TisU3CU3CGetRewriteHandlerU3Eb__263_0U3Ed_tBCD38108B3BEF76B04B459122190CFACB5802BE0_m394A89A63CB8F49CF67A45D6669087E769D8D4BB_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_get_Task_m28AA925998D7C34C2313A3BC5F4299CCF54828D6_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_t73D9138C5A15D02CE27A5E53B9C8862A8E99880D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } U3CU3CGetRewriteHandlerU3Eb__263_0U3Ed_tBCD38108B3BEF76B04B459122190CFACB5802BE0 V_0; memset((&V_0), 0, sizeof(V_0)); AsyncTaskMethodBuilder_1_t73D9138C5A15D02CE27A5E53B9C8862A8E99880D V_1; memset((&V_1), 0, sizeof(V_1)); { (&V_0)->set_U3CU3E4__this_2(__this); IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskMethodBuilder_1_t73D9138C5A15D02CE27A5E53B9C8862A8E99880D_il2cpp_TypeInfo_var); AsyncTaskMethodBuilder_1_t73D9138C5A15D02CE27A5E53B9C8862A8E99880D L_0; L_0 = AsyncTaskMethodBuilder_1_Create_mE503CEED7AC730E62009DD49A65125F30077E06D(/*hidden argument*/AsyncTaskMethodBuilder_1_Create_mE503CEED7AC730E62009DD49A65125F30077E06D_RuntimeMethod_var); (&V_0)->set_U3CU3Et__builder_1(L_0); (&V_0)->set_U3CU3E1__state_0((-1)); U3CU3CGetRewriteHandlerU3Eb__263_0U3Ed_tBCD38108B3BEF76B04B459122190CFACB5802BE0 L_1 = V_0; AsyncTaskMethodBuilder_1_t73D9138C5A15D02CE27A5E53B9C8862A8E99880D L_2 = L_1.get_U3CU3Et__builder_1(); V_1 = L_2; AsyncTaskMethodBuilder_1_Start_TisU3CU3CGetRewriteHandlerU3Eb__263_0U3Ed_tBCD38108B3BEF76B04B459122190CFACB5802BE0_m394A89A63CB8F49CF67A45D6669087E769D8D4BB((AsyncTaskMethodBuilder_1_t73D9138C5A15D02CE27A5E53B9C8862A8E99880D *)(&V_1), (U3CU3CGetRewriteHandlerU3Eb__263_0U3Ed_tBCD38108B3BEF76B04B459122190CFACB5802BE0 *)(&V_0), /*hidden argument*/AsyncTaskMethodBuilder_1_Start_TisU3CU3CGetRewriteHandlerU3Eb__263_0U3Ed_tBCD38108B3BEF76B04B459122190CFACB5802BE0_m394A89A63CB8F49CF67A45D6669087E769D8D4BB_RuntimeMethod_var); AsyncTaskMethodBuilder_1_t73D9138C5A15D02CE27A5E53B9C8862A8E99880D * L_3 = (&V_0)->get_address_of_U3CU3Et__builder_1(); Task_1_t3B2F1B9BB295AC61099DF3673A7E95CA4311E5B0 * L_4; L_4 = AsyncTaskMethodBuilder_1_get_Task_m28AA925998D7C34C2313A3BC5F4299CCF54828D6((AsyncTaskMethodBuilder_1_t73D9138C5A15D02CE27A5E53B9C8862A8E99880D *)L_3, /*hidden argument*/AsyncTaskMethodBuilder_1_get_Task_m28AA925998D7C34C2313A3BC5F4299CCF54828D6_RuntimeMethod_var); return L_4; } } // System.Void System.Net.HttpWebRequest::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequest__ctor_mA8D0231158E0A31839FDBCF3A4058E12233CC0CA (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpWebRequest__ctor_mA8D0231158E0A31839FDBCF3A4058E12233CC0CA_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(HttpWebRequest__ctor_mA8D0231158E0A31839FDBCF3A4058E12233CC0CA_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Net.Configuration.HttpWebRequestElement::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequestElement__ctor_m79DE0820C634F3A5744A12F7C8AF81BF6472A803 (HttpWebRequestElement_t359B9211350C71365139BCC698CCEB140F474F7B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpWebRequestElement__ctor_m79DE0820C634F3A5744A12F7C8AF81BF6472A803_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(HttpWebRequestElement__ctor_m79DE0820C634F3A5744A12F7C8AF81BF6472A803_RuntimeMethod_var); return; } } // System.Int32 System.Net.Configuration.HttpWebRequestElement::get_MaximumErrorResponseLength() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HttpWebRequestElement_get_MaximumErrorResponseLength_m84A35F8FEBFF021FAF2C154567A3A1F273F1270A (HttpWebRequestElement_t359B9211350C71365139BCC698CCEB140F474F7B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpWebRequestElement_get_MaximumErrorResponseLength_m84A35F8FEBFF021FAF2C154567A3A1F273F1270A_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { il2cpp_codegen_raise_profile_exception(HttpWebRequestElement_get_MaximumErrorResponseLength_m84A35F8FEBFF021FAF2C154567A3A1F273F1270A_RuntimeMethod_var); il2cpp_codegen_initobj((&V_0), sizeof(int32_t)); int32_t L_0 = V_0; return L_0; } } // System.Void System.Net.Configuration.HttpWebRequestElement::set_MaximumErrorResponseLength(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequestElement_set_MaximumErrorResponseLength_m305E25C5D704202C722C185E225DA318F9A65BA1 (HttpWebRequestElement_t359B9211350C71365139BCC698CCEB140F474F7B * __this, int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpWebRequestElement_set_MaximumErrorResponseLength_m305E25C5D704202C722C185E225DA318F9A65BA1_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(HttpWebRequestElement_set_MaximumErrorResponseLength_m305E25C5D704202C722C185E225DA318F9A65BA1_RuntimeMethod_var); return; } } // System.Int32 System.Net.Configuration.HttpWebRequestElement::get_MaximumResponseHeadersLength() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HttpWebRequestElement_get_MaximumResponseHeadersLength_m2BE4D8B587A6703D098C5385C9E8DE784229B053 (HttpWebRequestElement_t359B9211350C71365139BCC698CCEB140F474F7B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpWebRequestElement_get_MaximumResponseHeadersLength_m2BE4D8B587A6703D098C5385C9E8DE784229B053_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { il2cpp_codegen_raise_profile_exception(HttpWebRequestElement_get_MaximumResponseHeadersLength_m2BE4D8B587A6703D098C5385C9E8DE784229B053_RuntimeMethod_var); il2cpp_codegen_initobj((&V_0), sizeof(int32_t)); int32_t L_0 = V_0; return L_0; } } // System.Void System.Net.Configuration.HttpWebRequestElement::set_MaximumResponseHeadersLength(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequestElement_set_MaximumResponseHeadersLength_m247292E55B179DFB563B3F4DFF676106F368005F (HttpWebRequestElement_t359B9211350C71365139BCC698CCEB140F474F7B * __this, int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpWebRequestElement_set_MaximumResponseHeadersLength_m247292E55B179DFB563B3F4DFF676106F368005F_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(HttpWebRequestElement_set_MaximumResponseHeadersLength_m247292E55B179DFB563B3F4DFF676106F368005F_RuntimeMethod_var); return; } } // System.Int32 System.Net.Configuration.HttpWebRequestElement::get_MaximumUnauthorizedUploadLength() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HttpWebRequestElement_get_MaximumUnauthorizedUploadLength_m8491F55CAAB1F6D293CCF484FC31409E644EE7E5 (HttpWebRequestElement_t359B9211350C71365139BCC698CCEB140F474F7B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpWebRequestElement_get_MaximumUnauthorizedUploadLength_m8491F55CAAB1F6D293CCF484FC31409E644EE7E5_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { il2cpp_codegen_raise_profile_exception(HttpWebRequestElement_get_MaximumUnauthorizedUploadLength_m8491F55CAAB1F6D293CCF484FC31409E644EE7E5_RuntimeMethod_var); il2cpp_codegen_initobj((&V_0), sizeof(int32_t)); int32_t L_0 = V_0; return L_0; } } // System.Void System.Net.Configuration.HttpWebRequestElement::set_MaximumUnauthorizedUploadLength(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequestElement_set_MaximumUnauthorizedUploadLength_mDE661CFFCECE123AED9DF9ADE90413E5607F903B (HttpWebRequestElement_t359B9211350C71365139BCC698CCEB140F474F7B * __this, int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpWebRequestElement_set_MaximumUnauthorizedUploadLength_mDE661CFFCECE123AED9DF9ADE90413E5607F903B_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(HttpWebRequestElement_set_MaximumUnauthorizedUploadLength_mDE661CFFCECE123AED9DF9ADE90413E5607F903B_RuntimeMethod_var); return; } } // System.Configuration.ConfigurationPropertyCollection System.Net.Configuration.HttpWebRequestElement::get_Properties() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfigurationPropertyCollection_t8C098DB59DF7BA2C2A71369978F4225B92B2F59B * HttpWebRequestElement_get_Properties_m62B55D3B6F5898FC3E0FC3F79AA51B4D64AA7F2A (HttpWebRequestElement_t359B9211350C71365139BCC698CCEB140F474F7B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpWebRequestElement_get_Properties_m62B55D3B6F5898FC3E0FC3F79AA51B4D64AA7F2A_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(HttpWebRequestElement_get_Properties_m62B55D3B6F5898FC3E0FC3F79AA51B4D64AA7F2A_RuntimeMethod_var); return (ConfigurationPropertyCollection_t8C098DB59DF7BA2C2A71369978F4225B92B2F59B *)NULL; } } // System.Boolean System.Net.Configuration.HttpWebRequestElement::get_UseUnsafeHeaderParsing() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HttpWebRequestElement_get_UseUnsafeHeaderParsing_m4C933ED4CD12B97E3BAFB75B20786BBC6D5D4289 (HttpWebRequestElement_t359B9211350C71365139BCC698CCEB140F474F7B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpWebRequestElement_get_UseUnsafeHeaderParsing_m4C933ED4CD12B97E3BAFB75B20786BBC6D5D4289_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; { il2cpp_codegen_raise_profile_exception(HttpWebRequestElement_get_UseUnsafeHeaderParsing_m4C933ED4CD12B97E3BAFB75B20786BBC6D5D4289_RuntimeMethod_var); il2cpp_codegen_initobj((&V_0), sizeof(bool)); bool L_0 = V_0; return L_0; } } // System.Void System.Net.Configuration.HttpWebRequestElement::set_UseUnsafeHeaderParsing(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequestElement_set_UseUnsafeHeaderParsing_mE86C23712C1388A8209486169D1F908DC38361CD (HttpWebRequestElement_t359B9211350C71365139BCC698CCEB140F474F7B * __this, bool ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpWebRequestElement_set_UseUnsafeHeaderParsing_mE86C23712C1388A8209486169D1F908DC38361CD_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(HttpWebRequestElement_set_UseUnsafeHeaderParsing_mE86C23712C1388A8209486169D1F908DC38361CD_RuntimeMethod_var); return; } } // System.Void System.Net.Configuration.HttpWebRequestElement::PostDeserialize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebRequestElement_PostDeserialize_m252993F14E786E3455180F801EA23679A5558AC5 (HttpWebRequestElement_t359B9211350C71365139BCC698CCEB140F474F7B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpWebRequestElement_PostDeserialize_m252993F14E786E3455180F801EA23679A5558AC5_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(HttpWebRequestElement_PostDeserialize_m252993F14E786E3455180F801EA23679A5558AC5_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Net.HttpWebResponse::.ctor(System.Uri,System.String,System.Net.HttpStatusCode,System.Net.WebHeaderCollection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebResponse__ctor_m3F9E2DF361A0722B9F30B117E62E3E33791BB234 (HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri0, String_t* ___method1, int32_t ___status2, WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * ___headers3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpVersion_t15E4A5DA9E037A055F4630E01EB12A988915448E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { WebResponse__ctor_mDD72EDEB98B8AFA20480EE261E74EAAE10CB63E0(__this, /*hidden argument*/NULL); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_0 = ___uri0; __this->set_uri_1(L_0); String_t* L_1 = ___method1; __this->set_method_4(L_1); int32_t L_2 = ___status2; __this->set_statusCode_6(L_2); int32_t L_3 = ___status2; String_t* L_4; L_4 = HttpStatusDescription_Get_mBCAF1CF569C7D10C4FCDA614E2265B4F4789799D(L_3, /*hidden argument*/NULL); __this->set_statusDescription_7(L_4); WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_5 = ___headers3; __this->set_webHeaders_2(L_5); IL2CPP_RUNTIME_CLASS_INIT(HttpVersion_t15E4A5DA9E037A055F4630E01EB12A988915448E_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_6 = ((HttpVersion_t15E4A5DA9E037A055F4630E01EB12A988915448E_StaticFields*)il2cpp_codegen_static_fields_for(HttpVersion_t15E4A5DA9E037A055F4630E01EB12A988915448E_il2cpp_TypeInfo_var))->get_Version10_0(); __this->set_version_5(L_6); __this->set_contentLength_8(((int64_t)((int64_t)(-1)))); return; } } // System.Void System.Net.HttpWebResponse::.ctor(System.Uri,System.String,System.Net.WebResponseStream,System.Net.CookieContainer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebResponse__ctor_mF3A8305585161248ECF94BD5D52A6B6D0AE59A60 (HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri0, String_t* ___method1, WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F * ___stream2, CookieContainer_tF22AADBBB0BBD4D3FF4440A226F8E8580B08F4C2 * ___container3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GZipStream_t3C2FE429FBD114B00B7B65623757F5862196B9B6_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral04799565CD60A911F9CBB57805A3592363822500); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral179A7752540EF152886B7EDDBBEA8F584E6DF2F3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3EBDBD8FCA12AE01917E5179BB979BD9077F8144); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral86E7C0314F9CA521BDA0F361B0D90037E62E63C2); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * G_B2_0 = NULL; HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * G_B2_1 = NULL; WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * G_B1_0 = NULL; HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * G_B1_1 = NULL; String_t* G_B4_0 = NULL; HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * G_B4_1 = NULL; String_t* G_B3_0 = NULL; HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * G_B3_1 = NULL; { WebResponse__ctor_mDD72EDEB98B8AFA20480EE261E74EAAE10CB63E0(__this, /*hidden argument*/NULL); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_0 = ___uri0; __this->set_uri_1(L_0); String_t* L_1 = ___method1; __this->set_method_4(L_1); WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F * L_2 = ___stream2; __this->set_stream_12(L_2); WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F * L_3 = ___stream2; NullCheck(L_3); WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_4; L_4 = WebResponseStream_get_Headers_mA7D647A682410D694CC962C67D38EEA488C4A9A3_inline(L_3, /*hidden argument*/NULL); WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_5 = L_4; G_B1_0 = L_5; G_B1_1 = __this; if (L_5) { G_B2_0 = L_5; G_B2_1 = __this; goto IL_002b; } } { WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_6 = (WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 *)il2cpp_codegen_object_new(WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4_il2cpp_TypeInfo_var); WebHeaderCollection__ctor_mA79C59CAE93CD777F7B475AE4C74FFAF48892263(L_6, /*hidden argument*/NULL); G_B2_0 = L_6; G_B2_1 = G_B1_1; } IL_002b: { NullCheck(G_B2_1); G_B2_1->set_webHeaders_2(G_B2_0); WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F * L_7 = ___stream2; NullCheck(L_7); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_8; L_8 = WebResponseStream_get_Version_m4BBC5EA52F6A9B3FF1EA288ED90E97F17E593356_inline(L_7, /*hidden argument*/NULL); __this->set_version_5(L_8); WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F * L_9 = ___stream2; NullCheck(L_9); int32_t L_10; L_10 = WebResponseStream_get_StatusCode_m837CED65B650A68F08F672C9B4FF3A074CE06B94_inline(L_9, /*hidden argument*/NULL); __this->set_statusCode_6(L_10); WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F * L_11 = ___stream2; NullCheck(L_11); String_t* L_12; L_12 = WebResponseStream_get_StatusDescription_m2E93D3E49082E272D8665DE08338EF8C4B85BBB7_inline(L_11, /*hidden argument*/NULL); String_t* L_13 = L_12; G_B3_0 = L_13; G_B3_1 = __this; if (L_13) { G_B4_0 = L_13; G_B4_1 = __this; goto IL_005e; } } { int32_t L_14 = __this->get_statusCode_6(); String_t* L_15; L_15 = HttpStatusDescription_Get_mBCAF1CF569C7D10C4FCDA614E2265B4F4789799D(L_14, /*hidden argument*/NULL); G_B4_0 = L_15; G_B4_1 = G_B3_1; } IL_005e: { NullCheck(G_B4_1); G_B4_1->set_statusDescription_7(G_B4_0); __this->set_contentLength_8(((int64_t)((int64_t)(-1)))); } IL_006b: try {// begin try (depth: 1) { WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_16 = __this->get_webHeaders_2(); NullCheck(L_16); String_t* L_17; L_17 = NameValueCollection_get_Item_mCA21B55D4454D35073475B2966BA0F9207D16FED(L_16, _stringLiteral86E7C0314F9CA521BDA0F361B0D90037E62E63C2, /*hidden argument*/NULL); V_1 = L_17; String_t* L_18 = V_1; bool L_19; L_19 = String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C(L_18, /*hidden argument*/NULL); if (L_19) { goto IL_0092; } } IL_0084: { String_t* L_20 = V_1; int64_t* L_21 = __this->get_address_of_contentLength_8(); bool L_22; L_22 = Int64_TryParse_m6EA988890D7F9954EA49A7227E60B3C674930650(L_20, (int64_t*)L_21, /*hidden argument*/NULL); if (L_22) { goto IL_009a; } } IL_0092: { __this->set_contentLength_8(((int64_t)((int64_t)(-1)))); } IL_009a: { goto IL_00a7; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_009c; } throw e; } CATCH_009c: {// begin catch(System.Exception) __this->set_contentLength_8(((int64_t)((int64_t)(-1)))); IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_00a7; }// end catch (depth: 1) IL_00a7: { CookieContainer_tF22AADBBB0BBD4D3FF4440A226F8E8580B08F4C2 * L_23 = ___container3; if (!L_23) { goto IL_00b9; } } { CookieContainer_tF22AADBBB0BBD4D3FF4440A226F8E8580B08F4C2 * L_24 = ___container3; __this->set_cookie_container_10(L_24); HttpWebResponse_FillCookies_m9B885920F4ECFDD93B04DD7AC77AB545BF14D4F9(__this, /*hidden argument*/NULL); } IL_00b9: { WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_25 = __this->get_webHeaders_2(); NullCheck(L_25); String_t* L_26; L_26 = NameValueCollection_get_Item_mCA21B55D4454D35073475B2966BA0F9207D16FED(L_25, _stringLiteral3EBDBD8FCA12AE01917E5179BB979BD9077F8144, /*hidden argument*/NULL); V_0 = L_26; String_t* L_27 = V_0; bool L_28; L_28 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_27, _stringLiteral04799565CD60A911F9CBB57805A3592363822500, /*hidden argument*/NULL); if (!L_28) { goto IL_0101; } } { WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F * L_29 = ___stream2; NullCheck(L_29); HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * L_30; L_30 = WebConnectionStream_get_Request_m31D1A8BD789373DC74A6ACED727E3A46A972BA0B_inline(L_29, /*hidden argument*/NULL); NullCheck(L_30); int32_t L_31; L_31 = HttpWebRequest_get_AutomaticDecompression_mFABD0DE3DB921E7DBD581B204A431CB995706FE2_inline(L_30, /*hidden argument*/NULL); if (!((int32_t)((int32_t)L_31&(int32_t)1))) { goto IL_0101; } } { WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F * L_32 = ___stream2; GZipStream_t3C2FE429FBD114B00B7B65623757F5862196B9B6 * L_33 = (GZipStream_t3C2FE429FBD114B00B7B65623757F5862196B9B6 *)il2cpp_codegen_object_new(GZipStream_t3C2FE429FBD114B00B7B65623757F5862196B9B6_il2cpp_TypeInfo_var); GZipStream__ctor_mCBA224338F8CA4CA9D21D7EA7744AA3A180AA01F(L_33, L_32, 0, /*hidden argument*/NULL); __this->set_stream_12(L_33); WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_34 = __this->get_webHeaders_2(); NullCheck(L_34); WebHeaderCollection_Remove_m86DCBB3885394CE022B908A700D748DE2528CD55(L_34, ((int32_t)13), /*hidden argument*/NULL); return; } IL_0101: { String_t* L_35 = V_0; bool L_36; L_36 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_35, _stringLiteral179A7752540EF152886B7EDDBBEA8F584E6DF2F3, /*hidden argument*/NULL); if (!L_36) { goto IL_0137; } } { WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F * L_37 = ___stream2; NullCheck(L_37); HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * L_38; L_38 = WebConnectionStream_get_Request_m31D1A8BD789373DC74A6ACED727E3A46A972BA0B_inline(L_37, /*hidden argument*/NULL); NullCheck(L_38); int32_t L_39; L_39 = HttpWebRequest_get_AutomaticDecompression_mFABD0DE3DB921E7DBD581B204A431CB995706FE2_inline(L_38, /*hidden argument*/NULL); if (!((int32_t)((int32_t)L_39&(int32_t)2))) { goto IL_0137; } } { WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F * L_40 = ___stream2; DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5 * L_41 = (DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5 *)il2cpp_codegen_object_new(DeflateStream_t23FBBBCAA86C6AEA9E520A44C0FD0F947236A8B5_il2cpp_TypeInfo_var); DeflateStream__ctor_m804A770D5C1B40351C22AFC0223DE7018DCC6B74(L_41, L_40, 0, /*hidden argument*/NULL); __this->set_stream_12(L_41); WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_42 = __this->get_webHeaders_2(); NullCheck(L_42); WebHeaderCollection_Remove_m86DCBB3885394CE022B908A700D748DE2528CD55(L_42, ((int32_t)13), /*hidden argument*/NULL); } IL_0137: { return; } } // System.Void System.Net.HttpWebResponse::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebResponse__ctor_m78E52EFA7B83C71D4A05D35788FD495A8B3DD365 (HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___serializationInfo0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___streamingContext1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CookieCollection_t2D2FA42D43C1A8053D95FD2205360B2E0B94AF06_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CookieCollection_t2D2FA42D43C1A8053D95FD2205360B2E0B94AF06_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpStatusCode_tFCB1BA96A101857DA7C390345DE43B77F9567D98_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpStatusCode_tFCB1BA96A101857DA7C390345DE43B77F9567D98_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral10C63C8C602DD5E38BE4A758C90EBAC324CD3E69); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral441C41FF6E93EA9C63774CA4F33832FA34B8B88D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8049D653F658649E5B86C363B789CD1A2A2D40A1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral82EA3C9AFC08F0CECEBC1B257606B3106346FCAF); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC2CB4DD034B3D49AB04CD71C0A7765711136ACA3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCA52E5008EEBDF4E7DA42EF180322C8273112B96); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD23E1D8D3BB0A59383DCD9925ED64F3642F85D3F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052); s_Il2CppMethodInitialized = true; } SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * V_0 = NULL; { WebResponse__ctor_mDD72EDEB98B8AFA20480EE261E74EAAE10CB63E0(__this, /*hidden argument*/NULL); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_0 = ___serializationInfo0; V_0 = L_0; SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_1 = V_0; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_2 = { reinterpret_cast (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_3; L_3 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_2, /*hidden argument*/NULL); NullCheck(L_1); RuntimeObject * L_4; L_4 = SerializationInfo_GetValue_mF6E311779D55AD7C80B2D19FF2A7E9683AEF2A99(L_1, _stringLiteral10C63C8C602DD5E38BE4A758C90EBAC324CD3E69, L_3, /*hidden argument*/NULL); __this->set_uri_1(((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)CastclassClass((RuntimeObject*)L_4, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_5 = V_0; NullCheck(L_5); int64_t L_6; L_6 = SerializationInfo_GetInt64_m13BC92A489CE4540FC55BB00D2A3460B0D9A0DEC(L_5, _stringLiteralD23E1D8D3BB0A59383DCD9925ED64F3642F85D3F, /*hidden argument*/NULL); __this->set_contentLength_8(L_6); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_7 = V_0; NullCheck(L_7); String_t* L_8; L_8 = SerializationInfo_GetString_m50298DCBCD07D858EE19414052CB02EE4DDD3C2C(L_7, _stringLiteralCA52E5008EEBDF4E7DA42EF180322C8273112B96, /*hidden argument*/NULL); __this->set_contentType_9(L_8); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_9 = V_0; NullCheck(L_9); String_t* L_10; L_10 = SerializationInfo_GetString_m50298DCBCD07D858EE19414052CB02EE4DDD3C2C(L_9, _stringLiteral82EA3C9AFC08F0CECEBC1B257606B3106346FCAF, /*hidden argument*/NULL); __this->set_method_4(L_10); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_11 = V_0; NullCheck(L_11); String_t* L_12; L_12 = SerializationInfo_GetString_m50298DCBCD07D858EE19414052CB02EE4DDD3C2C(L_11, _stringLiteralC2CB4DD034B3D49AB04CD71C0A7765711136ACA3, /*hidden argument*/NULL); __this->set_statusDescription_7(L_12); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_13 = V_0; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_14 = { reinterpret_cast (CookieCollection_t2D2FA42D43C1A8053D95FD2205360B2E0B94AF06_0_0_0_var) }; Type_t * L_15; L_15 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_14, /*hidden argument*/NULL); NullCheck(L_13); RuntimeObject * L_16; L_16 = SerializationInfo_GetValue_mF6E311779D55AD7C80B2D19FF2A7E9683AEF2A99(L_13, _stringLiteral8049D653F658649E5B86C363B789CD1A2A2D40A1, L_15, /*hidden argument*/NULL); __this->set_cookieCollection_3(((CookieCollection_t2D2FA42D43C1A8053D95FD2205360B2E0B94AF06 *)CastclassClass((RuntimeObject*)L_16, CookieCollection_t2D2FA42D43C1A8053D95FD2205360B2E0B94AF06_il2cpp_TypeInfo_var))); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_17 = V_0; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_18 = { reinterpret_cast (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_0_0_0_var) }; Type_t * L_19; L_19 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_18, /*hidden argument*/NULL); NullCheck(L_17); RuntimeObject * L_20; L_20 = SerializationInfo_GetValue_mF6E311779D55AD7C80B2D19FF2A7E9683AEF2A99(L_17, _stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052, L_19, /*hidden argument*/NULL); __this->set_version_5(((Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)CastclassSealed((RuntimeObject*)L_20, Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var))); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_21 = V_0; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_22 = { reinterpret_cast (HttpStatusCode_tFCB1BA96A101857DA7C390345DE43B77F9567D98_0_0_0_var) }; Type_t * L_23; L_23 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_22, /*hidden argument*/NULL); NullCheck(L_21); RuntimeObject * L_24; L_24 = SerializationInfo_GetValue_mF6E311779D55AD7C80B2D19FF2A7E9683AEF2A99(L_21, _stringLiteral441C41FF6E93EA9C63774CA4F33832FA34B8B88D, L_23, /*hidden argument*/NULL); __this->set_statusCode_6(((*(int32_t*)((int32_t*)UnBox(L_24, HttpStatusCode_tFCB1BA96A101857DA7C390345DE43B77F9567D98_il2cpp_TypeInfo_var))))); return; } } // System.Net.WebHeaderCollection System.Net.HttpWebResponse::get_Headers() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * HttpWebResponse_get_Headers_mB3D125B8EF9E1612851670877A11627E625B9316 (HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * __this, const RuntimeMethod* method) { { WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_0 = __this->get_webHeaders_2(); return L_0; } } // System.Uri System.Net.HttpWebResponse::get_ResponseUri() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * HttpWebResponse_get_ResponseUri_m19A4179891A5BB491BC65006B176EB48EF3B5978 (HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * __this, const RuntimeMethod* method) { { HttpWebResponse_CheckDisposed_mEDF7CAD6C09F5858A56F8F1D6192A7501091F72B(__this, /*hidden argument*/NULL); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_0 = __this->get_uri_1(); return L_0; } } // System.Net.HttpStatusCode System.Net.HttpWebResponse::get_StatusCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HttpWebResponse_get_StatusCode_m528E6BC1719CFFE3E4B9C0A9630F724EA0CCC12A (HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_statusCode_6(); return L_0; } } // System.String System.Net.HttpWebResponse::get_StatusDescription() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* HttpWebResponse_get_StatusDescription_m9B968C05EB2B10E5843EA0E2A54511E7D6BA81FC (HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * __this, const RuntimeMethod* method) { { HttpWebResponse_CheckDisposed_mEDF7CAD6C09F5858A56F8F1D6192A7501091F72B(__this, /*hidden argument*/NULL); String_t* L_0 = __this->get_statusDescription_7(); return L_0; } } // System.IO.Stream System.Net.HttpWebResponse::GetResponseStream() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * HttpWebResponse_GetResponseStream_m2DBE677FEAE385923264C73898B2D63B7659C8E0 (HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7DAC516092AE075D549759FBFE57497622D29F15); s_Il2CppMethodInitialized = true; } { HttpWebResponse_CheckDisposed_mEDF7CAD6C09F5858A56F8F1D6192A7501091F72B(__this, /*hidden argument*/NULL); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_0 = __this->get_stream_12(); if (L_0) { goto IL_0014; } } { IL2CPP_RUNTIME_CLASS_INIT(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_il2cpp_TypeInfo_var); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_1 = ((Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_StaticFields*)il2cpp_codegen_static_fields_for(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_il2cpp_TypeInfo_var))->get_Null_1(); return L_1; } IL_0014: { String_t* L_2 = __this->get_method_4(); bool L_3; L_3 = String_Equals_mD65682B0BB7933CC7A8561AE34DED02E4F3BBBE5(L_2, _stringLiteral7DAC516092AE075D549759FBFE57497622D29F15, 5, /*hidden argument*/NULL); if (!L_3) { goto IL_002d; } } { IL2CPP_RUNTIME_CLASS_INIT(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_il2cpp_TypeInfo_var); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_4 = ((Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_StaticFields*)il2cpp_codegen_static_fields_for(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_il2cpp_TypeInfo_var))->get_Null_1(); return L_4; } IL_002d: { Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_5 = __this->get_stream_12(); return L_5; } } // System.Void System.Net.HttpWebResponse::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebResponse_System_Runtime_Serialization_ISerializable_GetObjectData_m4C33A83D045A76BC62389EF98F11890DFC8F6518 (HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___serializationInfo0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___streamingContext1, const RuntimeMethod* method) { { SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_0 = ___serializationInfo0; StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 L_1 = ___streamingContext1; VirtualActionInvoker2< SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 *, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 >::Invoke(8 /* System.Void System.Net.WebResponse::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, __this, L_0, L_1); return; } } // System.Void System.Net.HttpWebResponse::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebResponse_GetObjectData_mB2AEB91E14CBF3166D437CA1200A3A720F577EF7 (HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___serializationInfo0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___streamingContext1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpStatusCode_tFCB1BA96A101857DA7C390345DE43B77F9567D98_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral10C63C8C602DD5E38BE4A758C90EBAC324CD3E69); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral441C41FF6E93EA9C63774CA4F33832FA34B8B88D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8049D653F658649E5B86C363B789CD1A2A2D40A1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral82EA3C9AFC08F0CECEBC1B257606B3106346FCAF); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC2CB4DD034B3D49AB04CD71C0A7765711136ACA3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCA52E5008EEBDF4E7DA42EF180322C8273112B96); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD23E1D8D3BB0A59383DCD9925ED64F3642F85D3F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052); s_Il2CppMethodInitialized = true; } { SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_0 = ___serializationInfo0; SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_1 = L_0; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_2 = __this->get_uri_1(); NullCheck(L_1); SerializationInfo_AddValue_mA50C2668EF700C2239DDC362F8DB409020BB763D(L_1, _stringLiteral10C63C8C602DD5E38BE4A758C90EBAC324CD3E69, L_2, /*hidden argument*/NULL); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_3 = L_1; int64_t L_4 = __this->get_contentLength_8(); NullCheck(L_3); SerializationInfo_AddValue_mD0C00DE59B4C6649A6BFA5EBC7D8618B46B967D5(L_3, _stringLiteralD23E1D8D3BB0A59383DCD9925ED64F3642F85D3F, L_4, /*hidden argument*/NULL); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_5 = L_3; String_t* L_6 = __this->get_contentType_9(); NullCheck(L_5); SerializationInfo_AddValue_mA50C2668EF700C2239DDC362F8DB409020BB763D(L_5, _stringLiteralCA52E5008EEBDF4E7DA42EF180322C8273112B96, L_6, /*hidden argument*/NULL); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_7 = L_5; String_t* L_8 = __this->get_method_4(); NullCheck(L_7); SerializationInfo_AddValue_mA50C2668EF700C2239DDC362F8DB409020BB763D(L_7, _stringLiteral82EA3C9AFC08F0CECEBC1B257606B3106346FCAF, L_8, /*hidden argument*/NULL); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_9 = L_7; String_t* L_10 = __this->get_statusDescription_7(); NullCheck(L_9); SerializationInfo_AddValue_mA50C2668EF700C2239DDC362F8DB409020BB763D(L_9, _stringLiteralC2CB4DD034B3D49AB04CD71C0A7765711136ACA3, L_10, /*hidden argument*/NULL); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_11 = L_9; CookieCollection_t2D2FA42D43C1A8053D95FD2205360B2E0B94AF06 * L_12 = __this->get_cookieCollection_3(); NullCheck(L_11); SerializationInfo_AddValue_mA50C2668EF700C2239DDC362F8DB409020BB763D(L_11, _stringLiteral8049D653F658649E5B86C363B789CD1A2A2D40A1, L_12, /*hidden argument*/NULL); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_13 = L_11; Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_14 = __this->get_version_5(); NullCheck(L_13); SerializationInfo_AddValue_mA50C2668EF700C2239DDC362F8DB409020BB763D(L_13, _stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052, L_14, /*hidden argument*/NULL); int32_t L_15 = __this->get_statusCode_6(); int32_t L_16 = L_15; RuntimeObject * L_17 = Box(HttpStatusCode_tFCB1BA96A101857DA7C390345DE43B77F9567D98_il2cpp_TypeInfo_var, &L_16); NullCheck(L_13); SerializationInfo_AddValue_mA50C2668EF700C2239DDC362F8DB409020BB763D(L_13, _stringLiteral441C41FF6E93EA9C63774CA4F33832FA34B8B88D, L_17, /*hidden argument*/NULL); return; } } // System.Void System.Net.HttpWebResponse::Close() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebResponse_Close_mFB0945D078A0A64605BD0F5BAB6620105EF416F2 (HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * __this, const RuntimeMethod* method) { Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * V_0 = NULL; { Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** L_0 = __this->get_address_of_stream_12(); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_1; L_1 = InterlockedExchangeImpl((Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB **)L_0, (Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB *)NULL); V_0 = L_1; Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_2 = V_0; if (!L_2) { goto IL_0016; } } { Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_3 = V_0; NullCheck(L_3); VirtualActionInvoker0::Invoke(18 /* System.Void System.IO.Stream::Close() */, L_3); } IL_0016: { return; } } // System.Void System.Net.HttpWebResponse::System.IDisposable.Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebResponse_System_IDisposable_Dispose_mEAD8612F73D2CAD6D24A996F52B908876B17D09D (HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * __this, const RuntimeMethod* method) { { VirtualActionInvoker1< bool >::Invoke(10 /* System.Void System.Net.WebResponse::Dispose(System.Boolean) */, __this, (bool)1); return; } } // System.Void System.Net.HttpWebResponse::Dispose(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebResponse_Dispose_m9115A5C7DF7C2A1C916FCBC2A4E9DAF3DF29E86F (HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * __this, bool ___disposing0, const RuntimeMethod* method) { { __this->set_disposed_11((bool)1); WebResponse_Dispose_mD8EDE43B78CFB8B192059E92EFBE98E459A96E40(__this, (bool)1, /*hidden argument*/NULL); return; } } // System.Void System.Net.HttpWebResponse::CheckDisposed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebResponse_CheckDisposed_mEDF7CAD6C09F5858A56F8F1D6192A7501091F72B (HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_disposed_11(); if (!L_0) { goto IL_0019; } } { Type_t * L_1; L_1 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(__this, /*hidden argument*/NULL); NullCheck(L_1); String_t* L_2; L_2 = VirtualFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_FullName() */, L_1); ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A * L_3 = (ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A_il2cpp_TypeInfo_var))); ObjectDisposedException__ctor_mE57C6A61713668708F9B3CEF060A8D006B1FE880(L_3, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HttpWebResponse_CheckDisposed_mEDF7CAD6C09F5858A56F8F1D6192A7501091F72B_RuntimeMethod_var))); } IL_0019: { return; } } // System.Void System.Net.HttpWebResponse::FillCookies() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebResponse_FillCookies_m9B885920F4ECFDD93B04DD7AC77AB545BF14D4F9 (HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5C5EE883BE58477D29789770C77CED0740EA2109); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE8258FE4B53775D781FF54E8010D50E54F753759); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; CookieCollection_t2D2FA42D43C1A8053D95FD2205360B2E0B94AF06 * V_1 = NULL; CookieCollection_t2D2FA42D43C1A8053D95FD2205360B2E0B94AF06 * V_2 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; { WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_0 = __this->get_webHeaders_2(); if (L_0) { goto IL_0009; } } { return; } IL_0009: { V_1 = (CookieCollection_t2D2FA42D43C1A8053D95FD2205360B2E0B94AF06 *)NULL; } IL_000b: try {// begin try (depth: 1) { WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_1 = __this->get_webHeaders_2(); NullCheck(L_1); String_t* L_2; L_2 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(16 /* System.String System.Collections.Specialized.NameValueCollection::Get(System.String) */, L_1, _stringLiteral5C5EE883BE58477D29789770C77CED0740EA2109); V_0 = L_2; String_t* L_3 = V_0; if (!L_3) { goto IL_0038; } } IL_001f: { CookieContainer_tF22AADBBB0BBD4D3FF4440A226F8E8580B08F4C2 * L_4 = __this->get_cookie_container_10(); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_5 = __this->get_uri_1(); String_t* L_6 = V_0; NullCheck(L_4); CookieCollection_t2D2FA42D43C1A8053D95FD2205360B2E0B94AF06 * L_7; L_7 = CookieContainer_CookieCutter_m9BFB21F49579F0D2B933977104E63BBBF48B6130(L_4, L_5, _stringLiteral5C5EE883BE58477D29789770C77CED0740EA2109, L_6, (bool)0, /*hidden argument*/NULL); V_1 = L_7; } IL_0038: { goto IL_003d; } }// 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_003a; } throw e; } CATCH_003a: {// begin catch(System.Object) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_003d; }// end catch (depth: 1) IL_003d: { } IL_003e: try {// begin try (depth: 1) { WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_8 = __this->get_webHeaders_2(); NullCheck(L_8); String_t* L_9; L_9 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(16 /* System.String System.Collections.Specialized.NameValueCollection::Get(System.String) */, L_8, _stringLiteralE8258FE4B53775D781FF54E8010D50E54F753759); V_0 = L_9; String_t* L_10 = V_0; if (!L_10) { goto IL_0081; } } IL_0052: { CookieContainer_tF22AADBBB0BBD4D3FF4440A226F8E8580B08F4C2 * L_11 = __this->get_cookie_container_10(); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_12 = __this->get_uri_1(); String_t* L_13 = V_0; NullCheck(L_11); CookieCollection_t2D2FA42D43C1A8053D95FD2205360B2E0B94AF06 * L_14; L_14 = CookieContainer_CookieCutter_m9BFB21F49579F0D2B933977104E63BBBF48B6130(L_11, L_12, _stringLiteralE8258FE4B53775D781FF54E8010D50E54F753759, L_13, (bool)0, /*hidden argument*/NULL); V_2 = L_14; CookieCollection_t2D2FA42D43C1A8053D95FD2205360B2E0B94AF06 * L_15 = V_1; if (!L_15) { goto IL_007f; } } IL_006e: { CookieCollection_t2D2FA42D43C1A8053D95FD2205360B2E0B94AF06 * L_16 = V_1; NullCheck(L_16); int32_t L_17; L_17 = CookieCollection_get_Count_m329458A1D5426014346F371D1B86AB4678FF34AE(L_16, /*hidden argument*/NULL); if (!L_17) { goto IL_007f; } } IL_0076: { CookieCollection_t2D2FA42D43C1A8053D95FD2205360B2E0B94AF06 * L_18 = V_1; CookieCollection_t2D2FA42D43C1A8053D95FD2205360B2E0B94AF06 * L_19 = V_2; NullCheck(L_18); CookieCollection_Add_m79D156C7D15F4727B0C7936902E7D215B3E2AD5C(L_18, L_19, /*hidden argument*/NULL); goto IL_0081; } IL_007f: { CookieCollection_t2D2FA42D43C1A8053D95FD2205360B2E0B94AF06 * L_20 = V_2; V_1 = L_20; } IL_0081: { goto IL_0086; } }// 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_0083; } throw e; } CATCH_0083: {// begin catch(System.Object) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0086; }// end catch (depth: 1) IL_0086: { CookieCollection_t2D2FA42D43C1A8053D95FD2205360B2E0B94AF06 * L_21 = V_1; __this->set_cookieCollection_3(L_21); return; } } // System.Void System.Net.HttpWebResponse::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpWebResponse__ctor_mD26DA915B4BE34BFB9112EBA6E8725B31480BC2A (HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpWebResponse__ctor_mD26DA915B4BE34BFB9112EBA6E8725B31480BC2A_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(HttpWebResponse__ctor_mD26DA915B4BE34BFB9112EBA6E8725B31480BC2A_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Specialized.HybridDictionary::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HybridDictionary__ctor_m9FC8D443AABAEC8D67ADF072437D2B364B08B7F1 (HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Specialized.HybridDictionary::.ctor(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HybridDictionary__ctor_m4365E4432941DA2297ACA8D5D4B18E38535F4C56 (HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A * __this, bool ___caseInsensitive0, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); bool L_0 = ___caseInsensitive0; __this->set_caseInsensitive_2(L_0); return; } } // System.Object System.Collections.Specialized.HybridDictionary::get_Item(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * HybridDictionary_get_Item_m7185EEEAFC226096E70344C925C0E878B6BB355C (HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * V_0 = NULL; { ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * L_0 = __this->get_list_0(); V_0 = L_0; Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_1 = __this->get_hashtable_1(); if (!L_1) { goto IL_001c; } } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_2 = __this->get_hashtable_1(); RuntimeObject * L_3 = ___key0; NullCheck(L_2); RuntimeObject * L_4; L_4 = VirtualFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_2, L_3); return L_4; } IL_001c: { ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * L_5 = V_0; if (!L_5) { goto IL_0027; } } { ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * L_6 = V_0; RuntimeObject * L_7 = ___key0; NullCheck(L_6); RuntimeObject * L_8; L_8 = ListDictionary_get_Item_m234AF1C6B763954DA1EC8BD5C74BA2D16E8D74DC(L_6, L_7, /*hidden argument*/NULL); return L_8; } IL_0027: { RuntimeObject * L_9 = ___key0; if (L_9) { goto IL_003f; } } { String_t* L_10; L_10 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC94F5AC0843483C42F57211A309E77D97ADE18B1)), /*hidden argument*/NULL); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_11 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_mAD2F05A24C92A657CBCA8C43A9A373C53739A283(L_11, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HybridDictionary_get_Item_m7185EEEAFC226096E70344C925C0E878B6BB355C_RuntimeMethod_var))); } IL_003f: { return NULL; } } // System.Void System.Collections.Specialized.HybridDictionary::set_Item(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HybridDictionary_set_Item_mE42268AAEEFAC3C809899E1BC62251985E731079 (HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A * G_B8_0 = NULL; HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A * G_B7_0 = NULL; StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * G_B9_0 = NULL; HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A * G_B9_1 = NULL; { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_0 = __this->get_hashtable_1(); if (!L_0) { goto IL_0016; } } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_1 = __this->get_hashtable_1(); RuntimeObject * L_2 = ___key0; RuntimeObject * L_3 = ___value1; NullCheck(L_1); VirtualActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_1, L_2, L_3); return; } IL_0016: { ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * L_4 = __this->get_list_0(); if (!L_4) { goto IL_004e; } } { ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * L_5 = __this->get_list_0(); NullCheck(L_5); int32_t L_6; L_6 = ListDictionary_get_Count_m63B5332C669C858EBC423472A502528612C890F1_inline(L_5, /*hidden argument*/NULL); if ((((int32_t)L_6) < ((int32_t)8))) { goto IL_0040; } } { HybridDictionary_ChangeOver_m720F3CC680ABE10D68E6E5D67EE646435498EC8B(__this, /*hidden argument*/NULL); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_7 = __this->get_hashtable_1(); RuntimeObject * L_8 = ___key0; RuntimeObject * L_9 = ___value1; NullCheck(L_7); VirtualActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_7, L_8, L_9); return; } IL_0040: { ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * L_10 = __this->get_list_0(); RuntimeObject * L_11 = ___key0; RuntimeObject * L_12 = ___value1; NullCheck(L_10); ListDictionary_set_Item_m68050184A6FE6BB7B33891F19FE8D87D458499AD(L_10, L_11, L_12, /*hidden argument*/NULL); return; } IL_004e: { bool L_13 = __this->get_caseInsensitive_2(); G_B7_0 = __this; if (L_13) { G_B8_0 = __this; goto IL_005a; } } { G_B9_0 = ((StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 *)(NULL)); G_B9_1 = G_B7_0; goto IL_005f; } IL_005a: { IL2CPP_RUNTIME_CLASS_INIT(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var); StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * L_14; L_14 = StringComparer_get_OrdinalIgnoreCase_m8FD38206B6FFE866E97CE4DF84B037F0DF175288_inline(/*hidden argument*/NULL); G_B9_0 = L_14; G_B9_1 = G_B8_0; } IL_005f: { ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * L_15 = (ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B *)il2cpp_codegen_object_new(ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B_il2cpp_TypeInfo_var); ListDictionary__ctor_mEF3028294A42FC5771EBED7DC1DCB104E284A79A(L_15, G_B9_0, /*hidden argument*/NULL); NullCheck(G_B9_1); G_B9_1->set_list_0(L_15); ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * L_16 = __this->get_list_0(); RuntimeObject * L_17 = ___key0; RuntimeObject * L_18 = ___value1; NullCheck(L_16); ListDictionary_set_Item_m68050184A6FE6BB7B33891F19FE8D87D458499AD(L_16, L_17, L_18, /*hidden argument*/NULL); return; } } // System.Collections.Specialized.ListDictionary System.Collections.Specialized.HybridDictionary::get_List() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * HybridDictionary_get_List_m04D20BE02A5E09BE885C0780E74435ACCD56D78C (HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A * G_B3_0 = NULL; HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A * G_B2_0 = NULL; StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * G_B4_0 = NULL; HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A * G_B4_1 = NULL; { ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * L_0 = __this->get_list_0(); if (L_0) { goto IL_0023; } } { bool L_1 = __this->get_caseInsensitive_2(); G_B2_0 = __this; if (L_1) { G_B3_0 = __this; goto IL_0014; } } { G_B4_0 = ((StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 *)(NULL)); G_B4_1 = G_B2_0; goto IL_0019; } IL_0014: { IL2CPP_RUNTIME_CLASS_INIT(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var); StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * L_2; L_2 = StringComparer_get_OrdinalIgnoreCase_m8FD38206B6FFE866E97CE4DF84B037F0DF175288_inline(/*hidden argument*/NULL); G_B4_0 = L_2; G_B4_1 = G_B3_0; } IL_0019: { ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * L_3 = (ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B *)il2cpp_codegen_object_new(ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B_il2cpp_TypeInfo_var); ListDictionary__ctor_mEF3028294A42FC5771EBED7DC1DCB104E284A79A(L_3, G_B4_0, /*hidden argument*/NULL); NullCheck(G_B4_1); G_B4_1->set_list_0(L_3); } IL_0023: { ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * L_4 = __this->get_list_0(); return L_4; } } // System.Void System.Collections.Specialized.HybridDictionary::ChangeOver() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HybridDictionary_ChangeOver_m720F3CC680ABE10D68E6E5D67EE646435498EC8B (HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionaryEnumerator_t8A89A8564EADF5FFB8494092DFED7D7C063F1501_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * V_1 = NULL; { ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * L_0 = __this->get_list_0(); NullCheck(L_0); RuntimeObject* L_1; L_1 = ListDictionary_GetEnumerator_m6B44040F7259D5F7F1E15F4A4FA0FAE38BFEE236(L_0, /*hidden argument*/NULL); V_0 = L_1; bool L_2 = __this->get_caseInsensitive_2(); if (!L_2) { goto IL_0023; } } { IL2CPP_RUNTIME_CLASS_INIT(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var); StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * L_3; L_3 = StringComparer_get_OrdinalIgnoreCase_m8FD38206B6FFE866E97CE4DF84B037F0DF175288_inline(/*hidden argument*/NULL); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_4 = (Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC *)il2cpp_codegen_object_new(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var); Hashtable__ctor_m08A6EF344F497A176BD48FDB33FFEFBEAC70C87C(L_4, ((int32_t)13), L_3, /*hidden argument*/NULL); V_1 = L_4; goto IL_003f; } IL_0023: { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_5 = (Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC *)il2cpp_codegen_object_new(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var); Hashtable__ctor_mF6B704809ABE222280933EA170B6664286C91FDC(L_5, ((int32_t)13), /*hidden argument*/NULL); V_1 = L_5; goto IL_003f; } IL_002d: { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_6 = V_1; RuntimeObject* L_7 = V_0; NullCheck(L_7); RuntimeObject * L_8; L_8 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IDictionaryEnumerator::get_Key() */, IDictionaryEnumerator_t8A89A8564EADF5FFB8494092DFED7D7C063F1501_il2cpp_TypeInfo_var, L_7); RuntimeObject* L_9 = V_0; NullCheck(L_9); RuntimeObject * L_10; L_10 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IDictionaryEnumerator::get_Value() */, IDictionaryEnumerator_t8A89A8564EADF5FFB8494092DFED7D7C063F1501_il2cpp_TypeInfo_var, L_9); NullCheck(L_6); VirtualActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(23 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_6, L_8, L_10); } IL_003f: { RuntimeObject* L_11 = V_0; NullCheck(L_11); bool L_12; L_12 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_11); if (L_12) { goto IL_002d; } } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_13 = V_1; __this->set_hashtable_1(L_13); __this->set_list_0((ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B *)NULL); return; } } // System.Int32 System.Collections.Specialized.HybridDictionary::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HybridDictionary_get_Count_m9105DDBF52049FDB3664818E8883EDF06646C28A (HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A * __this, const RuntimeMethod* method) { ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * V_0 = NULL; { ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * L_0 = __this->get_list_0(); V_0 = L_0; Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_1 = __this->get_hashtable_1(); if (!L_1) { goto IL_001b; } } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_2 = __this->get_hashtable_1(); NullCheck(L_2); int32_t L_3; L_3 = VirtualFuncInvoker0< int32_t >::Invoke(41 /* System.Int32 System.Collections.Hashtable::get_Count() */, L_2); return L_3; } IL_001b: { ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * L_4 = V_0; if (!L_4) { goto IL_0025; } } { ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * L_5 = V_0; NullCheck(L_5); int32_t L_6; L_6 = ListDictionary_get_Count_m63B5332C669C858EBC423472A502528612C890F1_inline(L_5, /*hidden argument*/NULL); return L_6; } IL_0025: { return 0; } } // System.Collections.ICollection System.Collections.Specialized.HybridDictionary::get_Keys() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* HybridDictionary_get_Keys_m417EC9F3625369FC91C5089D56729E2EA0753DBF (HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A * __this, const RuntimeMethod* method) { { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_0 = __this->get_hashtable_1(); if (!L_0) { goto IL_0014; } } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_1 = __this->get_hashtable_1(); NullCheck(L_1); RuntimeObject* L_2; L_2 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(37 /* System.Collections.ICollection System.Collections.Hashtable::get_Keys() */, L_1); return L_2; } IL_0014: { ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * L_3; L_3 = HybridDictionary_get_List_m04D20BE02A5E09BE885C0780E74435ACCD56D78C(__this, /*hidden argument*/NULL); NullCheck(L_3); RuntimeObject* L_4; L_4 = ListDictionary_get_Keys_m038D10831F91ACB00D71A9E7F4FA63CAD94D4BAE(L_3, /*hidden argument*/NULL); return L_4; } } // System.Boolean System.Collections.Specialized.HybridDictionary::get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HybridDictionary_get_IsReadOnly_m3A3BFB65979B47A6B3F2F1F019088E6BE508FABA (HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Boolean System.Collections.Specialized.HybridDictionary::get_IsFixedSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HybridDictionary_get_IsFixedSize_mB922463FD723D7D6EB815D85D8DC0463A2A262C9 (HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Boolean System.Collections.Specialized.HybridDictionary::get_IsSynchronized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HybridDictionary_get_IsSynchronized_mEDB978DB4DD87B56D2111BFD618E9B93563C8020 (HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Object System.Collections.Specialized.HybridDictionary::get_SyncRoot() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * HybridDictionary_get_SyncRoot_m6E4080330F28495CDEB87CB61DAE35C24028AA88 (HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A * __this, const RuntimeMethod* method) { { return __this; } } // System.Collections.ICollection System.Collections.Specialized.HybridDictionary::get_Values() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* HybridDictionary_get_Values_mF40FEB4551FA8941CAF0AA8EA636A09AB3E0C3C2 (HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A * __this, const RuntimeMethod* method) { { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_0 = __this->get_hashtable_1(); if (!L_0) { goto IL_0014; } } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_1 = __this->get_hashtable_1(); NullCheck(L_1); RuntimeObject* L_2; L_2 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(38 /* System.Collections.ICollection System.Collections.Hashtable::get_Values() */, L_1); return L_2; } IL_0014: { ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * L_3; L_3 = HybridDictionary_get_List_m04D20BE02A5E09BE885C0780E74435ACCD56D78C(__this, /*hidden argument*/NULL); NullCheck(L_3); RuntimeObject* L_4; L_4 = ListDictionary_get_Values_m144BEBB77FDEC181980793D89DC54DC2077A10AE(L_3, /*hidden argument*/NULL); return L_4; } } // System.Void System.Collections.Specialized.HybridDictionary::Add(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HybridDictionary_Add_mAD439BE2C4F44AF8A43EC7491E26478EDDF7DFBC (HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A * G_B5_0 = NULL; HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A * G_B4_0 = NULL; StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * G_B6_0 = NULL; HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A * G_B6_1 = NULL; { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_0 = __this->get_hashtable_1(); if (!L_0) { goto IL_0016; } } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_1 = __this->get_hashtable_1(); RuntimeObject * L_2 = ___key0; RuntimeObject * L_3 = ___value1; NullCheck(L_1); VirtualActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(23 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_1, L_2, L_3); return; } IL_0016: { ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * L_4 = __this->get_list_0(); if (L_4) { goto IL_0047; } } { bool L_5 = __this->get_caseInsensitive_2(); G_B4_0 = __this; if (L_5) { G_B5_0 = __this; goto IL_002a; } } { G_B6_0 = ((StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 *)(NULL)); G_B6_1 = G_B4_0; goto IL_002f; } IL_002a: { IL2CPP_RUNTIME_CLASS_INIT(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var); StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * L_6; L_6 = StringComparer_get_OrdinalIgnoreCase_m8FD38206B6FFE866E97CE4DF84B037F0DF175288_inline(/*hidden argument*/NULL); G_B6_0 = L_6; G_B6_1 = G_B5_0; } IL_002f: { ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * L_7 = (ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B *)il2cpp_codegen_object_new(ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B_il2cpp_TypeInfo_var); ListDictionary__ctor_mEF3028294A42FC5771EBED7DC1DCB104E284A79A(L_7, G_B6_0, /*hidden argument*/NULL); NullCheck(G_B6_1); G_B6_1->set_list_0(L_7); ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * L_8 = __this->get_list_0(); RuntimeObject * L_9 = ___key0; RuntimeObject * L_10 = ___value1; NullCheck(L_8); ListDictionary_Add_mD622807A74E5FF8AF27DFF445307D81DFCFADB28(L_8, L_9, L_10, /*hidden argument*/NULL); return; } IL_0047: { ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * L_11 = __this->get_list_0(); NullCheck(L_11); int32_t L_12; L_12 = ListDictionary_get_Count_m63B5332C669C858EBC423472A502528612C890F1_inline(L_11, /*hidden argument*/NULL); if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))) < ((int32_t)((int32_t)9)))) { goto IL_006c; } } { HybridDictionary_ChangeOver_m720F3CC680ABE10D68E6E5D67EE646435498EC8B(__this, /*hidden argument*/NULL); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_13 = __this->get_hashtable_1(); RuntimeObject * L_14 = ___key0; RuntimeObject * L_15 = ___value1; NullCheck(L_13); VirtualActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(23 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_13, L_14, L_15); return; } IL_006c: { ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * L_16 = __this->get_list_0(); RuntimeObject * L_17 = ___key0; RuntimeObject * L_18 = ___value1; NullCheck(L_16); ListDictionary_Add_mD622807A74E5FF8AF27DFF445307D81DFCFADB28(L_16, L_17, L_18, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Specialized.HybridDictionary::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HybridDictionary_Clear_mEDB30D28913AA291A2C90824DFE21C4DD43E02A6 (HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A * __this, const RuntimeMethod* method) { { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_0 = __this->get_hashtable_1(); if (!L_0) { goto IL_001a; } } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_1 = __this->get_hashtable_1(); __this->set_hashtable_1((Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC *)NULL); NullCheck(L_1); VirtualActionInvoker0::Invoke(24 /* System.Void System.Collections.Hashtable::Clear() */, L_1); } IL_001a: { ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * L_2 = __this->get_list_0(); if (!L_2) { goto IL_0034; } } { ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * L_3 = __this->get_list_0(); __this->set_list_0((ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B *)NULL); NullCheck(L_3); ListDictionary_Clear_mF7AE377851CEEEF217FF6E0DFF49EAF86D4E04BD(L_3, /*hidden argument*/NULL); } IL_0034: { return; } } // System.Boolean System.Collections.Specialized.HybridDictionary::Contains(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HybridDictionary_Contains_m4D83965011E01C6992097DD64AC0F5C3C0E2C765 (HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * V_0 = NULL; { ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * L_0 = __this->get_list_0(); V_0 = L_0; Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_1 = __this->get_hashtable_1(); if (!L_1) { goto IL_001c; } } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_2 = __this->get_hashtable_1(); RuntimeObject * L_3 = ___key0; NullCheck(L_2); bool L_4; L_4 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(26 /* System.Boolean System.Collections.Hashtable::Contains(System.Object) */, L_2, L_3); return L_4; } IL_001c: { ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * L_5 = V_0; if (!L_5) { goto IL_0027; } } { ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * L_6 = V_0; RuntimeObject * L_7 = ___key0; NullCheck(L_6); bool L_8; L_8 = ListDictionary_Contains_m06D47395FA7A1B7379C8BBFD38D7A8CFEB721D08(L_6, L_7, /*hidden argument*/NULL); return L_8; } IL_0027: { RuntimeObject * L_9 = ___key0; if (L_9) { goto IL_003f; } } { String_t* L_10; L_10 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC94F5AC0843483C42F57211A309E77D97ADE18B1)), /*hidden argument*/NULL); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_11 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_mAD2F05A24C92A657CBCA8C43A9A373C53739A283(L_11, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HybridDictionary_Contains_m4D83965011E01C6992097DD64AC0F5C3C0E2C765_RuntimeMethod_var))); } IL_003f: { return (bool)0; } } // System.Void System.Collections.Specialized.HybridDictionary::CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HybridDictionary_CopyTo_m14080EC1FA3FC4736A5EBA8B4B9CC49DD4E673D3 (HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_0 = __this->get_hashtable_1(); if (!L_0) { goto IL_0016; } } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_1 = __this->get_hashtable_1(); RuntimeArray * L_2 = ___array0; int32_t L_3 = ___index1; NullCheck(L_1); VirtualActionInvoker2< RuntimeArray *, int32_t >::Invoke(28 /* System.Void System.Collections.Hashtable::CopyTo(System.Array,System.Int32) */, L_1, L_2, L_3); return; } IL_0016: { ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * L_4; L_4 = HybridDictionary_get_List_m04D20BE02A5E09BE885C0780E74435ACCD56D78C(__this, /*hidden argument*/NULL); RuntimeArray * L_5 = ___array0; int32_t L_6 = ___index1; NullCheck(L_4); ListDictionary_CopyTo_mBF4FD9B59407ABF719E2565E788A2DC9A4769564(L_4, L_5, L_6, /*hidden argument*/NULL); return; } } // System.Collections.IDictionaryEnumerator System.Collections.Specialized.HybridDictionary::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* HybridDictionary_GetEnumerator_m6A951136F415F6AA36DD93755EDE5873D6D66117 (HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A * G_B5_0 = NULL; HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A * G_B4_0 = NULL; StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * G_B6_0 = NULL; HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A * G_B6_1 = NULL; { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_0 = __this->get_hashtable_1(); if (!L_0) { goto IL_0014; } } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_1 = __this->get_hashtable_1(); NullCheck(L_1); RuntimeObject* L_2; L_2 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(31 /* System.Collections.IDictionaryEnumerator System.Collections.Hashtable::GetEnumerator() */, L_1); return L_2; } IL_0014: { ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * L_3 = __this->get_list_0(); if (L_3) { goto IL_0037; } } { bool L_4 = __this->get_caseInsensitive_2(); G_B4_0 = __this; if (L_4) { G_B5_0 = __this; goto IL_0028; } } { G_B6_0 = ((StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 *)(NULL)); G_B6_1 = G_B4_0; goto IL_002d; } IL_0028: { IL2CPP_RUNTIME_CLASS_INIT(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var); StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * L_5; L_5 = StringComparer_get_OrdinalIgnoreCase_m8FD38206B6FFE866E97CE4DF84B037F0DF175288_inline(/*hidden argument*/NULL); G_B6_0 = L_5; G_B6_1 = G_B5_0; } IL_002d: { ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * L_6 = (ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B *)il2cpp_codegen_object_new(ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B_il2cpp_TypeInfo_var); ListDictionary__ctor_mEF3028294A42FC5771EBED7DC1DCB104E284A79A(L_6, G_B6_0, /*hidden argument*/NULL); NullCheck(G_B6_1); G_B6_1->set_list_0(L_6); } IL_0037: { ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * L_7 = __this->get_list_0(); NullCheck(L_7); RuntimeObject* L_8; L_8 = ListDictionary_GetEnumerator_m6B44040F7259D5F7F1E15F4A4FA0FAE38BFEE236(L_7, /*hidden argument*/NULL); return L_8; } } // System.Collections.IEnumerator System.Collections.Specialized.HybridDictionary::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* HybridDictionary_System_Collections_IEnumerable_GetEnumerator_m51EE25513E0F719E34095133BD0C11379464A6EA (HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A * G_B5_0 = NULL; HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A * G_B4_0 = NULL; StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * G_B6_0 = NULL; HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A * G_B6_1 = NULL; { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_0 = __this->get_hashtable_1(); if (!L_0) { goto IL_0014; } } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_1 = __this->get_hashtable_1(); NullCheck(L_1); RuntimeObject* L_2; L_2 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(31 /* System.Collections.IDictionaryEnumerator System.Collections.Hashtable::GetEnumerator() */, L_1); return L_2; } IL_0014: { ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * L_3 = __this->get_list_0(); if (L_3) { goto IL_0037; } } { bool L_4 = __this->get_caseInsensitive_2(); G_B4_0 = __this; if (L_4) { G_B5_0 = __this; goto IL_0028; } } { G_B6_0 = ((StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 *)(NULL)); G_B6_1 = G_B4_0; goto IL_002d; } IL_0028: { IL2CPP_RUNTIME_CLASS_INIT(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var); StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * L_5; L_5 = StringComparer_get_OrdinalIgnoreCase_m8FD38206B6FFE866E97CE4DF84B037F0DF175288_inline(/*hidden argument*/NULL); G_B6_0 = L_5; G_B6_1 = G_B5_0; } IL_002d: { ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * L_6 = (ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B *)il2cpp_codegen_object_new(ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B_il2cpp_TypeInfo_var); ListDictionary__ctor_mEF3028294A42FC5771EBED7DC1DCB104E284A79A(L_6, G_B6_0, /*hidden argument*/NULL); NullCheck(G_B6_1); G_B6_1->set_list_0(L_6); } IL_0037: { ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * L_7 = __this->get_list_0(); NullCheck(L_7); RuntimeObject* L_8; L_8 = ListDictionary_GetEnumerator_m6B44040F7259D5F7F1E15F4A4FA0FAE38BFEE236(L_7, /*hidden argument*/NULL); return L_8; } } // System.Void System.Collections.Specialized.HybridDictionary::Remove(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HybridDictionary_Remove_m291F7859CDCC65FC3CFF0D06D0F4C7A0B5A8D3BD (HybridDictionary_tAB21D8D9825C4264910B5CE3C0D6B0C65ED1A20A * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_0 = __this->get_hashtable_1(); if (!L_0) { goto IL_0015; } } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_1 = __this->get_hashtable_1(); RuntimeObject * L_2 = ___key0; NullCheck(L_1); VirtualActionInvoker1< RuntimeObject * >::Invoke(39 /* System.Void System.Collections.Hashtable::Remove(System.Object) */, L_1, L_2); return; } IL_0015: { ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * L_3 = __this->get_list_0(); if (!L_3) { goto IL_002a; } } { ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * L_4 = __this->get_list_0(); RuntimeObject * L_5 = ___key0; NullCheck(L_4); ListDictionary_Remove_mD8EE339742816A3140A4FF43174AEDB7648BA8AC(L_4, L_5, /*hidden argument*/NULL); return; } IL_002a: { RuntimeObject * L_6 = ___key0; if (L_6) { goto IL_0042; } } { String_t* L_7; L_7 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC94F5AC0843483C42F57211A309E77D97ADE18B1)), /*hidden argument*/NULL); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_8 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_mAD2F05A24C92A657CBCA8C43A9A373C53739A283(L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), L_7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HybridDictionary_Remove_m291F7859CDCC65FC3CFF0D06D0F4C7A0B5A8D3BD_RuntimeMethod_var))); } IL_0042: { 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.IOAsyncCallback::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IOAsyncCallback__ctor_mDB00FA0892C32A7922EA6D83F9B99B8BA89B9DD3 (IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Void System.IOAsyncCallback::Invoke(System.IOAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IOAsyncCallback_Invoke_mA74FD3E451CC9609430B5FBF1B2D25EEBE2F32BC (IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E * __this, IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9 * ___ioares0, const RuntimeMethod* method) { DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!currentDelegate->get_method_is_virtual_10()) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef void (*FunctionPointerType) (IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___ioares0, targetMethod); } else { // closed typedef void (*FunctionPointerType) (void*, IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___ioares0, targetMethod); } } else if (___parameterCount != 1) { // open if (currentDelegate->get_method_is_virtual_10()) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker0::Invoke(targetMethod, ___ioares0); else GenericVirtualActionInvoker0::Invoke(targetMethod, ___ioares0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___ioares0); else VirtualActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___ioares0); } } else { typedef void (*FunctionPointerType) (IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___ioares0, targetMethod); } } else { // closed if (targetThis == NULL) { typedef void (*FunctionPointerType) (IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___ioares0, targetMethod); } else { typedef void (*FunctionPointerType) (void*, IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___ioares0, targetMethod); } } } } #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.IOAsyncResult IL2CPP_EXTERN_C void IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9_marshal_pinvoke(const IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9& unmarshaled, IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9_marshaled_pinvoke& marshaled) { Exception_t* ___wait_handle_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'wait_handle' of type 'IOAsyncResult': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___wait_handle_2Exception, NULL); } IL2CPP_EXTERN_C void IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9_marshal_pinvoke_back(const IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9_marshaled_pinvoke& marshaled, IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9& unmarshaled) { Exception_t* ___wait_handle_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'wait_handle' of type 'IOAsyncResult': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___wait_handle_2Exception, NULL); } // Conversion method for clean up from marshalling of: System.IOAsyncResult IL2CPP_EXTERN_C void IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9_marshal_pinvoke_cleanup(IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: System.IOAsyncResult IL2CPP_EXTERN_C void IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9_marshal_com(const IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9& unmarshaled, IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9_marshaled_com& marshaled) { Exception_t* ___wait_handle_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'wait_handle' of type 'IOAsyncResult': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___wait_handle_2Exception, NULL); } IL2CPP_EXTERN_C void IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9_marshal_com_back(const IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9_marshaled_com& marshaled, IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9& unmarshaled) { Exception_t* ___wait_handle_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'wait_handle' of type 'IOAsyncResult': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___wait_handle_2Exception, NULL); } // Conversion method for clean up from marshalling of: System.IOAsyncResult IL2CPP_EXTERN_C void IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9_marshal_com_cleanup(IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9_marshaled_com& marshaled) { } // System.Void System.IOAsyncResult::.ctor(System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IOAsyncResult__ctor_m15A5D72B261B81BE2F8F7DA53FC0E476A3F18591 (IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9 * __this, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___async_callback0, RuntimeObject * ___async_state1, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * L_0 = ___async_callback0; __this->set_async_callback_0(L_0); RuntimeObject * L_1 = ___async_state1; __this->set_async_state_1(L_1); return; } } // System.AsyncCallback System.IOAsyncResult::get_AsyncCallback() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * IOAsyncResult_get_AsyncCallback_m28F2ACED98F5AA2F05882EAD17000A26FA3DD5BD (IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9 * __this, const RuntimeMethod* method) { { AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * L_0 = __this->get_async_callback_0(); return L_0; } } // System.Object System.IOAsyncResult::get_AsyncState() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * IOAsyncResult_get_AsyncState_m4BA9096036268EB3E29A69E75C3E80D995C7E9A4 (IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_async_state_1(); return L_0; } } // System.Threading.WaitHandle System.IOAsyncResult::get_AsyncWaitHandle() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842 * IOAsyncResult_get_AsyncWaitHandle_m8BBC83F5F781EE26F35A122B25331DACEB4E558C (IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9 * V_0 = NULL; bool V_1 = false; WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842 * V_2 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { V_0 = __this; V_1 = (bool)0; } IL_0004: try {// begin try (depth: 1) { IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9 * L_0 = V_0; Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4(L_0, (bool*)(&V_1), /*hidden argument*/NULL); ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * L_1 = __this->get_wait_handle_2(); if (L_1) { goto IL_0025; } } IL_0014: { bool L_2 = __this->get_completed_4(); ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * L_3 = (ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA *)il2cpp_codegen_object_new(ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA_il2cpp_TypeInfo_var); ManualResetEvent__ctor_mF80BD5B0955BDA8CD514F48EBFF48698E5D03850(L_3, L_2, /*hidden argument*/NULL); __this->set_wait_handle_2(L_3); } IL_0025: { ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * L_4 = __this->get_wait_handle_2(); V_2 = L_4; IL2CPP_LEAVE(0x38, FINALLY_002e); } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_002e; } FINALLY_002e: {// begin finally (depth: 1) { bool L_5 = V_1; if (!L_5) { goto IL_0037; } } IL_0031: { IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9 * L_6 = V_0; Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A(L_6, /*hidden argument*/NULL); } IL_0037: { IL2CPP_END_FINALLY(46) } }// end finally (depth: 1) IL2CPP_CLEANUP(46) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x38, IL_0038) } IL_0038: { WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842 * L_7 = V_2; return L_7; } } // System.Boolean System.IOAsyncResult::get_CompletedSynchronously() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IOAsyncResult_get_CompletedSynchronously_m5E49A06643ED2276D2443D4732349973DEFA25B3 (IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_completed_synchronously_3(); return L_0; } } // System.Void System.IOAsyncResult::set_CompletedSynchronously(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IOAsyncResult_set_CompletedSynchronously_m4A31A9B8FEFC22E25A8DA81A338A05287487D1D9 (IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9 * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set_completed_synchronously_3(L_0); return; } } // System.Boolean System.IOAsyncResult::get_IsCompleted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IOAsyncResult_get_IsCompleted_m22B40C642B779F95E0D4997A336040E89C492291 (IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_completed_4(); return L_0; } } // System.Void System.IOAsyncResult::set_IsCompleted(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IOAsyncResult_set_IsCompleted_m66D2E977BD61DC754E0AE7C7B9CB630345905183 (IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9 * __this, bool ___value0, const RuntimeMethod* method) { IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9 * V_0 = NULL; bool V_1 = false; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { bool L_0 = ___value0; __this->set_completed_4(L_0); V_0 = __this; V_1 = (bool)0; } IL_000b: try {// begin try (depth: 1) { IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9 * L_1 = V_0; Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4(L_1, (bool*)(&V_1), /*hidden argument*/NULL); bool L_2 = ___value0; if (!L_2) { goto IL_002a; } } IL_0016: { ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * L_3 = __this->get_wait_handle_2(); if (!L_3) { goto IL_002a; } } IL_001e: { ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * L_4 = __this->get_wait_handle_2(); NullCheck(L_4); bool L_5; L_5 = EventWaitHandle_Set_m81764C887F38A1153224557B26CD688B59987B38(L_4, /*hidden argument*/NULL); } IL_002a: { IL2CPP_LEAVE(0x36, FINALLY_002c); } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_002c; } FINALLY_002c: {// begin finally (depth: 1) { bool L_6 = V_1; if (!L_6) { goto IL_0035; } } IL_002f: { IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9 * L_7 = V_0; Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A(L_7, /*hidden argument*/NULL); } IL_0035: { IL2CPP_END_FINALLY(44) } }// end finally (depth: 1) IL2CPP_CLEANUP(44) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x36, IL_0036) } IL_0036: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #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.IOSelector::Add(System.IntPtr,System.IOSelectorJob) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IOSelector_Add_m5CD0B1BF6A9DBA5B42F6D6CE9F86568A2ADBFF02 (intptr_t ___handle0, IOSelectorJob_t684DF541EAF1AB720C017E9DE172EA8168FDBDA9 * ___job1, const RuntimeMethod* method) { typedef void (*IOSelector_Add_m5CD0B1BF6A9DBA5B42F6D6CE9F86568A2ADBFF02_ftn) (intptr_t, IOSelectorJob_t684DF541EAF1AB720C017E9DE172EA8168FDBDA9 *); using namespace il2cpp::icalls; ((IOSelector_Add_m5CD0B1BF6A9DBA5B42F6D6CE9F86568A2ADBFF02_ftn)ves_icall_System_IOSelector_Add) (___handle0, ___job1); } #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.IOSelectorJob IL2CPP_EXTERN_C void IOSelectorJob_t684DF541EAF1AB720C017E9DE172EA8168FDBDA9_marshal_pinvoke(const IOSelectorJob_t684DF541EAF1AB720C017E9DE172EA8168FDBDA9& unmarshaled, IOSelectorJob_t684DF541EAF1AB720C017E9DE172EA8168FDBDA9_marshaled_pinvoke& marshaled) { Exception_t* ___state_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'state' of type 'IOSelectorJob': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___state_2Exception, NULL); } IL2CPP_EXTERN_C void IOSelectorJob_t684DF541EAF1AB720C017E9DE172EA8168FDBDA9_marshal_pinvoke_back(const IOSelectorJob_t684DF541EAF1AB720C017E9DE172EA8168FDBDA9_marshaled_pinvoke& marshaled, IOSelectorJob_t684DF541EAF1AB720C017E9DE172EA8168FDBDA9& unmarshaled) { Exception_t* ___state_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'state' of type 'IOSelectorJob': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___state_2Exception, NULL); } // Conversion method for clean up from marshalling of: System.IOSelectorJob IL2CPP_EXTERN_C void IOSelectorJob_t684DF541EAF1AB720C017E9DE172EA8168FDBDA9_marshal_pinvoke_cleanup(IOSelectorJob_t684DF541EAF1AB720C017E9DE172EA8168FDBDA9_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: System.IOSelectorJob IL2CPP_EXTERN_C void IOSelectorJob_t684DF541EAF1AB720C017E9DE172EA8168FDBDA9_marshal_com(const IOSelectorJob_t684DF541EAF1AB720C017E9DE172EA8168FDBDA9& unmarshaled, IOSelectorJob_t684DF541EAF1AB720C017E9DE172EA8168FDBDA9_marshaled_com& marshaled) { Exception_t* ___state_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'state' of type 'IOSelectorJob': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___state_2Exception, NULL); } IL2CPP_EXTERN_C void IOSelectorJob_t684DF541EAF1AB720C017E9DE172EA8168FDBDA9_marshal_com_back(const IOSelectorJob_t684DF541EAF1AB720C017E9DE172EA8168FDBDA9_marshaled_com& marshaled, IOSelectorJob_t684DF541EAF1AB720C017E9DE172EA8168FDBDA9& unmarshaled) { Exception_t* ___state_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'state' of type 'IOSelectorJob': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___state_2Exception, NULL); } // Conversion method for clean up from marshalling of: System.IOSelectorJob IL2CPP_EXTERN_C void IOSelectorJob_t684DF541EAF1AB720C017E9DE172EA8168FDBDA9_marshal_com_cleanup(IOSelectorJob_t684DF541EAF1AB720C017E9DE172EA8168FDBDA9_marshaled_com& marshaled) { } // System.Void System.IOSelectorJob::.ctor(System.IOOperation,System.IOAsyncCallback,System.IOAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IOSelectorJob__ctor_m8047B29992961582F968FFB25D95662807C44B59 (IOSelectorJob_t684DF541EAF1AB720C017E9DE172EA8168FDBDA9 * __this, int32_t ___operation0, IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E * ___callback1, IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9 * ___state2, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); int32_t L_0 = ___operation0; __this->set_operation_0(L_0); IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E * L_1 = ___callback1; __this->set_callback_1(L_1); IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9 * L_2 = ___state2; __this->set_state_2(L_2); return; } } // System.Void System.IOSelectorJob::System.Threading.IThreadPoolWorkItem.ExecuteWorkItem() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IOSelectorJob_System_Threading_IThreadPoolWorkItem_ExecuteWorkItem_m3CF49929004EB3B060E4ED5DB237C109145C9459 (IOSelectorJob_t684DF541EAF1AB720C017E9DE172EA8168FDBDA9 * __this, const RuntimeMethod* method) { { IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E * L_0 = __this->get_callback_1(); IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9 * L_1 = __this->get_state_2(); NullCheck(L_0); IOAsyncCallback_Invoke_mA74FD3E451CC9609430B5FBF1B2D25EEBE2F32BC(L_0, L_1, /*hidden argument*/NULL); return; } } // System.Void System.IOSelectorJob::System.Threading.IThreadPoolWorkItem.MarkAborted(System.Threading.ThreadAbortException) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IOSelectorJob_System_Threading_IThreadPoolWorkItem_MarkAborted_m14D2CEA6CC4C9E471B27035A45F73D3040AF3044 (IOSelectorJob_t684DF541EAF1AB720C017E9DE172EA8168FDBDA9 * __this, ThreadAbortException_t16772A32C3654FCFF0399F11874CB783CC51C153 * ___tae0, const RuntimeMethod* method) { { return; } } // System.Void System.IOSelectorJob::MarkDisposed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IOSelectorJob_MarkDisposed_m59C7B222B7A2C93E838F2515F89A9BFD16CB6435 (IOSelectorJob_t684DF541EAF1AB720C017E9DE172EA8168FDBDA9 * __this, const RuntimeMethod* method) { { IOAsyncResult_t099E328DEE4054063493B8A96C1FE9AFB0EDAAF9 * L_0 = __this->get_state_2(); NullCheck(L_0); VirtualActionInvoker0::Invoke(8 /* System.Void System.IOAsyncResult::CompleteDisposed() */, 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.Net.IPAddress::.ctor(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IPAddress__ctor_mA672DA31F082CC6E8B10BEC436D94450E630E16F (IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * __this, int64_t ___newAddress0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { __this->set_m_Family_10(2); UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_0 = (UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67*)(UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67*)SZArrayNew(UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67_il2cpp_TypeInfo_var, (uint32_t)8); __this->set_m_Numbers_11(L_0); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); int64_t L_1 = ___newAddress0; if ((((int64_t)L_1) < ((int64_t)((int64_t)((int64_t)0))))) { goto IL_0023; } } { int64_t L_2 = ___newAddress0; if ((((int64_t)L_2) <= ((int64_t)((int64_t)((uint64_t)((uint32_t)((uint32_t)(-1)))))))) { goto IL_002e; } } IL_0023: { ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_3 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFC7CE1550BE8A973149B3C0EC550C5A65BDD7413)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IPAddress__ctor_mA672DA31F082CC6E8B10BEC436D94450E630E16F_RuntimeMethod_var))); } IL_002e: { int64_t L_4 = ___newAddress0; __this->set_m_Address_5(L_4); return; } } // System.Void System.Net.IPAddress::.ctor(System.Byte[],System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IPAddress__ctor_m1E185EFDA876C940958AF536535E2E4C16C0D1D2 (IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___address0, int64_t ___scopeid1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { __this->set_m_Family_10(2); UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_0 = (UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67*)(UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67*)SZArrayNew(UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67_il2cpp_TypeInfo_var, (uint32_t)8); __this->set_m_Numbers_11(L_0); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = ___address0; if (L_1) { goto IL_0027; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8A577A5A6848BEDC7A1DBA1211A06E627EEF0057)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IPAddress__ctor_m1E185EFDA876C940958AF536535E2E4C16C0D1D2_RuntimeMethod_var))); } IL_0027: { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = ___address0; NullCheck(L_3); if ((((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))) == ((int32_t)((int32_t)16)))) { goto IL_0043; } } { String_t* L_4; L_4 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8E8E3CB7E102B63C5E2F7011280E4E41798F185)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_5 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_5, L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8A577A5A6848BEDC7A1DBA1211A06E627EEF0057)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IPAddress__ctor_m1E185EFDA876C940958AF536535E2E4C16C0D1D2_RuntimeMethod_var))); } IL_0043: { __this->set_m_Family_10(((int32_t)23)); V_0 = 0; goto IL_006f; } IL_004f: { UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_6 = __this->get_m_Numbers_11(); int32_t L_7 = V_0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_8 = ___address0; int32_t L_9 = V_0; NullCheck(L_8); int32_t L_10 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_9, (int32_t)2)); uint8_t L_11 = (L_8)->GetAt(static_cast(L_10)); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_12 = ___address0; int32_t L_13 = V_0; NullCheck(L_12); int32_t L_14 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_13, (int32_t)2)), (int32_t)1)); uint8_t L_15 = (L_12)->GetAt(static_cast(L_14)); NullCheck(L_6); (L_6)->SetAt(static_cast(L_7), (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_11, (int32_t)((int32_t)256))), (int32_t)L_15))))); int32_t L_16 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_006f: { int32_t L_17 = V_0; if ((((int32_t)L_17) < ((int32_t)8))) { goto IL_004f; } } { int64_t L_18 = ___scopeid1; if ((((int64_t)L_18) < ((int64_t)((int64_t)((int64_t)0))))) { goto IL_007d; } } { int64_t L_19 = ___scopeid1; if ((((int64_t)L_19) <= ((int64_t)((int64_t)((uint64_t)((uint32_t)((uint32_t)(-1)))))))) { goto IL_0088; } } IL_007d: { ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_20 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_20, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4818B6292BB54C3BA36849A617241A4C666A6CB8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IPAddress__ctor_m1E185EFDA876C940958AF536535E2E4C16C0D1D2_RuntimeMethod_var))); } IL_0088: { int64_t L_21 = ___scopeid1; __this->set_m_ScopeId_12(L_21); return; } } // System.Void System.Net.IPAddress::.ctor(System.UInt16[],System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IPAddress__ctor_mEE088A7E8AE4F63C519837672A2EA0650E6A9B1C (IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * __this, UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* ___address0, uint32_t ___scopeid1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { __this->set_m_Family_10(2); UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_0 = (UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67*)(UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67*)SZArrayNew(UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67_il2cpp_TypeInfo_var, (uint32_t)8); __this->set_m_Numbers_11(L_0); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); __this->set_m_Family_10(((int32_t)23)); UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_1 = ___address0; __this->set_m_Numbers_11(L_1); uint32_t L_2 = ___scopeid1; __this->set_m_ScopeId_12(((int64_t)((uint64_t)L_2))); return; } } // System.Void System.Net.IPAddress::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IPAddress__ctor_m75238FEA3E8B108639752167DBE53DDD799CD7B8 (IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * __this, int32_t ___newAddress0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { __this->set_m_Family_10(2); UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_0 = (UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67*)(UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67*)SZArrayNew(UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67_il2cpp_TypeInfo_var, (uint32_t)8); __this->set_m_Numbers_11(L_0); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); int32_t L_1 = ___newAddress0; __this->set_m_Address_5(((int64_t)((int64_t)((int64_t)((int64_t)L_1))&(int64_t)((int64_t)((uint64_t)((uint32_t)((uint32_t)(-1)))))))); return; } } // System.Boolean System.Net.IPAddress::TryParse(System.String,System.Net.IPAddress&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPAddress_TryParse_m43158BF9D76398954BE04773A6A15898EFE27F3E (String_t* ___ipString0, IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE ** ___address1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE ** L_0 = ___address1; String_t* L_1 = ___ipString0; IL2CPP_RUNTIME_CLASS_INIT(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var); IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_2; L_2 = IPAddress_InternalParse_mA345622709EB5B07BB8D50F3E28CB519BB419E26(L_1, (bool)1, /*hidden argument*/NULL); *((RuntimeObject **)L_0) = (RuntimeObject *)L_2; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_0, (void*)(RuntimeObject *)L_2); IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE ** L_3 = ___address1; IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_4 = *((IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE **)L_3); return (bool)((!(((RuntimeObject*)(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE *)L_4) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); } } // System.Net.IPAddress System.Net.IPAddress::Parse(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * IPAddress_Parse_m49C413225AC75DA34D1663559818861CA34C3CB0 (String_t* ___ipString0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___ipString0; IL2CPP_RUNTIME_CLASS_INIT(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var); IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_1; L_1 = IPAddress_InternalParse_mA345622709EB5B07BB8D50F3E28CB519BB419E26(L_0, (bool)0, /*hidden argument*/NULL); return L_1; } } // System.Net.IPAddress System.Net.IPAddress::InternalParse(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * IPAddress_InternalParse_mA345622709EB5B07BB8D50F3E28CB519BB419E26 (String_t* ___ipString0, bool ___tryParse1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC); s_Il2CppMethodInitialized = true; } SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88 * V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; Il2CppChar* V_3 = NULL; String_t* V_4 = NULL; UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* V_5 = NULL; String_t* V_6 = NULL; uint32_t V_7 = 0; uint16_t* V_8 = NULL; UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* V_9 = NULL; int32_t V_10 = 0; int64_t V_11 = 0; Il2CppChar* V_12 = NULL; { String_t* L_0 = ___ipString0; if (L_0) { goto IL_0013; } } { bool L_1 = ___tryParse1; if (!L_1) { goto IL_0008; } } { return (IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE *)NULL; } IL_0008: { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC925B5DCB35BC93115D9BE312CD3AD130C37575B)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IPAddress_InternalParse_mA345622709EB5B07BB8D50F3E28CB519BB419E26_RuntimeMethod_var))); } IL_0013: { String_t* L_3 = ___ipString0; NullCheck(L_3); int32_t L_4; L_4 = String_IndexOf_mEE2D2F738175E3FF05580366D6226DBD673CA2BE(L_3, ((int32_t)58), /*hidden argument*/NULL); if ((((int32_t)L_4) == ((int32_t)(-1)))) { goto IL_010a; } } { V_0 = (SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88 *)NULL; V_1 = 0; String_t* L_5 = ___ipString0; NullCheck(L_5); Il2CppChar L_6; L_6 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_5, 0, /*hidden argument*/NULL); if ((((int32_t)L_6) == ((int32_t)((int32_t)91)))) { goto IL_003f; } } { String_t* L_7 = ___ipString0; String_t* L_8; L_8 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_7, _stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC, /*hidden argument*/NULL); ___ipString0 = L_8; goto IL_0041; } IL_003f: { V_1 = 1; } IL_0041: { String_t* L_9 = ___ipString0; NullCheck(L_9); int32_t L_10; L_10 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_9, /*hidden argument*/NULL); V_2 = L_10; String_t* L_11 = ___ipString0; V_4 = L_11; String_t* L_12 = V_4; V_3 = (Il2CppChar*)((uintptr_t)L_12); Il2CppChar* L_13 = V_3; if (!L_13) { goto IL_005a; } } { Il2CppChar* L_14 = V_3; int32_t L_15; L_15 = RuntimeHelpers_get_OffsetToStringData_mEB8E6EAEBAFAB7CD7F7A915B3081785AABB9FC42(/*hidden argument*/NULL); V_3 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_14, (int32_t)L_15)); } IL_005a: { Il2CppChar* L_16 = V_3; int32_t L_17 = V_1; bool L_18; L_18 = IPv6AddressHelper_IsValidStrict_m3BD3CD0DCD4FD29996CFC9369F2C2904BE80604E((Il2CppChar*)(Il2CppChar*)L_16, L_17, (int32_t*)(&V_2), /*hidden argument*/NULL); if (L_18) { goto IL_006e; } } { int32_t L_19 = V_2; String_t* L_20 = ___ipString0; NullCheck(L_20); int32_t L_21; L_21 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_20, /*hidden argument*/NULL); if ((((int32_t)L_19) == ((int32_t)L_21))) { goto IL_00e6; } } IL_006e: { UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_22 = (UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67*)(UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67*)SZArrayNew(UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67_il2cpp_TypeInfo_var, (uint32_t)8); V_5 = L_22; V_6 = (String_t*)NULL; UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_23 = V_5; UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_24 = L_23; V_9 = L_24; if (!L_24) { goto IL_0086; } } { UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_25 = V_9; NullCheck(L_25); if (((int32_t)((int32_t)(((RuntimeArray*)L_25)->max_length)))) { goto IL_008c; } } IL_0086: { V_8 = (uint16_t*)((uintptr_t)0); goto IL_0097; } IL_008c: { UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_26 = V_9; NullCheck(L_26); V_8 = (uint16_t*)((uintptr_t)((L_26)->GetAddressAt(static_cast(0)))); } IL_0097: { String_t* L_27 = ___ipString0; uint16_t* L_28 = V_8; bool L_29; L_29 = IPv6AddressHelper_Parse_m40C11CFE4C02F7BDE4A8A9B5AD65B5481576E91B(L_27, (uint16_t*)(uint16_t*)L_28, 0, (String_t**)(&V_6), /*hidden argument*/NULL); V_9 = (UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67*)NULL; String_t* L_30 = V_6; if (!L_30) { goto IL_00b3; } } { String_t* L_31 = V_6; NullCheck(L_31); int32_t L_32; L_32 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_31, /*hidden argument*/NULL); if (L_32) { goto IL_00bc; } } IL_00b3: { UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_33 = V_5; IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_34 = (IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE *)il2cpp_codegen_object_new(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var); IPAddress__ctor_mEE088A7E8AE4F63C519837672A2EA0650E6A9B1C(L_34, L_33, 0, /*hidden argument*/NULL); return L_34; } IL_00bc: { String_t* L_35 = V_6; NullCheck(L_35); String_t* L_36; L_36 = String_Substring_mB6B87FD76552BBF6D4E2B9F07F857FE051DCE190(L_35, 1, /*hidden argument*/NULL); V_6 = L_36; String_t* L_37 = V_6; bool L_38; L_38 = UInt32_TryParse_m5A92B541CF9CC6532CB23BDE6DF7460E5EAC8435(L_37, 0, (RuntimeObject*)NULL, (uint32_t*)(&V_7), /*hidden argument*/NULL); if (!L_38) { goto IL_00dd; } } { UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_39 = V_5; uint32_t L_40 = V_7; IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_41 = (IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE *)il2cpp_codegen_object_new(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var); IPAddress__ctor_mEE088A7E8AE4F63C519837672A2EA0650E6A9B1C(L_41, L_39, L_40, /*hidden argument*/NULL); return L_41; } IL_00dd: { UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_42 = V_5; IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_43 = (IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE *)il2cpp_codegen_object_new(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var); IPAddress__ctor_mEE088A7E8AE4F63C519837672A2EA0650E6A9B1C(L_43, L_42, 0, /*hidden argument*/NULL); return L_43; } IL_00e6: { V_4 = (String_t*)NULL; bool L_44 = ___tryParse1; if (!L_44) { goto IL_00ee; } } { return (IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE *)NULL; } IL_00ee: { SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88 * L_45 = (SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88_il2cpp_TypeInfo_var))); SocketException__ctor_m8625815C7AFB0F3BF9287520D8F64A69199D6DCA(L_45, ((int32_t)10022), /*hidden argument*/NULL); V_0 = L_45; String_t* L_46; L_46 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8E8E3CB7E102B63C5E2F7011280E4E41798F185)), /*hidden argument*/NULL); SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88 * L_47 = V_0; FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759 * L_48 = (FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759_il2cpp_TypeInfo_var))); FormatException__ctor_mF8CFF64B9AB9A6B4AD5B33FC72E6EA7F6631FD51(L_48, L_46, L_47, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_48, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IPAddress_InternalParse_mA345622709EB5B07BB8D50F3E28CB519BB419E26_RuntimeMethod_var))); } IL_010a: { String_t* L_49 = ___ipString0; NullCheck(L_49); int32_t L_50; L_50 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_49, /*hidden argument*/NULL); V_10 = L_50; String_t* L_51 = ___ipString0; V_4 = L_51; String_t* L_52 = V_4; V_12 = (Il2CppChar*)((uintptr_t)L_52); Il2CppChar* L_53 = V_12; if (!L_53) { goto IL_0128; } } { Il2CppChar* L_54 = V_12; int32_t L_55; L_55 = RuntimeHelpers_get_OffsetToStringData_mEB8E6EAEBAFAB7CD7F7A915B3081785AABB9FC42(/*hidden argument*/NULL); V_12 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_54, (int32_t)L_55)); } IL_0128: { Il2CppChar* L_56 = V_12; int64_t L_57; L_57 = IPv4AddressHelper_ParseNonCanonical_mE2C4832ED252F3CE61B73DBE25B4959568E2FE31((Il2CppChar*)(Il2CppChar*)L_56, 0, (int32_t*)(&V_10), (bool)1, /*hidden argument*/NULL); V_11 = L_57; V_4 = (String_t*)NULL; int64_t L_58 = V_11; if ((((int64_t)L_58) == ((int64_t)((int64_t)((int64_t)(-1)))))) { goto IL_0148; } } { int32_t L_59 = V_10; String_t* L_60 = ___ipString0; NullCheck(L_60); int32_t L_61; L_61 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_60, /*hidden argument*/NULL); if ((((int32_t)L_59) == ((int32_t)L_61))) { goto IL_015d; } } IL_0148: { bool L_62 = ___tryParse1; if (!L_62) { goto IL_014d; } } { return (IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE *)NULL; } IL_014d: { String_t* L_63; L_63 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8E8E3CB7E102B63C5E2F7011280E4E41798F185)), /*hidden argument*/NULL); FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759 * L_64 = (FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759_il2cpp_TypeInfo_var))); FormatException__ctor_mB8F9A26F985EF9A6C0C082F7D70CFDF2DBDBB23B(L_64, L_63, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_64, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IPAddress_InternalParse_mA345622709EB5B07BB8D50F3E28CB519BB419E26_RuntimeMethod_var))); } IL_015d: { int64_t L_65 = V_11; int64_t L_66 = V_11; int64_t L_67 = V_11; int64_t L_68 = V_11; V_11 = ((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)L_65&(int64_t)((int64_t)((int64_t)((int32_t)255)))))<<(int32_t)((int32_t)24)))|(int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)L_66&(int64_t)((int64_t)((int64_t)((int32_t)65280)))))<<(int32_t)8))|(int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)L_67&(int64_t)((int64_t)((int64_t)((int32_t)16711680)))))>>(int32_t)8))|(int64_t)((int64_t)((int64_t)((int64_t)((int64_t)L_68&(int64_t)((int64_t)((uint64_t)((uint32_t)((uint32_t)((int32_t)-16777216)))))))>>(int32_t)((int32_t)24))))))))); int64_t L_69 = V_11; IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_70 = (IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE *)il2cpp_codegen_object_new(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var); IPAddress__ctor_mA672DA31F082CC6E8B10BEC436D94450E630E16F(L_70, L_69, /*hidden argument*/NULL); return L_70; } } // System.Byte[] System.Net.IPAddress::GetAddressBytes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* IPAddress_GetAddressBytes_m7ED0924E8259B6D2426B3B570B25EE7CE9B789C7 (IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; { int32_t L_0 = __this->get_m_Family_10(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)23))))) { goto IL_0050; } } { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)((int32_t)16)); V_0 = L_1; V_1 = 0; V_2 = 0; goto IL_004a; } IL_0018: { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = V_0; int32_t L_3 = V_1; int32_t L_4 = L_3; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)); UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_5 = __this->get_m_Numbers_11(); int32_t L_6 = V_2; NullCheck(L_5); int32_t L_7 = L_6; uint16_t L_8 = (L_5)->GetAt(static_cast(L_7)); NullCheck(L_2); (L_2)->SetAt(static_cast(L_4), (uint8_t)((int32_t)((uint8_t)((int32_t)((int32_t)((int32_t)((int32_t)L_8>>(int32_t)8))&(int32_t)((int32_t)255)))))); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_9 = V_0; int32_t L_10 = V_1; int32_t L_11 = L_10; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_12 = __this->get_m_Numbers_11(); int32_t L_13 = V_2; NullCheck(L_12); int32_t L_14 = L_13; uint16_t L_15 = (L_12)->GetAt(static_cast(L_14)); NullCheck(L_9); (L_9)->SetAt(static_cast(L_11), (uint8_t)((int32_t)((uint8_t)((int32_t)((int32_t)L_15&(int32_t)((int32_t)255)))))); int32_t L_16 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_004a: { int32_t L_17 = V_2; if ((((int32_t)L_17) < ((int32_t)8))) { goto IL_0018; } } { goto IL_0087; } IL_0050: { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_18 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)4); V_0 = L_18; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_19 = V_0; int64_t L_20 = __this->get_m_Address_5(); NullCheck(L_19); (L_19)->SetAt(static_cast(0), (uint8_t)((int32_t)((uint8_t)L_20))); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_21 = V_0; int64_t L_22 = __this->get_m_Address_5(); NullCheck(L_21); (L_21)->SetAt(static_cast(1), (uint8_t)((int32_t)((uint8_t)((int64_t)((int64_t)L_22>>(int32_t)8))))); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_23 = V_0; int64_t L_24 = __this->get_m_Address_5(); NullCheck(L_23); (L_23)->SetAt(static_cast(2), (uint8_t)((int32_t)((uint8_t)((int64_t)((int64_t)L_24>>(int32_t)((int32_t)16)))))); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_25 = V_0; int64_t L_26 = __this->get_m_Address_5(); NullCheck(L_25); (L_25)->SetAt(static_cast(3), (uint8_t)((int32_t)((uint8_t)((int64_t)((int64_t)L_26>>(int32_t)((int32_t)24)))))); } IL_0087: { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_27 = V_0; return L_27; } } // System.Net.Sockets.AddressFamily System.Net.IPAddress::get_AddressFamily() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IPAddress_get_AddressFamily_m0554FC6CF1296D4C1456F3D73CB110E38634B24D (IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_m_Family_10(); return L_0; } } // System.Int64 System.Net.IPAddress::get_ScopeId() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t IPAddress_get_ScopeId_mEDF9FA0FCEFAC4109AEDAD316DC18C5EE841CE5B (IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_m_Family_10(); if ((!(((uint32_t)L_0) == ((uint32_t)2)))) { goto IL_0014; } } { SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88 * L_1 = (SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88_il2cpp_TypeInfo_var))); SocketException__ctor_m8625815C7AFB0F3BF9287520D8F64A69199D6DCA(L_1, ((int32_t)10045), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IPAddress_get_ScopeId_mEDF9FA0FCEFAC4109AEDAD316DC18C5EE841CE5B_RuntimeMethod_var))); } IL_0014: { int64_t L_2 = __this->get_m_ScopeId_12(); return L_2; } } // System.String System.Net.IPAddress::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IPAddress_ToString_m4CFA8A08819BEDF5293C486AF623F5A4014AF8AC (IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * __this, const RuntimeMethod* method) { IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; Il2CppChar* V_2 = NULL; int32_t V_3 = 0; { String_t* L_0 = __this->get_m_ToString_6(); if (L_0) { goto IL_0135; } } { int32_t L_1 = __this->get_m_Family_10(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)23))))) { goto IL_0040; } } { UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_2 = __this->get_m_Numbers_11(); int64_t L_3; L_3 = IPAddress_get_ScopeId_mEDF9FA0FCEFAC4109AEDAD316DC18C5EE841CE5B(__this, /*hidden argument*/NULL); IPv6AddressFormatter__ctor_mEEFF87906A194838D6E4A31AB724A28808E539E5((IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA *)(&V_0), L_2, L_3, /*hidden argument*/NULL); String_t* L_4; L_4 = IPv6AddressFormatter_ToString_m5FB0F927F3B0BAA521BC92562A7F5A78460023DC((IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA *)(&V_0), /*hidden argument*/NULL); __this->set_m_ToString_6(L_4); goto IL_0135; } IL_0040: { V_1 = ((int32_t)15); int8_t* L_5 = (int8_t*) alloca(((uintptr_t)((int32_t)30))); memset(L_5, 0, ((uintptr_t)((int32_t)30))); V_2 = (Il2CppChar*)(L_5); int64_t L_6 = __this->get_m_Address_5(); V_3 = ((int32_t)((int32_t)((int64_t)((int64_t)((int64_t)((int64_t)L_6>>(int32_t)((int32_t)24)))&(int64_t)((int64_t)((int64_t)((int32_t)255))))))); } IL_005b: { Il2CppChar* L_7 = V_2; int32_t L_8 = V_1; int32_t L_9 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)1)); V_1 = L_9; int32_t L_10 = V_3; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_7, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_9), (int32_t)2))))) = (int16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)48), (int32_t)((int32_t)((int32_t)L_10%(int32_t)((int32_t)10))))))); int32_t L_11 = V_3; V_3 = ((int32_t)((int32_t)L_11/(int32_t)((int32_t)10))); int32_t L_12 = V_3; if ((((int32_t)L_12) > ((int32_t)0))) { goto IL_005b; } } { Il2CppChar* L_13 = V_2; int32_t L_14 = V_1; int32_t L_15 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)1)); V_1 = L_15; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_13, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_15), (int32_t)2))))) = (int16_t)((int32_t)46); int64_t L_16 = __this->get_m_Address_5(); V_3 = ((int32_t)((int32_t)((int64_t)((int64_t)((int64_t)((int64_t)L_16>>(int32_t)((int32_t)16)))&(int64_t)((int64_t)((int64_t)((int32_t)255))))))); } IL_0096: { Il2CppChar* L_17 = V_2; int32_t L_18 = V_1; int32_t L_19 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1)); V_1 = L_19; int32_t L_20 = V_3; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_17, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_19), (int32_t)2))))) = (int16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)48), (int32_t)((int32_t)((int32_t)L_20%(int32_t)((int32_t)10))))))); int32_t L_21 = V_3; V_3 = ((int32_t)((int32_t)L_21/(int32_t)((int32_t)10))); int32_t L_22 = V_3; if ((((int32_t)L_22) > ((int32_t)0))) { goto IL_0096; } } { Il2CppChar* L_23 = V_2; int32_t L_24 = V_1; int32_t L_25 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1)); V_1 = L_25; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_23, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_25), (int32_t)2))))) = (int16_t)((int32_t)46); int64_t L_26 = __this->get_m_Address_5(); V_3 = ((int32_t)((int32_t)((int64_t)((int64_t)((int64_t)((int64_t)L_26>>(int32_t)8))&(int64_t)((int64_t)((int64_t)((int32_t)255))))))); } IL_00d0: { Il2CppChar* L_27 = V_2; int32_t L_28 = V_1; int32_t L_29 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_28, (int32_t)1)); V_1 = L_29; int32_t L_30 = V_3; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_27, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_29), (int32_t)2))))) = (int16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)48), (int32_t)((int32_t)((int32_t)L_30%(int32_t)((int32_t)10))))))); int32_t L_31 = V_3; V_3 = ((int32_t)((int32_t)L_31/(int32_t)((int32_t)10))); int32_t L_32 = V_3; if ((((int32_t)L_32) > ((int32_t)0))) { goto IL_00d0; } } { Il2CppChar* L_33 = V_2; int32_t L_34 = V_1; int32_t L_35 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_34, (int32_t)1)); V_1 = L_35; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_33, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_35), (int32_t)2))))) = (int16_t)((int32_t)46); int64_t L_36 = __this->get_m_Address_5(); V_3 = ((int32_t)((int32_t)((int64_t)((int64_t)L_36&(int64_t)((int64_t)((int64_t)((int32_t)255))))))); } IL_0108: { Il2CppChar* L_37 = V_2; int32_t L_38 = V_1; int32_t L_39 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_38, (int32_t)1)); V_1 = L_39; int32_t L_40 = V_3; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_37, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_39), (int32_t)2))))) = (int16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)48), (int32_t)((int32_t)((int32_t)L_40%(int32_t)((int32_t)10))))))); int32_t L_41 = V_3; V_3 = ((int32_t)((int32_t)L_41/(int32_t)((int32_t)10))); int32_t L_42 = V_3; if ((((int32_t)L_42) > ((int32_t)0))) { goto IL_0108; } } { Il2CppChar* L_43 = V_2; int32_t L_44 = V_1; int32_t L_45 = V_1; String_t* L_46; L_46 = String_CreateString_m854F19B67F5E1B63737E096BF53CC56AB12AF777(NULL, (Il2CppChar*)(Il2CppChar*)L_43, L_44, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)15), (int32_t)L_45)), /*hidden argument*/NULL); __this->set_m_ToString_6(L_46); } IL_0135: { String_t* L_47 = __this->get_m_ToString_6(); return L_47; } } // System.Boolean System.Net.IPAddress::IsLoopback(System.Net.IPAddress) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPAddress_IsLoopback_m3B8891E48F9F68CFF239B71C29E536BE1F5CFA14 (IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * ___address0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_0 = ___address0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8A577A5A6848BEDC7A1DBA1211A06E627EEF0057)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IPAddress_IsLoopback_m3B8891E48F9F68CFF239B71C29E536BE1F5CFA14_RuntimeMethod_var))); } IL_000e: { IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_2 = ___address0; NullCheck(L_2); int32_t L_3 = L_2->get_m_Family_10(); if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)23))))) { goto IL_0024; } } { IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_4 = ___address0; IL2CPP_RUNTIME_CLASS_INIT(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var); IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_5 = ((IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_StaticFields*)il2cpp_codegen_static_fields_for(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var))->get_IPv6Loopback_8(); NullCheck(L_4); bool L_6; L_6 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_4, L_5); return L_6; } IL_0024: { IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_7 = ___address0; NullCheck(L_7); int64_t L_8 = L_7->get_m_Address_5(); IL2CPP_RUNTIME_CLASS_INIT(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var); IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_9 = ((IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_StaticFields*)il2cpp_codegen_static_fields_for(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var))->get_Loopback_1(); NullCheck(L_9); int64_t L_10 = L_9->get_m_Address_5(); return (bool)((((int64_t)((int64_t)((int64_t)L_8&(int64_t)((int64_t)((int64_t)((int32_t)255)))))) == ((int64_t)((int64_t)((int64_t)L_10&(int64_t)((int64_t)((int64_t)((int32_t)255)))))))? 1 : 0); } } // System.Boolean System.Net.IPAddress::Equals(System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPAddress_Equals_m4B1CA27458D8182146569D0BC82A2D3A23346516 (IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * __this, RuntimeObject * ___comparandObj0, bool ___compareScopeId1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * V_0 = NULL; int32_t V_1 = 0; { RuntimeObject * L_0 = ___comparandObj0; V_0 = ((IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE *)IsInstClass((RuntimeObject*)L_0, IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var)); IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_1 = V_0; if (L_1) { goto IL_000c; } } { return (bool)0; } IL_000c: { int32_t L_2 = __this->get_m_Family_10(); IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_3 = V_0; NullCheck(L_3); int32_t L_4 = L_3->get_m_Family_10(); if ((((int32_t)L_2) == ((int32_t)L_4))) { goto IL_001c; } } { return (bool)0; } IL_001c: { int32_t L_5 = __this->get_m_Family_10(); if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)23))))) { goto IL_005d; } } { V_1 = 0; goto IL_0042; } IL_002a: { IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_6 = V_0; NullCheck(L_6); UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_7 = L_6->get_m_Numbers_11(); int32_t L_8 = V_1; NullCheck(L_7); int32_t L_9 = L_8; uint16_t L_10 = (L_7)->GetAt(static_cast(L_9)); UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_11 = __this->get_m_Numbers_11(); int32_t L_12 = V_1; NullCheck(L_11); int32_t L_13 = L_12; uint16_t L_14 = (L_11)->GetAt(static_cast(L_13)); if ((((int32_t)L_10) == ((int32_t)L_14))) { goto IL_003e; } } { return (bool)0; } IL_003e: { int32_t L_15 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_0042: { int32_t L_16 = V_1; if ((((int32_t)L_16) < ((int32_t)8))) { goto IL_002a; } } { IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_17 = V_0; NullCheck(L_17); int64_t L_18 = L_17->get_m_ScopeId_12(); int64_t L_19 = __this->get_m_ScopeId_12(); if ((!(((uint64_t)L_18) == ((uint64_t)L_19)))) { goto IL_0056; } } { return (bool)1; } IL_0056: { bool L_20 = ___compareScopeId1; if (L_20) { goto IL_005b; } } { return (bool)1; } IL_005b: { return (bool)0; } IL_005d: { IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_21 = V_0; NullCheck(L_21); int64_t L_22 = L_21->get_m_Address_5(); int64_t L_23 = __this->get_m_Address_5(); return (bool)((((int64_t)L_22) == ((int64_t)L_23))? 1 : 0); } } // System.Boolean System.Net.IPAddress::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPAddress_Equals_mA898722519C090D557CA585C2FDB496D92D3CEB3 (IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * __this, RuntimeObject * ___comparand0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___comparand0; bool L_1; L_1 = IPAddress_Equals_m4B1CA27458D8182146569D0BC82A2D3A23346516(__this, L_0, (bool)1, /*hidden argument*/NULL); return L_1; } } // System.Int32 System.Net.IPAddress::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IPAddress_GetHashCode_m3A6682B1FAA8754BB7AF27913FFE319ABFED9D50 (IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get_m_Family_10(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)23))))) { goto IL_002f; } } { int32_t L_1 = __this->get_m_HashCode_13(); if (L_1) { goto IL_0028; } } { IL2CPP_RUNTIME_CLASS_INIT(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var); StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * L_2; L_2 = StringComparer_get_InvariantCultureIgnoreCase_m091360FF9FE3516559AFF706AF431E6FD4CCF2C2_inline(/*hidden argument*/NULL); String_t* L_3; L_3 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, __this); NullCheck(L_2); int32_t L_4; L_4 = VirtualFuncInvoker1< int32_t, String_t* >::Invoke(12 /* System.Int32 System.StringComparer::GetHashCode(System.String) */, L_2, L_3); __this->set_m_HashCode_13(L_4); } IL_0028: { int32_t L_5 = __this->get_m_HashCode_13(); return L_5; } IL_002f: { int64_t L_6 = __this->get_m_Address_5(); return ((int32_t)((int32_t)L_6)); } } // System.Net.IPAddress System.Net.IPAddress::MapToIPv6() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * IPAddress_MapToIPv6_mA99938E0BDF716543A4C890FB694C54FBDE70B4F (IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0; L_0 = IPAddress_get_AddressFamily_m0554FC6CF1296D4C1456F3D73CB110E38634B24D_inline(__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)23))))) { goto IL_000c; } } { return __this; } IL_000c: { UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_1 = (UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67*)(UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67*)SZArrayNew(UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67_il2cpp_TypeInfo_var, (uint32_t)8); UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_2 = L_1; NullCheck(L_2); (L_2)->SetAt(static_cast(5), (uint16_t)((int32_t)65535)); UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_3 = L_2; int64_t L_4 = __this->get_m_Address_5(); int64_t L_5 = __this->get_m_Address_5(); NullCheck(L_3); (L_3)->SetAt(static_cast(6), (uint16_t)((int32_t)((uint16_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)L_4&(int64_t)((int64_t)((int64_t)((int32_t)65280)))))>>(int32_t)8))|(int64_t)((int64_t)((int64_t)((int64_t)((int64_t)L_5&(int64_t)((int64_t)((int64_t)((int32_t)255)))))<<(int32_t)8))))))); UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_6 = L_3; int64_t L_7 = __this->get_m_Address_5(); int64_t L_8 = __this->get_m_Address_5(); NullCheck(L_6); (L_6)->SetAt(static_cast(7), (uint16_t)((int32_t)((uint16_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)L_7&(int64_t)((int64_t)((uint64_t)((uint32_t)((uint32_t)((int32_t)-16777216)))))))>>(int32_t)((int32_t)24)))|(int64_t)((int64_t)((int64_t)((int64_t)((int64_t)L_8&(int64_t)((int64_t)((int64_t)((int32_t)16711680)))))>>(int32_t)8))))))); IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_9 = (IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE *)il2cpp_codegen_object_new(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var); IPAddress__ctor_mEE088A7E8AE4F63C519837672A2EA0650E6A9B1C(L_9, L_6, 0, /*hidden argument*/NULL); return L_9; } } // System.Void System.Net.IPAddress::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IPAddress__cctor_mA3EA3A0F0F5B03634732C2DF4780B8438F8AAB57 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_0 = (IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE *)il2cpp_codegen_object_new(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var); IPAddress__ctor_m75238FEA3E8B108639752167DBE53DDD799CD7B8(L_0, 0, /*hidden argument*/NULL); ((IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_StaticFields*)il2cpp_codegen_static_fields_for(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var))->set_Any_0(L_0); IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_1 = (IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE *)il2cpp_codegen_object_new(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var); IPAddress__ctor_m75238FEA3E8B108639752167DBE53DDD799CD7B8(L_1, ((int32_t)16777343), /*hidden argument*/NULL); ((IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_StaticFields*)il2cpp_codegen_static_fields_for(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var))->set_Loopback_1(L_1); IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_2 = (IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE *)il2cpp_codegen_object_new(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var); IPAddress__ctor_mA672DA31F082CC6E8B10BEC436D94450E630E16F(L_2, ((int64_t)((uint64_t)((uint32_t)((uint32_t)(-1))))), /*hidden argument*/NULL); ((IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_StaticFields*)il2cpp_codegen_static_fields_for(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var))->set_Broadcast_2(L_2); IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_3 = ((IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_StaticFields*)il2cpp_codegen_static_fields_for(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var))->get_Broadcast_2(); ((IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_StaticFields*)il2cpp_codegen_static_fields_for(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var))->set_None_3(L_3); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)((int32_t)16)); IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_5 = (IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE *)il2cpp_codegen_object_new(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var); IPAddress__ctor_m1E185EFDA876C940958AF536535E2E4C16C0D1D2(L_5, L_4, ((int64_t)((int64_t)0)), /*hidden argument*/NULL); ((IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_StaticFields*)il2cpp_codegen_static_fields_for(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var))->set_IPv6Any_7(L_5); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_6 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)((int32_t)16)); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_7 = L_6; NullCheck(L_7); (L_7)->SetAt(static_cast(((int32_t)15)), (uint8_t)1); IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_8 = (IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE *)il2cpp_codegen_object_new(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var); IPAddress__ctor_m1E185EFDA876C940958AF536535E2E4C16C0D1D2(L_8, L_7, ((int64_t)((int64_t)0)), /*hidden argument*/NULL); ((IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_StaticFields*)il2cpp_codegen_static_fields_for(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var))->set_IPv6Loopback_8(L_8); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_9 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)((int32_t)16)); IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_10 = (IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE *)il2cpp_codegen_object_new(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var); IPAddress__ctor_m1E185EFDA876C940958AF536535E2E4C16C0D1D2(L_10, L_9, ((int64_t)((int64_t)0)), /*hidden argument*/NULL); ((IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_StaticFields*)il2cpp_codegen_static_fields_for(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var))->set_IPv6None_9(L_10); 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.Net.Sockets.AddressFamily System.Net.IPEndPoint::get_AddressFamily() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IPEndPoint_get_AddressFamily_m3D6AC423AA5E8BEBEA8E3324D9BAC3A89A279127 (IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * __this, const RuntimeMethod* method) { { IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_0 = __this->get_m_Address_0(); NullCheck(L_0); int32_t L_1; L_1 = IPAddress_get_AddressFamily_m0554FC6CF1296D4C1456F3D73CB110E38634B24D_inline(L_0, /*hidden argument*/NULL); return L_1; } } // System.Void System.Net.IPEndPoint::.ctor(System.Net.IPAddress,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IPEndPoint__ctor_m22783A215BA0B38674F6A6CB6803804268561321 (IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * __this, IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * ___address0, int32_t ___port1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidationHelper_tA8573017039D4977E6C232B35AF6B1E51263E62A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { EndPoint__ctor_m128E616435E17A62A3DD7D0BC759FB0CF7F87C29(__this, /*hidden argument*/NULL); IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_0 = ___address0; if (L_0) { goto IL_0014; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8A577A5A6848BEDC7A1DBA1211A06E627EEF0057)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IPEndPoint__ctor_m22783A215BA0B38674F6A6CB6803804268561321_RuntimeMethod_var))); } IL_0014: { int32_t L_2 = ___port1; IL2CPP_RUNTIME_CLASS_INIT(ValidationHelper_tA8573017039D4977E6C232B35AF6B1E51263E62A_il2cpp_TypeInfo_var); bool L_3; L_3 = ValidationHelper_ValidateTcpPort_mC3E43EB25CB11FD1E24201705A66E50903A1893E(L_2, /*hidden argument*/NULL); if (L_3) { goto IL_0027; } } { ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_4 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral670E6E5CD786FBA46F50395F2FE281B1DF2C9985)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IPEndPoint__ctor_m22783A215BA0B38674F6A6CB6803804268561321_RuntimeMethod_var))); } IL_0027: { int32_t L_5 = ___port1; __this->set_m_Port_1(L_5); IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_6 = ___address0; __this->set_m_Address_0(L_6); return; } } // System.Net.IPAddress System.Net.IPEndPoint::get_Address() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * IPEndPoint_get_Address_mD98DD9465D2DE39A73DD098B79062DBCE15C2A95 (IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * __this, const RuntimeMethod* method) { { IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_0 = __this->get_m_Address_0(); return L_0; } } // System.Int32 System.Net.IPEndPoint::get_Port() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IPEndPoint_get_Port_m442D84417A9E8942514FFBB9714FEE6BD094C6C3 (IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_m_Port_1(); return L_0; } } // System.String System.Net.IPEndPoint::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IPEndPoint_ToString_mBFC4822326C1A86698C64FF3992CB295911866C5 (IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral64A1CC0A14BE815E808E471FD3FD53F985C73688); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAD6CD2C36915DEB6A18BCF0F46B294FC1D97072F); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; int32_t V_1 = 0; { IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_0 = __this->get_m_Address_0(); NullCheck(L_0); int32_t L_1; L_1 = IPAddress_get_AddressFamily_m0554FC6CF1296D4C1456F3D73CB110E38634B24D_inline(L_0, /*hidden argument*/NULL); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)23))))) { goto IL_0017; } } { V_0 = _stringLiteral64A1CC0A14BE815E808E471FD3FD53F985C73688; goto IL_001d; } IL_0017: { V_0 = _stringLiteralAD6CD2C36915DEB6A18BCF0F46B294FC1D97072F; } IL_001d: { String_t* L_2 = V_0; IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_3 = __this->get_m_Address_0(); NullCheck(L_3); String_t* L_4; L_4 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_3); int32_t L_5; L_5 = IPEndPoint_get_Port_m442D84417A9E8942514FFBB9714FEE6BD094C6C3_inline(__this, /*hidden argument*/NULL); V_1 = L_5; NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * L_6; L_6 = NumberFormatInfo_get_InvariantInfo_m286BBD095BFCA546BD2CD67E856D1A205436C03F(/*hidden argument*/NULL); String_t* L_7; L_7 = Int32_ToString_m027A8C9419D2FE56ED5D2EE42A6F3B3CE0130471((int32_t*)(&V_1), L_6, /*hidden argument*/NULL); String_t* L_8; L_8 = String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66(L_2, L_4, L_7, /*hidden argument*/NULL); return L_8; } } // System.Net.SocketAddress System.Net.IPEndPoint::Serialize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * IPEndPoint_Serialize_m6DCCD4B0D381396E0E7638C240167A2A8B0EC585 (IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SocketAddress_tE8FA33C91254662406767AF97518C235382742D3_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_0; L_0 = IPEndPoint_get_Address_mD98DD9465D2DE39A73DD098B79062DBCE15C2A95_inline(__this, /*hidden argument*/NULL); int32_t L_1; L_1 = IPEndPoint_get_Port_m442D84417A9E8942514FFBB9714FEE6BD094C6C3_inline(__this, /*hidden argument*/NULL); SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * L_2 = (SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 *)il2cpp_codegen_object_new(SocketAddress_tE8FA33C91254662406767AF97518C235382742D3_il2cpp_TypeInfo_var); SocketAddress__ctor_m9738A4ADE5808D768AE732070C89F7ABA6BED994(L_2, L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Net.EndPoint System.Net.IPEndPoint::Create(System.Net.SocketAddress) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA * IPEndPoint_Create_m807F89A5752C1E5F09D1AB32F6E60D243F06398A (IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * __this, SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * ___socketAddress0, const RuntimeMethod* method) { int32_t V_0 = 0; { SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * L_0 = ___socketAddress0; NullCheck(L_0); int32_t L_1; L_1 = SocketAddress_get_Family_m415D59360C9C2E480D2D98775983A573CCD9D7E0(L_0, /*hidden argument*/NULL); int32_t L_2; L_2 = VirtualFuncInvoker0< int32_t >::Invoke(4 /* System.Net.Sockets.AddressFamily System.Net.EndPoint::get_AddressFamily() */, __this); if ((((int32_t)L_1) == ((int32_t)L_2))) { goto IL_0065; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)3); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = L_3; SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * L_5 = ___socketAddress0; NullCheck(L_5); int32_t L_6; L_6 = SocketAddress_get_Family_m415D59360C9C2E480D2D98775983A573CCD9D7E0(L_5, /*hidden argument*/NULL); V_0 = L_6; RuntimeObject * L_7 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AddressFamily_tFCF4C888B95C069AB2D4720EC8C2E19453C28B33_il2cpp_TypeInfo_var)), (&V_0)); NullCheck(L_7); String_t* L_8; L_8 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_7); V_0 = *(int32_t*)UnBox(L_7); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_8); (L_4)->SetAt(static_cast(0), (RuntimeObject *)L_8); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_9 = L_4; Type_t * L_10; L_10 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(__this, /*hidden argument*/NULL); NullCheck(L_10); String_t* L_11; L_11 = VirtualFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_FullName() */, L_10); NullCheck(L_9); ArrayElementTypeCheck (L_9, L_11); (L_9)->SetAt(static_cast(1), (RuntimeObject *)L_11); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_12 = L_9; int32_t L_13; L_13 = VirtualFuncInvoker0< int32_t >::Invoke(4 /* System.Net.Sockets.AddressFamily System.Net.EndPoint::get_AddressFamily() */, __this); V_0 = L_13; RuntimeObject * L_14 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AddressFamily_tFCF4C888B95C069AB2D4720EC8C2E19453C28B33_il2cpp_TypeInfo_var)), (&V_0)); NullCheck(L_14); String_t* L_15; L_15 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_14); V_0 = *(int32_t*)UnBox(L_14); NullCheck(L_12); ArrayElementTypeCheck (L_12, L_15); (L_12)->SetAt(static_cast(2), (RuntimeObject *)L_15); String_t* L_16; L_16 = SR_GetString_m4FFAF18248A54C5B67E4760C5ED4869A87BCAD7F(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3F4E772B539D89657FE7C8DE5DCFDCCC33401EA6)), L_12, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_17 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_17, L_16, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE4280A9011623CB92DF86175E613B75250F81A53)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IPEndPoint_Create_m807F89A5752C1E5F09D1AB32F6E60D243F06398A_RuntimeMethod_var))); } IL_0065: { SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * L_18 = ___socketAddress0; NullCheck(L_18); int32_t L_19; L_19 = SocketAddress_get_Size_m6383C5C4F9200464ACB6D583020F81019602CFA4_inline(L_18, /*hidden argument*/NULL); if ((((int32_t)L_19) >= ((int32_t)8))) { goto IL_00a5; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_20 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)2); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_21 = L_20; SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * L_22 = ___socketAddress0; NullCheck(L_22); Type_t * L_23; L_23 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_22, /*hidden argument*/NULL); NullCheck(L_23); String_t* L_24; L_24 = VirtualFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_FullName() */, L_23); NullCheck(L_21); ArrayElementTypeCheck (L_21, L_24); (L_21)->SetAt(static_cast(0), (RuntimeObject *)L_24); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_25 = L_21; Type_t * L_26; L_26 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(__this, /*hidden argument*/NULL); NullCheck(L_26); String_t* L_27; L_27 = VirtualFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_FullName() */, L_26); NullCheck(L_25); ArrayElementTypeCheck (L_25, L_27); (L_25)->SetAt(static_cast(1), (RuntimeObject *)L_27); String_t* L_28; L_28 = SR_GetString_m4FFAF18248A54C5B67E4760C5ED4869A87BCAD7F(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7C64C2A3947DAB88AA0DB90DD2C01CFEFC41622A)), L_25, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_29 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_29, L_28, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE4280A9011623CB92DF86175E613B75250F81A53)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IPEndPoint_Create_m807F89A5752C1E5F09D1AB32F6E60D243F06398A_RuntimeMethod_var))); } IL_00a5: { SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * L_30 = ___socketAddress0; NullCheck(L_30); IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * L_31; L_31 = SocketAddress_GetIPEndPoint_m251711A31597B8B2702F9212292CB699B84771AE(L_30, /*hidden argument*/NULL); return L_31; } } // System.Boolean System.Net.IPEndPoint::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPEndPoint_Equals_m2F4B8B1F77EBFAA516EE1B6AB75836C928682EBE (IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * __this, RuntimeObject * ___comparand0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___comparand0; if (((IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E *)IsInstClass((RuntimeObject*)L_0, IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E_il2cpp_TypeInfo_var))) { goto IL_000a; } } { return (bool)0; } IL_000a: { RuntimeObject * L_1 = ___comparand0; NullCheck(((IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E *)CastclassClass((RuntimeObject*)L_1, IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E_il2cpp_TypeInfo_var))); IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_2 = ((IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E *)CastclassClass((RuntimeObject*)L_1, IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E_il2cpp_TypeInfo_var))->get_m_Address_0(); IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_3 = __this->get_m_Address_0(); NullCheck(L_2); bool L_4; L_4 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_2, L_3); if (!L_4) { goto IL_0036; } } { RuntimeObject * L_5 = ___comparand0; NullCheck(((IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E *)CastclassClass((RuntimeObject*)L_5, IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E_il2cpp_TypeInfo_var))); int32_t L_6 = ((IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E *)CastclassClass((RuntimeObject*)L_5, IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E_il2cpp_TypeInfo_var))->get_m_Port_1(); int32_t L_7 = __this->get_m_Port_1(); return (bool)((((int32_t)L_6) == ((int32_t)L_7))? 1 : 0); } IL_0036: { return (bool)0; } } // System.Int32 System.Net.IPEndPoint::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IPEndPoint_GetHashCode_m02C37BD0E617B964B02EB2F19F0F7CA1A337C3A0 (IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * __this, const RuntimeMethod* method) { { IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_0 = __this->get_m_Address_0(); NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_0); int32_t L_2 = __this->get_m_Port_1(); return ((int32_t)((int32_t)L_1^(int32_t)L_2)); } } // System.Void System.Net.IPEndPoint::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IPEndPoint__cctor_mE4AD7BE573E78C661DED5F5E32A2D8AE18A487D2 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var); IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_0 = ((IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_StaticFields*)il2cpp_codegen_static_fields_for(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var))->get_Any_0(); IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * L_1 = (IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E *)il2cpp_codegen_object_new(IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E_il2cpp_TypeInfo_var); IPEndPoint__ctor_m22783A215BA0B38674F6A6CB6803804268561321(L_1, L_0, 0, /*hidden argument*/NULL); ((IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E_StaticFields*)il2cpp_codegen_static_fields_for(IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E_il2cpp_TypeInfo_var))->set_Any_2(L_1); IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_2 = ((IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_StaticFields*)il2cpp_codegen_static_fields_for(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var))->get_IPv6Any_7(); IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * L_3 = (IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E *)il2cpp_codegen_object_new(IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E_il2cpp_TypeInfo_var); IPEndPoint__ctor_m22783A215BA0B38674F6A6CB6803804268561321(L_3, L_2, 0, /*hidden argument*/NULL); ((IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E_StaticFields*)il2cpp_codegen_static_fields_for(IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E_il2cpp_TypeInfo_var))->set_IPv6Any_3(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.Boolean System.Net.NetworkInformation.IPGlobalProperties::get_PlatformNeedsLibCWorkaround() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPGlobalProperties_get_PlatformNeedsLibCWorkaround_mD92D7B020F50C61F32749C6FA712E9678777A56C (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPGlobalProperties_tD2935E387BBC03382D35AD2B6288214CAB4095C5_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { bool L_0 = ((IPGlobalProperties_tD2935E387BBC03382D35AD2B6288214CAB4095C5_StaticFields*)il2cpp_codegen_static_fields_for(IPGlobalProperties_tD2935E387BBC03382D35AD2B6288214CAB4095C5_il2cpp_TypeInfo_var))->get_U3CPlatformNeedsLibCWorkaroundU3Ek__BackingField_0(); return L_0; } } // System.Net.NetworkInformation.IPGlobalProperties System.Net.NetworkInformation.IPGlobalProperties::GetIPGlobalProperties() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IPGlobalProperties_tD2935E387BBC03382D35AD2B6288214CAB4095C5 * IPGlobalProperties_GetIPGlobalProperties_m0A1551F6E8ED8083D6561AF637B4EC238D98A295 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MibIPGlobalProperties_t3722DFB852035FAEC93E9F5FDFE3D163653B666B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnixIPGlobalProperties_t17A56352BFACD974A0828F84CA3424941E39B021_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnixNoLibCIPGlobalProperties_t502C0D31B2B758E43415DE9EAEB6A24B3924355F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Win32IPGlobalProperties_t44A5F09048FBAA07204FDF98BE8588D70CCBF9F5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4C73B4EBCE2572719BE753027EB684EE61C02458); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8D741E622C4D977E4E5FB7052339BF32755CA0EE); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; MibIPGlobalProperties_t3722DFB852035FAEC93E9F5FDFE3D163653B666B * V_1 = NULL; { OperatingSystem_tBB911FE4834884FD79AF78F2B07C19B938491463 * L_0; L_0 = Environment_get_OSVersion_m9C59BAF537F0A8B51ABC3BEE212F08DCC498F64E(/*hidden argument*/NULL); NullCheck(L_0); int32_t L_1; L_1 = OperatingSystem_get_Platform_m1E43B8C2B6CCDD74474E9AB9CF4EF7445D8BE1DF_inline(L_0, /*hidden argument*/NULL); V_0 = L_1; int32_t L_2 = V_0; if ((!(((uint32_t)L_2) == ((uint32_t)4)))) { goto IL_0070; } } { bool L_3; L_3 = il2cpp_codegen_platform_disable_libc_pinvoke(); if (!L_3) { goto IL_001c; } } { UnixNoLibCIPGlobalProperties_t502C0D31B2B758E43415DE9EAEB6A24B3924355F * L_4 = (UnixNoLibCIPGlobalProperties_t502C0D31B2B758E43415DE9EAEB6A24B3924355F *)il2cpp_codegen_object_new(UnixNoLibCIPGlobalProperties_t502C0D31B2B758E43415DE9EAEB6A24B3924355F_il2cpp_TypeInfo_var); UnixNoLibCIPGlobalProperties__ctor_mB8161FF612E1613FC30AFA5CAA97C5E368C66291(L_4, /*hidden argument*/NULL); return L_4; } IL_001c: { V_1 = (MibIPGlobalProperties_t3722DFB852035FAEC93E9F5FDFE3D163653B666B *)NULL; bool L_5; L_5 = Directory_Exists_m17E38B91F6D9A0064D614FF2237BBFC0127468FE(_stringLiteral4C73B4EBCE2572719BE753027EB684EE61C02458, /*hidden argument*/NULL); if (!L_5) { goto IL_0044; } } { MibIPGlobalProperties_t3722DFB852035FAEC93E9F5FDFE3D163653B666B * L_6 = (MibIPGlobalProperties_t3722DFB852035FAEC93E9F5FDFE3D163653B666B *)il2cpp_codegen_object_new(MibIPGlobalProperties_t3722DFB852035FAEC93E9F5FDFE3D163653B666B_il2cpp_TypeInfo_var); MibIPGlobalProperties__ctor_m64009FA9C2EDC7E97A8BFDADD97F30699037CAA6(L_6, _stringLiteral4C73B4EBCE2572719BE753027EB684EE61C02458, /*hidden argument*/NULL); V_1 = L_6; MibIPGlobalProperties_t3722DFB852035FAEC93E9F5FDFE3D163653B666B * L_7 = V_1; NullCheck(L_7); String_t* L_8 = L_7->get_StatisticsFile_1(); bool L_9; L_9 = File_Exists_mDAEBF2732BC830270FD98346F069B04E97BB1D5B(L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_0044; } } { MibIPGlobalProperties_t3722DFB852035FAEC93E9F5FDFE3D163653B666B * L_10 = V_1; return L_10; } IL_0044: { bool L_11; L_11 = Directory_Exists_m17E38B91F6D9A0064D614FF2237BBFC0127468FE(_stringLiteral8D741E622C4D977E4E5FB7052339BF32755CA0EE, /*hidden argument*/NULL); if (!L_11) { goto IL_006a; } } { MibIPGlobalProperties_t3722DFB852035FAEC93E9F5FDFE3D163653B666B * L_12 = (MibIPGlobalProperties_t3722DFB852035FAEC93E9F5FDFE3D163653B666B *)il2cpp_codegen_object_new(MibIPGlobalProperties_t3722DFB852035FAEC93E9F5FDFE3D163653B666B_il2cpp_TypeInfo_var); MibIPGlobalProperties__ctor_m64009FA9C2EDC7E97A8BFDADD97F30699037CAA6(L_12, _stringLiteral8D741E622C4D977E4E5FB7052339BF32755CA0EE, /*hidden argument*/NULL); V_1 = L_12; MibIPGlobalProperties_t3722DFB852035FAEC93E9F5FDFE3D163653B666B * L_13 = V_1; NullCheck(L_13); String_t* L_14 = L_13->get_StatisticsFile_1(); bool L_15; L_15 = File_Exists_mDAEBF2732BC830270FD98346F069B04E97BB1D5B(L_14, /*hidden argument*/NULL); if (!L_15) { goto IL_006a; } } { MibIPGlobalProperties_t3722DFB852035FAEC93E9F5FDFE3D163653B666B * L_16 = V_1; return L_16; } IL_006a: { UnixIPGlobalProperties_t17A56352BFACD974A0828F84CA3424941E39B021 * L_17 = (UnixIPGlobalProperties_t17A56352BFACD974A0828F84CA3424941E39B021 *)il2cpp_codegen_object_new(UnixIPGlobalProperties_t17A56352BFACD974A0828F84CA3424941E39B021_il2cpp_TypeInfo_var); UnixIPGlobalProperties__ctor_mF2ADB564F94ABCB20CB71DDE34FAB070BA12A868(L_17, /*hidden argument*/NULL); return L_17; } IL_0070: { Win32IPGlobalProperties_t44A5F09048FBAA07204FDF98BE8588D70CCBF9F5 * L_18 = (Win32IPGlobalProperties_t44A5F09048FBAA07204FDF98BE8588D70CCBF9F5 *)il2cpp_codegen_object_new(Win32IPGlobalProperties_t44A5F09048FBAA07204FDF98BE8588D70CCBF9F5_il2cpp_TypeInfo_var); Win32IPGlobalProperties__ctor_m7D031774BB16D9BF7096D7CC6B44AED107B31484(L_18, /*hidden argument*/NULL); return L_18; } } // System.Net.NetworkInformation.IPGlobalProperties System.Net.NetworkInformation.IPGlobalProperties::InternalGetIPGlobalProperties() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IPGlobalProperties_tD2935E387BBC03382D35AD2B6288214CAB4095C5 * IPGlobalProperties_InternalGetIPGlobalProperties_mBA1CDC09A6DED024BEC95072550E7205C0504545 (const RuntimeMethod* method) { { IPGlobalProperties_tD2935E387BBC03382D35AD2B6288214CAB4095C5 * L_0; L_0 = IPGlobalProperties_GetIPGlobalProperties_m0A1551F6E8ED8083D6561AF637B4EC238D98A295(/*hidden argument*/NULL); return L_0; } } // System.Void System.Net.NetworkInformation.IPGlobalProperties::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IPGlobalProperties__ctor_mEEE47DACD96438BCDF67877A3E2F0D3A592C2977 (IPGlobalProperties_tD2935E387BBC03382D35AD2B6288214CAB4095C5 * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.String System.Net.IPHostEntry::get_HostName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IPHostEntry_get_HostName_m93399E3B7017D91869B47746BD9EDF74BF347FD1 (IPHostEntry_tD787E3A1E0F633AC5A7761921DE4DC2A8EA117AA * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_hostName_0(); return L_0; } } // System.Void System.Net.IPHostEntry::set_HostName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IPHostEntry_set_HostName_mDAF37AF72EB14AC6C63DE863DAF1C71E7DA2AA21 (IPHostEntry_tD787E3A1E0F633AC5A7761921DE4DC2A8EA117AA * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->set_hostName_0(L_0); return; } } // System.Void System.Net.IPHostEntry::set_Aliases(System.String[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IPHostEntry_set_Aliases_mBEA9E40249BEC29743421885964A0A76A9D34BB4 (IPHostEntry_tD787E3A1E0F633AC5A7761921DE4DC2A8EA117AA * __this, StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___value0, const RuntimeMethod* method) { { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_0 = ___value0; __this->set_aliases_1(L_0); return; } } // System.Net.IPAddress[] System.Net.IPHostEntry::get_AddressList() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IPAddressU5BU5D_tCB5D2302BEB72DDB30825F9EF457D39EEA5001EB* IPHostEntry_get_AddressList_m466AC33C136531F42A5EDCD3A75E5B392075186F (IPHostEntry_tD787E3A1E0F633AC5A7761921DE4DC2A8EA117AA * __this, const RuntimeMethod* method) { { IPAddressU5BU5D_tCB5D2302BEB72DDB30825F9EF457D39EEA5001EB* L_0 = __this->get_addressList_2(); return L_0; } } // System.Void System.Net.IPHostEntry::set_AddressList(System.Net.IPAddress[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IPHostEntry_set_AddressList_m5D661027187141E20D78AE4795EA8DABA42BEF38 (IPHostEntry_tD787E3A1E0F633AC5A7761921DE4DC2A8EA117AA * __this, IPAddressU5BU5D_tCB5D2302BEB72DDB30825F9EF457D39EEA5001EB* ___value0, const RuntimeMethod* method) { { IPAddressU5BU5D_tCB5D2302BEB72DDB30825F9EF457D39EEA5001EB* L_0 = ___value0; __this->set_addressList_2(L_0); return; } } // System.Void System.Net.IPHostEntry::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IPHostEntry__ctor_mE110DE1F81AC6E1174418A6EE3C266E60BD06B9A (IPHostEntry_tD787E3A1E0F633AC5A7761921DE4DC2A8EA117AA * __this, const RuntimeMethod* method) { { __this->set_isTrustedHost_3((bool)1); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #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.IPv4AddressHelper::ParseCanonicalName(System.String,System.Int32,System.Int32,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IPv4AddressHelper_ParseCanonicalName_m4237845A3AFA554557BEC618AB11D5EF7A18C2BB (String_t* ___str0, int32_t ___start1, int32_t ___end2, bool* ___isLoopback3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D); s_Il2CppMethodInitialized = true; } uint8_t* V_0 = NULL; { int8_t* L_0 = (int8_t*) alloca(((uintptr_t)4)); memset(L_0, 0, ((uintptr_t)4)); V_0 = (uint8_t*)(L_0); bool* L_1 = ___isLoopback3; String_t* L_2 = ___str0; uint8_t* L_3 = V_0; int32_t L_4 = ___start1; int32_t L_5 = ___end2; bool L_6; L_6 = IPv4AddressHelper_Parse_m9B4CB7935241AA6DC67171684E19AF8190364768(L_2, (uint8_t*)(uint8_t*)L_3, L_4, L_5, /*hidden argument*/NULL); *((int8_t*)L_1) = (int8_t)L_6; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_7 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)7); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_8 = L_7; uint8_t* L_9 = V_0; int32_t L_10 = *((uint8_t*)L_9); uint8_t L_11 = ((uint8_t)L_10); RuntimeObject * L_12 = Box(Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_il2cpp_TypeInfo_var, &L_11); NullCheck(L_8); ArrayElementTypeCheck (L_8, L_12); (L_8)->SetAt(static_cast(0), (RuntimeObject *)L_12); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_13 = L_8; NullCheck(L_13); ArrayElementTypeCheck (L_13, _stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D); (L_13)->SetAt(static_cast(1), (RuntimeObject *)_stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_14 = L_13; uint8_t* L_15 = V_0; int32_t L_16 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_15, (int32_t)1))); uint8_t L_17 = ((uint8_t)L_16); RuntimeObject * L_18 = Box(Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_il2cpp_TypeInfo_var, &L_17); NullCheck(L_14); ArrayElementTypeCheck (L_14, L_18); (L_14)->SetAt(static_cast(2), (RuntimeObject *)L_18); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_19 = L_14; NullCheck(L_19); ArrayElementTypeCheck (L_19, _stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D); (L_19)->SetAt(static_cast(3), (RuntimeObject *)_stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_20 = L_19; uint8_t* L_21 = V_0; int32_t L_22 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_21, (int32_t)2))); uint8_t L_23 = ((uint8_t)L_22); RuntimeObject * L_24 = Box(Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_il2cpp_TypeInfo_var, &L_23); NullCheck(L_20); ArrayElementTypeCheck (L_20, L_24); (L_20)->SetAt(static_cast(4), (RuntimeObject *)L_24); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_25 = L_20; NullCheck(L_25); ArrayElementTypeCheck (L_25, _stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D); (L_25)->SetAt(static_cast(5), (RuntimeObject *)_stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_26 = L_25; uint8_t* L_27 = V_0; int32_t L_28 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_27, (int32_t)3))); uint8_t L_29 = ((uint8_t)L_28); RuntimeObject * L_30 = Box(Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_il2cpp_TypeInfo_var, &L_29); NullCheck(L_26); ArrayElementTypeCheck (L_26, L_30); (L_26)->SetAt(static_cast(6), (RuntimeObject *)L_30); String_t* L_31; L_31 = String_Concat_m6F0ED62933448F8B944E52872E1EE86F6705D306(L_26, /*hidden argument*/NULL); return L_31; } } // System.Int32 System.IPv4AddressHelper::ParseHostNumber(System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IPv4AddressHelper_ParseHostNumber_mA0B8E60CD5047E9A4276CB424C028F070240D29E (String_t* ___str0, int32_t ___start1, int32_t ___end2, const RuntimeMethod* method) { uint8_t* V_0 = NULL; { int8_t* L_0 = (int8_t*) alloca(((uintptr_t)4)); memset(L_0, 0, ((uintptr_t)4)); V_0 = (uint8_t*)(L_0); String_t* L_1 = ___str0; uint8_t* L_2 = V_0; int32_t L_3 = ___start1; int32_t L_4 = ___end2; bool L_5; L_5 = IPv4AddressHelper_ParseCanonical_mEDA5683F6AC98D0C403C60B16C2F859590A653AA(L_1, (uint8_t*)(uint8_t*)L_2, L_3, L_4, /*hidden argument*/NULL); uint8_t* L_6 = V_0; int32_t L_7 = *((uint8_t*)L_6); uint8_t* L_8 = V_0; int32_t L_9 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_8, (int32_t)1))); uint8_t* L_10 = V_0; int32_t L_11 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_10, (int32_t)2))); uint8_t* L_12 = V_0; int32_t L_13 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_12, (int32_t)3))); return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)L_7<<(int32_t)((int32_t)24))), (int32_t)((int32_t)((int32_t)L_9<<(int32_t)((int32_t)16))))), (int32_t)((int32_t)((int32_t)L_11<<(int32_t)8)))), (int32_t)L_13)); } } // System.Boolean System.IPv4AddressHelper::IsValid(System.Char*,System.Int32,System.Int32&,System.Boolean,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPv4AddressHelper_IsValid_m6CAD01230EC033CB8F4ABB645327065A56E2ED7D (Il2CppChar* ___name0, int32_t ___start1, int32_t* ___end2, bool ___allowIPv63, bool ___notImplicitFile4, bool ___unknownScheme5, const RuntimeMethod* method) { { bool L_0 = ___allowIPv63; bool L_1 = ___unknownScheme5; if (!((int32_t)((int32_t)L_0|(int32_t)L_1))) { goto IL_0012; } } { Il2CppChar* L_2 = ___name0; int32_t L_3 = ___start1; int32_t* L_4 = ___end2; bool L_5 = ___allowIPv63; bool L_6 = ___notImplicitFile4; bool L_7; L_7 = IPv4AddressHelper_IsValidCanonical_mCB1804B552E1977E9F89B1A912B2969A73DEB0C7((Il2CppChar*)(Il2CppChar*)L_2, L_3, (int32_t*)L_4, L_5, L_6, /*hidden argument*/NULL); return L_7; } IL_0012: { Il2CppChar* L_8 = ___name0; int32_t L_9 = ___start1; int32_t* L_10 = ___end2; bool L_11 = ___notImplicitFile4; int64_t L_12; L_12 = IPv4AddressHelper_ParseNonCanonical_mE2C4832ED252F3CE61B73DBE25B4959568E2FE31((Il2CppChar*)(Il2CppChar*)L_8, L_9, (int32_t*)L_10, L_11, /*hidden argument*/NULL); return (bool)((((int32_t)((((int64_t)L_12) == ((int64_t)((int64_t)((int64_t)(-1)))))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.IPv4AddressHelper::IsValidCanonical(System.Char*,System.Int32,System.Int32&,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPv4AddressHelper_IsValidCanonical_mCB1804B552E1977E9F89B1A912B2969A73DEB0C7 (Il2CppChar* ___name0, int32_t ___start1, int32_t* ___end2, bool ___allowIPv63, bool ___notImplicitFile4, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; bool V_2 = false; bool V_3 = false; Il2CppChar V_4 = 0x0; int32_t G_B32_0 = 0; int32_t G_B31_0 = 0; { V_0 = 0; V_1 = 0; V_2 = (bool)0; V_3 = (bool)0; goto IL_00d0; } IL_000d: { Il2CppChar* L_0 = ___name0; int32_t L_1 = ___start1; int32_t L_2 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_1), (int32_t)2))))); V_4 = L_2; bool L_3 = ___allowIPv63; if (!L_3) { goto IL_0036; } } { Il2CppChar L_4 = V_4; if ((((int32_t)L_4) == ((int32_t)((int32_t)93)))) { goto IL_00d8; } } { Il2CppChar L_5 = V_4; if ((((int32_t)L_5) == ((int32_t)((int32_t)47)))) { goto IL_00d8; } } { Il2CppChar L_6 = V_4; if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)37))))) { goto IL_0061; } } { goto IL_00d8; } IL_0036: { Il2CppChar L_7 = V_4; if ((((int32_t)L_7) == ((int32_t)((int32_t)47)))) { goto IL_00d8; } } { Il2CppChar L_8 = V_4; if ((((int32_t)L_8) == ((int32_t)((int32_t)92)))) { goto IL_00d8; } } { bool L_9 = ___notImplicitFile4; if (!L_9) { goto IL_0061; } } { Il2CppChar L_10 = V_4; if ((((int32_t)L_10) == ((int32_t)((int32_t)58)))) { goto IL_00d8; } } { Il2CppChar L_11 = V_4; if ((((int32_t)L_11) == ((int32_t)((int32_t)63)))) { goto IL_00d8; } } { Il2CppChar L_12 = V_4; if ((((int32_t)L_12) == ((int32_t)((int32_t)35)))) { goto IL_00d8; } } IL_0061: { Il2CppChar L_13 = V_4; if ((((int32_t)L_13) > ((int32_t)((int32_t)57)))) { goto IL_00aa; } } { Il2CppChar L_14 = V_4; if ((((int32_t)L_14) < ((int32_t)((int32_t)48)))) { goto IL_00aa; } } { bool L_15 = V_2; if (L_15) { goto IL_008e; } } { Il2CppChar L_16 = V_4; if ((!(((uint32_t)L_16) == ((uint32_t)((int32_t)48))))) { goto IL_008e; } } { int32_t L_17 = ___start1; int32_t* L_18 = ___end2; int32_t L_19 = *((int32_t*)L_18); if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))) >= ((int32_t)L_19))) { goto IL_008c; } } { Il2CppChar* L_20 = ___name0; int32_t L_21 = ___start1; int32_t L_22 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_20, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1))), (int32_t)2))))); if ((!(((uint32_t)L_22) == ((uint32_t)((int32_t)48))))) { goto IL_008c; } } { return (bool)0; } IL_008c: { V_3 = (bool)1; } IL_008e: { V_2 = (bool)1; int32_t L_23 = V_1; Il2CppChar* L_24 = ___name0; int32_t L_25 = ___start1; int32_t L_26 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_24, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_25), (int32_t)2))))); V_1 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_23, (int32_t)((int32_t)10))), (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_26, (int32_t)((int32_t)48))))); int32_t L_27 = V_1; if ((((int32_t)L_27) <= ((int32_t)((int32_t)255)))) { goto IL_00cb; } } { return (bool)0; } IL_00aa: { Il2CppChar L_28 = V_4; if ((!(((uint32_t)L_28) == ((uint32_t)((int32_t)46))))) { goto IL_00c9; } } { bool L_29 = V_2; if (!L_29) { goto IL_00bb; } } { int32_t L_30 = V_1; bool L_31 = V_3; if (!((int32_t)((int32_t)((((int32_t)L_30) > ((int32_t)0))? 1 : 0)&(int32_t)L_31))) { goto IL_00bd; } } IL_00bb: { return (bool)0; } IL_00bd: { int32_t L_32 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1)); V_2 = (bool)0; V_1 = 0; V_3 = (bool)0; goto IL_00cb; } IL_00c9: { return (bool)0; } IL_00cb: { int32_t L_33 = ___start1; ___start1 = ((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1)); } IL_00d0: { int32_t L_34 = ___start1; int32_t* L_35 = ___end2; int32_t L_36 = *((int32_t*)L_35); if ((((int32_t)L_34) < ((int32_t)L_36))) { goto IL_000d; } } IL_00d8: { int32_t L_37 = V_0; bool L_38 = V_2; int32_t L_39 = ((int32_t)((int32_t)((((int32_t)L_37) == ((int32_t)3))? 1 : 0)&(int32_t)L_38)); G_B31_0 = L_39; if (!L_39) { G_B32_0 = L_39; goto IL_00e4; } } { int32_t* L_40 = ___end2; int32_t L_41 = ___start1; *((int32_t*)L_40) = (int32_t)L_41; G_B32_0 = G_B31_0; } IL_00e4: { return (bool)G_B32_0; } } // System.Int64 System.IPv4AddressHelper::ParseNonCanonical(System.Char*,System.Int32,System.Int32&,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t IPv4AddressHelper_ParseNonCanonical_mE2C4832ED252F3CE61B73DBE25B4959568E2FE31 (Il2CppChar* ___name0, int32_t ___start1, int32_t* ___end2, bool ___notImplicitFile3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; Il2CppChar V_1 = 0x0; Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* V_2 = NULL; int64_t V_3 = 0; bool V_4 = false; int32_t V_5 = 0; int32_t V_6 = 0; int32_t V_7 = 0; { V_0 = ((int32_t)10); Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* L_0 = (Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6*)(Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6*)SZArrayNew(Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6_il2cpp_TypeInfo_var, (uint32_t)4); V_2 = L_0; V_3 = ((int64_t)((int64_t)0)); V_4 = (bool)0; V_5 = 0; int32_t L_1 = ___start1; V_6 = L_1; goto IL_0138; } IL_001b: { Il2CppChar* L_2 = ___name0; int32_t L_3 = V_6; int32_t L_4 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_2, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_3), (int32_t)2))))); V_1 = L_4; V_3 = ((int64_t)((int64_t)0)); V_0 = ((int32_t)10); Il2CppChar L_5 = V_1; if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)48))))) { goto IL_00f4; } } { V_0 = 8; int32_t L_6 = V_6; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)); V_4 = (bool)1; int32_t L_7 = V_6; int32_t* L_8 = ___end2; int32_t L_9 = *((int32_t*)L_8); if ((((int32_t)L_7) >= ((int32_t)L_9))) { goto IL_00f4; } } { Il2CppChar* L_10 = ___name0; int32_t L_11 = V_6; int32_t L_12 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_10, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_11), (int32_t)2))))); V_1 = L_12; Il2CppChar L_13 = V_1; if ((((int32_t)L_13) == ((int32_t)((int32_t)120)))) { goto IL_005c; } } { Il2CppChar L_14 = V_1; if ((!(((uint32_t)L_14) == ((uint32_t)((int32_t)88))))) { goto IL_00f4; } } IL_005c: { V_0 = ((int32_t)16); int32_t L_15 = V_6; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); V_4 = (bool)0; goto IL_00f4; } IL_006d: { Il2CppChar* L_16 = ___name0; int32_t L_17 = V_6; int32_t L_18 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_16, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_17), (int32_t)2))))); V_1 = L_18; int32_t L_19 = V_0; if ((((int32_t)L_19) == ((int32_t)((int32_t)10)))) { goto IL_0080; } } { int32_t L_20 = V_0; if ((!(((uint32_t)L_20) == ((uint32_t)((int32_t)16))))) { goto IL_0092; } } IL_0080: { Il2CppChar L_21 = V_1; if ((((int32_t)((int32_t)48)) > ((int32_t)L_21))) { goto IL_0092; } } { Il2CppChar L_22 = V_1; if ((((int32_t)L_22) > ((int32_t)((int32_t)57)))) { goto IL_0092; } } { Il2CppChar L_23 = V_1; V_7 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_23, (int32_t)((int32_t)48))); goto IL_00da; } IL_0092: { int32_t L_24 = V_0; if ((!(((uint32_t)L_24) == ((uint32_t)8)))) { goto IL_00a8; } } { Il2CppChar L_25 = V_1; if ((((int32_t)((int32_t)48)) > ((int32_t)L_25))) { goto IL_00a8; } } { Il2CppChar L_26 = V_1; if ((((int32_t)L_26) > ((int32_t)((int32_t)55)))) { goto IL_00a8; } } { Il2CppChar L_27 = V_1; V_7 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)((int32_t)48))); goto IL_00da; } IL_00a8: { int32_t L_28 = V_0; if ((!(((uint32_t)L_28) == ((uint32_t)((int32_t)16))))) { goto IL_00c2; } } { Il2CppChar L_29 = V_1; if ((((int32_t)((int32_t)97)) > ((int32_t)L_29))) { goto IL_00c2; } } { Il2CppChar L_30 = V_1; if ((((int32_t)L_30) > ((int32_t)((int32_t)102)))) { goto IL_00c2; } } { Il2CppChar L_31 = V_1; V_7 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)((int32_t)10))), (int32_t)((int32_t)97))); goto IL_00da; } IL_00c2: { int32_t L_32 = V_0; if ((!(((uint32_t)L_32) == ((uint32_t)((int32_t)16))))) { goto IL_00fd; } } { Il2CppChar L_33 = V_1; if ((((int32_t)((int32_t)65)) > ((int32_t)L_33))) { goto IL_00fd; } } { Il2CppChar L_34 = V_1; if ((((int32_t)L_34) > ((int32_t)((int32_t)70)))) { goto IL_00fd; } } { Il2CppChar L_35 = V_1; V_7 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)((int32_t)10))), (int32_t)((int32_t)65))); } IL_00da: { int64_t L_36 = V_3; int32_t L_37 = V_0; int32_t L_38 = V_7; V_3 = ((int64_t)il2cpp_codegen_add((int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)L_36, (int64_t)((int64_t)((int64_t)L_37)))), (int64_t)((int64_t)((int64_t)L_38)))); int64_t L_39 = V_3; if ((((int64_t)L_39) <= ((int64_t)((int64_t)((uint64_t)((uint32_t)((uint32_t)(-1)))))))) { goto IL_00eb; } } { return ((int64_t)((int64_t)(-1))); } IL_00eb: { V_4 = (bool)1; int32_t L_40 = V_6; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_40, (int32_t)1)); } IL_00f4: { int32_t L_41 = V_6; int32_t* L_42 = ___end2; int32_t L_43 = *((int32_t*)L_42); if ((((int32_t)L_41) < ((int32_t)L_43))) { goto IL_006d; } } IL_00fd: { int32_t L_44 = V_6; int32_t* L_45 = ___end2; int32_t L_46 = *((int32_t*)L_45); if ((((int32_t)L_44) >= ((int32_t)L_46))) { goto IL_0141; } } { Il2CppChar* L_47 = ___name0; int32_t L_48 = V_6; int32_t L_49 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_47, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_48), (int32_t)2))))); if ((!(((uint32_t)L_49) == ((uint32_t)((int32_t)46))))) { goto IL_0141; } } { int32_t L_50 = V_5; if ((((int32_t)L_50) >= ((int32_t)3))) { goto IL_0121; } } { bool L_51 = V_4; if (!L_51) { goto IL_0121; } } { int64_t L_52 = V_3; if ((((int64_t)L_52) <= ((int64_t)((int64_t)((int64_t)((int32_t)255)))))) { goto IL_0124; } } IL_0121: { return ((int64_t)((int64_t)(-1))); } IL_0124: { Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* L_53 = V_2; int32_t L_54 = V_5; int64_t L_55 = V_3; NullCheck(L_53); (L_53)->SetAt(static_cast(L_54), (int64_t)L_55); int32_t L_56 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_56, (int32_t)1)); V_4 = (bool)0; int32_t L_57 = V_6; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_57, (int32_t)1)); } IL_0138: { int32_t L_58 = V_6; int32_t* L_59 = ___end2; int32_t L_60 = *((int32_t*)L_59); if ((((int32_t)L_58) < ((int32_t)L_60))) { goto IL_001b; } } IL_0141: { bool L_61 = V_4; if (L_61) { goto IL_0148; } } { return ((int64_t)((int64_t)(-1))); } IL_0148: { int32_t L_62 = V_6; int32_t* L_63 = ___end2; int32_t L_64 = *((int32_t*)L_63); if ((((int32_t)L_62) >= ((int32_t)L_64))) { goto IL_017c; } } { Il2CppChar* L_65 = ___name0; int32_t L_66 = V_6; int32_t L_67 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_65, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_66), (int32_t)2))))); int32_t L_68 = L_67; V_1 = L_68; if ((((int32_t)L_68) == ((int32_t)((int32_t)47)))) { goto IL_0173; } } { Il2CppChar L_69 = V_1; if ((((int32_t)L_69) == ((int32_t)((int32_t)92)))) { goto IL_0173; } } { bool L_70 = ___notImplicitFile3; if (!L_70) { goto IL_0179; } } { Il2CppChar L_71 = V_1; if ((((int32_t)L_71) == ((int32_t)((int32_t)58)))) { goto IL_0173; } } { Il2CppChar L_72 = V_1; if ((((int32_t)L_72) == ((int32_t)((int32_t)63)))) { goto IL_0173; } } { Il2CppChar L_73 = V_1; if ((!(((uint32_t)L_73) == ((uint32_t)((int32_t)35))))) { goto IL_0179; } } IL_0173: { int32_t* L_74 = ___end2; int32_t L_75 = V_6; *((int32_t*)L_74) = (int32_t)L_75; goto IL_017c; } IL_0179: { return ((int64_t)((int64_t)(-1))); } IL_017c: { Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* L_76 = V_2; int32_t L_77 = V_5; int64_t L_78 = V_3; NullCheck(L_76); (L_76)->SetAt(static_cast(L_77), (int64_t)L_78); int32_t L_79 = V_5; switch (L_79) { case 0: { goto IL_019d; } case 1: { goto IL_01ab; } case 2: { goto IL_01cb; } case 3: { goto IL_01f9; } } } { goto IL_0234; } IL_019d: { Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* L_80 = V_2; NullCheck(L_80); int32_t L_81 = 0; int64_t L_82 = (L_80)->GetAt(static_cast(L_81)); if ((((int64_t)L_82) <= ((int64_t)((int64_t)((uint64_t)((uint32_t)((uint32_t)(-1)))))))) { goto IL_01a7; } } { return ((int64_t)((int64_t)(-1))); } IL_01a7: { Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* L_83 = V_2; NullCheck(L_83); int32_t L_84 = 0; int64_t L_85 = (L_83)->GetAt(static_cast(L_84)); return L_85; } IL_01ab: { Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* L_86 = V_2; NullCheck(L_86); int32_t L_87 = 1; int64_t L_88 = (L_86)->GetAt(static_cast(L_87)); if ((((int64_t)L_88) <= ((int64_t)((int64_t)((int64_t)((int32_t)16777215)))))) { goto IL_01b9; } } { return ((int64_t)((int64_t)(-1))); } IL_01b9: { Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* L_89 = V_2; NullCheck(L_89); int32_t L_90 = 0; int64_t L_91 = (L_89)->GetAt(static_cast(L_90)); Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* L_92 = V_2; NullCheck(L_92); int32_t L_93 = 1; int64_t L_94 = (L_92)->GetAt(static_cast(L_93)); return ((int64_t)((int64_t)((int64_t)((int64_t)L_91<<(int32_t)((int32_t)24)))|(int64_t)((int64_t)((int64_t)L_94&(int64_t)((int64_t)((int64_t)((int32_t)16777215))))))); } IL_01cb: { Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* L_95 = V_2; NullCheck(L_95); int32_t L_96 = 2; int64_t L_97 = (L_95)->GetAt(static_cast(L_96)); if ((((int64_t)L_97) <= ((int64_t)((int64_t)((int64_t)((int32_t)65535)))))) { goto IL_01d9; } } { return ((int64_t)((int64_t)(-1))); } IL_01d9: { Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* L_98 = V_2; NullCheck(L_98); int32_t L_99 = 0; int64_t L_100 = (L_98)->GetAt(static_cast(L_99)); Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* L_101 = V_2; NullCheck(L_101); int32_t L_102 = 1; int64_t L_103 = (L_101)->GetAt(static_cast(L_102)); Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* L_104 = V_2; NullCheck(L_104); int32_t L_105 = 2; int64_t L_106 = (L_104)->GetAt(static_cast(L_105)); return ((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)L_100<<(int32_t)((int32_t)24)))|(int64_t)((int64_t)((int64_t)((int64_t)((int64_t)L_103&(int64_t)((int64_t)((int64_t)((int32_t)255)))))<<(int32_t)((int32_t)16)))))|(int64_t)((int64_t)((int64_t)L_106&(int64_t)((int64_t)((int64_t)((int32_t)65535))))))); } IL_01f9: { Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* L_107 = V_2; NullCheck(L_107); int32_t L_108 = 3; int64_t L_109 = (L_107)->GetAt(static_cast(L_108)); if ((((int64_t)L_109) <= ((int64_t)((int64_t)((int64_t)((int32_t)255)))))) { goto IL_0207; } } { return ((int64_t)((int64_t)(-1))); } IL_0207: { Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* L_110 = V_2; NullCheck(L_110); int32_t L_111 = 0; int64_t L_112 = (L_110)->GetAt(static_cast(L_111)); Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* L_113 = V_2; NullCheck(L_113); int32_t L_114 = 1; int64_t L_115 = (L_113)->GetAt(static_cast(L_114)); Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* L_116 = V_2; NullCheck(L_116); int32_t L_117 = 2; int64_t L_118 = (L_116)->GetAt(static_cast(L_117)); Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* L_119 = V_2; NullCheck(L_119); int32_t L_120 = 3; int64_t L_121 = (L_119)->GetAt(static_cast(L_120)); return ((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)L_112<<(int32_t)((int32_t)24)))|(int64_t)((int64_t)((int64_t)((int64_t)((int64_t)L_115&(int64_t)((int64_t)((int64_t)((int32_t)255)))))<<(int32_t)((int32_t)16)))))|(int64_t)((int64_t)((int64_t)((int64_t)((int64_t)L_118&(int64_t)((int64_t)((int64_t)((int32_t)255)))))<<(int32_t)8))))|(int64_t)((int64_t)((int64_t)L_121&(int64_t)((int64_t)((int64_t)((int32_t)255))))))); } IL_0234: { return ((int64_t)((int64_t)(-1))); } } // System.Boolean System.IPv4AddressHelper::Parse(System.String,System.Byte*,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPv4AddressHelper_Parse_m9B4CB7935241AA6DC67171684E19AF8190364768 (String_t* ___name0, uint8_t* ___numbers1, int32_t ___start2, int32_t ___end3, const RuntimeMethod* method) { Il2CppChar* V_0 = NULL; String_t* V_1 = NULL; int32_t V_2 = 0; int64_t V_3 = 0; { String_t* L_0 = ___name0; V_1 = L_0; String_t* L_1 = V_1; V_0 = (Il2CppChar*)((uintptr_t)L_1); Il2CppChar* L_2 = V_0; if (!L_2) { goto IL_0010; } } { Il2CppChar* L_3 = V_0; int32_t L_4; L_4 = RuntimeHelpers_get_OffsetToStringData_mEB8E6EAEBAFAB7CD7F7A915B3081785AABB9FC42(/*hidden argument*/NULL); V_0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_3, (int32_t)L_4)); } IL_0010: { int32_t L_5 = ___end3; V_2 = L_5; Il2CppChar* L_6 = V_0; int32_t L_7 = ___start2; int64_t L_8; L_8 = IPv4AddressHelper_ParseNonCanonical_mE2C4832ED252F3CE61B73DBE25B4959568E2FE31((Il2CppChar*)(Il2CppChar*)L_6, L_7, (int32_t*)(&V_2), (bool)1, /*hidden argument*/NULL); V_3 = L_8; uint8_t* L_9 = ___numbers1; int64_t L_10 = V_3; *((int8_t*)L_9) = (int8_t)((int32_t)((uint8_t)((int64_t)((int64_t)L_10>>(int32_t)((int32_t)24))))); uint8_t* L_11 = ___numbers1; int64_t L_12 = V_3; *((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_11, (int32_t)1))) = (int8_t)((int32_t)((uint8_t)((int64_t)((int64_t)L_12>>(int32_t)((int32_t)16))))); uint8_t* L_13 = ___numbers1; int64_t L_14 = V_3; *((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_13, (int32_t)2))) = (int8_t)((int32_t)((uint8_t)((int64_t)((int64_t)L_14>>(int32_t)8)))); uint8_t* L_15 = ___numbers1; int64_t L_16 = V_3; *((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_15, (int32_t)3))) = (int8_t)((int32_t)((uint8_t)L_16)); V_1 = (String_t*)NULL; uint8_t* L_17 = ___numbers1; int32_t L_18 = *((uint8_t*)L_17); return (bool)((((int32_t)L_18) == ((int32_t)((int32_t)127)))? 1 : 0); } } // System.Boolean System.IPv4AddressHelper::ParseCanonical(System.String,System.Byte*,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPv4AddressHelper_ParseCanonical_mEDA5683F6AC98D0C403C60B16C2F859590A653AA (String_t* ___name0, uint8_t* ___numbers1, int32_t ___start2, int32_t ___end3, const RuntimeMethod* method) { int32_t V_0 = 0; uint8_t V_1 = 0x0; Il2CppChar V_2 = 0x0; { V_0 = 0; goto IL_003d; } IL_0004: { V_1 = (uint8_t)0; goto IL_0019; } IL_0008: { uint8_t L_0 = V_1; Il2CppChar L_1 = V_2; V_1 = (uint8_t)((int32_t)((uint8_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_0, (int32_t)((int32_t)10))), (int32_t)((int32_t)((uint8_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)((int32_t)48))))))))); int32_t L_2 = ___start2; ___start2 = ((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1)); } IL_0019: { int32_t L_3 = ___start2; int32_t L_4 = ___end3; if ((((int32_t)L_3) >= ((int32_t)L_4))) { goto IL_002f; } } { String_t* L_5 = ___name0; int32_t L_6 = ___start2; NullCheck(L_5); Il2CppChar L_7; L_7 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_5, L_6, /*hidden argument*/NULL); Il2CppChar L_8 = L_7; V_2 = L_8; if ((((int32_t)L_8) == ((int32_t)((int32_t)46)))) { goto IL_002f; } } { Il2CppChar L_9 = V_2; if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)58))))) { goto IL_0008; } } IL_002f: { uint8_t* L_10 = ___numbers1; int32_t L_11 = V_0; uint8_t L_12 = V_1; *((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_10, (int32_t)L_11))) = (int8_t)L_12; int32_t L_13 = ___start2; ___start2 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)); int32_t L_14 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)); } IL_003d: { int32_t L_15 = V_0; if ((((int32_t)L_15) < ((int32_t)4))) { goto IL_0004; } } { uint8_t* L_16 = ___numbers1; int32_t L_17 = *((uint8_t*)L_16); return (bool)((((int32_t)L_17) == ((int32_t)((int32_t)127)))? 1 : 0); } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: System.Net.IPv6AddressFormatter IL2CPP_EXTERN_C void IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA_marshal_pinvoke(const IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA& unmarshaled, IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA_marshaled_pinvoke& marshaled) { marshaled.___address_0 = il2cpp_codegen_com_marshal_safe_array(IL2CPP_VT_UI2, unmarshaled.get_address_0()); marshaled.___scopeId_1 = unmarshaled.get_scopeId_1(); } IL2CPP_EXTERN_C void IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA_marshal_pinvoke_back(const IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA_marshaled_pinvoke& marshaled, IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } unmarshaled.set_address_0((UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67*)il2cpp_codegen_com_marshal_safe_array_result(IL2CPP_VT_UI2, UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_il2cpp_TypeInfo_var, marshaled.___address_0)); int64_t unmarshaled_scopeId_temp_1 = 0; unmarshaled_scopeId_temp_1 = marshaled.___scopeId_1; unmarshaled.set_scopeId_1(unmarshaled_scopeId_temp_1); } // Conversion method for clean up from marshalling of: System.Net.IPv6AddressFormatter IL2CPP_EXTERN_C void IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA_marshal_pinvoke_cleanup(IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA_marshaled_pinvoke& marshaled) { il2cpp_codegen_com_destroy_safe_array(marshaled.___address_0); marshaled.___address_0 = NULL; } // Conversion methods for marshalling of: System.Net.IPv6AddressFormatter IL2CPP_EXTERN_C void IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA_marshal_com(const IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA& unmarshaled, IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA_marshaled_com& marshaled) { marshaled.___address_0 = il2cpp_codegen_com_marshal_safe_array(IL2CPP_VT_UI2, unmarshaled.get_address_0()); marshaled.___scopeId_1 = unmarshaled.get_scopeId_1(); } IL2CPP_EXTERN_C void IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA_marshal_com_back(const IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA_marshaled_com& marshaled, IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } unmarshaled.set_address_0((UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67*)il2cpp_codegen_com_marshal_safe_array_result(IL2CPP_VT_UI2, UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_il2cpp_TypeInfo_var, marshaled.___address_0)); int64_t unmarshaled_scopeId_temp_1 = 0; unmarshaled_scopeId_temp_1 = marshaled.___scopeId_1; unmarshaled.set_scopeId_1(unmarshaled_scopeId_temp_1); } // Conversion method for clean up from marshalling of: System.Net.IPv6AddressFormatter IL2CPP_EXTERN_C void IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA_marshal_com_cleanup(IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA_marshaled_com& marshaled) { il2cpp_codegen_com_destroy_safe_array(marshaled.___address_0); marshaled.___address_0 = NULL; } // System.Void System.Net.IPv6AddressFormatter::.ctor(System.UInt16[],System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IPv6AddressFormatter__ctor_mEEFF87906A194838D6E4A31AB724A28808E539E5 (IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA * __this, UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* ___addr0, int64_t ___scopeId1, const RuntimeMethod* method) { { UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_0 = ___addr0; __this->set_address_0(L_0); int64_t L_1 = ___scopeId1; __this->set_scopeId_1(L_1); return; } } IL2CPP_EXTERN_C void IPv6AddressFormatter__ctor_mEEFF87906A194838D6E4A31AB724A28808E539E5_AdjustorThunk (RuntimeObject * __this, UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* ___addr0, int64_t ___scopeId1, const RuntimeMethod* method) { IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA * _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); IPv6AddressFormatter__ctor_mEEFF87906A194838D6E4A31AB724A28808E539E5(_thisAdjusted, ___addr0, ___scopeId1, method); } // System.UInt16 System.Net.IPv6AddressFormatter::SwapUShort(System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t IPv6AddressFormatter_SwapUShort_m422438633F4CADBE0EAB77D23AD3334FD01ACEC6 (uint16_t ___number0, const RuntimeMethod* method) { { uint16_t L_0 = ___number0; uint16_t L_1 = ___number0; return (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_0>>(int32_t)8))&(int32_t)((int32_t)255))), (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_1<<(int32_t)8))&(int32_t)((int32_t)65280))))))); } } // System.UInt32 System.Net.IPv6AddressFormatter::AsIPv4Int() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t IPv6AddressFormatter_AsIPv4Int_m875CCBC60A506A331C9D591D5A88D49EBB6730E7 (IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA * __this, const RuntimeMethod* method) { { UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_0 = __this->get_address_0(); NullCheck(L_0); int32_t L_1 = 7; uint16_t L_2 = (L_0)->GetAt(static_cast(L_1)); uint16_t L_3; L_3 = IPv6AddressFormatter_SwapUShort_m422438633F4CADBE0EAB77D23AD3334FD01ACEC6(L_2, /*hidden argument*/NULL); UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_4 = __this->get_address_0(); NullCheck(L_4); int32_t L_5 = 6; uint16_t L_6 = (L_4)->GetAt(static_cast(L_5)); uint16_t L_7; L_7 = IPv6AddressFormatter_SwapUShort_m422438633F4CADBE0EAB77D23AD3334FD01ACEC6(L_6, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)L_3<<(int32_t)((int32_t)16))), (int32_t)L_7)); } } IL2CPP_EXTERN_C uint32_t IPv6AddressFormatter_AsIPv4Int_m875CCBC60A506A331C9D591D5A88D49EBB6730E7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA * _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); uint32_t _returnValue; _returnValue = IPv6AddressFormatter_AsIPv4Int_m875CCBC60A506A331C9D591D5A88D49EBB6730E7(_thisAdjusted, method); return _returnValue; } // System.Boolean System.Net.IPv6AddressFormatter::IsIPv4Compatible() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPv6AddressFormatter_IsIPv4Compatible_m769BBFB4FBB844EC8AB61A635495A7F2925FDD99 (IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { V_0 = 0; goto IL_0014; } IL_0004: { UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_0 = __this->get_address_0(); int32_t L_1 = V_0; NullCheck(L_0); int32_t L_2 = L_1; uint16_t L_3 = (L_0)->GetAt(static_cast(L_2)); if (!L_3) { goto IL_0010; } } { return (bool)0; } IL_0010: { int32_t L_4 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)); } IL_0014: { int32_t L_5 = V_0; if ((((int32_t)L_5) < ((int32_t)6))) { goto IL_0004; } } { UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_6 = __this->get_address_0(); NullCheck(L_6); int32_t L_7 = 6; uint16_t L_8 = (L_6)->GetAt(static_cast(L_7)); if (L_8) { goto IL_0024; } } { return (bool)0; } IL_0024: { uint32_t L_9; L_9 = IPv6AddressFormatter_AsIPv4Int_m875CCBC60A506A331C9D591D5A88D49EBB6730E7((IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA *)__this, /*hidden argument*/NULL); return (bool)((!(((uint32_t)L_9) <= ((uint32_t)1)))? 1 : 0); } } IL2CPP_EXTERN_C bool IPv6AddressFormatter_IsIPv4Compatible_m769BBFB4FBB844EC8AB61A635495A7F2925FDD99_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA * _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = IPv6AddressFormatter_IsIPv4Compatible_m769BBFB4FBB844EC8AB61A635495A7F2925FDD99(_thisAdjusted, method); return _returnValue; } // System.Boolean System.Net.IPv6AddressFormatter::IsIPv4Mapped() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPv6AddressFormatter_IsIPv4Mapped_m46AE9AECC6E77E6A53ACBF60BEF336D45FF236DB (IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { V_0 = 0; goto IL_0014; } IL_0004: { UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_0 = __this->get_address_0(); int32_t L_1 = V_0; NullCheck(L_0); int32_t L_2 = L_1; uint16_t L_3 = (L_0)->GetAt(static_cast(L_2)); if (!L_3) { goto IL_0010; } } { return (bool)0; } IL_0010: { int32_t L_4 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)); } IL_0014: { int32_t L_5 = V_0; if ((((int32_t)L_5) < ((int32_t)5))) { goto IL_0004; } } { UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_6 = __this->get_address_0(); NullCheck(L_6); int32_t L_7 = 6; uint16_t L_8 = (L_6)->GetAt(static_cast(L_7)); if (L_8) { goto IL_0024; } } { return (bool)0; } IL_0024: { UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_9 = __this->get_address_0(); NullCheck(L_9); int32_t L_10 = 5; uint16_t L_11 = (L_9)->GetAt(static_cast(L_10)); return (bool)((((int32_t)L_11) == ((int32_t)((int32_t)65535)))? 1 : 0); } } IL2CPP_EXTERN_C bool IPv6AddressFormatter_IsIPv4Mapped_m46AE9AECC6E77E6A53ACBF60BEF336D45FF236DB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA * _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = IPv6AddressFormatter_IsIPv4Mapped_m46AE9AECC6E77E6A53ACBF60BEF336D45FF236DB(_thisAdjusted, method); return _returnValue; } // System.String System.Net.IPv6AddressFormatter::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IPv6AddressFormatter_ToString_m5FB0F927F3B0BAA521BC92562A7F5A78460023DC (IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5295380188F75D696383F8BDB2147F0053791372); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral621B7794C716EDA5AB797D46B90903408FBF6D6A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF08DE2DA4F18517CA9EB7D620BCE4C585C642D91); s_Il2CppMethodInitialized = true; } StringBuilder_t * V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; { StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9(L_0, /*hidden argument*/NULL); V_0 = L_0; bool L_1; L_1 = IPv6AddressFormatter_IsIPv4Compatible_m769BBFB4FBB844EC8AB61A635495A7F2925FDD99((IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA *)__this, /*hidden argument*/NULL); if (L_1) { goto IL_0016; } } { bool L_2; L_2 = IPv6AddressFormatter_IsIPv4Mapped_m46AE9AECC6E77E6A53ACBF60BEF336D45FF236DB((IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA *)__this, /*hidden argument*/NULL); if (!L_2) { goto IL_0055; } } IL_0016: { StringBuilder_t * L_3 = V_0; NullCheck(L_3); StringBuilder_t * L_4; L_4 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_3, _stringLiteral5295380188F75D696383F8BDB2147F0053791372, /*hidden argument*/NULL); bool L_5; L_5 = IPv6AddressFormatter_IsIPv4Mapped_m46AE9AECC6E77E6A53ACBF60BEF336D45FF236DB((IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA *)__this, /*hidden argument*/NULL); if (!L_5) { goto IL_0036; } } { StringBuilder_t * L_6 = V_0; NullCheck(L_6); StringBuilder_t * L_7; L_7 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_6, _stringLiteral621B7794C716EDA5AB797D46B90903408FBF6D6A, /*hidden argument*/NULL); } IL_0036: { StringBuilder_t * L_8 = V_0; uint32_t L_9; L_9 = IPv6AddressFormatter_AsIPv4Int_m875CCBC60A506A331C9D591D5A88D49EBB6730E7((IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA *)__this, /*hidden argument*/NULL); IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_10 = (IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE *)il2cpp_codegen_object_new(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var); IPAddress__ctor_mA672DA31F082CC6E8B10BEC436D94450E630E16F(L_10, ((int64_t)((uint64_t)L_9)), /*hidden argument*/NULL); NullCheck(L_10); String_t* L_11; L_11 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_10); NullCheck(L_8); StringBuilder_t * L_12; L_12 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_8, L_11, /*hidden argument*/NULL); StringBuilder_t * L_13 = V_0; NullCheck(L_13); String_t* L_14; L_14 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_13); return L_14; } IL_0055: { V_1 = (-1); V_2 = 0; V_3 = 0; V_4 = 0; goto IL_0088; } IL_0060: { UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_15 = __this->get_address_0(); int32_t L_16 = V_4; NullCheck(L_15); int32_t L_17 = L_16; uint16_t L_18 = (L_15)->GetAt(static_cast(L_17)); if (!L_18) { goto IL_007e; } } { int32_t L_19 = V_3; int32_t L_20 = V_2; if ((((int32_t)L_19) <= ((int32_t)L_20))) { goto IL_007a; } } { int32_t L_21 = V_3; if ((((int32_t)L_21) <= ((int32_t)1))) { goto IL_007a; } } { int32_t L_22 = V_3; V_2 = L_22; int32_t L_23 = V_4; int32_t L_24 = V_3; V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_23, (int32_t)L_24)); } IL_007a: { V_3 = 0; goto IL_0082; } IL_007e: { int32_t L_25 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1)); } IL_0082: { int32_t L_26 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1)); } IL_0088: { int32_t L_27 = V_4; if ((((int32_t)L_27) < ((int32_t)8))) { goto IL_0060; } } { int32_t L_28 = V_3; int32_t L_29 = V_2; if ((((int32_t)L_28) <= ((int32_t)L_29))) { goto IL_009b; } } { int32_t L_30 = V_3; if ((((int32_t)L_30) <= ((int32_t)1))) { goto IL_009b; } } { int32_t L_31 = V_3; V_2 = L_31; int32_t L_32 = V_3; V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)8, (int32_t)L_32)); } IL_009b: { int32_t L_33 = V_1; if (L_33) { goto IL_00aa; } } { StringBuilder_t * L_34 = V_0; NullCheck(L_34); StringBuilder_t * L_35; L_35 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_34, _stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D, /*hidden argument*/NULL); } IL_00aa: { V_5 = 0; goto IL_00f8; } IL_00af: { int32_t L_36 = V_5; int32_t L_37 = V_1; if ((!(((uint32_t)L_36) == ((uint32_t)L_37)))) { goto IL_00ca; } } { StringBuilder_t * L_38 = V_0; NullCheck(L_38); StringBuilder_t * L_39; L_39 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_38, _stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D, /*hidden argument*/NULL); int32_t L_40 = V_5; int32_t L_41 = V_2; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_40, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_41, (int32_t)1)))); goto IL_00f2; } IL_00ca: { StringBuilder_t * L_42 = V_0; UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_43 = __this->get_address_0(); int32_t L_44 = V_5; NullCheck(L_43); int32_t L_45 = L_44; uint16_t L_46 = (L_43)->GetAt(static_cast(L_45)); uint16_t L_47 = L_46; RuntimeObject * L_48 = Box(UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_il2cpp_TypeInfo_var, &L_47); NullCheck(L_42); StringBuilder_t * L_49; L_49 = StringBuilder_AppendFormat_mA3A12EF6C7AC4C5EBC41FCA633F4FC036205669E(L_42, _stringLiteralF08DE2DA4F18517CA9EB7D620BCE4C585C642D91, L_48, /*hidden argument*/NULL); int32_t L_50 = V_5; if ((((int32_t)L_50) >= ((int32_t)7))) { goto IL_00f2; } } { StringBuilder_t * L_51 = V_0; NullCheck(L_51); StringBuilder_t * L_52; L_52 = StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E(L_51, ((int32_t)58), /*hidden argument*/NULL); } IL_00f2: { int32_t L_53 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_53, (int32_t)1)); } IL_00f8: { int32_t L_54 = V_5; if ((((int32_t)L_54) < ((int32_t)8))) { goto IL_00af; } } { int64_t L_55 = __this->get_scopeId_1(); if (!L_55) { goto IL_0119; } } { StringBuilder_t * L_56 = V_0; NullCheck(L_56); StringBuilder_t * L_57; L_57 = StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E(L_56, ((int32_t)37), /*hidden argument*/NULL); int64_t L_58 = __this->get_scopeId_1(); NullCheck(L_57); StringBuilder_t * L_59; L_59 = StringBuilder_Append_m8DA7E8B858ADF12EF8CE62A4083B60510B1D1510(L_57, L_58, /*hidden argument*/NULL); } IL_0119: { StringBuilder_t * L_60 = V_0; NullCheck(L_60); String_t* L_61; L_61 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_60); return L_61; } } IL2CPP_EXTERN_C String_t* IPv6AddressFormatter_ToString_m5FB0F927F3B0BAA521BC92562A7F5A78460023DC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { IPv6AddressFormatter_tB4B75557A1014D1E6E250A35E5F94411EF2979BA * _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = IPv6AddressFormatter_ToString_m5FB0F927F3B0BAA521BC92562A7F5A78460023DC(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.String System.IPv6AddressHelper::ParseCanonicalName(System.String,System.Int32,System.Boolean&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IPv6AddressHelper_ParseCanonicalName_mAC7315CCA0517C9B95D33C4114E90A8B94EC1E2C (String_t* ___str0, int32_t ___start1, bool* ___isLoopback2, String_t** ___scopeId3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC); s_Il2CppMethodInitialized = true; } uint16_t* V_0 = NULL; { int8_t* L_0 = (int8_t*) alloca(((uintptr_t)((int32_t)16))); memset(L_0, 0, ((uintptr_t)((int32_t)16))); V_0 = (uint16_t*)(L_0); uint16_t* L_1 = V_0; *((int64_t*)L_1) = (int64_t)((int64_t)((int64_t)0)); uint16_t* L_2 = V_0; *((int64_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_2, (int32_t)8))) = (int64_t)((int64_t)((int64_t)0)); bool* L_3 = ___isLoopback2; String_t* L_4 = ___str0; uint16_t* L_5 = V_0; int32_t L_6 = ___start1; String_t** L_7 = ___scopeId3; bool L_8; L_8 = IPv6AddressHelper_Parse_m40C11CFE4C02F7BDE4A8A9B5AD65B5481576E91B(L_4, (uint16_t*)(uint16_t*)L_5, L_6, (String_t**)L_7, /*hidden argument*/NULL); *((int8_t*)L_3) = (int8_t)L_8; uint16_t* L_9 = V_0; String_t* L_10; L_10 = IPv6AddressHelper_CreateCanonicalName_m0A4D273AB7676EBF0E66E7CBE15100D4614163C2((uint16_t*)(uint16_t*)L_9, /*hidden argument*/NULL); String_t* L_11; L_11 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44(_stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1, L_10, _stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC, /*hidden argument*/NULL); return L_11; } } // System.String System.IPv6AddressHelper::CreateCanonicalName(System.UInt16*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IPv6AddressHelper_CreateCanonicalName_m0A4D273AB7676EBF0E66E7CBE15100D4614163C2 (uint16_t* ___numbers0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Key_m1382814B15BCE20E539C28DDCF09B0322D4645B9_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Value_m9049D745F37362B8AD0CCA94F08CC18D9A734799_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA62CFA71484048A37C3903DD1A89AD7E6DA67F61); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE40F0638FB44416320D32BC72A6D591325193B9C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF08DE2DA4F18517CA9EB7D620BCE4C585C642D91); s_Il2CppMethodInitialized = true; } KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB V_0; memset((&V_0), 0, sizeof(V_0)); bool V_1 = false; StringBuilder_t * V_2 = NULL; int32_t V_3 = 0; { IL2CPP_RUNTIME_CLASS_INIT(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); bool L_0; L_0 = UriParser_get_ShouldUseLegacyV2Quirks_mB8917CAC10CD13E44F2EB21D4033044BEAF132B2(/*hidden argument*/NULL); if (!L_0) { goto IL_0090; } } { IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_1; L_1 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)8); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = L_2; uint16_t* L_4 = ___numbers0; int32_t L_5 = *((uint16_t*)L_4); uint16_t L_6 = ((uint16_t)L_5); RuntimeObject * L_7 = Box(UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_il2cpp_TypeInfo_var, &L_6); NullCheck(L_3); ArrayElementTypeCheck (L_3, L_7); (L_3)->SetAt(static_cast(0), (RuntimeObject *)L_7); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_8 = L_3; uint16_t* L_9 = ___numbers0; int32_t L_10 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_9, (int32_t)2))); uint16_t L_11 = ((uint16_t)L_10); RuntimeObject * L_12 = Box(UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_il2cpp_TypeInfo_var, &L_11); NullCheck(L_8); ArrayElementTypeCheck (L_8, L_12); (L_8)->SetAt(static_cast(1), (RuntimeObject *)L_12); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_13 = L_8; uint16_t* L_14 = ___numbers0; int32_t L_15 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_14, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)2), (int32_t)2))))); uint16_t L_16 = ((uint16_t)L_15); RuntimeObject * L_17 = Box(UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_il2cpp_TypeInfo_var, &L_16); NullCheck(L_13); ArrayElementTypeCheck (L_13, L_17); (L_13)->SetAt(static_cast(2), (RuntimeObject *)L_17); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_18 = L_13; uint16_t* L_19 = ___numbers0; int32_t L_20 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_19, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)3), (int32_t)2))))); uint16_t L_21 = ((uint16_t)L_20); RuntimeObject * L_22 = Box(UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_il2cpp_TypeInfo_var, &L_21); NullCheck(L_18); ArrayElementTypeCheck (L_18, L_22); (L_18)->SetAt(static_cast(3), (RuntimeObject *)L_22); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_23 = L_18; uint16_t* L_24 = ___numbers0; int32_t L_25 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_24, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)4), (int32_t)2))))); uint16_t L_26 = ((uint16_t)L_25); RuntimeObject * L_27 = Box(UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_il2cpp_TypeInfo_var, &L_26); NullCheck(L_23); ArrayElementTypeCheck (L_23, L_27); (L_23)->SetAt(static_cast(4), (RuntimeObject *)L_27); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_28 = L_23; uint16_t* L_29 = ___numbers0; int32_t L_30 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_29, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)5), (int32_t)2))))); uint16_t L_31 = ((uint16_t)L_30); RuntimeObject * L_32 = Box(UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_il2cpp_TypeInfo_var, &L_31); NullCheck(L_28); ArrayElementTypeCheck (L_28, L_32); (L_28)->SetAt(static_cast(5), (RuntimeObject *)L_32); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_33 = L_28; uint16_t* L_34 = ___numbers0; int32_t L_35 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_34, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)6), (int32_t)2))))); uint16_t L_36 = ((uint16_t)L_35); RuntimeObject * L_37 = Box(UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_il2cpp_TypeInfo_var, &L_36); NullCheck(L_33); ArrayElementTypeCheck (L_33, L_37); (L_33)->SetAt(static_cast(6), (RuntimeObject *)L_37); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_38 = L_33; uint16_t* L_39 = ___numbers0; int32_t L_40 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_39, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)7), (int32_t)2))))); uint16_t L_41 = ((uint16_t)L_40); RuntimeObject * L_42 = Box(UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_il2cpp_TypeInfo_var, &L_41); NullCheck(L_38); ArrayElementTypeCheck (L_38, L_42); (L_38)->SetAt(static_cast(7), (RuntimeObject *)L_42); String_t* L_43; L_43 = String_Format_mF96F0621DC567D09C07F1EAC66B31AD261A9DC21(L_1, _stringLiteralA62CFA71484048A37C3903DD1A89AD7E6DA67F61, L_38, /*hidden argument*/NULL); return L_43; } IL_0090: { uint16_t* L_44 = ___numbers0; KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB L_45; L_45 = IPv6AddressHelper_FindCompressionRange_m5D45C7CDE351D8B073A56656BA062453CD5124A5((uint16_t*)(uint16_t*)L_44, /*hidden argument*/NULL); V_0 = L_45; uint16_t* L_46 = ___numbers0; bool L_47; L_47 = IPv6AddressHelper_ShouldHaveIpv4Embedded_m7EDC33D2523FB9961D20EB54A136369E6548E19C((uint16_t*)(uint16_t*)L_46, /*hidden argument*/NULL); V_1 = L_47; StringBuilder_t * L_48 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9(L_48, /*hidden argument*/NULL); V_2 = L_48; V_3 = 0; goto IL_01a4; } IL_00ab: { bool L_49 = V_1; if (!L_49) { goto IL_0123; } } { int32_t L_50 = V_3; if ((!(((uint32_t)L_50) == ((uint32_t)6)))) { goto IL_0123; } } { StringBuilder_t * L_51 = V_2; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_52; L_52 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_53 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)4); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_54 = L_53; uint16_t* L_55 = ___numbers0; int32_t L_56 = V_3; int32_t L_57 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_55, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_56), (int32_t)2))))); int32_t L_58 = ((int32_t)((int32_t)L_57>>(int32_t)8)); RuntimeObject * L_59 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_58); NullCheck(L_54); ArrayElementTypeCheck (L_54, L_59); (L_54)->SetAt(static_cast(0), (RuntimeObject *)L_59); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_60 = L_54; uint16_t* L_61 = ___numbers0; int32_t L_62 = V_3; int32_t L_63 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_61, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_62), (int32_t)2))))); int32_t L_64 = ((int32_t)((int32_t)L_63&(int32_t)((int32_t)255))); RuntimeObject * L_65 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_64); NullCheck(L_60); ArrayElementTypeCheck (L_60, L_65); (L_60)->SetAt(static_cast(1), (RuntimeObject *)L_65); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_66 = L_60; uint16_t* L_67 = ___numbers0; int32_t L_68 = V_3; int32_t L_69 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_67, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_68, (int32_t)1))), (int32_t)2))))); int32_t L_70 = ((int32_t)((int32_t)L_69>>(int32_t)8)); RuntimeObject * L_71 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_70); NullCheck(L_66); ArrayElementTypeCheck (L_66, L_71); (L_66)->SetAt(static_cast(2), (RuntimeObject *)L_71); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_72 = L_66; uint16_t* L_73 = ___numbers0; int32_t L_74 = V_3; int32_t L_75 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_73, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_74, (int32_t)1))), (int32_t)2))))); int32_t L_76 = ((int32_t)((int32_t)L_75&(int32_t)((int32_t)255))); RuntimeObject * L_77 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_76); NullCheck(L_72); ArrayElementTypeCheck (L_72, L_77); (L_72)->SetAt(static_cast(3), (RuntimeObject *)L_77); String_t* L_78; L_78 = String_Format_mF96F0621DC567D09C07F1EAC66B31AD261A9DC21(L_52, _stringLiteralE40F0638FB44416320D32BC72A6D591325193B9C, L_72, /*hidden argument*/NULL); NullCheck(L_51); StringBuilder_t * L_79; L_79 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_51, L_78, /*hidden argument*/NULL); goto IL_01ab; } IL_0123: { int32_t L_80; L_80 = KeyValuePair_2_get_Key_m1382814B15BCE20E539C28DDCF09B0322D4645B9_inline((KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)(&V_0), /*hidden argument*/KeyValuePair_2_get_Key_m1382814B15BCE20E539C28DDCF09B0322D4645B9_RuntimeMethod_var); int32_t L_81 = V_3; if ((!(((uint32_t)L_80) == ((uint32_t)L_81)))) { goto IL_0139; } } { StringBuilder_t * L_82 = V_2; NullCheck(L_82); StringBuilder_t * L_83; L_83 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_82, _stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D, /*hidden argument*/NULL); } IL_0139: { int32_t L_84; L_84 = KeyValuePair_2_get_Key_m1382814B15BCE20E539C28DDCF09B0322D4645B9_inline((KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)(&V_0), /*hidden argument*/KeyValuePair_2_get_Key_m1382814B15BCE20E539C28DDCF09B0322D4645B9_RuntimeMethod_var); int32_t L_85 = V_3; if ((((int32_t)L_84) > ((int32_t)L_85))) { goto IL_015b; } } { int32_t L_86; L_86 = KeyValuePair_2_get_Value_m9049D745F37362B8AD0CCA94F08CC18D9A734799_inline((KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)(&V_0), /*hidden argument*/KeyValuePair_2_get_Value_m9049D745F37362B8AD0CCA94F08CC18D9A734799_RuntimeMethod_var); if ((!(((uint32_t)L_86) == ((uint32_t)7)))) { goto IL_015b; } } { StringBuilder_t * L_87 = V_2; NullCheck(L_87); StringBuilder_t * L_88; L_88 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_87, _stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D, /*hidden argument*/NULL); goto IL_01ab; } IL_015b: { int32_t L_89; L_89 = KeyValuePair_2_get_Key_m1382814B15BCE20E539C28DDCF09B0322D4645B9_inline((KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)(&V_0), /*hidden argument*/KeyValuePair_2_get_Key_m1382814B15BCE20E539C28DDCF09B0322D4645B9_RuntimeMethod_var); int32_t L_90 = V_3; if ((((int32_t)L_89) > ((int32_t)L_90))) { goto IL_016f; } } { int32_t L_91 = V_3; int32_t L_92; L_92 = KeyValuePair_2_get_Value_m9049D745F37362B8AD0CCA94F08CC18D9A734799_inline((KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)(&V_0), /*hidden argument*/KeyValuePair_2_get_Value_m9049D745F37362B8AD0CCA94F08CC18D9A734799_RuntimeMethod_var); if ((((int32_t)L_91) <= ((int32_t)L_92))) { goto IL_01a0; } } IL_016f: { int32_t L_93 = V_3; if (!L_93) { goto IL_017e; } } { StringBuilder_t * L_94 = V_2; NullCheck(L_94); StringBuilder_t * L_95; L_95 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_94, _stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D, /*hidden argument*/NULL); } IL_017e: { StringBuilder_t * L_96 = V_2; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_97; L_97 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL); uint16_t* L_98 = ___numbers0; int32_t L_99 = V_3; int32_t L_100 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_98, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_99), (int32_t)2))))); uint16_t L_101 = ((uint16_t)L_100); RuntimeObject * L_102 = Box(UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_il2cpp_TypeInfo_var, &L_101); String_t* L_103; L_103 = String_Format_m90ED4B078849D42FA1A7C5EB7AC7F74F235F6916(L_97, _stringLiteralF08DE2DA4F18517CA9EB7D620BCE4C585C642D91, L_102, /*hidden argument*/NULL); NullCheck(L_96); StringBuilder_t * L_104; L_104 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_96, L_103, /*hidden argument*/NULL); } IL_01a0: { int32_t L_105 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_105, (int32_t)1)); } IL_01a4: { int32_t L_106 = V_3; if ((((int32_t)L_106) < ((int32_t)8))) { goto IL_00ab; } } IL_01ab: { StringBuilder_t * L_107 = V_2; NullCheck(L_107); String_t* L_108; L_108 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_107); return L_108; } } // System.Collections.Generic.KeyValuePair`2 System.IPv6AddressHelper::FindCompressionRange(System.UInt16*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB IPv6AddressHelper_FindCompressionRange_m5D45C7CDE351D8B073A56656BA062453CD5124A5 (uint16_t* ___numbers0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2__ctor_m464A96D10BD1A619B4460B46883E3430923B95D2_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; { V_0 = 0; V_1 = (-1); V_2 = 0; V_3 = 0; goto IL_002b; } IL_000a: { uint16_t* L_0 = ___numbers0; int32_t L_1 = V_3; int32_t L_2 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_1), (int32_t)2))))); if (L_2) { goto IL_0025; } } { int32_t L_3 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)); int32_t L_4 = V_2; int32_t L_5 = V_0; if ((((int32_t)L_4) <= ((int32_t)L_5))) { goto IL_0027; } } { int32_t L_6 = V_2; V_0 = L_6; int32_t L_7 = V_3; int32_t L_8 = V_2; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)L_8)), (int32_t)1)); goto IL_0027; } IL_0025: { V_2 = 0; } IL_0027: { int32_t L_9 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1)); } IL_002b: { int32_t L_10 = V_3; if ((((int32_t)L_10) < ((int32_t)8))) { goto IL_000a; } } { int32_t L_11 = V_0; if ((((int32_t)L_11) < ((int32_t)2))) { goto IL_003f; } } { int32_t L_12 = V_1; int32_t L_13 = V_1; int32_t L_14 = V_0; KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB L_15; memset((&L_15), 0, sizeof(L_15)); KeyValuePair_2__ctor_m464A96D10BD1A619B4460B46883E3430923B95D2((&L_15), L_12, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)), (int32_t)1)), /*hidden argument*/KeyValuePair_2__ctor_m464A96D10BD1A619B4460B46883E3430923B95D2_RuntimeMethod_var); return L_15; } IL_003f: { KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_m464A96D10BD1A619B4460B46883E3430923B95D2((&L_16), (-1), (-1), /*hidden argument*/KeyValuePair_2__ctor_m464A96D10BD1A619B4460B46883E3430923B95D2_RuntimeMethod_var); return L_16; } } // System.Boolean System.IPv6AddressHelper::ShouldHaveIpv4Embedded(System.UInt16*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPv6AddressHelper_ShouldHaveIpv4Embedded_m7EDC33D2523FB9961D20EB54A136369E6548E19C (uint16_t* ___numbers0, const RuntimeMethod* method) { { uint16_t* L_0 = ___numbers0; int32_t L_1 = *((uint16_t*)L_0); if (L_1) { goto IL_0060; } } { uint16_t* L_2 = ___numbers0; int32_t L_3 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_2, (int32_t)2))); if (L_3) { goto IL_0060; } } { uint16_t* L_4 = ___numbers0; int32_t L_5 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_4, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)2), (int32_t)2))))); if (L_5) { goto IL_0060; } } { uint16_t* L_6 = ___numbers0; int32_t L_7 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_6, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)3), (int32_t)2))))); if (L_7) { goto IL_0060; } } { uint16_t* L_8 = ___numbers0; int32_t L_9 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_8, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)6), (int32_t)2))))); if (!L_9) { goto IL_0060; } } { uint16_t* L_10 = ___numbers0; int32_t L_11 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_10, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)4), (int32_t)2))))); if (L_11) { goto IL_0047; } } { uint16_t* L_12 = ___numbers0; int32_t L_13 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_12, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)5), (int32_t)2))))); if (!L_13) { goto IL_0045; } } { uint16_t* L_14 = ___numbers0; int32_t L_15 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_14, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)5), (int32_t)2))))); if ((!(((uint32_t)L_15) == ((uint32_t)((int32_t)65535))))) { goto IL_0047; } } IL_0045: { return (bool)1; } IL_0047: { uint16_t* L_16 = ___numbers0; int32_t L_17 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_16, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)4), (int32_t)2))))); if ((!(((uint32_t)L_17) == ((uint32_t)((int32_t)65535))))) { goto IL_0060; } } { uint16_t* L_18 = ___numbers0; int32_t L_19 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_18, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)5), (int32_t)2))))); if (L_19) { goto IL_0060; } } { return (bool)1; } IL_0060: { uint16_t* L_20 = ___numbers0; int32_t L_21 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_20, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)4), (int32_t)2))))); if (L_21) { goto IL_0079; } } { uint16_t* L_22 = ___numbers0; int32_t L_23 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_22, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)5), (int32_t)2))))); if ((!(((uint32_t)L_23) == ((uint32_t)((int32_t)24318))))) { goto IL_0079; } } { return (bool)1; } IL_0079: { return (bool)0; } } // System.Boolean System.IPv6AddressHelper::InternalIsValid(System.Char*,System.Int32,System.Int32&,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPv6AddressHelper_InternalIsValid_mE50A940EF05F93B144F0BCFFB9AA5F7E4E23F160 (Il2CppChar* ___name0, int32_t ___start1, int32_t* ___end2, bool ___validateStrictAddress3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; bool V_2 = false; bool V_3 = false; bool V_4 = false; bool V_5 = false; int32_t V_6 = 0; int32_t V_7 = 0; int32_t V_8 = 0; Il2CppChar V_9 = 0x0; int32_t G_B6_0 = 0; int32_t G_B52_0 = 0; int32_t G_B51_0 = 0; int32_t G_B53_0 = 0; int32_t G_B53_1 = 0; int32_t G_B58_0 = 0; { V_0 = 0; V_1 = 0; V_2 = (bool)0; V_3 = (bool)0; V_4 = (bool)0; V_5 = (bool)1; V_6 = 1; int32_t L_0 = ___start1; V_7 = L_0; goto IL_0145; } IL_0019: { bool L_1 = V_4; if (L_1) { goto IL_002c; } } { Il2CppChar* L_2 = ___name0; int32_t L_3 = V_7; int32_t L_4 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_2, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_3), (int32_t)2))))); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_5; L_5 = Uri_IsHexDigit_m87121EC1F62716CC681A4458BF2E6A6B844BD95F(L_4, /*hidden argument*/NULL); G_B6_0 = ((int32_t)(L_5)); goto IL_004a; } IL_002c: { Il2CppChar* L_6 = ___name0; int32_t L_7 = V_7; int32_t L_8 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_6, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_7), (int32_t)2))))); if ((((int32_t)L_8) < ((int32_t)((int32_t)48)))) { goto IL_0049; } } { Il2CppChar* L_9 = ___name0; int32_t L_10 = V_7; int32_t L_11 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_9, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_10), (int32_t)2))))); G_B6_0 = ((((int32_t)((((int32_t)L_11) > ((int32_t)((int32_t)57)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_004a; } IL_0049: { G_B6_0 = 0; } IL_004a: { if (!G_B6_0) { goto IL_0058; } } { int32_t L_12 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); V_5 = (bool)0; goto IL_013f; } IL_0058: { int32_t L_13 = V_1; if ((((int32_t)L_13) <= ((int32_t)4))) { goto IL_005e; } } { return (bool)0; } IL_005e: { int32_t L_14 = V_1; if (!L_14) { goto IL_006b; } } { int32_t L_15 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); int32_t L_16 = V_7; int32_t L_17 = V_1; V_6 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)L_17)); } IL_006b: { Il2CppChar* L_18 = ___name0; int32_t L_19 = V_7; int32_t L_20 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_18, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_19), (int32_t)2))))); V_9 = L_20; Il2CppChar L_21 = V_9; if ((!(((uint32_t)L_21) <= ((uint32_t)((int32_t)46))))) { goto IL_008f; } } { Il2CppChar L_22 = V_9; if ((((int32_t)L_22) == ((int32_t)((int32_t)37)))) { goto IL_00a6; } } { Il2CppChar L_23 = V_9; if ((((int32_t)L_23) == ((int32_t)((int32_t)46)))) { goto IL_0113; } } { goto IL_013b; } IL_008f: { Il2CppChar L_24 = V_9; if ((((int32_t)L_24) == ((int32_t)((int32_t)47)))) { goto IL_00fb; } } { Il2CppChar L_25 = V_9; if ((((int32_t)L_25) == ((int32_t)((int32_t)58)))) { goto IL_00d7; } } { Il2CppChar L_26 = V_9; if ((((int32_t)L_26) == ((int32_t)((int32_t)93)))) { goto IL_00cd; } } { goto IL_013b; } IL_00a6: { int32_t L_27 = V_7; int32_t L_28 = ((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)); V_7 = L_28; int32_t* L_29 = ___end2; int32_t L_30 = *((int32_t*)L_29); if ((!(((uint32_t)L_28) == ((uint32_t)L_30)))) { goto IL_00b3; } } { return (bool)0; } IL_00b3: { Il2CppChar* L_31 = ___name0; int32_t L_32 = V_7; int32_t L_33 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_31, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_32), (int32_t)2))))); if ((((int32_t)L_33) == ((int32_t)((int32_t)93)))) { goto IL_00cd; } } { Il2CppChar* L_34 = ___name0; int32_t L_35 = V_7; int32_t L_36 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_34, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_35), (int32_t)2))))); if ((!(((uint32_t)L_36) == ((uint32_t)((int32_t)47))))) { goto IL_00a6; } } { goto IL_00fb; } IL_00cd: { int32_t L_37 = V_7; ___start1 = L_37; int32_t* L_38 = ___end2; int32_t L_39 = *((int32_t*)L_38); V_7 = L_39; goto IL_013f; } IL_00d7: { int32_t L_40 = V_7; if ((((int32_t)L_40) <= ((int32_t)0))) { goto IL_00f6; } } { Il2CppChar* L_41 = ___name0; int32_t L_42 = V_7; int32_t L_43 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_41, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_42, (int32_t)1))), (int32_t)2))))); if ((!(((uint32_t)L_43) == ((uint32_t)((int32_t)58))))) { goto IL_00f6; } } { bool L_44 = V_2; if (!L_44) { goto IL_00ef; } } { return (bool)0; } IL_00ef: { V_2 = (bool)1; V_5 = (bool)0; goto IL_013d; } IL_00f6: { V_5 = (bool)1; goto IL_013d; } IL_00fb: { bool L_45 = ___validateStrictAddress3; if (!L_45) { goto IL_0100; } } { return (bool)0; } IL_0100: { int32_t L_46 = V_0; bool L_47 = V_4; if (!((int32_t)((int32_t)((((int32_t)L_46) == ((int32_t)0))? 1 : 0)|(int32_t)L_47))) { goto IL_010b; } } { return (bool)0; } IL_010b: { V_4 = (bool)1; V_5 = (bool)1; goto IL_013d; } IL_0113: { bool L_48 = V_3; if (!L_48) { goto IL_0118; } } { return (bool)0; } IL_0118: { int32_t* L_49 = ___end2; int32_t L_50 = *((int32_t*)L_49); V_7 = L_50; Il2CppChar* L_51 = ___name0; int32_t L_52 = V_6; bool L_53; L_53 = IPv4AddressHelper_IsValid_m6CAD01230EC033CB8F4ABB645327065A56E2ED7D((Il2CppChar*)(Il2CppChar*)L_51, L_52, (int32_t*)(&V_7), (bool)1, (bool)0, (bool)0, /*hidden argument*/NULL); if (L_53) { goto IL_012d; } } { return (bool)0; } IL_012d: { int32_t L_54 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_54, (int32_t)1)); V_3 = (bool)1; int32_t L_55 = V_7; V_7 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_55, (int32_t)1)); goto IL_013d; } IL_013b: { return (bool)0; } IL_013d: { V_1 = 0; } IL_013f: { int32_t L_56 = V_7; V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_56, (int32_t)1)); } IL_0145: { int32_t L_57 = V_7; int32_t* L_58 = ___end2; int32_t L_59 = *((int32_t*)L_58); if ((((int32_t)L_57) < ((int32_t)L_59))) { goto IL_0019; } } { bool L_60 = V_4; if (!L_60) { goto IL_015c; } } { int32_t L_61 = V_1; if ((((int32_t)L_61) < ((int32_t)1))) { goto IL_015a; } } { int32_t L_62 = V_1; if ((((int32_t)L_62) <= ((int32_t)2))) { goto IL_015c; } } IL_015a: { return (bool)0; } IL_015c: { bool L_63 = V_4; G_B51_0 = 8; if (L_63) { G_B52_0 = 8; goto IL_0164; } } { G_B53_0 = 0; G_B53_1 = G_B51_0; goto IL_0165; } IL_0164: { G_B53_0 = 1; G_B53_1 = G_B52_0; } IL_0165: { V_8 = ((int32_t)il2cpp_codegen_add((int32_t)G_B53_1, (int32_t)G_B53_0)); bool L_64 = V_5; if (L_64) { goto IL_0192; } } { int32_t L_65 = V_1; if ((((int32_t)L_65) > ((int32_t)4))) { goto IL_0192; } } { bool L_66 = V_2; if (L_66) { goto IL_017a; } } { int32_t L_67 = V_0; int32_t L_68 = V_8; G_B58_0 = ((((int32_t)L_67) == ((int32_t)L_68))? 1 : 0); goto IL_017f; } IL_017a: { int32_t L_69 = V_0; int32_t L_70 = V_8; G_B58_0 = ((((int32_t)L_69) < ((int32_t)L_70))? 1 : 0); } IL_017f: { if (!G_B58_0) { goto IL_0192; } } { int32_t L_71 = V_7; int32_t* L_72 = ___end2; int32_t L_73 = *((int32_t*)L_72); if ((!(((uint32_t)L_71) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_73, (int32_t)1)))))) { goto IL_0190; } } { int32_t* L_74 = ___end2; int32_t L_75 = ___start1; *((int32_t*)L_74) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_75, (int32_t)1)); return (bool)1; } IL_0190: { return (bool)0; } IL_0192: { return (bool)0; } } // System.Boolean System.IPv6AddressHelper::IsValid(System.Char*,System.Int32,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPv6AddressHelper_IsValid_m8090A11221F415591268CBE22105DEFB03CA0FFF (Il2CppChar* ___name0, int32_t ___start1, int32_t* ___end2, const RuntimeMethod* method) { { Il2CppChar* L_0 = ___name0; int32_t L_1 = ___start1; int32_t* L_2 = ___end2; bool L_3; L_3 = IPv6AddressHelper_InternalIsValid_mE50A940EF05F93B144F0BCFFB9AA5F7E4E23F160((Il2CppChar*)(Il2CppChar*)L_0, L_1, (int32_t*)L_2, (bool)0, /*hidden argument*/NULL); return L_3; } } // System.Boolean System.IPv6AddressHelper::IsValidStrict(System.Char*,System.Int32,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPv6AddressHelper_IsValidStrict_m3BD3CD0DCD4FD29996CFC9369F2C2904BE80604E (Il2CppChar* ___name0, int32_t ___start1, int32_t* ___end2, const RuntimeMethod* method) { { Il2CppChar* L_0 = ___name0; int32_t L_1 = ___start1; int32_t* L_2 = ___end2; bool L_3; L_3 = IPv6AddressHelper_InternalIsValid_mE50A940EF05F93B144F0BCFFB9AA5F7E4E23F160((Il2CppChar*)(Il2CppChar*)L_0, L_1, (int32_t*)L_2, (bool)1, /*hidden argument*/NULL); return L_3; } } // System.Boolean System.IPv6AddressHelper::Parse(System.String,System.UInt16*,System.Int32,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPv6AddressHelper_Parse_m40C11CFE4C02F7BDE4A8A9B5AD65B5481576E91B (String_t* ___address0, uint16_t* ___numbers1, int32_t ___start2, String_t** ___scopeId3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; bool V_3 = false; int32_t V_4 = 0; int32_t V_5 = 0; Il2CppChar V_6 = 0x0; int32_t V_7 = 0; int32_t V_8 = 0; int32_t V_9 = 0; int32_t V_10 = 0; { V_0 = 0; V_1 = 0; V_2 = (-1); V_3 = (bool)1; V_4 = 0; String_t* L_0 = ___address0; int32_t L_1 = ___start2; NullCheck(L_0); Il2CppChar L_2; L_2 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_0, L_1, /*hidden argument*/NULL); if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)91))))) { goto IL_001b; } } { int32_t L_3 = ___start2; ___start2 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)); } IL_001b: { int32_t L_4 = ___start2; V_5 = L_4; goto IL_01f1; } IL_0023: { String_t* L_5 = ___address0; int32_t L_6 = V_5; NullCheck(L_5); Il2CppChar L_7; L_7 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_5, L_6, /*hidden argument*/NULL); V_6 = L_7; Il2CppChar L_8 = V_6; if ((((int32_t)L_8) == ((int32_t)((int32_t)37)))) { goto IL_0047; } } { Il2CppChar L_9 = V_6; if ((((int32_t)L_9) == ((int32_t)((int32_t)47)))) { goto IL_0198; } } { Il2CppChar L_10 = V_6; if ((((int32_t)L_10) == ((int32_t)((int32_t)58)))) { goto IL_00a9; } } { goto IL_01d9; } IL_0047: { bool L_11 = V_3; if (!L_11) { goto IL_0059; } } { uint16_t* L_12 = ___numbers1; int32_t L_13 = V_1; int32_t L_14 = L_13; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)); int32_t L_15 = V_0; *((int16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_12, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_14), (int32_t)2))))) = (int16_t)((int32_t)((uint16_t)L_15)); V_3 = (bool)0; } IL_0059: { int32_t L_16 = V_5; ___start2 = L_16; int32_t L_17 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1)); goto IL_006b; } IL_0065: { int32_t L_18 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)); } IL_006b: { String_t* L_19 = ___address0; int32_t L_20 = V_5; NullCheck(L_19); Il2CppChar L_21; L_21 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_19, L_20, /*hidden argument*/NULL); if ((((int32_t)L_21) == ((int32_t)((int32_t)93)))) { goto IL_0083; } } { String_t* L_22 = ___address0; int32_t L_23 = V_5; NullCheck(L_22); Il2CppChar L_24; L_24 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_22, L_23, /*hidden argument*/NULL); if ((!(((uint32_t)L_24) == ((uint32_t)((int32_t)47))))) { goto IL_0065; } } IL_0083: { String_t** L_25 = ___scopeId3; String_t* L_26 = ___address0; int32_t L_27 = ___start2; int32_t L_28 = V_5; int32_t L_29 = ___start2; NullCheck(L_26); String_t* L_30; L_30 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_26, L_27, ((int32_t)il2cpp_codegen_subtract((int32_t)L_28, (int32_t)L_29)), /*hidden argument*/NULL); *((RuntimeObject **)L_25) = (RuntimeObject *)L_30; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_25, (void*)(RuntimeObject *)L_30); goto IL_0098; } IL_0092: { int32_t L_31 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1)); } IL_0098: { String_t* L_32 = ___address0; int32_t L_33 = V_5; NullCheck(L_32); Il2CppChar L_34; L_34 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_32, L_33, /*hidden argument*/NULL); if ((!(((uint32_t)L_34) == ((uint32_t)((int32_t)93))))) { goto IL_0092; } } { goto IL_01f1; } IL_00a9: { uint16_t* L_35 = ___numbers1; int32_t L_36 = V_1; int32_t L_37 = L_36; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_37, (int32_t)1)); int32_t L_38 = V_0; *((int16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_35, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_37), (int32_t)2))))) = (int16_t)((int32_t)((uint16_t)L_38)); V_0 = 0; int32_t L_39 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_39, (int32_t)1)); String_t* L_40 = ___address0; int32_t L_41 = V_5; NullCheck(L_40); Il2CppChar L_42; L_42 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_40, L_41, /*hidden argument*/NULL); if ((!(((uint32_t)L_42) == ((uint32_t)((int32_t)58))))) { goto IL_00d4; } } { int32_t L_43 = V_1; V_2 = L_43; int32_t L_44 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1)); goto IL_00df; } IL_00d4: { int32_t L_45 = V_2; if ((((int32_t)L_45) >= ((int32_t)0))) { goto IL_00df; } } { int32_t L_46 = V_1; if ((((int32_t)L_46) < ((int32_t)6))) { goto IL_01f1; } } IL_00df: { int32_t L_47 = V_5; V_7 = L_47; goto IL_0158; } IL_00e5: { String_t* L_48 = ___address0; int32_t L_49 = V_7; NullCheck(L_48); Il2CppChar L_50; L_50 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_48, L_49, /*hidden argument*/NULL); if ((!(((uint32_t)L_50) == ((uint32_t)((int32_t)46))))) { goto IL_0152; } } { goto IL_00f9; } IL_00f3: { int32_t L_51 = V_7; V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_51, (int32_t)1)); } IL_00f9: { String_t* L_52 = ___address0; int32_t L_53 = V_7; NullCheck(L_52); Il2CppChar L_54; L_54 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_52, L_53, /*hidden argument*/NULL); if ((((int32_t)L_54) == ((int32_t)((int32_t)93)))) { goto IL_011d; } } { String_t* L_55 = ___address0; int32_t L_56 = V_7; NullCheck(L_55); Il2CppChar L_57; L_57 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_55, L_56, /*hidden argument*/NULL); if ((((int32_t)L_57) == ((int32_t)((int32_t)47)))) { goto IL_011d; } } { String_t* L_58 = ___address0; int32_t L_59 = V_7; NullCheck(L_58); Il2CppChar L_60; L_60 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_58, L_59, /*hidden argument*/NULL); if ((!(((uint32_t)L_60) == ((uint32_t)((int32_t)37))))) { goto IL_00f3; } } IL_011d: { String_t* L_61 = ___address0; int32_t L_62 = V_5; int32_t L_63 = V_7; int32_t L_64; L_64 = IPv4AddressHelper_ParseHostNumber_mA0B8E60CD5047E9A4276CB424C028F070240D29E(L_61, L_62, L_63, /*hidden argument*/NULL); V_0 = L_64; uint16_t* L_65 = ___numbers1; int32_t L_66 = V_1; int32_t L_67 = L_66; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_67, (int32_t)1)); int32_t L_68 = V_0; *((int16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_65, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_67), (int32_t)2))))) = (int16_t)((int32_t)((uint16_t)((int32_t)((int32_t)L_68>>(int32_t)((int32_t)16))))); uint16_t* L_69 = ___numbers1; int32_t L_70 = V_1; int32_t L_71 = L_70; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_71, (int32_t)1)); int32_t L_72 = V_0; *((int16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_69, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_71), (int32_t)2))))) = (int16_t)((int32_t)((uint16_t)L_72)); int32_t L_73 = V_7; V_5 = L_73; V_0 = 0; V_3 = (bool)0; goto IL_01f1; } IL_0152: { int32_t L_74 = V_7; V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_74, (int32_t)1)); } IL_0158: { String_t* L_75 = ___address0; int32_t L_76 = V_7; NullCheck(L_75); Il2CppChar L_77; L_77 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_75, L_76, /*hidden argument*/NULL); if ((((int32_t)L_77) == ((int32_t)((int32_t)93)))) { goto IL_01f1; } } { String_t* L_78 = ___address0; int32_t L_79 = V_7; NullCheck(L_78); Il2CppChar L_80; L_80 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_78, L_79, /*hidden argument*/NULL); if ((((int32_t)L_80) == ((int32_t)((int32_t)58)))) { goto IL_01f1; } } { String_t* L_81 = ___address0; int32_t L_82 = V_7; NullCheck(L_81); Il2CppChar L_83; L_83 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_81, L_82, /*hidden argument*/NULL); if ((((int32_t)L_83) == ((int32_t)((int32_t)37)))) { goto IL_01f1; } } { String_t* L_84 = ___address0; int32_t L_85 = V_7; NullCheck(L_84); Il2CppChar L_86; L_86 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_84, L_85, /*hidden argument*/NULL); if ((((int32_t)L_86) == ((int32_t)((int32_t)47)))) { goto IL_01f1; } } { int32_t L_87 = V_7; int32_t L_88 = V_5; if ((((int32_t)L_87) < ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_88, (int32_t)4))))) { goto IL_00e5; } } { goto IL_01f1; } IL_0198: { bool L_89 = V_3; if (!L_89) { goto IL_01aa; } } { uint16_t* L_90 = ___numbers1; int32_t L_91 = V_1; int32_t L_92 = L_91; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_92, (int32_t)1)); int32_t L_93 = V_0; *((int16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_90, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_92), (int32_t)2))))) = (int16_t)((int32_t)((uint16_t)L_93)); V_3 = (bool)0; } IL_01aa: { int32_t L_94 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_94, (int32_t)1)); goto IL_01cb; } IL_01b2: { int32_t L_95 = V_4; String_t* L_96 = ___address0; int32_t L_97 = V_5; NullCheck(L_96); Il2CppChar L_98; L_98 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_96, L_97, /*hidden argument*/NULL); V_4 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_95, (int32_t)((int32_t)10))), (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_98, (int32_t)((int32_t)48))))); int32_t L_99 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_99, (int32_t)1)); } IL_01cb: { String_t* L_100 = ___address0; int32_t L_101 = V_5; NullCheck(L_100); Il2CppChar L_102; L_102 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_100, L_101, /*hidden argument*/NULL); if ((!(((uint32_t)L_102) == ((uint32_t)((int32_t)93))))) { goto IL_01b2; } } { goto IL_01f1; } IL_01d9: { int32_t L_103 = V_0; String_t* L_104 = ___address0; int32_t L_105 = V_5; int32_t L_106 = L_105; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_106, (int32_t)1)); NullCheck(L_104); Il2CppChar L_107; L_107 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_104, L_106, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); int32_t L_108; L_108 = Uri_FromHex_m16E5FED0B58BA0A603C6BDDE6AA90F3C3FC78977(L_107, /*hidden argument*/NULL); V_0 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_103, (int32_t)((int32_t)16))), (int32_t)L_108)); } IL_01f1: { int32_t L_109 = V_5; String_t* L_110 = ___address0; NullCheck(L_110); int32_t L_111; L_111 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_110, /*hidden argument*/NULL); if ((((int32_t)L_109) >= ((int32_t)L_111))) { goto IL_020a; } } { String_t* L_112 = ___address0; int32_t L_113 = V_5; NullCheck(L_112); Il2CppChar L_114; L_114 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_112, L_113, /*hidden argument*/NULL); if ((!(((uint32_t)L_114) == ((uint32_t)((int32_t)93))))) { goto IL_0023; } } IL_020a: { bool L_115 = V_3; if (!L_115) { goto IL_021a; } } { uint16_t* L_116 = ___numbers1; int32_t L_117 = V_1; int32_t L_118 = L_117; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_118, (int32_t)1)); int32_t L_119 = V_0; *((int16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_116, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_118), (int32_t)2))))) = (int16_t)((int32_t)((uint16_t)L_119)); } IL_021a: { int32_t L_120 = V_2; if ((((int32_t)L_120) <= ((int32_t)0))) { goto IL_025b; } } { V_8 = 7; int32_t L_121 = V_1; V_9 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_121, (int32_t)1)); int32_t L_122 = V_1; int32_t L_123 = V_2; V_10 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_122, (int32_t)L_123)); goto IL_0256; } IL_022d: { uint16_t* L_124 = ___numbers1; int32_t L_125 = V_8; int32_t L_126 = L_125; V_8 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_126, (int32_t)1)); uint16_t* L_127 = ___numbers1; int32_t L_128 = V_9; int32_t L_129 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_127, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_128), (int32_t)2))))); *((int16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_124, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_126), (int32_t)2))))) = (int16_t)L_129; uint16_t* L_130 = ___numbers1; int32_t L_131 = V_9; int32_t L_132 = L_131; V_9 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_132, (int32_t)1)); *((int16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_130, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_132), (int32_t)2))))) = (int16_t)0; int32_t L_133 = V_10; V_10 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_133, (int32_t)1)); } IL_0256: { int32_t L_134 = V_10; if ((((int32_t)L_134) > ((int32_t)0))) { goto IL_022d; } } IL_025b: { uint16_t* L_135 = ___numbers1; int32_t L_136 = *((uint16_t*)L_135); if (L_136) { goto IL_02d2; } } { uint16_t* L_137 = ___numbers1; int32_t L_138 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_137, (int32_t)2))); if (L_138) { goto IL_02d2; } } { uint16_t* L_139 = ___numbers1; int32_t L_140 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_139, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)2), (int32_t)2))))); if (L_140) { goto IL_02d2; } } { uint16_t* L_141 = ___numbers1; int32_t L_142 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_141, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)3), (int32_t)2))))); if (L_142) { goto IL_02d2; } } { uint16_t* L_143 = ___numbers1; int32_t L_144 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_143, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)4), (int32_t)2))))); if (L_144) { goto IL_02d2; } } { uint16_t* L_145 = ___numbers1; int32_t L_146 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_145, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)5), (int32_t)2))))); if (L_146) { goto IL_029c; } } { uint16_t* L_147 = ___numbers1; int32_t L_148 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_147, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)6), (int32_t)2))))); if (L_148) { goto IL_029c; } } { uint16_t* L_149 = ___numbers1; int32_t L_150 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_149, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)7), (int32_t)2))))); if ((((int32_t)L_150) == ((int32_t)1))) { goto IL_02d0; } } IL_029c: { uint16_t* L_151 = ___numbers1; int32_t L_152 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_151, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)6), (int32_t)2))))); if ((!(((uint32_t)L_152) == ((uint32_t)((int32_t)32512))))) { goto IL_02ce; } } { uint16_t* L_153 = ___numbers1; int32_t L_154 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_153, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)7), (int32_t)2))))); if ((!(((uint32_t)L_154) == ((uint32_t)1)))) { goto IL_02ce; } } { uint16_t* L_155 = ___numbers1; int32_t L_156 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_155, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)5), (int32_t)2))))); if (!L_156) { goto IL_02cc; } } { uint16_t* L_157 = ___numbers1; int32_t L_158 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_157, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)5), (int32_t)2))))); return (bool)((((int32_t)L_158) == ((int32_t)((int32_t)65535)))? 1 : 0); } IL_02cc: { return (bool)1; } IL_02ce: { return (bool)0; } IL_02d0: { return (bool)1; } IL_02d2: { 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 #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.Configuration.IdnElement::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IdnElement__ctor_mE5135B17EC5DDC34C316193D07EB237BF54F0682 (IdnElement_t6C2600CADE323D1105CE548820AD1D696C46E9EE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IdnElement__ctor_mE5135B17EC5DDC34C316193D07EB237BF54F0682_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(IdnElement__ctor_mE5135B17EC5DDC34C316193D07EB237BF54F0682_RuntimeMethod_var); return; } } // System.UriIdnScope System.Configuration.IdnElement::get_Enabled() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IdnElement_get_Enabled_m58AF91121FC32D7CE21B4946AEB1393A60AA487A (IdnElement_t6C2600CADE323D1105CE548820AD1D696C46E9EE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IdnElement_get_Enabled_m58AF91121FC32D7CE21B4946AEB1393A60AA487A_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { il2cpp_codegen_raise_profile_exception(IdnElement_get_Enabled_m58AF91121FC32D7CE21B4946AEB1393A60AA487A_RuntimeMethod_var); il2cpp_codegen_initobj((&V_0), sizeof(int32_t)); int32_t L_0 = V_0; return L_0; } } // System.Void System.Configuration.IdnElement::set_Enabled(System.UriIdnScope) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IdnElement_set_Enabled_mD9FFFA5F342DD7A41F5B0C53B4270EA6CB2C3225 (IdnElement_t6C2600CADE323D1105CE548820AD1D696C46E9EE * __this, int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IdnElement_set_Enabled_mD9FFFA5F342DD7A41F5B0C53B4270EA6CB2C3225_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(IdnElement_set_Enabled_mD9FFFA5F342DD7A41F5B0C53B4270EA6CB2C3225_RuntimeMethod_var); return; } } // System.Configuration.ConfigurationPropertyCollection System.Configuration.IdnElement::get_Properties() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfigurationPropertyCollection_t8C098DB59DF7BA2C2A71369978F4225B92B2F59B * IdnElement_get_Properties_m4889D429A34E239BF6D968CB8093DA0F7EE7D899 (IdnElement_t6C2600CADE323D1105CE548820AD1D696C46E9EE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IdnElement_get_Properties_m4889D429A34E239BF6D968CB8093DA0F7EE7D899_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(IdnElement_get_Properties_m4889D429A34E239BF6D968CB8093DA0F7EE7D899_RuntimeMethod_var); return (ConfigurationPropertyCollection_t8C098DB59DF7BA2C2A71369978F4225B92B2F59B *)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.Configuration.IgnoreSectionHandler::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IgnoreSectionHandler__ctor_mF19E118D092662032FEA38FA9A311157304FAEBE (IgnoreSectionHandler_t6862843DEA1A377EA94DB541DEFA7814555A5CFB * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IgnoreSectionHandler__ctor_mF19E118D092662032FEA38FA9A311157304FAEBE_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(IgnoreSectionHandler__ctor_mF19E118D092662032FEA38FA9A311157304FAEBE_RuntimeMethod_var); return; } } // System.Object System.Configuration.IgnoreSectionHandler::Create(System.Object,System.Object,System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * IgnoreSectionHandler_Create_m410522C5AB168AB9F5AEF8179B3AD81FC9089B4A (IgnoreSectionHandler_t6862843DEA1A377EA94DB541DEFA7814555A5CFB * __this, RuntimeObject * ___parent0, RuntimeObject * ___configContext1, XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 * ___section2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IgnoreSectionHandler_Create_m410522C5AB168AB9F5AEF8179B3AD81FC9089B4A_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(IgnoreSectionHandler_Create_m410522C5AB168AB9F5AEF8179B3AD81FC9089B4A_RuntimeMethod_var); return 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.ComponentModel.ImmutableObjectAttribute::.ctor(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImmutableObjectAttribute__ctor_mFC9EE18E32BC0FD906A22E39D3ED044F303B192E (ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A * __this, bool ___immutable0, const RuntimeMethod* method) { { __this->set_immutable_3((bool)1); Attribute__ctor_m5C1862A7DFC2C25A4797A8C5F681FBB5CB53ECE1(__this, /*hidden argument*/NULL); bool L_0 = ___immutable0; __this->set_immutable_3(L_0); return; } } // System.Boolean System.ComponentModel.ImmutableObjectAttribute::get_Immutable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ImmutableObjectAttribute_get_Immutable_m5429A55E126E25C10027E1547DE417EE8D78D466 (ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_immutable_3(); return L_0; } } // System.Boolean System.ComponentModel.ImmutableObjectAttribute::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ImmutableObjectAttribute_Equals_m174F7374A18E49F675A9D5A24A71DB94A360787A (ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A * V_0 = NULL; { RuntimeObject * L_0 = ___obj0; if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A *)__this)))) { goto IL_0006; } } { return (bool)1; } IL_0006: { RuntimeObject * L_1 = ___obj0; V_0 = ((ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A *)IsInstSealed((RuntimeObject*)L_1, ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A_il2cpp_TypeInfo_var)); ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A * L_2 = V_0; if (!L_2) { goto IL_001f; } } { ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A * L_3 = V_0; NullCheck(L_3); bool L_4; L_4 = ImmutableObjectAttribute_get_Immutable_m5429A55E126E25C10027E1547DE417EE8D78D466_inline(L_3, /*hidden argument*/NULL); bool L_5 = __this->get_immutable_3(); return (bool)((((int32_t)L_4) == ((int32_t)L_5))? 1 : 0); } IL_001f: { return (bool)0; } } // System.Int32 System.ComponentModel.ImmutableObjectAttribute::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ImmutableObjectAttribute_GetHashCode_m45C1AC808002BA8DE944584C17EAF01496E61F6D (ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A * __this, const RuntimeMethod* method) { { int32_t L_0; L_0 = Attribute_GetHashCode_m46EC3256A8DDAC7AC7576362EB50ABD0F83123B4(__this, /*hidden argument*/NULL); return L_0; } } // System.Boolean System.ComponentModel.ImmutableObjectAttribute::IsDefaultAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ImmutableObjectAttribute_IsDefaultAttribute_m3FE1CE00533A6093D2BC10CE723A1403DF2DBBED (ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A_il2cpp_TypeInfo_var); ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A * L_0 = ((ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A_StaticFields*)il2cpp_codegen_static_fields_for(ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A_il2cpp_TypeInfo_var))->get_Default_2(); bool L_1; L_1 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, __this, L_0); return L_1; } } // System.Void System.ComponentModel.ImmutableObjectAttribute::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImmutableObjectAttribute__cctor_m6E0A3436299DB57FC599059477A748DED092CFD6 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A * L_0 = (ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A *)il2cpp_codegen_object_new(ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A_il2cpp_TypeInfo_var); ImmutableObjectAttribute__ctor_mFC9EE18E32BC0FD906A22E39D3ED044F303B192E(L_0, (bool)1, /*hidden argument*/NULL); ((ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A_StaticFields*)il2cpp_codegen_static_fields_for(ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A_il2cpp_TypeInfo_var))->set_Yes_0(L_0); ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A * L_1 = (ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A *)il2cpp_codegen_object_new(ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A_il2cpp_TypeInfo_var); ImmutableObjectAttribute__ctor_mFC9EE18E32BC0FD906A22E39D3ED044F303B192E(L_1, (bool)0, /*hidden argument*/NULL); ((ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A_StaticFields*)il2cpp_codegen_static_fields_for(ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A_il2cpp_TypeInfo_var))->set_No_1(L_1); ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A * L_2 = ((ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A_StaticFields*)il2cpp_codegen_static_fields_for(ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A_il2cpp_TypeInfo_var))->get_No_1(); ((ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A_StaticFields*)il2cpp_codegen_static_fields_for(ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A_il2cpp_TypeInfo_var))->set_Default_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 // System.Void System.ComponentModel.InheritanceAttribute::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InheritanceAttribute__ctor_m494B05FB5E7BF9B6583ACDDA86AC3D1713863521 (InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Attribute__ctor_m5C1862A7DFC2C25A4797A8C5F681FBB5CB53ECE1(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74_il2cpp_TypeInfo_var); InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 * L_0 = ((InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74_StaticFields*)il2cpp_codegen_static_fields_for(InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74_il2cpp_TypeInfo_var))->get_Default_4(); NullCheck(L_0); int32_t L_1 = L_0->get_inheritanceLevel_0(); __this->set_inheritanceLevel_0(L_1); return; } } // System.Void System.ComponentModel.InheritanceAttribute::.ctor(System.ComponentModel.InheritanceLevel) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InheritanceAttribute__ctor_m9BAA8FA34233525EACEF10FA37587D861182D46F (InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 * __this, int32_t ___inheritanceLevel0, const RuntimeMethod* method) { { Attribute__ctor_m5C1862A7DFC2C25A4797A8C5F681FBB5CB53ECE1(__this, /*hidden argument*/NULL); int32_t L_0 = ___inheritanceLevel0; __this->set_inheritanceLevel_0(L_0); return; } } // System.ComponentModel.InheritanceLevel System.ComponentModel.InheritanceAttribute::get_InheritanceLevel() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InheritanceAttribute_get_InheritanceLevel_mB637DB7D7A747B7DC3C79128F4EFE1AEC4503ABD (InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_inheritanceLevel_0(); return L_0; } } // System.Boolean System.ComponentModel.InheritanceAttribute::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InheritanceAttribute_Equals_mA058E383D8BE1EDDDDCFACD50FF2BA9B0C51E7BE (InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 *)__this)))) { goto IL_0006; } } { return (bool)1; } IL_0006: { RuntimeObject * L_1 = ___value0; if (((InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 *)IsInstSealed((RuntimeObject*)L_1, InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74_il2cpp_TypeInfo_var))) { goto IL_0010; } } { return (bool)0; } IL_0010: { RuntimeObject * L_2 = ___value0; NullCheck(((InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 *)CastclassSealed((RuntimeObject*)L_2, InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74_il2cpp_TypeInfo_var))); int32_t L_3; L_3 = InheritanceAttribute_get_InheritanceLevel_mB637DB7D7A747B7DC3C79128F4EFE1AEC4503ABD_inline(((InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 *)CastclassSealed((RuntimeObject*)L_2, InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); int32_t L_4 = __this->get_inheritanceLevel_0(); return (bool)((((int32_t)L_3) == ((int32_t)L_4))? 1 : 0); } } // System.Int32 System.ComponentModel.InheritanceAttribute::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InheritanceAttribute_GetHashCode_m7397383DC14A6A752A681AC80865A2D2EB298D1D (InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 * __this, const RuntimeMethod* method) { { int32_t L_0; L_0 = Attribute_GetHashCode_m46EC3256A8DDAC7AC7576362EB50ABD0F83123B4(__this, /*hidden argument*/NULL); return L_0; } } // System.Boolean System.ComponentModel.InheritanceAttribute::IsDefaultAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InheritanceAttribute_IsDefaultAttribute_mA4ABFAA3B9FE4ADD3D7723121DB3A02A013678F4 (InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74_il2cpp_TypeInfo_var); InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 * L_0 = ((InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74_StaticFields*)il2cpp_codegen_static_fields_for(InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74_il2cpp_TypeInfo_var))->get_Default_4(); bool L_1; L_1 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, __this, L_0); return L_1; } } // System.String System.ComponentModel.InheritanceAttribute::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InheritanceAttribute_ToString_mF93414DE983BD27916C80271E4B385ED8C168DB7 (InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InheritanceLevel_tAAECFEC706E84502DA3CCE8B6444FF39C789A7E0_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InheritanceLevel_tAAECFEC706E84502DA3CCE8B6444FF39C789A7E0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeDescriptor_t7B173A6626B330AB5B77345C4DE4AB6C7B38CA6F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_0 = { reinterpret_cast (InheritanceLevel_tAAECFEC706E84502DA3CCE8B6444FF39C789A7E0_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1; L_1 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_t7B173A6626B330AB5B77345C4DE4AB6C7B38CA6F_il2cpp_TypeInfo_var); TypeConverter_t004F185B630F00F509F08BD8F8D82471867323B4 * L_2; L_2 = TypeDescriptor_GetConverter_m4A087A264082284312079152F6E572EB7B92BDC3(L_1, /*hidden argument*/NULL); int32_t L_3; L_3 = InheritanceAttribute_get_InheritanceLevel_mB637DB7D7A747B7DC3C79128F4EFE1AEC4503ABD_inline(__this, /*hidden argument*/NULL); int32_t L_4 = L_3; RuntimeObject * L_5 = Box(InheritanceLevel_tAAECFEC706E84502DA3CCE8B6444FF39C789A7E0_il2cpp_TypeInfo_var, &L_4); NullCheck(L_2); String_t* L_6; L_6 = TypeConverter_ConvertToString_m8A78AD655B39CC8CB93FA00672E8ACABD67DFC12(L_2, L_5, /*hidden argument*/NULL); return L_6; } } // System.Void System.ComponentModel.InheritanceAttribute::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InheritanceAttribute__cctor_m9CD8BA7E210A7CB4CFF170E640F2124C38D994D5 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 * L_0 = (InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 *)il2cpp_codegen_object_new(InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74_il2cpp_TypeInfo_var); InheritanceAttribute__ctor_m9BAA8FA34233525EACEF10FA37587D861182D46F(L_0, 1, /*hidden argument*/NULL); ((InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74_StaticFields*)il2cpp_codegen_static_fields_for(InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74_il2cpp_TypeInfo_var))->set_Inherited_1(L_0); InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 * L_1 = (InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 *)il2cpp_codegen_object_new(InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74_il2cpp_TypeInfo_var); InheritanceAttribute__ctor_m9BAA8FA34233525EACEF10FA37587D861182D46F(L_1, 2, /*hidden argument*/NULL); ((InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74_StaticFields*)il2cpp_codegen_static_fields_for(InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74_il2cpp_TypeInfo_var))->set_InheritedReadOnly_2(L_1); InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 * L_2 = (InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 *)il2cpp_codegen_object_new(InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74_il2cpp_TypeInfo_var); InheritanceAttribute__ctor_m9BAA8FA34233525EACEF10FA37587D861182D46F(L_2, 3, /*hidden argument*/NULL); ((InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74_StaticFields*)il2cpp_codegen_static_fields_for(InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74_il2cpp_TypeInfo_var))->set_NotInherited_3(L_2); InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 * L_3 = ((InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74_StaticFields*)il2cpp_codegen_static_fields_for(InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74_il2cpp_TypeInfo_var))->get_NotInherited_3(); ((InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74_StaticFields*)il2cpp_codegen_static_fields_for(InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74_il2cpp_TypeInfo_var))->set_Default_4(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 #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.ComponentModel.InitializationEventAttribute::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InitializationEventAttribute__ctor_m30A1B35AA76A1765138801DDB0A82976135ABAA6 (InitializationEventAttribute_t8EC5F3A9EA61CFFB1C75FBFF2F0366610D1A164B * __this, String_t* ___eventName0, const RuntimeMethod* method) { { Attribute__ctor_m5C1862A7DFC2C25A4797A8C5F681FBB5CB53ECE1(__this, /*hidden argument*/NULL); String_t* L_0 = ___eventName0; __this->set_eventName_0(L_0); return; } } // System.String System.ComponentModel.InitializationEventAttribute::get_EventName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InitializationEventAttribute_get_EventName_mE8FB4FBB2ACCEE0DAB268049ACB2385909DFA17B (InitializationEventAttribute_t8EC5F3A9EA61CFFB1C75FBFF2F0366610D1A164B * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_eventName_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.ComponentModel.InstallerTypeAttribute::.ctor(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InstallerTypeAttribute__ctor_mE492A90F9392582F77947CD319F3CD86C3A0D53B (InstallerTypeAttribute_t52B83CBEE3CC5944413BC7C3EC9CA829F4A83A6B * __this, Type_t * ___installerType0, const RuntimeMethod* method) { { Attribute__ctor_m5C1862A7DFC2C25A4797A8C5F681FBB5CB53ECE1(__this, /*hidden argument*/NULL); Type_t * L_0 = ___installerType0; NullCheck(L_0); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Type::get_AssemblyQualifiedName() */, L_0); __this->set__typeName_0(L_1); return; } } // System.Void System.ComponentModel.InstallerTypeAttribute::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InstallerTypeAttribute__ctor_mB21EE31AB42EAB13F7B404941291F117FD6DD1BC (InstallerTypeAttribute_t52B83CBEE3CC5944413BC7C3EC9CA829F4A83A6B * __this, String_t* ___typeName0, const RuntimeMethod* method) { { Attribute__ctor_m5C1862A7DFC2C25A4797A8C5F681FBB5CB53ECE1(__this, /*hidden argument*/NULL); String_t* L_0 = ___typeName0; __this->set__typeName_0(L_0); return; } } // System.Type System.ComponentModel.InstallerTypeAttribute::get_InstallerType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * InstallerTypeAttribute_get_InstallerType_m10775683A65CBFDEAE4F8F4F97023D0C85217C55 (InstallerTypeAttribute_t52B83CBEE3CC5944413BC7C3EC9CA829F4A83A6B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InstallerTypeAttribute_get_InstallerType_m10775683A65CBFDEAE4F8F4F97023D0C85217C55_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_GetType_m2D692327E10692E11116805CC604CD47F144A9E4_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = __this->get__typeName_0(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1; L_1 = il2cpp_codegen_get_type(Type_GetType_m2D692327E10692E11116805CC604CD47F144A9E4_RuntimeMethod_var, L_0, InstallerTypeAttribute_get_InstallerType_m10775683A65CBFDEAE4F8F4F97023D0C85217C55_RuntimeMethod_var); return L_1; } } // System.Boolean System.ComponentModel.InstallerTypeAttribute::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InstallerTypeAttribute_Equals_mEA7A56F426C6D10F946A95CFFE4C76183B5927B2 (InstallerTypeAttribute_t52B83CBEE3CC5944413BC7C3EC9CA829F4A83A6B * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InstallerTypeAttribute_t52B83CBEE3CC5944413BC7C3EC9CA829F4A83A6B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } InstallerTypeAttribute_t52B83CBEE3CC5944413BC7C3EC9CA829F4A83A6B * V_0 = NULL; { RuntimeObject * L_0 = ___obj0; if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(InstallerTypeAttribute_t52B83CBEE3CC5944413BC7C3EC9CA829F4A83A6B *)__this)))) { goto IL_0006; } } { return (bool)1; } IL_0006: { RuntimeObject * L_1 = ___obj0; V_0 = ((InstallerTypeAttribute_t52B83CBEE3CC5944413BC7C3EC9CA829F4A83A6B *)IsInstClass((RuntimeObject*)L_1, InstallerTypeAttribute_t52B83CBEE3CC5944413BC7C3EC9CA829F4A83A6B_il2cpp_TypeInfo_var)); InstallerTypeAttribute_t52B83CBEE3CC5944413BC7C3EC9CA829F4A83A6B * L_2 = V_0; if (!L_2) { goto IL_0022; } } { InstallerTypeAttribute_t52B83CBEE3CC5944413BC7C3EC9CA829F4A83A6B * L_3 = V_0; NullCheck(L_3); String_t* L_4 = L_3->get__typeName_0(); String_t* L_5 = __this->get__typeName_0(); bool L_6; L_6 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_4, L_5, /*hidden argument*/NULL); return L_6; } IL_0022: { return (bool)0; } } // System.Int32 System.ComponentModel.InstallerTypeAttribute::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InstallerTypeAttribute_GetHashCode_mD1E43C4D203DEFFEB843D10070DB9D0F37E1C0BB (InstallerTypeAttribute_t52B83CBEE3CC5944413BC7C3EC9CA829F4A83A6B * __this, const RuntimeMethod* method) { { int32_t L_0; L_0 = Attribute_GetHashCode_m46EC3256A8DDAC7AC7576362EB50ABD0F83123B4(__this, /*hidden argument*/NULL); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.String System.ComponentModel.InstanceCreationEditor::get_Text() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InstanceCreationEditor_get_Text_m360A62C1F252CFA5FA3D0EAE2D66995FC8020CDB (InstanceCreationEditor_t22B63469633720EF22CB85610016675F525660EF * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFB7BF4A254AD60EE812B91ECBC97ED1A438EEB7F); s_Il2CppMethodInitialized = true; } { String_t* L_0; L_0 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(_stringLiteralFB7BF4A254AD60EE812B91ECBC97ED1A438EEB7F, /*hidden argument*/NULL); return L_0; } } // System.Void System.ComponentModel.InstanceCreationEditor::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InstanceCreationEditor__ctor_m4CF5A17F512692E877FB5826A2259F81192A9F6B (InstanceCreationEditor_t22B63469633720EF22CB85610016675F525660EF * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ComponentModel.Design.Serialization.InstanceDescriptor::.ctor(System.Reflection.MemberInfo,System.Collections.ICollection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InstanceDescriptor__ctor_m85C5E50209E04E10F4A808758DD4B7DF5A9ECDC4 (InstanceDescriptor_tC4566EF05EA27C1ADEF2ACC405AA2ADEB7A31C81 * __this, MemberInfo_t * ___member0, RuntimeObject* ___arguments1, const RuntimeMethod* method) { { MemberInfo_t * L_0 = ___member0; RuntimeObject* L_1 = ___arguments1; InstanceDescriptor__ctor_m6DBEE7486D6D8CD230607B73C8BC078F45282E9A(__this, L_0, L_1, (bool)1, /*hidden argument*/NULL); return; } } // System.Void System.ComponentModel.Design.Serialization.InstanceDescriptor::.ctor(System.Reflection.MemberInfo,System.Collections.ICollection,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InstanceDescriptor__ctor_m6DBEE7486D6D8CD230607B73C8BC078F45282E9A (InstanceDescriptor_tC4566EF05EA27C1ADEF2ACC405AA2ADEB7A31C81 * __this, MemberInfo_t * ___member0, RuntimeObject* ___arguments1, bool ___isComplete2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FieldInfo_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MethodInfo_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyInfo_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_0 = NULL; ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * V_1 = NULL; MethodInfo_t * V_2 = NULL; MethodInfo_t * V_3 = NULL; PropertyInfo_t * G_B21_0 = NULL; PropertyInfo_t * G_B20_0 = NULL; { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); MemberInfo_t * L_0 = ___member0; __this->set_member_0(L_0); bool L_1 = ___isComplete2; __this->set_isComplete_2(L_1); RuntimeObject* L_2 = ___arguments1; if (L_2) { goto IL_0025; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)0); __this->set_arguments_1((RuntimeObject*)L_3); goto IL_0040; } IL_0025: { RuntimeObject* L_4 = ___arguments1; NullCheck(L_4); int32_t L_5; L_5 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var, L_4); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_6 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)L_5); V_0 = L_6; RuntimeObject* L_7 = ___arguments1; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_8 = V_0; NullCheck(L_7); InterfaceActionInvoker2< RuntimeArray *, int32_t >::Invoke(0 /* System.Void System.Collections.ICollection::CopyTo(System.Array,System.Int32) */, ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var, L_7, (RuntimeArray *)(RuntimeArray *)L_8, 0); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_9 = V_0; __this->set_arguments_1((RuntimeObject*)L_9); } IL_0040: { MemberInfo_t * L_10 = ___member0; if (!((FieldInfo_t *)IsInstClass((RuntimeObject*)L_10, FieldInfo_t_il2cpp_TypeInfo_var))) { goto IL_0085; } } { MemberInfo_t * L_11 = ___member0; NullCheck(((FieldInfo_t *)CastclassClass((RuntimeObject*)L_11, FieldInfo_t_il2cpp_TypeInfo_var))); bool L_12; L_12 = FieldInfo_get_IsStatic_mE36F3A5B2DFF613C704AA56989D90D72760391EB(((FieldInfo_t *)CastclassClass((RuntimeObject*)L_11, FieldInfo_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_12) { goto IL_0065; } } { String_t* L_13; L_13 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA60E60EC4C02F596452F32896DDBB76C73DC4BC9)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_14 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_14, L_13, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InstanceDescriptor__ctor_m6DBEE7486D6D8CD230607B73C8BC078F45282E9A_RuntimeMethod_var))); } IL_0065: { RuntimeObject* L_15 = __this->get_arguments_1(); NullCheck(L_15); int32_t L_16; L_16 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var, L_15); if (!L_16) { goto IL_016d; } } { String_t* L_17; L_17 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral211A2CDAF615EAE8B65611C744230B2D6943CBDB)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_18 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_18, L_17, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InstanceDescriptor__ctor_m6DBEE7486D6D8CD230607B73C8BC078F45282E9A_RuntimeMethod_var))); } IL_0085: { MemberInfo_t * L_19 = ___member0; if (!((ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B *)IsInstClass((RuntimeObject*)L_19, ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B_il2cpp_TypeInfo_var))) { goto IL_00d4; } } { MemberInfo_t * L_20 = ___member0; V_1 = ((ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B *)CastclassClass((RuntimeObject*)L_20, ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B_il2cpp_TypeInfo_var)); ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * L_21 = V_1; NullCheck(L_21); bool L_22; L_22 = MethodBase_get_IsStatic_mDFDF51EDFE5DBDD5FE942564A1F56E3C7E3DE43F(L_21, /*hidden argument*/NULL); if (!L_22) { goto IL_00ac; } } { String_t* L_23; L_23 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8D6DABB36F739F10886513F808FB1CE72EEE5547)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_24 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_24, L_23, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InstanceDescriptor__ctor_m6DBEE7486D6D8CD230607B73C8BC078F45282E9A_RuntimeMethod_var))); } IL_00ac: { RuntimeObject* L_25 = __this->get_arguments_1(); NullCheck(L_25); int32_t L_26; L_26 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var, L_25); ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * L_27 = V_1; NullCheck(L_27); ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* L_28; L_28 = VirtualFuncInvoker0< ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* >::Invoke(19 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_27); NullCheck(L_28); if ((((int32_t)L_26) == ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_28)->max_length)))))) { goto IL_016d; } } { String_t* L_29; L_29 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral211A2CDAF615EAE8B65611C744230B2D6943CBDB)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_30 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_30, L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InstanceDescriptor__ctor_m6DBEE7486D6D8CD230607B73C8BC078F45282E9A_RuntimeMethod_var))); } IL_00d4: { MemberInfo_t * L_31 = ___member0; if (!((MethodInfo_t *)IsInstClass((RuntimeObject*)L_31, MethodInfo_t_il2cpp_TypeInfo_var))) { goto IL_0120; } } { MemberInfo_t * L_32 = ___member0; V_2 = ((MethodInfo_t *)CastclassClass((RuntimeObject*)L_32, MethodInfo_t_il2cpp_TypeInfo_var)); MethodInfo_t * L_33 = V_2; NullCheck(L_33); bool L_34; L_34 = MethodBase_get_IsStatic_mDFDF51EDFE5DBDD5FE942564A1F56E3C7E3DE43F(L_33, /*hidden argument*/NULL); if (L_34) { goto IL_00fb; } } { String_t* L_35; L_35 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA60E60EC4C02F596452F32896DDBB76C73DC4BC9)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_36 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_36, L_35, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_36, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InstanceDescriptor__ctor_m6DBEE7486D6D8CD230607B73C8BC078F45282E9A_RuntimeMethod_var))); } IL_00fb: { RuntimeObject* L_37 = __this->get_arguments_1(); NullCheck(L_37); int32_t L_38; L_38 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var, L_37); MethodInfo_t * L_39 = V_2; NullCheck(L_39); ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* L_40; L_40 = VirtualFuncInvoker0< ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* >::Invoke(19 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_39); NullCheck(L_40); if ((((int32_t)L_38) == ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_40)->max_length)))))) { goto IL_016d; } } { String_t* L_41; L_41 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral211A2CDAF615EAE8B65611C744230B2D6943CBDB)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_42 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_42, L_41, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_42, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InstanceDescriptor__ctor_m6DBEE7486D6D8CD230607B73C8BC078F45282E9A_RuntimeMethod_var))); } IL_0120: { MemberInfo_t * L_43 = ___member0; if (!((PropertyInfo_t *)IsInstClass((RuntimeObject*)L_43, PropertyInfo_t_il2cpp_TypeInfo_var))) { goto IL_016d; } } { MemberInfo_t * L_44 = ___member0; PropertyInfo_t * L_45 = ((PropertyInfo_t *)CastclassClass((RuntimeObject*)L_44, PropertyInfo_t_il2cpp_TypeInfo_var)); NullCheck(L_45); bool L_46; L_46 = VirtualFuncInvoker0< bool >::Invoke(19 /* System.Boolean System.Reflection.PropertyInfo::get_CanRead() */, L_45); G_B20_0 = L_45; if (L_46) { G_B21_0 = L_45; goto IL_0146; } } { String_t* L_47; L_47 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral28D16C61E1BADF2B97B5BFF59E15883298B4F87F)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_48 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_48, L_47, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_48, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InstanceDescriptor__ctor_m6DBEE7486D6D8CD230607B73C8BC078F45282E9A_RuntimeMethod_var))); } IL_0146: { NullCheck(G_B21_0); MethodInfo_t * L_49; L_49 = PropertyInfo_GetGetMethod_mF4C45BCBA7BFBFF2F4E933A9F588D8BF9656EE00(G_B21_0, /*hidden argument*/NULL); V_3 = L_49; MethodInfo_t * L_50 = V_3; bool L_51; L_51 = MethodInfo_op_Inequality_mDE1DAA5D330E9C975AC6423FC2D06862637BE68D(L_50, (MethodInfo_t *)NULL, /*hidden argument*/NULL); if (!L_51) { goto IL_016d; } } { MethodInfo_t * L_52 = V_3; NullCheck(L_52); bool L_53; L_53 = MethodBase_get_IsStatic_mDFDF51EDFE5DBDD5FE942564A1F56E3C7E3DE43F(L_52, /*hidden argument*/NULL); if (L_53) { goto IL_016d; } } { String_t* L_54; L_54 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA60E60EC4C02F596452F32896DDBB76C73DC4BC9)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_55 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_55, L_54, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_55, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InstanceDescriptor__ctor_m6DBEE7486D6D8CD230607B73C8BC078F45282E9A_RuntimeMethod_var))); } IL_016d: { return; } } // System.Object System.ComponentModel.Design.Serialization.InstanceDescriptor::Invoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InstanceDescriptor_Invoke_m7FBD796F29EFD98E2CFEEB78C9D1AF8D564747EF (InstanceDescriptor_tC4566EF05EA27C1ADEF2ACC405AA2ADEB7A31C81 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FieldInfo_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InstanceDescriptor_tC4566EF05EA27C1ADEF2ACC405AA2ADEB7A31C81_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MethodInfo_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyInfo_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_0 = NULL; int32_t V_1 = 0; { RuntimeObject* L_0 = __this->get_arguments_1(); NullCheck(L_0); int32_t L_1; L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var, L_0); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)L_1); V_0 = L_2; RuntimeObject* L_3 = __this->get_arguments_1(); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = V_0; NullCheck(L_3); InterfaceActionInvoker2< RuntimeArray *, int32_t >::Invoke(0 /* System.Void System.Collections.ICollection::CopyTo(System.Array,System.Int32) */, ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var, L_3, (RuntimeArray *)(RuntimeArray *)L_4, 0); V_1 = 0; goto IL_0040; } IL_0022: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = V_0; int32_t L_6 = V_1; NullCheck(L_5); int32_t L_7 = L_6; RuntimeObject * L_8 = (L_5)->GetAt(static_cast(L_7)); if (!((InstanceDescriptor_tC4566EF05EA27C1ADEF2ACC405AA2ADEB7A31C81 *)IsInstSealed((RuntimeObject*)L_8, InstanceDescriptor_tC4566EF05EA27C1ADEF2ACC405AA2ADEB7A31C81_il2cpp_TypeInfo_var))) { goto IL_003c; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_9 = V_0; int32_t L_10 = V_1; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_11 = V_0; int32_t L_12 = V_1; NullCheck(L_11); int32_t L_13 = L_12; RuntimeObject * L_14 = (L_11)->GetAt(static_cast(L_13)); NullCheck(((InstanceDescriptor_tC4566EF05EA27C1ADEF2ACC405AA2ADEB7A31C81 *)CastclassSealed((RuntimeObject*)L_14, InstanceDescriptor_tC4566EF05EA27C1ADEF2ACC405AA2ADEB7A31C81_il2cpp_TypeInfo_var))); RuntimeObject * L_15; L_15 = InstanceDescriptor_Invoke_m7FBD796F29EFD98E2CFEEB78C9D1AF8D564747EF(((InstanceDescriptor_tC4566EF05EA27C1ADEF2ACC405AA2ADEB7A31C81 *)CastclassSealed((RuntimeObject*)L_14, InstanceDescriptor_tC4566EF05EA27C1ADEF2ACC405AA2ADEB7A31C81_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); NullCheck(L_9); ArrayElementTypeCheck (L_9, L_15); (L_9)->SetAt(static_cast(L_10), (RuntimeObject *)L_15); } IL_003c: { int32_t L_16 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_0040: { int32_t L_17 = V_1; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_18 = V_0; NullCheck(L_18); if ((((int32_t)L_17) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_18)->max_length)))))) { goto IL_0022; } } { MemberInfo_t * L_19 = __this->get_member_0(); if (!((ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B *)IsInstClass((RuntimeObject*)L_19, ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B_il2cpp_TypeInfo_var))) { goto IL_0065; } } { MemberInfo_t * L_20 = __this->get_member_0(); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_21 = V_0; NullCheck(((ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B *)CastclassClass((RuntimeObject*)L_20, ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B_il2cpp_TypeInfo_var))); RuntimeObject * L_22; L_22 = ConstructorInfo_Invoke_m8DF5D6F53038C7B6443EEA82D922724F39CD2906(((ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B *)CastclassClass((RuntimeObject*)L_20, ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B_il2cpp_TypeInfo_var)), L_21, /*hidden argument*/NULL); return L_22; } IL_0065: { MemberInfo_t * L_23 = __this->get_member_0(); if (!((MethodInfo_t *)IsInstClass((RuntimeObject*)L_23, MethodInfo_t_il2cpp_TypeInfo_var))) { goto IL_0085; } } { MemberInfo_t * L_24 = __this->get_member_0(); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_25 = V_0; NullCheck(((MethodInfo_t *)CastclassClass((RuntimeObject*)L_24, MethodInfo_t_il2cpp_TypeInfo_var))); RuntimeObject * L_26; L_26 = MethodBase_Invoke_m5DA5E74F34F8FFA8133445BAE0266FD54F7D4EB3(((MethodInfo_t *)CastclassClass((RuntimeObject*)L_24, MethodInfo_t_il2cpp_TypeInfo_var)), NULL, L_25, /*hidden argument*/NULL); return L_26; } IL_0085: { MemberInfo_t * L_27 = __this->get_member_0(); if (!((PropertyInfo_t *)IsInstClass((RuntimeObject*)L_27, PropertyInfo_t_il2cpp_TypeInfo_var))) { goto IL_00a5; } } { MemberInfo_t * L_28 = __this->get_member_0(); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_29 = V_0; NullCheck(((PropertyInfo_t *)CastclassClass((RuntimeObject*)L_28, PropertyInfo_t_il2cpp_TypeInfo_var))); RuntimeObject * L_30; L_30 = VirtualFuncInvoker2< RuntimeObject *, RuntimeObject *, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* >::Invoke(31 /* System.Object System.Reflection.PropertyInfo::GetValue(System.Object,System.Object[]) */, ((PropertyInfo_t *)CastclassClass((RuntimeObject*)L_28, PropertyInfo_t_il2cpp_TypeInfo_var)), NULL, L_29); return L_30; } IL_00a5: { MemberInfo_t * L_31 = __this->get_member_0(); if (!((FieldInfo_t *)IsInstClass((RuntimeObject*)L_31, FieldInfo_t_il2cpp_TypeInfo_var))) { goto IL_00c4; } } { MemberInfo_t * L_32 = __this->get_member_0(); NullCheck(((FieldInfo_t *)CastclassClass((RuntimeObject*)L_32, FieldInfo_t_il2cpp_TypeInfo_var))); RuntimeObject * L_33; L_33 = VirtualFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Object System.Reflection.FieldInfo::GetValue(System.Object) */, ((FieldInfo_t *)CastclassClass((RuntimeObject*)L_32, FieldInfo_t_il2cpp_TypeInfo_var)), NULL); return L_33; } IL_00c4: { return 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.Type System.ComponentModel.Int16Converter::get_TargetType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Int16Converter_get_TargetType_m0C3EA0A7B3296F2F0B7F225D3C1C507C44607A07 (Int16Converter_t06F8132C8D9EB4AACD2798F07FF71AA0F4D23363 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16_tD0F031114106263BB459DA1F099FF9F42691295A_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_0 = { reinterpret_cast (Int16_tD0F031114106263BB459DA1F099FF9F42691295A_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1; L_1 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_0, /*hidden argument*/NULL); return L_1; } } // System.Object System.ComponentModel.Int16Converter::FromString(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Int16Converter_FromString_mFAC67C29F5B3695381AE97464F8D59CFA27DA5E2 (Int16Converter_t06F8132C8D9EB4AACD2798F07FF71AA0F4D23363 * __this, String_t* ___value0, int32_t ___radix1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16_tD0F031114106263BB459DA1F099FF9F42691295A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; int32_t L_1 = ___radix1; IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var); int16_t L_2; L_2 = Convert_ToInt16_m596184FDE05FC12DF129949A7131FC80AD2A7A2F(L_0, L_1, /*hidden argument*/NULL); int16_t L_3 = L_2; RuntimeObject * L_4 = Box(Int16_tD0F031114106263BB459DA1F099FF9F42691295A_il2cpp_TypeInfo_var, &L_3); return L_4; } } // System.Object System.ComponentModel.Int16Converter::FromString(System.String,System.Globalization.CultureInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Int16Converter_FromString_mD1300C97C538510886A20DC0D9E08C513FB30F5D (Int16Converter_t06F8132C8D9EB4AACD2798F07FF71AA0F4D23363 * __this, String_t* ___value0, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___culture1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16_tD0F031114106263BB459DA1F099FF9F42691295A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_1 = ___culture1; int16_t L_2; L_2 = Int16_Parse_mAE47C17BE0A5C7A6B369E4DF51B07031A56FDCB8(L_0, L_1, /*hidden argument*/NULL); int16_t L_3 = L_2; RuntimeObject * L_4 = Box(Int16_tD0F031114106263BB459DA1F099FF9F42691295A_il2cpp_TypeInfo_var, &L_3); return L_4; } } // System.Object System.ComponentModel.Int16Converter::FromString(System.String,System.Globalization.NumberFormatInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Int16Converter_FromString_m2C1E9A561D5F4B2513ABC887857FAB30708E26FF (Int16Converter_t06F8132C8D9EB4AACD2798F07FF71AA0F4D23363 * __this, String_t* ___value0, NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * ___formatInfo1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16_tD0F031114106263BB459DA1F099FF9F42691295A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * L_1 = ___formatInfo1; int16_t L_2; L_2 = Int16_Parse_mE08930AF16117CC6540BD2A2C8261E72539A37C1(L_0, 7, L_1, /*hidden argument*/NULL); int16_t L_3 = L_2; RuntimeObject * L_4 = Box(Int16_tD0F031114106263BB459DA1F099FF9F42691295A_il2cpp_TypeInfo_var, &L_3); return L_4; } } // System.String System.ComponentModel.Int16Converter::ToString(System.Object,System.Globalization.NumberFormatInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int16Converter_ToString_m2D7EE3381D4185B56F88A102A755C9D98B04C848 (Int16Converter_t06F8132C8D9EB4AACD2798F07FF71AA0F4D23363 * __this, RuntimeObject * ___value0, NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * ___formatInfo1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16_tD0F031114106263BB459DA1F099FF9F42691295A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3DCC6243286938BE75C3FA773B9BA71160A2E869); s_Il2CppMethodInitialized = true; } int16_t V_0 = 0; { RuntimeObject * L_0 = ___value0; V_0 = ((*(int16_t*)((int16_t*)UnBox(L_0, Int16_tD0F031114106263BB459DA1F099FF9F42691295A_il2cpp_TypeInfo_var)))); NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * L_1 = ___formatInfo1; String_t* L_2; L_2 = Int16_ToString_m1388D477B5BC62BDDDBE9139D9629A15D78F8AFC((int16_t*)(&V_0), _stringLiteral3DCC6243286938BE75C3FA773B9BA71160A2E869, L_1, /*hidden argument*/NULL); return L_2; } } // System.Void System.ComponentModel.Int16Converter::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int16Converter__ctor_m4F4E6E68FBDBC778F893D30D9A63F3086D0C87FD (Int16Converter_t06F8132C8D9EB4AACD2798F07FF71AA0F4D23363 * __this, const RuntimeMethod* method) { { BaseNumberConverter__ctor_m18967D5B511402093936893A249438FB94D5BDA3(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Type System.ComponentModel.Int32Converter::get_TargetType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Int32Converter_get_TargetType_m36905EB7602893AC98FE799FBE5D6A1A476AF520 (Int32Converter_t7CB6D229AF03701BFDDC546C8C398AAF320BA094 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_0 = { reinterpret_cast (Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1; L_1 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_0, /*hidden argument*/NULL); return L_1; } } // System.Object System.ComponentModel.Int32Converter::FromString(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Int32Converter_FromString_m7178FEC2E845BF05982555D0714E77DC06CDA78A (Int32Converter_t7CB6D229AF03701BFDDC546C8C398AAF320BA094 * __this, String_t* ___value0, int32_t ___radix1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; int32_t L_1 = ___radix1; IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var); int32_t L_2; L_2 = Convert_ToInt32_m21526761291049AC762DEAEA073870C8A8583643(L_0, L_1, /*hidden argument*/NULL); int32_t L_3 = L_2; RuntimeObject * L_4 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_3); return L_4; } } // System.Object System.ComponentModel.Int32Converter::FromString(System.String,System.Globalization.NumberFormatInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Int32Converter_FromString_m9318D00FFCD91514C164D5E93C762027B2C7D62E (Int32Converter_t7CB6D229AF03701BFDDC546C8C398AAF320BA094 * __this, String_t* ___value0, NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * ___formatInfo1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * L_1 = ___formatInfo1; int32_t L_2; L_2 = Int32_Parse_m9A5A7D8A221A68F8C39EC308AC751704B36E86FC(L_0, 7, L_1, /*hidden argument*/NULL); int32_t L_3 = L_2; RuntimeObject * L_4 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_3); return L_4; } } // System.Object System.ComponentModel.Int32Converter::FromString(System.String,System.Globalization.CultureInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Int32Converter_FromString_mCE17D69F11740B00780291DFA36E3C8365C0A8A7 (Int32Converter_t7CB6D229AF03701BFDDC546C8C398AAF320BA094 * __this, String_t* ___value0, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___culture1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_1 = ___culture1; int32_t L_2; L_2 = Int32_Parse_mCCC6B0A23CE31124F68EF486CC61705CDE61F084(L_0, L_1, /*hidden argument*/NULL); int32_t L_3 = L_2; RuntimeObject * L_4 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_3); return L_4; } } // System.String System.ComponentModel.Int32Converter::ToString(System.Object,System.Globalization.NumberFormatInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32Converter_ToString_mF504FE7D2E4B628DCB32F7236DEBA46043E2013E (Int32Converter_t7CB6D229AF03701BFDDC546C8C398AAF320BA094 * __this, RuntimeObject * ___value0, NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * ___formatInfo1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3DCC6243286938BE75C3FA773B9BA71160A2E869); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { RuntimeObject * L_0 = ___value0; V_0 = ((*(int32_t*)((int32_t*)UnBox(L_0, Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)))); NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * L_1 = ___formatInfo1; String_t* L_2; L_2 = Int32_ToString_m246774E1922012AE787EB97743F42CB798B70CD8((int32_t*)(&V_0), _stringLiteral3DCC6243286938BE75C3FA773B9BA71160A2E869, L_1, /*hidden argument*/NULL); return L_2; } } // System.Void System.ComponentModel.Int32Converter::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int32Converter__ctor_m3A8A43E94E6267B6978193DA829E2F84189F03B1 (Int32Converter_t7CB6D229AF03701BFDDC546C8C398AAF320BA094 * __this, const RuntimeMethod* method) { { BaseNumberConverter__ctor_m18967D5B511402093936893A249438FB94D5BDA3(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Type System.ComponentModel.Int64Converter::get_TargetType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Int64Converter_get_TargetType_m4956707260729CFA9660CBB70EF4D3CD612A8E90 (Int64Converter_t397B7C232C9417FB27D70380FD5C9287819F19F5 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_0 = { reinterpret_cast (Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1; L_1 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_0, /*hidden argument*/NULL); return L_1; } } // System.Object System.ComponentModel.Int64Converter::FromString(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Int64Converter_FromString_m936B321E7232DFF0FA8A7CA24F7FA36DB4B84FED (Int64Converter_t397B7C232C9417FB27D70380FD5C9287819F19F5 * __this, String_t* ___value0, int32_t ___radix1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; int32_t L_1 = ___radix1; IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var); int64_t L_2; L_2 = Convert_ToInt64_m2BA2F84EF3C42430B6C24ED443BCF3D43771ECBE(L_0, L_1, /*hidden argument*/NULL); int64_t L_3 = L_2; RuntimeObject * L_4 = Box(Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var, &L_3); return L_4; } } // System.Object System.ComponentModel.Int64Converter::FromString(System.String,System.Globalization.NumberFormatInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Int64Converter_FromString_m817612BBD9AC013D538D1836BFAA99A7279D7CB7 (Int64Converter_t397B7C232C9417FB27D70380FD5C9287819F19F5 * __this, String_t* ___value0, NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * ___formatInfo1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * L_1 = ___formatInfo1; int64_t L_2; L_2 = Int64_Parse_mDEBD8725B503BD8627E7AF21E1F50A58DD7FCA9A(L_0, 7, L_1, /*hidden argument*/NULL); int64_t L_3 = L_2; RuntimeObject * L_4 = Box(Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var, &L_3); return L_4; } } // System.Object System.ComponentModel.Int64Converter::FromString(System.String,System.Globalization.CultureInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Int64Converter_FromString_mA024EA0F0B73CA86C337924BFEEFD1CF3CF80B61 (Int64Converter_t397B7C232C9417FB27D70380FD5C9287819F19F5 * __this, String_t* ___value0, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___culture1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_1 = ___culture1; int64_t L_2; L_2 = Int64_Parse_m8DDFA7706B4470D748A591EA89D224D608BD756C(L_0, L_1, /*hidden argument*/NULL); int64_t L_3 = L_2; RuntimeObject * L_4 = Box(Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var, &L_3); return L_4; } } // System.String System.ComponentModel.Int64Converter::ToString(System.Object,System.Globalization.NumberFormatInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int64Converter_ToString_mC0DB8DDD18E42B333421D62645C1CFE6BE651B73 (Int64Converter_t397B7C232C9417FB27D70380FD5C9287819F19F5 * __this, RuntimeObject * ___value0, NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * ___formatInfo1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3DCC6243286938BE75C3FA773B9BA71160A2E869); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; { RuntimeObject * L_0 = ___value0; V_0 = ((*(int64_t*)((int64_t*)UnBox(L_0, Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var)))); NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * L_1 = ___formatInfo1; String_t* L_2; L_2 = Int64_ToString_m7D336E8DDEB43FC06A3AEE62072C899CBD0012AE((int64_t*)(&V_0), _stringLiteral3DCC6243286938BE75C3FA773B9BA71160A2E869, L_1, /*hidden argument*/NULL); return L_2; } } // System.Void System.ComponentModel.Int64Converter::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int64Converter__ctor_m50555C51D87CC6D5E48252B0356968B0F457C3B7 (Int64Converter_t397B7C232C9417FB27D70380FD5C9287819F19F5 * __this, const RuntimeMethod* method) { { BaseNumberConverter__ctor_m18967D5B511402093936893A249438FB94D5BDA3(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.String System.ComponentModel.IntSecurity::UnsafeGetFullPath(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IntSecurity_UnsafeGetFullPath_mEA1CB1DCD0FA44E20844741D7006595B54EB5E75 (String_t* ___fileName0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Path_tF1D95B78D57C1C1211BA6633FF2AC22FD6C48921_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___fileName0; IL2CPP_RUNTIME_CLASS_INIT(Path_tF1D95B78D57C1C1211BA6633FF2AC22FD6C48921_il2cpp_TypeInfo_var); String_t* L_1; L_1 = Path_GetFullPath_m4AECE56CB0187AD8375137200EDA24AE4F317963(L_0, /*hidden argument*/NULL); return L_1; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Net.InternalException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalException__ctor_mD1CD1128C58BBD0C276E4218668A3840DB16E2BE (InternalException_tC23D90FD6F24F6AFC7163A5F8AF3D4AF817D2184 * __this, const RuntimeMethod* method) { { SystemException__ctor_m54043F92E08342467699C9618B84A119033D4B99(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.String System.IO.Ports.InternalResources::GetMessage(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InternalResources_GetMessage_m1E95E16D2202AAC52AD65854B4440BF434F8B21B (int32_t ___errorCode0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0267B2F3B4BDB5AA8909404FC7AB1094BCFC102B); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0; int32_t L_2 = ___errorCode0; int32_t L_3 = L_2; RuntimeObject * L_4 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_3); NullCheck(L_1); ArrayElementTypeCheck (L_1, L_4); (L_1)->SetAt(static_cast(0), (RuntimeObject *)L_4); String_t* L_5; L_5 = SR_GetString_m4FFAF18248A54C5B67E4760C5ED4869A87BCAD7F(_stringLiteral0267B2F3B4BDB5AA8909404FC7AB1094BCFC102B, L_1, /*hidden argument*/NULL); return L_5; } } // System.Void System.IO.Ports.InternalResources::WinIOError(System.Int32,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalResources_WinIOError_m709240F7C7166DF0C77EB74F0BDA77F2FE6ABD65 (int32_t ___errorCode0, String_t* ___str1, const RuntimeMethod* method) { { int32_t L_0 = ___errorCode0; if ((((int32_t)L_0) > ((int32_t)5))) { goto IL_0013; } } { int32_t L_1 = ___errorCode0; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)2))) > ((uint32_t)1)))) { goto IL_0028; } } { int32_t L_2 = ___errorCode0; if ((((int32_t)L_2) == ((int32_t)5))) { goto IL_005a; } } { goto IL_00ce; } IL_0013: { int32_t L_3 = ___errorCode0; if ((((int32_t)L_3) == ((int32_t)((int32_t)32)))) { goto IL_009c; } } { int32_t L_4 = ___errorCode0; if ((((int32_t)L_4) == ((int32_t)((int32_t)206)))) { goto IL_008c; } } { goto IL_00ce; } IL_0028: { String_t* L_5 = ___str1; NullCheck(L_5); int32_t L_6; L_6 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_5, /*hidden argument*/NULL); if (L_6) { goto IL_0040; } } { String_t* L_7; L_7 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral68F5F2155935F2EC916877E2EA94C47506F81B20)), /*hidden argument*/NULL); IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA * L_8 = (IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var))); IOException__ctor_m208E01C02FF2C1D6C5AA661A5816C744804E1690(L_8, L_7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InternalResources_WinIOError_m709240F7C7166DF0C77EB74F0BDA77F2FE6ABD65_RuntimeMethod_var))); } IL_0040: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_9 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_10 = L_9; String_t* L_11 = ___str1; NullCheck(L_10); ArrayElementTypeCheck (L_10, L_11); (L_10)->SetAt(static_cast(0), (RuntimeObject *)L_11); String_t* L_12; L_12 = SR_GetString_m4FFAF18248A54C5B67E4760C5ED4869A87BCAD7F(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3E025DC7CE823EE2A83000B0781D2CFD5491428B)), L_10, /*hidden argument*/NULL); IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA * L_13 = (IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var))); IOException__ctor_m208E01C02FF2C1D6C5AA661A5816C744804E1690(L_13, L_12, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InternalResources_WinIOError_m709240F7C7166DF0C77EB74F0BDA77F2FE6ABD65_RuntimeMethod_var))); } IL_005a: { String_t* L_14 = ___str1; NullCheck(L_14); int32_t L_15; L_15 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_14, /*hidden argument*/NULL); if (L_15) { goto IL_0072; } } { String_t* L_16; L_16 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9025E40445A14F4ADE59C287F22F93409FEF57BE)), /*hidden argument*/NULL); UnauthorizedAccessException_t737F79AE4901C68E935CD553A20978CEEF44F333 * L_17 = (UnauthorizedAccessException_t737F79AE4901C68E935CD553A20978CEEF44F333 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnauthorizedAccessException_t737F79AE4901C68E935CD553A20978CEEF44F333_il2cpp_TypeInfo_var))); UnauthorizedAccessException__ctor_m805F2DF539D1327A845A6B723C67CD28B40E65E4(L_17, L_16, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InternalResources_WinIOError_m709240F7C7166DF0C77EB74F0BDA77F2FE6ABD65_RuntimeMethod_var))); } IL_0072: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_18 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_19 = L_18; String_t* L_20 = ___str1; NullCheck(L_19); ArrayElementTypeCheck (L_19, L_20); (L_19)->SetAt(static_cast(0), (RuntimeObject *)L_20); String_t* L_21; L_21 = SR_GetString_m4FFAF18248A54C5B67E4760C5ED4869A87BCAD7F(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral927EAFE9C1B06D7ACE891E3B23E528655DE51252)), L_19, /*hidden argument*/NULL); UnauthorizedAccessException_t737F79AE4901C68E935CD553A20978CEEF44F333 * L_22 = (UnauthorizedAccessException_t737F79AE4901C68E935CD553A20978CEEF44F333 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnauthorizedAccessException_t737F79AE4901C68E935CD553A20978CEEF44F333_il2cpp_TypeInfo_var))); UnauthorizedAccessException__ctor_m805F2DF539D1327A845A6B723C67CD28B40E65E4(L_22, L_21, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InternalResources_WinIOError_m709240F7C7166DF0C77EB74F0BDA77F2FE6ABD65_RuntimeMethod_var))); } IL_008c: { String_t* L_23; L_23 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral623ABDA2B6020ABDB503882566B46A83AC6671A6)), /*hidden argument*/NULL); PathTooLongException_t117AA1F09A957F54EC7B0F100344E81E82AC71B7 * L_24 = (PathTooLongException_t117AA1F09A957F54EC7B0F100344E81E82AC71B7 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&PathTooLongException_t117AA1F09A957F54EC7B0F100344E81E82AC71B7_il2cpp_TypeInfo_var))); PathTooLongException__ctor_m55EEF94300422D2A4A3F371713DABEF1A2535893(L_24, L_23, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InternalResources_WinIOError_m709240F7C7166DF0C77EB74F0BDA77F2FE6ABD65_RuntimeMethod_var))); } IL_009c: { String_t* L_25 = ___str1; NullCheck(L_25); int32_t L_26; L_26 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_25, /*hidden argument*/NULL); if (L_26) { goto IL_00b4; } } { String_t* L_27; L_27 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral11517B6DAFA2A869E55EF38342ABA7263B2D836E)), /*hidden argument*/NULL); IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA * L_28 = (IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var))); IOException__ctor_m208E01C02FF2C1D6C5AA661A5816C744804E1690(L_28, L_27, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InternalResources_WinIOError_m709240F7C7166DF0C77EB74F0BDA77F2FE6ABD65_RuntimeMethod_var))); } IL_00b4: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_29 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_30 = L_29; String_t* L_31 = ___str1; NullCheck(L_30); ArrayElementTypeCheck (L_30, L_31); (L_30)->SetAt(static_cast(0), (RuntimeObject *)L_31); String_t* L_32; L_32 = SR_GetString_m4FFAF18248A54C5B67E4760C5ED4869A87BCAD7F(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF3749A23C5DBC4AC2761D24FC4A3CBA1EBB4B920)), L_30, /*hidden argument*/NULL); IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA * L_33 = (IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var))); IOException__ctor_m208E01C02FF2C1D6C5AA661A5816C744804E1690(L_33, L_32, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_33, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InternalResources_WinIOError_m709240F7C7166DF0C77EB74F0BDA77F2FE6ABD65_RuntimeMethod_var))); } IL_00ce: { int32_t L_34 = ___errorCode0; String_t* L_35; L_35 = InternalResources_GetMessage_m1E95E16D2202AAC52AD65854B4440BF434F8B21B(L_34, /*hidden argument*/NULL); int32_t L_36 = ___errorCode0; int32_t L_37; L_37 = InternalResources_MakeHRFromErrorCode_m43E00E360CBA177132FD050C0091D3018597599A(L_36, /*hidden argument*/NULL); IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA * L_38 = (IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var))); IOException__ctor_m7B348BC88E42D0F9599A1016361672DF4F77E7F3(L_38, L_35, L_37, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_38, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InternalResources_WinIOError_m709240F7C7166DF0C77EB74F0BDA77F2FE6ABD65_RuntimeMethod_var))); } } // System.Int32 System.IO.Ports.InternalResources::MakeHRFromErrorCode(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InternalResources_MakeHRFromErrorCode_m43E00E360CBA177132FD050C0091D3018597599A (int32_t ___errorCode0, const RuntimeMethod* method) { { int32_t L_0 = ___errorCode0; return ((int32_t)((int32_t)((int32_t)-2147024896)|(int32_t)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.ComponentModel.InvalidAsynchronousStateException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidAsynchronousStateException__ctor_mA335D2C8A90A269DA6A2F8345A5DF4D07DE20EC7 (InvalidAsynchronousStateException_t17D9B79C66D44A743F58704DA2691E881A3248BB * __this, const RuntimeMethod* method) { { InvalidAsynchronousStateException__ctor_m7016168F98004AE24AC16AC808E5AB3C31A3F643(__this, (String_t*)NULL, /*hidden argument*/NULL); return; } } // System.Void System.ComponentModel.InvalidAsynchronousStateException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidAsynchronousStateException__ctor_m7016168F98004AE24AC16AC808E5AB3C31A3F643 (InvalidAsynchronousStateException_t17D9B79C66D44A743F58704DA2691E881A3248BB * __this, String_t* ___message0, const RuntimeMethod* method) { { String_t* L_0 = ___message0; ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(__this, L_0, /*hidden argument*/NULL); return; } } // System.Void System.ComponentModel.InvalidAsynchronousStateException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidAsynchronousStateException__ctor_m10811D6108F173C821E4E45B8E8A263427ABDCFB (InvalidAsynchronousStateException_t17D9B79C66D44A743F58704DA2691E881A3248BB * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method) { { String_t* L_0 = ___message0; Exception_t * L_1 = ___innerException1; ArgumentException__ctor_m2D82228EC0D314063BFC7BB308A43927D1D76852(__this, L_0, L_1, /*hidden argument*/NULL); return; } } // System.Void System.ComponentModel.InvalidAsynchronousStateException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidAsynchronousStateException__ctor_m5603306D73B632B25B9EF9AA2DC7CE2003E76054 (InvalidAsynchronousStateException_t17D9B79C66D44A743F58704DA2691E881A3248BB * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method) { { SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_0 = ___info0; StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 L_1 = ___context1; ArgumentException__ctor_m95833EB3FF48C75962637E97E056E84C5F608CC5(__this, L_0, L_1, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ComponentModel.InvalidEnumArgumentException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidEnumArgumentException__ctor_m2F90ECAD9B02CAA483C6D5CE2951210DF2960942 (InvalidEnumArgumentException_t900DF12581D586D2D9538FBB6F568175243D6637 * __this, const RuntimeMethod* method) { { InvalidEnumArgumentException__ctor_m9F82770D492E88AD5D679EE8A52400E5993CD2C9(__this, (String_t*)NULL, /*hidden argument*/NULL); return; } } // System.Void System.ComponentModel.InvalidEnumArgumentException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidEnumArgumentException__ctor_m9F82770D492E88AD5D679EE8A52400E5993CD2C9 (InvalidEnumArgumentException_t900DF12581D586D2D9538FBB6F568175243D6637 * __this, String_t* ___message0, const RuntimeMethod* method) { { String_t* L_0 = ___message0; ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(__this, L_0, /*hidden argument*/NULL); return; } } // System.Void System.ComponentModel.InvalidEnumArgumentException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidEnumArgumentException__ctor_m6008D978BA3F6FA4915F78B666418CCDDB316B7B (InvalidEnumArgumentException_t900DF12581D586D2D9538FBB6F568175243D6637 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method) { { String_t* L_0 = ___message0; Exception_t * L_1 = ___innerException1; ArgumentException__ctor_m2D82228EC0D314063BFC7BB308A43927D1D76852(__this, L_0, L_1, /*hidden argument*/NULL); return; } } // System.Void System.ComponentModel.InvalidEnumArgumentException::.ctor(System.String,System.Int32,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidEnumArgumentException__ctor_mAE5068B990F9D8AD596FE95B591CA6441048D25E (InvalidEnumArgumentException_t900DF12581D586D2D9538FBB6F568175243D6637 * __this, String_t* ___argumentName0, int32_t ___invalidValue1, Type_t * ___enumClass2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral443F4C4E0724E859C348938724B926BE877FC5FE); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)3); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0; String_t* L_2 = ___argumentName0; NullCheck(L_1); ArrayElementTypeCheck (L_1, L_2); (L_1)->SetAt(static_cast(0), (RuntimeObject *)L_2); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = L_1; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_4; L_4 = CultureInfo_get_CurrentCulture_m99E5F5BD20445F2A73F7EA0014A4E783DF3840BB(/*hidden argument*/NULL); String_t* L_5; L_5 = Int32_ToString_m027A8C9419D2FE56ED5D2EE42A6F3B3CE0130471((int32_t*)(&___invalidValue1), L_4, /*hidden argument*/NULL); NullCheck(L_3); ArrayElementTypeCheck (L_3, L_5); (L_3)->SetAt(static_cast(1), (RuntimeObject *)L_5); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_6 = L_3; Type_t * L_7 = ___enumClass2; NullCheck(L_7); String_t* L_8; L_8 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_7); NullCheck(L_6); ArrayElementTypeCheck (L_6, L_8); (L_6)->SetAt(static_cast(2), (RuntimeObject *)L_8); String_t* L_9; L_9 = SR_GetString_m4FFAF18248A54C5B67E4760C5ED4869A87BCAD7F(_stringLiteral443F4C4E0724E859C348938724B926BE877FC5FE, L_6, /*hidden argument*/NULL); String_t* L_10 = ___argumentName0; ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(__this, L_9, L_10, /*hidden argument*/NULL); return; } } // System.Void System.ComponentModel.InvalidEnumArgumentException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidEnumArgumentException__ctor_mD66B8D9407ABD1314AAC88CDDD9F73CC4FAED3A1 (InvalidEnumArgumentException_t900DF12581D586D2D9538FBB6F568175243D6637 * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method) { { SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_0 = ___info0; StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 L_1 = ___context1; ArgumentException__ctor_m95833EB3FF48C75962637E97E056E84C5F608CC5(__this, L_0, L_1, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.InvariantComparer::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvariantComparer__ctor_m0B31370ECF4BF6922E8BE172354A7E6B6EFAFBDF (InvariantComparer_tE1CE2D4C00592623FA9BCEBA4990245E775A032E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_0; L_0 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL); NullCheck(L_0); CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * L_1; L_1 = VirtualFuncInvoker0< CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * >::Invoke(12 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_0); __this->set_m_compareInfo_0(L_1); return; } } // System.Int32 System.InvariantComparer::Compare(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InvariantComparer_Compare_m130AD8692128299D11AB70199E692230715087EB (InvariantComparer_tE1CE2D4C00592623FA9BCEBA4990245E775A032E * __this, RuntimeObject * ___a0, RuntimeObject * ___b1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var); 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; { RuntimeObject * L_0 = ___a0; V_0 = ((String_t*)IsInstSealed((RuntimeObject*)L_0, String_t_il2cpp_TypeInfo_var)); RuntimeObject * L_1 = ___b1; V_1 = ((String_t*)IsInstSealed((RuntimeObject*)L_1, String_t_il2cpp_TypeInfo_var)); String_t* L_2 = V_0; if (!L_2) { goto IL_0022; } } { String_t* L_3 = V_1; if (!L_3) { goto IL_0022; } } { CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * L_4 = __this->get_m_compareInfo_0(); String_t* L_5 = V_0; String_t* L_6 = V_1; NullCheck(L_4); int32_t L_7; L_7 = VirtualFuncInvoker2< int32_t, String_t*, String_t* >::Invoke(6 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String) */, L_4, L_5, L_6); return L_7; } IL_0022: { IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var); Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_8 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1(); RuntimeObject * L_9 = ___a0; RuntimeObject * L_10 = ___b1; NullCheck(L_8); int32_t L_11; L_11 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3(L_8, L_9, L_10, /*hidden argument*/NULL); return L_11; } } // System.Void System.InvariantComparer::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvariantComparer__cctor_m1258D9F48ED58AA8C557EF60ED758BAD1162B511 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InvariantComparer_tE1CE2D4C00592623FA9BCEBA4990245E775A032E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { InvariantComparer_tE1CE2D4C00592623FA9BCEBA4990245E775A032E * L_0 = (InvariantComparer_tE1CE2D4C00592623FA9BCEBA4990245E775A032E *)il2cpp_codegen_object_new(InvariantComparer_tE1CE2D4C00592623FA9BCEBA4990245E775A032E_il2cpp_TypeInfo_var); InvariantComparer__ctor_m0B31370ECF4BF6922E8BE172354A7E6B6EFAFBDF(L_0, /*hidden argument*/NULL); ((InvariantComparer_tE1CE2D4C00592623FA9BCEBA4990245E775A032E_StaticFields*)il2cpp_codegen_static_fields_for(InvariantComparer_tE1CE2D4C00592623FA9BCEBA4990245E775A032E_il2cpp_TypeInfo_var))->set_Default_1(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.Net.Configuration.Ipv6Element::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Ipv6Element__ctor_m028AE74FB04F381B2B9D34FEB50093224820B173 (Ipv6Element_t6ABD4A6C83A5FBB22931FF90A597DBEFBDCB7B68 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Ipv6Element__ctor_m028AE74FB04F381B2B9D34FEB50093224820B173_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(Ipv6Element__ctor_m028AE74FB04F381B2B9D34FEB50093224820B173_RuntimeMethod_var); return; } } // System.Boolean System.Net.Configuration.Ipv6Element::get_Enabled() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Ipv6Element_get_Enabled_mEA2799A7DD8993FAFF22F42CB54184D553860997 (Ipv6Element_t6ABD4A6C83A5FBB22931FF90A597DBEFBDCB7B68 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Ipv6Element_get_Enabled_mEA2799A7DD8993FAFF22F42CB54184D553860997_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; { il2cpp_codegen_raise_profile_exception(Ipv6Element_get_Enabled_mEA2799A7DD8993FAFF22F42CB54184D553860997_RuntimeMethod_var); il2cpp_codegen_initobj((&V_0), sizeof(bool)); bool L_0 = V_0; return L_0; } } // System.Void System.Net.Configuration.Ipv6Element::set_Enabled(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Ipv6Element_set_Enabled_m168D751984A85623BD9CEAA6947421FBB5859474 (Ipv6Element_t6ABD4A6C83A5FBB22931FF90A597DBEFBDCB7B68 * __this, bool ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Ipv6Element_set_Enabled_m168D751984A85623BD9CEAA6947421FBB5859474_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(Ipv6Element_set_Enabled_m168D751984A85623BD9CEAA6947421FBB5859474_RuntimeMethod_var); return; } } // System.Configuration.ConfigurationPropertyCollection System.Net.Configuration.Ipv6Element::get_Properties() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfigurationPropertyCollection_t8C098DB59DF7BA2C2A71369978F4225B92B2F59B * Ipv6Element_get_Properties_mD8016B80F04EF4AE6501BD889313DE91D5E00253 (Ipv6Element_t6ABD4A6C83A5FBB22931FF90A597DBEFBDCB7B68 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Ipv6Element_get_Properties_mD8016B80F04EF4AE6501BD889313DE91D5E00253_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(Ipv6Element_get_Properties_mD8016B80F04EF4AE6501BD889313DE91D5E00253_RuntimeMethod_var); return (ConfigurationPropertyCollection_t8C098DB59DF7BA2C2A71369978F4225B92B2F59B *)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.Boolean System.IriHelper::CheckIriUnicodeRange(System.Char,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IriHelper_CheckIriUnicodeRange_m5E205B2F096045DE5259E0E98A062DD0813206F6 (Il2CppChar ___unicode0, bool ___isQuery1, const RuntimeMethod* method) { { Il2CppChar L_0 = ___unicode0; if ((((int32_t)L_0) < ((int32_t)((int32_t)160)))) { goto IL_0010; } } { Il2CppChar L_1 = ___unicode0; if ((((int32_t)L_1) <= ((int32_t)((int32_t)55295)))) { goto IL_0049; } } IL_0010: { Il2CppChar L_2 = ___unicode0; if ((((int32_t)L_2) < ((int32_t)((int32_t)63744)))) { goto IL_0020; } } { Il2CppChar L_3 = ___unicode0; if ((((int32_t)L_3) <= ((int32_t)((int32_t)64975)))) { goto IL_0049; } } IL_0020: { Il2CppChar L_4 = ___unicode0; if ((((int32_t)L_4) < ((int32_t)((int32_t)65008)))) { goto IL_0030; } } { Il2CppChar L_5 = ___unicode0; if ((((int32_t)L_5) <= ((int32_t)((int32_t)65519)))) { goto IL_0049; } } IL_0030: { bool L_6 = ___isQuery1; if (!L_6) { goto IL_0047; } } { Il2CppChar L_7 = ___unicode0; if ((((int32_t)L_7) < ((int32_t)((int32_t)57344)))) { goto IL_0047; } } { Il2CppChar L_8 = ___unicode0; return (bool)((((int32_t)((((int32_t)L_8) > ((int32_t)((int32_t)63743)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0047: { return (bool)0; } IL_0049: { return (bool)1; } } // System.Boolean System.IriHelper::CheckIriUnicodeRange(System.Char,System.Char,System.Boolean&,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IriHelper_CheckIriUnicodeRange_m03144D55C396E2870F76F85B29852F8314346A1A (Il2CppChar ___highSurr0, Il2CppChar ___lowSurr1, bool* ___surrogatePair2, bool ___isQuery3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral05ECDE4FA37D99AB9C256356029BDA339AC0909A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0F4997869821EE2A85E8697700968CDB3A43E09A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral15428EFDE6CBC42BB38ECB1C1ED2BC18985A61C8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral18F30814AAC5E0346EF626D2C4D69E75BB8092D8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2BB3A73D1E65DCBE7CA53AF078C885143F1E6CB8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2BF0DF290BFCF779AD20AF65993E83C1BABDE338); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2CBA9DA268DC043D5D48F9B1A91E94AC5F76EAF8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral32A14D70913B30E357C574C847E795B24E48CAC2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral41D84AC5D8F16FBF1E5198F982B2A1BC9DA66EEE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral48AE4960538AEA6C629E58F3554B6E9A7D26D9E0); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4C5033300573C261BEFC85B31F928B42D1767A20); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5E30C21F5452337FC417E80E84D2E63331BF74BE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral62E7D3DB20849B131752FF5F49A8178D44DC3C0F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral76B42114875193483A08D74CEEFED1552FD328AC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral893234A48A938BC927582C6857B067656A459E82); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9FF7E1714A1569B390FACA3E974DC3E6F734EE44); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA49E0D7ABF2BBFCF5C0D687E40C671557E3766C7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAB4A2A1A4E24D5E7EAF8EC59DB9F81A65F47FBB0); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBAC2173B4A90E0CCDFDFF632E8EDD9EE26861557); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBB27FD8C1492058DA5D90548581B4866E1A7D640); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC59EA632EEBD5205EC137D1B018FF86AE5FC29F0); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC939E97413EFE99419879B0916E1BE14BAA53F0D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCCA42FF3A79C1E42FD11406835C7F646CD446470); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD02A34301E6D4991BF9384E388591B78D87B74D5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD325F94C66794EB0B3E8C4CEF310C06AF86E0A6D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA6B345F08D5EDFABC1A4FE87C7580A22CB2C4FB); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE11D1474ED58671D7630AF4937D80F0F3E7A5896); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEF170C3C541112A47757D834CCBAB9C979FF6DDD); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEF66B249911CEEC9157882862B05470085C28541); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF573A277D927617DD82553D63A8E5EC8F6165ECD); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFBA7DE9CE5677EA11663546DA9E63CB203A71D1B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFC9B4C75B4026AF1BA70A16680CA49724A8B5E88); s_Il2CppMethodInitialized = true; } bool V_0 = false; String_t* V_1 = NULL; { V_0 = (bool)0; bool* L_0 = ___surrogatePair2; *((int8_t*)L_0) = (int8_t)0; Il2CppChar L_1 = ___highSurr0; Il2CppChar L_2 = ___lowSurr1; IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var); bool L_3; L_3 = Char_IsSurrogatePair_m6EAA02AF7F2918866B74A89988A00373EFF50709(L_1, L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_020e; } } { bool* L_4 = ___surrogatePair2; *((int8_t*)L_4) = (int8_t)1; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_5 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)SZArrayNew(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var, (uint32_t)2); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_6 = L_5; Il2CppChar L_7 = ___highSurr0; NullCheck(L_6); (L_6)->SetAt(static_cast(0), (Il2CppChar)L_7); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_8 = L_6; Il2CppChar L_9 = ___lowSurr1; NullCheck(L_8); (L_8)->SetAt(static_cast(1), (Il2CppChar)L_9); String_t* L_10; L_10 = String_CreateString_mC7F57CE6ED768CF86591160424FE55D5CBA7C344(NULL, L_8, /*hidden argument*/NULL); V_1 = L_10; String_t* L_11 = V_1; int32_t L_12; L_12 = String_CompareOrdinal_m1C7F94040504F35C89EBC8826D77FEA81B9C2C0E(L_11, _stringLiteral2BB3A73D1E65DCBE7CA53AF078C885143F1E6CB8, /*hidden argument*/NULL); if ((((int32_t)L_12) < ((int32_t)0))) { goto IL_0047; } } { String_t* L_13 = V_1; int32_t L_14; L_14 = String_CompareOrdinal_m1C7F94040504F35C89EBC8826D77FEA81B9C2C0E(L_13, _stringLiteral893234A48A938BC927582C6857B067656A459E82, /*hidden argument*/NULL); if ((((int32_t)L_14) <= ((int32_t)0))) { goto IL_020c; } } IL_0047: { String_t* L_15 = V_1; int32_t L_16; L_16 = String_CompareOrdinal_m1C7F94040504F35C89EBC8826D77FEA81B9C2C0E(L_15, _stringLiteralCCA42FF3A79C1E42FD11406835C7F646CD446470, /*hidden argument*/NULL); if ((((int32_t)L_16) < ((int32_t)0))) { goto IL_0066; } } { String_t* L_17 = V_1; int32_t L_18; L_18 = String_CompareOrdinal_m1C7F94040504F35C89EBC8826D77FEA81B9C2C0E(L_17, _stringLiteral62E7D3DB20849B131752FF5F49A8178D44DC3C0F, /*hidden argument*/NULL); if ((((int32_t)L_18) <= ((int32_t)0))) { goto IL_020c; } } IL_0066: { String_t* L_19 = V_1; int32_t L_20; L_20 = String_CompareOrdinal_m1C7F94040504F35C89EBC8826D77FEA81B9C2C0E(L_19, _stringLiteralBB27FD8C1492058DA5D90548581B4866E1A7D640, /*hidden argument*/NULL); if ((((int32_t)L_20) < ((int32_t)0))) { goto IL_0085; } } { String_t* L_21 = V_1; int32_t L_22; L_22 = String_CompareOrdinal_m1C7F94040504F35C89EBC8826D77FEA81B9C2C0E(L_21, _stringLiteral18F30814AAC5E0346EF626D2C4D69E75BB8092D8, /*hidden argument*/NULL); if ((((int32_t)L_22) <= ((int32_t)0))) { goto IL_020c; } } IL_0085: { String_t* L_23 = V_1; int32_t L_24; L_24 = String_CompareOrdinal_m1C7F94040504F35C89EBC8826D77FEA81B9C2C0E(L_23, _stringLiteralD325F94C66794EB0B3E8C4CEF310C06AF86E0A6D, /*hidden argument*/NULL); if ((((int32_t)L_24) < ((int32_t)0))) { goto IL_00a4; } } { String_t* L_25 = V_1; int32_t L_26; L_26 = String_CompareOrdinal_m1C7F94040504F35C89EBC8826D77FEA81B9C2C0E(L_25, _stringLiteral76B42114875193483A08D74CEEFED1552FD328AC, /*hidden argument*/NULL); if ((((int32_t)L_26) <= ((int32_t)0))) { goto IL_020c; } } IL_00a4: { String_t* L_27 = V_1; int32_t L_28; L_28 = String_CompareOrdinal_m1C7F94040504F35C89EBC8826D77FEA81B9C2C0E(L_27, _stringLiteralE11D1474ED58671D7630AF4937D80F0F3E7A5896, /*hidden argument*/NULL); if ((((int32_t)L_28) < ((int32_t)0))) { goto IL_00c3; } } { String_t* L_29 = V_1; int32_t L_30; L_30 = String_CompareOrdinal_m1C7F94040504F35C89EBC8826D77FEA81B9C2C0E(L_29, _stringLiteralC59EA632EEBD5205EC137D1B018FF86AE5FC29F0, /*hidden argument*/NULL); if ((((int32_t)L_30) <= ((int32_t)0))) { goto IL_020c; } } IL_00c3: { String_t* L_31 = V_1; int32_t L_32; L_32 = String_CompareOrdinal_m1C7F94040504F35C89EBC8826D77FEA81B9C2C0E(L_31, _stringLiteral9FF7E1714A1569B390FACA3E974DC3E6F734EE44, /*hidden argument*/NULL); if ((((int32_t)L_32) < ((int32_t)0))) { goto IL_00e2; } } { String_t* L_33 = V_1; int32_t L_34; L_34 = String_CompareOrdinal_m1C7F94040504F35C89EBC8826D77FEA81B9C2C0E(L_33, _stringLiteralBAC2173B4A90E0CCDFDFF632E8EDD9EE26861557, /*hidden argument*/NULL); if ((((int32_t)L_34) <= ((int32_t)0))) { goto IL_020c; } } IL_00e2: { String_t* L_35 = V_1; int32_t L_36; L_36 = String_CompareOrdinal_m1C7F94040504F35C89EBC8826D77FEA81B9C2C0E(L_35, _stringLiteral15428EFDE6CBC42BB38ECB1C1ED2BC18985A61C8, /*hidden argument*/NULL); if ((((int32_t)L_36) < ((int32_t)0))) { goto IL_0101; } } { String_t* L_37 = V_1; int32_t L_38; L_38 = String_CompareOrdinal_m1C7F94040504F35C89EBC8826D77FEA81B9C2C0E(L_37, _stringLiteral5E30C21F5452337FC417E80E84D2E63331BF74BE, /*hidden argument*/NULL); if ((((int32_t)L_38) <= ((int32_t)0))) { goto IL_020c; } } IL_0101: { String_t* L_39 = V_1; int32_t L_40; L_40 = String_CompareOrdinal_m1C7F94040504F35C89EBC8826D77FEA81B9C2C0E(L_39, _stringLiteralDA6B345F08D5EDFABC1A4FE87C7580A22CB2C4FB, /*hidden argument*/NULL); if ((((int32_t)L_40) < ((int32_t)0))) { goto IL_0120; } } { String_t* L_41 = V_1; int32_t L_42; L_42 = String_CompareOrdinal_m1C7F94040504F35C89EBC8826D77FEA81B9C2C0E(L_41, _stringLiteral0F4997869821EE2A85E8697700968CDB3A43E09A, /*hidden argument*/NULL); if ((((int32_t)L_42) <= ((int32_t)0))) { goto IL_020c; } } IL_0120: { String_t* L_43 = V_1; int32_t L_44; L_44 = String_CompareOrdinal_m1C7F94040504F35C89EBC8826D77FEA81B9C2C0E(L_43, _stringLiteralEF66B249911CEEC9157882862B05470085C28541, /*hidden argument*/NULL); if ((((int32_t)L_44) < ((int32_t)0))) { goto IL_013f; } } { String_t* L_45 = V_1; int32_t L_46; L_46 = String_CompareOrdinal_m1C7F94040504F35C89EBC8826D77FEA81B9C2C0E(L_45, _stringLiteralC939E97413EFE99419879B0916E1BE14BAA53F0D, /*hidden argument*/NULL); if ((((int32_t)L_46) <= ((int32_t)0))) { goto IL_020c; } } IL_013f: { String_t* L_47 = V_1; int32_t L_48; L_48 = String_CompareOrdinal_m1C7F94040504F35C89EBC8826D77FEA81B9C2C0E(L_47, _stringLiteralFBA7DE9CE5677EA11663546DA9E63CB203A71D1B, /*hidden argument*/NULL); if ((((int32_t)L_48) < ((int32_t)0))) { goto IL_015e; } } { String_t* L_49 = V_1; int32_t L_50; L_50 = String_CompareOrdinal_m1C7F94040504F35C89EBC8826D77FEA81B9C2C0E(L_49, _stringLiteral2BF0DF290BFCF779AD20AF65993E83C1BABDE338, /*hidden argument*/NULL); if ((((int32_t)L_50) <= ((int32_t)0))) { goto IL_020c; } } IL_015e: { String_t* L_51 = V_1; int32_t L_52; L_52 = String_CompareOrdinal_m1C7F94040504F35C89EBC8826D77FEA81B9C2C0E(L_51, _stringLiteralAB4A2A1A4E24D5E7EAF8EC59DB9F81A65F47FBB0, /*hidden argument*/NULL); if ((((int32_t)L_52) < ((int32_t)0))) { goto IL_017d; } } { String_t* L_53 = V_1; int32_t L_54; L_54 = String_CompareOrdinal_m1C7F94040504F35C89EBC8826D77FEA81B9C2C0E(L_53, _stringLiteral48AE4960538AEA6C629E58F3554B6E9A7D26D9E0, /*hidden argument*/NULL); if ((((int32_t)L_54) <= ((int32_t)0))) { goto IL_020c; } } IL_017d: { String_t* L_55 = V_1; int32_t L_56; L_56 = String_CompareOrdinal_m1C7F94040504F35C89EBC8826D77FEA81B9C2C0E(L_55, _stringLiteralA49E0D7ABF2BBFCF5C0D687E40C671557E3766C7, /*hidden argument*/NULL); if ((((int32_t)L_56) < ((int32_t)0))) { goto IL_0199; } } { String_t* L_57 = V_1; int32_t L_58; L_58 = String_CompareOrdinal_m1C7F94040504F35C89EBC8826D77FEA81B9C2C0E(L_57, _stringLiteral05ECDE4FA37D99AB9C256356029BDA339AC0909A, /*hidden argument*/NULL); if ((((int32_t)L_58) <= ((int32_t)0))) { goto IL_020c; } } IL_0199: { String_t* L_59 = V_1; int32_t L_60; L_60 = String_CompareOrdinal_m1C7F94040504F35C89EBC8826D77FEA81B9C2C0E(L_59, _stringLiteral2CBA9DA268DC043D5D48F9B1A91E94AC5F76EAF8, /*hidden argument*/NULL); if ((((int32_t)L_60) < ((int32_t)0))) { goto IL_01b5; } } { String_t* L_61 = V_1; int32_t L_62; L_62 = String_CompareOrdinal_m1C7F94040504F35C89EBC8826D77FEA81B9C2C0E(L_61, _stringLiteral4C5033300573C261BEFC85B31F928B42D1767A20, /*hidden argument*/NULL); if ((((int32_t)L_62) <= ((int32_t)0))) { goto IL_020c; } } IL_01b5: { String_t* L_63 = V_1; int32_t L_64; L_64 = String_CompareOrdinal_m1C7F94040504F35C89EBC8826D77FEA81B9C2C0E(L_63, _stringLiteralF573A277D927617DD82553D63A8E5EC8F6165ECD, /*hidden argument*/NULL); if ((((int32_t)L_64) < ((int32_t)0))) { goto IL_01d1; } } { String_t* L_65 = V_1; int32_t L_66; L_66 = String_CompareOrdinal_m1C7F94040504F35C89EBC8826D77FEA81B9C2C0E(L_65, _stringLiteralD02A34301E6D4991BF9384E388591B78D87B74D5, /*hidden argument*/NULL); if ((((int32_t)L_66) <= ((int32_t)0))) { goto IL_020c; } } IL_01d1: { bool L_67 = ___isQuery3; if (!L_67) { goto IL_020e; } } { String_t* L_68 = V_1; int32_t L_69; L_69 = String_CompareOrdinal_m1C7F94040504F35C89EBC8826D77FEA81B9C2C0E(L_68, _stringLiteral32A14D70913B30E357C574C847E795B24E48CAC2, /*hidden argument*/NULL); if ((((int32_t)L_69) < ((int32_t)0))) { goto IL_01f0; } } { String_t* L_70 = V_1; int32_t L_71; L_71 = String_CompareOrdinal_m1C7F94040504F35C89EBC8826D77FEA81B9C2C0E(L_70, _stringLiteralFC9B4C75B4026AF1BA70A16680CA49724A8B5E88, /*hidden argument*/NULL); if ((((int32_t)L_71) <= ((int32_t)0))) { goto IL_020c; } } IL_01f0: { String_t* L_72 = V_1; int32_t L_73; L_73 = String_CompareOrdinal_m1C7F94040504F35C89EBC8826D77FEA81B9C2C0E(L_72, _stringLiteral41D84AC5D8F16FBF1E5198F982B2A1BC9DA66EEE, /*hidden argument*/NULL); if ((((int32_t)L_73) < ((int32_t)0))) { goto IL_020e; } } { String_t* L_74 = V_1; int32_t L_75; L_75 = String_CompareOrdinal_m1C7F94040504F35C89EBC8826D77FEA81B9C2C0E(L_74, _stringLiteralEF170C3C541112A47757D834CCBAB9C979FF6DDD, /*hidden argument*/NULL); if ((((int32_t)L_75) > ((int32_t)0))) { goto IL_020e; } } IL_020c: { V_0 = (bool)1; } IL_020e: { bool L_76 = V_0; return L_76; } } // System.Boolean System.IriHelper::CheckIsReserved(System.Char,System.UriComponents) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IriHelper_CheckIsReserved_m9EFA3BDFD606F7EDB5DBF0549B20BFF2E4775C7F (Il2CppChar ___ch0, int32_t ___component1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___component1; if ((((int32_t)L_0) == ((int32_t)1))) { goto IL_002b; } } { int32_t L_1 = ___component1; if ((((int32_t)L_1) == ((int32_t)2))) { goto IL_002b; } } { int32_t L_2 = ___component1; if ((((int32_t)L_2) == ((int32_t)4))) { goto IL_002b; } } { int32_t L_3 = ___component1; if ((((int32_t)L_3) == ((int32_t)8))) { goto IL_002b; } } { int32_t L_4 = ___component1; if ((((int32_t)L_4) == ((int32_t)((int32_t)16)))) { goto IL_002b; } } { int32_t L_5 = ___component1; if ((((int32_t)L_5) == ((int32_t)((int32_t)32)))) { goto IL_002b; } } { int32_t L_6 = ___component1; if ((((int32_t)L_6) == ((int32_t)((int32_t)64)))) { goto IL_002b; } } { int32_t L_7 = ___component1; if (!L_7) { goto IL_0024; } } { return (bool)0; } IL_0024: { Il2CppChar L_8 = ___ch0; IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_9; L_9 = Uri_IsGenDelim_m93EB89B013A4AE8B5C5D792EB8BEAD2BF8EC5997(L_8, /*hidden argument*/NULL); return L_9; } IL_002b: { int32_t L_10 = ___component1; if ((((int32_t)L_10) > ((int32_t)4))) { goto IL_003c; } } { int32_t L_11 = ___component1; if ((((int32_t)L_11) == ((int32_t)2))) { goto IL_0050; } } { int32_t L_12 = ___component1; if ((((int32_t)L_12) == ((int32_t)4))) { goto IL_0070; } } { goto IL_00d2; } IL_003c: { int32_t L_13 = ___component1; if ((((int32_t)L_13) == ((int32_t)((int32_t)16)))) { goto IL_0095; } } { int32_t L_14 = ___component1; if ((((int32_t)L_14) == ((int32_t)((int32_t)32)))) { goto IL_00b0; } } { int32_t L_15 = ___component1; if ((((int32_t)L_15) == ((int32_t)((int32_t)64)))) { goto IL_00c1; } } { goto IL_00d2; } IL_0050: { Il2CppChar L_16 = ___ch0; if ((((int32_t)L_16) == ((int32_t)((int32_t)47)))) { goto IL_006e; } } { Il2CppChar L_17 = ___ch0; if ((((int32_t)L_17) == ((int32_t)((int32_t)63)))) { goto IL_006e; } } { Il2CppChar L_18 = ___ch0; if ((((int32_t)L_18) == ((int32_t)((int32_t)35)))) { goto IL_006e; } } { Il2CppChar L_19 = ___ch0; if ((((int32_t)L_19) == ((int32_t)((int32_t)91)))) { goto IL_006e; } } { Il2CppChar L_20 = ___ch0; if ((((int32_t)L_20) == ((int32_t)((int32_t)93)))) { goto IL_006e; } } { Il2CppChar L_21 = ___ch0; if ((!(((uint32_t)L_21) == ((uint32_t)((int32_t)64))))) { goto IL_00d2; } } IL_006e: { return (bool)1; } IL_0070: { Il2CppChar L_22 = ___ch0; if ((((int32_t)L_22) == ((int32_t)((int32_t)58)))) { goto IL_0093; } } { Il2CppChar L_23 = ___ch0; if ((((int32_t)L_23) == ((int32_t)((int32_t)47)))) { goto IL_0093; } } { Il2CppChar L_24 = ___ch0; if ((((int32_t)L_24) == ((int32_t)((int32_t)63)))) { goto IL_0093; } } { Il2CppChar L_25 = ___ch0; if ((((int32_t)L_25) == ((int32_t)((int32_t)35)))) { goto IL_0093; } } { Il2CppChar L_26 = ___ch0; if ((((int32_t)L_26) == ((int32_t)((int32_t)91)))) { goto IL_0093; } } { Il2CppChar L_27 = ___ch0; if ((((int32_t)L_27) == ((int32_t)((int32_t)93)))) { goto IL_0093; } } { Il2CppChar L_28 = ___ch0; if ((!(((uint32_t)L_28) == ((uint32_t)((int32_t)64))))) { goto IL_00d2; } } IL_0093: { return (bool)1; } IL_0095: { Il2CppChar L_29 = ___ch0; if ((((int32_t)L_29) == ((int32_t)((int32_t)47)))) { goto IL_00ae; } } { Il2CppChar L_30 = ___ch0; if ((((int32_t)L_30) == ((int32_t)((int32_t)63)))) { goto IL_00ae; } } { Il2CppChar L_31 = ___ch0; if ((((int32_t)L_31) == ((int32_t)((int32_t)35)))) { goto IL_00ae; } } { Il2CppChar L_32 = ___ch0; if ((((int32_t)L_32) == ((int32_t)((int32_t)91)))) { goto IL_00ae; } } { Il2CppChar L_33 = ___ch0; if ((!(((uint32_t)L_33) == ((uint32_t)((int32_t)93))))) { goto IL_00d2; } } IL_00ae: { return (bool)1; } IL_00b0: { Il2CppChar L_34 = ___ch0; if ((((int32_t)L_34) == ((int32_t)((int32_t)35)))) { goto IL_00bf; } } { Il2CppChar L_35 = ___ch0; if ((((int32_t)L_35) == ((int32_t)((int32_t)91)))) { goto IL_00bf; } } { Il2CppChar L_36 = ___ch0; if ((!(((uint32_t)L_36) == ((uint32_t)((int32_t)93))))) { goto IL_00d2; } } IL_00bf: { return (bool)1; } IL_00c1: { Il2CppChar L_37 = ___ch0; if ((((int32_t)L_37) == ((int32_t)((int32_t)35)))) { goto IL_00d0; } } { Il2CppChar L_38 = ___ch0; if ((((int32_t)L_38) == ((int32_t)((int32_t)91)))) { goto IL_00d0; } } { Il2CppChar L_39 = ___ch0; if ((!(((uint32_t)L_39) == ((uint32_t)((int32_t)93))))) { goto IL_00d2; } } IL_00d0: { return (bool)1; } IL_00d2: { return (bool)0; } } // System.String System.IriHelper::EscapeUnescapeIri(System.Char*,System.Int32,System.Int32,System.UriComponents) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IriHelper_EscapeUnescapeIri_m6CABB7FC44037C0B5C18132AF5D8C55DB5C64444 (Il2CppChar* ___pInput0, int32_t ___start1, int32_t ___end2, int32_t ___component3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecoderReplacementFallback_t8DA345EC4EF3A35A2667365F691EE69408A62130_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EncoderReplacementFallback_t61E36A507D7FA8034B49F86DBE560EC77A6A8418_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IriHelper_EscapeUnescapeIri_m6CABB7FC44037C0B5C18132AF5D8C55DB5C64444_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); s_Il2CppMethodInitialized = true; } CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* V_0 = NULL; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_1 = NULL; GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 V_2; memset((&V_2), 0, sizeof(V_2)); Il2CppChar* V_3 = NULL; int32_t V_4 = 0; int32_t V_5 = 0; int32_t V_6 = 0; Il2CppChar V_7 = 0x0; bool V_8 = false; bool V_9 = false; int32_t V_10 = 0; int32_t V_11 = 0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* V_12 = NULL; int32_t V_13 = 0; int32_t V_14 = 0; Il2CppChar V_15 = 0x0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_16 = NULL; Il2CppChar* V_17 = NULL; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* V_18 = NULL; uint8_t* V_19 = NULL; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_20 = NULL; int32_t V_21 = 0; int32_t V_22 = 0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* G_B40_0 = NULL; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* G_B39_0 = NULL; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* G_B41_0 = NULL; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* G_B42_0 = NULL; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* G_B44_0 = NULL; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* G_B43_0 = NULL; Il2CppChar* G_B51_0 = NULL; Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * G_B51_1 = NULL; Il2CppChar* G_B50_0 = NULL; Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * G_B50_1 = NULL; int32_t G_B52_0 = 0; Il2CppChar* G_B52_1 = NULL; Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * G_B52_2 = NULL; { int32_t L_0 = ___end2; int32_t L_1 = ___start1; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_2 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)SZArrayNew(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1))); V_0 = L_2; V_1 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)NULL; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_3 = V_0; GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 L_4; L_4 = GCHandle_Alloc_mBF5C4C0E8605F97427BFDF96D68AACD4A4D6DDEC((RuntimeObject *)(RuntimeObject *)L_3, 3, /*hidden argument*/NULL); V_2 = L_4; intptr_t L_5; L_5 = GCHandle_AddrOfPinnedObject_m0604506F2BDCD2DC8C167FBC3BF3E965888F7589((GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 *)(&V_2), /*hidden argument*/NULL); void* L_6; L_6 = IntPtr_op_Explicit_mE8B472FDC632CBD121F7ADF4F94546D6610BACDD((intptr_t)L_5, /*hidden argument*/NULL); V_3 = (Il2CppChar*)L_6; V_4 = 0; int32_t L_7 = ___start1; V_5 = L_7; V_6 = 0; V_8 = (bool)0; V_9 = (bool)0; goto IL_03cb; } IL_0034: { V_8 = (bool)0; V_9 = (bool)0; Il2CppChar* L_8 = ___pInput0; int32_t L_9 = V_5; int32_t L_10 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_8, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_9), (int32_t)2))))); int32_t L_11 = L_10; V_7 = L_11; if ((!(((uint32_t)L_11) == ((uint32_t)((int32_t)37))))) { goto IL_022f; } } { int32_t L_12 = V_5; int32_t L_13 = ___end2; if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)2))) >= ((int32_t)L_13))) { goto IL_0215; } } { Il2CppChar* L_14 = ___pInput0; int32_t L_15 = V_5; int32_t L_16 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_14, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1))), (int32_t)2))))); Il2CppChar* L_17 = ___pInput0; int32_t L_18 = V_5; int32_t L_19 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_17, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)2))), (int32_t)2))))); IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); Il2CppChar L_20; L_20 = UriHelper_EscapedAscii_m80D926F5C8B177B5D041BBFEADEAB2363A324461(L_16, L_19, /*hidden argument*/NULL); V_7 = L_20; Il2CppChar L_21 = V_7; if ((((int32_t)L_21) == ((int32_t)((int32_t)65535)))) { goto IL_0093; } } { Il2CppChar L_22 = V_7; if ((((int32_t)L_22) == ((int32_t)((int32_t)37)))) { goto IL_0093; } } { Il2CppChar L_23 = V_7; int32_t L_24 = ___component3; bool L_25; L_25 = IriHelper_CheckIsReserved_m9EFA3BDFD606F7EDB5DBF0549B20BFF2E4775C7F(L_23, L_24, /*hidden argument*/NULL); if (L_25) { goto IL_0093; } } { Il2CppChar L_26 = V_7; IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); bool L_27; L_27 = UriHelper_IsNotSafeForUnescape_m5504A36A2CC19ABC23255896A98D9912D390107F(L_26, /*hidden argument*/NULL); if (!L_27) { goto IL_00e1; } } IL_0093: { Il2CppChar* L_28 = V_3; int32_t L_29 = V_6; int32_t L_30 = L_29; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)1)); Il2CppChar* L_31 = ___pInput0; int32_t L_32 = V_5; int32_t L_33 = L_32; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1)); int32_t L_34 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_31, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_33), (int32_t)2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_28, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_30), (int32_t)2))))) = (int16_t)L_34; Il2CppChar* L_35 = V_3; int32_t L_36 = V_6; int32_t L_37 = L_36; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_37, (int32_t)1)); Il2CppChar* L_38 = ___pInput0; int32_t L_39 = V_5; int32_t L_40 = L_39; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_40, (int32_t)1)); int32_t L_41 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_38, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_40), (int32_t)2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_35, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_37), (int32_t)2))))) = (int16_t)L_41; Il2CppChar* L_42 = V_3; int32_t L_43 = V_6; int32_t L_44 = L_43; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1)); Il2CppChar* L_45 = ___pInput0; int32_t L_46 = V_5; int32_t L_47 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_45, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_46), (int32_t)2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_42, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_44), (int32_t)2))))) = (int16_t)L_47; goto IL_03c5; } IL_00e1: { Il2CppChar L_48 = V_7; if ((((int32_t)L_48) > ((int32_t)((int32_t)127)))) { goto IL_0101; } } { Il2CppChar* L_49 = V_3; int32_t L_50 = V_6; int32_t L_51 = L_50; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_51, (int32_t)1)); Il2CppChar L_52 = V_7; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_49, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_51), (int32_t)2))))) = (int16_t)L_52; int32_t L_53 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_53, (int32_t)2)); goto IL_03c5; } IL_0101: { int32_t L_54 = V_5; V_10 = L_54; V_11 = 1; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_55 = V_1; if (L_55) { goto IL_0115; } } { int32_t L_56 = ___end2; int32_t L_57 = V_5; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_58 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_56, (int32_t)L_57))); V_1 = L_58; } IL_0115: { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_59 = V_1; Il2CppChar L_60 = V_7; NullCheck(L_59); (L_59)->SetAt(static_cast(0), (uint8_t)((int32_t)((uint8_t)L_60))); int32_t L_61 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_61, (int32_t)3)); goto IL_0178; } IL_0123: { Il2CppChar* L_62 = ___pInput0; int32_t L_63 = V_5; int32_t L_64 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_62, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_63), (int32_t)2))))); int32_t L_65 = L_64; V_7 = L_65; if ((!(((uint32_t)L_65) == ((uint32_t)((int32_t)37))))) { goto IL_017d; } } { int32_t L_66 = V_5; int32_t L_67 = ___end2; if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_66, (int32_t)2))) >= ((int32_t)L_67))) { goto IL_017d; } } { Il2CppChar* L_68 = ___pInput0; int32_t L_69 = V_5; int32_t L_70 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_68, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_69, (int32_t)1))), (int32_t)2))))); Il2CppChar* L_71 = ___pInput0; int32_t L_72 = V_5; int32_t L_73 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_71, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_72, (int32_t)2))), (int32_t)2))))); IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); Il2CppChar L_74; L_74 = UriHelper_EscapedAscii_m80D926F5C8B177B5D041BBFEADEAB2363A324461(L_70, L_73, /*hidden argument*/NULL); V_7 = L_74; Il2CppChar L_75 = V_7; if ((((int32_t)L_75) == ((int32_t)((int32_t)65535)))) { goto IL_017d; } } { Il2CppChar L_76 = V_7; if ((((int32_t)L_76) < ((int32_t)((int32_t)128)))) { goto IL_017d; } } { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_77 = V_1; int32_t L_78 = V_11; int32_t L_79 = L_78; V_11 = ((int32_t)il2cpp_codegen_add((int32_t)L_79, (int32_t)1)); Il2CppChar L_80 = V_7; NullCheck(L_77); (L_77)->SetAt(static_cast(L_79), (uint8_t)((int32_t)((uint8_t)L_80))); int32_t L_81 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_81, (int32_t)3)); } IL_0178: { int32_t L_82 = V_5; int32_t L_83 = ___end2; if ((((int32_t)L_82) < ((int32_t)L_83))) { goto IL_0123; } } IL_017d: { int32_t L_84 = V_5; V_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_84, (int32_t)1)); Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_85; L_85 = Encoding_get_UTF8_mC877FB3137BBD566AEE7B15F9BF61DC4EF8F5E5E(/*hidden argument*/NULL); NullCheck(L_85); RuntimeObject * L_86; L_86 = VirtualFuncInvoker0< RuntimeObject * >::Invoke(10 /* System.Object System.Text.Encoding::Clone() */, L_85); Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_87 = ((Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 *)CastclassClass((RuntimeObject*)L_86, Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_il2cpp_TypeInfo_var)); EncoderReplacementFallback_t61E36A507D7FA8034B49F86DBE560EC77A6A8418 * L_88 = (EncoderReplacementFallback_t61E36A507D7FA8034B49F86DBE560EC77A6A8418 *)il2cpp_codegen_object_new(EncoderReplacementFallback_t61E36A507D7FA8034B49F86DBE560EC77A6A8418_il2cpp_TypeInfo_var); EncoderReplacementFallback__ctor_m07299910DC3D3F6B9F8F37A4ADD40A500F97D1D4(L_88, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, /*hidden argument*/NULL); NullCheck(L_87); Encoding_set_EncoderFallback_m75BA39C6302BD7EFBB4A48B02C406A14789B244A(L_87, L_88, /*hidden argument*/NULL); Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_89 = L_87; DecoderReplacementFallback_t8DA345EC4EF3A35A2667365F691EE69408A62130 * L_90 = (DecoderReplacementFallback_t8DA345EC4EF3A35A2667365F691EE69408A62130 *)il2cpp_codegen_object_new(DecoderReplacementFallback_t8DA345EC4EF3A35A2667365F691EE69408A62130_il2cpp_TypeInfo_var); DecoderReplacementFallback__ctor_m7E6C273B2682E373C787568EB0BB0B2E4B6C2253(L_90, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, /*hidden argument*/NULL); NullCheck(L_89); Encoding_set_DecoderFallback_m771EA02DA99D57E19B6FC48E8C3A46F8A6D4CBB8(L_89, L_90, /*hidden argument*/NULL); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_91 = V_1; NullCheck(L_91); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_92 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)SZArrayNew(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var, (uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_91)->max_length)))); V_12 = L_92; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_93 = V_1; int32_t L_94 = V_11; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_95 = V_12; NullCheck(L_89); int32_t L_96; L_96 = VirtualFuncInvoker5< int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*, int32_t >::Invoke(27 /* System.Int32 System.Text.Encoding::GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32) */, L_89, L_93, 0, L_94, L_95, 0); V_13 = L_96; int32_t L_97 = V_13; if (!L_97) { goto IL_01e9; } } { Il2CppChar* L_98 = V_3; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_99 = V_0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_100 = V_12; int32_t L_101 = V_13; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_102 = V_1; int32_t L_103 = V_11; int32_t L_104 = ___component3; IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); UriHelper_MatchUTF8Sequence_m4A148931E07097731DC7EA68EAA933E9330BE81B((Il2CppChar*)(Il2CppChar*)L_98, L_99, (int32_t*)(&V_6), L_100, L_101, L_102, L_103, (bool)((((int32_t)L_104) == ((int32_t)((int32_t)32)))? 1 : 0), (bool)1, /*hidden argument*/NULL); goto IL_02e6; } IL_01e9: { int32_t L_105 = V_10; V_14 = L_105; goto IL_020a; } IL_01ef: { Il2CppChar* L_106 = V_3; int32_t L_107 = V_6; int32_t L_108 = L_107; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_108, (int32_t)1)); Il2CppChar* L_109 = ___pInput0; int32_t L_110 = V_14; int32_t L_111 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_109, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_110), (int32_t)2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_106, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_108), (int32_t)2))))) = (int16_t)L_111; int32_t L_112 = V_14; V_14 = ((int32_t)il2cpp_codegen_add((int32_t)L_112, (int32_t)1)); } IL_020a: { int32_t L_113 = V_14; int32_t L_114 = V_5; if ((((int32_t)L_113) <= ((int32_t)L_114))) { goto IL_01ef; } } { goto IL_02e6; } IL_0215: { Il2CppChar* L_115 = V_3; int32_t L_116 = V_6; int32_t L_117 = L_116; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_117, (int32_t)1)); Il2CppChar* L_118 = ___pInput0; int32_t L_119 = V_5; int32_t L_120 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_118, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_119), (int32_t)2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_115, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_117), (int32_t)2))))) = (int16_t)L_120; goto IL_02e6; } IL_022f: { Il2CppChar L_121 = V_7; if ((((int32_t)L_121) <= ((int32_t)((int32_t)127)))) { goto IL_02d1; } } { Il2CppChar L_122 = V_7; IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var); bool L_123; L_123 = Char_IsHighSurrogate_m7BECD1C98C902946F069D8936F8A557F1F7DFF01(L_122, /*hidden argument*/NULL); if (!L_123) { goto IL_029e; } } { int32_t L_124 = V_5; int32_t L_125 = ___end2; if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_124, (int32_t)1))) >= ((int32_t)L_125))) { goto IL_029e; } } { Il2CppChar* L_126 = ___pInput0; int32_t L_127 = V_5; int32_t L_128 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_126, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_127, (int32_t)1))), (int32_t)2))))); V_15 = L_128; Il2CppChar L_129 = V_7; Il2CppChar L_130 = V_15; int32_t L_131 = ___component3; bool L_132; L_132 = IriHelper_CheckIriUnicodeRange_m03144D55C396E2870F76F85B29852F8314346A1A(L_129, L_130, (bool*)(&V_9), (bool)((((int32_t)L_131) == ((int32_t)((int32_t)32)))? 1 : 0), /*hidden argument*/NULL); V_8 = (bool)((((int32_t)L_132) == ((int32_t)0))? 1 : 0); bool L_133 = V_8; if (L_133) { goto IL_02e6; } } { Il2CppChar* L_134 = V_3; int32_t L_135 = V_6; int32_t L_136 = L_135; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_136, (int32_t)1)); Il2CppChar* L_137 = ___pInput0; int32_t L_138 = V_5; int32_t L_139 = L_138; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_139, (int32_t)1)); int32_t L_140 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_137, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_139), (int32_t)2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_134, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_136), (int32_t)2))))) = (int16_t)L_140; Il2CppChar* L_141 = V_3; int32_t L_142 = V_6; int32_t L_143 = L_142; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_143, (int32_t)1)); Il2CppChar* L_144 = ___pInput0; int32_t L_145 = V_5; int32_t L_146 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_144, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_145), (int32_t)2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_141, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_143), (int32_t)2))))) = (int16_t)L_146; goto IL_02e6; } IL_029e: { Il2CppChar L_147 = V_7; int32_t L_148 = ___component3; bool L_149; L_149 = IriHelper_CheckIriUnicodeRange_m5E205B2F096045DE5259E0E98A062DD0813206F6(L_147, (bool)((((int32_t)L_148) == ((int32_t)((int32_t)32)))? 1 : 0), /*hidden argument*/NULL); if (!L_149) { goto IL_02cc; } } { Il2CppChar L_150 = V_7; IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_151; L_151 = Uri_IsBidiControlCharacter_m36A30E0708EE0209208B23136C2BEC9C802C697B(L_150, /*hidden argument*/NULL); if (L_151) { goto IL_02e6; } } { Il2CppChar* L_152 = V_3; int32_t L_153 = V_6; int32_t L_154 = L_153; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_154, (int32_t)1)); Il2CppChar* L_155 = ___pInput0; int32_t L_156 = V_5; int32_t L_157 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_155, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_156), (int32_t)2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_152, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_154), (int32_t)2))))) = (int16_t)L_157; goto IL_02e6; } IL_02cc: { V_8 = (bool)1; goto IL_02e6; } IL_02d1: { Il2CppChar* L_158 = V_3; int32_t L_159 = V_6; int32_t L_160 = L_159; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_160, (int32_t)1)); Il2CppChar* L_161 = ___pInput0; int32_t L_162 = V_5; int32_t L_163 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_161, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_162), (int32_t)2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_158, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_160), (int32_t)2))))) = (int16_t)L_163; } IL_02e6: { bool L_164 = V_8; if (!L_164) { goto IL_03c5; } } { int32_t L_165 = V_4; if ((((int32_t)L_165) >= ((int32_t)((int32_t)12)))) { goto IL_0357; } } { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_166 = V_0; NullCheck(L_166); if (((int64_t)((int32_t)((int32_t)(((RuntimeArray*)L_166)->max_length))) + (int64_t)((int32_t)90) < (int64_t)kIl2CppInt32Min) || ((int64_t)((int32_t)((int32_t)(((RuntimeArray*)L_166)->max_length))) + (int64_t)((int32_t)90) > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), IriHelper_EscapeUnescapeIri_m6CABB7FC44037C0B5C18132AF5D8C55DB5C64444_RuntimeMethod_var); int32_t L_167 = V_4; if (((int64_t)L_167 + (int64_t)((int32_t)90) < (int64_t)kIl2CppInt32Min) || ((int64_t)L_167 + (int64_t)((int32_t)90) > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), IriHelper_EscapeUnescapeIri_m6CABB7FC44037C0B5C18132AF5D8C55DB5C64444_RuntimeMethod_var); V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_167, (int32_t)((int32_t)90))); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_168 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)SZArrayNew(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_166)->max_length))), (int32_t)((int32_t)90)))); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_169 = L_168; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_170 = L_169; V_18 = L_170; G_B39_0 = L_169; if (!L_170) { G_B40_0 = L_169; goto IL_0311; } } { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_171 = V_18; NullCheck(L_171); G_B40_0 = G_B39_0; if (((int32_t)((int32_t)(((RuntimeArray*)L_171)->max_length)))) { G_B41_0 = G_B39_0; goto IL_0317; } } IL_0311: { V_17 = (Il2CppChar*)((uintptr_t)0); G_B42_0 = G_B40_0; goto IL_0322; } IL_0317: { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_172 = V_18; NullCheck(L_172); V_17 = (Il2CppChar*)((uintptr_t)((L_172)->GetAddressAt(static_cast(0)))); G_B42_0 = G_B41_0; } IL_0322: { Il2CppChar* L_173 = V_17; Il2CppChar* L_174 = V_3; int32_t L_175 = V_6; Buffer_Memcpy_m67752CDFBB079C42EFA9EBA2BB9A0C96DFAA2178((uint8_t*)(uint8_t*)L_173, (uint8_t*)(uint8_t*)L_174, ((int32_t)il2cpp_codegen_multiply((int32_t)L_175, (int32_t)2)), /*hidden argument*/NULL); V_18 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)NULL; bool L_176; L_176 = GCHandle_get_IsAllocated_mEDA4DAC6AD6D881110E96CAFDAB78C068F5B144D((GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 *)(&V_2), /*hidden argument*/NULL); G_B43_0 = G_B42_0; if (!L_176) { G_B44_0 = G_B42_0; goto IL_0341; } } { GCHandle_Free_mB4E9415544FC9F0075C02AB17E270E49AF006025((GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 *)(&V_2), /*hidden argument*/NULL); G_B44_0 = G_B43_0; } IL_0341: { V_0 = G_B44_0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_177 = V_0; GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 L_178; L_178 = GCHandle_Alloc_mBF5C4C0E8605F97427BFDF96D68AACD4A4D6DDEC((RuntimeObject *)(RuntimeObject *)L_177, 3, /*hidden argument*/NULL); V_2 = L_178; intptr_t L_179; L_179 = GCHandle_AddrOfPinnedObject_m0604506F2BDCD2DC8C167FBC3BF3E965888F7589((GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 *)(&V_2), /*hidden argument*/NULL); void* L_180; L_180 = IntPtr_op_Explicit_mE8B472FDC632CBD121F7ADF4F94546D6610BACDD((intptr_t)L_179, /*hidden argument*/NULL); V_3 = (Il2CppChar*)L_180; } IL_0357: { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_181 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)4); V_16 = L_181; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_182 = V_16; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_183 = L_182; V_20 = L_183; if (!L_183) { goto IL_036c; } } { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_184 = V_20; NullCheck(L_184); if (((int32_t)((int32_t)(((RuntimeArray*)L_184)->max_length)))) { goto IL_0372; } } IL_036c: { V_19 = (uint8_t*)((uintptr_t)0); goto IL_037d; } IL_0372: { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_185 = V_20; NullCheck(L_185); V_19 = (uint8_t*)((uintptr_t)((L_185)->GetAddressAt(static_cast(0)))); } IL_037d: { Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_186; L_186 = Encoding_get_UTF8_mC877FB3137BBD566AEE7B15F9BF61DC4EF8F5E5E(/*hidden argument*/NULL); Il2CppChar* L_187 = ___pInput0; int32_t L_188 = V_5; bool L_189 = V_9; G_B50_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_187, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_188), (int32_t)2)))); G_B50_1 = L_186; if (L_189) { G_B51_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_187, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_188), (int32_t)2)))); G_B51_1 = L_186; goto IL_0390; } } { G_B52_0 = 1; G_B52_1 = G_B50_0; G_B52_2 = G_B50_1; goto IL_0391; } IL_0390: { G_B52_0 = 2; G_B52_1 = G_B51_0; G_B52_2 = G_B51_1; } IL_0391: { uint8_t* L_190 = V_19; NullCheck(G_B52_2); int32_t L_191; L_191 = VirtualFuncInvoker4< int32_t, Il2CppChar*, int32_t, uint8_t*, int32_t >::Invoke(21 /* System.Int32 System.Text.Encoding::GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32) */, G_B52_2, (Il2CppChar*)(Il2CppChar*)G_B52_1, G_B52_0, (uint8_t*)(uint8_t*)L_190, 4); V_21 = L_191; int32_t L_192 = V_4; int32_t L_193 = V_21; V_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_192, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_193, (int32_t)3)))); V_22 = 0; goto IL_03bc; } IL_03a9: { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_194 = V_16; int32_t L_195 = V_22; NullCheck(L_194); int32_t L_196 = L_195; uint8_t L_197 = (L_194)->GetAt(static_cast(L_196)); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_198 = V_0; IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); UriHelper_EscapeAsciiChar_m7590A6410A9F1AE1207006EF9B46578E1A3DFD33(L_197, L_198, (int32_t*)(&V_6), /*hidden argument*/NULL); int32_t L_199 = V_22; V_22 = ((int32_t)il2cpp_codegen_add((int32_t)L_199, (int32_t)1)); } IL_03bc: { int32_t L_200 = V_22; int32_t L_201 = V_21; if ((((int32_t)L_200) < ((int32_t)L_201))) { goto IL_03a9; } } { V_20 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)NULL; } IL_03c5: { int32_t L_202 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_202, (int32_t)1)); } IL_03cb: { int32_t L_203 = V_5; int32_t L_204 = ___end2; if ((((int32_t)L_203) < ((int32_t)L_204))) { goto IL_0034; } } { bool L_205; L_205 = GCHandle_get_IsAllocated_mEDA4DAC6AD6D881110E96CAFDAB78C068F5B144D((GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 *)(&V_2), /*hidden argument*/NULL); if (!L_205) { goto IL_03e3; } } { GCHandle_Free_mB4E9415544FC9F0075C02AB17E270E49AF006025((GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 *)(&V_2), /*hidden argument*/NULL); } IL_03e3: { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_206 = V_0; int32_t L_207 = V_6; String_t* L_208; L_208 = String_CreateString_m16F181739FD8BA877868803DE2CE0EF0A4668D0E(NULL, L_206, 0, L_207, /*hidden argument*/NULL); return L_208; } } #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.Configuration.IriParsingElement::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IriParsingElement__ctor_m2C6DF1AF16C66A3599CD45F77C5A798FC76B5077 (IriParsingElement_tD8D81BB1733AF891D47F442A1A03AA78FB49B2CE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IriParsingElement__ctor_m2C6DF1AF16C66A3599CD45F77C5A798FC76B5077_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(IriParsingElement__ctor_m2C6DF1AF16C66A3599CD45F77C5A798FC76B5077_RuntimeMethod_var); return; } } // System.Boolean System.Configuration.IriParsingElement::get_Enabled() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IriParsingElement_get_Enabled_m46A870E4AB8A03047702C11F7947531A3BB01097 (IriParsingElement_tD8D81BB1733AF891D47F442A1A03AA78FB49B2CE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IriParsingElement_get_Enabled_m46A870E4AB8A03047702C11F7947531A3BB01097_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; { il2cpp_codegen_raise_profile_exception(IriParsingElement_get_Enabled_m46A870E4AB8A03047702C11F7947531A3BB01097_RuntimeMethod_var); il2cpp_codegen_initobj((&V_0), sizeof(bool)); bool L_0 = V_0; return L_0; } } // System.Void System.Configuration.IriParsingElement::set_Enabled(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IriParsingElement_set_Enabled_mAD4001CBF8A92286C358A716757EEA0F285508A7 (IriParsingElement_tD8D81BB1733AF891D47F442A1A03AA78FB49B2CE * __this, bool ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IriParsingElement_set_Enabled_mAD4001CBF8A92286C358A716757EEA0F285508A7_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(IriParsingElement_set_Enabled_mAD4001CBF8A92286C358A716757EEA0F285508A7_RuntimeMethod_var); return; } } // System.Configuration.ConfigurationPropertyCollection System.Configuration.IriParsingElement::get_Properties() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfigurationPropertyCollection_t8C098DB59DF7BA2C2A71369978F4225B92B2F59B * IriParsingElement_get_Properties_m2CA16026071AB71C91C1F60D9294AB78F6FF3B9C (IriParsingElement_tD8D81BB1733AF891D47F442A1A03AA78FB49B2CE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IriParsingElement_get_Properties_m2CA16026071AB71C91C1F60D9294AB78F6FF3B9C_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(IriParsingElement_get_Properties_m2CA16026071AB71C91C1F60D9294AB78F6FF3B9C_RuntimeMethod_var); return (ConfigurationPropertyCollection_t8C098DB59DF7BA2C2A71369978F4225B92B2F59B *)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.Net.LazyAsyncResult/ThreadContext System.Net.LazyAsyncResult::get_CurrentThreadContext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ThreadContext_tB361ABC018EE4C7009FD3A3A5D39D2346A1B5FA3 * LazyAsyncResult_get_CurrentThreadContext_m612DA3FE475024D1FD9FA7DF7AF92CAEE96AE3EC (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LazyAsyncResult_t4203C3EF8ACCFBDEE0B5209D86AD466A95A36B32_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ThreadContext_tB361ABC018EE4C7009FD3A3A5D39D2346A1B5FA3_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ThreadContext_tB361ABC018EE4C7009FD3A3A5D39D2346A1B5FA3 * V_0 = NULL; { ThreadContext_tB361ABC018EE4C7009FD3A3A5D39D2346A1B5FA3 * L_0 = ((LazyAsyncResult_t4203C3EF8ACCFBDEE0B5209D86AD466A95A36B32_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(LazyAsyncResult_t4203C3EF8ACCFBDEE0B5209D86AD466A95A36B32_il2cpp_TypeInfo_var))->get_t_ThreadContext_0(); V_0 = L_0; ThreadContext_tB361ABC018EE4C7009FD3A3A5D39D2346A1B5FA3 * L_1 = V_0; if (L_1) { goto IL_0015; } } { ThreadContext_tB361ABC018EE4C7009FD3A3A5D39D2346A1B5FA3 * L_2 = (ThreadContext_tB361ABC018EE4C7009FD3A3A5D39D2346A1B5FA3 *)il2cpp_codegen_object_new(ThreadContext_tB361ABC018EE4C7009FD3A3A5D39D2346A1B5FA3_il2cpp_TypeInfo_var); ThreadContext__ctor_mE89CF3AF57457840698C5046CD32EF8B02CDC40A(L_2, /*hidden argument*/NULL); V_0 = L_2; ThreadContext_tB361ABC018EE4C7009FD3A3A5D39D2346A1B5FA3 * L_3 = V_0; ((LazyAsyncResult_t4203C3EF8ACCFBDEE0B5209D86AD466A95A36B32_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(LazyAsyncResult_t4203C3EF8ACCFBDEE0B5209D86AD466A95A36B32_il2cpp_TypeInfo_var))->set_t_ThreadContext_0(L_3); } IL_0015: { ThreadContext_tB361ABC018EE4C7009FD3A3A5D39D2346A1B5FA3 * L_4 = V_0; return L_4; } } // System.Void System.Net.LazyAsyncResult::.ctor(System.Object,System.Object,System.AsyncCallback) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LazyAsyncResult__ctor_mFDA41A66486C2099F4C4EB69B464BFF0E6E0D8F5 (LazyAsyncResult_t4203C3EF8ACCFBDEE0B5209D86AD466A95A36B32 * __this, RuntimeObject * ___myObject0, RuntimeObject * ___myState1, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___myCallBack2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); RuntimeObject * L_0 = ___myObject0; __this->set_m_AsyncObject_1(L_0); RuntimeObject * L_1 = ___myState1; __this->set_m_AsyncState_2(L_1); AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * L_2 = ___myCallBack2; __this->set_m_AsyncCallback_3(L_2); IL2CPP_RUNTIME_CLASS_INIT(DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28_il2cpp_TypeInfo_var); DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28 * L_3 = ((DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28_il2cpp_TypeInfo_var))->get_Value_0(); __this->set_m_Result_4(L_3); return; } } // System.Object System.Net.LazyAsyncResult::get_AsyncObject() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * LazyAsyncResult_get_AsyncObject_m8ACB19F0E9711613E0984A2605A7CD3B7ACEE37C (LazyAsyncResult_t4203C3EF8ACCFBDEE0B5209D86AD466A95A36B32 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_m_AsyncObject_1(); return L_0; } } // System.Object System.Net.LazyAsyncResult::get_AsyncState() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * LazyAsyncResult_get_AsyncState_mCB9983108FC8971A44D20F760DE18E69EFDDA646 (LazyAsyncResult_t4203C3EF8ACCFBDEE0B5209D86AD466A95A36B32 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_m_AsyncState_2(); return L_0; } } // System.Threading.WaitHandle System.Net.LazyAsyncResult::get_AsyncWaitHandle() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842 * LazyAsyncResult_get_AsyncWaitHandle_mCCBF09BE244D26842581D2058B13B09D9DC7C206 (LazyAsyncResult_t4203C3EF8ACCFBDEE0B5209D86AD466A95A36B32 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * V_0 = NULL; { __this->set_m_UserEvent_6((bool)1); int32_t L_0 = __this->get_m_IntCompleted_5(); if (L_0) { goto IL_0021; } } { int32_t* L_1 = __this->get_address_of_m_IntCompleted_5(); int32_t L_2; L_2 = Interlocked_CompareExchange_m317AD9524376B7BE74DD9069346E345F2B131382((int32_t*)L_1, ((int32_t)-2147483648LL), 0, /*hidden argument*/NULL); } IL_0021: { RuntimeObject * L_3 = __this->get_m_Event_7(); V_0 = ((ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA *)CastclassSealed((RuntimeObject*)L_3, ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA_il2cpp_TypeInfo_var)); goto IL_0038; } IL_002f: { bool L_4; L_4 = LazyAsyncResult_LazilyCreateEvent_m821224E938E16E225251F7CA33A2B146F822D5EC(__this, (ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA **)(&V_0), /*hidden argument*/NULL); } IL_0038: { ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * L_5 = V_0; if (!L_5) { goto IL_002f; } } { ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * L_6 = V_0; return L_6; } } // System.Boolean System.Net.LazyAsyncResult::LazilyCreateEvent(System.Threading.ManualResetEvent&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LazyAsyncResult_LazilyCreateEvent_m821224E938E16E225251F7CA33A2B146F822D5EC (LazyAsyncResult_t4203C3EF8ACCFBDEE0B5209D86AD466A95A36B32 * __this, ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA ** ___waitHandle0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; { ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA ** L_0 = ___waitHandle0; ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * L_1 = (ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA *)il2cpp_codegen_object_new(ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA_il2cpp_TypeInfo_var); ManualResetEvent__ctor_mF80BD5B0955BDA8CD514F48EBFF48698E5D03850(L_1, (bool)0, /*hidden argument*/NULL); *((RuntimeObject **)L_0) = (RuntimeObject *)L_1; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_0, (void*)(RuntimeObject *)L_1); } IL_0008: try {// begin try (depth: 1) { RuntimeObject ** L_2 = __this->get_address_of_m_Event_7(); ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA ** L_3 = ___waitHandle0; ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * L_4 = *((ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA **)L_3); RuntimeObject * L_5; L_5 = Interlocked_CompareExchange_mFAD09589A5DAFDBABB05C62A2D35CD5B92BC6961((RuntimeObject **)L_2, L_4, NULL, /*hidden argument*/NULL); if (L_5) { goto IL_002c; } } IL_0018: { bool L_6; L_6 = LazyAsyncResult_get_InternalPeekCompleted_mFC74F0FA177B7C8386E798906A50387288365DEF(__this, /*hidden argument*/NULL); if (!L_6) { goto IL_0028; } } IL_0020: { ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA ** L_7 = ___waitHandle0; ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * L_8 = *((ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA **)L_7); NullCheck(L_8); bool L_9; L_9 = EventWaitHandle_Set_m81764C887F38A1153224557B26CD688B59987B38(L_8, /*hidden argument*/NULL); } IL_0028: { V_0 = (bool)1; goto IL_0059; } IL_002c: { ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA ** L_10 = ___waitHandle0; ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * L_11 = *((ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA **)L_10); NullCheck(L_11); VirtualActionInvoker0::Invoke(13 /* System.Void System.Threading.WaitHandle::Close() */, L_11); ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA ** L_12 = ___waitHandle0; RuntimeObject * L_13 = __this->get_m_Event_7(); *((RuntimeObject **)L_12) = (RuntimeObject *)((ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA *)CastclassSealed((RuntimeObject*)L_13, ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA_il2cpp_TypeInfo_var)); Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_12, (void*)(RuntimeObject *)((ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA *)CastclassSealed((RuntimeObject*)L_13, ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA_il2cpp_TypeInfo_var))); V_0 = (bool)0; goto IL_0059; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0044; } throw e; } CATCH_0044: {// begin catch(System.Object) { __this->set_m_Event_7(NULL); ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA ** L_14 = ___waitHandle0; ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * L_15 = *((ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA **)L_14); if (!L_15) { goto IL_0057; } } IL_0050: { ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA ** L_16 = ___waitHandle0; ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * L_17 = *((ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA **)L_16); NullCheck(L_17); VirtualActionInvoker0::Invoke(13 /* System.Void System.Threading.WaitHandle::Close() */, L_17); } IL_0057: { IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&LazyAsyncResult_LazilyCreateEvent_m821224E938E16E225251F7CA33A2B146F822D5EC_RuntimeMethod_var))); } }// end catch (depth: 1) IL_0059: { bool L_18 = V_0; return L_18; } } // System.Boolean System.Net.LazyAsyncResult::get_CompletedSynchronously() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LazyAsyncResult_get_CompletedSynchronously_m65594BF95B8298F5764BB63A789DF6CEA658782A (LazyAsyncResult_t4203C3EF8ACCFBDEE0B5209D86AD466A95A36B32 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = __this->get_m_IntCompleted_5(); V_0 = L_0; int32_t L_1 = V_0; if (L_1) { goto IL_001c; } } { int32_t* L_2 = __this->get_address_of_m_IntCompleted_5(); int32_t L_3; L_3 = Interlocked_CompareExchange_m317AD9524376B7BE74DD9069346E345F2B131382((int32_t*)L_2, ((int32_t)-2147483648LL), 0, /*hidden argument*/NULL); V_0 = L_3; } IL_001c: { int32_t L_4 = V_0; return (bool)((((int32_t)L_4) > ((int32_t)0))? 1 : 0); } } // System.Boolean System.Net.LazyAsyncResult::get_IsCompleted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LazyAsyncResult_get_IsCompleted_mAFE99853AF0218509257AE85FE20144A244393C3 (LazyAsyncResult_t4203C3EF8ACCFBDEE0B5209D86AD466A95A36B32 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = __this->get_m_IntCompleted_5(); V_0 = L_0; int32_t L_1 = V_0; if (L_1) { goto IL_001c; } } { int32_t* L_2 = __this->get_address_of_m_IntCompleted_5(); int32_t L_3; L_3 = Interlocked_CompareExchange_m317AD9524376B7BE74DD9069346E345F2B131382((int32_t*)L_2, ((int32_t)-2147483648LL), 0, /*hidden argument*/NULL); V_0 = L_3; } IL_001c: { int32_t L_4 = V_0; return (bool)((!(((uint32_t)((int32_t)((int32_t)L_4&(int32_t)((int32_t)2147483647LL)))) <= ((uint32_t)0)))? 1 : 0); } } // System.Boolean System.Net.LazyAsyncResult::get_InternalPeekCompleted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LazyAsyncResult_get_InternalPeekCompleted_mFC74F0FA177B7C8386E798906A50387288365DEF (LazyAsyncResult_t4203C3EF8ACCFBDEE0B5209D86AD466A95A36B32 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_m_IntCompleted_5(); return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)2147483647LL)))) <= ((uint32_t)0)))? 1 : 0); } } // System.Void System.Net.LazyAsyncResult::ProtectedInvokeCallback(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LazyAsyncResult_ProtectedInvokeCallback_mB9317AC9B30205D1D84B82F8F4C0674928EFC19E (LazyAsyncResult_t4203C3EF8ACCFBDEE0B5209D86AD466A95A36B32 * __this, RuntimeObject * ___result0, intptr_t ___userToken1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * V_0 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; { RuntimeObject * L_0 = ___result0; IL2CPP_RUNTIME_CLASS_INIT(DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28_il2cpp_TypeInfo_var); DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28 * L_1 = ((DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28_il2cpp_TypeInfo_var))->get_Value_0(); if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28 *)L_1)))) { goto IL_0013; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral228835A6E22383C9BC1AAFD065E6D63FA30BF27B)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&LazyAsyncResult_ProtectedInvokeCallback_mB9317AC9B30205D1D84B82F8F4C0674928EFC19E_RuntimeMethod_var))); } IL_0013: { int32_t L_3 = __this->get_m_IntCompleted_5(); if (((int32_t)((int32_t)L_3&(int32_t)((int32_t)2147483647LL)))) { goto IL_006b; } } { int32_t* L_4 = __this->get_address_of_m_IntCompleted_5(); int32_t L_5; L_5 = Interlocked_Increment_mEF7FA106280D9E57DA8A97887389A961B65E47D8((int32_t*)L_4, /*hidden argument*/NULL); if ((!(((uint32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)2147483647LL)))) == ((uint32_t)1)))) { goto IL_006b; } } { RuntimeObject * L_6 = __this->get_m_Result_4(); IL2CPP_RUNTIME_CLASS_INIT(DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28_il2cpp_TypeInfo_var); DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28 * L_7 = ((DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28_il2cpp_TypeInfo_var))->get_Value_0(); if ((!(((RuntimeObject*)(RuntimeObject *)L_6) == ((RuntimeObject*)(DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28 *)L_7)))) { goto IL_0049; } } { RuntimeObject * L_8 = ___result0; __this->set_m_Result_4(L_8); } IL_0049: { RuntimeObject * L_9 = __this->get_m_Event_7(); V_0 = ((ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA *)CastclassSealed((RuntimeObject*)L_9, ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA_il2cpp_TypeInfo_var)); ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * L_10 = V_0; if (!L_10) { goto IL_0064; } } IL_0058: try {// begin try (depth: 1) ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * L_11 = V_0; NullCheck(L_11); bool L_12; L_12 = EventWaitHandle_Set_m81764C887F38A1153224557B26CD688B59987B38(L_11, /*hidden argument*/NULL); goto IL_0064; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0061; } throw e; } CATCH_0061: {// begin catch(System.ObjectDisposedException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0064; }// end catch (depth: 1) IL_0064: { intptr_t L_13 = ___userToken1; VirtualActionInvoker1< intptr_t >::Invoke(8 /* System.Void System.Net.LazyAsyncResult::Complete(System.IntPtr) */, __this, (intptr_t)L_13); } IL_006b: { return; } } // System.Void System.Net.LazyAsyncResult::InvokeCallback(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LazyAsyncResult_InvokeCallback_m3AD664A494F2821C00A7E07BCE9B4FD63A2BC369 (LazyAsyncResult_t4203C3EF8ACCFBDEE0B5209D86AD466A95A36B32 * __this, RuntimeObject * ___result0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___result0; LazyAsyncResult_ProtectedInvokeCallback_mB9317AC9B30205D1D84B82F8F4C0674928EFC19E(__this, L_0, (intptr_t)(0), /*hidden argument*/NULL); return; } } // System.Void System.Net.LazyAsyncResult::Complete(System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LazyAsyncResult_Complete_m65AC5DCDD0B1EAF8702194A03D24B415F99A6E49 (LazyAsyncResult_t4203C3EF8ACCFBDEE0B5209D86AD466A95A36B32 * __this, intptr_t ___userToken0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LazyAsyncResult_WorkerThreadComplete_m5F2BECD93B121A2BDFBE3AD9C8E60460FA1C7ACC_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; ThreadContext_tB361ABC018EE4C7009FD3A3A5D39D2346A1B5FA3 * V_1 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { V_0 = (bool)0; ThreadContext_tB361ABC018EE4C7009FD3A3A5D39D2346A1B5FA3 * L_0; L_0 = LazyAsyncResult_get_CurrentThreadContext_m612DA3FE475024D1FD9FA7DF7AF92CAEE96AE3EC(/*hidden argument*/NULL); V_1 = L_0; } IL_0008: try {// begin try (depth: 1) { ThreadContext_tB361ABC018EE4C7009FD3A3A5D39D2346A1B5FA3 * L_1 = V_1; ThreadContext_tB361ABC018EE4C7009FD3A3A5D39D2346A1B5FA3 * L_2 = L_1; NullCheck(L_2); int32_t L_3 = L_2->get_m_NestedIOCount_0(); NullCheck(L_2); L_2->set_m_NestedIOCount_0(((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))); AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * L_4 = __this->get_m_AsyncCallback_3(); if (!L_4) { goto IL_004a; } } IL_001e: { ThreadContext_tB361ABC018EE4C7009FD3A3A5D39D2346A1B5FA3 * L_5 = V_1; NullCheck(L_5); int32_t L_6 = L_5->get_m_NestedIOCount_0(); if ((((int32_t)L_6) < ((int32_t)((int32_t)50)))) { goto IL_003e; } } IL_0028: { WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319 * L_7 = (WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319 *)il2cpp_codegen_object_new(WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319_il2cpp_TypeInfo_var); WaitCallback__ctor_m50EFFE5096DF1DE733EA9895CEEC8EB6F142D5D5(L_7, __this, (intptr_t)((intptr_t)LazyAsyncResult_WorkerThreadComplete_m5F2BECD93B121A2BDFBE3AD9C8E60460FA1C7ACC_RuntimeMethod_var), /*hidden argument*/NULL); bool L_8; L_8 = ThreadPool_QueueUserWorkItem_m76F5D0CD8F37E5D736F781049045AD9173E9A323(L_7, /*hidden argument*/NULL); V_0 = (bool)1; IL2CPP_LEAVE(0x64, FINALLY_004c); } IL_003e: { AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * L_9 = __this->get_m_AsyncCallback_3(); NullCheck(L_9); AsyncCallback_Invoke_mFCCCB843AEC4B5B3FC89BCED2BA839783920EA47(L_9, __this, /*hidden argument*/NULL); } IL_004a: { IL2CPP_LEAVE(0x64, FINALLY_004c); } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_004c; } FINALLY_004c: {// begin finally (depth: 1) { ThreadContext_tB361ABC018EE4C7009FD3A3A5D39D2346A1B5FA3 * L_10 = V_1; ThreadContext_tB361ABC018EE4C7009FD3A3A5D39D2346A1B5FA3 * L_11 = L_10; NullCheck(L_11); int32_t L_12 = L_11->get_m_NestedIOCount_0(); NullCheck(L_11); L_11->set_m_NestedIOCount_0(((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)1))); bool L_13 = V_0; if (L_13) { goto IL_0063; } } IL_005d: { VirtualActionInvoker0::Invoke(9 /* System.Void System.Net.LazyAsyncResult::Cleanup() */, __this); } IL_0063: { IL2CPP_END_FINALLY(76) } }// end finally (depth: 1) IL2CPP_CLEANUP(76) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x64, IL_0064) } IL_0064: { return; } } // System.Void System.Net.LazyAsyncResult::WorkerThreadComplete(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LazyAsyncResult_WorkerThreadComplete_m5F2BECD93B121A2BDFBE3AD9C8E60460FA1C7ACC (LazyAsyncResult_t4203C3EF8ACCFBDEE0B5209D86AD466A95A36B32 * __this, RuntimeObject * ___state0, const RuntimeMethod* method) { Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; IL_0000: try {// begin try (depth: 1) AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * L_0 = __this->get_m_AsyncCallback_3(); NullCheck(L_0); AsyncCallback_Invoke_mFCCCB843AEC4B5B3FC89BCED2BA839783920EA47(L_0, __this, /*hidden argument*/NULL); IL2CPP_LEAVE(0x15, FINALLY_000e); }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_000e; } FINALLY_000e: {// begin finally (depth: 1) VirtualActionInvoker0::Invoke(9 /* System.Void System.Net.LazyAsyncResult::Cleanup() */, __this); IL2CPP_END_FINALLY(14) }// end finally (depth: 1) IL2CPP_CLEANUP(14) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x15, IL_0015) } IL_0015: { return; } } // System.Void System.Net.LazyAsyncResult::Cleanup() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LazyAsyncResult_Cleanup_m5382F96236C1F0ED05304E68A0136C19AC870AB5 (LazyAsyncResult_t4203C3EF8ACCFBDEE0B5209D86AD466A95A36B32 * __this, const RuntimeMethod* method) { { return; } } // System.Object System.Net.LazyAsyncResult::InternalWaitForCompletion() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * LazyAsyncResult_InternalWaitForCompletion_mCCAD893C368BE34C22A5DC9137356C5784F916E5 (LazyAsyncResult_t4203C3EF8ACCFBDEE0B5209D86AD466A95A36B32 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0; L_0 = LazyAsyncResult_WaitForCompletion_mFD63E1FA929C91833D3B6C71CAE665C2325CDC10(__this, (bool)1, /*hidden argument*/NULL); return L_0; } } // System.Object System.Net.LazyAsyncResult::WaitForCompletion(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * LazyAsyncResult_WaitForCompletion_mFD63E1FA929C91833D3B6C71CAE665C2325CDC10 (LazyAsyncResult_t4203C3EF8ACCFBDEE0B5209D86AD466A95A36B32 * __this, bool ___snap0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * V_0 = NULL; bool V_1 = false; ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * V_2 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; bool G_B3_0 = false; { V_0 = (ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA *)NULL; V_1 = (bool)0; bool L_0 = ___snap0; if (L_0) { goto IL_000f; } } { bool L_1; L_1 = LazyAsyncResult_get_InternalPeekCompleted_mFC74F0FA177B7C8386E798906A50387288365DEF(__this, /*hidden argument*/NULL); G_B3_0 = L_1; goto IL_0015; } IL_000f: { bool L_2; L_2 = LazyAsyncResult_get_IsCompleted_mAFE99853AF0218509257AE85FE20144A244393C3(__this, /*hidden argument*/NULL); G_B3_0 = L_2; } IL_0015: { if (G_B3_0) { goto IL_002f; } } { RuntimeObject * L_3 = __this->get_m_Event_7(); V_0 = ((ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA *)CastclassSealed((RuntimeObject*)L_3, ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA_il2cpp_TypeInfo_var)); ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * L_4 = V_0; if (L_4) { goto IL_002f; } } { bool L_5; L_5 = LazyAsyncResult_LazilyCreateEvent_m821224E938E16E225251F7CA33A2B146F822D5EC(__this, (ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA **)(&V_0), /*hidden argument*/NULL); V_1 = L_5; } IL_002f: { ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * L_6 = V_0; if (!L_6) { goto IL_0073; } } IL_0032: try {// begin try (depth: 1) try {// begin try (depth: 2) ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * L_7 = V_0; NullCheck(L_7); bool L_8; L_8 = VirtualFuncInvoker2< bool, int32_t, bool >::Invoke(8 /* System.Boolean System.Threading.WaitHandle::WaitOne(System.Int32,System.Boolean) */, L_7, (-1), (bool)0); IL2CPP_LEAVE(0x73, FINALLY_0040); }// end try (depth: 2) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_003d; } throw e; } CATCH_003d: {// begin catch(System.ObjectDisposedException) IL2CPP_POP_ACTIVE_EXCEPTION(); IL2CPP_LEAVE(0x73, FINALLY_0040); }// end catch (depth: 2) }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0040; } FINALLY_0040: {// begin finally (depth: 1) { bool L_9 = V_1; if (!L_9) { goto IL_006c; } } IL_0043: { bool L_10 = __this->get_m_UserEvent_6(); if (L_10) { goto IL_006c; } } IL_004b: { RuntimeObject * L_11 = __this->get_m_Event_7(); V_2 = ((ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA *)CastclassSealed((RuntimeObject*)L_11, ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA_il2cpp_TypeInfo_var)); __this->set_m_Event_7(NULL); bool L_12 = __this->get_m_UserEvent_6(); if (L_12) { goto IL_006c; } } IL_0066: { ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * L_13 = V_2; NullCheck(L_13); VirtualActionInvoker0::Invoke(13 /* System.Void System.Threading.WaitHandle::Close() */, L_13); } IL_006c: { IL2CPP_END_FINALLY(64) } }// end finally (depth: 1) IL2CPP_CLEANUP(64) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x73, IL_0073) } IL_006d: { Thread_SpinWait_m6276C02E66DD83A83D5F39E2B20411B8CBA33673(1, /*hidden argument*/NULL); } IL_0073: { RuntimeObject * L_14 = __this->get_m_Result_4(); IL2CPP_RUNTIME_CLASS_INIT(DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28_il2cpp_TypeInfo_var); DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28 * L_15 = ((DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28_il2cpp_TypeInfo_var))->get_Value_0(); if ((((RuntimeObject*)(RuntimeObject *)L_14) == ((RuntimeObject*)(DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28 *)L_15))) { goto IL_006d; } } { RuntimeObject * L_16 = __this->get_m_Result_4(); return L_16; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean System.ComponentModel.LicFileLicenseProvider::IsKeyValid(System.String,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LicFileLicenseProvider_IsKeyValid_mFA16A235AF933FC79F8065C9632D78F46760E9EB (LicFileLicenseProvider_t0C159066151EF942824ECDC68036A1F5BBA2E5DF * __this, String_t* ___key0, Type_t * ___type1, const RuntimeMethod* method) { { String_t* L_0 = ___key0; if (!L_0) { goto IL_0011; } } { String_t* L_1 = ___key0; Type_t * L_2 = ___type1; String_t* L_3; L_3 = VirtualFuncInvoker1< String_t*, Type_t * >::Invoke(6 /* System.String System.ComponentModel.LicFileLicenseProvider::GetKey(System.Type) */, __this, L_2); NullCheck(L_1); bool L_4; L_4 = String_StartsWith_mDE2FF98CAFFD13F88EDEB6C40158DDF840BFCF12(L_1, L_3, /*hidden argument*/NULL); return L_4; } IL_0011: { return (bool)0; } } // System.String System.ComponentModel.LicFileLicenseProvider::GetKey(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* LicFileLicenseProvider_GetKey_mADDDEF83BACC2791500D291B77040266C8493BD5 (LicFileLicenseProvider_t0C159066151EF942824ECDC68036A1F5BBA2E5DF * __this, Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF917CF0F9128CE5E77D7F247C71FFDDF4B752AF0); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_0; L_0 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL); Type_t * L_1 = ___type0; NullCheck(L_1); String_t* L_2; L_2 = VirtualFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_FullName() */, L_1); String_t* L_3; L_3 = String_Format_m90ED4B078849D42FA1A7C5EB7AC7F74F235F6916(L_0, _stringLiteralF917CF0F9128CE5E77D7F247C71FFDDF4B752AF0, L_2, /*hidden argument*/NULL); return L_3; } } // System.ComponentModel.License System.ComponentModel.LicFileLicenseProvider::GetLicense(System.ComponentModel.LicenseContext,System.Type,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 * LicFileLicenseProvider_GetLicense_m4CFF9A9FAB4EF8F6DD6138B5DA26DD347B125484 (LicFileLicenseProvider_t0C159066151EF942824ECDC68036A1F5BBA2E5DF * __this, LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * ___context0, Type_t * ___type1, RuntimeObject * ___instance2, bool ___allowExceptions3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITypeResolutionService_t6A46AE5E8B7E7DC2731ED2C8C4C6E62C0DD4112B_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITypeResolutionService_t6A46AE5E8B7E7DC2731ED2C8C4C6E62C0DD4112B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LicFileLicense_t48E8BE071EB96D1E15F23A7D51B387776EE73128_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Path_tF1D95B78D57C1C1211BA6633FF2AC22FD6C48921_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral09B11B6CC411D8B9FFB75EAAE9A35B2AF248CE40); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC1915FCF7B20CAD4349E6E7FE115FAB7EE126DDD); s_Il2CppMethodInitialized = true; } LicFileLicense_t48E8BE071EB96D1E15F23A7D51B387776EE73128 * V_0 = NULL; String_t* V_1 = NULL; String_t* V_2 = NULL; String_t* V_3 = NULL; RuntimeObject* V_4 = NULL; String_t* V_5 = NULL; { V_0 = (LicFileLicense_t48E8BE071EB96D1E15F23A7D51B387776EE73128 *)NULL; LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * L_0 = ___context0; if (!L_0) { goto IL_00de; } } { LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * L_1 = ___context0; NullCheck(L_1); int32_t L_2; L_2 = VirtualFuncInvoker0< int32_t >::Invoke(5 /* System.ComponentModel.LicenseUsageMode System.ComponentModel.LicenseContext::get_UsageMode() */, L_1); if (L_2) { goto IL_002e; } } { LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * L_3 = ___context0; Type_t * L_4 = ___type1; NullCheck(L_3); String_t* L_5; L_5 = VirtualFuncInvoker2< String_t*, Type_t *, Assembly_t * >::Invoke(6 /* System.String System.ComponentModel.LicenseContext::GetSavedLicenseKey(System.Type,System.Reflection.Assembly) */, L_3, L_4, (Assembly_t *)NULL); V_1 = L_5; String_t* L_6 = V_1; if (!L_6) { goto IL_002e; } } { String_t* L_7 = V_1; Type_t * L_8 = ___type1; bool L_9; L_9 = VirtualFuncInvoker2< bool, String_t*, Type_t * >::Invoke(5 /* System.Boolean System.ComponentModel.LicFileLicenseProvider::IsKeyValid(System.String,System.Type) */, __this, L_7, L_8); if (!L_9) { goto IL_002e; } } { String_t* L_10 = V_1; LicFileLicense_t48E8BE071EB96D1E15F23A7D51B387776EE73128 * L_11 = (LicFileLicense_t48E8BE071EB96D1E15F23A7D51B387776EE73128 *)il2cpp_codegen_object_new(LicFileLicense_t48E8BE071EB96D1E15F23A7D51B387776EE73128_il2cpp_TypeInfo_var); LicFileLicense__ctor_m251341985150814E5E4A30B33D3A9BD2195766EB(L_11, __this, L_10, /*hidden argument*/NULL); V_0 = L_11; } IL_002e: { LicFileLicense_t48E8BE071EB96D1E15F23A7D51B387776EE73128 * L_12 = V_0; if (L_12) { goto IL_00de; } } { V_2 = (String_t*)NULL; LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * L_13 = ___context0; if (!L_13) { goto IL_0067; } } { LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * L_14 = ___context0; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_15 = { reinterpret_cast (ITypeResolutionService_t6A46AE5E8B7E7DC2731ED2C8C4C6E62C0DD4112B_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_16; L_16 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_15, /*hidden argument*/NULL); NullCheck(L_14); RuntimeObject * L_17; L_17 = VirtualFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(7 /* System.Object System.ComponentModel.LicenseContext::GetService(System.Type) */, L_14, L_16); V_4 = ((RuntimeObject*)Castclass((RuntimeObject*)L_17, ITypeResolutionService_t6A46AE5E8B7E7DC2731ED2C8C4C6E62C0DD4112B_il2cpp_TypeInfo_var)); RuntimeObject* L_18 = V_4; if (!L_18) { goto IL_0067; } } { RuntimeObject* L_19 = V_4; Type_t * L_20 = ___type1; NullCheck(L_20); Assembly_t * L_21; L_21 = VirtualFuncInvoker0< Assembly_t * >::Invoke(25 /* System.Reflection.Assembly System.Type::get_Assembly() */, L_20); NullCheck(L_21); AssemblyName_t066E458E26373ECD644F79643E9D4483212C9824 * L_22; L_22 = VirtualFuncInvoker0< AssemblyName_t066E458E26373ECD644F79643E9D4483212C9824 * >::Invoke(22 /* System.Reflection.AssemblyName System.Reflection.Assembly::GetName() */, L_21); NullCheck(L_19); String_t* L_23; L_23 = InterfaceFuncInvoker1< String_t*, AssemblyName_t066E458E26373ECD644F79643E9D4483212C9824 * >::Invoke(1 /* System.String System.ComponentModel.Design.ITypeResolutionService::GetPathOfAssembly(System.Reflection.AssemblyName) */, ITypeResolutionService_t6A46AE5E8B7E7DC2731ED2C8C4C6E62C0DD4112B_il2cpp_TypeInfo_var, L_19, L_22); V_2 = L_23; } IL_0067: { String_t* L_24 = V_2; if (L_24) { goto IL_0076; } } { Type_t * L_25 = ___type1; NullCheck(L_25); Module_tAAF0DBC4FB20AB46035441C66C41A8DB813C8CD7 * L_26; L_26 = VirtualFuncInvoker0< Module_tAAF0DBC4FB20AB46035441C66C41A8DB813C8CD7 * >::Invoke(17 /* System.Reflection.Module System.Reflection.MemberInfo::get_Module() */, L_25); NullCheck(L_26); String_t* L_27; L_27 = VirtualFuncInvoker0< String_t* >::Invoke(13 /* System.String System.Reflection.Module::get_FullyQualifiedName() */, L_26); V_2 = L_27; } IL_0076: { String_t* L_28 = V_2; IL2CPP_RUNTIME_CLASS_INIT(Path_tF1D95B78D57C1C1211BA6633FF2AC22FD6C48921_il2cpp_TypeInfo_var); String_t* L_29; L_29 = Path_GetDirectoryName_mFF7B47C1E2D3A3FD4B769257808A619D7117BEDE(L_28, /*hidden argument*/NULL); Type_t * L_30 = ___type1; NullCheck(L_30); String_t* L_31; L_31 = VirtualFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_FullName() */, L_30); String_t* L_32; L_32 = String_Concat_m37A5BF26F8F8F1892D60D727303B23FB604FEE78(L_29, _stringLiteral09B11B6CC411D8B9FFB75EAAE9A35B2AF248CE40, L_31, _stringLiteralC1915FCF7B20CAD4349E6E7FE115FAB7EE126DDD, /*hidden argument*/NULL); V_3 = L_32; String_t* L_33 = V_3; bool L_34; L_34 = File_Exists_mDAEBF2732BC830270FD98346F069B04E97BB1D5B(L_33, /*hidden argument*/NULL); if (!L_34) { goto IL_00ce; } } { String_t* L_35 = V_3; FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26 * L_36 = (FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26 *)il2cpp_codegen_object_new(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26_il2cpp_TypeInfo_var); FileStream__ctor_m3B5FED0863BA31DCF29A27B99FFDCB699626C326(L_36, L_35, 3, 1, 1, /*hidden argument*/NULL); StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3 * L_37 = (StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3 *)il2cpp_codegen_object_new(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3_il2cpp_TypeInfo_var); StreamReader__ctor_m0F256281F982E077C73A4C297F1301026A3C2905(L_37, L_36, /*hidden argument*/NULL); StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3 * L_38 = L_37; NullCheck(L_38); String_t* L_39; L_39 = VirtualFuncInvoker0< String_t* >::Invoke(13 /* System.String System.IO.TextReader::ReadLine() */, L_38); V_5 = L_39; NullCheck(L_38); VirtualActionInvoker0::Invoke(7 /* System.Void System.IO.TextReader::Close() */, L_38); String_t* L_40 = V_5; Type_t * L_41 = ___type1; bool L_42; L_42 = VirtualFuncInvoker2< bool, String_t*, Type_t * >::Invoke(5 /* System.Boolean System.ComponentModel.LicFileLicenseProvider::IsKeyValid(System.String,System.Type) */, __this, L_40, L_41); if (!L_42) { goto IL_00ce; } } { Type_t * L_43 = ___type1; String_t* L_44; L_44 = VirtualFuncInvoker1< String_t*, Type_t * >::Invoke(6 /* System.String System.ComponentModel.LicFileLicenseProvider::GetKey(System.Type) */, __this, L_43); LicFileLicense_t48E8BE071EB96D1E15F23A7D51B387776EE73128 * L_45 = (LicFileLicense_t48E8BE071EB96D1E15F23A7D51B387776EE73128 *)il2cpp_codegen_object_new(LicFileLicense_t48E8BE071EB96D1E15F23A7D51B387776EE73128_il2cpp_TypeInfo_var); LicFileLicense__ctor_m251341985150814E5E4A30B33D3A9BD2195766EB(L_45, __this, L_44, /*hidden argument*/NULL); V_0 = L_45; } IL_00ce: { LicFileLicense_t48E8BE071EB96D1E15F23A7D51B387776EE73128 * L_46 = V_0; if (!L_46) { goto IL_00de; } } { LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * L_47 = ___context0; Type_t * L_48 = ___type1; LicFileLicense_t48E8BE071EB96D1E15F23A7D51B387776EE73128 * L_49 = V_0; NullCheck(L_49); String_t* L_50; L_50 = VirtualFuncInvoker0< String_t* >::Invoke(5 /* System.String System.ComponentModel.License::get_LicenseKey() */, L_49); NullCheck(L_47); VirtualActionInvoker2< Type_t *, String_t* >::Invoke(8 /* System.Void System.ComponentModel.LicenseContext::SetSavedLicenseKey(System.Type,System.String) */, L_47, L_48, L_50); } IL_00de: { LicFileLicense_t48E8BE071EB96D1E15F23A7D51B387776EE73128 * L_51 = V_0; return L_51; } } // System.Void System.ComponentModel.LicFileLicenseProvider::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicFileLicenseProvider__ctor_m8A921934CC3FA3AA5FE2F5723E9231B3B7EF44C6 (LicFileLicenseProvider_t0C159066151EF942824ECDC68036A1F5BBA2E5DF * __this, const RuntimeMethod* method) { { LicenseProvider__ctor_mF89C5F85ABCDC20F05E3ABCE71B2D97B4C3D25BB(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ComponentModel.License::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void License__ctor_mD580FCAB94FEFA5ADC46944278F97FC6BB23FF3A (License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ComponentModel.LicenseUsageMode System.ComponentModel.LicenseContext::get_UsageMode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t LicenseContext_get_UsageMode_m8AE5B0662EACF0851A62CBFAA5426DB8805D260F (LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * __this, const RuntimeMethod* method) { { return (int32_t)(0); } } // System.String System.ComponentModel.LicenseContext::GetSavedLicenseKey(System.Type,System.Reflection.Assembly) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* LicenseContext_GetSavedLicenseKey_m626FDF7B98C1553A747CC91C5F0BE98532692DE1 (LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * __this, Type_t * ___type0, Assembly_t * ___resourceAssembly1, const RuntimeMethod* method) { { return (String_t*)NULL; } } // System.Object System.ComponentModel.LicenseContext::GetService(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * LicenseContext_GetService_m22AD7419CC869F91AB58383A5B71DC875BC745AB (LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * __this, Type_t * ___type0, const RuntimeMethod* method) { { return NULL; } } // System.Void System.ComponentModel.LicenseContext::SetSavedLicenseKey(System.Type,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseContext_SetSavedLicenseKey_mB4EE5091D3B48F18BA5615CF136FE3026FDBDE1C (LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * __this, Type_t * ___type0, String_t* ___key1, const RuntimeMethod* method) { { return; } } // System.Void System.ComponentModel.LicenseContext::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseContext__ctor_m98A9A749F85771531D680568BD7F45DFE2685DED (LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ComponentModel.LicenseException::.ctor(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseException__ctor_mE9358A7DC2DED9E7DAC0189DDB6DA7F166C975A4 (LicenseException_tF6DDD20031120A48931FEA84CC6ACB3D89B612DF * __this, Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCB32D9E79F35FC0C704F70D2D6654422F48F2D7E); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___type0; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = L_1; Type_t * L_3 = ___type0; NullCheck(L_3); String_t* L_4; L_4 = VirtualFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_FullName() */, L_3); NullCheck(L_2); ArrayElementTypeCheck (L_2, L_4); (L_2)->SetAt(static_cast(0), (RuntimeObject *)L_4); String_t* L_5; L_5 = SR_GetString_m4FFAF18248A54C5B67E4760C5ED4869A87BCAD7F(_stringLiteralCB32D9E79F35FC0C704F70D2D6654422F48F2D7E, L_2, /*hidden argument*/NULL); LicenseException__ctor_mF2D92E05E6C50FC074302429812A557AF8F4E7E0(__this, L_0, NULL, L_5, /*hidden argument*/NULL); return; } } // System.Void System.ComponentModel.LicenseException::.ctor(System.Type,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseException__ctor_m3DC920F991C8D11CAFB428CB0EE6C4B0A683FFC7 (LicenseException_tF6DDD20031120A48931FEA84CC6ACB3D89B612DF * __this, Type_t * ___type0, RuntimeObject * ___instance1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral46DD4902F5BC2E9726A5B1A359D5C0B80A75E722); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___type0; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = L_1; Type_t * L_3 = ___type0; NullCheck(L_3); String_t* L_4; L_4 = VirtualFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_FullName() */, L_3); NullCheck(L_2); ArrayElementTypeCheck (L_2, L_4); (L_2)->SetAt(static_cast(0), (RuntimeObject *)L_4); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = L_2; RuntimeObject * L_6 = ___instance1; NullCheck(L_6); Type_t * L_7; L_7 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_6, /*hidden argument*/NULL); NullCheck(L_7); String_t* L_8; L_8 = VirtualFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_FullName() */, L_7); NullCheck(L_5); ArrayElementTypeCheck (L_5, L_8); (L_5)->SetAt(static_cast(1), (RuntimeObject *)L_8); String_t* L_9; L_9 = SR_GetString_m4FFAF18248A54C5B67E4760C5ED4869A87BCAD7F(_stringLiteral46DD4902F5BC2E9726A5B1A359D5C0B80A75E722, L_5, /*hidden argument*/NULL); LicenseException__ctor_mF2D92E05E6C50FC074302429812A557AF8F4E7E0(__this, L_0, NULL, L_9, /*hidden argument*/NULL); return; } } // System.Void System.ComponentModel.LicenseException::.ctor(System.Type,System.Object,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseException__ctor_mF2D92E05E6C50FC074302429812A557AF8F4E7E0 (LicenseException_tF6DDD20031120A48931FEA84CC6ACB3D89B612DF * __this, Type_t * ___type0, RuntimeObject * ___instance1, String_t* ___message2, const RuntimeMethod* method) { { String_t* L_0 = ___message2; SystemException__ctor_m65B6562BDBB8EF84A384B217BE96647C0BAC770A(__this, L_0, /*hidden argument*/NULL); Type_t * L_1 = ___type0; __this->set_type_17(L_1); RuntimeObject * L_2 = ___instance1; __this->set_instance_18(L_2); Exception_set_HResult_mB9E603303A0678B32684B0EEC144334BAB0E6392_inline(__this, ((int32_t)-2146232063), /*hidden argument*/NULL); return; } } // System.Void System.ComponentModel.LicenseException::.ctor(System.Type,System.Object,System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseException__ctor_m1B112C1A84C7796B630BE4204241F145C834000D (LicenseException_tF6DDD20031120A48931FEA84CC6ACB3D89B612DF * __this, Type_t * ___type0, RuntimeObject * ___instance1, String_t* ___message2, Exception_t * ___innerException3, const RuntimeMethod* method) { { String_t* L_0 = ___message2; Exception_t * L_1 = ___innerException3; SystemException__ctor_m14A39C396B94BEE4EFEA201FB748572011855A94(__this, L_0, L_1, /*hidden argument*/NULL); Type_t * L_2 = ___type0; __this->set_type_17(L_2); RuntimeObject * L_3 = ___instance1; __this->set_instance_18(L_3); Exception_set_HResult_mB9E603303A0678B32684B0EEC144334BAB0E6392_inline(__this, ((int32_t)-2146232063), /*hidden argument*/NULL); return; } } // System.Void System.ComponentModel.LicenseException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseException__ctor_mA2A8060045CC9C121C4BA81B032E632320435736 (LicenseException_tF6DDD20031120A48931FEA84CC6ACB3D89B612DF * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAA236E134566FACF682D16CDBC3E2C735E0EF19D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7); s_Il2CppMethodInitialized = true; } { SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_0 = ___info0; StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 L_1 = ___context1; SystemException__ctor_m20F619D15EAA349C6CE181A65A47C336200EBD19(__this, L_0, L_1, /*hidden argument*/NULL); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_2 = ___info0; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast (Type_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_4; L_4 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_3, /*hidden argument*/NULL); NullCheck(L_2); RuntimeObject * L_5; L_5 = SerializationInfo_GetValue_mF6E311779D55AD7C80B2D19FF2A7E9683AEF2A99(L_2, _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7, L_4, /*hidden argument*/NULL); __this->set_type_17(((Type_t *)CastclassClass((RuntimeObject*)L_5, Type_t_il2cpp_TypeInfo_var))); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_6 = ___info0; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_7 = { reinterpret_cast (RuntimeObject_0_0_0_var) }; Type_t * L_8; L_8 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_7, /*hidden argument*/NULL); NullCheck(L_6); RuntimeObject * L_9; L_9 = SerializationInfo_GetValue_mF6E311779D55AD7C80B2D19FF2A7E9683AEF2A99(L_6, _stringLiteralAA236E134566FACF682D16CDBC3E2C735E0EF19D, L_8, /*hidden argument*/NULL); __this->set_instance_18(L_9); return; } } // System.Type System.ComponentModel.LicenseException::get_LicensedType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * LicenseException_get_LicensedType_m9887CBE0604C2E971C896190A0FE228D6FAE2696 (LicenseException_tF6DDD20031120A48931FEA84CC6ACB3D89B612DF * __this, const RuntimeMethod* method) { { Type_t * L_0 = __this->get_type_17(); return L_0; } } // System.Void System.ComponentModel.LicenseException::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseException_GetObjectData_mB40E9E9B1518FA82D6B63B5C96AC873D5080F33A (LicenseException_tF6DDD20031120A48931FEA84CC6ACB3D89B612DF * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAA236E134566FACF682D16CDBC3E2C735E0EF19D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7); s_Il2CppMethodInitialized = true; } { SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_0 = ___info0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA7B00F7F25C375B2501A6ADBC86D092B23977085)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&LicenseException_GetObjectData_mB40E9E9B1518FA82D6B63B5C96AC873D5080F33A_RuntimeMethod_var))); } IL_000e: { SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_2 = ___info0; Type_t * L_3 = __this->get_type_17(); NullCheck(L_2); SerializationInfo_AddValue_mA50C2668EF700C2239DDC362F8DB409020BB763D(L_2, _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7, L_3, /*hidden argument*/NULL); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_4 = ___info0; RuntimeObject * L_5 = __this->get_instance_18(); NullCheck(L_4); SerializationInfo_AddValue_mA50C2668EF700C2239DDC362F8DB409020BB763D(L_4, _stringLiteralAA236E134566FACF682D16CDBC3E2C735E0EF19D, L_5, /*hidden argument*/NULL); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_6 = ___info0; StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 L_7 = ___context1; Exception_GetObjectData_m2031046D41E7BEE3C743E918B358A336F99D6882(__this, L_6, L_7, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ComponentModel.LicenseManager::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseManager__ctor_mE71B6C29A83BA949CF940C98A1E19D3D58CBA80F (LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } // System.ComponentModel.LicenseContext System.ComponentModel.LicenseManager::get_CurrentContext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * LicenseManager_get_CurrentContext_mC4A5E2B82E17E8AF2D0B8FEEE80DCC7258B2CE85 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeLicenseContext_t38F0BCEF3097D49437450B0D1432588C2E5B1E2A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; bool V_1 = false; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * L_0 = ((LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var))->get_context_1(); il2cpp_codegen_memory_barrier(); if (L_0) { goto IL_003a; } } { IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); RuntimeObject * L_1 = ((LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var))->get_internalSyncObject_5(); V_0 = L_1; V_1 = (bool)0; } IL_0011: try {// begin try (depth: 1) { RuntimeObject * L_2 = V_0; Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4(L_2, (bool*)(&V_1), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * L_3 = ((LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var))->get_context_1(); il2cpp_codegen_memory_barrier(); if (L_3) { goto IL_002e; } } IL_0022: { RuntimeLicenseContext_t38F0BCEF3097D49437450B0D1432588C2E5B1E2A * L_4 = (RuntimeLicenseContext_t38F0BCEF3097D49437450B0D1432588C2E5B1E2A *)il2cpp_codegen_object_new(RuntimeLicenseContext_t38F0BCEF3097D49437450B0D1432588C2E5B1E2A_il2cpp_TypeInfo_var); RuntimeLicenseContext__ctor_m1E50AC997E6F16F86B60D8FF2A4C5EDCF968E28C(L_4, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); il2cpp_codegen_memory_barrier(); ((LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var))->set_context_1(L_4); } IL_002e: { IL2CPP_LEAVE(0x3A, FINALLY_0030); } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0030; } FINALLY_0030: {// begin finally (depth: 1) { bool L_5 = V_1; if (!L_5) { goto IL_0039; } } IL_0033: { RuntimeObject * L_6 = V_0; Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A(L_6, /*hidden argument*/NULL); } IL_0039: { IL2CPP_END_FINALLY(48) } }// end finally (depth: 1) IL2CPP_CLEANUP(48) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x3A, IL_003a) } IL_003a: { IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * L_7 = ((LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var))->get_context_1(); il2cpp_codegen_memory_barrier(); return L_7; } } // System.Void System.ComponentModel.LicenseManager::set_CurrentContext(System.ComponentModel.LicenseContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseManager_set_CurrentContext_m16A96AEE43F9CBC1868E29AD301ED0E531C326EF (LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; bool V_1 = false; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); RuntimeObject * L_0 = ((LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var))->get_internalSyncObject_5(); V_0 = L_0; V_1 = (bool)0; } IL_0008: try {// begin try (depth: 1) { RuntimeObject * L_1 = V_0; Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4(L_1, (bool*)(&V_1), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); RuntimeObject * L_2 = ((LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var))->get_contextLockHolder_2(); if (!L_2) { goto IL_0027; } } IL_0017: { String_t* L_3; L_3 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4D153D1B8107BF5E8622D18DE35D1E57D568ED30)), /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&LicenseManager_set_CurrentContext_m16A96AEE43F9CBC1868E29AD301ED0E531C326EF_RuntimeMethod_var))); } IL_0027: { LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * L_5 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); il2cpp_codegen_memory_barrier(); ((LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var))->set_context_1(L_5); IL2CPP_LEAVE(0x3B, FINALLY_0031); } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0031; } FINALLY_0031: {// begin finally (depth: 1) { bool L_6 = V_1; if (!L_6) { goto IL_003a; } } IL_0034: { RuntimeObject * L_7 = V_0; Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A(L_7, /*hidden argument*/NULL); } IL_003a: { IL2CPP_END_FINALLY(49) } }// end finally (depth: 1) IL2CPP_CLEANUP(49) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x3B, IL_003b) } IL_003b: { return; } } // System.ComponentModel.LicenseUsageMode System.ComponentModel.LicenseManager::get_UsageMode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t LicenseManager_get_UsageMode_mFFFCCCD9CB59DCF62DC3716006EF271FD4E0ABE2 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * L_0 = ((LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var))->get_context_1(); il2cpp_codegen_memory_barrier(); if (!L_0) { goto IL_0016; } } { IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * L_1 = ((LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var))->get_context_1(); il2cpp_codegen_memory_barrier(); NullCheck(L_1); int32_t L_2; L_2 = VirtualFuncInvoker0< int32_t >::Invoke(5 /* System.ComponentModel.LicenseUsageMode System.ComponentModel.LicenseContext::get_UsageMode() */, L_1); return L_2; } IL_0016: { return (int32_t)(0); } } // System.Void System.ComponentModel.LicenseManager::CacheProvider(System.Type,System.ComponentModel.LicenseProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseManager_CacheProvider_m7ACC6482DF5E0B82B16AE5E0F43E92B1F0E0A86F (Type_t * ___type0, LicenseProvider_tBC40978A52764598AA24EC34F19F002CAECD7A10 * ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_0 = ((LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var))->get_providers_3(); il2cpp_codegen_memory_barrier(); if (L_0) { goto IL_0015; } } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_1 = (Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC *)il2cpp_codegen_object_new(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var); Hashtable__ctor_m2D9C25FB57ACD33B0DF8391D38A165975A1D9A91(L_1, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); il2cpp_codegen_memory_barrier(); ((LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var))->set_providers_3(L_1); } IL_0015: { IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_2 = ((LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var))->get_providers_3(); il2cpp_codegen_memory_barrier(); Type_t * L_3 = ___type0; LicenseProvider_tBC40978A52764598AA24EC34F19F002CAECD7A10 * L_4 = ___provider1; NullCheck(L_2); VirtualActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_2, L_3, L_4); LicenseProvider_tBC40978A52764598AA24EC34F19F002CAECD7A10 * L_5 = ___provider1; if (!L_5) { goto IL_004e; } } { IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_6 = ((LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var))->get_providerInstances_4(); il2cpp_codegen_memory_barrier(); if (L_6) { goto IL_003b; } } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_7 = (Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC *)il2cpp_codegen_object_new(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var); Hashtable__ctor_m2D9C25FB57ACD33B0DF8391D38A165975A1D9A91(L_7, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); il2cpp_codegen_memory_barrier(); ((LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var))->set_providerInstances_4(L_7); } IL_003b: { IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_8 = ((LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var))->get_providerInstances_4(); il2cpp_codegen_memory_barrier(); LicenseProvider_tBC40978A52764598AA24EC34F19F002CAECD7A10 * L_9 = ___provider1; NullCheck(L_9); Type_t * L_10; L_10 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_9, /*hidden argument*/NULL); LicenseProvider_tBC40978A52764598AA24EC34F19F002CAECD7A10 * L_11 = ___provider1; NullCheck(L_8); VirtualActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_8, L_10, L_11); } IL_004e: { return; } } // System.Object System.ComponentModel.LicenseManager::CreateWithContext(System.Type,System.ComponentModel.LicenseContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * LicenseManager_CreateWithContext_m620CDF858481E60985A33C9E63A890A523F9EB74 (Type_t * ___type0, LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * ___creationContext1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___type0; LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * L_1 = ___creationContext1; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)0); IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); RuntimeObject * L_3; L_3 = LicenseManager_CreateWithContext_m8C5B9B0671D943B516B93935938766FBBF0429B3(L_0, L_1, L_2, /*hidden argument*/NULL); return L_3; } } // System.Object System.ComponentModel.LicenseManager::CreateWithContext(System.Type,System.ComponentModel.LicenseContext,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * LicenseManager_CreateWithContext_m8C5B9B0671D943B516B93935938766FBBF0429B3 (Type_t * ___type0, LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * ___creationContext1, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___args2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; RuntimeObject * V_1 = NULL; bool V_2 = false; LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * V_3 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; { V_0 = NULL; IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); RuntimeObject * L_0 = ((LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var))->get_internalSyncObject_5(); V_1 = L_0; V_2 = (bool)0; } IL_000a: try {// begin try (depth: 1) { RuntimeObject * L_1 = V_1; Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4(L_1, (bool*)(&V_2), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * L_2; L_2 = LicenseManager_get_CurrentContext_mC4A5E2B82E17E8AF2D0B8FEEE80DCC7258B2CE85(/*hidden argument*/NULL); V_3 = L_2; } IL_0018: try {// begin try (depth: 2) { LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * L_3 = ___creationContext1; IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); LicenseManager_set_CurrentContext_m16A96AEE43F9CBC1868E29AD301ED0E531C326EF(L_3, /*hidden argument*/NULL); RuntimeObject * L_4 = ((LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var))->get_selfLock_0(); LicenseManager_LockContext_mBE27047F427EA27048552745DE05BEF500523A57(L_4, /*hidden argument*/NULL); } IL_0028: try {// begin try (depth: 3) Type_t * L_5 = ___type0; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_6 = ___args2; RuntimeObject * L_7; L_7 = SecurityUtils_SecureCreateInstance_mD5B39B271B2A41D3F33DEB21C81C507038E95CE1(L_5, L_6, /*hidden argument*/NULL); V_0 = L_7; IL2CPP_LEAVE(0x53, FINALLY_0038); }// end try (depth: 3) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TargetInvocationException_t30F4C50D323F448CD2E08BDB8F47694B08EB354C_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0032; } throw e; } CATCH_0032: {// begin catch(System.Reflection.TargetInvocationException) NullCheck(((TargetInvocationException_t30F4C50D323F448CD2E08BDB8F47694B08EB354C *)IL2CPP_GET_ACTIVE_EXCEPTION(TargetInvocationException_t30F4C50D323F448CD2E08BDB8F47694B08EB354C *))); Exception_t * L_8; L_8 = Exception_get_InnerException_m10D85773B6B191C7D4E7D3C2954B84F9BB195218_inline(((TargetInvocationException_t30F4C50D323F448CD2E08BDB8F47694B08EB354C *)IL2CPP_GET_ACTIVE_EXCEPTION(TargetInvocationException_t30F4C50D323F448CD2E08BDB8F47694B08EB354C *)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&LicenseManager_CreateWithContext_m8C5B9B0671D943B516B93935938766FBBF0429B3_RuntimeMethod_var))); }// end catch (depth: 3) }// end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0038; } FINALLY_0038: {// begin finally (depth: 2) IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); RuntimeObject * L_9 = ((LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var))->get_selfLock_0(); LicenseManager_UnlockContext_mA44BC1596521A5C16075490C731CD10D3FAE731F(L_9, /*hidden argument*/NULL); LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * L_10 = V_3; LicenseManager_set_CurrentContext_m16A96AEE43F9CBC1868E29AD301ED0E531C326EF(L_10, /*hidden argument*/NULL); IL2CPP_END_FINALLY(56) }// end finally (depth: 2) IL2CPP_CLEANUP(56) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_END_CLEANUP(0x53, FINALLY_0049); } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0049; } FINALLY_0049: {// begin finally (depth: 1) { bool L_11 = V_2; if (!L_11) { goto IL_0052; } } IL_004c: { RuntimeObject * L_12 = V_1; Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A(L_12, /*hidden argument*/NULL); } IL_0052: { IL2CPP_END_FINALLY(73) } }// end finally (depth: 1) IL2CPP_CLEANUP(73) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x53, IL_0053) } IL_0053: { RuntimeObject * L_13 = V_0; return L_13; } } // System.Boolean System.ComponentModel.LicenseManager::GetCachedNoLicenseProvider(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LicenseManager_GetCachedNoLicenseProvider_mC7441067606A41888DB5BEBCB56E576BC8572F18 (Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_0 = ((LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var))->get_providers_3(); il2cpp_codegen_memory_barrier(); if (!L_0) { goto IL_0017; } } { IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_1 = ((LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var))->get_providers_3(); il2cpp_codegen_memory_barrier(); Type_t * L_2 = ___type0; NullCheck(L_1); bool L_3; L_3 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(27 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_1, L_2); return L_3; } IL_0017: { return (bool)0; } } // System.ComponentModel.LicenseProvider System.ComponentModel.LicenseManager::GetCachedProvider(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LicenseProvider_tBC40978A52764598AA24EC34F19F002CAECD7A10 * LicenseManager_GetCachedProvider_m2214BDD19DF59EBD2CD3BC1376FA89576A98D1F8 (Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LicenseProvider_tBC40978A52764598AA24EC34F19F002CAECD7A10_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_0 = ((LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var))->get_providers_3(); il2cpp_codegen_memory_barrier(); if (!L_0) { goto IL_001c; } } { IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_1 = ((LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var))->get_providers_3(); il2cpp_codegen_memory_barrier(); Type_t * L_2 = ___type0; NullCheck(L_1); RuntimeObject * L_3; L_3 = VirtualFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_1, L_2); return ((LicenseProvider_tBC40978A52764598AA24EC34F19F002CAECD7A10 *)CastclassClass((RuntimeObject*)L_3, LicenseProvider_tBC40978A52764598AA24EC34F19F002CAECD7A10_il2cpp_TypeInfo_var)); } IL_001c: { return (LicenseProvider_tBC40978A52764598AA24EC34F19F002CAECD7A10 *)NULL; } } // System.ComponentModel.LicenseProvider System.ComponentModel.LicenseManager::GetCachedProviderInstance(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LicenseProvider_tBC40978A52764598AA24EC34F19F002CAECD7A10 * LicenseManager_GetCachedProviderInstance_mE9FC852818CFD6C5212CADD7A0B99DFD970BAEE3 (Type_t * ___providerType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LicenseProvider_tBC40978A52764598AA24EC34F19F002CAECD7A10_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_0 = ((LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var))->get_providerInstances_4(); il2cpp_codegen_memory_barrier(); if (!L_0) { goto IL_001c; } } { IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_1 = ((LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var))->get_providerInstances_4(); il2cpp_codegen_memory_barrier(); Type_t * L_2 = ___providerType0; NullCheck(L_1); RuntimeObject * L_3; L_3 = VirtualFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_1, L_2); return ((LicenseProvider_tBC40978A52764598AA24EC34F19F002CAECD7A10 *)CastclassClass((RuntimeObject*)L_3, LicenseProvider_tBC40978A52764598AA24EC34F19F002CAECD7A10_il2cpp_TypeInfo_var)); } IL_001c: { return (LicenseProvider_tBC40978A52764598AA24EC34F19F002CAECD7A10 *)NULL; } } // System.IntPtr System.ComponentModel.LicenseManager::GetLicenseInteropHelperType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t LicenseManager_GetLicenseInteropHelperType_mDB2A1E1753D84B26F146D143639C60DC01CA4313 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LicenseInteropHelper_tEDD804F7CC1046A0C8AA83E95AFB6FD421D0B154_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 V_0; memset((&V_0), 0, sizeof(V_0)); { RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_0 = { reinterpret_cast (LicenseInteropHelper_tEDD804F7CC1046A0C8AA83E95AFB6FD421D0B154_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1; L_1 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_0, /*hidden argument*/NULL); NullCheck(L_1); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_2; L_2 = VirtualFuncInvoker0< RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 >::Invoke(26 /* System.RuntimeTypeHandle System.Type::get_TypeHandle() */, L_1); V_0 = L_2; intptr_t L_3; L_3 = RuntimeTypeHandle_get_Value_m78299A03EF551606AEA2F77C9ECEE38E1D741885_inline((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 *)(&V_0), /*hidden argument*/NULL); return (intptr_t)L_3; } } // System.Boolean System.ComponentModel.LicenseManager::IsLicensed(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LicenseManager_IsLicensed_m8D98B2BCEF433B2271D012C20A92EE97318C0A46 (Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 * V_0 = NULL; bool G_B2_0 = false; bool G_B1_0 = false; { Type_t * L_0 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); bool L_1; L_1 = LicenseManager_ValidateInternal_mFFC28A6FF9EB19299BF6A56483652332DABC423C(L_0, NULL, (bool)0, (License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 **)(&V_0), /*hidden argument*/NULL); License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 * L_2 = V_0; G_B1_0 = L_1; if (!L_2) { G_B2_0 = L_1; goto IL_0015; } } { License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 * L_3 = V_0; NullCheck(L_3); VirtualActionInvoker0::Invoke(6 /* System.Void System.ComponentModel.License::Dispose() */, L_3); V_0 = (License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 *)NULL; G_B2_0 = G_B1_0; } IL_0015: { return G_B2_0; } } // System.Boolean System.ComponentModel.LicenseManager::IsValid(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LicenseManager_IsValid_mF2F0E4E198F19A08E8913CB57913528E26BEAF58 (Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 * V_0 = NULL; bool G_B2_0 = false; bool G_B1_0 = false; { Type_t * L_0 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); bool L_1; L_1 = LicenseManager_ValidateInternal_mFFC28A6FF9EB19299BF6A56483652332DABC423C(L_0, NULL, (bool)0, (License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 **)(&V_0), /*hidden argument*/NULL); License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 * L_2 = V_0; G_B1_0 = L_1; if (!L_2) { G_B2_0 = L_1; goto IL_0015; } } { License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 * L_3 = V_0; NullCheck(L_3); VirtualActionInvoker0::Invoke(6 /* System.Void System.ComponentModel.License::Dispose() */, L_3); V_0 = (License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 *)NULL; G_B2_0 = G_B1_0; } IL_0015: { return G_B2_0; } } // System.Boolean System.ComponentModel.LicenseManager::IsValid(System.Type,System.Object,System.ComponentModel.License&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LicenseManager_IsValid_m2D9D9544850697BE5613E8249E35D0DC4648D6A2 (Type_t * ___type0, RuntimeObject * ___instance1, License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 ** ___license2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___type0; RuntimeObject * L_1 = ___instance1; License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 ** L_2 = ___license2; IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); bool L_3; L_3 = LicenseManager_ValidateInternal_mFFC28A6FF9EB19299BF6A56483652332DABC423C(L_0, L_1, (bool)0, (License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 **)L_2, /*hidden argument*/NULL); return L_3; } } // System.Void System.ComponentModel.LicenseManager::LockContext(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseManager_LockContext_mBE27047F427EA27048552745DE05BEF500523A57 (RuntimeObject * ___contextUser0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; bool V_1 = false; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); RuntimeObject * L_0 = ((LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var))->get_internalSyncObject_5(); V_0 = L_0; V_1 = (bool)0; } IL_0008: try {// begin try (depth: 1) { RuntimeObject * L_1 = V_0; Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4(L_1, (bool*)(&V_1), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); RuntimeObject * L_2 = ((LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var))->get_contextLockHolder_2(); if (!L_2) { goto IL_0027; } } IL_0017: { String_t* L_3; L_3 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral754EF6B9499335AFEA7631E06D83DA3C0E7A06F9)), /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&LicenseManager_LockContext_mBE27047F427EA27048552745DE05BEF500523A57_RuntimeMethod_var))); } IL_0027: { RuntimeObject * L_5 = ___contextUser0; IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); ((LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var))->set_contextLockHolder_2(L_5); IL2CPP_LEAVE(0x39, FINALLY_002f); } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_002f; } FINALLY_002f: {// begin finally (depth: 1) { bool L_6 = V_1; if (!L_6) { goto IL_0038; } } IL_0032: { RuntimeObject * L_7 = V_0; Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A(L_7, /*hidden argument*/NULL); } IL_0038: { IL2CPP_END_FINALLY(47) } }// end finally (depth: 1) IL2CPP_CLEANUP(47) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x39, IL_0039) } IL_0039: { return; } } // System.Void System.ComponentModel.LicenseManager::UnlockContext(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseManager_UnlockContext_mA44BC1596521A5C16075490C731CD10D3FAE731F (RuntimeObject * ___contextUser0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; bool V_1 = false; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); RuntimeObject * L_0 = ((LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var))->get_internalSyncObject_5(); V_0 = L_0; V_1 = (bool)0; } IL_0008: try {// begin try (depth: 1) { RuntimeObject * L_1 = V_0; Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4(L_1, (bool*)(&V_1), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); RuntimeObject * L_2 = ((LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var))->get_contextLockHolder_2(); RuntimeObject * L_3 = ___contextUser0; if ((((RuntimeObject*)(RuntimeObject *)L_2) == ((RuntimeObject*)(RuntimeObject *)L_3))) { goto IL_0028; } } IL_0018: { String_t* L_4; L_4 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBCE2798D58FE39F6C63D72D379391EC7F1BE7834)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_5 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_5, L_4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&LicenseManager_UnlockContext_mA44BC1596521A5C16075490C731CD10D3FAE731F_RuntimeMethod_var))); } IL_0028: { IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); ((LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var))->set_contextLockHolder_2(NULL); IL2CPP_LEAVE(0x3A, FINALLY_0030); } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0030; } FINALLY_0030: {// begin finally (depth: 1) { bool L_6 = V_1; if (!L_6) { goto IL_0039; } } IL_0033: { RuntimeObject * L_7 = V_0; Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A(L_7, /*hidden argument*/NULL); } IL_0039: { IL2CPP_END_FINALLY(48) } }// end finally (depth: 1) IL2CPP_CLEANUP(48) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x3A, IL_003a) } IL_003a: { return; } } // System.Boolean System.ComponentModel.LicenseManager::ValidateInternal(System.Type,System.Object,System.Boolean,System.ComponentModel.License&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LicenseManager_ValidateInternal_mFFC28A6FF9EB19299BF6A56483652332DABC423C (Type_t * ___type0, RuntimeObject * ___instance1, bool ___allowExceptions2, License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 ** ___license3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * L_0; L_0 = LicenseManager_get_CurrentContext_mC4A5E2B82E17E8AF2D0B8FEEE80DCC7258B2CE85(/*hidden argument*/NULL); Type_t * L_1 = ___type0; RuntimeObject * L_2 = ___instance1; bool L_3 = ___allowExceptions2; License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 ** L_4 = ___license3; bool L_5; L_5 = LicenseManager_ValidateInternalRecursive_m10B65A5CB9E91A8A5DB91DF42A6711DC7CE797E6(L_0, L_1, L_2, L_3, (License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 **)L_4, (String_t**)(&V_0), /*hidden argument*/NULL); return L_5; } } // System.Boolean System.ComponentModel.LicenseManager::ValidateInternalRecursive(System.ComponentModel.LicenseContext,System.Type,System.Object,System.Boolean,System.ComponentModel.License&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LicenseManager_ValidateInternalRecursive_m10B65A5CB9E91A8A5DB91DF42A6711DC7CE797E6 (LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * ___context0, Type_t * ___type1, RuntimeObject * ___instance2, bool ___allowExceptions3, License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 ** ___license4, String_t** ___licenseKey5, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LicenseProvider_tBC40978A52764598AA24EC34F19F002CAECD7A10_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } LicenseProvider_tBC40978A52764598AA24EC34F19F002CAECD7A10 * V_0 = NULL; bool V_1 = false; LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B * V_2 = NULL; Type_t * V_3 = NULL; Type_t * V_4 = NULL; String_t* V_5 = NULL; { Type_t * L_0 = ___type1; IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); LicenseProvider_tBC40978A52764598AA24EC34F19F002CAECD7A10 * L_1; L_1 = LicenseManager_GetCachedProvider_m2214BDD19DF59EBD2CD3BC1376FA89576A98D1F8(L_0, /*hidden argument*/NULL); V_0 = L_1; LicenseProvider_tBC40978A52764598AA24EC34F19F002CAECD7A10 * L_2 = V_0; if (L_2) { goto IL_0050; } } { Type_t * L_3 = ___type1; IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); bool L_4; L_4 = LicenseManager_GetCachedNoLicenseProvider_mC7441067606A41888DB5BEBCB56E576BC8572F18(L_3, /*hidden argument*/NULL); if (L_4) { goto IL_0050; } } { Type_t * L_5 = ___type1; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_6 = { reinterpret_cast (LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_7; L_7 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_6, /*hidden argument*/NULL); Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 * L_8; L_8 = Attribute_GetCustomAttribute_m2BF1101C0D9584CA284648B287DD50DAA331BCED(L_5, L_7, (bool)0, /*hidden argument*/NULL); V_2 = ((LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B *)CastclassSealed((RuntimeObject*)L_8, LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B_il2cpp_TypeInfo_var)); LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B * L_9 = V_2; if (!L_9) { goto IL_0049; } } { LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B * L_10 = V_2; NullCheck(L_10); Type_t * L_11; L_11 = LicenseProviderAttribute_get_LicenseProvider_m458ACC093F592CD53B7D78A12CCCD3ECA0818143(L_10, /*hidden argument*/NULL); V_3 = L_11; Type_t * L_12 = V_3; IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); LicenseProvider_tBC40978A52764598AA24EC34F19F002CAECD7A10 * L_13; L_13 = LicenseManager_GetCachedProviderInstance_mE9FC852818CFD6C5212CADD7A0B99DFD970BAEE3(L_12, /*hidden argument*/NULL); V_0 = L_13; LicenseProvider_tBC40978A52764598AA24EC34F19F002CAECD7A10 * L_14 = V_0; if (L_14) { goto IL_0049; } } { Type_t * L_15 = V_3; RuntimeObject * L_16; L_16 = SecurityUtils_SecureCreateInstance_m695DFC54D65143549A28688268441C425836F8F7(L_15, /*hidden argument*/NULL); V_0 = ((LicenseProvider_tBC40978A52764598AA24EC34F19F002CAECD7A10 *)CastclassClass((RuntimeObject*)L_16, LicenseProvider_tBC40978A52764598AA24EC34F19F002CAECD7A10_il2cpp_TypeInfo_var)); } IL_0049: { Type_t * L_17 = ___type1; LicenseProvider_tBC40978A52764598AA24EC34F19F002CAECD7A10 * L_18 = V_0; IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); LicenseManager_CacheProvider_m7ACC6482DF5E0B82B16AE5E0F43E92B1F0E0A86F(L_17, L_18, /*hidden argument*/NULL); } IL_0050: { License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 ** L_19 = ___license4; *((RuntimeObject **)L_19) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_19, (void*)(RuntimeObject *)NULL); V_1 = (bool)1; String_t** L_20 = ___licenseKey5; *((RuntimeObject **)L_20) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_20, (void*)(RuntimeObject *)NULL); LicenseProvider_tBC40978A52764598AA24EC34F19F002CAECD7A10 * L_21 = V_0; if (!L_21) { goto IL_007e; } } { License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 ** L_22 = ___license4; LicenseProvider_tBC40978A52764598AA24EC34F19F002CAECD7A10 * L_23 = V_0; LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * L_24 = ___context0; Type_t * L_25 = ___type1; RuntimeObject * L_26 = ___instance2; bool L_27 = ___allowExceptions3; NullCheck(L_23); License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 * L_28; L_28 = VirtualFuncInvoker4< License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 *, LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF *, Type_t *, RuntimeObject *, bool >::Invoke(4 /* System.ComponentModel.License System.ComponentModel.LicenseProvider::GetLicense(System.ComponentModel.LicenseContext,System.Type,System.Object,System.Boolean) */, L_23, L_24, L_25, L_26, L_27); *((RuntimeObject **)L_22) = (RuntimeObject *)L_28; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_22, (void*)(RuntimeObject *)L_28); License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 ** L_29 = ___license4; License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 * L_30 = *((License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 **)L_29); if (L_30) { goto IL_0073; } } { V_1 = (bool)0; goto IL_007e; } IL_0073: { String_t** L_31 = ___licenseKey5; License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 ** L_32 = ___license4; License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 * L_33 = *((License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 **)L_32); NullCheck(L_33); String_t* L_34; L_34 = VirtualFuncInvoker0< String_t* >::Invoke(5 /* System.String System.ComponentModel.License::get_LicenseKey() */, L_33); *((RuntimeObject **)L_31) = (RuntimeObject *)L_34; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_31, (void*)(RuntimeObject *)L_34); } IL_007e: { bool L_35 = V_1; if (!L_35) { goto IL_00da; } } { RuntimeObject * L_36 = ___instance2; if (L_36) { goto IL_00da; } } { Type_t * L_37 = ___type1; NullCheck(L_37); Type_t * L_38; L_38 = VirtualFuncInvoker0< Type_t * >::Invoke(31 /* System.Type System.Type::get_BaseType() */, L_37); V_4 = L_38; Type_t * L_39 = V_4; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_40 = { reinterpret_cast (RuntimeObject_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_41; L_41 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_40, /*hidden argument*/NULL); bool L_42; L_42 = Type_op_Inequality_m6DDC5E923203A79BF505F9275B694AD3FAA36DB0(L_39, L_41, /*hidden argument*/NULL); if (!L_42) { goto IL_00da; } } { Type_t * L_43 = V_4; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_44; L_44 = Type_op_Inequality_m6DDC5E923203A79BF505F9275B694AD3FAA36DB0(L_43, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_44) { goto IL_00da; } } { License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 ** L_45 = ___license4; License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 * L_46 = *((License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 **)L_45); if (!L_46) { goto IL_00ba; } } { License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 ** L_47 = ___license4; License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 * L_48 = *((License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 **)L_47); NullCheck(L_48); VirtualActionInvoker0::Invoke(6 /* System.Void System.ComponentModel.License::Dispose() */, L_48); License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 ** L_49 = ___license4; *((RuntimeObject **)L_49) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_49, (void*)(RuntimeObject *)NULL); } IL_00ba: { LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF * L_50 = ___context0; Type_t * L_51 = V_4; bool L_52 = ___allowExceptions3; License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 ** L_53 = ___license4; IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); bool L_54; L_54 = LicenseManager_ValidateInternalRecursive_m10B65A5CB9E91A8A5DB91DF42A6711DC7CE797E6(L_50, L_51, NULL, L_52, (License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 **)L_53, (String_t**)(&V_5), /*hidden argument*/NULL); V_1 = L_54; License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 ** L_55 = ___license4; License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 * L_56 = *((License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 **)L_55); if (!L_56) { goto IL_00da; } } { License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 ** L_57 = ___license4; License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 * L_58 = *((License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 **)L_57); NullCheck(L_58); VirtualActionInvoker0::Invoke(6 /* System.Void System.ComponentModel.License::Dispose() */, L_58); License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 ** L_59 = ___license4; *((RuntimeObject **)L_59) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_59, (void*)(RuntimeObject *)NULL); } IL_00da: { bool L_60 = V_1; return L_60; } } // System.Void System.ComponentModel.LicenseManager::Validate(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseManager_Validate_mD446D6D3C1F5C8E10C7F2184F5A6A301EDDDF2E0 (Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 * V_0 = NULL; { Type_t * L_0 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); bool L_1; L_1 = LicenseManager_ValidateInternal_mFFC28A6FF9EB19299BF6A56483652332DABC423C(L_0, NULL, (bool)1, (License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 **)(&V_0), /*hidden argument*/NULL); if (L_1) { goto IL_0013; } } { Type_t * L_2 = ___type0; LicenseException_tF6DDD20031120A48931FEA84CC6ACB3D89B612DF * L_3 = (LicenseException_tF6DDD20031120A48931FEA84CC6ACB3D89B612DF *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&LicenseException_tF6DDD20031120A48931FEA84CC6ACB3D89B612DF_il2cpp_TypeInfo_var))); LicenseException__ctor_mE9358A7DC2DED9E7DAC0189DDB6DA7F166C975A4(L_3, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&LicenseManager_Validate_mD446D6D3C1F5C8E10C7F2184F5A6A301EDDDF2E0_RuntimeMethod_var))); } IL_0013: { License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 * L_4 = V_0; if (!L_4) { goto IL_001e; } } { License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 * L_5 = V_0; NullCheck(L_5); VirtualActionInvoker0::Invoke(6 /* System.Void System.ComponentModel.License::Dispose() */, L_5); V_0 = (License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 *)NULL; } IL_001e: { return; } } // System.ComponentModel.License System.ComponentModel.LicenseManager::Validate(System.Type,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 * LicenseManager_Validate_mABEFFC1861E112C1469F1EAACFE676F0F73F120E (Type_t * ___type0, RuntimeObject * ___instance1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 * V_0 = NULL; { Type_t * L_0 = ___type0; RuntimeObject * L_1 = ___instance1; IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); bool L_2; L_2 = LicenseManager_ValidateInternal_mFFC28A6FF9EB19299BF6A56483652332DABC423C(L_0, L_1, (bool)1, (License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 **)(&V_0), /*hidden argument*/NULL); if (L_2) { goto IL_0014; } } { Type_t * L_3 = ___type0; RuntimeObject * L_4 = ___instance1; LicenseException_tF6DDD20031120A48931FEA84CC6ACB3D89B612DF * L_5 = (LicenseException_tF6DDD20031120A48931FEA84CC6ACB3D89B612DF *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&LicenseException_tF6DDD20031120A48931FEA84CC6ACB3D89B612DF_il2cpp_TypeInfo_var))); LicenseException__ctor_m3DC920F991C8D11CAFB428CB0EE6C4B0A683FFC7(L_5, L_3, L_4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&LicenseManager_Validate_mABEFFC1861E112C1469F1EAACFE676F0F73F120E_RuntimeMethod_var))); } IL_0014: { License_tB4FE2B5F9E796E97586FCED9751B0FDF0A4E7832 * L_6 = V_0; return L_6; } } // System.Void System.ComponentModel.LicenseManager::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseManager__cctor_m62761BCC40B40EBB2C894D5EAF5FEC0CC007936E (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(L_0, /*hidden argument*/NULL); ((LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var))->set_selfLock_0(L_0); il2cpp_codegen_memory_barrier(); ((LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var))->set_context_1((LicenseContext_tB65240B57593182AEA890FAF1B3D60DBEA9360EF *)NULL); ((LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var))->set_contextLockHolder_2(NULL); RuntimeObject * L_1 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(L_1, /*hidden argument*/NULL); ((LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t31161D856988964B3A90CF3EAFE2263FA7AE0C4A_il2cpp_TypeInfo_var))->set_internalSyncObject_5(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.ComponentModel.LicenseProvider::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseProvider__ctor_mF89C5F85ABCDC20F05E3ABCE71B2D97B4C3D25BB (LicenseProvider_tBC40978A52764598AA24EC34F19F002CAECD7A10 * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ComponentModel.LicenseProviderAttribute::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseProviderAttribute__ctor_m6069633C360443CDC6E31E5E17DEA2A7BA3F8B22 (LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B * __this, const RuntimeMethod* method) { { LicenseProviderAttribute__ctor_mA39DC8AB831D37CCCD86CB120F028DED795D37B9(__this, (String_t*)NULL, /*hidden argument*/NULL); return; } } // System.Void System.ComponentModel.LicenseProviderAttribute::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseProviderAttribute__ctor_mA39DC8AB831D37CCCD86CB120F028DED795D37B9 (LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B * __this, String_t* ___typeName0, const RuntimeMethod* method) { { Attribute__ctor_m5C1862A7DFC2C25A4797A8C5F681FBB5CB53ECE1(__this, /*hidden argument*/NULL); String_t* L_0 = ___typeName0; __this->set_licenseProviderName_2(L_0); return; } } // System.Void System.ComponentModel.LicenseProviderAttribute::.ctor(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseProviderAttribute__ctor_m732A64F076609D945F9795B1FCC1FEBF7DF69E5D (LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B * __this, Type_t * ___type0, const RuntimeMethod* method) { { Attribute__ctor_m5C1862A7DFC2C25A4797A8C5F681FBB5CB53ECE1(__this, /*hidden argument*/NULL); Type_t * L_0 = ___type0; __this->set_licenseProviderType_1(L_0); return; } } // System.Type System.ComponentModel.LicenseProviderAttribute::get_LicenseProvider() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * LicenseProviderAttribute_get_LicenseProvider_m458ACC093F592CD53B7D78A12CCCD3ECA0818143 (LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LicenseProviderAttribute_get_LicenseProvider_m458ACC093F592CD53B7D78A12CCCD3ECA0818143_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_GetType_m2D692327E10692E11116805CC604CD47F144A9E4_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = __this->get_licenseProviderType_1(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1; L_1 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0027; } } { String_t* L_2 = __this->get_licenseProviderName_2(); if (!L_2) { goto IL_0027; } } { String_t* L_3 = __this->get_licenseProviderName_2(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_4; L_4 = il2cpp_codegen_get_type(Type_GetType_m2D692327E10692E11116805CC604CD47F144A9E4_RuntimeMethod_var, L_3, LicenseProviderAttribute_get_LicenseProvider_m458ACC093F592CD53B7D78A12CCCD3ECA0818143_RuntimeMethod_var); __this->set_licenseProviderType_1(L_4); } IL_0027: { Type_t * L_5 = __this->get_licenseProviderType_1(); return L_5; } } // System.Object System.ComponentModel.LicenseProviderAttribute::get_TypeId() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * LicenseProviderAttribute_get_TypeId_m1DC24A87E4D67CF94949D04596BA1F405B366FD1 (LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { String_t* L_0 = __this->get_licenseProviderName_2(); V_0 = L_0; String_t* L_1 = V_0; if (L_1) { goto IL_0024; } } { Type_t * L_2 = __this->get_licenseProviderType_1(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_3; L_3 = Type_op_Inequality_m6DDC5E923203A79BF505F9275B694AD3FAA36DB0(L_2, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_3) { goto IL_0024; } } { Type_t * L_4 = __this->get_licenseProviderType_1(); NullCheck(L_4); String_t* L_5; L_5 = VirtualFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_FullName() */, L_4); V_0 = L_5; } IL_0024: { Type_t * L_6; L_6 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(__this, /*hidden argument*/NULL); NullCheck(L_6); String_t* L_7; L_7 = VirtualFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_FullName() */, L_6); String_t* L_8 = V_0; String_t* L_9; L_9 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_7, L_8, /*hidden argument*/NULL); return L_9; } } // System.Boolean System.ComponentModel.LicenseProviderAttribute::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LicenseProviderAttribute_Equals_m8A8EA21FAA9054C0ADD43114244223F13A59B5B0 (LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; { RuntimeObject * L_0 = ___value0; if (!((LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B *)IsInstSealed((RuntimeObject*)L_0, LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B_il2cpp_TypeInfo_var))) { goto IL_0040; } } { RuntimeObject * L_1 = ___value0; if (!L_1) { goto IL_0040; } } { RuntimeObject * L_2 = ___value0; NullCheck(((LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B *)CastclassSealed((RuntimeObject*)L_2, LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B_il2cpp_TypeInfo_var))); Type_t * L_3; L_3 = LicenseProviderAttribute_get_LicenseProvider_m458ACC093F592CD53B7D78A12CCCD3ECA0818143(((LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B *)CastclassSealed((RuntimeObject*)L_2, LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); V_0 = L_3; Type_t * L_4 = V_0; Type_t * L_5; L_5 = LicenseProviderAttribute_get_LicenseProvider_m458ACC093F592CD53B7D78A12CCCD3ECA0818143(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_6; L_6 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046(L_4, L_5, /*hidden argument*/NULL); if (!L_6) { goto IL_0027; } } { return (bool)1; } IL_0027: { Type_t * L_7 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_8; L_8 = Type_op_Inequality_m6DDC5E923203A79BF505F9275B694AD3FAA36DB0(L_7, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_8) { goto IL_0040; } } { Type_t * L_9 = V_0; Type_t * L_10; L_10 = LicenseProviderAttribute_get_LicenseProvider_m458ACC093F592CD53B7D78A12CCCD3ECA0818143(__this, /*hidden argument*/NULL); NullCheck(L_9); bool L_11; L_11 = VirtualFuncInvoker1< bool, Type_t * >::Invoke(124 /* System.Boolean System.Type::Equals(System.Type) */, L_9, L_10); if (!L_11) { goto IL_0040; } } { return (bool)1; } IL_0040: { return (bool)0; } } // System.Int32 System.ComponentModel.LicenseProviderAttribute::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t LicenseProviderAttribute_GetHashCode_m626175DF13AB6C3CD2D339DA2DFCEC2BE86C1D46 (LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B * __this, const RuntimeMethod* method) { { int32_t L_0; L_0 = Attribute_GetHashCode_m46EC3256A8DDAC7AC7576362EB50ABD0F83123B4(__this, /*hidden argument*/NULL); return L_0; } } // System.Void System.ComponentModel.LicenseProviderAttribute::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseProviderAttribute__cctor_m05C84A9021B2F11D8FBB53C56481A03ED0E2BFB4 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B * L_0 = (LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B *)il2cpp_codegen_object_new(LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B_il2cpp_TypeInfo_var); LicenseProviderAttribute__ctor_m6069633C360443CDC6E31E5E17DEA2A7BA3F8B22(L_0, /*hidden argument*/NULL); ((LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B_StaticFields*)il2cpp_codegen_static_fields_for(LicenseProviderAttribute_t9D1B37FA95578D3E269D2C33B20B46C909C5E67B_il2cpp_TypeInfo_var))->set_Default_0(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #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.Net.Sockets.LingerOption::.ctor(System.Boolean,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LingerOption__ctor_m939C73C595D32F9A58592AC9FD8D66924C48E51A (LingerOption_t4E191E63AB49943D401B71B3E7830E6586CE0E34 * __this, bool ___enable0, int32_t ___seconds1, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); bool L_0 = ___enable0; LingerOption_set_Enabled_m3F544534413C4239E4A0A6D39AE8FF28EEF04207_inline(__this, L_0, /*hidden argument*/NULL); int32_t L_1 = ___seconds1; LingerOption_set_LingerTime_m4BF89E47E5A4D261B800DD00A8B73DA7EE719C37_inline(__this, L_1, /*hidden argument*/NULL); return; } } // System.Void System.Net.Sockets.LingerOption::set_Enabled(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LingerOption_set_Enabled_m3F544534413C4239E4A0A6D39AE8FF28EEF04207 (LingerOption_t4E191E63AB49943D401B71B3E7830E6586CE0E34 * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set_enabled_0(L_0); return; } } // System.Void System.Net.Sockets.LingerOption::set_LingerTime(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LingerOption_set_LingerTime_m4BF89E47E5A4D261B800DD00A8B73DA7EE719C37 (LingerOption_t4E191E63AB49943D401B71B3E7830E6586CE0E34 * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set_lingerTime_1(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.ComponentModel.ListBindableAttribute::.ctor(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListBindableAttribute__ctor_mDA94097937F0FBC03C6C58229965B5CE61958C5A (ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4 * __this, bool ___listBindable0, const RuntimeMethod* method) { { Attribute__ctor_m5C1862A7DFC2C25A4797A8C5F681FBB5CB53ECE1(__this, /*hidden argument*/NULL); bool L_0 = ___listBindable0; __this->set_listBindable_3(L_0); return; } } // System.Void System.ComponentModel.ListBindableAttribute::.ctor(System.ComponentModel.BindableSupport) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListBindableAttribute__ctor_m2F64DC2C9276F39698B956DA81867A09539AB29D (ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4 * __this, int32_t ___flags0, const RuntimeMethod* method) { { Attribute__ctor_m5C1862A7DFC2C25A4797A8C5F681FBB5CB53ECE1(__this, /*hidden argument*/NULL); int32_t L_0 = ___flags0; __this->set_listBindable_3((bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0)); int32_t L_1 = ___flags0; __this->set_isDefault_4((bool)((((int32_t)L_1) == ((int32_t)2))? 1 : 0)); return; } } // System.Boolean System.ComponentModel.ListBindableAttribute::get_ListBindable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ListBindableAttribute_get_ListBindable_m86C2633502AF31DE15F0012622965BA952C98758 (ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_listBindable_3(); return L_0; } } // System.Boolean System.ComponentModel.ListBindableAttribute::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ListBindableAttribute_Equals_mC01FD721664E2B50E0B19B50DD85E8FF7758AECE (ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4 * V_0 = NULL; { RuntimeObject * L_0 = ___obj0; if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4 *)__this)))) { goto IL_0006; } } { return (bool)1; } IL_0006: { RuntimeObject * L_1 = ___obj0; V_0 = ((ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4 *)IsInstSealed((RuntimeObject*)L_1, ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4_il2cpp_TypeInfo_var)); ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4 * L_2 = V_0; if (!L_2) { goto IL_001f; } } { ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4 * L_3 = V_0; NullCheck(L_3); bool L_4; L_4 = ListBindableAttribute_get_ListBindable_m86C2633502AF31DE15F0012622965BA952C98758_inline(L_3, /*hidden argument*/NULL); bool L_5 = __this->get_listBindable_3(); return (bool)((((int32_t)L_4) == ((int32_t)L_5))? 1 : 0); } IL_001f: { return (bool)0; } } // System.Int32 System.ComponentModel.ListBindableAttribute::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ListBindableAttribute_GetHashCode_mDAA8AADD3E375E826A348EBC027E10BFBDD22FF7 (ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4 * __this, const RuntimeMethod* method) { { int32_t L_0; L_0 = Attribute_GetHashCode_m46EC3256A8DDAC7AC7576362EB50ABD0F83123B4(__this, /*hidden argument*/NULL); return L_0; } } // System.Boolean System.ComponentModel.ListBindableAttribute::IsDefaultAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ListBindableAttribute_IsDefaultAttribute_m75701F58039FA7CEE7ECB7D2944C5390A0DF2338 (ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4_il2cpp_TypeInfo_var); ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4 * L_0 = ((ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4_StaticFields*)il2cpp_codegen_static_fields_for(ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4_il2cpp_TypeInfo_var))->get_Default_2(); bool L_1; L_1 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, __this, L_0); if (L_1) { goto IL_0014; } } { bool L_2 = __this->get_isDefault_4(); return L_2; } IL_0014: { return (bool)1; } } // System.Void System.ComponentModel.ListBindableAttribute::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListBindableAttribute__cctor_m821B6AFB4DAF8B6326F482415DD1647BB9BA6560 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4 * L_0 = (ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4 *)il2cpp_codegen_object_new(ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4_il2cpp_TypeInfo_var); ListBindableAttribute__ctor_mDA94097937F0FBC03C6C58229965B5CE61958C5A(L_0, (bool)1, /*hidden argument*/NULL); ((ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4_StaticFields*)il2cpp_codegen_static_fields_for(ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4_il2cpp_TypeInfo_var))->set_Yes_0(L_0); ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4 * L_1 = (ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4 *)il2cpp_codegen_object_new(ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4_il2cpp_TypeInfo_var); ListBindableAttribute__ctor_mDA94097937F0FBC03C6C58229965B5CE61958C5A(L_1, (bool)0, /*hidden argument*/NULL); ((ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4_StaticFields*)il2cpp_codegen_static_fields_for(ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4_il2cpp_TypeInfo_var))->set_No_1(L_1); ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4 * L_2 = ((ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4_StaticFields*)il2cpp_codegen_static_fields_for(ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4_il2cpp_TypeInfo_var))->get_Yes_0(); ((ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4_StaticFields*)il2cpp_codegen_static_fields_for(ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4_il2cpp_TypeInfo_var))->set_Default_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 // System.Void System.ComponentModel.ListChangedEventArgs::.ctor(System.ComponentModel.ListChangedType,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListChangedEventArgs__ctor_m962F15947E5744DBEEC896D6DD22419796581BE3 (ListChangedEventArgs_t7E1DD2BB933BE30107C8B95958746E6AF24F6632 * __this, int32_t ___listChangedType0, int32_t ___newIndex1, const RuntimeMethod* method) { { int32_t L_0 = ___listChangedType0; int32_t L_1 = ___newIndex1; ListChangedEventArgs__ctor_m913D6B801515C5A0F44170B452C2D3A44F8DD890(__this, L_0, L_1, (-1), /*hidden argument*/NULL); return; } } // System.Void System.ComponentModel.ListChangedEventArgs::.ctor(System.ComponentModel.ListChangedType,System.Int32,System.ComponentModel.PropertyDescriptor) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListChangedEventArgs__ctor_mC8A564D443E6E8F75066D33BB109CADB1265795E (ListChangedEventArgs_t7E1DD2BB933BE30107C8B95958746E6AF24F6632 * __this, int32_t ___listChangedType0, int32_t ___newIndex1, PropertyDescriptor_t851C1421EDEEC6CB7D059D50CF94886ECCA1B22B * ___propDesc2, const RuntimeMethod* method) { { int32_t L_0 = ___listChangedType0; int32_t L_1 = ___newIndex1; ListChangedEventArgs__ctor_m962F15947E5744DBEEC896D6DD22419796581BE3(__this, L_0, L_1, /*hidden argument*/NULL); PropertyDescriptor_t851C1421EDEEC6CB7D059D50CF94886ECCA1B22B * L_2 = ___propDesc2; __this->set_propDesc_4(L_2); int32_t L_3 = ___newIndex1; __this->set_oldIndex_3(L_3); return; } } // System.Void System.ComponentModel.ListChangedEventArgs::.ctor(System.ComponentModel.ListChangedType,System.ComponentModel.PropertyDescriptor) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListChangedEventArgs__ctor_mD290B028F6D78BEA35DE4D94DAE584C5FA85A037 (ListChangedEventArgs_t7E1DD2BB933BE30107C8B95958746E6AF24F6632 * __this, int32_t ___listChangedType0, PropertyDescriptor_t851C1421EDEEC6CB7D059D50CF94886ECCA1B22B * ___propDesc1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA_il2cpp_TypeInfo_var); EventArgs__ctor_m5ECB9A8ED0A9E2DBB1ED999BAC1CB44F4354E571(__this, /*hidden argument*/NULL); int32_t L_0 = ___listChangedType0; __this->set_listChangedType_1(L_0); PropertyDescriptor_t851C1421EDEEC6CB7D059D50CF94886ECCA1B22B * L_1 = ___propDesc1; __this->set_propDesc_4(L_1); return; } } // System.Void System.ComponentModel.ListChangedEventArgs::.ctor(System.ComponentModel.ListChangedType,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListChangedEventArgs__ctor_m913D6B801515C5A0F44170B452C2D3A44F8DD890 (ListChangedEventArgs_t7E1DD2BB933BE30107C8B95958746E6AF24F6632 * __this, int32_t ___listChangedType0, int32_t ___newIndex1, int32_t ___oldIndex2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(EventArgs_tBCAACA538A5195B6D6C8DFCC3524A2A4A67FD8BA_il2cpp_TypeInfo_var); EventArgs__ctor_m5ECB9A8ED0A9E2DBB1ED999BAC1CB44F4354E571(__this, /*hidden argument*/NULL); int32_t L_0 = ___listChangedType0; __this->set_listChangedType_1(L_0); int32_t L_1 = ___newIndex1; __this->set_newIndex_2(L_1); int32_t L_2 = ___oldIndex2; __this->set_oldIndex_3(L_2); return; } } // System.ComponentModel.ListChangedType System.ComponentModel.ListChangedEventArgs::get_ListChangedType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ListChangedEventArgs_get_ListChangedType_m9C19EB0D199F77F00225E31BACAC7BFA92FE505A (ListChangedEventArgs_t7E1DD2BB933BE30107C8B95958746E6AF24F6632 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_listChangedType_1(); return L_0; } } // System.Int32 System.ComponentModel.ListChangedEventArgs::get_NewIndex() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ListChangedEventArgs_get_NewIndex_m8D03A532B7371CAFBE335212AE80729182FF8699 (ListChangedEventArgs_t7E1DD2BB933BE30107C8B95958746E6AF24F6632 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_newIndex_2(); return L_0; } } // System.Int32 System.ComponentModel.ListChangedEventArgs::get_OldIndex() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ListChangedEventArgs_get_OldIndex_mEA239CBA6E032009ED4AC57286B68C34CE54E3D4 (ListChangedEventArgs_t7E1DD2BB933BE30107C8B95958746E6AF24F6632 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_oldIndex_3(); return L_0; } } // System.ComponentModel.PropertyDescriptor System.ComponentModel.ListChangedEventArgs::get_PropertyDescriptor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptor_t851C1421EDEEC6CB7D059D50CF94886ECCA1B22B * ListChangedEventArgs_get_PropertyDescriptor_m1A66DB9631FE69D31736FBFA9C19E487202D6A6B (ListChangedEventArgs_t7E1DD2BB933BE30107C8B95958746E6AF24F6632 * __this, const RuntimeMethod* method) { { PropertyDescriptor_t851C1421EDEEC6CB7D059D50CF94886ECCA1B22B * L_0 = __this->get_propDesc_4(); 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.ComponentModel.ListChangedEventHandler::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListChangedEventHandler__ctor_m3C75F4AD1859132C3B145AB1817AFFBDCFA4B437 (ListChangedEventHandler_t02874ED3C8355742E3E62AED85A53F3140506B8C * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Void System.ComponentModel.ListChangedEventHandler::Invoke(System.Object,System.ComponentModel.ListChangedEventArgs) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListChangedEventHandler_Invoke_mCB66F80B04E100EAD3C72CC0A83B9DEF8148D0DC (ListChangedEventHandler_t02874ED3C8355742E3E62AED85A53F3140506B8C * __this, RuntimeObject * ___sender0, ListChangedEventArgs_t7E1DD2BB933BE30107C8B95958746E6AF24F6632 * ___e1, const RuntimeMethod* method) { DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!currentDelegate->get_method_is_virtual_10()) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 2) { // open typedef void (*FunctionPointerType) (RuntimeObject *, ListChangedEventArgs_t7E1DD2BB933BE30107C8B95958746E6AF24F6632 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod); } else { // closed typedef void (*FunctionPointerType) (void*, RuntimeObject *, ListChangedEventArgs_t7E1DD2BB933BE30107C8B95958746E6AF24F6632 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___e1, targetMethod); } } else if (___parameterCount != 2) { // open if (currentDelegate->get_method_is_virtual_10()) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker1< ListChangedEventArgs_t7E1DD2BB933BE30107C8B95958746E6AF24F6632 * >::Invoke(targetMethod, ___sender0, ___e1); else GenericVirtualActionInvoker1< ListChangedEventArgs_t7E1DD2BB933BE30107C8B95958746E6AF24F6632 * >::Invoke(targetMethod, ___sender0, ___e1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker1< ListChangedEventArgs_t7E1DD2BB933BE30107C8B95958746E6AF24F6632 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___sender0, ___e1); else VirtualActionInvoker1< ListChangedEventArgs_t7E1DD2BB933BE30107C8B95958746E6AF24F6632 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___sender0, ___e1); } } else { typedef void (*FunctionPointerType) (RuntimeObject *, ListChangedEventArgs_t7E1DD2BB933BE30107C8B95958746E6AF24F6632 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod); } } else { // closed if (targetThis == NULL) { typedef void (*FunctionPointerType) (RuntimeObject *, ListChangedEventArgs_t7E1DD2BB933BE30107C8B95958746E6AF24F6632 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod); } else { typedef void (*FunctionPointerType) (void*, RuntimeObject *, ListChangedEventArgs_t7E1DD2BB933BE30107C8B95958746E6AF24F6632 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___e1, targetMethod); } } } } // System.IAsyncResult System.ComponentModel.ListChangedEventHandler::BeginInvoke(System.Object,System.ComponentModel.ListChangedEventArgs,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ListChangedEventHandler_BeginInvoke_m692EA76158803C0231E45FECEDC3F08AA202079D (ListChangedEventHandler_t02874ED3C8355742E3E62AED85A53F3140506B8C * __this, RuntimeObject * ___sender0, ListChangedEventArgs_t7E1DD2BB933BE30107C8B95958746E6AF24F6632 * ___e1, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method) { void *__d_args[3] = {0}; __d_args[0] = ___sender0; __d_args[1] = ___e1; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);; } // System.Void System.ComponentModel.ListChangedEventHandler::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListChangedEventHandler_EndInvoke_m6154FB8E138BEEB2AC892614EA60F996CD5D93EE (ListChangedEventHandler_t02874ED3C8355742E3E62AED85A53F3140506B8C * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Specialized.ListDictionary::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListDictionary__ctor_m9B69C39CDA7C506487D47DFE0AD7CF59B0C4C82F (ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Specialized.ListDictionary::.ctor(System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListDictionary__ctor_mEF3028294A42FC5771EBED7DC1DCB104E284A79A (ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); RuntimeObject* L_0 = ___comparer0; __this->set_comparer_3(L_0); return; } } // System.Object System.Collections.Specialized.ListDictionary::get_Item(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ListDictionary_get_Item_m234AF1C6B763954DA1EC8BD5C74BA2D16E8D74DC (ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * V_0 = NULL; RuntimeObject * V_1 = NULL; RuntimeObject * V_2 = NULL; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0018; } } { String_t* L_1; L_1 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC94F5AC0843483C42F57211A309E77D97ADE18B1)), /*hidden argument*/NULL); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_mAD2F05A24C92A657CBCA8C43A9A373C53739A283(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ListDictionary_get_Item_m234AF1C6B763954DA1EC8BD5C74BA2D16E8D74DC_RuntimeMethod_var))); } IL_0018: { DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_3 = __this->get_head_0(); V_0 = L_3; RuntimeObject* L_4 = __this->get_comparer_3(); if (L_4) { goto IL_0076; } } { goto IL_004a; } IL_0029: { DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_5 = V_0; NullCheck(L_5); RuntimeObject * L_6 = L_5->get_key_0(); V_1 = L_6; RuntimeObject * L_7 = V_1; if (!L_7) { goto IL_0043; } } { RuntimeObject * L_8 = V_1; RuntimeObject * L_9 = ___key0; NullCheck(L_8); bool L_10; L_10 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_8, L_9); if (!L_10) { goto IL_0043; } } { DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_11 = V_0; NullCheck(L_11); RuntimeObject * L_12 = L_11->get_value_1(); return L_12; } IL_0043: { DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_13 = V_0; NullCheck(L_13); DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_14 = L_13->get_next_2(); V_0 = L_14; } IL_004a: { DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_15 = V_0; if (L_15) { goto IL_0029; } } { goto IL_0079; } IL_004f: { DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_16 = V_0; NullCheck(L_16); RuntimeObject * L_17 = L_16->get_key_0(); V_2 = L_17; RuntimeObject * L_18 = V_2; if (!L_18) { goto IL_006f; } } { RuntimeObject* L_19 = __this->get_comparer_3(); RuntimeObject * L_20 = V_2; RuntimeObject * L_21 = ___key0; NullCheck(L_19); int32_t L_22; L_22 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, L_19, L_20, L_21); if (L_22) { goto IL_006f; } } { DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_23 = V_0; NullCheck(L_23); RuntimeObject * L_24 = L_23->get_value_1(); return L_24; } IL_006f: { DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_25 = V_0; NullCheck(L_25); DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_26 = L_25->get_next_2(); V_0 = L_26; } IL_0076: { DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_27 = V_0; if (L_27) { goto IL_004f; } } IL_0079: { return NULL; } } // System.Void System.Collections.Specialized.ListDictionary::set_Item(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListDictionary_set_Item_m68050184A6FE6BB7B33891F19FE8D87D458499AD (ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * V_0 = NULL; DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * V_1 = NULL; DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * V_2 = NULL; RuntimeObject * V_3 = NULL; int32_t G_B6_0 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0018; } } { String_t* L_1; L_1 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC94F5AC0843483C42F57211A309E77D97ADE18B1)), /*hidden argument*/NULL); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_mAD2F05A24C92A657CBCA8C43A9A373C53739A283(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ListDictionary_set_Item_m68050184A6FE6BB7B33891F19FE8D87D458499AD_RuntimeMethod_var))); } IL_0018: { int32_t L_3 = __this->get_version_1(); __this->set_version_1(((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))); V_0 = (DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 *)NULL; DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_4 = __this->get_head_0(); V_1 = L_4; goto IL_0064; } IL_0031: { DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_5 = V_1; NullCheck(L_5); RuntimeObject * L_6 = L_5->get_key_0(); V_3 = L_6; RuntimeObject* L_7 = __this->get_comparer_3(); if (!L_7) { goto IL_0052; } } { RuntimeObject* L_8 = __this->get_comparer_3(); RuntimeObject * L_9 = V_3; RuntimeObject * L_10 = ___key0; NullCheck(L_8); int32_t L_11; L_11 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, L_8, L_9, L_10); G_B6_0 = ((((int32_t)L_11) == ((int32_t)0))? 1 : 0); goto IL_0059; } IL_0052: { RuntimeObject * L_12 = V_3; RuntimeObject * L_13 = ___key0; NullCheck(L_12); bool L_14; L_14 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_12, L_13); G_B6_0 = ((int32_t)(L_14)); } IL_0059: { if (G_B6_0) { goto IL_0067; } } { DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_15 = V_1; V_0 = L_15; DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_16 = V_1; NullCheck(L_16); DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_17 = L_16->get_next_2(); V_1 = L_17; } IL_0064: { DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_18 = V_1; if (L_18) { goto IL_0031; } } IL_0067: { DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_19 = V_1; if (!L_19) { goto IL_0072; } } { DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_20 = V_1; RuntimeObject * L_21 = ___value1; NullCheck(L_20); L_20->set_value_1(L_21); return; } IL_0072: { DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_22 = (DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 *)il2cpp_codegen_object_new(DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89_il2cpp_TypeInfo_var); DictionaryNode__ctor_m38EC4C8C8EF2A5ABDD91B178DDB0CF0E0D7D15E2(L_22, /*hidden argument*/NULL); V_2 = L_22; DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_23 = V_2; RuntimeObject * L_24 = ___key0; NullCheck(L_23); L_23->set_key_0(L_24); DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_25 = V_2; RuntimeObject * L_26 = ___value1; NullCheck(L_25); L_25->set_value_1(L_26); DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_27 = V_0; if (!L_27) { goto IL_0092; } } { DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_28 = V_0; DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_29 = V_2; NullCheck(L_28); L_28->set_next_2(L_29); goto IL_0099; } IL_0092: { DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_30 = V_2; __this->set_head_0(L_30); } IL_0099: { int32_t L_31 = __this->get_count_2(); __this->set_count_2(((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1))); return; } } // System.Int32 System.Collections.Specialized.ListDictionary::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ListDictionary_get_Count_m63B5332C669C858EBC423472A502528612C890F1 (ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_count_2(); return L_0; } } // System.Collections.ICollection System.Collections.Specialized.ListDictionary::get_Keys() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ListDictionary_get_Keys_m038D10831F91ACB00D71A9E7F4FA63CAD94D4BAE (ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NodeKeyValueCollection_t2F7684ED43AA56DE152F992016C086757FDEB696_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { NodeKeyValueCollection_t2F7684ED43AA56DE152F992016C086757FDEB696 * L_0 = (NodeKeyValueCollection_t2F7684ED43AA56DE152F992016C086757FDEB696 *)il2cpp_codegen_object_new(NodeKeyValueCollection_t2F7684ED43AA56DE152F992016C086757FDEB696_il2cpp_TypeInfo_var); NodeKeyValueCollection__ctor_mBB36F9963382776073923DB97C6C0DFC220E3BCC(L_0, __this, (bool)1, /*hidden argument*/NULL); return L_0; } } // System.Boolean System.Collections.Specialized.ListDictionary::get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ListDictionary_get_IsReadOnly_mED79988502A7F08F2AB31E3545B34960BD960FF8 (ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Boolean System.Collections.Specialized.ListDictionary::get_IsFixedSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ListDictionary_get_IsFixedSize_mE60E1F8FA141557F37915E843C82A1B58B98BFFD (ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Boolean System.Collections.Specialized.ListDictionary::get_IsSynchronized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ListDictionary_get_IsSynchronized_m98323278519FFC7DF7206C42568B3C0E1724F5B9 (ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Object System.Collections.Specialized.ListDictionary::get_SyncRoot() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ListDictionary_get_SyncRoot_m44040160ADB660B10684A95305CB08F56AF029E8 (ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = __this->get__syncRoot_4(); if (L_0) { goto IL_001a; } } { RuntimeObject ** L_1 = __this->get_address_of__syncRoot_4(); RuntimeObject * L_2 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(L_2, /*hidden argument*/NULL); RuntimeObject * L_3; L_3 = Interlocked_CompareExchange_mFAD09589A5DAFDBABB05C62A2D35CD5B92BC6961((RuntimeObject **)L_1, L_2, NULL, /*hidden argument*/NULL); } IL_001a: { RuntimeObject * L_4 = __this->get__syncRoot_4(); return L_4; } } // System.Collections.ICollection System.Collections.Specialized.ListDictionary::get_Values() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ListDictionary_get_Values_m144BEBB77FDEC181980793D89DC54DC2077A10AE (ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NodeKeyValueCollection_t2F7684ED43AA56DE152F992016C086757FDEB696_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { NodeKeyValueCollection_t2F7684ED43AA56DE152F992016C086757FDEB696 * L_0 = (NodeKeyValueCollection_t2F7684ED43AA56DE152F992016C086757FDEB696 *)il2cpp_codegen_object_new(NodeKeyValueCollection_t2F7684ED43AA56DE152F992016C086757FDEB696_il2cpp_TypeInfo_var); NodeKeyValueCollection__ctor_mBB36F9963382776073923DB97C6C0DFC220E3BCC(L_0, __this, (bool)0, /*hidden argument*/NULL); return L_0; } } // System.Void System.Collections.Specialized.ListDictionary::Add(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListDictionary_Add_mD622807A74E5FF8AF27DFF445307D81DFCFADB28 (ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * V_0 = NULL; DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * V_1 = NULL; DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * V_2 = NULL; RuntimeObject * V_3 = NULL; int32_t G_B6_0 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0018; } } { String_t* L_1; L_1 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC94F5AC0843483C42F57211A309E77D97ADE18B1)), /*hidden argument*/NULL); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_mAD2F05A24C92A657CBCA8C43A9A373C53739A283(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ListDictionary_Add_mD622807A74E5FF8AF27DFF445307D81DFCFADB28_RuntimeMethod_var))); } IL_0018: { int32_t L_3 = __this->get_version_1(); __this->set_version_1(((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))); V_0 = (DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 *)NULL; DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_4 = __this->get_head_0(); V_1 = L_4; goto IL_0074; } IL_0031: { DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_5 = V_1; NullCheck(L_5); RuntimeObject * L_6 = L_5->get_key_0(); V_3 = L_6; RuntimeObject* L_7 = __this->get_comparer_3(); if (!L_7) { goto IL_0052; } } { RuntimeObject* L_8 = __this->get_comparer_3(); RuntimeObject * L_9 = V_3; RuntimeObject * L_10 = ___key0; NullCheck(L_8); int32_t L_11; L_11 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, L_8, L_9, L_10); G_B6_0 = ((((int32_t)L_11) == ((int32_t)0))? 1 : 0); goto IL_0059; } IL_0052: { RuntimeObject * L_12 = V_3; RuntimeObject * L_13 = ___key0; NullCheck(L_12); bool L_14; L_14 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_12, L_13); G_B6_0 = ((int32_t)(L_14)); } IL_0059: { if (!G_B6_0) { goto IL_006b; } } { String_t* L_15; L_15 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46A01A440913AE3A82489D220ACF899D570C29A7)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_16 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_16, L_15, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ListDictionary_Add_mD622807A74E5FF8AF27DFF445307D81DFCFADB28_RuntimeMethod_var))); } IL_006b: { DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_17 = V_1; V_0 = L_17; DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_18 = V_1; NullCheck(L_18); DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_19 = L_18->get_next_2(); V_1 = L_19; } IL_0074: { DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_20 = V_1; if (L_20) { goto IL_0031; } } { DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_21 = (DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 *)il2cpp_codegen_object_new(DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89_il2cpp_TypeInfo_var); DictionaryNode__ctor_m38EC4C8C8EF2A5ABDD91B178DDB0CF0E0D7D15E2(L_21, /*hidden argument*/NULL); V_2 = L_21; DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_22 = V_2; RuntimeObject * L_23 = ___key0; NullCheck(L_22); L_22->set_key_0(L_23); DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_24 = V_2; RuntimeObject * L_25 = ___value1; NullCheck(L_24); L_24->set_value_1(L_25); DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_26 = V_0; if (!L_26) { goto IL_0097; } } { DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_27 = V_0; DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_28 = V_2; NullCheck(L_27); L_27->set_next_2(L_28); goto IL_009e; } IL_0097: { DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_29 = V_2; __this->set_head_0(L_29); } IL_009e: { int32_t L_30 = __this->get_count_2(); __this->set_count_2(((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)1))); return; } } // System.Void System.Collections.Specialized.ListDictionary::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListDictionary_Clear_mF7AE377851CEEEF217FF6E0DFF49EAF86D4E04BD (ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * __this, const RuntimeMethod* method) { { __this->set_count_2(0); __this->set_head_0((DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 *)NULL); int32_t L_0 = __this->get_version_1(); __this->set_version_1(((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1))); return; } } // System.Boolean System.Collections.Specialized.ListDictionary::Contains(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ListDictionary_Contains_m06D47395FA7A1B7379C8BBFD38D7A8CFEB721D08 (ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * V_0 = NULL; RuntimeObject * V_1 = NULL; int32_t G_B6_0 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0018; } } { String_t* L_1; L_1 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC94F5AC0843483C42F57211A309E77D97ADE18B1)), /*hidden argument*/NULL); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_mAD2F05A24C92A657CBCA8C43A9A373C53739A283(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ListDictionary_Contains_m06D47395FA7A1B7379C8BBFD38D7A8CFEB721D08_RuntimeMethod_var))); } IL_0018: { DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_3 = __this->get_head_0(); V_0 = L_3; goto IL_0054; } IL_0021: { DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_4 = V_0; NullCheck(L_4); RuntimeObject * L_5 = L_4->get_key_0(); V_1 = L_5; RuntimeObject* L_6 = __this->get_comparer_3(); if (!L_6) { goto IL_0042; } } { RuntimeObject* L_7 = __this->get_comparer_3(); RuntimeObject * L_8 = V_1; RuntimeObject * L_9 = ___key0; NullCheck(L_7); int32_t L_10; L_10 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, L_7, L_8, L_9); G_B6_0 = ((((int32_t)L_10) == ((int32_t)0))? 1 : 0); goto IL_0049; } IL_0042: { RuntimeObject * L_11 = V_1; RuntimeObject * L_12 = ___key0; NullCheck(L_11); bool L_13; L_13 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_11, L_12); G_B6_0 = ((int32_t)(L_13)); } IL_0049: { if (!G_B6_0) { goto IL_004d; } } { return (bool)1; } IL_004d: { DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_14 = V_0; NullCheck(L_14); DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_15 = L_14->get_next_2(); V_0 = L_15; } IL_0054: { DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_16 = V_0; if (L_16) { goto IL_0021; } } { return (bool)0; } } // System.Void System.Collections.Specialized.ListDictionary::CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListDictionary_CopyTo_mBF4FD9B59407ABF719E2565E788A2DC9A4769564 (ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * V_0 = NULL; { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ListDictionary_CopyTo_mBF4FD9B59407ABF719E2565E788A2DC9A4769564_RuntimeMethod_var))); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) >= ((int32_t)0))) { goto IL_0027; } } { String_t* L_3; L_3 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral38E3DBC7FC353425EF3A98DC8DAC6689AF5FD1BE)), /*hidden argument*/NULL); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_4 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_mE43AFC74F5F3932913C023A04B24905E093C5005(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ListDictionary_CopyTo_mBF4FD9B59407ABF719E2565E788A2DC9A4769564_RuntimeMethod_var))); } IL_0027: { RuntimeArray * L_5 = ___array0; NullCheck(L_5); int32_t L_6; L_6 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10(L_5, /*hidden argument*/NULL); int32_t L_7 = ___index1; int32_t L_8 = __this->get_count_2(); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)L_7))) >= ((int32_t)L_8))) { goto IL_0047; } } { String_t* L_9; L_9 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral34AE52A4D26F1742129FB49939AAFD990890D6C0)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_10 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_10, L_9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ListDictionary_CopyTo_mBF4FD9B59407ABF719E2565E788A2DC9A4769564_RuntimeMethod_var))); } IL_0047: { DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_11 = __this->get_head_0(); V_0 = L_11; goto IL_0079; } IL_0050: { RuntimeArray * L_12 = ___array0; DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_13 = V_0; NullCheck(L_13); RuntimeObject * L_14 = L_13->get_key_0(); DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_15 = V_0; NullCheck(L_15); RuntimeObject * L_16 = L_15->get_value_1(); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_17; memset((&L_17), 0, sizeof(L_17)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_17), L_14, L_16, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_18 = L_17; RuntimeObject * L_19 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_18); int32_t L_20 = ___index1; NullCheck(L_12); Array_SetValue_mD28884941182C5B7118CFBA3D55DB9CEA8797455(L_12, L_19, L_20, /*hidden argument*/NULL); int32_t L_21 = ___index1; ___index1 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1)); DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_22 = V_0; NullCheck(L_22); DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_23 = L_22->get_next_2(); V_0 = L_23; } IL_0079: { DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_24 = V_0; if (L_24) { goto IL_0050; } } { return; } } // System.Collections.IDictionaryEnumerator System.Collections.Specialized.ListDictionary::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ListDictionary_GetEnumerator_m6B44040F7259D5F7F1E15F4A4FA0FAE38BFEE236 (ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NodeEnumerator_t76D13EB0B0B4D56A1780BBD21073FB65F9C97A7C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { NodeEnumerator_t76D13EB0B0B4D56A1780BBD21073FB65F9C97A7C * L_0 = (NodeEnumerator_t76D13EB0B0B4D56A1780BBD21073FB65F9C97A7C *)il2cpp_codegen_object_new(NodeEnumerator_t76D13EB0B0B4D56A1780BBD21073FB65F9C97A7C_il2cpp_TypeInfo_var); NodeEnumerator__ctor_m96E6D528E4C4D03DF5FE2C904501B77246EE5B17(L_0, __this, /*hidden argument*/NULL); return L_0; } } // System.Collections.IEnumerator System.Collections.Specialized.ListDictionary::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ListDictionary_System_Collections_IEnumerable_GetEnumerator_m6412355259E0F0D8959F9785D34F0748511F3783 (ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NodeEnumerator_t76D13EB0B0B4D56A1780BBD21073FB65F9C97A7C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { NodeEnumerator_t76D13EB0B0B4D56A1780BBD21073FB65F9C97A7C * L_0 = (NodeEnumerator_t76D13EB0B0B4D56A1780BBD21073FB65F9C97A7C *)il2cpp_codegen_object_new(NodeEnumerator_t76D13EB0B0B4D56A1780BBD21073FB65F9C97A7C_il2cpp_TypeInfo_var); NodeEnumerator__ctor_m96E6D528E4C4D03DF5FE2C904501B77246EE5B17(L_0, __this, /*hidden argument*/NULL); return L_0; } } // System.Void System.Collections.Specialized.ListDictionary::Remove(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListDictionary_Remove_mD8EE339742816A3140A4FF43174AEDB7648BA8AC (ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * V_0 = NULL; DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * V_1 = NULL; RuntimeObject * V_2 = NULL; int32_t G_B6_0 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0018; } } { String_t* L_1; L_1 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC94F5AC0843483C42F57211A309E77D97ADE18B1)), /*hidden argument*/NULL); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_mAD2F05A24C92A657CBCA8C43A9A373C53739A283(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ListDictionary_Remove_mD8EE339742816A3140A4FF43174AEDB7648BA8AC_RuntimeMethod_var))); } IL_0018: { int32_t L_3 = __this->get_version_1(); __this->set_version_1(((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))); V_0 = (DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 *)NULL; DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_4 = __this->get_head_0(); V_1 = L_4; goto IL_0064; } IL_0031: { DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_5 = V_1; NullCheck(L_5); RuntimeObject * L_6 = L_5->get_key_0(); V_2 = L_6; RuntimeObject* L_7 = __this->get_comparer_3(); if (!L_7) { goto IL_0052; } } { RuntimeObject* L_8 = __this->get_comparer_3(); RuntimeObject * L_9 = V_2; RuntimeObject * L_10 = ___key0; NullCheck(L_8); int32_t L_11; L_11 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, L_8, L_9, L_10); G_B6_0 = ((((int32_t)L_11) == ((int32_t)0))? 1 : 0); goto IL_0059; } IL_0052: { RuntimeObject * L_12 = V_2; RuntimeObject * L_13 = ___key0; NullCheck(L_12); bool L_14; L_14 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_12, L_13); G_B6_0 = ((int32_t)(L_14)); } IL_0059: { if (G_B6_0) { goto IL_0067; } } { DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_15 = V_1; V_0 = L_15; DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_16 = V_1; NullCheck(L_16); DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_17 = L_16->get_next_2(); V_1 = L_17; } IL_0064: { DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_18 = V_1; if (L_18) { goto IL_0031; } } IL_0067: { DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_19 = V_1; if (L_19) { goto IL_006b; } } { return; } IL_006b: { DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_20 = V_1; DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_21 = __this->get_head_0(); if ((!(((RuntimeObject*)(DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 *)L_20) == ((RuntimeObject*)(DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 *)L_21)))) { goto IL_0082; } } { DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_22 = V_1; NullCheck(L_22); DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_23 = L_22->get_next_2(); __this->set_head_0(L_23); goto IL_008e; } IL_0082: { DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_24 = V_0; DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_25 = V_1; NullCheck(L_25); DictionaryNode_tFA6C0EBFE9BB44B7C933A9FB0A0F18C4746FEC89 * L_26 = L_25->get_next_2(); NullCheck(L_24); L_24->set_next_2(L_26); } IL_008e: { int32_t L_27 = __this->get_count_2(); __this->set_count_2(((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)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.ComponentModel.ListSortDescription::.ctor(System.ComponentModel.PropertyDescriptor,System.ComponentModel.ListSortDirection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListSortDescription__ctor_mC1DC473304AAA16048F7C695CA851E23ED9E1844 (ListSortDescription_t597DE86A6ADC6084FF85967475CBB07B706DF9C7 * __this, PropertyDescriptor_t851C1421EDEEC6CB7D059D50CF94886ECCA1B22B * ___property0, int32_t ___direction1, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); PropertyDescriptor_t851C1421EDEEC6CB7D059D50CF94886ECCA1B22B * L_0 = ___property0; __this->set_property_0(L_0); int32_t L_1 = ___direction1; __this->set_sortDirection_1(L_1); return; } } // System.ComponentModel.PropertyDescriptor System.ComponentModel.ListSortDescription::get_PropertyDescriptor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptor_t851C1421EDEEC6CB7D059D50CF94886ECCA1B22B * ListSortDescription_get_PropertyDescriptor_mFD5E35A5E873C743D07A72B7C5B54251AD469CDE (ListSortDescription_t597DE86A6ADC6084FF85967475CBB07B706DF9C7 * __this, const RuntimeMethod* method) { { PropertyDescriptor_t851C1421EDEEC6CB7D059D50CF94886ECCA1B22B * L_0 = __this->get_property_0(); return L_0; } } // System.Void System.ComponentModel.ListSortDescription::set_PropertyDescriptor(System.ComponentModel.PropertyDescriptor) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListSortDescription_set_PropertyDescriptor_m3664946AC21BA6AFD3E100E76275F54A44C319C2 (ListSortDescription_t597DE86A6ADC6084FF85967475CBB07B706DF9C7 * __this, PropertyDescriptor_t851C1421EDEEC6CB7D059D50CF94886ECCA1B22B * ___value0, const RuntimeMethod* method) { { PropertyDescriptor_t851C1421EDEEC6CB7D059D50CF94886ECCA1B22B * L_0 = ___value0; __this->set_property_0(L_0); return; } } // System.ComponentModel.ListSortDirection System.ComponentModel.ListSortDescription::get_SortDirection() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ListSortDescription_get_SortDirection_m16C098A1C7D81050393197D9F32F08CBB4FD010E (ListSortDescription_t597DE86A6ADC6084FF85967475CBB07B706DF9C7 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_sortDirection_1(); return L_0; } } // System.Void System.ComponentModel.ListSortDescription::set_SortDirection(System.ComponentModel.ListSortDirection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListSortDescription_set_SortDirection_m69E4E8E0FA3685F85945E11DCE9F58FCE413DD14 (ListSortDescription_t597DE86A6ADC6084FF85967475CBB07B706DF9C7 * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set_sortDirection_1(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.ComponentModel.ListSortDescriptionCollection::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListSortDescriptionCollection__ctor_mEC52C5C54281721A4F8589C88A6FB8091630798A (ListSortDescriptionCollection_tC9C0CEDAF9496F7A1A7E6F665189295CE400F60A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_0 = (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *)il2cpp_codegen_object_new(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var); ArrayList__ctor_m6847CFECD6BDC2AD10A4AC9852A572B88B8D6B1B(L_0, /*hidden argument*/NULL); __this->set_sorts_0(L_0); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } // System.Void System.ComponentModel.ListSortDescriptionCollection::.ctor(System.ComponentModel.ListSortDescription[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListSortDescriptionCollection__ctor_mDC6BCC37A42F8BFCC0C01A7340763676F257E6A8 (ListSortDescriptionCollection_tC9C0CEDAF9496F7A1A7E6F665189295CE400F60A * __this, ListSortDescriptionU5BU5D_t6165BB474C2E3D97625028AE493FE8C30DE740D2* ___sorts0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_0 = (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *)il2cpp_codegen_object_new(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var); ArrayList__ctor_m6847CFECD6BDC2AD10A4AC9852A572B88B8D6B1B(L_0, /*hidden argument*/NULL); __this->set_sorts_0(L_0); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); ListSortDescriptionU5BU5D_t6165BB474C2E3D97625028AE493FE8C30DE740D2* L_1 = ___sorts0; if (!L_1) { goto IL_0031; } } { V_0 = 0; goto IL_002b; } IL_0018: { ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_2 = __this->get_sorts_0(); ListSortDescriptionU5BU5D_t6165BB474C2E3D97625028AE493FE8C30DE740D2* L_3 = ___sorts0; int32_t L_4 = V_0; NullCheck(L_3); int32_t L_5 = L_4; ListSortDescription_t597DE86A6ADC6084FF85967475CBB07B706DF9C7 * L_6 = (L_3)->GetAt(static_cast(L_5)); NullCheck(L_2); int32_t L_7; L_7 = VirtualFuncInvoker1< int32_t, RuntimeObject * >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_2, L_6); int32_t L_8 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)); } IL_002b: { int32_t L_9 = V_0; ListSortDescriptionU5BU5D_t6165BB474C2E3D97625028AE493FE8C30DE740D2* L_10 = ___sorts0; NullCheck(L_10); if ((((int32_t)L_9) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))))) { goto IL_0018; } } IL_0031: { return; } } // System.ComponentModel.ListSortDescription System.ComponentModel.ListSortDescriptionCollection::get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ListSortDescription_t597DE86A6ADC6084FF85967475CBB07B706DF9C7 * ListSortDescriptionCollection_get_Item_m7FCF595593A2A506D8C79E278E4E8F438C05B3B4 (ListSortDescriptionCollection_tC9C0CEDAF9496F7A1A7E6F665189295CE400F60A * __this, int32_t ___index0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListSortDescription_t597DE86A6ADC6084FF85967475CBB07B706DF9C7_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_0 = __this->get_sorts_0(); int32_t L_1 = ___index0; 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); return ((ListSortDescription_t597DE86A6ADC6084FF85967475CBB07B706DF9C7 *)CastclassClass((RuntimeObject*)L_2, ListSortDescription_t597DE86A6ADC6084FF85967475CBB07B706DF9C7_il2cpp_TypeInfo_var)); } } // System.Void System.ComponentModel.ListSortDescriptionCollection::set_Item(System.Int32,System.ComponentModel.ListSortDescription) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListSortDescriptionCollection_set_Item_mF2EAB445FA2587C839162D2ED8B798757D6217F1 (ListSortDescriptionCollection_tC9C0CEDAF9496F7A1A7E6F665189295CE400F60A * __this, int32_t ___index0, ListSortDescription_t597DE86A6ADC6084FF85967475CBB07B706DF9C7 * ___value1, const RuntimeMethod* method) { { String_t* L_0; L_0 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1B9893826FB5D33BC11AA982B0F748313E2E8AE6)), /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_1 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_1, L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ListSortDescriptionCollection_set_Item_mF2EAB445FA2587C839162D2ED8B798757D6217F1_RuntimeMethod_var))); } } // System.Boolean System.ComponentModel.ListSortDescriptionCollection::System.Collections.IList.get_IsFixedSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ListSortDescriptionCollection_System_Collections_IList_get_IsFixedSize_m2C228E02D127A390CCD241A2DE4FF1268F572A8F (ListSortDescriptionCollection_tC9C0CEDAF9496F7A1A7E6F665189295CE400F60A * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Boolean System.ComponentModel.ListSortDescriptionCollection::System.Collections.IList.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ListSortDescriptionCollection_System_Collections_IList_get_IsReadOnly_m4480CF08C63D88FCDE1C264F21267A557A1F5145 (ListSortDescriptionCollection_tC9C0CEDAF9496F7A1A7E6F665189295CE400F60A * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Object System.ComponentModel.ListSortDescriptionCollection::System.Collections.IList.get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ListSortDescriptionCollection_System_Collections_IList_get_Item_m8B01A8A320C29FBA24535CA38E7EB422E0C8259F (ListSortDescriptionCollection_tC9C0CEDAF9496F7A1A7E6F665189295CE400F60A * __this, int32_t ___index0, const RuntimeMethod* method) { { int32_t L_0 = ___index0; ListSortDescription_t597DE86A6ADC6084FF85967475CBB07B706DF9C7 * L_1; L_1 = ListSortDescriptionCollection_get_Item_m7FCF595593A2A506D8C79E278E4E8F438C05B3B4(__this, L_0, /*hidden argument*/NULL); return L_1; } } // System.Void System.ComponentModel.ListSortDescriptionCollection::System.Collections.IList.set_Item(System.Int32,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListSortDescriptionCollection_System_Collections_IList_set_Item_m3681EF06837900D7E1F2F2AAFB1E71D8D1CE8A28 (ListSortDescriptionCollection_tC9C0CEDAF9496F7A1A7E6F665189295CE400F60A * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method) { { String_t* L_0; L_0 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1B9893826FB5D33BC11AA982B0F748313E2E8AE6)), /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_1 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_1, L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ListSortDescriptionCollection_System_Collections_IList_set_Item_m3681EF06837900D7E1F2F2AAFB1E71D8D1CE8A28_RuntimeMethod_var))); } } // System.Int32 System.ComponentModel.ListSortDescriptionCollection::System.Collections.IList.Add(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ListSortDescriptionCollection_System_Collections_IList_Add_m81DB69544D5B7CA589D38EFA21BC42C0C09B472D (ListSortDescriptionCollection_tC9C0CEDAF9496F7A1A7E6F665189295CE400F60A * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { String_t* L_0; L_0 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1B9893826FB5D33BC11AA982B0F748313E2E8AE6)), /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_1 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_1, L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ListSortDescriptionCollection_System_Collections_IList_Add_m81DB69544D5B7CA589D38EFA21BC42C0C09B472D_RuntimeMethod_var))); } } // System.Void System.ComponentModel.ListSortDescriptionCollection::System.Collections.IList.Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListSortDescriptionCollection_System_Collections_IList_Clear_mFF081B4F34EA4A26D988AC7EE415A88F0D5AC657 (ListSortDescriptionCollection_tC9C0CEDAF9496F7A1A7E6F665189295CE400F60A * __this, const RuntimeMethod* method) { { String_t* L_0; L_0 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1B9893826FB5D33BC11AA982B0F748313E2E8AE6)), /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_1 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_1, L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ListSortDescriptionCollection_System_Collections_IList_Clear_mFF081B4F34EA4A26D988AC7EE415A88F0D5AC657_RuntimeMethod_var))); } } // System.Boolean System.ComponentModel.ListSortDescriptionCollection::Contains(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ListSortDescriptionCollection_Contains_mFFBC14B6C272E216DAA6EEDC70D091A697894397 (ListSortDescriptionCollection_tC9C0CEDAF9496F7A1A7E6F665189295CE400F60A * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_0 = __this->get_sorts_0(); RuntimeObject * L_1 = ___value0; NullCheck(L_0); bool L_2; L_2 = InterfaceFuncInvoker1< bool, RuntimeObject * >::Invoke(3 /* System.Boolean System.Collections.IList::Contains(System.Object) */, IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var, L_0, L_1); return L_2; } } // System.Int32 System.ComponentModel.ListSortDescriptionCollection::IndexOf(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ListSortDescriptionCollection_IndexOf_m52B3EBE063E487ED82AFC473AF9B7B67702E715A (ListSortDescriptionCollection_tC9C0CEDAF9496F7A1A7E6F665189295CE400F60A * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_0 = __this->get_sorts_0(); RuntimeObject * L_1 = ___value0; NullCheck(L_0); int32_t L_2; L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(7 /* System.Int32 System.Collections.IList::IndexOf(System.Object) */, IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var, L_0, L_1); return L_2; } } // System.Void System.ComponentModel.ListSortDescriptionCollection::System.Collections.IList.Insert(System.Int32,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListSortDescriptionCollection_System_Collections_IList_Insert_mD3A0DF5E9FD8BC7B7910D3531FF6E8EA602EFFC0 (ListSortDescriptionCollection_tC9C0CEDAF9496F7A1A7E6F665189295CE400F60A * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method) { { String_t* L_0; L_0 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1B9893826FB5D33BC11AA982B0F748313E2E8AE6)), /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_1 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_1, L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ListSortDescriptionCollection_System_Collections_IList_Insert_mD3A0DF5E9FD8BC7B7910D3531FF6E8EA602EFFC0_RuntimeMethod_var))); } } // System.Void System.ComponentModel.ListSortDescriptionCollection::System.Collections.IList.Remove(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListSortDescriptionCollection_System_Collections_IList_Remove_m84848E3C036323FEE41A57B7BBD3D285AC1C48DE (ListSortDescriptionCollection_tC9C0CEDAF9496F7A1A7E6F665189295CE400F60A * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { String_t* L_0; L_0 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1B9893826FB5D33BC11AA982B0F748313E2E8AE6)), /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_1 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_1, L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ListSortDescriptionCollection_System_Collections_IList_Remove_m84848E3C036323FEE41A57B7BBD3D285AC1C48DE_RuntimeMethod_var))); } } // System.Void System.ComponentModel.ListSortDescriptionCollection::System.Collections.IList.RemoveAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListSortDescriptionCollection_System_Collections_IList_RemoveAt_m10BDD6ABD60CD2AD7D79657F243392C016EDFF5F (ListSortDescriptionCollection_tC9C0CEDAF9496F7A1A7E6F665189295CE400F60A * __this, int32_t ___index0, const RuntimeMethod* method) { { String_t* L_0; L_0 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1B9893826FB5D33BC11AA982B0F748313E2E8AE6)), /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_1 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_1, L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ListSortDescriptionCollection_System_Collections_IList_RemoveAt_m10BDD6ABD60CD2AD7D79657F243392C016EDFF5F_RuntimeMethod_var))); } } // System.Int32 System.ComponentModel.ListSortDescriptionCollection::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ListSortDescriptionCollection_get_Count_mE3D814451E2B324F0F45FB0C9C1D7DD2B2C5629E (ListSortDescriptionCollection_tC9C0CEDAF9496F7A1A7E6F665189295CE400F60A * __this, const RuntimeMethod* method) { { ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_0 = __this->get_sorts_0(); NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_0); return L_1; } } // System.Boolean System.ComponentModel.ListSortDescriptionCollection::System.Collections.ICollection.get_IsSynchronized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ListSortDescriptionCollection_System_Collections_ICollection_get_IsSynchronized_m7C94938D816E54A3C633A1932F2B90198A2CC38E (ListSortDescriptionCollection_tC9C0CEDAF9496F7A1A7E6F665189295CE400F60A * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Object System.ComponentModel.ListSortDescriptionCollection::System.Collections.ICollection.get_SyncRoot() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ListSortDescriptionCollection_System_Collections_ICollection_get_SyncRoot_mBADA9FF06DED35AB02A32D809881430D49B7D709 (ListSortDescriptionCollection_tC9C0CEDAF9496F7A1A7E6F665189295CE400F60A * __this, const RuntimeMethod* method) { { return __this; } } // System.Void System.ComponentModel.ListSortDescriptionCollection::CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListSortDescriptionCollection_CopyTo_mA987713303F4DEBA9FD4BF06233C0C017D8ADAED (ListSortDescriptionCollection_tC9C0CEDAF9496F7A1A7E6F665189295CE400F60A * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { { ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_0 = __this->get_sorts_0(); RuntimeArray * L_1 = ___array0; int32_t L_2 = ___index1; NullCheck(L_0); VirtualActionInvoker2< RuntimeArray *, int32_t >::Invoke(35 /* System.Void System.Collections.ArrayList::CopyTo(System.Array,System.Int32) */, L_0, L_1, L_2); return; } } // System.Collections.IEnumerator System.ComponentModel.ListSortDescriptionCollection::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ListSortDescriptionCollection_System_Collections_IEnumerable_GetEnumerator_m4563AFD68F45121F57CB3CF7136EE250E08588E9 (ListSortDescriptionCollection_tC9C0CEDAF9496F7A1A7E6F665189295CE400F60A * __this, const RuntimeMethod* method) { { ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_0 = __this->get_sorts_0(); NullCheck(L_0); RuntimeObject* L_1; L_1 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(37 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_0); return L_1; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #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.Net.Security.LocalCertSelectionCallback::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalCertSelectionCallback__ctor_mE564871B196549FDEA64C011A4AA00339FA0281F (LocalCertSelectionCallback_t6BACE61FA922DCD211EDF7331345481DD5D27A2C * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Security.Cryptography.X509Certificates.X509Certificate System.Net.Security.LocalCertSelectionCallback::Invoke(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.Cryptography.X509Certificates.X509Certificate,System.String[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 * LocalCertSelectionCallback_Invoke_m2869B1DB69FB6390DB8035B41C0594762111D484 (LocalCertSelectionCallback_t6BACE61FA922DCD211EDF7331345481DD5D27A2C * __this, String_t* ___targetHost0, X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B * ___localCertificates1, X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 * ___remoteCertificate2, StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___acceptableIssuers3, const RuntimeMethod* method) { X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 * result = NULL; DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!currentDelegate->get_method_is_virtual_10()) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 4) { // open typedef X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 * (*FunctionPointerType) (String_t*, X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B *, X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 *, StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___targetHost0, ___localCertificates1, ___remoteCertificate2, ___acceptableIssuers3, targetMethod); } else { // closed typedef X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 * (*FunctionPointerType) (void*, String_t*, X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B *, X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 *, StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___targetHost0, ___localCertificates1, ___remoteCertificate2, ___acceptableIssuers3, targetMethod); } } else if (___parameterCount != 4) { // open if (currentDelegate->get_method_is_virtual_10()) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker3< X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 *, X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B *, X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 *, StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* >::Invoke(targetMethod, ___targetHost0, ___localCertificates1, ___remoteCertificate2, ___acceptableIssuers3); else result = GenericVirtualFuncInvoker3< X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 *, X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B *, X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 *, StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* >::Invoke(targetMethod, ___targetHost0, ___localCertificates1, ___remoteCertificate2, ___acceptableIssuers3); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker3< X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 *, X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B *, X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 *, StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___targetHost0, ___localCertificates1, ___remoteCertificate2, ___acceptableIssuers3); else result = VirtualFuncInvoker3< X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 *, X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B *, X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 *, StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___targetHost0, ___localCertificates1, ___remoteCertificate2, ___acceptableIssuers3); } } else { typedef X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 * (*FunctionPointerType) (String_t*, X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B *, X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 *, StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___targetHost0, ___localCertificates1, ___remoteCertificate2, ___acceptableIssuers3, targetMethod); } } else { // closed if (targetThis == NULL) { typedef X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 * (*FunctionPointerType) (String_t*, X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B *, X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 *, StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___targetHost0, ___localCertificates1, ___remoteCertificate2, ___acceptableIssuers3, targetMethod); } else { typedef X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 * (*FunctionPointerType) (void*, String_t*, X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B *, X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 *, StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___targetHost0, ___localCertificates1, ___remoteCertificate2, ___acceptableIssuers3, targetMethod); } } } return result; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Net.Security.LocalCertificateSelectionCallback::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalCertificateSelectionCallback__ctor_mE656F2AD30619209DD35A2EDEFFCBCA7C590A579 (LocalCertificateSelectionCallback_t4115D8E729443BDCD5A5207B9ED63F2A6621D0E1 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Security.Cryptography.X509Certificates.X509Certificate System.Net.Security.LocalCertificateSelectionCallback::Invoke(System.Object,System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.Cryptography.X509Certificates.X509Certificate,System.String[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 * LocalCertificateSelectionCallback_Invoke_m755F3ED85EDF0F3082947ED32B0786B17C30098E (LocalCertificateSelectionCallback_t4115D8E729443BDCD5A5207B9ED63F2A6621D0E1 * __this, RuntimeObject * ___sender0, String_t* ___targetHost1, X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B * ___localCertificates2, X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 * ___remoteCertificate3, StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___acceptableIssuers4, const RuntimeMethod* method) { X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 * result = NULL; DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!currentDelegate->get_method_is_virtual_10()) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 5) { // open typedef X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 * (*FunctionPointerType) (RuntimeObject *, String_t*, X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B *, X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 *, StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___sender0, ___targetHost1, ___localCertificates2, ___remoteCertificate3, ___acceptableIssuers4, targetMethod); } else { // closed typedef X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 * (*FunctionPointerType) (void*, RuntimeObject *, String_t*, X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B *, X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 *, StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___targetHost1, ___localCertificates2, ___remoteCertificate3, ___acceptableIssuers4, targetMethod); } } else if (___parameterCount != 5) { // open if (currentDelegate->get_method_is_virtual_10()) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker4< X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 *, String_t*, X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B *, X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 *, StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* >::Invoke(targetMethod, ___sender0, ___targetHost1, ___localCertificates2, ___remoteCertificate3, ___acceptableIssuers4); else result = GenericVirtualFuncInvoker4< X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 *, String_t*, X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B *, X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 *, StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* >::Invoke(targetMethod, ___sender0, ___targetHost1, ___localCertificates2, ___remoteCertificate3, ___acceptableIssuers4); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker4< X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 *, String_t*, X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B *, X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 *, StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___sender0, ___targetHost1, ___localCertificates2, ___remoteCertificate3, ___acceptableIssuers4); else result = VirtualFuncInvoker4< X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 *, String_t*, X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B *, X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 *, StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___sender0, ___targetHost1, ___localCertificates2, ___remoteCertificate3, ___acceptableIssuers4); } } else { typedef X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 * (*FunctionPointerType) (RuntimeObject *, String_t*, X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B *, X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 *, StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___sender0, ___targetHost1, ___localCertificates2, ___remoteCertificate3, ___acceptableIssuers4, targetMethod); } } else { // closed if (targetThis == NULL) { typedef X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 * (*FunctionPointerType) (RuntimeObject *, String_t*, X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B *, X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 *, StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___sender0, ___targetHost1, ___localCertificates2, ___remoteCertificate3, ___acceptableIssuers4, targetMethod); } else { typedef X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 * (*FunctionPointerType) (void*, RuntimeObject *, String_t*, X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B *, X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 *, StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___targetHost1, ___localCertificates2, ___remoteCertificate3, ___acceptableIssuers4, targetMethod); } } } return result; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Configuration.LocalFileSettingsProvider::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalFileSettingsProvider__ctor_m5AFB01578E3CE582354E9D08E9A252365B0F0AF2 (LocalFileSettingsProvider_tDF14C43FB5B2E259AA5BDAF236D7ADBDBCF9C289 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LocalFileSettingsProvider__ctor_m5AFB01578E3CE582354E9D08E9A252365B0F0AF2_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(LocalFileSettingsProvider__ctor_m5AFB01578E3CE582354E9D08E9A252365B0F0AF2_RuntimeMethod_var); return; } } // System.String System.Configuration.LocalFileSettingsProvider::get_ApplicationName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* LocalFileSettingsProvider_get_ApplicationName_mDDF11AA7035BA0B8232C275540FC01E46D460AE4 (LocalFileSettingsProvider_tDF14C43FB5B2E259AA5BDAF236D7ADBDBCF9C289 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LocalFileSettingsProvider_get_ApplicationName_mDDF11AA7035BA0B8232C275540FC01E46D460AE4_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(LocalFileSettingsProvider_get_ApplicationName_mDDF11AA7035BA0B8232C275540FC01E46D460AE4_RuntimeMethod_var); return (String_t*)NULL; } } // System.Void System.Configuration.LocalFileSettingsProvider::set_ApplicationName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalFileSettingsProvider_set_ApplicationName_mEEF12CA5D2FDA035832BD4CA5CF6679B49A5915D (LocalFileSettingsProvider_tDF14C43FB5B2E259AA5BDAF236D7ADBDBCF9C289 * __this, String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LocalFileSettingsProvider_set_ApplicationName_mEEF12CA5D2FDA035832BD4CA5CF6679B49A5915D_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(LocalFileSettingsProvider_set_ApplicationName_mEEF12CA5D2FDA035832BD4CA5CF6679B49A5915D_RuntimeMethod_var); return; } } // System.Configuration.SettingsPropertyValue System.Configuration.LocalFileSettingsProvider::GetPreviousVersion(System.Configuration.SettingsContext,System.Configuration.SettingsProperty) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SettingsPropertyValue_tFE3AAFDDA784805AD0C54228D8DF83F27F0C3DAA * LocalFileSettingsProvider_GetPreviousVersion_m8508225F1817DC1FECA1717DF962894673164E83 (LocalFileSettingsProvider_tDF14C43FB5B2E259AA5BDAF236D7ADBDBCF9C289 * __this, SettingsContext_tFA3A44BB61DD49BEFF0C8A07A62692555F7683CF * ___context0, SettingsProperty_t49ABB4711E749EAFCF3CC9B384856DC0517AB516 * ___property1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LocalFileSettingsProvider_GetPreviousVersion_m8508225F1817DC1FECA1717DF962894673164E83_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(LocalFileSettingsProvider_GetPreviousVersion_m8508225F1817DC1FECA1717DF962894673164E83_RuntimeMethod_var); return (SettingsPropertyValue_tFE3AAFDDA784805AD0C54228D8DF83F27F0C3DAA *)NULL; } } // System.Configuration.SettingsPropertyValueCollection System.Configuration.LocalFileSettingsProvider::GetPropertyValues(System.Configuration.SettingsContext,System.Configuration.SettingsPropertyCollection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SettingsPropertyValueCollection_t75B7CA0749D399914EB7A894EF753479F4164E73 * LocalFileSettingsProvider_GetPropertyValues_mBE5DAB07691E49F9FDE57E19755515784969412F (LocalFileSettingsProvider_tDF14C43FB5B2E259AA5BDAF236D7ADBDBCF9C289 * __this, SettingsContext_tFA3A44BB61DD49BEFF0C8A07A62692555F7683CF * ___context0, SettingsPropertyCollection_t8242867D222B3304B7688232FCDE5D3DAA981843 * ___properties1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LocalFileSettingsProvider_GetPropertyValues_mBE5DAB07691E49F9FDE57E19755515784969412F_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(LocalFileSettingsProvider_GetPropertyValues_mBE5DAB07691E49F9FDE57E19755515784969412F_RuntimeMethod_var); return (SettingsPropertyValueCollection_t75B7CA0749D399914EB7A894EF753479F4164E73 *)NULL; } } // System.Void System.Configuration.LocalFileSettingsProvider::Initialize(System.String,System.Collections.Specialized.NameValueCollection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalFileSettingsProvider_Initialize_m72AB532D83499AA1C982C094C2F2AD0BEC3C644C (LocalFileSettingsProvider_tDF14C43FB5B2E259AA5BDAF236D7ADBDBCF9C289 * __this, String_t* ___name0, NameValueCollection_tE3BED11C58844E8A4D9A74F359692B9A51781B4D * ___values1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LocalFileSettingsProvider_Initialize_m72AB532D83499AA1C982C094C2F2AD0BEC3C644C_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(LocalFileSettingsProvider_Initialize_m72AB532D83499AA1C982C094C2F2AD0BEC3C644C_RuntimeMethod_var); return; } } // System.Void System.Configuration.LocalFileSettingsProvider::Reset(System.Configuration.SettingsContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalFileSettingsProvider_Reset_m508278E0F5397A6B20E78D79CA5DC09E95EC2E28 (LocalFileSettingsProvider_tDF14C43FB5B2E259AA5BDAF236D7ADBDBCF9C289 * __this, SettingsContext_tFA3A44BB61DD49BEFF0C8A07A62692555F7683CF * ___context0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LocalFileSettingsProvider_Reset_m508278E0F5397A6B20E78D79CA5DC09E95EC2E28_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(LocalFileSettingsProvider_Reset_m508278E0F5397A6B20E78D79CA5DC09E95EC2E28_RuntimeMethod_var); return; } } // System.Void System.Configuration.LocalFileSettingsProvider::SetPropertyValues(System.Configuration.SettingsContext,System.Configuration.SettingsPropertyValueCollection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalFileSettingsProvider_SetPropertyValues_mE2C425F4665387D0D7830CB2687E77BFF50F97DF (LocalFileSettingsProvider_tDF14C43FB5B2E259AA5BDAF236D7ADBDBCF9C289 * __this, SettingsContext_tFA3A44BB61DD49BEFF0C8A07A62692555F7683CF * ___context0, SettingsPropertyValueCollection_t75B7CA0749D399914EB7A894EF753479F4164E73 * ___values1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LocalFileSettingsProvider_SetPropertyValues_mE2C425F4665387D0D7830CB2687E77BFF50F97DF_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(LocalFileSettingsProvider_SetPropertyValues_mE2C425F4665387D0D7830CB2687E77BFF50F97DF_RuntimeMethod_var); return; } } // System.Void System.Configuration.LocalFileSettingsProvider::Upgrade(System.Configuration.SettingsContext,System.Configuration.SettingsPropertyCollection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalFileSettingsProvider_Upgrade_mD69BB0E54B364B686B0BE5859862B43068CCC6C5 (LocalFileSettingsProvider_tDF14C43FB5B2E259AA5BDAF236D7ADBDBCF9C289 * __this, SettingsContext_tFA3A44BB61DD49BEFF0C8A07A62692555F7683CF * ___context0, SettingsPropertyCollection_t8242867D222B3304B7688232FCDE5D3DAA981843 * ___properties1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LocalFileSettingsProvider_Upgrade_mD69BB0E54B364B686B0BE5859862B43068CCC6C5_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(LocalFileSettingsProvider_Upgrade_mD69BB0E54B364B686B0BE5859862B43068CCC6C5_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ComponentModel.LocalizableAttribute::.ctor(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalizableAttribute__ctor_m4F2DA30C70C63D6975F1354B09BCDF4556CA5835 (LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB * __this, bool ___isLocalizable0, const RuntimeMethod* method) { { Attribute__ctor_m5C1862A7DFC2C25A4797A8C5F681FBB5CB53ECE1(__this, /*hidden argument*/NULL); bool L_0 = ___isLocalizable0; __this->set_isLocalizable_0(L_0); return; } } // System.Boolean System.ComponentModel.LocalizableAttribute::get_IsLocalizable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LocalizableAttribute_get_IsLocalizable_m70767051954132A34D9E3D3EB1E32D6136BC8726 (LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_isLocalizable_0(); return L_0; } } // System.Boolean System.ComponentModel.LocalizableAttribute::IsDefaultAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LocalizableAttribute_IsDefaultAttribute_m21D9FFEFFAD1C8E72C283B2D44A9E2D26F578AC1 (LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { bool L_0; L_0 = LocalizableAttribute_get_IsLocalizable_m70767051954132A34D9E3D3EB1E32D6136BC8726_inline(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB_il2cpp_TypeInfo_var); LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB * L_1 = ((LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB_StaticFields*)il2cpp_codegen_static_fields_for(LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB_il2cpp_TypeInfo_var))->get_Default_3(); NullCheck(L_1); bool L_2; L_2 = LocalizableAttribute_get_IsLocalizable_m70767051954132A34D9E3D3EB1E32D6136BC8726_inline(L_1, /*hidden argument*/NULL); return (bool)((((int32_t)L_0) == ((int32_t)L_2))? 1 : 0); } } // System.Boolean System.ComponentModel.LocalizableAttribute::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LocalizableAttribute_Equals_m67FC4BF71F7253A551AC4AA8C6A0D0571FF756AF (LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB * V_0 = NULL; { RuntimeObject * L_0 = ___obj0; V_0 = ((LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB *)IsInstSealed((RuntimeObject*)L_0, LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB_il2cpp_TypeInfo_var)); LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB * L_1 = V_0; if (!L_1) { goto IL_0019; } } { LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB * L_2 = V_0; NullCheck(L_2); bool L_3; L_3 = LocalizableAttribute_get_IsLocalizable_m70767051954132A34D9E3D3EB1E32D6136BC8726_inline(L_2, /*hidden argument*/NULL); bool L_4 = __this->get_isLocalizable_0(); return (bool)((((int32_t)L_3) == ((int32_t)L_4))? 1 : 0); } IL_0019: { return (bool)0; } } // System.Int32 System.ComponentModel.LocalizableAttribute::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t LocalizableAttribute_GetHashCode_mFCC46C9D5D7FB03B8F4A8AD69706E87116342C3A (LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB * __this, const RuntimeMethod* method) { { int32_t L_0; L_0 = Attribute_GetHashCode_m46EC3256A8DDAC7AC7576362EB50ABD0F83123B4(__this, /*hidden argument*/NULL); return L_0; } } // System.Void System.ComponentModel.LocalizableAttribute::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalizableAttribute__cctor_m699E489F69718FFD5681F765E4EDF221FDF4B961 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB * L_0 = (LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB *)il2cpp_codegen_object_new(LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB_il2cpp_TypeInfo_var); LocalizableAttribute__ctor_m4F2DA30C70C63D6975F1354B09BCDF4556CA5835(L_0, (bool)1, /*hidden argument*/NULL); ((LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB_StaticFields*)il2cpp_codegen_static_fields_for(LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB_il2cpp_TypeInfo_var))->set_Yes_1(L_0); LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB * L_1 = (LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB *)il2cpp_codegen_object_new(LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB_il2cpp_TypeInfo_var); LocalizableAttribute__ctor_m4F2DA30C70C63D6975F1354B09BCDF4556CA5835(L_1, (bool)0, /*hidden argument*/NULL); ((LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB_StaticFields*)il2cpp_codegen_static_fields_for(LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB_il2cpp_TypeInfo_var))->set_No_2(L_1); LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB * L_2 = ((LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB_StaticFields*)il2cpp_codegen_static_fields_for(LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB_il2cpp_TypeInfo_var))->get_No_2(); ((LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB_StaticFields*)il2cpp_codegen_static_fields_for(LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB_il2cpp_TypeInfo_var))->set_Default_3(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.ComponentModel.LookupBindingPropertiesAttribute::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LookupBindingPropertiesAttribute__ctor_m366F1BC9272CD08F596BD54C721497769AF09773 (LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C * __this, const RuntimeMethod* method) { { Attribute__ctor_m5C1862A7DFC2C25A4797A8C5F681FBB5CB53ECE1(__this, /*hidden argument*/NULL); __this->set_dataSource_0((String_t*)NULL); __this->set_displayMember_1((String_t*)NULL); __this->set_valueMember_2((String_t*)NULL); __this->set_lookupMember_3((String_t*)NULL); return; } } // System.Void System.ComponentModel.LookupBindingPropertiesAttribute::.ctor(System.String,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LookupBindingPropertiesAttribute__ctor_m89198E03CA8DFF4DC73AC39C2278C22F0C93AFE3 (LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C * __this, String_t* ___dataSource0, String_t* ___displayMember1, String_t* ___valueMember2, String_t* ___lookupMember3, const RuntimeMethod* method) { { Attribute__ctor_m5C1862A7DFC2C25A4797A8C5F681FBB5CB53ECE1(__this, /*hidden argument*/NULL); String_t* L_0 = ___dataSource0; __this->set_dataSource_0(L_0); String_t* L_1 = ___displayMember1; __this->set_displayMember_1(L_1); String_t* L_2 = ___valueMember2; __this->set_valueMember_2(L_2); String_t* L_3 = ___lookupMember3; __this->set_lookupMember_3(L_3); return; } } // System.String System.ComponentModel.LookupBindingPropertiesAttribute::get_DataSource() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* LookupBindingPropertiesAttribute_get_DataSource_m8CDCC95274637F9644A73EE371B6895ECDE38A43 (LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_dataSource_0(); return L_0; } } // System.String System.ComponentModel.LookupBindingPropertiesAttribute::get_DisplayMember() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* LookupBindingPropertiesAttribute_get_DisplayMember_m447D3415318204AFE989C8E6107C517E3BBAEBFD (LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_displayMember_1(); return L_0; } } // System.String System.ComponentModel.LookupBindingPropertiesAttribute::get_ValueMember() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* LookupBindingPropertiesAttribute_get_ValueMember_mB99D8F1EC5468501685C7C38D58A40C1C3EB0CCE (LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_valueMember_2(); return L_0; } } // System.String System.ComponentModel.LookupBindingPropertiesAttribute::get_LookupMember() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* LookupBindingPropertiesAttribute_get_LookupMember_m421044A874B940AC0E76172B5785F3EDEB05D212 (LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_lookupMember_3(); return L_0; } } // System.Boolean System.ComponentModel.LookupBindingPropertiesAttribute::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LookupBindingPropertiesAttribute_Equals_m71A47E7F3770A904FD4D5CDBF18D2F158340811E (LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C * V_0 = NULL; { RuntimeObject * L_0 = ___obj0; V_0 = ((LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C *)IsInstSealed((RuntimeObject*)L_0, LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C_il2cpp_TypeInfo_var)); LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C * L_1 = V_0; if (!L_1) { goto IL_0055; } } { LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C * L_2 = V_0; NullCheck(L_2); String_t* L_3; L_3 = LookupBindingPropertiesAttribute_get_DataSource_m8CDCC95274637F9644A73EE371B6895ECDE38A43_inline(L_2, /*hidden argument*/NULL); String_t* L_4 = __this->get_dataSource_0(); bool L_5; L_5 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0055; } } { LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C * L_6 = V_0; NullCheck(L_6); String_t* L_7 = L_6->get_displayMember_1(); String_t* L_8 = __this->get_displayMember_1(); bool L_9; L_9 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_7, L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_0055; } } { LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C * L_10 = V_0; NullCheck(L_10); String_t* L_11 = L_10->get_valueMember_2(); String_t* L_12 = __this->get_valueMember_2(); bool L_13; L_13 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_11, L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_0055; } } { LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C * L_14 = V_0; NullCheck(L_14); String_t* L_15 = L_14->get_lookupMember_3(); String_t* L_16 = __this->get_lookupMember_3(); bool L_17; L_17 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_15, L_16, /*hidden argument*/NULL); return L_17; } IL_0055: { return (bool)0; } } // System.Int32 System.ComponentModel.LookupBindingPropertiesAttribute::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t LookupBindingPropertiesAttribute_GetHashCode_m3E8829F760AA680E7072F378BD3B242C4BD67E20 (LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C * __this, const RuntimeMethod* method) { { int32_t L_0; L_0 = Attribute_GetHashCode_m46EC3256A8DDAC7AC7576362EB50ABD0F83123B4(__this, /*hidden argument*/NULL); return L_0; } } // System.Void System.ComponentModel.LookupBindingPropertiesAttribute::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LookupBindingPropertiesAttribute__cctor_m091725A2A28B2D5643D1441D2729BE6FCD784742 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C * L_0 = (LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C *)il2cpp_codegen_object_new(LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C_il2cpp_TypeInfo_var); LookupBindingPropertiesAttribute__ctor_m366F1BC9272CD08F596BD54C721497769AF09773(L_0, /*hidden argument*/NULL); ((LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C_StaticFields*)il2cpp_codegen_static_fields_for(LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C_il2cpp_TypeInfo_var))->set_Default_4(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t FtpStatus_get_StatusCode_mC67001BE9C902DAD12A08E2D178C8FB277FF5081_inline (FtpStatus_t40908570BA05748EFCA5F4B12F77356A42A40837 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_statusCode_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* FtpStatus_get_StatusDescription_m92E877F6DF8CC7794B43E239E8F09D827419DAAB_inline (FtpStatus_t40908570BA05748EFCA5F4B12F77356A42A40837 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_statusDescription_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR WebProxy_tC96F42021301BBF649AE2A2AF8A58920F5563B6E * WebProxyWrapper_get_WebProxy_m64E0A52B9081B75ACED10724A2805F6ECE3C89AB_inline (WebProxyWrapper_tEF5FEF9C3A75F32ABD48893D8B1029B6DB629CEB * __this, const RuntimeMethod* method) { { WebProxy_tC96F42021301BBF649AE2A2AF8A58920F5563B6E * L_0 = ((WebProxyWrapperOpaque_t06FAF957BFE393A0BB04B732DB4ADE60710DFFA2 *)__this)->get_webProxy_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline (String_t* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_m_stringLength_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* HeaderVariantInfo_get_Name_m94033FAF3ED87FB13E9F7445D6B26A9F545C10C5_inline (HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_m_name_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t HeaderVariantInfo_get_Variant_m7B4EE8A87D64408629421635C393524FDA57A3E1_inline (HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_m_variant_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HttpWebRequest_set_ThrowOnError_mAAE39F767EF8CE4BA64472DD870F8116C0F306AA_inline (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set_U3CThrowOnErrorU3Ek__BackingField_63(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* CredentialCache_get_DefaultCredentials_m04BE43C08715BE89006B3E298A7706E7C05D05AA_inline (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SystemNetworkCredential_t5AA9DF4B9637633FDABD6B15737AACE6648AC23F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(SystemNetworkCredential_t5AA9DF4B9637633FDABD6B15737AACE6648AC23F_il2cpp_TypeInfo_var); SystemNetworkCredential_t5AA9DF4B9637633FDABD6B15737AACE6648AC23F * L_0 = ((SystemNetworkCredential_t5AA9DF4B9637633FDABD6B15737AACE6648AC23F_StaticFields*)il2cpp_codegen_static_fields_for(SystemNetworkCredential_t5AA9DF4B9637633FDABD6B15737AACE6648AC23F_il2cpp_TypeInfo_var))->get_defaultCredential_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ServicePoint_get_UsesProxy_mE6CE550E4DFEB85A673160DE35CD67AFA87F35BD_inline (ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_usesProxy_4(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ServicePoint_get_UseConnect_m33B1EC23452734FFED85B21F9439A546BFBD3CC7_inline (ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_useConnect_6(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlyCollection_1_t06CAAF5787D8FDE0CB0F04082673EC9B212451BE * AggregateException_get_InnerExceptions_m2020FC3A2334DDB72FEBFB2BF4CFE088FF83FEFE_inline (AggregateException_t45A871D3DBDA3E28FBCD8DF21F6772238FC55BD1 * __this, const RuntimeMethod* method) { { ReadOnlyCollection_1_t06CAAF5787D8FDE0CB0F04082673EC9B212451BE * L_0 = __this->get_m_innerExceptions_17(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Exception_t * Exception_get_InnerException_m10D85773B6B191C7D4E7D3C2954B84F9BB195218_inline (Exception_t * __this, const RuntimeMethod* method) { { Exception_t * L_0 = __this->get__innerException_4(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t WebException_get_Status_mF9C17E60BDB642F222DF2E3EC033320C34258DF5_inline (WebException_t824617203133537D3B05BF786C22AECE0E2DBD08 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_m_Status_17(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t AuthorizationState_get_NtlmAuthState_mFEDD4ECDE8761AD54175DBBD0EA53C45CD545998_inline (AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_ntlm_auth_state_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Authorization_get_Message_mA648F467F28DCD3ECBE3C8505B719519BD803C2A_inline (Authorization_t4207BA9B4BECE231F74BE9DBC09952FACFAE81EF * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_m_Message_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Version_get_Major_mBDD414863C4A05FADE87F8C39C8CE8ED6DE6C460_inline (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__Major_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Version_get_Minor_m8FCC5D46616E2E54B213EDF31CF3EB57EC998BCE_inline (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__Minor_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * WebConnectionStream_get_Operation_mD926B0BCCEBE04C640DE920C22736C109E95FF27_inline (WebConnectionStream_t3D04BDBD47522FD7C97ABF7F1B4498F72FA2E918 * __this, const RuntimeMethod* method) { { WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * L_0 = __this->get_U3COperationU3Ek__BackingField_13(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR WebConnection_tBFE079FE6CA946AE000FE257DD8FE6F898BB3C88 * WebConnectionStream_get_Connection_m24DACC6F27A46E8201E23C10F3A4CB322136F546_inline (WebConnectionStream_t3D04BDBD47522FD7C97ABF7F1B4498F72FA2E918 * __this, const RuntimeMethod* method) { { WebConnection_tBFE079FE6CA946AE000FE257DD8FE6F898BB3C88 * L_0 = __this->get_U3CConnectionU3Ek__BackingField_12(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void WebConnection_set_NtlmCredential_m2CB4ACA640EF4E2664728A662DB51EFA34169F33_inline (WebConnection_tBFE079FE6CA946AE000FE257DD8FE6F898BB3C88 * __this, NetworkCredential_t263CA6068540C6DA0E1CDE919BD7A15C28D55686 * ___value0, const RuntimeMethod* method) { { NetworkCredential_t263CA6068540C6DA0E1CDE919BD7A15C28D55686 * L_0 = ___value0; __this->set_ntlm_credentials_0(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void WebConnection_set_UnsafeAuthenticatedConnectionSharing_mDF2C242F4AA72103C903B77ECEEC77E31B861D2D_inline (WebConnection_tBFE079FE6CA946AE000FE257DD8FE6F898BB3C88 * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set_unsafe_sharing_2(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool AuthorizationState_get_IsCompleted_mABE39DA7D1F4B5D38315EB2CB3E862243602153A_inline (AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_isCompleted_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool HttpWebRequest_get_ThrowOnError_m0B8D02222A712AD394B318277BEB989794008266_inline (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_U3CThrowOnErrorU3Ek__BackingField_63(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * WebResponseStream_get_Headers_mA7D647A682410D694CC962C67D38EEA488C4A9A3_inline (WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F * __this, const RuntimeMethod* method) { { WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * L_0 = __this->get_U3CHeadersU3Ek__BackingField_25(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * WebResponseStream_get_Version_m4BBC5EA52F6A9B3FF1EA288ED90E97F17E593356_inline (WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F * __this, const RuntimeMethod* method) { { Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = __this->get_U3CVersionU3Ek__BackingField_28(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t WebResponseStream_get_StatusCode_m837CED65B650A68F08F672C9B4FF3A074CE06B94_inline (WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_U3CStatusCodeU3Ek__BackingField_26(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* WebResponseStream_get_StatusDescription_m2E93D3E49082E272D8665DE08338EF8C4B85BBB7_inline (WebResponseStream_tE736622E064B3EC1760F08EC5F0C5BD342E8016F * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_U3CStatusDescriptionU3Ek__BackingField_27(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * WebConnectionStream_get_Request_m31D1A8BD789373DC74A6ACED727E3A46A972BA0B_inline (WebConnectionStream_t3D04BDBD47522FD7C97ABF7F1B4498F72FA2E918 * __this, const RuntimeMethod* method) { { HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * L_0 = __this->get_U3CRequestU3Ek__BackingField_11(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t HttpWebRequest_get_AutomaticDecompression_mFABD0DE3DB921E7DBD581B204A431CB995706FE2_inline (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_auto_decomp_53(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ListDictionary_get_Count_m63B5332C669C858EBC423472A502528612C890F1_inline (ListDictionary_tE20433FD2535BBE239BB4AA3B32BE3EBEEDCF47B * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_count_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * StringComparer_get_OrdinalIgnoreCase_m8FD38206B6FFE866E97CE4DF84B037F0DF175288_inline (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var); StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * L_0 = ((StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_StaticFields*)il2cpp_codegen_static_fields_for(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var))->get__ordinalIgnoreCase_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * StringComparer_get_InvariantCultureIgnoreCase_m091360FF9FE3516559AFF706AF431E6FD4CCF2C2_inline (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var); StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * L_0 = ((StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_StaticFields*)il2cpp_codegen_static_fields_for(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var))->get__invariantCultureIgnoreCase_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t IPAddress_get_AddressFamily_m0554FC6CF1296D4C1456F3D73CB110E38634B24D_inline (IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_m_Family_10(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t IPEndPoint_get_Port_m442D84417A9E8942514FFBB9714FEE6BD094C6C3_inline (IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_m_Port_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * IPEndPoint_get_Address_mD98DD9465D2DE39A73DD098B79062DBCE15C2A95_inline (IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * __this, const RuntimeMethod* method) { { IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_0 = __this->get_m_Address_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SocketAddress_get_Size_m6383C5C4F9200464ACB6D583020F81019602CFA4_inline (SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_m_Size_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t OperatingSystem_get_Platform_m1E43B8C2B6CCDD74474E9AB9CF4EF7445D8BE1DF_inline (OperatingSystem_tBB911FE4834884FD79AF78F2B07C19B938491463 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__platform_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ImmutableObjectAttribute_get_Immutable_m5429A55E126E25C10027E1547DE417EE8D78D466_inline (ImmutableObjectAttribute_t471213B8B48A9A6B013DA2E267BDEDE3475BC21A * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_immutable_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InheritanceAttribute_get_InheritanceLevel_mB637DB7D7A747B7DC3C79128F4EFE1AEC4503ABD_inline (InheritanceAttribute_tADFD5075FF268DDC8A5EF78E931C38B6F6FAEA74 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_inheritanceLevel_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Exception_set_HResult_mB9E603303A0678B32684B0EEC144334BAB0E6392_inline (Exception_t * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set__HResult_11(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t RuntimeTypeHandle_get_Value_m78299A03EF551606AEA2F77C9ECEE38E1D741885_inline (RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 * __this, const RuntimeMethod* method) { { intptr_t L_0 = __this->get_value_0(); return (intptr_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void LingerOption_set_Enabled_m3F544534413C4239E4A0A6D39AE8FF28EEF04207_inline (LingerOption_t4E191E63AB49943D401B71B3E7830E6586CE0E34 * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set_enabled_0(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void LingerOption_set_LingerTime_m4BF89E47E5A4D261B800DD00A8B73DA7EE719C37_inline (LingerOption_t4E191E63AB49943D401B71B3E7830E6586CE0E34 * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set_lingerTime_1(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ListBindableAttribute_get_ListBindable_m86C2633502AF31DE15F0012622965BA952C98758_inline (ListBindableAttribute_t6663B92C6A066A50D0DFFB3855E2CD81BF5069C4 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_listBindable_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool LocalizableAttribute_get_IsLocalizable_m70767051954132A34D9E3D3EB1E32D6136BC8726_inline (LocalizableAttribute_tF1F2B036495DCF81515728B3C47D56471A1E0DEB * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_isLocalizable_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* LookupBindingPropertiesAttribute_get_DataSource_m8CDCC95274637F9644A73EE371B6895ECDE38A43_inline (LookupBindingPropertiesAttribute_t83BA8F82ED160809248F149B255E403D41917C3C * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_dataSource_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_m1382814B15BCE20E539C28DDCF09B0322D4645B9_gshared_inline (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_key_0(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_m9049D745F37362B8AD0CCA94F08CC18D9A734799_gshared_inline (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_value_1(); return (int32_t)L_0; } }