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

32004 行
1.5 MiB

#include "pch-cpp.hpp"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <limits>
#include <stdint.h>
struct VirtualActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1>
struct VirtualActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename T1, typename T2>
struct VirtualActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename T1, typename T2, typename T3>
struct VirtualActionInvoker3
{
typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename R>
struct VirtualFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1>
struct VirtualFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R, typename T1, typename T2>
struct VirtualFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3>
struct VirtualFuncInvoker3
{
typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4>
struct VirtualFuncInvoker4
{
typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5>
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);
}
};
template <typename T1, typename T2>
struct GenericVirtualActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
struct InterfaceActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1>
struct InterfaceActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename T1, typename T2>
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 <typename R>
struct InterfaceFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1>
struct InterfaceFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R, typename T1, typename T2>
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 <typename T1, typename T2>
struct GenericInterfaceActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename T1, typename T2>
struct InvokerActionInvoker2;
template <typename T1, typename T2>
struct InvokerActionInvoker2<T1, T2*>
{
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1 p1, T2* p2)
{
void* params[2] = { &p1, p2 };
method->invoker_method(methodPtr, method, obj, params, NULL);
}
};
template <typename T1, typename T2, typename T3>
struct InvokerActionInvoker3;
template <typename T1, typename T2, typename T3>
struct InvokerActionInvoker3<T1*, T2, T3*>
{
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2 p2, T3* p3)
{
void* params[3] = { p1, &p2, p3 };
method->invoker_method(methodPtr, method, obj, params, NULL);
}
};
template <typename T1, typename T2, typename T3, typename T4>
struct InvokerActionInvoker4;
template <typename T1, typename T2, typename T3, typename T4>
struct InvokerActionInvoker4<T1*, T2*, T3, T4*>
{
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3 p3, T4* p4)
{
void* params[4] = { p1, p2, &p3, p4 };
method->invoker_method(methodPtr, method, obj, params, NULL);
}
};
template <typename R, typename T1>
struct InvokerFuncInvoker1;
template <typename R, typename T1>
struct InvokerFuncInvoker1<R, T1*>
{
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1)
{
R ret;
void* params[1] = { p1 };
method->invoker_method(methodPtr, method, obj, params, &ret);
return ret;
}
};
template <typename R, typename T1, typename T2>
struct InvokerFuncInvoker2;
template <typename R, typename T1, typename T2>
struct InvokerFuncInvoker2<R, T1*, T2*>
{
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2)
{
R ret;
void* params[2] = { p1, p2 };
method->invoker_method(methodPtr, method, obj, params, &ret);
return ret;
}
};
// System.Action`1<System.Object>
struct Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87;
// System.Threading.AsyncLocal`1<System.Globalization.CultureInfo>
struct AsyncLocal_1_t1D3339EA4C8650D2DEDDF9553E5C932B3DC2CCFD;
// System.Collections.ObjectModel.Collection`1<System.Collections.Generic.IEnumerable`1<System.Security.Claims.Claim>>
struct Collection_1_t96B79EEBF0D089ECAF287214CCC0E4A426AFF50F;
// System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo>
struct ConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo>
struct Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Text.Encoding>
struct Dictionary_2_t87EDE08B2E48F793A22DE50D6B3CC2E7EBB2DB54;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Threading.Tasks.Task>
struct Dictionary_2_t403063CE4960B4F46C688912237C6A27E550FF55;
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo>
struct Dictionary_2_tE1603CE612C16451D1E56FF4D4859D4FE4087C28;
// System.Collections.Generic.Dictionary`2<System.String,System.Int32>
struct Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588;
// System.Collections.Generic.Dictionary`2<System.String,System.Object>
struct Dictionary_2_tA348003A3C1CEFB3096E9D2A0BC7F1AC8EC4F710;
// System.EventHandler`1<System.Runtime.ExceptionServices.FirstChanceExceptionEventArgs>
struct EventHandler_1_tF46A0252BA462E35F6B72C69AB6C0F751E7443D7;
// System.EventHandler`1<System.Net.Sockets.SocketAsyncEventArgs>
struct EventHandler_1_t5D3FC4609BD8133ED1226D6D49A1D8076B16A9ED;
// System.Func`1<System.Threading.Tasks.Task`1<System.Object>>
struct Func_1_tF400708EEA4975A6298D8D1C9AC51877FA5FD985;
// System.Func`1<System.Threading.Tasks.Task`1<System.Net.WebResponse>>
struct Func_1_tDAA6FBAB20A0B65227BD8FED28803AF2E7E5C29B;
// System.Func`1<System.Object>
struct Func_1_tD5C081AE11746B200C711DD48DBEB00E3A9276D4;
// System.Func`1<System.Security.Cryptography.X509Certificates.X509CertificateCollection>
struct Func_1_t1A018D620D1CB4D4C91AA22993DD233AA8AB8AFB;
// System.Func`1<System.Threading.Tasks.Task/ContingentProperties>
struct Func_1_tD59A12717D79BFB403BF973694B1BE5B85474BD1;
// System.Func`2<System.IAsyncResult,System.Object>
struct Func_2_t0D0687635BAF9EA3FF389149941C5473EC0CD2D4;
// System.Func`2<System.IAsyncResult,System.Net.WebResponse>
struct Func_2_tE048A673EF3350A89334B6C88EA7517D1EDF8FF3;
// System.Func`2<System.Object,System.Object>
struct Func_2_tACBF5A1656250800CE861707354491F0611F6624;
// System.Func`3<System.AsyncCallback,System.Object,System.IAsyncResult>
struct Func_3_t37EC932F9834D7F9E1C44B6BC6C01F409AE93BA7;
// System.Func`3<System.Object,System.Object,System.Object>
struct Func_3_tAB0692B406AF1455ADB5F518BF283E084B5E8566;
// System.Collections.Generic.LinkedListNode`1<System.Object>
struct LinkedListNode_1_t293BB098D459DDAE6A26977D0731A997186D1D4C;
// System.Collections.Generic.LinkedListNode`1<System.WeakReference>
struct LinkedListNode_1_t8B8D12143248A5FB82DF08BEFD95EF4C426E67FA;
// System.Collections.Generic.LinkedList`1<System.Object>
struct LinkedList_1_t49DC5CF34D4D642E6417F1245CDEC26A32F60C76;
// System.Collections.Generic.LinkedList`1<System.WeakReference>
struct LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2;
// System.Collections.Generic.List`1<System.Security.Claims.Claim>
struct List_1_tE2156FEC3BC446DDE7EEAA73B48272439B783113;
// System.Collections.Generic.List`1<System.Net.IPAddress>
struct List_1_t7327FFE7269D37546789F1E11A915BE2192559DA;
// System.Collections.Generic.List`1<System.Int32>
struct List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73;
// System.Collections.Generic.List`1<System.Object>
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D;
// System.Collections.Generic.List`1<System.String>
struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD;
// System.Predicate`1<System.Object>
struct Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12;
// System.Predicate`1<System.Threading.Tasks.Task>
struct Predicate_1_t7F48518B008C1472339EEEBABA3DE203FE1F26ED;
// System.Threading.Tasks.TaskFactory`1<System.Int32>
struct TaskFactory_1_t0BEF06D58E44525B9135AB0B22D016856EE69FF3;
// System.Threading.Tasks.TaskFactory`1<System.Object>
struct TaskFactory_1_t6F188FE70F3006B0386002E392B799D85100732B;
// System.Threading.Tasks.TaskFactory`1<System.Net.WebResponse>
struct TaskFactory_1_t1C878D0A5D747EAFF79E944B48ED5067568E4873;
// System.Net.Sockets.Socket/TaskSocketAsyncEventArgs`1<System.Net.Sockets.Socket>
struct TaskSocketAsyncEventArgs_1_tEB937620E5B15D91E5BFEFFA707CF800930F8401;
// System.Threading.Tasks.Task`1<System.Int32>
struct Task_1_t4C228DE57804012969575431CFF12D57C875552D;
// System.Threading.Tasks.Task`1<System.Object>
struct Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2;
// System.Threading.Tasks.Task`1<System.Net.WebResponse>
struct Task_1_t5E1291839AEFBDBE3699513D40515588EE167AB0;
// System.Byte[]
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
// System.Char[]
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
// System.Delegate[]
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
// System.Net.FtpMethodInfo[]
struct FtpMethodInfoU5BU5D_tED308D4DC0FECB991D43BBF85B5B7345561B267B;
// System.Net.IPAddress[]
struct IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D;
// System.Int32[]
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
// System.IntPtr[]
struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
// System.Object[]
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
// System.SByte[]
struct SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
// System.String[]
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
// System.Type[]
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
// System.UInt16[]
struct UInt16U5BU5D_tEB7C42D811D999D2AA815BADC3FCCDD9C67B3F83;
// System.Threading.WaitHandle[]
struct WaitHandleU5BU5D_t85D0945086BF1BF6008422B3DD937ECEC35A8108;
// System.Net.CommandStream/PipelineEntry[]
struct PipelineEntryU5BU5D_tF96DE809CEDE1A15F1D069F027582F92EEE04CE4;
// System.Collections.Hashtable/bucket[]
struct bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587;
// System.Net.WebHeaderCollection/RfcChar[]
struct RfcCharU5BU5D_t8D79A380C46398F9D1F442FDEE0A27F77B7D1B4C;
// System.Action
struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07;
// System.AppDomain
struct AppDomain_tFF7010567CBABAEEA7BB19835234D6485E16AD5F;
// System.ArgumentException
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263;
// System.ArgumentNullException
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129;
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F;
// System.Collections.ArrayList
struct ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A;
// System.AssemblyLoadEventHandler
struct AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42;
// System.AsyncCallback
struct AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C;
// System.Net.Authorization
struct Authorization_t7F109103AF7366A418844BF604458413434F60D4;
// System.Threading.AutoResetEvent
struct AutoResetEvent_t7F792F3F7AD11BEF7B411E771D98E5266A8CE7C0;
// System.Reflection.Binder
struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235;
// System.Net.BufferOffsetSize
struct BufferOffsetSize_t46A7671E4C06281BB2D4C4AC98A6263715BDAC71;
// System.Globalization.Calendar
struct Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B;
// System.Threading.CancellationTokenSource
struct CancellationTokenSource_tAAE1E0033BCFC233801F8CB4CED5C852B350CB7B;
// System.Net.CaseInsensitiveAscii
struct CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C;
// System.Globalization.CodePageDataItem
struct CodePageDataItem_t52460FA30AE37F4F26ACB81055E58002262F19F2;
// System.Net.CommandStream
struct CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123;
// System.Globalization.CompareInfo
struct CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57;
// System.Net.Comparer
struct Comparer_t142F6C5E53FD6C38EFE484B87752469CEEEFD7AD;
// System.Net.ContextAwareResult
struct ContextAwareResult_t3CCEE7D0B6510492A4EE1A2F828BDDF012ADBFDA;
// System.Threading.ContextCallback
struct ContextCallback_tE8AFBDBFCC040FDA8DA8C1EEFE9BD66B16BDA007;
// System.Net.Cookie
struct Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3;
// System.Net.CookieException
struct CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F;
// System.Globalization.CultureData
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D;
// System.Globalization.CultureInfo
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0;
// System.DBNull
struct DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC;
// System.Globalization.DateTimeFormatInfo
struct DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A;
// System.Text.Decoder
struct Decoder_tE16E789E38B25DD304004FC630EA8B21000ECBBC;
// System.Text.DecoderFallback
struct DecoderFallback_t7324102215E4ED41EC065C02EB501CB0BC23CD90;
// System.Net.Configuration.DefaultProxySectionInternal
struct DefaultProxySectionInternal_t660B515577A92AE03B159B75AC172E4E34466EC2;
// System.Delegate
struct Delegate_t;
// System.DelegateData
struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
// System.Text.EncoderFallback
struct EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293;
// System.Text.Encoding
struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095;
// System.Net.EndPoint
struct EndPoint_t6233F4E2EB9F0F2D36E187F12BE050E6D8B73564;
// System.Enum
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2;
// System.EventArgs
struct EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377;
// System.EventHandler
struct EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82;
// System.Threading.EventWaitHandle
struct EventWaitHandle_t18F2EB0161747B0646A9A406015A61A214A1EB7E;
// System.Exception
struct Exception_t;
// System.Threading.ExecutionContext
struct ExecutionContext_t9D6EDFD92F0B2D391751963E2D77A8B03CB81710;
// System.Net.FileWebRequestCreator
struct FileWebRequestCreator_tC059E97F3753B58929F60C8531EADB9683F4111D;
// System.FormatException
struct FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B;
// System.FormattableString
struct FormattableString_t4D7D221057108596F60CCCC83532037E2399BE0D;
// System.Net.FtpControlStream
struct FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888;
// System.Net.FtpDataStream
struct FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970;
// System.Net.FtpMethodInfo
struct FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E;
// System.Net.FtpWebRequest
struct FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9;
// System.Net.FtpWebRequestCreator
struct FtpWebRequestCreator_tC389DCEC82487414E888BDCCE1922A5A10937620;
// System.Net.FtpWebResponse
struct FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77;
// System.Collections.Hashtable
struct Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D;
// System.Net.HeaderInfo
struct HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3;
// System.Net.HeaderInfoTable
struct HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F;
// System.Net.HeaderParser
struct HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67;
// System.Net.HttpContinueDelegate
struct HttpContinueDelegate_t174E5B124FF75DBAC627C6E41A0802A802EAE6D9;
// System.Net.HttpRequestCreator
struct HttpRequestCreator_tDA975F6F61D732123CEE4E5AF40042311D3EF7E0;
// System.IAsyncResult
struct IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5;
// System.Runtime.CompilerServices.IAsyncStateMachine
struct IAsyncStateMachine_t0680C7F905C553076B552D5A1A6E39E2F0F36AA2;
// System.Collections.ICollection
struct ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E;
// System.Collections.IComparer
struct IComparer_tE7497C3BE3F68A5A2DCEBF0DAD7D13D738FE7BAD;
// System.Net.ICredentials
struct ICredentials_t8FDA6AF64B852DA0631D4BE66962B20E51E230F0;
// System.Collections.IDictionary
struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
// System.Collections.IEnumerator
struct IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA;
// System.Collections.IEqualityComparer
struct IEqualityComparer_tEF8F1EC76B9C8E76695BE848D41E6B147928D1C1;
// System.IFormatProvider
struct IFormatProvider_tC202922D43BFF3525109ABF3FB79625F5646AB52;
// System.Runtime.Serialization.IFormatterConverter
struct IFormatterConverter_t726606DAC82C384B08C82471313C340968DDB609;
// System.IOAsyncCallback
struct IOAsyncCallback_tDBBA8BBDA6B203613680E77BD4AD6320A1268388;
// System.Net.IPAddress
struct IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484;
// System.Net.IPEndPoint
struct IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB;
// System.Net.IPHostEntry
struct IPHostEntry_tAAAEB0F40DB9F28BE601B5FE7DA1D76191C94490;
// System.Security.Principal.IPrincipal
struct IPrincipal_tE7AF5096287F6C3472585E124CB38FF2A51EAB5F;
// System.Net.IWebProxy
struct IWebProxy_t3ECD2C773539B48B18734D61E87B685A9C93076D;
// System.Net.IWebRequestCreate
struct IWebRequestCreate_t5D7AD1E61E488459300CF994DF01218434C6D930;
// System.IndexOutOfRangeException
struct IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82;
// System.Net.InternalException
struct InternalException_tBD5CDE9133BB628E33CE7F16F6396FCD739C1934;
// System.Threading.InternalThread
struct InternalThread_tF40B7BFCBD60C82BD8475A22FF5186CA10293687;
// System.InvalidOperationException
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB;
// System.Net.LazyAsyncResult
struct LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B;
// System.LocalDataStoreHolder
struct LocalDataStoreHolder_t789DD474AE5141213C2105CE57830ECFC2D3C03F;
// System.LocalDataStoreMgr
struct LocalDataStoreMgr_t205F1783D5CC2B148E829B5882E5406FF9A3AC1E;
// System.Threading.ManualResetEvent
struct ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158;
// System.MarshalByRefObject
struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE;
// System.Reflection.MemberFilter
struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553;
// System.IO.MemoryStream
struct MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.MulticastDelegate
struct MulticastDelegate_t;
// System.Collections.Specialized.NameObjectCollectionBase
struct NameObjectCollectionBase_tB6400DF2FA3B64660D79586B79016B4A0BA645FC;
// System.Collections.Specialized.NameValueCollection
struct NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7;
// System.Net.NetworkCredential
struct NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313;
// System.Net.Sockets.NetworkStream
struct NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0;
// System.Net.NetworkStreamWrapper
struct NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029;
// System.NotImplementedException
struct NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8;
// System.NotSupportedException
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A;
// System.Globalization.NumberFormatInfo
struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472;
// System.Net.ProtocolViolationException
struct ProtocolViolationException_t4660D647ACBC7121D1AE35068DDB7A6C7A88780D;
// System.Net.Cache.RequestCache
struct RequestCache_tE6EF47B39906B93E4777BC33B850BE7F9D4E3F9C;
// System.Net.Cache.RequestCacheBinding
struct RequestCacheBinding_t18F3F4FF8D0F77E86C2C666CEE7FD48A80C042EE;
// System.Net.Cache.RequestCachePolicy
struct RequestCachePolicy_tF15C94C5E458478914D5EB17753294BD488B0550;
// System.Net.Cache.RequestCacheProtocol
struct RequestCacheProtocol_t43C1AC170194874A0C0B0D3B8BE9EABFB613DF85;
// System.Net.Cache.RequestCacheValidator
struct RequestCacheValidator_t21CD031336DECDDBA28550AE4353AA82CC37E301;
// System.ResolveEventHandler
struct ResolveEventHandler_t3CE88268E672E41B1B55E01587AFBCFB85044692;
// System.Net.ResponseDescription
struct ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
// System.Net.Sockets.SafeSocketHandle
struct SafeSocketHandle_t5A597D30D951E736B750ED09D5B3AB72F98407EE;
// Microsoft.Win32.SafeHandles.SafeWaitHandle
struct SafeWaitHandle_t58F5662CD56F6462A687198A64987F8980804449;
// System.Security.SecureString
struct SecureString_t6FBEB334D455CA90093BD446BBEBA47FE5B20C6C;
// System.Threading.SemaphoreSlim
struct SemaphoreSlim_t0D5CB5685D9BFA5BF95CEC6E7395490F933E8DB2;
// System.Runtime.Serialization.SerializationInfo
struct SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37;
// System.Net.Sockets.Socket
struct Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E;
// System.Net.SocketAddress
struct SocketAddress_tAB4BC630E51E2241E607F4070DA1AEE00B442A03;
// System.Net.Sockets.SocketException
struct SocketException_t6D10102A62EA871BD31748E026A372DB6804083B;
// System.Net.Security.SslStream
struct SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27;
// System.Threading.Tasks.StackGuard
struct StackGuard_tACE063A1B7374BDF4AD472DE4585D05AD8745352;
// System.IO.Stream
struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE;
// System.String
struct String_t;
// System.Text.StringBuilder
struct StringBuilder_t;
// System.Collections.Specialized.StringCollection
struct StringCollection_t3C8ACD597B2EB7592031E5240BDDD4102223BDBE;
// System.StringComparer
struct StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06;
// System.Threading.SynchronizationContext
struct SynchronizationContext_tCDB842BBE53B050802CBBB59C6E6DC45B5B06DC0;
// System.SystemException
struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295;
// System.Net.SystemNetworkCredential
struct SystemNetworkCredential_tFBEE5F9E93DECB97C8622974DD2F2EBCB0CBD4FF;
// System.Threading.Tasks.Task
struct Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572;
// System.Threading.Tasks.TaskFactory
struct TaskFactory_tF781BD37BE23917412AD83424D1497C7C1509DF0;
// System.Threading.Tasks.TaskScheduler
struct TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E;
// System.Net.Sockets.TcpClient
struct TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58;
// System.Globalization.TextInfo
struct TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4;
// System.Threading.Thread
struct Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F;
// System.Threading.ThreadStart
struct ThreadStart_t7662D98F1793EDE90192D7304D1C3C44119328A2;
// System.Net.TlsStream
struct TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51;
// System.Type
struct Type_t;
// System.UnhandledExceptionEventHandler
struct UnhandledExceptionEventHandler_tB13FF21A6201A59BB462E68CD10C5B5BEE54941C;
// System.Uri
struct Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E;
// System.UriBuilder
struct UriBuilder_t7931690A4195FCF7400D95D3107C3FB1D55A1C72;
// System.UriParser
struct UriParser_t920B0868286118827C08B08A15A9456AF6C19D81;
// System.Void
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
// System.Threading.WaitCallback
struct WaitCallback_tFB2C7FD58D024BBC2B0333DC7A4CB63B8DEBD5D3;
// System.Threading.WaitHandle
struct WaitHandle_t08F8DB54593B241FE32E0DD0BD3D82785D3AE3D8;
// System.WeakReference
struct WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E;
// System.Net.WebException
struct WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8;
// System.Net.WebHeaderCollection
struct WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8;
// System.Net.WebRequest
struct WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B;
// System.Net.WebRequestPrefixElement
struct WebRequestPrefixElement_tBE0FDE8DE0352095DECA0964655D25E05E435C35;
// System.Net.WebResponse
struct WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682;
// System.Security.Principal.WindowsIdentity
struct WindowsIdentity_t18EC60B678C8A1AA9A67A89BC3BCFA1CC1E2C459;
// System.Security.Cryptography.X509Certificates.X509CertificateCollection
struct X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE;
// System.Net.CommandStream/PipelineEntry
struct PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463;
// System.Net.FtpControlStream/<>c__DisplayClass31_0
struct U3CU3Ec__DisplayClass31_0_t5AF210E8C8A968A4D36EE158747C05623DB6FD6E;
// System.Net.FtpWebRequest/<>c
struct U3CU3Ec_tC2DEFD54496D8274D1995CC11D74A23339DC4447;
// System.Net.FtpWebResponse/EmptyStream
struct EmptyStream_t195E304A631BA5798F6FED9BD12ADFDD157BB7E5;
// System.Net.LazyAsyncResult/ThreadContext
struct ThreadContext_t4D66E3F5FE5863AF4D086D6CE7CAFF02382B7650;
// System.Collections.Specialized.NameObjectCollectionBase/NameObjectEntry
struct NameObjectEntry_t58A8B38FC7A6ABE5C83153B6C3F2696F88E7A9A2;
// System.Collections.Specialized.NameObjectCollectionBase/NameObjectKeysEnumerator
struct NameObjectKeysEnumerator_t4182E42291FFAE1FC7B3BB46365244F202EFE7A0;
// System.Net.Sockets.Socket/CachedEventArgs
struct CachedEventArgs_tF0692E89962FD1A045B17BC985F838C11FB6822C;
// System.Net.Sockets.Socket/Int32TaskSocketAsyncEventArgs
struct Int32TaskSocketAsyncEventArgs_t36C5FC82499ED9DAFE7F05C38EF92D77A0B248E9;
// System.IO.Stream/ReadWriteTask
struct ReadWriteTask_t0821BF49EE38596C7734E86E1A6A39D769BE2C05;
// System.Threading.Tasks.Task/ContingentProperties
struct ContingentProperties_t3FA59480914505CEA917B1002EC675F29D0CB540;
// System.Net.TimerThread/Callback
struct Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835;
// System.Net.TimerThread/InfiniteTimer
struct InfiniteTimer_tDF656910621727F5F5BCBEA8B9FBE9398C783159;
// System.Net.TimerThread/InfiniteTimerQueue
struct InfiniteTimerQueue_tFE425952008C1E3FF928211F9325D43CAA8106D5;
// System.Net.TimerThread/Queue
struct Queue_t644DC21212BC432819522EDA395EB4562BE2CC47;
// System.Net.TimerThread/Timer
struct Timer_t251C62B59B7D01C94C28C6162B45228C0276C695;
// System.Net.TimerThread/TimerNode
struct TimerNode_t21C7B25E858618C4613473EB473193B566380994;
// System.Net.TimerThread/TimerQueue
struct TimerQueue_tAB38C0ABB8EDA32D28106F9D5DF595FBD20CF8FB;
// System.Uri/UriInfo
struct UriInfo_t5F91F77A93545DDDA6BB24A609BAF5E232CC1A09;
// System.Net.WebRequest/<>c__DisplayClass79_0
struct U3CU3Ec__DisplayClass79_0_tA7D1A51487A16A545400DB55AE8D336EE26007F1;
// System.Net.WebRequest/DesignerWebRequestCreate
struct DesignerWebRequestCreate_t75F62E4DEBF416E21EAF6FBB62E43ADB83A0753E;
IL2CPP_EXTERN_C RuntimeClass* AddressFamily_t01AA8C9FD15E4727B241F1F453D88444337C7524_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AuthenticationException_tACF49ABE65B7CEABB69DE78FA8AE8B1771CDF6A8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AutoResetEvent_t7F792F3F7AD11BEF7B411E771D98E5266A8CE7C0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CloseExState_t3BF48B5344EC89945CB921ED26AF81B4BF9F6C44_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Comparer_t142F6C5E53FD6C38EFE484B87752469CEEEFD7AD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ContextAwareResult_t3CCEE7D0B6510492A4EE1A2F828BDDF012ADBFDA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DesignerWebRequestCreate_t75F62E4DEBF416E21EAF6FBB62E43ADB83A0753E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EmptyStream_t195E304A631BA5798F6FED9BD12ADFDD157BB7E5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ExecutionContext_t9D6EDFD92F0B2D391751963E2D77A8B03CB81710_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FileWebRequestCreator_tC059E97F3753B58929F60C8531EADB9683F4111D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FtpMethodInfoU5BU5D_tED308D4DC0FECB991D43BBF85B5B7345561B267B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FtpStatusCode_tB41B8C83958681A4C0AB77B4C847B1D5C9196C6E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FtpWebRequestCreator_tC389DCEC82487414E888BDCCE1922A5A10937620_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_1_t1A018D620D1CB4D4C91AA22993DD233AA8AB8AFB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_1_tDAA6FBAB20A0B65227BD8FED28803AF2E7E5C29B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_2_tE048A673EF3350A89334B6C88EA7517D1EDF8FF3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_3_t37EC932F9834D7F9E1C44B6BC6C01F409AE93BA7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* HTTP_REQUEST_HEADER_ID_t2ACEB911F77BA4CEA6188D3A58E028E2F9EDF51E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* HttpRequestCreator_tDA975F6F61D732123CEE4E5AF40042311D3EF7E0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICloseEx_tCE0C0139320304106D631B20A3A73B581D2ED6F1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICredentials_t8FDA6AF64B852DA0631D4BE66962B20E51E230F0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IWebProxy_t3ECD2C773539B48B18734D61E87B685A9C93076D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IWebRequestCreate_t5D7AD1E61E488459300CF994DF01218434C6D930_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InfiniteTimerQueue_tFE425952008C1E3FF928211F9325D43CAA8106D5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InfiniteTimer_tDF656910621727F5F5BCBEA8B9FBE9398C783159_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IntPtr_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InternalException_tBD5CDE9133BB628E33CE7F16F6396FCD739C1934_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t7327FFE7269D37546789F1E11A915BE2192559DA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NameObjectKeysEnumerator_t4182E42291FFAE1FC7B3BB46365244F202EFE7A0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NclUtilities_t631EDB0996FE8DEB88C069D5A050B9809E23DA8D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PipelineEntryU5BU5D_tF96DE809CEDE1A15F1D069F027582F92EEE04CE4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RequestCacheProtocol_t43C1AC170194874A0C0B0D3B8BE9EABFB613DF85_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RequestStage_tDC743E2D2E03FDE23DBCF5E27E2A7853EECFB4CD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RfcCharU5BU5D_t8D79A380C46398F9D1F442FDEE0A27F77B7D1B4C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SecurityException_t025CB4C23107E67E07CF085826B40EDE72F8165C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SocketAddress_tAB4BC630E51E2241E607F4070DA1AEE00B442A03_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SocketException_t6D10102A62EA871BD31748E026A372DB6804083B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StackOverflowException_t938C753F2BB15F526FD564CCF52061BBE5BC97C9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringCollection_t3C8ACD597B2EB7592031E5240BDDD4102223BDBE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SystemNetworkCredential_tFBEE5F9E93DECB97C8622974DD2F2EBCB0CBD4FF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ThreadAbortException_tCA1833E5D49782387EDF3BDCBDB90597B273F3C4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ThreadContext_t4D66E3F5FE5863AF4D086D6CE7CAFF02382B7650_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ThreadStart_t7662D98F1793EDE90192D7304D1C3C44119328A2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TimerNode_t21C7B25E858618C4613473EB473193B566380994_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TimerQueue_tAB38C0ABB8EDA32D28106F9D5DF595FBD20CF8FB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass31_0_t5AF210E8C8A968A4D36EE158747C05623DB6FD6E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass79_0_tA7D1A51487A16A545400DB55AE8D336EE26007F1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_tC2DEFD54496D8274D1995CC11D74A23339DC4447_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UriBuilder_t7931690A4195FCF7400D95D3107C3FB1D55A1C72_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ValidationHelper_tA6AE681FCDFA9BE8E3EF31C28A624AADF973A25C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* WaitCallback_tFB2C7FD58D024BBC2B0333DC7A4CB63B8DEBD5D3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* WaitHandleU5BU5D_t85D0945086BF1BF6008422B3DD937ECEC35A8108_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* WaitHandle_t08F8DB54593B241FE32E0DD0BD3D82785D3AE3D8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* WebExceptionMapping_tDDA997889D4DC7BF308F43EE387C07295C096FA8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* WebExceptionStatus_t86B29EE86F8C7D20D1825C71503F0473C43B4B92_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* WebRequestPrefixElement_tBE0FDE8DE0352095DECA0964655D25E05E435C35_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* WindowsIdentity_t18EC60B678C8A1AA9A67A89BC3BCFA1CC1E2C459_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____00C700F38385659BA060672F86D4A9A5376EADF9ED1CABB1C63290A0FDEFE36A_0_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____063691760A57230E8119DF650327304D68AE1C009E476E48BE8C73DCA199D374_2_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____3505B8A2248AC03FE41ACADF8F29294572BBADEE1DD2E1A45D025766681C012C_6_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____356A582FCE68ACAE8FC944F7B4F0C0DA2BFF4A90D3767C75905F3EDE2E4E66CF_7_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____6C8F647E1FCD63826D12272FF0930E9C16F1FFEF719948703A4C0F3B90052885_8_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____8109EF063456779751E8A4AEE94A0BE9AE32827B6EB153ABD7F40057FF2C9CE3_9_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____9001C3EDE1D7E939C07996B84F82F7CBE59A7266C1FC2735E959E3C8609602E8_10_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____9F58F1261D211553DE8FBC1AFA477C84EA3974B9BFF38223D771D0CDA787E15A_11_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____BB6BB42AC5453BD8AA992CCB8929F1CB7D4E112E3FC56E57D711E106D1F72859_13_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____DFA7289CF8D8029ACEE90F30530C6926950E8DD20285772458F271AFD015BAD5_14_FieldInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral015C9226A90A65B547DB1B59894F3908A8F2CC06;
IL2CPP_EXTERN_C String_t* _stringLiteral016427F0ED7C71BEAF9035FF518905122A45BB4B;
IL2CPP_EXTERN_C String_t* _stringLiteral0242F31341D314854DB5EA5749448625B0A0AAE3;
IL2CPP_EXTERN_C String_t* _stringLiteral03BC8C687581927CC1FD3891B147EE76622E0C94;
IL2CPP_EXTERN_C String_t* _stringLiteral04045BCBA2BF67D6C1FB792E497557BDF7F450B1;
IL2CPP_EXTERN_C String_t* _stringLiteral06D61D0AFF358E1C2D49BEA96357FC2BFECF1985;
IL2CPP_EXTERN_C String_t* _stringLiteral08AEFF14DE513F5C997D873327E69A7331DF29D8;
IL2CPP_EXTERN_C String_t* _stringLiteral09B11B6CC411D8B9FFB75EAAE9A35B2AF248CE40;
IL2CPP_EXTERN_C String_t* _stringLiteral0B0FEB3147CE20EB2C90076367F895C59BCD14B3;
IL2CPP_EXTERN_C String_t* _stringLiteral0B1F0CB1E4B39488382BB9FFA847FAE16A9A34AB;
IL2CPP_EXTERN_C String_t* _stringLiteral0BB9AAEC2AAAB32BFE978A4C45400CAF08F6749C;
IL2CPP_EXTERN_C String_t* _stringLiteral0C13E7FBCD32454431CB2B4D68B04D5BD105D9CC;
IL2CPP_EXTERN_C String_t* _stringLiteral0D0D0C17BC59054E43F2DF1F9E9184032FBFBF01;
IL2CPP_EXTERN_C String_t* _stringLiteral0DD32B18A388C5F1A6BAFD3629759260C61F767C;
IL2CPP_EXTERN_C String_t* _stringLiteral0E5584AFF0328C3E9B727CFB3887E9E710B0F53D;
IL2CPP_EXTERN_C String_t* _stringLiteral0E6EB3120D4E632393E32A4A5DEA7103A2B70E2A;
IL2CPP_EXTERN_C String_t* _stringLiteral0EF29B2C7D325AC477F82D9ACC3AF99C88146FE9;
IL2CPP_EXTERN_C String_t* _stringLiteral0FD27F76C34125DBDF11649F3ABCF552FF2E9692;
IL2CPP_EXTERN_C String_t* _stringLiteral105F370F0767E80644D1284D6D35746E195C6599;
IL2CPP_EXTERN_C String_t* _stringLiteral10C63C8C602DD5E38BE4A758C90EBAC324CD3E69;
IL2CPP_EXTERN_C String_t* _stringLiteral1168E92C164109D6220480DEDA987085B2A21155;
IL2CPP_EXTERN_C String_t* _stringLiteral127982D8D48B627D6FEB2E03467C76CE65E3AD8A;
IL2CPP_EXTERN_C String_t* _stringLiteral1488F649920198F59A3B53EA7C81503935DEF05E;
IL2CPP_EXTERN_C String_t* _stringLiteral1653EF65FEC1A0699F44EC90CCA9C89884781A94;
IL2CPP_EXTERN_C String_t* _stringLiteral1673637C0DEF01B1D6ED9979CE65DF36B659184D;
IL2CPP_EXTERN_C String_t* _stringLiteral16D46E00A879AD1C9053ED90B4B148D721A45E92;
IL2CPP_EXTERN_C String_t* _stringLiteral1A0A3CA99318DA5D044663BE79A6F30B963858AF;
IL2CPP_EXTERN_C String_t* _stringLiteral1C0680A8F698A8F35416CE75A2356C661641B7D9;
IL2CPP_EXTERN_C String_t* _stringLiteral1C997AE61348A368618FE9FD363F88CDC0B40097;
IL2CPP_EXTERN_C String_t* _stringLiteral1D9F98EAF5D9B13BF257985BA152DBC980FD412B;
IL2CPP_EXTERN_C String_t* _stringLiteral1EFC2D997940179D05D340EEFB09AEABEBBE5AF3;
IL2CPP_EXTERN_C String_t* _stringLiteral1F1F0198EC371523C2BEEAB18E73243B7B5F5D0D;
IL2CPP_EXTERN_C String_t* _stringLiteral1F867E542346F4FD171E87D0AE89A5DA4F78A7B6;
IL2CPP_EXTERN_C String_t* _stringLiteral1FA13CA565DC9B5105D70A528D26A6FC7A57049E;
IL2CPP_EXTERN_C String_t* _stringLiteral2264BCDAE97447CBA2BF489CDD8241719D321D83;
IL2CPP_EXTERN_C String_t* _stringLiteral228835A6E22383C9BC1AAFD065E6D63FA30BF27B;
IL2CPP_EXTERN_C String_t* _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745;
IL2CPP_EXTERN_C String_t* _stringLiteral24F45929493475FECA90729BA5EAF2D06F8722A4;
IL2CPP_EXTERN_C String_t* _stringLiteral253C2A72C3C0896AEF65D4E8740C0541E7390437;
IL2CPP_EXTERN_C String_t* _stringLiteral2596BC412EFA7548DA969FAB0524F2329C019534;
IL2CPP_EXTERN_C String_t* _stringLiteral27DDB0923D1148A950B6EDF4EC82AB4A24C64C43;
IL2CPP_EXTERN_C String_t* _stringLiteral2808BA0FD08F571CFB3F1BFDD65B2830813409F4;
IL2CPP_EXTERN_C String_t* _stringLiteral282E4C330C51E3CF417428EAAD50AB8F2AA43472;
IL2CPP_EXTERN_C String_t* _stringLiteral2A2B511F9E1806176D2C8E3C04414FCABDA3FC6A;
IL2CPP_EXTERN_C String_t* _stringLiteral2FB6E07A52502F6305C1B908F904737A1F29E74E;
IL2CPP_EXTERN_C String_t* _stringLiteral3015B2A3D39F343DF5439AC8F9FFEFD31A155603;
IL2CPP_EXTERN_C String_t* _stringLiteral30533292CAF49D04873AD3F08735959A1C6C6111;
IL2CPP_EXTERN_C String_t* _stringLiteral31514D8FFE6EBD8A160985B5C25BE0F2A7BEF863;
IL2CPP_EXTERN_C String_t* _stringLiteral3220BBB392E3CB8CF814351BB1F94E3EE69058E8;
IL2CPP_EXTERN_C String_t* _stringLiteral330C8147389635B6DA06062A5D3FE6044B37C7E0;
IL2CPP_EXTERN_C String_t* _stringLiteral35FECFFF9CC241A89AB13A0D45EBC175B703DFE1;
IL2CPP_EXTERN_C String_t* _stringLiteral376279D3A1357B88D8CAD8BAD1C4F384B5380B3B;
IL2CPP_EXTERN_C String_t* _stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6;
IL2CPP_EXTERN_C String_t* _stringLiteral37B9D73BE7368F9E631CD06C5DC3758F48D4E89C;
IL2CPP_EXTERN_C String_t* _stringLiteral37ED1B470D34983C51B7FCACFA5663E89C9196E2;
IL2CPP_EXTERN_C String_t* _stringLiteral3920A82609B491048963B8ABAE79392979797BC9;
IL2CPP_EXTERN_C String_t* _stringLiteral39CB21871F9F9FE5AE18BA5E81ED4EC6DADB8E03;
IL2CPP_EXTERN_C String_t* _stringLiteral3C448FF28DD2EF62D928054D74F4BEEC5B65ADFE;
IL2CPP_EXTERN_C String_t* _stringLiteral3CF09EA528F2B59A7130F83612C8F6DC4419E135;
IL2CPP_EXTERN_C String_t* _stringLiteral3D98372962A0D30238C43F12D007AFE39E995B24;
IL2CPP_EXTERN_C String_t* _stringLiteral3E2494FB2D245D91FF110697DD6EA93C8AD044C7;
IL2CPP_EXTERN_C String_t* _stringLiteral3EBDBD8FCA12AE01917E5179BB979BD9077F8144;
IL2CPP_EXTERN_C String_t* _stringLiteral3EBF7CFEC7929F196835D5D12FBBE2F845BF2A5F;
IL2CPP_EXTERN_C String_t* _stringLiteral3EC6EE6DD2256DD3B8C906507025EE48AE0432AC;
IL2CPP_EXTERN_C String_t* _stringLiteral3EE5A4671A4E5AEBD31CA5F013A7773DC18ED22B;
IL2CPP_EXTERN_C String_t* _stringLiteral3F477F5B61F788A30AF7E67D63A4BA5A4FC200D5;
IL2CPP_EXTERN_C String_t* _stringLiteral3FC2E68F241F851C7C6FAADC81426876045B40ED;
IL2CPP_EXTERN_C String_t* _stringLiteral4133EC0E83E4C69B6C0094B47BFD1408F0C8D4C5;
IL2CPP_EXTERN_C String_t* _stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D;
IL2CPP_EXTERN_C String_t* _stringLiteral4400EE4D96128FF5849A664BF898C4FA42C55867;
IL2CPP_EXTERN_C String_t* _stringLiteral4502112B709257EB72BDA2E310BDAD51C4094E46;
IL2CPP_EXTERN_C String_t* _stringLiteral453A1400C5EBA45D0DD93B54ED1EC6D42377A4B5;
IL2CPP_EXTERN_C String_t* _stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8;
IL2CPP_EXTERN_C String_t* _stringLiteral47E7DF78FEB33C4D463D475ACA6A5FCA4DE8ACF8;
IL2CPP_EXTERN_C String_t* _stringLiteral4804D4A94A508275B12EF1A6D5615949E9E336E1;
IL2CPP_EXTERN_C String_t* _stringLiteral48C75149E263D08DBE3F3CB86DF011FA96C010AF;
IL2CPP_EXTERN_C String_t* _stringLiteral495DC0FD751814351D0F918BCFE0E9C782E2E090;
IL2CPP_EXTERN_C String_t* _stringLiteral4BD4A20D743286D24CF77C38E693ECBCE8CD3A7E;
IL2CPP_EXTERN_C String_t* _stringLiteral4C22725C9E6B4F7CBB255320C6F9A96FCE950DFC;
IL2CPP_EXTERN_C String_t* _stringLiteral4D8D9C94AC5DA5FCED2EC8A64E10E714A2515C30;
IL2CPP_EXTERN_C String_t* _stringLiteral4DD4C5922A070C5C0CE53FC4868A2D61BF64A7C3;
IL2CPP_EXTERN_C String_t* _stringLiteral53005BF01FA9DB19AA782E943D8D2B4BB1BD3B20;
IL2CPP_EXTERN_C String_t* _stringLiteral56B55F1AE7D34548BDC41081085DD3561CB80578;
IL2CPP_EXTERN_C String_t* _stringLiteral57B97F9882E61671CA606918FB68E9D6344D44E6;
IL2CPP_EXTERN_C String_t* _stringLiteral57BD43C20A057CCCB23650CB346EACEE7B31AE72;
IL2CPP_EXTERN_C String_t* _stringLiteral5896CBBFC90905C75DD54D891BDA98D58E394A45;
IL2CPP_EXTERN_C String_t* _stringLiteral58B716FF5428F7961E1403E6D969E605D0F27EAF;
IL2CPP_EXTERN_C String_t* _stringLiteral5A345D210B621CD73744E42A4CA62CEE6971E34F;
IL2CPP_EXTERN_C String_t* _stringLiteral5B58EBE31E594BF8FA4BEA3CD075473149322B18;
IL2CPP_EXTERN_C String_t* _stringLiteral5BB3788A197C26B8310159EC9A81635814ABB05B;
IL2CPP_EXTERN_C String_t* _stringLiteral5C5EE883BE58477D29789770C77CED0740EA2109;
IL2CPP_EXTERN_C String_t* _stringLiteral5C648DB5BA0DE7A010730BEEDB7FEADB7EB4A556;
IL2CPP_EXTERN_C String_t* _stringLiteral5E31512678863221EE7E201CC4738E79F8A04D42;
IL2CPP_EXTERN_C String_t* _stringLiteral61896E01350C3D7139AB7C79A29A3A8ED072B0C0;
IL2CPP_EXTERN_C String_t* _stringLiteral62D8319602CC0C685C5740895830F89A1DE77FAF;
IL2CPP_EXTERN_C String_t* _stringLiteral65C1D59289B5966ECA441384A680097DC790EC62;
IL2CPP_EXTERN_C String_t* _stringLiteral67A54AB78AD61DDEB268617E3EE621D1193804DC;
IL2CPP_EXTERN_C String_t* _stringLiteral68ACB6B47D3431BDBD286C3153B250E20552A4AD;
IL2CPP_EXTERN_C String_t* _stringLiteral69246FD8ECCD71895CF44BE2EB6A80E686C5A018;
IL2CPP_EXTERN_C String_t* _stringLiteral694377C0677C61D486C4B5E6D1EC89FC94F03DA2;
IL2CPP_EXTERN_C String_t* _stringLiteral6996DC0CC92C7C284749109C7F02D201312B6A5C;
IL2CPP_EXTERN_C String_t* _stringLiteral6B132E8CB6DC038EF010802D53A03049F6EAE19A;
IL2CPP_EXTERN_C String_t* _stringLiteral6B50EFF68A6BF17B8DE03339A4359AF08F480AAF;
IL2CPP_EXTERN_C String_t* _stringLiteral6B63473C94B9EADF291135D2EDD34552020ACFFA;
IL2CPP_EXTERN_C String_t* _stringLiteral6C066B34F4DB79023C0642AFBC43B25A5327F710;
IL2CPP_EXTERN_C String_t* _stringLiteral6C8B879C8DDD1F43E70CC5411A8D8E6CF0F55DF7;
IL2CPP_EXTERN_C String_t* _stringLiteral6C9C9B52BC5A172DC07702A43C413CDD765007FF;
IL2CPP_EXTERN_C String_t* _stringLiteral6CB05FD18E12F98F81A204339D25DD82BC993FDD;
IL2CPP_EXTERN_C String_t* _stringLiteral6CE02DBF10772951A436ED08602B6C21AF7A06F2;
IL2CPP_EXTERN_C String_t* _stringLiteral6CE5ADD5EE932BBD004053FD59D31BCED33C98EC;
IL2CPP_EXTERN_C String_t* _stringLiteral6E34E505E342A11AE48ECA3D71434F8043A88EB6;
IL2CPP_EXTERN_C String_t* _stringLiteral7261AC55A08390AC06CD46D9461EC1CC693D1B6C;
IL2CPP_EXTERN_C String_t* _stringLiteral759AD690A88BEF96FA539D85F8E0DFED8A1AE494;
IL2CPP_EXTERN_C String_t* _stringLiteral7636E7C7A5108E7ABB16B320D0A637F4E2A9E3E6;
IL2CPP_EXTERN_C String_t* _stringLiteral783C5B36660265F9D49078CA35348CD0ABDD49DF;
IL2CPP_EXTERN_C String_t* _stringLiteral7904BBACEB7DA702721E788913F82DE674A89DD4;
IL2CPP_EXTERN_C String_t* _stringLiteral7A1F5BB29CA3660283E74E89C0A4F6EBFA460DA5;
IL2CPP_EXTERN_C String_t* _stringLiteral7C5B2C0D17D684D4380087821D68BB021A77AA5D;
IL2CPP_EXTERN_C String_t* _stringLiteral7F4834BD098A695FDE6AA074DD12E90C659CD225;
IL2CPP_EXTERN_C String_t* _stringLiteral7FD5233B8BABC601678D101B169D10B91A449A07;
IL2CPP_EXTERN_C String_t* _stringLiteral82EA3C9AFC08F0CECEBC1B257606B3106346FCAF;
IL2CPP_EXTERN_C String_t* _stringLiteral837AB1353B48531677906AF6731DF5EF5ACDA3F1;
IL2CPP_EXTERN_C String_t* _stringLiteral84D476FB41C785D939EDB803394BDE5FF705ECE0;
IL2CPP_EXTERN_C String_t* _stringLiteral852D6C5FF950C5F68CBF45E550ECB7097C8EDE5F;
IL2CPP_EXTERN_C String_t* _stringLiteral864F0127710FB26053A56F852CCABCB8F269195F;
IL2CPP_EXTERN_C String_t* _stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1;
IL2CPP_EXTERN_C String_t* _stringLiteral86E7C0314F9CA521BDA0F361B0D90037E62E63C2;
IL2CPP_EXTERN_C String_t* _stringLiteral86EB59FCEC37C8229DD2F3BB2A9EBA2F48812A6A;
IL2CPP_EXTERN_C String_t* _stringLiteral86FADB31129B6F40C720A97600D69389EA3567E3;
IL2CPP_EXTERN_C String_t* _stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D;
IL2CPP_EXTERN_C String_t* _stringLiteral87B40F9D5C037647BD25D92BACEB7E078C14395A;
IL2CPP_EXTERN_C String_t* _stringLiteral8C84DED9E27D73A4FA0659FD02C5FAD66640F888;
IL2CPP_EXTERN_C String_t* _stringLiteral8CB5CAE4A06CBA4A72564C688228877DD24B9906;
IL2CPP_EXTERN_C String_t* _stringLiteral8D28F1F930CE88A866A5AFD45B7587A776D2A2E5;
IL2CPP_EXTERN_C String_t* _stringLiteral8DB17B6F8C60D6E80C82057FD4253EAFB6EF36BE;
IL2CPP_EXTERN_C String_t* _stringLiteral90B1F8A5D2657AA29275021823D578F50A05BFFC;
IL2CPP_EXTERN_C String_t* _stringLiteral923A177028E3EE4682B85F229CFEDF05038402BC;
IL2CPP_EXTERN_C String_t* _stringLiteral935884DFDF8F8A8A6D67558F0B4C92779D175C75;
IL2CPP_EXTERN_C String_t* _stringLiteral951CCB49640C8F9E81FB4E0D82730321F4E15BB3;
IL2CPP_EXTERN_C String_t* _stringLiteral959B8EDC13DED60C561BA19DAB5B5FC6B5E42D7F;
IL2CPP_EXTERN_C String_t* _stringLiteral95E94A4F406335B785CDD0878A7A7B3A25738CA1;
IL2CPP_EXTERN_C String_t* _stringLiteral960C0D8C9BD0DBD457272FE9A9489F8182BB0C2B;
IL2CPP_EXTERN_C String_t* _stringLiteral9BFBA6FC6C00F5F6483CB92EEB238D32EA589C2D;
IL2CPP_EXTERN_C String_t* _stringLiteral9D5A3AE3D2B0B5E5AF5AB489000D9B88FA11E907;
IL2CPP_EXTERN_C String_t* _stringLiteral9E457975468FF4D1398279C178A1A9A3B8DFE28E;
IL2CPP_EXTERN_C String_t* _stringLiteral9E6EE2E8A8F7BA1E32CE982DB123FA004F2495D0;
IL2CPP_EXTERN_C String_t* _stringLiteral9FB2F3655E9DD75E99A6C4F16345BA6B6F009B9D;
IL2CPP_EXTERN_C String_t* _stringLiteralA2F1D185E07BC18D8F5CEE1B8FD0C522DDB0158D;
IL2CPP_EXTERN_C String_t* _stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73;
IL2CPP_EXTERN_C String_t* _stringLiteralA46737DD153510F79305AF4E1494F323B2F08BBA;
IL2CPP_EXTERN_C String_t* _stringLiteralA6FA6333C381255498D0C48C380EBB0ADA6466A3;
IL2CPP_EXTERN_C String_t* _stringLiteralAA97414725713F976A0AA88257D701073421F779;
IL2CPP_EXTERN_C String_t* _stringLiteralAAFC71E95E05872CC9F35C4F43F28F1413C8E894;
IL2CPP_EXTERN_C String_t* _stringLiteralABDF52D360297C3F8D7E4851B2C8262AF0F3CE00;
IL2CPP_EXTERN_C String_t* _stringLiteralAC669FEED01B4FD2367FB6264BEFB325184802C8;
IL2CPP_EXTERN_C String_t* _stringLiteralAD27FA3A0B67FF7854D05AB4CD97E2B72CEB5551;
IL2CPP_EXTERN_C String_t* _stringLiteralAD972D784BB1C6D613B9152EADDCA1A1A8DD73B8;
IL2CPP_EXTERN_C String_t* _stringLiteralAFA58366D18B83459A7329A0ADE678FD54489434;
IL2CPP_EXTERN_C String_t* _stringLiteralAFCA66D5D5878810A8CD2E0D26A5C5C39E21C7FE;
IL2CPP_EXTERN_C String_t* _stringLiteralAFECF3A5E478A812AD9761D0C14980023E407962;
IL2CPP_EXTERN_C String_t* _stringLiteralAFF6FC1BBF8225403B19D80590F3E0C595DA293C;
IL2CPP_EXTERN_C String_t* _stringLiteralB106E8740CE42211E45D45DA37C3F737E6872BA6;
IL2CPP_EXTERN_C String_t* _stringLiteralB1E498D1FDCAC7DD2B740989B7BFF5C99BD688BE;
IL2CPP_EXTERN_C String_t* _stringLiteralB31954C34320CC79DE26F897C41586435B861BA6;
IL2CPP_EXTERN_C String_t* _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D;
IL2CPP_EXTERN_C String_t* _stringLiteralB5F906901438009B03906D0B6A2FB2E3369076F3;
IL2CPP_EXTERN_C String_t* _stringLiteralB7037FE69D3F4578EBCEE87B50A50C9E21C70409;
IL2CPP_EXTERN_C String_t* _stringLiteralB80519B73D335C4C43628C2D134643395ECC9577;
IL2CPP_EXTERN_C String_t* _stringLiteralB95E6F99C6E94CF20B6761C1D34626A3D301CBFE;
IL2CPP_EXTERN_C String_t* _stringLiteralB9D4616FF8C325B5F064CE0D8195DB31C1B71C4F;
IL2CPP_EXTERN_C String_t* _stringLiteralBB1692DA8ED7544A3193330A7D73D82D06F61206;
IL2CPP_EXTERN_C String_t* _stringLiteralBBC4BD37A426D68F16FC03A3F4AAC387168995BC;
IL2CPP_EXTERN_C String_t* _stringLiteralBE5B59D30F0D33E2F3D6284AAA2E1E227661DC08;
IL2CPP_EXTERN_C String_t* _stringLiteralBE862036DA47632F04AD94833A9CB9CC121765B5;
IL2CPP_EXTERN_C String_t* _stringLiteralC05DD95A56B355AAD74E9CE147B236E03FF8905E;
IL2CPP_EXTERN_C String_t* _stringLiteralC18C9BB6DF0D5C60CE5A5D2D3D6111BEB6F8CCEB;
IL2CPP_EXTERN_C String_t* _stringLiteralC2E0F578E57F229F6AA99FF855A860FD55B2DBC8;
IL2CPP_EXTERN_C String_t* _stringLiteralC314CFCCFC2227C58A275C19171300597A034F25;
IL2CPP_EXTERN_C String_t* _stringLiteralC5D182FFDA1DDD64CBD89F5F59569AADDAD731F3;
IL2CPP_EXTERN_C String_t* _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677;
IL2CPP_EXTERN_C String_t* _stringLiteralC6370F4D10E7342974C38CE91A5C8121AA774FD8;
IL2CPP_EXTERN_C String_t* _stringLiteralC68DC3872E7EB1BBA4CCE5012FCB2352A90E5572;
IL2CPP_EXTERN_C String_t* _stringLiteralC98D2B8D58BCA5B86E2100FBE8FE46701D193B8F;
IL2CPP_EXTERN_C String_t* _stringLiteralCA80D97E823D02887E6B0876376D067564152C0B;
IL2CPP_EXTERN_C String_t* _stringLiteralCC5A4102A5DDF34A7044AFF9259491C106ED8FB6;
IL2CPP_EXTERN_C String_t* _stringLiteralCC624D1FAF7A8A629CE51F4FE3FFB1FBA27EDF86;
IL2CPP_EXTERN_C String_t* _stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F;
IL2CPP_EXTERN_C String_t* _stringLiteralD1456E1DC2F4BFD98609407C3075CAA740B0E74E;
IL2CPP_EXTERN_C String_t* _stringLiteralD287833BBB7D5D15C278205064EAFF8ECF8A16AA;
IL2CPP_EXTERN_C String_t* _stringLiteralD4E42EF2513EC8A2FD0A32ECA2B740EDC1D77361;
IL2CPP_EXTERN_C String_t* _stringLiteralD64DE515DE159C401BB82652225D6BE22CDAD7A1;
IL2CPP_EXTERN_C String_t* _stringLiteralD7EDEFBFF1F5CFDDC93B1C9FE3C5FF7823573674;
IL2CPP_EXTERN_C String_t* _stringLiteralD83A084C77919D323023FA38BD9EC97511C0C3F1;
IL2CPP_EXTERN_C String_t* _stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1;
IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
IL2CPP_EXTERN_C String_t* _stringLiteralDB79AF2E944FFBCA9F3391D587BA7C84F000946C;
IL2CPP_EXTERN_C String_t* _stringLiteralE0F839E3D8CDD713B4981591207E50BF36EE21DA;
IL2CPP_EXTERN_C String_t* _stringLiteralE2C28F43F81C1F168F05093B64423B1E32B3DC9C;
IL2CPP_EXTERN_C String_t* _stringLiteralE31FBB002AD5481E70CB59BB178B49C5B9330F0E;
IL2CPP_EXTERN_C String_t* _stringLiteralE366688218C4FC506EA8269E62224B37209508EB;
IL2CPP_EXTERN_C String_t* _stringLiteralE3F0C6F0E0E0D3195915132B144512F6D8BA7E9E;
IL2CPP_EXTERN_C String_t* _stringLiteralE4FD92166270752CAF8CD83C4F787558916F3F4C;
IL2CPP_EXTERN_C String_t* _stringLiteralE772E9FF8194334D5FC28A946A7146ABB11B328A;
IL2CPP_EXTERN_C String_t* _stringLiteralE8258FE4B53775D781FF54E8010D50E54F753759;
IL2CPP_EXTERN_C String_t* _stringLiteralE8919B3EA19F272A32C34A085DDD7865989E28DF;
IL2CPP_EXTERN_C String_t* _stringLiteralE94FC0164ACA93BBD146E365EB6DAF1DE30A259D;
IL2CPP_EXTERN_C String_t* _stringLiteralEB2C138260B2C2055436518E83EFD5F1079EA7CC;
IL2CPP_EXTERN_C String_t* _stringLiteralEBF2718390EE473280CB1AC9DB1591547C00DF0E;
IL2CPP_EXTERN_C String_t* _stringLiteralECD5559D94A6212CC6C17C395E8CC06883EE1DD5;
IL2CPP_EXTERN_C String_t* _stringLiteralEF3AE2BA98885A01372DBA26E85EF15FB6B45537;
IL2CPP_EXTERN_C String_t* _stringLiteralEF420ABFDDBDA7B9EE665D85EF62E4A437554003;
IL2CPP_EXTERN_C String_t* _stringLiteralF0ACB78DD0CBEFD7DD81D25C5219DDB4067ECBD2;
IL2CPP_EXTERN_C String_t* _stringLiteralF0DF1BDF8BFAC0650E5B92D55ADF7C2719A06541;
IL2CPP_EXTERN_C String_t* _stringLiteralF26481DB2F9523FA4A1D9924BB28759AFDCDE050;
IL2CPP_EXTERN_C String_t* _stringLiteralF27E4C631EBEFA337EC21BE8552E169C9DED78A2;
IL2CPP_EXTERN_C String_t* _stringLiteralF2B21D2D13AD7FCD4A4D17AF946C159CD107EAC8;
IL2CPP_EXTERN_C String_t* _stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D;
IL2CPP_EXTERN_C String_t* _stringLiteralF4C926E25326963C2B7FEF2E308523C33CF6D9F0;
IL2CPP_EXTERN_C String_t* _stringLiteralF712C5F62331F2870DB319ED66CDF53B831F3CA1;
IL2CPP_EXTERN_C String_t* _stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024;
IL2CPP_EXTERN_C String_t* _stringLiteralFA28660998B4F40FD2D50064ABEABE168B3733BA;
IL2CPP_EXTERN_C String_t* _stringLiteralFAE55AFF6F18607FEDBE2F4C0C6BA4D4F219D504;
IL2CPP_EXTERN_C String_t* _stringLiteralFCA440D9A4F7E2D10772A726D6FB427BAE128D34;
IL2CPP_EXTERN_C String_t* _stringLiteralFDFFE28162CF41B1A4769465853369BC9103A870;
IL2CPP_EXTERN_C String_t* _stringLiteralFED9EBE0DFFF5E192C00377580AFB1A32E627E7A;
IL2CPP_EXTERN_C String_t* _stringLiteralFF1B24927A3EECD0984D30EA640A9B0CBAA6729C;
IL2CPP_EXTERN_C const RuntimeMethod* Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m89F7B056854DF715AA3E2B78EB84D5FA3878E474_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CCreateConnectionAsyncU3Ed__86_t2A570F4B60E471D570D3866403BE7034E2929A6E_m482497952BF8CA8BCBB356F2AB0CD3302A9A57DD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncVoidMethodBuilder_Start_TisU3CCreateConnectionAsyncU3Ed__86_t2A570F4B60E471D570D3866403BE7034E2929A6E_mB533C8375EAFF32F9CD221842EE38C58C343AC93_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Cookie_VerifySetDefaults_m5E440E1D11681168E64C83CA3ADB81B80603246C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Cookie_set_Port_mBF4BE6DCE6A229EE32A361BD8571CCB213AACB1B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Cookie_set_Version_m0610EA591E212AAD844B4742FC4204E3D0099AE9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EndPoint_Create_m09DA8D1A544D556AD0A1A08E3B0CBE9052615983_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EndPoint_Serialize_mB045A92E21967EF34B1D5A32EF4E645CC1871BA3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EndPoint_get_AddressFamily_m44AC2CD5C6868280BEBABF4090D3AFCA2E254537_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m699E34C337E17EB975FB980A66567C9A63EC1681_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m2177AB693CC65C0750BC64B79841B0949E04F4B2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mF378E129EAD0E8D26056E37C1A436D320BD0043D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpControlStream_AcceptCallback_m32AB9ACD09857CB071842343824B5896EFAB4631_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpControlStream_BuildCommandsList_mE94A3FF9361C3692177B493AA3E4A70B4F903B45_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpControlStream_ConnectCallback_mB51B71AC0FC2EB9DF9F868F0EC92AE8F760914DC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpControlStream_CreateFtpListenerSocket_mC7CAB6085D9ECF4C194F053CFC1AC34AFB8F323F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpControlStream_GetContentLengthFrom213Response_mC838EFD3A20DEA9A8DA867CF8496229CB076EB96_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpControlStream_GetPortCommandLine_mAA8762A087F108ABA5DE42D38AD916C9CFA03194_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpControlStream_GetPortV4_mED40942A0B437AFC658378BB5BFDFB21C0ADC1B5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpControlStream_GetPortV6_m45FC9306A5E97C22B2778C2FAD6EFF882C98870D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpControlStream_PipelineCallback_m052E0525E918223582C672D47D8C17E46F7A2E3C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpControlStream_QueueOrCreateDataConection_m8B8FFECC845071AF8089070B306555E05701DBB4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpControlStream_QueueOrCreateFtpDataStream_m37AFE4C4DA7DB36D34170261D3AC39D65C2A4AC0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpControlStream_SSLHandshakeCallback_mD624AD2E7B323CCD637813D9B982316C4778ADD1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpControlStream_TryUpdateResponseUri_mA4514F22354FA2F4BEB3D73F24A7DEB5240E213F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpDataStream_AsyncReadCallback_m8A05268C76664CF1F38C1901EB05327A33FF8A9B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpDataStream_BeginRead_m5164D1F47EBDF439C369ECF12776AFF3A721FAAA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpDataStream_BeginWrite_m5C92FBF9A19E02023A289311E0BBD2647F4D64FF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpDataStream_CheckError_mC26104FB2C3DEC62A33E10405B121830A3AEA959_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpDataStream_Read_m80A22ED0497EEACE48277E18ED0E9B4190542D44_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpDataStream_Seek_m14D6F555BAE0811E39C12619CED96986472CABC7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpDataStream_System_Net_ICloseEx_CloseEx_m8518CB2A9A5EB9C3EB5DF8BDD7190CF67EA12D4E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpDataStream_Write_m5B917E5BAB484222765206736846B9816A835183_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpMethodInfo_GetMethodInfo_mE5CB9773AE2ECF74C9C39DCCB562B616767BE39B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpWebRequest_Abort_m692F58C2CAE79DF9BE85C883804FBDF8ED3ADF8E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpWebRequest_AsyncRequestCallback_m16A0D27F8F25B02C06FB35441D0FFC04B53B4EDF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpWebRequest_BeginGetResponse_mEB30D254D530BA29140C679AA1BDE6F8D472DEBF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpWebRequest_CreateConnection_m93965D472DEDD396B49FFEAFACE7F24B3E6E29B9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpWebRequest_EndGetResponse_mB67129902D8A7767D96CCECB5A1B5B25F8C1EBB8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpWebRequest_GetResponse_m2E40BD4F0CCC5D9B8B6D5C20509CE9AC5EE2FFFA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpWebRequest_SetException_m273ED89B507A23F8C9B7F9B752EC32CAD27E59A8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpWebRequest_SubmitRequest_mD0DDB9A82DCD6D83C0BD14771B8C3DCB59436B1C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpWebRequest_SyncRequestCallback_mBA4F7551E61FCC70A683BB0275E640ED308A1711_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpWebRequest_TimedSubmitRequestHelper_m1BAC9B293CE60F33C0BE9B556AC516F249526AE5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpWebRequest_TimerCallback_m4E2E74539A7C5060AEC4AC31826EE40F956FF8F4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpWebRequest__ctor_mE322968A58EF47DADD907F88EAA7FB4E00543B77_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpWebRequest_get_UseDefaultCredentials_mAD856EDBDCF69FB4ABDE74722A1D446C59000A86_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpWebRequest_set_CachePolicy_m9D41AA5795A910761DF6943E06A629CFFFD1ACA0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpWebRequest_set_Credentials_m6BD777D7820D5BBA97E49B2A480420AF2DD79B9A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpWebRequest_set_Method_mC770F8F66E7CEE6C513DDE38D97D50CC7E5C0560_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FtpWebRequest_set_Proxy_mA142CDA01AA7953FF40A1448B98BFF8845D973BF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* HeaderInfoTable_ParseMultiValue_mCACE161A48EB4BC9DD4519BF3EC02CC83DD6C85C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* HeaderInfoTable_ParseSingleValue_m217B3A467422A5B17876254E9984F2C30E178F9A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* LazyAsyncResult_LazilyCreateEvent_mC82FEA0526DA66D9F1A9B03BE1858D1C181E252F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* LazyAsyncResult_ProtectedInvokeCallback_mAB31EFC1A9671BA58BB38F59F381EAFE9C564410_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* LazyAsyncResult_WorkerThreadComplete_m50589CB1937E4BA7FF703482ECC24706F0E1A1BF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* LazyInitializer_EnsureInitialized_TisX509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE_m8C2BA161D5BB95A3574BCC8A822D91DAE99D831D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* LinkedListNode_1_get_Next_m9AD84867FD812771D97DE4B3EA139B9FFF6AAD02_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* LinkedListNode_1_get_Value_m70875C72E64ECAC678D5E5DC7F5407EDD711E74F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* LinkedList_1_AddLast_mC80812585536C37E00934D36C6FD07932437B27F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* LinkedList_1_AddLast_mFC009DB4A45FE723FD7912EBCF9D2EE9E3C73F6A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* LinkedList_1_Remove_m46FC492751187095D1D203309443E26B22D52473_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* LinkedList_1__ctor_mCCAB5F5D186AA57BE80E0C3B2DBA9392361B83B6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* LinkedList_1_get_Count_m042F42A43FB095ABBEF2D06601BA8F42F1C18F02_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* LinkedList_1_get_First_m5B5A0C7B81CBD5C40FA468D902307348D34EC0D4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m655BAF14F34AC465AE933AC35F8441AA5A6D9B1C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m286EF5D0B3E9D36E9D972D64A0BFCECBCF7B2B7E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_ToArray_m65479FB75A5FE539EA1A0D6681172717D23CEAAA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m4DCCB8CBFA1558C1187D5E5FADF609094C917012_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m69C39631522BEA9DD1F2069A0D201536156AD264_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MemoryExtensions_AsSpan_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m107A36BC03551DA3FFD8816519D6F675279D5FB6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SocketAddress_GetIPAddress_m9F349596DE4F881222A989059162AF5880FBAA0D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SocketAddress__ctor_mD56F67A8077F542F2DA0ABAF693EE192F5910ECB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SocketAddress_get_Item_mFF97A6A1AF0D8AB36C662282C477B5DBAFD10FBD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TaskFactory_1_FromAsync_m59E275F7DFF2D16C3BF4E79DFD862A2ADB4A55B2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Task_1_get_Factory_m16AF14FEB63383FDA760799AF866A5241DF7BA76_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Task_Run_TisWebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682_m45DB463CCE36493A6DC9101000833CC298826277_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TimerNode_Fire_mAB8C15270DBD595C98435414C10C82426BBB43F1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TimerThread_CreateQueue_mEE7746808FCC711657A10D38DAC9FC01B93B68D8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TimerThread_GetOrCreateQueue_m461C7A3FC2CFAC20EF0C9EBEEF29D3C73BFF52F2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TimerThread_OnDomainUnload_m789618CB693C29737319DBD4437199D0346FAF60_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TimerThread_ThreadProc_m089CDAA1EF69AA667A140FC6B6DFCA8501376FD1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3Cget_ClientCertificatesU3Eb__114_0_m40805B8FBE35ACD91B1128B347050725AEF2B700_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass31_0_U3CPipelineCallbackU3Eb__0_mFA6F1908DB89530BFD35B6934E01C14A5B45112D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass79_0_U3CGetResponseAsyncU3Eb__1_mD03363C04D913541A4A1E21614CE2D60C92E2AA0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* WebExceptionMapping_GetWebStatusString_mC6F3D28D6DCDD3E8674CBDA5CA684DF603DBCF69_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* WebHeaderCollection_Add_m3E612375F241E3383BA9EC01972C5A5FCD9384CF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* WebHeaderCollection_Add_m9A3740A95FB8359CB0B56367D2E19E8C3CD77EDC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* WebHeaderCollection_CheckBadChars_m1F7BCD4BF0DC01AF8C1378AD02862D9900B67D71_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* WebHeaderCollection_GetAsString_m7E801872DAF279F8228F57FF2EA5336CD29F2E4F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* WebHeaderCollection_Remove_m93990EF3A5F1D4F6D67232583029BB26483C7F67_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* WebHeaderCollection_Remove_mD3D0E549867A561B0E71C7B4DC9B532208C60A6E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* WebHeaderCollection_SetInternal_m3E861ED032C85112F8FD4B715C6505508BD78679_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* WebHeaderCollection_Set_mD28BC00E4A0787295183E92F630DAAF9AD435D47_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* WebHeaderCollection_ThrowOnRestrictedHeader_mFBE0E21167D9EB5485BD3DC18B505FEC9BF6CF51_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* WebRequest_Abort_mC22268D6B6812F405039FB6F34208E726EF62A56_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* WebRequest_BeginGetResponse_mBED5D8A0E2BDB198696F3117A2355564F6AA0299_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* WebRequest_Create_m18D598C169B53797E9B26A710442CAF2D786B04A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* WebRequest_Create_m9DD92CB71F55DA62C44CDCB1797D1B4241E753DC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* WebRequest_Create_mD11C7BB286D0C12A92911F717AC8D2CAF9027611_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* WebRequest_EndGetResponse_mBE7182580E7B9B64E560EDC8C7A2A68F385C4833_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* WebRequest_GetResponse_mF6F9D792949BD9CDA3AC8DC9635C6D31913D519B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* WebRequest_U3CGetResponseAsyncU3Eb__79_0_m635D73DB9E3CEEEF92D50FC5AA0A5D0CCEA73E69_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* WebRequest_get_ContentLength_m1BF638AB4F757E2FAB7F765B63FD743BF0FCBF6B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* WebRequest_get_Credentials_m47790A75D2014E80AB4F83A91BEBFED52785F500_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* WebRequest_get_Headers_m26A0D1239097F7AA805B4A8D2CF6FA5B1DC56932_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* WebRequest_get_Method_mFAE2E9E052F7031B81B2C5F05FBAF0AB1167A444_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* WebRequest_get_Proxy_m251BB31AEFFC7CFF8B760FE3AEAF2910743C092D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* WebRequest_get_RequestUri_m91BE50BB8D64C8FD5D9B31A0F707EB066A64097A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* WebRequest_get_Timeout_mB2F6910163AF508879886ABE5C9824ABA6D1D81C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* WebRequest_get_UseDefaultCredentials_m81F5CC1019777DFC87DDE33FEA663CCED0F3C0F9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* WebRequest_set_Credentials_mBD3AD4311A053F6FD323344BE1A0F1B17868428B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* WebRequest_set_Method_mC0B76EDF551FA04D66ABF5F52D0725787EECD31C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* WebRequest_set_Proxy_mFDB69D2A0469AD21FC1A918EEB5515272D45F796_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* WebResponse_GetResponseStream_m90039E34DC39DA2764E4A465C47D7C8CFD553F88_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* WebResponse_get_Headers_mEC440184E979C51FD1111A6F1A65D956C20DBFED_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* WebResponse_get_ResponseUri_mCCB7A9F1A892AA99BA86A6913ADDB511C26D403C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeType* PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463_0_0_0_var;
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_com;
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_pinvoke;
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com;
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke;
struct Delegate_t_marshaled_com;
struct Delegate_t_marshaled_pinvoke;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
struct FtpMethodInfoU5BU5D_tED308D4DC0FECB991D43BBF85B5B7345561B267B;
struct HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF;
struct IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D;
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
struct SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913;
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
struct WaitHandleU5BU5D_t85D0945086BF1BF6008422B3DD937ECEC35A8108;
struct PipelineEntryU5BU5D_tF96DE809CEDE1A15F1D069F027582F92EEE04CE4;
struct RfcCharU5BU5D_t8D79A380C46398F9D1F442FDEE0A27F77B7D1B4C;
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.EmptyArray`1<System.Byte>
struct EmptyArray_1_t7187E746F328254739F076CFBCAABB28D4B4554C : public RuntimeObject
{
};
struct EmptyArray_1_t7187E746F328254739F076CFBCAABB28D4B4554C_StaticFields
{
// T[] System.EmptyArray`1::Value
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___Value_0;
};
// System.Collections.Generic.LinkedListNode`1<System.Object>
struct LinkedListNode_1_t293BB098D459DDAE6A26977D0731A997186D1D4C : public RuntimeObject
{
// System.Collections.Generic.LinkedList`1<T> System.Collections.Generic.LinkedListNode`1::list
LinkedList_1_t49DC5CF34D4D642E6417F1245CDEC26A32F60C76* ___list_0;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1::next
LinkedListNode_1_t293BB098D459DDAE6A26977D0731A997186D1D4C* ___next_1;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1::prev
LinkedListNode_1_t293BB098D459DDAE6A26977D0731A997186D1D4C* ___prev_2;
// T System.Collections.Generic.LinkedListNode`1::item
RuntimeObject* ___item_3;
};
// System.Collections.Generic.LinkedListNode`1<System.WeakReference>
struct LinkedListNode_1_t8B8D12143248A5FB82DF08BEFD95EF4C426E67FA : public RuntimeObject
{
// System.Collections.Generic.LinkedList`1<T> System.Collections.Generic.LinkedListNode`1::list
LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2* ___list_0;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1::next
LinkedListNode_1_t8B8D12143248A5FB82DF08BEFD95EF4C426E67FA* ___next_1;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1::prev
LinkedListNode_1_t8B8D12143248A5FB82DF08BEFD95EF4C426E67FA* ___prev_2;
// T System.Collections.Generic.LinkedListNode`1::item
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* ___item_3;
};
// System.Collections.Generic.LinkedList`1<System.Object>
struct LinkedList_1_t49DC5CF34D4D642E6417F1245CDEC26A32F60C76 : public RuntimeObject
{
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1::head
LinkedListNode_1_t293BB098D459DDAE6A26977D0731A997186D1D4C* ___head_0;
// System.Int32 System.Collections.Generic.LinkedList`1::count
int32_t ___count_1;
// System.Int32 System.Collections.Generic.LinkedList`1::version
int32_t ___version_2;
// System.Object System.Collections.Generic.LinkedList`1::_syncRoot
RuntimeObject* ____syncRoot_3;
// System.Runtime.Serialization.SerializationInfo System.Collections.Generic.LinkedList`1::_siInfo
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ____siInfo_4;
};
// System.Collections.Generic.LinkedList`1<System.WeakReference>
struct LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2 : public RuntimeObject
{
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1::head
LinkedListNode_1_t8B8D12143248A5FB82DF08BEFD95EF4C426E67FA* ___head_0;
// System.Int32 System.Collections.Generic.LinkedList`1::count
int32_t ___count_1;
// System.Int32 System.Collections.Generic.LinkedList`1::version
int32_t ___version_2;
// System.Object System.Collections.Generic.LinkedList`1::_syncRoot
RuntimeObject* ____syncRoot_3;
// System.Runtime.Serialization.SerializationInfo System.Collections.Generic.LinkedList`1::_siInfo
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ____siInfo_4;
};
// System.Collections.Generic.List`1<System.Net.IPAddress>
struct List_1_t7327FFE7269D37546789F1E11A915BE2192559DA : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_t7327FFE7269D37546789F1E11A915BE2192559DA_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<System.Int32>
struct List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<System.Object>
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___s_emptyArray_5;
};
struct Il2CppArrayBounds;
// System.Collections.ArrayList
struct ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A : public RuntimeObject
{
// System.Object[] System.Collections.ArrayList::_items
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items_0;
// System.Int32 System.Collections.ArrayList::_size
int32_t ____size_1;
// System.Int32 System.Collections.ArrayList::_version
int32_t ____version_2;
// System.Object System.Collections.ArrayList::_syncRoot
RuntimeObject* ____syncRoot_3;
};
// System.Net.Authorization
struct Authorization_t7F109103AF7366A418844BF604458413434F60D4 : public RuntimeObject
{
// 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;
};
// System.Reflection.Binder
struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235 : public RuntimeObject
{
};
// System.Net.BufferOffsetSize
struct BufferOffsetSize_t46A7671E4C06281BB2D4C4AC98A6263715BDAC71 : public RuntimeObject
{
// System.Byte[] System.Net.BufferOffsetSize::Buffer
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___Buffer_0;
// System.Int32 System.Net.BufferOffsetSize::Offset
int32_t ___Offset_1;
// System.Int32 System.Net.BufferOffsetSize::Size
int32_t ___Size_2;
};
// System.Net.CaseInsensitiveAscii
struct CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C : public RuntimeObject
{
};
struct CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_StaticFields
{
// System.Net.CaseInsensitiveAscii System.Net.CaseInsensitiveAscii::StaticInstance
CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C* ___StaticInstance_0;
// System.Byte[] System.Net.CaseInsensitiveAscii::AsciiToLower
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___AsciiToLower_1;
};
// System.Security.Claims.ClaimsIdentity
struct ClaimsIdentity_tF926D758CB543B2C0FC3D0620E1F9BC597889206 : public RuntimeObject
{
// System.Byte[] System.Security.Claims.ClaimsIdentity::m_userSerializationData
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___m_userSerializationData_0;
// System.Collections.Generic.List`1<System.Security.Claims.Claim> System.Security.Claims.ClaimsIdentity::m_instanceClaims
List_1_tE2156FEC3BC446DDE7EEAA73B48272439B783113* ___m_instanceClaims_1;
// System.Collections.ObjectModel.Collection`1<System.Collections.Generic.IEnumerable`1<System.Security.Claims.Claim>> System.Security.Claims.ClaimsIdentity::m_externalClaims
Collection_1_t96B79EEBF0D089ECAF287214CCC0E4A426AFF50F* ___m_externalClaims_2;
// System.String System.Security.Claims.ClaimsIdentity::m_nameType
String_t* ___m_nameType_3;
// System.String System.Security.Claims.ClaimsIdentity::m_roleType
String_t* ___m_roleType_4;
// System.String System.Security.Claims.ClaimsIdentity::m_version
String_t* ___m_version_5;
// System.Security.Claims.ClaimsIdentity System.Security.Claims.ClaimsIdentity::m_actor
ClaimsIdentity_tF926D758CB543B2C0FC3D0620E1F9BC597889206* ___m_actor_6;
// System.String System.Security.Claims.ClaimsIdentity::m_authenticationType
String_t* ___m_authenticationType_7;
// System.Object System.Security.Claims.ClaimsIdentity::m_bootstrapContext
RuntimeObject* ___m_bootstrapContext_8;
// System.String System.Security.Claims.ClaimsIdentity::m_label
String_t* ___m_label_9;
// System.String System.Security.Claims.ClaimsIdentity::m_serializedNameType
String_t* ___m_serializedNameType_10;
// System.String System.Security.Claims.ClaimsIdentity::m_serializedRoleType
String_t* ___m_serializedRoleType_11;
// System.String System.Security.Claims.ClaimsIdentity::m_serializedClaims
String_t* ___m_serializedClaims_12;
};
// System.Collections.CollectionBase
struct CollectionBase_t44F966CC555C87F2815D668FB4586526E1C2383F : public RuntimeObject
{
// System.Collections.ArrayList System.Collections.CollectionBase::_list
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ____list_0;
};
// System.Net.Comparer
struct Comparer_t142F6C5E53FD6C38EFE484B87752469CEEEFD7AD : public RuntimeObject
{
};
// System.Net.CredentialCache
struct CredentialCache_t159C8B3846409D6F2D2C9A8C821EC72B1F4539EF : public RuntimeObject
{
};
// System.Runtime.ConstrainedExecution.CriticalFinalizerObject
struct CriticalFinalizerObject_t1DCAB623CAEA6529A96F5F3EDE3C7048A6E313C9 : public RuntimeObject
{
};
// System.Globalization.CultureInfo
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0 : public RuntimeObject
{
// System.Boolean System.Globalization.CultureInfo::m_isReadOnly
bool ___m_isReadOnly_3;
// System.Int32 System.Globalization.CultureInfo::cultureID
int32_t ___cultureID_4;
// System.Int32 System.Globalization.CultureInfo::parent_lcid
int32_t ___parent_lcid_5;
// System.Int32 System.Globalization.CultureInfo::datetime_index
int32_t ___datetime_index_6;
// System.Int32 System.Globalization.CultureInfo::number_index
int32_t ___number_index_7;
// System.Int32 System.Globalization.CultureInfo::default_calendar_type
int32_t ___default_calendar_type_8;
// System.Boolean System.Globalization.CultureInfo::m_useUserOverride
bool ___m_useUserOverride_9;
// System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::numInfo
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10;
// System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::dateTimeInfo
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11;
// System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::textInfo
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo_12;
// System.String System.Globalization.CultureInfo::m_name
String_t* ___m_name_13;
// System.String System.Globalization.CultureInfo::englishname
String_t* ___englishname_14;
// System.String System.Globalization.CultureInfo::nativename
String_t* ___nativename_15;
// System.String System.Globalization.CultureInfo::iso3lang
String_t* ___iso3lang_16;
// System.String System.Globalization.CultureInfo::iso2lang
String_t* ___iso2lang_17;
// System.String System.Globalization.CultureInfo::win3lang
String_t* ___win3lang_18;
// System.String System.Globalization.CultureInfo::territory
String_t* ___territory_19;
// System.String[] System.Globalization.CultureInfo::native_calendar_names
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___native_calendar_names_20;
// System.Globalization.CompareInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::compareInfo
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo_21;
// System.Void* System.Globalization.CultureInfo::textinfo_data
void* ___textinfo_data_22;
// System.Int32 System.Globalization.CultureInfo::m_dataItem
int32_t ___m_dataItem_23;
// System.Globalization.Calendar System.Globalization.CultureInfo::calendar
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::parent_culture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___parent_culture_25;
// System.Boolean System.Globalization.CultureInfo::constructed
bool ___constructed_26;
// System.Byte[] System.Globalization.CultureInfo::cached_serialized_form
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___cached_serialized_form_27;
// System.Globalization.CultureData System.Globalization.CultureInfo::m_cultureData
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D* ___m_cultureData_28;
// System.Boolean System.Globalization.CultureInfo::m_isInherited
bool ___m_isInherited_29;
};
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_StaticFields
{
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::invariant_culture_info
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___invariant_culture_info_0;
// System.Object System.Globalization.CultureInfo::shared_table_lock
RuntimeObject* ___shared_table_lock_1;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::default_current_culture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___default_current_culture_2;
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentUICulture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_DefaultThreadCurrentUICulture_34;
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentCulture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_DefaultThreadCurrentCulture_35;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_number
Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3* ___shared_by_number_36;
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_name
Dictionary_2_tE1603CE612C16451D1E56FF4D4859D4FE4087C28* ___shared_by_name_37;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::s_UserPreferredCultureInfoInAppX
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_UserPreferredCultureInfoInAppX_38;
// System.Boolean System.Globalization.CultureInfo::IsTaiwanSku
bool ___IsTaiwanSku_39;
};
// Native definition for P/Invoke marshalling of System.Globalization.CultureInfo
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke
{
int32_t ___m_isReadOnly_3;
int32_t ___cultureID_4;
int32_t ___parent_lcid_5;
int32_t ___datetime_index_6;
int32_t ___number_index_7;
int32_t ___default_calendar_type_8;
int32_t ___m_useUserOverride_9;
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10;
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11;
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo_12;
char* ___m_name_13;
char* ___englishname_14;
char* ___nativename_15;
char* ___iso3lang_16;
char* ___iso2lang_17;
char* ___win3lang_18;
char* ___territory_19;
char** ___native_calendar_names_20;
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo_21;
void* ___textinfo_data_22;
int32_t ___m_dataItem_23;
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke* ___parent_culture_25;
int32_t ___constructed_26;
Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27;
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_pinvoke* ___m_cultureData_28;
int32_t ___m_isInherited_29;
};
// Native definition for COM marshalling of System.Globalization.CultureInfo
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com
{
int32_t ___m_isReadOnly_3;
int32_t ___cultureID_4;
int32_t ___parent_lcid_5;
int32_t ___datetime_index_6;
int32_t ___number_index_7;
int32_t ___default_calendar_type_8;
int32_t ___m_useUserOverride_9;
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10;
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11;
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo_12;
Il2CppChar* ___m_name_13;
Il2CppChar* ___englishname_14;
Il2CppChar* ___nativename_15;
Il2CppChar* ___iso3lang_16;
Il2CppChar* ___iso2lang_17;
Il2CppChar* ___win3lang_18;
Il2CppChar* ___territory_19;
Il2CppChar** ___native_calendar_names_20;
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo_21;
void* ___textinfo_data_22;
int32_t ___m_dataItem_23;
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com* ___parent_culture_25;
int32_t ___constructed_26;
Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27;
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_com* ___m_cultureData_28;
int32_t ___m_isInherited_29;
};
// System.DBNull
struct DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC : public RuntimeObject
{
};
struct DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields
{
// System.DBNull System.DBNull::Value
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* ___Value_0;
};
// System.Net.Configuration.DefaultProxySectionInternal
struct DefaultProxySectionInternal_t660B515577A92AE03B159B75AC172E4E34466EC2 : public RuntimeObject
{
// System.Net.IWebProxy System.Net.Configuration.DefaultProxySectionInternal::webProxy
RuntimeObject* ___webProxy_0;
};
struct DefaultProxySectionInternal_t660B515577A92AE03B159B75AC172E4E34466EC2_StaticFields
{
// System.Object System.Net.Configuration.DefaultProxySectionInternal::classSyncObject
RuntimeObject* ___classSyncObject_1;
};
// System.Text.Encoding
struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095 : public RuntimeObject
{
// System.Int32 System.Text.Encoding::m_codePage
int32_t ___m_codePage_9;
// System.Globalization.CodePageDataItem System.Text.Encoding::dataItem
CodePageDataItem_t52460FA30AE37F4F26ACB81055E58002262F19F2* ___dataItem_10;
// System.Boolean System.Text.Encoding::m_deserializedFromEverett
bool ___m_deserializedFromEverett_11;
// System.Boolean System.Text.Encoding::m_isReadOnly
bool ___m_isReadOnly_12;
// System.Text.EncoderFallback System.Text.Encoding::encoderFallback
EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293* ___encoderFallback_13;
// System.Text.DecoderFallback System.Text.Encoding::decoderFallback
DecoderFallback_t7324102215E4ED41EC065C02EB501CB0BC23CD90* ___decoderFallback_14;
};
struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095_StaticFields
{
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::defaultEncoding
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___defaultEncoding_0;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::unicodeEncoding
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___unicodeEncoding_1;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::bigEndianUnicode
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___bigEndianUnicode_2;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf7Encoding
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___utf7Encoding_3;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8Encoding
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___utf8Encoding_4;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf32Encoding
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___utf32Encoding_5;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::asciiEncoding
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___asciiEncoding_6;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::latin1Encoding
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___latin1Encoding_7;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Text.Encoding> modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::encodings
Dictionary_2_t87EDE08B2E48F793A22DE50D6B3CC2E7EBB2DB54* ___encodings_8;
// System.Object System.Text.Encoding::s_InternalSyncObject
RuntimeObject* ___s_InternalSyncObject_15;
};
// System.Net.EndPoint
struct EndPoint_t6233F4E2EB9F0F2D36E187F12BE050E6D8B73564 : public RuntimeObject
{
};
// System.EventArgs
struct EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377 : public RuntimeObject
{
};
struct EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_StaticFields
{
// System.EventArgs System.EventArgs::Empty
EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* ___Empty_0;
};
// System.Net.ExceptionHelper
struct ExceptionHelper_tA56EC6D8B43DD73CD9B1A7C0E6A22C0F0723260C : public RuntimeObject
{
};
// System.Net.FileWebRequestCreator
struct FileWebRequestCreator_tC059E97F3753B58929F60C8531EADB9683F4111D : public RuntimeObject
{
};
// System.FormattableString
struct FormattableString_t4D7D221057108596F60CCCC83532037E2399BE0D : public RuntimeObject
{
};
// System.Net.FtpWebRequestCreator
struct FtpWebRequestCreator_tC389DCEC82487414E888BDCCE1922A5A10937620 : public RuntimeObject
{
};
// System.Net.HeaderInfo
struct HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3 : public RuntimeObject
{
// 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_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* ___Parser_2;
// System.String System.Net.HeaderInfo::HeaderName
String_t* ___HeaderName_3;
// System.Boolean System.Net.HeaderInfo::AllowMultiValues
bool ___AllowMultiValues_4;
};
// System.Net.HeaderInfoTable
struct HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F : public RuntimeObject
{
};
struct HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields
{
// System.Collections.Hashtable System.Net.HeaderInfoTable::HeaderHashTable
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___HeaderHashTable_0;
// System.Net.HeaderInfo System.Net.HeaderInfoTable::UnknownHeaderInfo
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* ___UnknownHeaderInfo_1;
// System.Net.HeaderParser System.Net.HeaderInfoTable::SingleParser
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* ___SingleParser_2;
// System.Net.HeaderParser System.Net.HeaderInfoTable::MultiParser
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* ___MultiParser_3;
};
// System.Net.HttpRequestCreator
struct HttpRequestCreator_tDA975F6F61D732123CEE4E5AF40042311D3EF7E0 : public RuntimeObject
{
};
// System.Net.IPAddress
struct IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484 : public RuntimeObject
{
// System.UInt32 System.Net.IPAddress::_addressOrScopeId
uint32_t ____addressOrScopeId_8;
// System.UInt16[] System.Net.IPAddress::_numbers
UInt16U5BU5D_tEB7C42D811D999D2AA815BADC3FCCDD9C67B3F83* ____numbers_9;
// System.String System.Net.IPAddress::_toString
String_t* ____toString_10;
// System.Int32 System.Net.IPAddress::_hashCode
int32_t ____hashCode_11;
};
struct IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484_StaticFields
{
// System.Net.IPAddress System.Net.IPAddress::Any
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* ___Any_0;
// System.Net.IPAddress System.Net.IPAddress::Loopback
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* ___Loopback_1;
// System.Net.IPAddress System.Net.IPAddress::Broadcast
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* ___Broadcast_2;
// System.Net.IPAddress System.Net.IPAddress::None
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* ___None_3;
// System.Net.IPAddress System.Net.IPAddress::IPv6Any
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* ___IPv6Any_5;
// System.Net.IPAddress System.Net.IPAddress::IPv6Loopback
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* ___IPv6Loopback_6;
// System.Net.IPAddress System.Net.IPAddress::IPv6None
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* ___IPv6None_7;
};
// System.Net.IPHostEntry
struct IPHostEntry_tAAAEB0F40DB9F28BE601B5FE7DA1D76191C94490 : public RuntimeObject
{
// System.String System.Net.IPHostEntry::hostName
String_t* ___hostName_0;
// System.String[] System.Net.IPHostEntry::aliases
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___aliases_1;
// System.Net.IPAddress[] System.Net.IPHostEntry::addressList
IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D* ___addressList_2;
// System.Boolean System.Net.IPHostEntry::isTrustedHost
bool ___isTrustedHost_3;
};
// System.Net.LazyAsyncResult
struct LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B : public RuntimeObject
{
// 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_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___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_EndCalled
bool ___m_EndCalled_6;
// System.Boolean System.Net.LazyAsyncResult::m_UserEvent
bool ___m_UserEvent_7;
// System.Object System.Net.LazyAsyncResult::m_Event
RuntimeObject* ___m_Event_8;
};
struct LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B_ThreadStaticFields
{
// System.Net.LazyAsyncResult/ThreadContext System.Net.LazyAsyncResult::t_ThreadContext
ThreadContext_t4D66E3F5FE5863AF4D086D6CE7CAFF02382B7650* ___t_ThreadContext_0;
};
// System.MarshalByRefObject
struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE : public RuntimeObject
{
// System.Object System.MarshalByRefObject::_identity
RuntimeObject* ____identity_0;
};
// Native definition for P/Invoke marshalling of System.MarshalByRefObject
struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_pinvoke
{
Il2CppIUnknown* ____identity_0;
};
// Native definition for COM marshalling of System.MarshalByRefObject
struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_com
{
Il2CppIUnknown* ____identity_0;
};
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
};
// System.Collections.Specialized.NameObjectCollectionBase
struct NameObjectCollectionBase_tB6400DF2FA3B64660D79586B79016B4A0BA645FC : public RuntimeObject
{
// System.Boolean System.Collections.Specialized.NameObjectCollectionBase::_readOnly
bool ____readOnly_0;
// System.Collections.ArrayList System.Collections.Specialized.NameObjectCollectionBase::_entriesArray
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ____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_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ____entriesTable_3;
// System.Collections.Specialized.NameObjectCollectionBase/NameObjectEntry modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Specialized.NameObjectCollectionBase::_nullKeyEntry
NameObjectEntry_t58A8B38FC7A6ABE5C83153B6C3F2696F88E7A9A2* ____nullKeyEntry_4;
// System.Runtime.Serialization.SerializationInfo System.Collections.Specialized.NameObjectCollectionBase::_serializationInfo
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ____serializationInfo_5;
// System.Int32 System.Collections.Specialized.NameObjectCollectionBase::_version
int32_t ____version_6;
// System.Object System.Collections.Specialized.NameObjectCollectionBase::_syncRoot
RuntimeObject* ____syncRoot_7;
};
struct NameObjectCollectionBase_tB6400DF2FA3B64660D79586B79016B4A0BA645FC_StaticFields
{
// System.StringComparer System.Collections.Specialized.NameObjectCollectionBase::defaultComparer
StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06* ___defaultComparer_8;
};
// System.Net.NclUtilities
struct NclUtilities_t631EDB0996FE8DEB88C069D5A050B9809E23DA8D : public RuntimeObject
{
};
struct NclUtilities_t631EDB0996FE8DEB88C069D5A050B9809E23DA8D_StaticFields
{
// System.Net.IPAddress[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Net.NclUtilities::_LocalAddresses
IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D* ____LocalAddresses_0;
// System.Object System.Net.NclUtilities::_LocalAddressesLock
RuntimeObject* ____LocalAddressesLock_1;
// System.String System.Net.NclUtilities::_LocalDomainName
String_t* ____LocalDomainName_2;
};
// System.Net.NetRes
struct NetRes_t3E4F59CE82215B9764B800D5D432641D49FD4A27 : public RuntimeObject
{
};
// System.Net.NetworkCredential
struct NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313 : public RuntimeObject
{
// 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_t6FBEB334D455CA90093BD446BBEBA47FE5B20C6C* ___m_password_2;
};
// System.Net.Cache.RequestCache
struct RequestCache_tE6EF47B39906B93E4777BC33B850BE7F9D4E3F9C : public RuntimeObject
{
};
struct RequestCache_tE6EF47B39906B93E4777BC33B850BE7F9D4E3F9C_StaticFields
{
// System.Char[] System.Net.Cache.RequestCache::LineSplits
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___LineSplits_0;
};
// System.Net.Cache.RequestCacheBinding
struct RequestCacheBinding_t18F3F4FF8D0F77E86C2C666CEE7FD48A80C042EE : public RuntimeObject
{
// System.Net.Cache.RequestCache System.Net.Cache.RequestCacheBinding::m_RequestCache
RequestCache_tE6EF47B39906B93E4777BC33B850BE7F9D4E3F9C* ___m_RequestCache_0;
// System.Net.Cache.RequestCacheValidator System.Net.Cache.RequestCacheBinding::m_CacheValidator
RequestCacheValidator_t21CD031336DECDDBA28550AE4353AA82CC37E301* ___m_CacheValidator_1;
};
// System.Net.Cache.RequestCacheProtocol
struct RequestCacheProtocol_t43C1AC170194874A0C0B0D3B8BE9EABFB613DF85 : public RuntimeObject
{
};
// System.Net.Cache.RequestCacheValidator
struct RequestCacheValidator_t21CD031336DECDDBA28550AE4353AA82CC37E301 : public RuntimeObject
{
};
// System.Net.ResponseDescription
struct ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7 : public RuntimeObject
{
// System.Boolean System.Net.ResponseDescription::Multiline
bool ___Multiline_0;
// System.Int32 System.Net.ResponseDescription::Status
int32_t ___Status_1;
// System.String System.Net.ResponseDescription::StatusDescription
String_t* ___StatusDescription_2;
// System.Text.StringBuilder System.Net.ResponseDescription::StatusBuffer
StringBuilder_t* ___StatusBuffer_3;
// System.String System.Net.ResponseDescription::StatusCodeString
String_t* ___StatusCodeString_4;
};
// System.Security.SecureString
struct SecureString_t6FBEB334D455CA90093BD446BBEBA47FE5B20C6C : public RuntimeObject
{
// System.Int32 System.Security.SecureString::length
int32_t ___length_0;
// System.Boolean System.Security.SecureString::disposed
bool ___disposed_1;
// System.Byte[] System.Security.SecureString::data
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___data_2;
};
// System.Runtime.Serialization.SerializationInfo
struct SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37 : public RuntimeObject
{
// System.String[] System.Runtime.Serialization.SerializationInfo::m_members
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_members_3;
// System.Object[] System.Runtime.Serialization.SerializationInfo::m_data
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___m_data_4;
// System.Type[] System.Runtime.Serialization.SerializationInfo::m_types
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___m_types_5;
// System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Runtime.Serialization.SerializationInfo::m_nameToIndex
Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* ___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;
};
// System.Net.SocketAddress
struct SocketAddress_tAB4BC630E51E2241E607F4070DA1AEE00B442A03 : public RuntimeObject
{
// System.Int32 System.Net.SocketAddress::m_Size
int32_t ___m_Size_0;
// System.Byte[] System.Net.SocketAddress::m_Buffer
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___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;
};
// System.String
struct String_t : public RuntimeObject
{
// System.Int32 System.String::_stringLength
int32_t ____stringLength_4;
// System.Char System.String::_firstChar
Il2CppChar ____firstChar_5;
};
struct String_t_StaticFields
{
// System.String System.String::Empty
String_t* ___Empty_6;
};
// System.Text.StringBuilder
struct StringBuilder_t : public RuntimeObject
{
// System.Char[] System.Text.StringBuilder::m_ChunkChars
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___m_ChunkChars_0;
// System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious
StringBuilder_t* ___m_ChunkPrevious_1;
// System.Int32 System.Text.StringBuilder::m_ChunkLength
int32_t ___m_ChunkLength_2;
// System.Int32 System.Text.StringBuilder::m_ChunkOffset
int32_t ___m_ChunkOffset_3;
// System.Int32 System.Text.StringBuilder::m_MaxCapacity
int32_t ___m_MaxCapacity_4;
};
// System.Collections.Specialized.StringCollection
struct StringCollection_t3C8ACD597B2EB7592031E5240BDDD4102223BDBE : public RuntimeObject
{
// System.Collections.ArrayList System.Collections.Specialized.StringCollection::data
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___data_0;
};
// System.Net.TimerThread
struct TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29 : public RuntimeObject
{
};
struct TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields
{
// System.Collections.Generic.LinkedList`1<System.WeakReference> System.Net.TimerThread::s_Queues
LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2* ___s_Queues_0;
// System.Collections.Generic.LinkedList`1<System.WeakReference> System.Net.TimerThread::s_NewQueues
LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2* ___s_NewQueues_1;
// System.Int32 System.Net.TimerThread::s_ThreadState
int32_t ___s_ThreadState_2;
// System.Threading.AutoResetEvent System.Net.TimerThread::s_ThreadReadyEvent
AutoResetEvent_t7F792F3F7AD11BEF7B411E771D98E5266A8CE7C0* ___s_ThreadReadyEvent_3;
// System.Threading.ManualResetEvent System.Net.TimerThread::s_ThreadShutdownEvent
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* ___s_ThreadShutdownEvent_4;
// System.Threading.WaitHandle[] System.Net.TimerThread::s_ThreadEvents
WaitHandleU5BU5D_t85D0945086BF1BF6008422B3DD937ECEC35A8108* ___s_ThreadEvents_5;
// System.Int32 System.Net.TimerThread::s_CacheScanIteration
int32_t ___s_CacheScanIteration_6;
// System.Collections.Hashtable System.Net.TimerThread::s_QueuesCache
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___s_QueuesCache_7;
};
// System.UriBuilder
struct UriBuilder_t7931690A4195FCF7400D95D3107C3FB1D55A1C72 : public RuntimeObject
{
// System.Boolean System.UriBuilder::_changed
bool ____changed_0;
// System.String System.UriBuilder::_fragment
String_t* ____fragment_1;
// System.String System.UriBuilder::_host
String_t* ____host_2;
// System.String System.UriBuilder::_password
String_t* ____password_3;
// System.String System.UriBuilder::_path
String_t* ____path_4;
// System.Int32 System.UriBuilder::_port
int32_t ____port_5;
// System.String System.UriBuilder::_query
String_t* ____query_6;
// System.String System.UriBuilder::_scheme
String_t* ____scheme_7;
// System.String System.UriBuilder::_schemeDelimiter
String_t* ____schemeDelimiter_8;
// System.Uri System.UriBuilder::_uri
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ____uri_9;
// System.String System.UriBuilder::_username
String_t* ____username_10;
};
// System.Net.ValidationHelper
struct ValidationHelper_tA6AE681FCDFA9BE8E3EF31C28A624AADF973A25C : public RuntimeObject
{
};
struct ValidationHelper_tA6AE681FCDFA9BE8E3EF31C28A624AADF973A25C_StaticFields
{
// System.String[] System.Net.ValidationHelper::EmptyArray
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___EmptyArray_0;
// System.Char[] System.Net.ValidationHelper::InvalidMethodChars
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___InvalidMethodChars_1;
// System.Char[] System.Net.ValidationHelper::InvalidParamChars
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___InvalidParamChars_2;
};
// System.ValueType
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
{
};
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
{
};
// System.Net.WebExceptionMapping
struct WebExceptionMapping_tDDA997889D4DC7BF308F43EE387C07295C096FA8 : public RuntimeObject
{
};
struct WebExceptionMapping_tDDA997889D4DC7BF308F43EE387C07295C096FA8_StaticFields
{
// System.String[] System.Net.WebExceptionMapping::s_Mapping
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___s_Mapping_0;
};
// System.Net.WebRequestPrefixElement
struct WebRequestPrefixElement_tBE0FDE8DE0352095DECA0964655D25E05E435C35 : public RuntimeObject
{
// System.String System.Net.WebRequestPrefixElement::Prefix
String_t* ___Prefix_0;
// System.Net.IWebRequestCreate System.Net.WebRequestPrefixElement::creator
RuntimeObject* ___creator_1;
// System.Type System.Net.WebRequestPrefixElement::creatorType
Type_t* ___creatorType_2;
};
// System.Net.FtpControlStream/<>c__DisplayClass31_0
struct U3CU3Ec__DisplayClass31_0_t5AF210E8C8A968A4D36EE158747C05623DB6FD6E : public RuntimeObject
{
// System.Net.FtpControlStream System.Net.FtpControlStream/<>c__DisplayClass31_0::<>4__this
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* ___U3CU3E4__this_0;
// System.Net.TlsStream System.Net.FtpControlStream/<>c__DisplayClass31_0::tlsStream
TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51* ___tlsStream_1;
};
// System.Net.FtpWebRequest/<>c
struct U3CU3Ec_tC2DEFD54496D8274D1995CC11D74A23339DC4447 : public RuntimeObject
{
};
struct U3CU3Ec_tC2DEFD54496D8274D1995CC11D74A23339DC4447_StaticFields
{
// System.Net.FtpWebRequest/<>c System.Net.FtpWebRequest/<>c::<>9
U3CU3Ec_tC2DEFD54496D8274D1995CC11D74A23339DC4447* ___U3CU3E9_0;
// System.Func`1<System.Security.Cryptography.X509Certificates.X509CertificateCollection> System.Net.FtpWebRequest/<>c::<>9__114_0
Func_1_t1A018D620D1CB4D4C91AA22993DD233AA8AB8AFB* ___U3CU3E9__114_0_1;
};
// System.Net.LazyAsyncResult/ThreadContext
struct ThreadContext_t4D66E3F5FE5863AF4D086D6CE7CAFF02382B7650 : public RuntimeObject
{
// System.Int32 System.Net.LazyAsyncResult/ThreadContext::m_NestedIOCount
int32_t ___m_NestedIOCount_0;
};
// System.Collections.Specialized.NameObjectCollectionBase/NameObjectKeysEnumerator
struct NameObjectKeysEnumerator_t4182E42291FFAE1FC7B3BB46365244F202EFE7A0 : public RuntimeObject
{
// System.Int32 System.Collections.Specialized.NameObjectCollectionBase/NameObjectKeysEnumerator::_pos
int32_t ____pos_0;
// System.Collections.Specialized.NameObjectCollectionBase System.Collections.Specialized.NameObjectCollectionBase/NameObjectKeysEnumerator::_coll
NameObjectCollectionBase_tB6400DF2FA3B64660D79586B79016B4A0BA645FC* ____coll_1;
// System.Int32 System.Collections.Specialized.NameObjectCollectionBase/NameObjectKeysEnumerator::_version
int32_t ____version_2;
};
// System.Net.TimerThread/Queue
struct Queue_t644DC21212BC432819522EDA395EB4562BE2CC47 : public RuntimeObject
{
// System.Int32 System.Net.TimerThread/Queue::m_DurationMilliseconds
int32_t ___m_DurationMilliseconds_0;
};
// System.Net.TimerThread/Timer
struct Timer_t251C62B59B7D01C94C28C6162B45228C0276C695 : public RuntimeObject
{
// System.Int32 System.Net.TimerThread/Timer::m_StartTimeMilliseconds
int32_t ___m_StartTimeMilliseconds_0;
// System.Int32 System.Net.TimerThread/Timer::m_DurationMilliseconds
int32_t ___m_DurationMilliseconds_1;
};
// System.Net.WebRequest/<>c__DisplayClass79_0
struct U3CU3Ec__DisplayClass79_0_tA7D1A51487A16A545400DB55AE8D336EE26007F1 : public RuntimeObject
{
// System.Security.Principal.WindowsIdentity System.Net.WebRequest/<>c__DisplayClass79_0::currentUser
WindowsIdentity_t18EC60B678C8A1AA9A67A89BC3BCFA1CC1E2C459* ___currentUser_0;
// System.Net.WebRequest System.Net.WebRequest/<>c__DisplayClass79_0::<>4__this
WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* ___U3CU3E4__this_1;
};
// System.Net.WebRequest/DesignerWebRequestCreate
struct DesignerWebRequestCreate_t75F62E4DEBF416E21EAF6FBB62E43ADB83A0753E : public RuntimeObject
{
};
// System.Collections.Generic.List`1/Enumerator<System.Net.IPAddress>
struct Enumerator_tB8AEF8B79C74FADAB88026E46ED0B2EBEDC85E0B
{
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
List_1_t7327FFE7269D37546789F1E11A915BE2192559DA* ____list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_version
int32_t ____version_2;
// T System.Collections.Generic.List`1/Enumerator::_current
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* ____current_3;
};
// System.Collections.Generic.List`1/Enumerator<System.Object>
struct Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A
{
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ____list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_version
int32_t ____version_2;
// T System.Collections.Generic.List`1/Enumerator::_current
RuntimeObject* ____current_3;
};
// System.Runtime.CompilerServices.AsyncMethodBuilderCore
struct AsyncMethodBuilderCore_tD5ABB3A2536319A3345B32A5481E37E23DD8CEDF
{
// System.Runtime.CompilerServices.IAsyncStateMachine System.Runtime.CompilerServices.AsyncMethodBuilderCore::m_stateMachine
RuntimeObject* ___m_stateMachine_0;
// System.Action System.Runtime.CompilerServices.AsyncMethodBuilderCore::m_defaultContextAction
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___m_defaultContextAction_1;
};
// Native definition for P/Invoke marshalling of System.Runtime.CompilerServices.AsyncMethodBuilderCore
struct AsyncMethodBuilderCore_tD5ABB3A2536319A3345B32A5481E37E23DD8CEDF_marshaled_pinvoke
{
RuntimeObject* ___m_stateMachine_0;
Il2CppMethodPointer ___m_defaultContextAction_1;
};
// Native definition for COM marshalling of System.Runtime.CompilerServices.AsyncMethodBuilderCore
struct AsyncMethodBuilderCore_tD5ABB3A2536319A3345B32A5481E37E23DD8CEDF_marshaled_com
{
RuntimeObject* ___m_stateMachine_0;
Il2CppMethodPointer ___m_defaultContextAction_1;
};
// System.Boolean
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
{
// System.Boolean System.Boolean::m_value
bool ___m_value_0;
};
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
{
// System.String System.Boolean::TrueString
String_t* ___TrueString_5;
// System.String System.Boolean::FalseString
String_t* ___FalseString_6;
};
// System.Byte
struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3
{
// System.Byte System.Byte::m_value
uint8_t ___m_value_0;
};
// System.Threading.CancellationToken
struct CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED
{
// System.Threading.CancellationTokenSource System.Threading.CancellationToken::_source
CancellationTokenSource_tAAE1E0033BCFC233801F8CB4CED5C852B350CB7B* ____source_0;
};
struct CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED_StaticFields
{
// System.Action`1<System.Object> System.Threading.CancellationToken::s_actionToActionObjShunt
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___s_actionToActionObjShunt_1;
};
// Native definition for P/Invoke marshalling of System.Threading.CancellationToken
struct CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED_marshaled_pinvoke
{
CancellationTokenSource_tAAE1E0033BCFC233801F8CB4CED5C852B350CB7B* ____source_0;
};
// Native definition for COM marshalling of System.Threading.CancellationToken
struct CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED_marshaled_com
{
CancellationTokenSource_tAAE1E0033BCFC233801F8CB4CED5C852B350CB7B* ____source_0;
};
// System.Char
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17
{
// System.Char System.Char::m_value
Il2CppChar ___m_value_0;
};
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields
{
// System.Byte[] System.Char::s_categoryForLatin1
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_categoryForLatin1_3;
};
// System.DateTime
struct DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D
{
// System.UInt64 System.DateTime::_dateData
uint64_t ____dateData_46;
};
struct DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields
{
// System.Int32[] System.DateTime::s_daysToMonth365
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_daysToMonth365_30;
// System.Int32[] System.DateTime::s_daysToMonth366
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_daysToMonth366_31;
// System.DateTime System.DateTime::MinValue
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___MinValue_32;
// System.DateTime System.DateTime::MaxValue
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___MaxValue_33;
// System.DateTime System.DateTime::UnixEpoch
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___UnixEpoch_34;
};
// System.Collections.DictionaryEntry
struct DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB
{
// System.Object System.Collections.DictionaryEntry::_key
RuntimeObject* ____key_0;
// System.Object System.Collections.DictionaryEntry::_value
RuntimeObject* ____value_1;
};
// Native definition for P/Invoke marshalling of System.Collections.DictionaryEntry
struct DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_marshaled_pinvoke
{
Il2CppIUnknown* ____key_0;
Il2CppIUnknown* ____value_1;
};
// Native definition for COM marshalling of System.Collections.DictionaryEntry
struct DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_marshaled_com
{
Il2CppIUnknown* ____key_0;
Il2CppIUnknown* ____value_1;
};
// System.Double
struct Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F
{
// System.Double System.Double::m_value
double ___m_value_0;
};
// System.Enum
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F
{
};
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_StaticFields
{
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___enumSeperatorCharArray_0;
};
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_com
{
};
// System.Net.IPEndPoint
struct IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB : public EndPoint_t6233F4E2EB9F0F2D36E187F12BE050E6D8B73564
{
// System.Net.IPAddress System.Net.IPEndPoint::_address
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* ____address_0;
// System.Int32 System.Net.IPEndPoint::_port
int32_t ____port_1;
};
struct IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB_StaticFields
{
// System.Net.IPEndPoint System.Net.IPEndPoint::Any
IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB* ___Any_2;
// System.Net.IPEndPoint System.Net.IPEndPoint::IPv6Any
IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB* ___IPv6Any_3;
};
// System.Int16
struct Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175
{
// System.Int16 System.Int16::m_value
int16_t ___m_value_0;
};
// System.Int32
struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
{
// System.Int32 System.Int32::m_value
int32_t ___m_value_0;
};
// System.Int64
struct Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3
{
// System.Int64 System.Int64::m_value
int64_t ___m_value_0;
};
// System.IntPtr
struct IntPtr_t
{
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
};
struct IntPtr_t_StaticFields
{
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
};
// System.Collections.Specialized.NameValueCollection
struct NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7 : public NameObjectCollectionBase_tB6400DF2FA3B64660D79586B79016B4A0BA645FC
{
// System.String[] System.Collections.Specialized.NameValueCollection::_all
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ____all_9;
// System.String[] System.Collections.Specialized.NameValueCollection::_allKeys
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ____allKeys_10;
};
// System.SByte
struct SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5
{
// System.SByte System.SByte::m_value
int8_t ___m_value_0;
};
// System.IO.Stream
struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE
{
// System.IO.Stream/ReadWriteTask System.IO.Stream::_activeReadWriteTask
ReadWriteTask_t0821BF49EE38596C7734E86E1A6A39D769BE2C05* ____activeReadWriteTask_2;
// System.Threading.SemaphoreSlim System.IO.Stream::_asyncActiveSemaphore
SemaphoreSlim_t0D5CB5685D9BFA5BF95CEC6E7395490F933E8DB2* ____asyncActiveSemaphore_3;
};
struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_StaticFields
{
// System.IO.Stream System.IO.Stream::Null
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___Null_1;
};
// System.Net.SystemNetworkCredential
struct SystemNetworkCredential_tFBEE5F9E93DECB97C8622974DD2F2EBCB0CBD4FF : public NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313
{
};
struct SystemNetworkCredential_tFBEE5F9E93DECB97C8622974DD2F2EBCB0CBD4FF_StaticFields
{
// System.Net.SystemNetworkCredential System.Net.SystemNetworkCredential::defaultCredential
SystemNetworkCredential_tFBEE5F9E93DECB97C8622974DD2F2EBCB0CBD4FF* ___defaultCredential_3;
};
// System.Threading.Thread
struct Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F : public CriticalFinalizerObject_t1DCAB623CAEA6529A96F5F3EDE3C7048A6E313C9
{
// System.Threading.InternalThread System.Threading.Thread::internal_thread
InternalThread_tF40B7BFCBD60C82BD8475A22FF5186CA10293687* ___internal_thread_6;
// System.Object System.Threading.Thread::m_ThreadStartArg
RuntimeObject* ___m_ThreadStartArg_7;
// System.Object System.Threading.Thread::pending_exception
RuntimeObject* ___pending_exception_8;
// System.MulticastDelegate System.Threading.Thread::m_Delegate
MulticastDelegate_t* ___m_Delegate_10;
// System.Threading.ExecutionContext System.Threading.Thread::m_ExecutionContext
ExecutionContext_t9D6EDFD92F0B2D391751963E2D77A8B03CB81710* ___m_ExecutionContext_11;
// System.Boolean System.Threading.Thread::m_ExecutionContextBelongsToOuterScope
bool ___m_ExecutionContextBelongsToOuterScope_12;
// System.Security.Principal.IPrincipal System.Threading.Thread::principal
RuntimeObject* ___principal_13;
// System.Int32 System.Threading.Thread::principal_version
int32_t ___principal_version_14;
};
struct Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F_StaticFields
{
// System.LocalDataStoreMgr System.Threading.Thread::s_LocalDataStoreMgr
LocalDataStoreMgr_t205F1783D5CC2B148E829B5882E5406FF9A3AC1E* ___s_LocalDataStoreMgr_0;
// System.Threading.AsyncLocal`1<System.Globalization.CultureInfo> System.Threading.Thread::s_asyncLocalCurrentCulture
AsyncLocal_1_t1D3339EA4C8650D2DEDDF9553E5C932B3DC2CCFD* ___s_asyncLocalCurrentCulture_4;
// System.Threading.AsyncLocal`1<System.Globalization.CultureInfo> System.Threading.Thread::s_asyncLocalCurrentUICulture
AsyncLocal_1_t1D3339EA4C8650D2DEDDF9553E5C932B3DC2CCFD* ___s_asyncLocalCurrentUICulture_5;
};
struct Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F_ThreadStaticFields
{
// System.LocalDataStoreHolder System.Threading.Thread::s_LocalDataStore
LocalDataStoreHolder_t789DD474AE5141213C2105CE57830ECFC2D3C03F* ___s_LocalDataStore_1;
// System.Globalization.CultureInfo System.Threading.Thread::m_CurrentCulture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___m_CurrentCulture_2;
// System.Globalization.CultureInfo System.Threading.Thread::m_CurrentUICulture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___m_CurrentUICulture_3;
// System.Threading.Thread System.Threading.Thread::current_thread
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* ___current_thread_9;
};
// System.TimeSpan
struct TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A
{
// System.Int64 System.TimeSpan::_ticks
int64_t ____ticks_22;
};
struct TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields
{
// System.TimeSpan System.TimeSpan::Zero
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___Zero_19;
// System.TimeSpan System.TimeSpan::MaxValue
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___MaxValue_20;
// System.TimeSpan System.TimeSpan::MinValue
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___MinValue_21;
};
// System.UInt16
struct UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455
{
// System.UInt16 System.UInt16::m_value
uint16_t ___m_value_0;
};
// System.UInt32
struct UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B
{
// System.UInt32 System.UInt32::m_value
uint32_t ___m_value_0;
};
// System.Void
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
{
union
{
struct
{
};
uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
};
};
// System.Net.WebResponse
struct WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682 : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE
{
// System.Boolean System.Net.WebResponse::m_IsFromCache
bool ___m_IsFromCache_1;
};
// System.Security.Cryptography.X509Certificates.X509CertificateCollection
struct X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE : public CollectionBase_t44F966CC555C87F2815D668FB4586526E1C2383F
{
};
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter
struct ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618
{
// System.Threading.Tasks.Task System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter::m_task
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___m_task_0;
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter::m_continueOnCapturedContext
bool ___m_continueOnCapturedContext_1;
};
// Native definition for P/Invoke marshalling of System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter
struct ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_marshaled_pinvoke
{
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___m_task_0;
int32_t ___m_continueOnCapturedContext_1;
};
// Native definition for COM marshalling of System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter
struct ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_marshaled_com
{
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___m_task_0;
int32_t ___m_continueOnCapturedContext_1;
};
// System.Net.TimerThread/InfiniteTimer
struct InfiniteTimer_tDF656910621727F5F5BCBEA8B9FBE9398C783159 : public Timer_t251C62B59B7D01C94C28C6162B45228C0276C695
{
// System.Int32 System.Net.TimerThread/InfiniteTimer::cancelled
int32_t ___cancelled_2;
};
// System.Net.TimerThread/InfiniteTimerQueue
struct InfiniteTimerQueue_tFE425952008C1E3FF928211F9325D43CAA8106D5 : public Queue_t644DC21212BC432819522EDA395EB4562BE2CC47
{
};
// System.ByReference`1<System.Byte>
struct ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC
{
// System.IntPtr System.ByReference`1::_value
intptr_t ____value_0;
};
// System.Net.Sockets.AddressFamily
struct AddressFamily_t01AA8C9FD15E4727B241F1F453D88444337C7524
{
// System.Int32 System.Net.Sockets.AddressFamily::value__
int32_t ___value___2;
};
// System.AppDomain
struct AppDomain_tFF7010567CBABAEEA7BB19835234D6485E16AD5F : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE
{
// System.IntPtr System.AppDomain::_mono_app_domain
intptr_t ____mono_app_domain_1;
// System.Object System.AppDomain::_evidence
RuntimeObject* ____evidence_6;
// System.Object System.AppDomain::_granted
RuntimeObject* ____granted_7;
// System.Int32 System.AppDomain::_principalPolicy
int32_t ____principalPolicy_8;
// System.AssemblyLoadEventHandler System.AppDomain::AssemblyLoad
AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42* ___AssemblyLoad_10;
// System.ResolveEventHandler System.AppDomain::AssemblyResolve
ResolveEventHandler_t3CE88268E672E41B1B55E01587AFBCFB85044692* ___AssemblyResolve_11;
// System.EventHandler System.AppDomain::DomainUnload
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* ___DomainUnload_12;
// System.EventHandler System.AppDomain::ProcessExit
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* ___ProcessExit_13;
// System.ResolveEventHandler System.AppDomain::ResourceResolve
ResolveEventHandler_t3CE88268E672E41B1B55E01587AFBCFB85044692* ___ResourceResolve_14;
// System.ResolveEventHandler System.AppDomain::TypeResolve
ResolveEventHandler_t3CE88268E672E41B1B55E01587AFBCFB85044692* ___TypeResolve_15;
// System.UnhandledExceptionEventHandler System.AppDomain::UnhandledException
UnhandledExceptionEventHandler_tB13FF21A6201A59BB462E68CD10C5B5BEE54941C* ___UnhandledException_16;
// System.EventHandler`1<System.Runtime.ExceptionServices.FirstChanceExceptionEventArgs> System.AppDomain::FirstChanceException
EventHandler_1_tF46A0252BA462E35F6B72C69AB6C0F751E7443D7* ___FirstChanceException_17;
// System.Object System.AppDomain::_domain_manager
RuntimeObject* ____domain_manager_18;
// System.ResolveEventHandler System.AppDomain::ReflectionOnlyAssemblyResolve
ResolveEventHandler_t3CE88268E672E41B1B55E01587AFBCFB85044692* ___ReflectionOnlyAssemblyResolve_19;
// System.Object System.AppDomain::_activation
RuntimeObject* ____activation_20;
// System.Object System.AppDomain::_applicationIdentity
RuntimeObject* ____applicationIdentity_21;
// System.Collections.Generic.List`1<System.String> System.AppDomain::compatibility_switch
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___compatibility_switch_22;
};
struct AppDomain_tFF7010567CBABAEEA7BB19835234D6485E16AD5F_StaticFields
{
// System.String System.AppDomain::_process_guid
String_t* ____process_guid_2;
};
struct AppDomain_tFF7010567CBABAEEA7BB19835234D6485E16AD5F_ThreadStaticFields
{
// System.Collections.Generic.Dictionary`2<System.String,System.Object> System.AppDomain::type_resolve_in_progress
Dictionary_2_tA348003A3C1CEFB3096E9D2A0BC7F1AC8EC4F710* ___type_resolve_in_progress_3;
// System.Collections.Generic.Dictionary`2<System.String,System.Object> System.AppDomain::assembly_resolve_in_progress
Dictionary_2_tA348003A3C1CEFB3096E9D2A0BC7F1AC8EC4F710* ___assembly_resolve_in_progress_4;
// System.Collections.Generic.Dictionary`2<System.String,System.Object> System.AppDomain::assembly_resolve_in_progress_refonly
Dictionary_2_tA348003A3C1CEFB3096E9D2A0BC7F1AC8EC4F710* ___assembly_resolve_in_progress_refonly_5;
// System.Object System.AppDomain::_principal
RuntimeObject* ____principal_9;
};
// Native definition for P/Invoke marshalling of System.AppDomain
struct AppDomain_tFF7010567CBABAEEA7BB19835234D6485E16AD5F_marshaled_pinvoke : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_pinvoke
{
intptr_t ____mono_app_domain_1;
Il2CppIUnknown* ____evidence_6;
Il2CppIUnknown* ____granted_7;
int32_t ____principalPolicy_8;
Il2CppMethodPointer ___AssemblyLoad_10;
Il2CppMethodPointer ___AssemblyResolve_11;
Il2CppMethodPointer ___DomainUnload_12;
Il2CppMethodPointer ___ProcessExit_13;
Il2CppMethodPointer ___ResourceResolve_14;
Il2CppMethodPointer ___TypeResolve_15;
Il2CppMethodPointer ___UnhandledException_16;
Il2CppMethodPointer ___FirstChanceException_17;
Il2CppIUnknown* ____domain_manager_18;
Il2CppMethodPointer ___ReflectionOnlyAssemblyResolve_19;
Il2CppIUnknown* ____activation_20;
Il2CppIUnknown* ____applicationIdentity_21;
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___compatibility_switch_22;
};
// Native definition for COM marshalling of System.AppDomain
struct AppDomain_tFF7010567CBABAEEA7BB19835234D6485E16AD5F_marshaled_com : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_com
{
intptr_t ____mono_app_domain_1;
Il2CppIUnknown* ____evidence_6;
Il2CppIUnknown* ____granted_7;
int32_t ____principalPolicy_8;
Il2CppMethodPointer ___AssemblyLoad_10;
Il2CppMethodPointer ___AssemblyResolve_11;
Il2CppMethodPointer ___DomainUnload_12;
Il2CppMethodPointer ___ProcessExit_13;
Il2CppMethodPointer ___ResourceResolve_14;
Il2CppMethodPointer ___TypeResolve_15;
Il2CppMethodPointer ___UnhandledException_16;
Il2CppMethodPointer ___FirstChanceException_17;
Il2CppIUnknown* ____domain_manager_18;
Il2CppMethodPointer ___ReflectionOnlyAssemblyResolve_19;
Il2CppIUnknown* ____activation_20;
Il2CppIUnknown* ____applicationIdentity_21;
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___compatibility_switch_22;
};
// System.Runtime.CompilerServices.AsyncVoidMethodBuilder
struct AsyncVoidMethodBuilder_t253E37B63E7E7B504878AE6563347C147F98EF2D
{
// System.Threading.SynchronizationContext System.Runtime.CompilerServices.AsyncVoidMethodBuilder::m_synchronizationContext
SynchronizationContext_tCDB842BBE53B050802CBBB59C6E6DC45B5B06DC0* ___m_synchronizationContext_0;
// System.Runtime.CompilerServices.AsyncMethodBuilderCore System.Runtime.CompilerServices.AsyncVoidMethodBuilder::m_coreState
AsyncMethodBuilderCore_tD5ABB3A2536319A3345B32A5481E37E23DD8CEDF ___m_coreState_1;
// System.Threading.Tasks.Task System.Runtime.CompilerServices.AsyncVoidMethodBuilder::m_task
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___m_task_2;
};
// Native definition for P/Invoke marshalling of System.Runtime.CompilerServices.AsyncVoidMethodBuilder
struct AsyncVoidMethodBuilder_t253E37B63E7E7B504878AE6563347C147F98EF2D_marshaled_pinvoke
{
SynchronizationContext_tCDB842BBE53B050802CBBB59C6E6DC45B5B06DC0* ___m_synchronizationContext_0;
AsyncMethodBuilderCore_tD5ABB3A2536319A3345B32A5481E37E23DD8CEDF_marshaled_pinvoke ___m_coreState_1;
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___m_task_2;
};
// Native definition for COM marshalling of System.Runtime.CompilerServices.AsyncVoidMethodBuilder
struct AsyncVoidMethodBuilder_t253E37B63E7E7B504878AE6563347C147F98EF2D_marshaled_com
{
SynchronizationContext_tCDB842BBE53B050802CBBB59C6E6DC45B5B06DC0* ___m_synchronizationContext_0;
AsyncMethodBuilderCore_tD5ABB3A2536319A3345B32A5481E37E23DD8CEDF_marshaled_com ___m_coreState_1;
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___m_task_2;
};
// System.Net.Security.AuthenticationLevel
struct AuthenticationLevel_tD91F6CE700057352B4F45FC290E35B9E936DECAF
{
// System.Int32 System.Net.Security.AuthenticationLevel::value__
int32_t ___value___2;
};
// System.Reflection.BindingFlags
struct BindingFlags_t5DC2835E4AE9C1862B3AD172EF35B6A5F4F1812C
{
// System.Int32 System.Reflection.BindingFlags::value__
int32_t ___value___2;
};
// System.Net.CloseExState
struct CloseExState_t3BF48B5344EC89945CB921ED26AF81B4BF9F6C44
{
// System.Int32 System.Net.CloseExState::value__
int32_t ___value___2;
};
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable
struct ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C
{
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter System.Runtime.CompilerServices.ConfiguredTaskAwaitable::m_configuredTaskAwaiter
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 ___m_configuredTaskAwaiter_0;
};
// Native definition for P/Invoke marshalling of System.Runtime.CompilerServices.ConfiguredTaskAwaitable
struct ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C_marshaled_pinvoke
{
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_marshaled_pinvoke ___m_configuredTaskAwaiter_0;
};
// Native definition for COM marshalling of System.Runtime.CompilerServices.ConfiguredTaskAwaitable
struct ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C_marshaled_com
{
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_marshaled_com ___m_configuredTaskAwaiter_0;
};
// System.Net.CookieVariant
struct CookieVariant_t7E73D4627A51D0F441CAFC7B50293953F9A198C5
{
// System.Int32 System.Net.CookieVariant::value__
int32_t ___value___2;
};
// System.Delegate
struct Delegate_t : public RuntimeObject
{
// System.IntPtr System.Delegate::method_ptr
Il2CppMethodPointer ___method_ptr_0;
// System.IntPtr System.Delegate::invoke_impl
intptr_t ___invoke_impl_1;
// System.Object System.Delegate::m_target
RuntimeObject* ___m_target_2;
// System.IntPtr System.Delegate::method
intptr_t ___method_3;
// System.IntPtr System.Delegate::delegate_trampoline
intptr_t ___delegate_trampoline_4;
// System.IntPtr System.Delegate::extra_arg
intptr_t ___extra_arg_5;
// System.IntPtr System.Delegate::method_code
intptr_t ___method_code_6;
// System.IntPtr System.Delegate::interp_method
intptr_t ___interp_method_7;
// System.IntPtr System.Delegate::interp_invoke_impl
intptr_t ___interp_invoke_impl_8;
// System.Reflection.MethodInfo System.Delegate::method_info
MethodInfo_t* ___method_info_9;
// System.Reflection.MethodInfo System.Delegate::original_method_info
MethodInfo_t* ___original_method_info_10;
// System.DelegateData System.Delegate::data
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
// System.Boolean System.Delegate::method_is_virtual
bool ___method_is_virtual_12;
};
// Native definition for P/Invoke marshalling of System.Delegate
struct Delegate_t_marshaled_pinvoke
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
intptr_t ___interp_method_7;
intptr_t ___interp_invoke_impl_8;
MethodInfo_t* ___method_info_9;
MethodInfo_t* ___original_method_info_10;
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
int32_t ___method_is_virtual_12;
};
// Native definition for COM marshalling of System.Delegate
struct Delegate_t_marshaled_com
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
intptr_t ___interp_method_7;
intptr_t ___interp_invoke_impl_8;
MethodInfo_t* ___method_info_9;
MethodInfo_t* ___original_method_info_10;
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
int32_t ___method_is_virtual_12;
};
// System.Exception
struct Exception_t : public RuntimeObject
{
// System.String System.Exception::_className
String_t* ____className_1;
// System.String System.Exception::_message
String_t* ____message_2;
// System.Collections.IDictionary System.Exception::_data
RuntimeObject* ____data_3;
// System.Exception System.Exception::_innerException
Exception_t* ____innerException_4;
// System.String System.Exception::_helpURL
String_t* ____helpURL_5;
// System.Object System.Exception::_stackTrace
RuntimeObject* ____stackTrace_6;
// System.String System.Exception::_stackTraceString
String_t* ____stackTraceString_7;
// System.String System.Exception::_remoteStackTraceString
String_t* ____remoteStackTraceString_8;
// System.Int32 System.Exception::_remoteStackIndex
int32_t ____remoteStackIndex_9;
// System.Object System.Exception::_dynamicMethods
RuntimeObject* ____dynamicMethods_10;
// System.Int32 System.Exception::_HResult
int32_t ____HResult_11;
// System.String System.Exception::_source
String_t* ____source_12;
// System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
// System.IntPtr[] System.Exception::native_trace_ips
IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips_15;
// System.Int32 System.Exception::caught_in_unmanaged
int32_t ___caught_in_unmanaged_16;
};
struct Exception_t_StaticFields
{
// System.Object System.Exception::s_EDILock
RuntimeObject* ___s_EDILock_0;
};
// Native definition for P/Invoke marshalling of System.Exception
struct Exception_t_marshaled_pinvoke
{
char* ____className_1;
char* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_pinvoke* ____innerException_4;
char* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
char* ____stackTraceString_7;
char* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
char* ____source_12;
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
int32_t ___caught_in_unmanaged_16;
};
// Native definition for COM marshalling of System.Exception
struct Exception_t_marshaled_com
{
Il2CppChar* ____className_1;
Il2CppChar* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_com* ____innerException_4;
Il2CppChar* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
Il2CppChar* ____stackTraceString_7;
Il2CppChar* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
Il2CppChar* ____source_12;
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
int32_t ___caught_in_unmanaged_16;
};
// System.Net.FtpDataStream
struct FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970 : public Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE
{
// System.Net.FtpWebRequest System.Net.FtpDataStream::_request
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* ____request_4;
// System.Net.Sockets.NetworkStream System.Net.FtpDataStream::_networkStream
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* ____networkStream_5;
// System.Boolean System.Net.FtpDataStream::_writeable
bool ____writeable_6;
// System.Boolean System.Net.FtpDataStream::_readable
bool ____readable_7;
// System.Boolean System.Net.FtpDataStream::_isFullyRead
bool ____isFullyRead_8;
// System.Boolean System.Net.FtpDataStream::_closing
bool ____closing_9;
};
// System.Net.FtpLoginState
struct FtpLoginState_tDB45AECA08A75B714980690D27713687FC4F02A7
{
// System.Byte System.Net.FtpLoginState::value__
uint8_t ___value___2;
};
// System.Net.FtpMethodFlags
struct FtpMethodFlags_t4AEEEB4413CDFFA675F1D25EBE7D5BC0DD421BC5
{
// System.Int32 System.Net.FtpMethodFlags::value__
int32_t ___value___2;
};
// System.Net.FtpOperation
struct FtpOperation_t42480DFAAB3C5611ABB231D439C079EEF237E1A0
{
// System.Int32 System.Net.FtpOperation::value__
int32_t ___value___2;
};
// System.Net.FtpStatusCode
struct FtpStatusCode_tB41B8C83958681A4C0AB77B4C847B1D5C9196C6E
{
// System.Int32 System.Net.FtpStatusCode::value__
int32_t ___value___2;
};
// System.Runtime.InteropServices.GCHandle
struct GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC
{
// System.IntPtr System.Runtime.InteropServices.GCHandle::handle
intptr_t ___handle_0;
};
// System.Collections.Hashtable
struct Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D : public RuntimeObject
{
// System.Collections.Hashtable/bucket[] System.Collections.Hashtable::_buckets
bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* ____buckets_10;
// System.Int32 System.Collections.Hashtable::_count
int32_t ____count_11;
// System.Int32 System.Collections.Hashtable::_occupancy
int32_t ____occupancy_12;
// System.Int32 System.Collections.Hashtable::_loadsize
int32_t ____loadsize_13;
// System.Single System.Collections.Hashtable::_loadFactor
float ____loadFactor_14;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Hashtable::_version
int32_t ____version_15;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Hashtable::_isWriterInProgress
bool ____isWriterInProgress_16;
// System.Collections.ICollection System.Collections.Hashtable::_keys
RuntimeObject* ____keys_17;
// System.Collections.ICollection System.Collections.Hashtable::_values
RuntimeObject* ____values_18;
// System.Collections.IEqualityComparer System.Collections.Hashtable::_keycomparer
RuntimeObject* ____keycomparer_19;
// System.Object System.Collections.Hashtable::_syncRoot
RuntimeObject* ____syncRoot_20;
};
struct Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_StaticFields
{
// System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo> System.Collections.Hashtable::s_serializationInfoTable
ConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858* ___s_serializationInfoTable_21;
};
// System.Net.HttpRequestHeader
struct HttpRequestHeader_t20E8484ED71D3D497F3CD28F9FAF75D2FA684DF0
{
// System.Int32 System.Net.HttpRequestHeader::value__
int32_t ___value___2;
};
// System.IO.MemoryStream
struct MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2 : public Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE
{
// System.Byte[] System.IO.MemoryStream::_buffer
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ____buffer_4;
// System.Int32 System.IO.MemoryStream::_origin
int32_t ____origin_5;
// System.Int32 System.IO.MemoryStream::_position
int32_t ____position_6;
// System.Int32 System.IO.MemoryStream::_length
int32_t ____length_7;
// System.Int32 System.IO.MemoryStream::_capacity
int32_t ____capacity_8;
// System.Boolean System.IO.MemoryStream::_expandable
bool ____expandable_9;
// System.Boolean System.IO.MemoryStream::_writable
bool ____writable_10;
// System.Boolean System.IO.MemoryStream::_exposable
bool ____exposable_11;
// System.Boolean System.IO.MemoryStream::_isOpen
bool ____isOpen_12;
// System.Threading.Tasks.Task`1<System.Int32> System.IO.MemoryStream::_lastReadTask
Task_1_t4C228DE57804012969575431CFF12D57C875552D* ____lastReadTask_13;
};
// System.Net.Sockets.NetworkStream
struct NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0 : public Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE
{
// System.Net.Sockets.Socket System.Net.Sockets.NetworkStream::_streamSocket
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* ____streamSocket_4;
// System.Boolean System.Net.Sockets.NetworkStream::_ownsSocket
bool ____ownsSocket_5;
// System.Boolean System.Net.Sockets.NetworkStream::_readable
bool ____readable_6;
// System.Boolean System.Net.Sockets.NetworkStream::_writeable
bool ____writeable_7;
// System.Int32 System.Net.Sockets.NetworkStream::_closeTimeout
int32_t ____closeTimeout_8;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Net.Sockets.NetworkStream::_cleanedUp
bool ____cleanedUp_9;
// System.Int32 System.Net.Sockets.NetworkStream::_currentReadTimeout
int32_t ____currentReadTimeout_10;
// System.Int32 System.Net.Sockets.NetworkStream::_currentWriteTimeout
int32_t ____currentWriteTimeout_11;
};
// System.Net.NetworkStreamWrapper
struct NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029 : public Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE
{
// System.Net.Sockets.TcpClient System.Net.NetworkStreamWrapper::_client
TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58* ____client_4;
// System.Net.Sockets.NetworkStream System.Net.NetworkStreamWrapper::_networkStream
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* ____networkStream_5;
};
// System.Globalization.NumberStyles
struct NumberStyles_t567C6CBC2A2B5B5A2C43B2855D158949984A810C
{
// System.Int32 System.Globalization.NumberStyles::value__
int32_t ___value___2;
};
// System.Net.Sockets.ProtocolType
struct ProtocolType_t104D087F8C40460E0FE8D38659949AEA910CD20A
{
// System.Int32 System.Net.Sockets.ProtocolType::value__
int32_t ___value___2;
};
// System.Net.Cache.RequestCacheLevel
struct RequestCacheLevel_t09719064D69DEFA02F60D190C61C408BA30B486B
{
// System.Int32 System.Net.Cache.RequestCacheLevel::value__
int32_t ___value___2;
};
// System.RuntimeFieldHandle
struct RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5
{
// System.IntPtr System.RuntimeFieldHandle::value
intptr_t ___value_0;
};
// System.RuntimeTypeHandle
struct RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B
{
// System.IntPtr System.RuntimeTypeHandle::value
intptr_t ___value_0;
};
// System.Net.SecurityProtocolType
struct SecurityProtocolType_t89232ED6192A07952164168C7B2CF4195B1EC150
{
// System.Int32 System.Net.SecurityProtocolType::value__
int32_t ___value___2;
};
// System.IO.SeekOrigin
struct SeekOrigin_t7EB9AD0EDF26368A40F48FA2098F02160B1E8000
{
// System.Int32 System.IO.SeekOrigin::value__
int32_t ___value___2;
};
// System.Net.Sockets.SocketError
struct SocketError_t4AD3BECF393E3FD8C5238C4AE47B768B3ABC07B8
{
// System.Int32 System.Net.Sockets.SocketError::value__
int32_t ___value___2;
};
// System.Net.Sockets.SocketType
struct SocketType_tEFAA48791CC7B43043CE5B1DE7A54F15DCFE3C52
{
// System.Int32 System.Net.Sockets.SocketType::value__
int32_t ___value___2;
};
// System.Runtime.Serialization.StreamingContextStates
struct StreamingContextStates_t5EE358E619B251608A9327618C7BFE8638FC33C1
{
// System.Int32 System.Runtime.Serialization.StreamingContextStates::value__
int32_t ___value___2;
};
// System.StringComparison
struct StringComparison_tE14A55CCFA001A5AC85D754179BF2888F45CC94D
{
// System.Int32 System.StringComparison::value__
int32_t ___value___2;
};
// System.Threading.Tasks.Task
struct Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572 : public RuntimeObject
{
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_taskId
int32_t ___m_taskId_1;
// System.Delegate System.Threading.Tasks.Task::m_action
Delegate_t* ___m_action_2;
// System.Object System.Threading.Tasks.Task::m_stateObject
RuntimeObject* ___m_stateObject_3;
// System.Threading.Tasks.TaskScheduler System.Threading.Tasks.Task::m_taskScheduler
TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E* ___m_taskScheduler_4;
// System.Threading.Tasks.Task System.Threading.Tasks.Task::m_parent
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___m_parent_5;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_stateFlags
int32_t ___m_stateFlags_6;
// System.Object modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_continuationObject
RuntimeObject* ___m_continuationObject_7;
// System.Threading.Tasks.Task/ContingentProperties modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_contingentProperties
ContingentProperties_t3FA59480914505CEA917B1002EC675F29D0CB540* ___m_contingentProperties_10;
};
struct Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_StaticFields
{
// System.Int32 System.Threading.Tasks.Task::s_taskIdCounter
int32_t ___s_taskIdCounter_0;
// System.Object System.Threading.Tasks.Task::s_taskCompletionSentinel
RuntimeObject* ___s_taskCompletionSentinel_8;
// System.Boolean System.Threading.Tasks.Task::s_asyncDebuggingEnabled
bool ___s_asyncDebuggingEnabled_9;
// System.Action`1<System.Object> System.Threading.Tasks.Task::s_taskCancelCallback
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___s_taskCancelCallback_11;
// System.Func`1<System.Threading.Tasks.Task/ContingentProperties> System.Threading.Tasks.Task::s_createContingentProperties
Func_1_tD59A12717D79BFB403BF973694B1BE5B85474BD1* ___s_createContingentProperties_14;
// System.Threading.Tasks.TaskFactory System.Threading.Tasks.Task::<Factory>k__BackingField
TaskFactory_tF781BD37BE23917412AD83424D1497C7C1509DF0* ___U3CFactoryU3Ek__BackingField_15;
// System.Threading.Tasks.Task System.Threading.Tasks.Task::<CompletedTask>k__BackingField
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___U3CCompletedTaskU3Ek__BackingField_16;
// System.Predicate`1<System.Threading.Tasks.Task> System.Threading.Tasks.Task::s_IsExceptionObservedByParentPredicate
Predicate_1_t7F48518B008C1472339EEEBABA3DE203FE1F26ED* ___s_IsExceptionObservedByParentPredicate_17;
// System.Threading.ContextCallback System.Threading.Tasks.Task::s_ecCallback
ContextCallback_tE8AFBDBFCC040FDA8DA8C1EEFE9BD66B16BDA007* ___s_ecCallback_18;
// System.Predicate`1<System.Object> System.Threading.Tasks.Task::s_IsTaskContinuationNullPredicate
Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* ___s_IsTaskContinuationNullPredicate_19;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Threading.Tasks.Task> System.Threading.Tasks.Task::s_currentActiveTasks
Dictionary_2_t403063CE4960B4F46C688912237C6A27E550FF55* ___s_currentActiveTasks_20;
// System.Object System.Threading.Tasks.Task::s_activeTasksLock
RuntimeObject* ___s_activeTasksLock_21;
};
struct Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_ThreadStaticFields
{
// System.Threading.Tasks.Task System.Threading.Tasks.Task::t_currentTask
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___t_currentTask_12;
// System.Threading.Tasks.StackGuard System.Threading.Tasks.Task::t_stackGuard
StackGuard_tACE063A1B7374BDF4AD472DE4585D05AD8745352* ___t_stackGuard_13;
};
// System.Threading.Tasks.TaskContinuationOptions
struct TaskContinuationOptions_tF334758E3027B6DCFA9A814B17CE878029537814
{
// System.Int32 System.Threading.Tasks.TaskContinuationOptions::value__
int32_t ___value___2;
};
// System.Threading.Tasks.TaskCreationOptions
struct TaskCreationOptions_tB15CB42D61B8958640A7C702A79097B56D5C7ABA
{
// System.Int32 System.Threading.Tasks.TaskCreationOptions::value__
int32_t ___value___2;
};
// System.Security.Principal.TokenImpersonationLevel
struct TokenImpersonationLevel_t2DEE263354E7DBC241ED96A71C632A3FAB92013D
{
// System.Int32 System.Security.Principal.TokenImpersonationLevel::value__
int32_t ___value___2;
};
// System.Net.TriState
struct TriState_t15D16D38BC003CBFB1E6439DDA92A6BDE400F81F
{
// System.Int32 System.Net.TriState::value__
int32_t ___value___2;
};
// System.UriComponents
struct UriComponents_t92D6A11B001BCF2B97D0613FD0541637524A7A82
{
// System.Int32 System.UriComponents::value__
int32_t ___value___2;
};
// System.UriFormat
struct UriFormat_tCFECBDF50112D695E5A4C3F05AE60480FB77A2C0
{
// System.Int32 System.UriFormat::value__
int32_t ___value___2;
};
// System.UriIdnScope
struct UriIdnScope_t001CC97A6F977E9BB7DB855CC6BA415A7F47491F
{
// System.Int32 System.UriIdnScope::value__
int32_t ___value___2;
};
// System.Threading.WaitHandle
struct WaitHandle_t08F8DB54593B241FE32E0DD0BD3D82785D3AE3D8 : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE
{
// System.IntPtr System.Threading.WaitHandle::waitHandle
intptr_t ___waitHandle_3;
// Microsoft.Win32.SafeHandles.SafeWaitHandle modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.WaitHandle::safeWaitHandle
SafeWaitHandle_t58F5662CD56F6462A687198A64987F8980804449* ___safeWaitHandle_4;
// System.Boolean System.Threading.WaitHandle::hasThreadAffinity
bool ___hasThreadAffinity_5;
};
struct WaitHandle_t08F8DB54593B241FE32E0DD0BD3D82785D3AE3D8_StaticFields
{
// System.IntPtr System.Threading.WaitHandle::InvalidHandle
intptr_t ___InvalidHandle_11;
};
// Native definition for P/Invoke marshalling of System.Threading.WaitHandle
struct WaitHandle_t08F8DB54593B241FE32E0DD0BD3D82785D3AE3D8_marshaled_pinvoke : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_pinvoke
{
intptr_t ___waitHandle_3;
void* ___safeWaitHandle_4;
int32_t ___hasThreadAffinity_5;
};
// Native definition for COM marshalling of System.Threading.WaitHandle
struct WaitHandle_t08F8DB54593B241FE32E0DD0BD3D82785D3AE3D8_marshaled_com : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_com
{
intptr_t ___waitHandle_3;
void* ___safeWaitHandle_4;
int32_t ___hasThreadAffinity_5;
};
// System.Net.WebExceptionInternalStatus
struct WebExceptionInternalStatus_t55FE318F971454ACF043474E60EFDB32922EC4F7
{
// System.Int32 System.Net.WebExceptionInternalStatus::value__
int32_t ___value___2;
};
// System.Net.WebExceptionStatus
struct WebExceptionStatus_t86B29EE86F8C7D20D1825C71503F0473C43B4B92
{
// System.Int32 System.Net.WebExceptionStatus::value__
int32_t ___value___2;
};
// System.Net.WebHeaderCollectionType
struct WebHeaderCollectionType_tC1655E670BE2631562B873B63682846CB798A692
{
// System.UInt16 System.Net.WebHeaderCollectionType::value__
uint16_t ___value___2;
};
// System.Security.Principal.WindowsAccountType
struct WindowsAccountType_t95C9A97477D5AEF75DFB4B5C6FBC86B9EFEE0FC4
{
// System.Int32 System.Security.Principal.WindowsAccountType::value__
int32_t ___value___2;
};
// System.Security.Principal.WindowsImpersonationContext
struct WindowsImpersonationContext_t6F4CE98646ADFCC0D04B0027FB1CC5D48ABA116F : public RuntimeObject
{
// System.IntPtr System.Security.Principal.WindowsImpersonationContext::_token
intptr_t ____token_0;
// System.Boolean System.Security.Principal.WindowsImpersonationContext::undo
bool ___undo_1;
};
// System.Array/RawData
struct RawData_t37CAF2D3F74B7723974ED7CEEE9B297D8FA64ED0 : public RuntimeObject
{
// System.IntPtr System.Array/RawData::Bounds
intptr_t ___Bounds_0;
// System.IntPtr System.Array/RawData::Count
intptr_t ___Count_1;
// System.Byte System.Array/RawData::Data
uint8_t ___Data_2;
};
// Native definition for P/Invoke marshalling of System.Array/RawData
struct RawData_t37CAF2D3F74B7723974ED7CEEE9B297D8FA64ED0_marshaled_pinvoke
{
intptr_t ___Bounds_0;
intptr_t ___Count_1;
uint8_t ___Data_2;
};
// Native definition for COM marshalling of System.Array/RawData
struct RawData_t37CAF2D3F74B7723974ED7CEEE9B297D8FA64ED0_marshaled_com
{
intptr_t ___Bounds_0;
intptr_t ___Count_1;
uint8_t ___Data_2;
};
// System.Net.CommandStream/PipelineEntryFlags
struct PipelineEntryFlags_tA70085F53D908A1F4A8EEAD676771F04F75FCBE9
{
// System.Int32 System.Net.CommandStream/PipelineEntryFlags::value__
int32_t ___value___2;
};
// System.Net.CommandStream/PipelineInstruction
struct PipelineInstruction_tE3033B601342181A0BFF8FED31A978834094A187
{
// System.Int32 System.Net.CommandStream/PipelineInstruction::value__
int32_t ___value___2;
};
// System.Net.ContextAwareResult/StateFlags
struct StateFlags_t200F5EA7E8A9A7C88EA48D8A430417A93245DA79
{
// System.Byte System.Net.ContextAwareResult/StateFlags::value__
uint8_t ___value___2;
};
// System.Net.FtpControlStream/GetPathOption
struct GetPathOption_tD47F0900ADE2EFBCDE6DCC8DF664F883C60A5928
{
// System.Int32 System.Net.FtpControlStream/GetPathOption::value__
int32_t ___value___2;
};
// System.Net.FtpWebRequest/RequestStage
struct RequestStage_tDC743E2D2E03FDE23DBCF5E27E2A7853EECFB4CD
{
// System.Int32 System.Net.FtpWebRequest/RequestStage::value__
int32_t ___value___2;
};
// System.Net.TimerThread/TimerQueue
struct TimerQueue_tAB38C0ABB8EDA32D28106F9D5DF595FBD20CF8FB : public Queue_t644DC21212BC432819522EDA395EB4562BE2CC47
{
// System.IntPtr System.Net.TimerThread/TimerQueue::m_ThisHandle
intptr_t ___m_ThisHandle_1;
// System.Net.TimerThread/TimerNode System.Net.TimerThread/TimerQueue::m_Timers
TimerNode_t21C7B25E858618C4613473EB473193B566380994* ___m_Timers_2;
};
// System.Uri/Flags
struct Flags_t47CF4DB4036A6A539AFA6EE39C75F772E865E897
{
// System.UInt64 System.Uri/Flags::value__
uint64_t ___value___2;
};
// System.Net.WebHeaderCollection/RfcChar
struct RfcChar_t880944EAE80EBAFC47B3CDE188810138C9F70169
{
// System.Byte System.Net.WebHeaderCollection/RfcChar::value__
uint8_t ___value___2;
};
// System.Net.TimerThread/TimerNode/TimerState
struct TimerState_tEA798D629C4317BFBBEFDA496D80DF62A79B89B3
{
// System.Int32 System.Net.TimerThread/TimerNode/TimerState::value__
int32_t ___value___2;
};
// System.Span`1<System.Byte>
struct Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305
{
// System.ByReference`1<T> System.Span`1::_pointer
ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC ____pointer_0;
// System.Int32 System.Span`1::_length
int32_t ____length_1;
};
// System.Threading.Tasks.TaskFactory`1<System.Net.WebResponse>
struct TaskFactory_1_t1C878D0A5D747EAFF79E944B48ED5067568E4873 : public RuntimeObject
{
// System.Threading.CancellationToken System.Threading.Tasks.TaskFactory`1::m_defaultCancellationToken
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___m_defaultCancellationToken_0;
// System.Threading.Tasks.TaskScheduler System.Threading.Tasks.TaskFactory`1::m_defaultScheduler
TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E* ___m_defaultScheduler_1;
// System.Threading.Tasks.TaskCreationOptions System.Threading.Tasks.TaskFactory`1::m_defaultCreationOptions
int32_t ___m_defaultCreationOptions_2;
// System.Threading.Tasks.TaskContinuationOptions System.Threading.Tasks.TaskFactory`1::m_defaultContinuationOptions
int32_t ___m_defaultContinuationOptions_3;
};
// System.Threading.Tasks.Task`1<System.Int32>
struct Task_1_t4C228DE57804012969575431CFF12D57C875552D : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572
{
// TResult System.Threading.Tasks.Task`1::m_result
int32_t ___m_result_22;
};
struct Task_1_t4C228DE57804012969575431CFF12D57C875552D_StaticFields
{
// System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_defaultFactory
TaskFactory_1_t0BEF06D58E44525B9135AB0B22D016856EE69FF3* ___s_defaultFactory_23;
};
// System.Threading.Tasks.Task`1<System.Net.WebResponse>
struct Task_1_t5E1291839AEFBDBE3699513D40515588EE167AB0 : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572
{
// TResult System.Threading.Tasks.Task`1::m_result
WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* ___m_result_22;
};
struct Task_1_t5E1291839AEFBDBE3699513D40515588EE167AB0_StaticFields
{
// System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_defaultFactory
TaskFactory_1_t1C878D0A5D747EAFF79E944B48ED5067568E4873* ___s_defaultFactory_23;
};
// System.Net.CommandStream
struct CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123 : public NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029
{
// System.Boolean System.Net.CommandStream::_recoverableFailure
bool ____recoverableFailure_8;
// System.Net.WebRequest System.Net.CommandStream::_request
WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* ____request_9;
// System.Boolean System.Net.CommandStream::_isAsync
bool ____isAsync_10;
// System.Boolean System.Net.CommandStream::_aborted
bool ____aborted_11;
// System.Net.CommandStream/PipelineEntry[] System.Net.CommandStream::_commands
PipelineEntryU5BU5D_tF96DE809CEDE1A15F1D069F027582F92EEE04CE4* ____commands_12;
// System.Int32 System.Net.CommandStream::_index
int32_t ____index_13;
// System.Boolean System.Net.CommandStream::_doRead
bool ____doRead_14;
// System.Boolean System.Net.CommandStream::_doSend
bool ____doSend_15;
// System.Net.ResponseDescription System.Net.CommandStream::_currentResponseDescription
ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* ____currentResponseDescription_16;
// System.String System.Net.CommandStream::_abortReason
String_t* ____abortReason_17;
// System.String System.Net.CommandStream::_buffer
String_t* ____buffer_18;
// System.Text.Encoding System.Net.CommandStream::_encoding
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ____encoding_19;
// System.Text.Decoder System.Net.CommandStream::_decoder
Decoder_tE16E789E38B25DD304004FC630EA8B21000ECBBC* ____decoder_20;
};
struct CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123_StaticFields
{
// System.AsyncCallback System.Net.CommandStream::s_writeCallbackDelegate
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___s_writeCallbackDelegate_6;
// System.AsyncCallback System.Net.CommandStream::s_readCallbackDelegate
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___s_readCallbackDelegate_7;
};
// System.Net.ContextAwareResult
struct ContextAwareResult_t3CCEE7D0B6510492A4EE1A2F828BDDF012ADBFDA : public LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B
{
// System.Threading.ExecutionContext modreq(System.Runtime.CompilerServices.IsVolatile) System.Net.ContextAwareResult::_context
ExecutionContext_t9D6EDFD92F0B2D391751963E2D77A8B03CB81710* ____context_9;
// System.Object System.Net.ContextAwareResult::_lock
RuntimeObject* ____lock_10;
// System.Net.ContextAwareResult/StateFlags System.Net.ContextAwareResult::_flags
uint8_t ____flags_11;
};
// System.Net.Cookie
struct Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3 : public RuntimeObject
{
// System.String System.Net.Cookie::m_comment
String_t* ___m_comment_4;
// System.Uri System.Net.Cookie::m_commentUri
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___m_commentUri_5;
// System.Net.CookieVariant System.Net.Cookie::m_cookieVariant
int32_t ___m_cookieVariant_6;
// System.Boolean System.Net.Cookie::m_discard
bool ___m_discard_7;
// System.String System.Net.Cookie::m_domain
String_t* ___m_domain_8;
// System.Boolean System.Net.Cookie::m_domain_implicit
bool ___m_domain_implicit_9;
// System.DateTime System.Net.Cookie::m_expires
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___m_expires_10;
// System.String System.Net.Cookie::m_name
String_t* ___m_name_11;
// System.String System.Net.Cookie::m_path
String_t* ___m_path_12;
// System.Boolean System.Net.Cookie::m_path_implicit
bool ___m_path_implicit_13;
// System.String System.Net.Cookie::m_port
String_t* ___m_port_14;
// System.Boolean System.Net.Cookie::m_port_implicit
bool ___m_port_implicit_15;
// System.Int32[] System.Net.Cookie::m_port_list
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___m_port_list_16;
// System.Boolean System.Net.Cookie::m_secure
bool ___m_secure_17;
// System.Boolean System.Net.Cookie::m_httpOnly
bool ___m_httpOnly_18;
// System.DateTime System.Net.Cookie::m_timeStamp
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___m_timeStamp_19;
// System.String System.Net.Cookie::m_value
String_t* ___m_value_20;
// System.Int32 System.Net.Cookie::m_version
int32_t ___m_version_21;
// System.String System.Net.Cookie::m_domainKey
String_t* ___m_domainKey_22;
// System.Boolean System.Net.Cookie::IsQuotedVersion
bool ___IsQuotedVersion_23;
// System.Boolean System.Net.Cookie::IsQuotedDomain
bool ___IsQuotedDomain_24;
};
struct Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_StaticFields
{
// System.Char[] System.Net.Cookie::PortSplitDelimiters
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___PortSplitDelimiters_0;
// System.Char[] System.Net.Cookie::Reserved2Name
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___Reserved2Name_1;
// System.Char[] System.Net.Cookie::Reserved2Value
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___Reserved2Value_2;
// System.Net.Comparer System.Net.Cookie::staticComparer
Comparer_t142F6C5E53FD6C38EFE484B87752469CEEEFD7AD* ___staticComparer_3;
};
// System.Threading.EventWaitHandle
struct EventWaitHandle_t18F2EB0161747B0646A9A406015A61A214A1EB7E : public WaitHandle_t08F8DB54593B241FE32E0DD0BD3D82785D3AE3D8
{
};
// System.Net.FtpMethodInfo
struct FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E : public RuntimeObject
{
// System.String System.Net.FtpMethodInfo::Method
String_t* ___Method_0;
// System.Net.FtpOperation System.Net.FtpMethodInfo::Operation
int32_t ___Operation_1;
// System.Net.FtpMethodFlags System.Net.FtpMethodInfo::Flags
int32_t ___Flags_2;
// System.String System.Net.FtpMethodInfo::HttpCommand
String_t* ___HttpCommand_3;
};
struct FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E_StaticFields
{
// System.Net.FtpMethodInfo[] System.Net.FtpMethodInfo::s_knownMethodInfo
FtpMethodInfoU5BU5D_tED308D4DC0FECB991D43BBF85B5B7345561B267B* ___s_knownMethodInfo_4;
};
// System.Net.FtpWebResponse
struct FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77 : public WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682
{
// System.IO.Stream System.Net.FtpWebResponse::_responseStream
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ____responseStream_2;
// System.Int64 System.Net.FtpWebResponse::_contentLength
int64_t ____contentLength_3;
// System.Uri System.Net.FtpWebResponse::_responseUri
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ____responseUri_4;
// System.Net.FtpStatusCode System.Net.FtpWebResponse::_statusCode
int32_t ____statusCode_5;
// System.String System.Net.FtpWebResponse::_statusLine
String_t* ____statusLine_6;
// System.Net.WebHeaderCollection System.Net.FtpWebResponse::_ftpRequestHeaders
WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* ____ftpRequestHeaders_7;
// System.DateTime System.Net.FtpWebResponse::_lastModified
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ____lastModified_8;
// System.String System.Net.FtpWebResponse::_bannerMessage
String_t* ____bannerMessage_9;
// System.String System.Net.FtpWebResponse::_welcomeMessage
String_t* ____welcomeMessage_10;
// System.String System.Net.FtpWebResponse::_exitMessage
String_t* ____exitMessage_11;
};
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t
{
// System.Delegate[] System.MulticastDelegate::delegates
DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates_13;
};
// Native definition for P/Invoke marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
{
Delegate_t_marshaled_pinvoke** ___delegates_13;
};
// Native definition for COM marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
{
Delegate_t_marshaled_com** ___delegates_13;
};
// System.Globalization.NumberFormatInfo
struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472 : public RuntimeObject
{
// System.Int32[] System.Globalization.NumberFormatInfo::numberGroupSizes
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___numberGroupSizes_1;
// System.Int32[] System.Globalization.NumberFormatInfo::currencyGroupSizes
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___currencyGroupSizes_2;
// System.Int32[] System.Globalization.NumberFormatInfo::percentGroupSizes
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___percentGroupSizes_3;
// System.String System.Globalization.NumberFormatInfo::positiveSign
String_t* ___positiveSign_4;
// System.String System.Globalization.NumberFormatInfo::negativeSign
String_t* ___negativeSign_5;
// System.String System.Globalization.NumberFormatInfo::numberDecimalSeparator
String_t* ___numberDecimalSeparator_6;
// System.String System.Globalization.NumberFormatInfo::numberGroupSeparator
String_t* ___numberGroupSeparator_7;
// System.String System.Globalization.NumberFormatInfo::currencyGroupSeparator
String_t* ___currencyGroupSeparator_8;
// System.String System.Globalization.NumberFormatInfo::currencyDecimalSeparator
String_t* ___currencyDecimalSeparator_9;
// System.String System.Globalization.NumberFormatInfo::currencySymbol
String_t* ___currencySymbol_10;
// System.String System.Globalization.NumberFormatInfo::ansiCurrencySymbol
String_t* ___ansiCurrencySymbol_11;
// System.String System.Globalization.NumberFormatInfo::nanSymbol
String_t* ___nanSymbol_12;
// System.String System.Globalization.NumberFormatInfo::positiveInfinitySymbol
String_t* ___positiveInfinitySymbol_13;
// System.String System.Globalization.NumberFormatInfo::negativeInfinitySymbol
String_t* ___negativeInfinitySymbol_14;
// System.String System.Globalization.NumberFormatInfo::percentDecimalSeparator
String_t* ___percentDecimalSeparator_15;
// System.String System.Globalization.NumberFormatInfo::percentGroupSeparator
String_t* ___percentGroupSeparator_16;
// System.String System.Globalization.NumberFormatInfo::percentSymbol
String_t* ___percentSymbol_17;
// System.String System.Globalization.NumberFormatInfo::perMilleSymbol
String_t* ___perMilleSymbol_18;
// System.String[] System.Globalization.NumberFormatInfo::nativeDigits
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___nativeDigits_19;
// System.Int32 System.Globalization.NumberFormatInfo::m_dataItem
int32_t ___m_dataItem_20;
// System.Int32 System.Globalization.NumberFormatInfo::numberDecimalDigits
int32_t ___numberDecimalDigits_21;
// System.Int32 System.Globalization.NumberFormatInfo::currencyDecimalDigits
int32_t ___currencyDecimalDigits_22;
// System.Int32 System.Globalization.NumberFormatInfo::currencyPositivePattern
int32_t ___currencyPositivePattern_23;
// System.Int32 System.Globalization.NumberFormatInfo::currencyNegativePattern
int32_t ___currencyNegativePattern_24;
// System.Int32 System.Globalization.NumberFormatInfo::numberNegativePattern
int32_t ___numberNegativePattern_25;
// System.Int32 System.Globalization.NumberFormatInfo::percentPositivePattern
int32_t ___percentPositivePattern_26;
// System.Int32 System.Globalization.NumberFormatInfo::percentNegativePattern
int32_t ___percentNegativePattern_27;
// System.Int32 System.Globalization.NumberFormatInfo::percentDecimalDigits
int32_t ___percentDecimalDigits_28;
// System.Int32 System.Globalization.NumberFormatInfo::digitSubstitution
int32_t ___digitSubstitution_29;
// System.Boolean System.Globalization.NumberFormatInfo::isReadOnly
bool ___isReadOnly_30;
// System.Boolean System.Globalization.NumberFormatInfo::m_useUserOverride
bool ___m_useUserOverride_31;
// System.Boolean System.Globalization.NumberFormatInfo::m_isInvariant
bool ___m_isInvariant_32;
// System.Boolean System.Globalization.NumberFormatInfo::validForParseAsNumber
bool ___validForParseAsNumber_33;
// System.Boolean System.Globalization.NumberFormatInfo::validForParseAsCurrency
bool ___validForParseAsCurrency_34;
};
struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472_StaticFields
{
// System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.NumberFormatInfo::invariantInfo
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___invariantInfo_0;
};
// System.Net.Cache.RequestCachePolicy
struct RequestCachePolicy_tF15C94C5E458478914D5EB17753294BD488B0550 : public RuntimeObject
{
// System.Net.Cache.RequestCacheLevel System.Net.Cache.RequestCachePolicy::m_Level
int32_t ___m_Level_0;
};
// System.Net.Sockets.Socket
struct Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E : public RuntimeObject
{
// System.Net.Sockets.Socket/CachedEventArgs System.Net.Sockets.Socket::_cachedTaskEventArgs
CachedEventArgs_tF0692E89962FD1A045B17BC985F838C11FB6822C* ____cachedTaskEventArgs_6;
// System.Boolean System.Net.Sockets.Socket::is_closed
bool ___is_closed_13;
// System.Boolean System.Net.Sockets.Socket::is_listening
bool ___is_listening_14;
// System.Int32 System.Net.Sockets.Socket::linger_timeout
int32_t ___linger_timeout_15;
// System.Net.Sockets.AddressFamily System.Net.Sockets.Socket::addressFamily
int32_t ___addressFamily_16;
// System.Net.Sockets.SocketType System.Net.Sockets.Socket::socketType
int32_t ___socketType_17;
// System.Net.Sockets.ProtocolType System.Net.Sockets.Socket::protocolType
int32_t ___protocolType_18;
// System.Net.Sockets.SafeSocketHandle System.Net.Sockets.Socket::m_Handle
SafeSocketHandle_t5A597D30D951E736B750ED09D5B3AB72F98407EE* ___m_Handle_19;
// System.Net.EndPoint System.Net.Sockets.Socket::seed_endpoint
EndPoint_t6233F4E2EB9F0F2D36E187F12BE050E6D8B73564* ___seed_endpoint_20;
// System.Threading.SemaphoreSlim System.Net.Sockets.Socket::ReadSem
SemaphoreSlim_t0D5CB5685D9BFA5BF95CEC6E7395490F933E8DB2* ___ReadSem_21;
// System.Threading.SemaphoreSlim System.Net.Sockets.Socket::WriteSem
SemaphoreSlim_t0D5CB5685D9BFA5BF95CEC6E7395490F933E8DB2* ___WriteSem_22;
// System.Boolean System.Net.Sockets.Socket::is_blocking
bool ___is_blocking_23;
// System.Boolean System.Net.Sockets.Socket::is_bound
bool ___is_bound_24;
// System.Boolean System.Net.Sockets.Socket::is_connected
bool ___is_connected_25;
// System.Int32 System.Net.Sockets.Socket::m_IntCleanedUp
int32_t ___m_IntCleanedUp_26;
// System.Boolean System.Net.Sockets.Socket::connect_in_progress
bool ___connect_in_progress_27;
};
struct Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E_StaticFields
{
// System.EventHandler`1<System.Net.Sockets.SocketAsyncEventArgs> System.Net.Sockets.Socket::AcceptCompletedHandler
EventHandler_1_t5D3FC4609BD8133ED1226D6D49A1D8076B16A9ED* ___AcceptCompletedHandler_0;
// System.EventHandler`1<System.Net.Sockets.SocketAsyncEventArgs> System.Net.Sockets.Socket::ReceiveCompletedHandler
EventHandler_1_t5D3FC4609BD8133ED1226D6D49A1D8076B16A9ED* ___ReceiveCompletedHandler_1;
// System.EventHandler`1<System.Net.Sockets.SocketAsyncEventArgs> System.Net.Sockets.Socket::SendCompletedHandler
EventHandler_1_t5D3FC4609BD8133ED1226D6D49A1D8076B16A9ED* ___SendCompletedHandler_2;
// System.Net.Sockets.Socket/TaskSocketAsyncEventArgs`1<System.Net.Sockets.Socket> System.Net.Sockets.Socket::s_rentedSocketSentinel
TaskSocketAsyncEventArgs_1_tEB937620E5B15D91E5BFEFFA707CF800930F8401* ___s_rentedSocketSentinel_3;
// System.Net.Sockets.Socket/Int32TaskSocketAsyncEventArgs System.Net.Sockets.Socket::s_rentedInt32Sentinel
Int32TaskSocketAsyncEventArgs_t36C5FC82499ED9DAFE7F05C38EF92D77A0B248E9* ___s_rentedInt32Sentinel_4;
// System.Threading.Tasks.Task`1<System.Int32> System.Net.Sockets.Socket::s_zeroTask
Task_1_t4C228DE57804012969575431CFF12D57C875552D* ___s_zeroTask_5;
// System.Object System.Net.Sockets.Socket::s_InternalSyncObject
RuntimeObject* ___s_InternalSyncObject_7;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Net.Sockets.Socket::s_SupportsIPv4
bool ___s_SupportsIPv4_8;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Net.Sockets.Socket::s_SupportsIPv6
bool ___s_SupportsIPv6_9;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Net.Sockets.Socket::s_OSSupportsIPv6
bool ___s_OSSupportsIPv6_10;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Net.Sockets.Socket::s_Initialized
bool ___s_Initialized_11;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Net.Sockets.Socket::s_LoggingEnabled
bool ___s_LoggingEnabled_12;
// System.AsyncCallback System.Net.Sockets.Socket::AcceptAsyncCallback
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___AcceptAsyncCallback_28;
// System.IOAsyncCallback System.Net.Sockets.Socket::BeginAcceptCallback
IOAsyncCallback_tDBBA8BBDA6B203613680E77BD4AD6320A1268388* ___BeginAcceptCallback_29;
// System.IOAsyncCallback System.Net.Sockets.Socket::BeginAcceptReceiveCallback
IOAsyncCallback_tDBBA8BBDA6B203613680E77BD4AD6320A1268388* ___BeginAcceptReceiveCallback_30;
// System.AsyncCallback System.Net.Sockets.Socket::ConnectAsyncCallback
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___ConnectAsyncCallback_31;
// System.IOAsyncCallback System.Net.Sockets.Socket::BeginConnectCallback
IOAsyncCallback_tDBBA8BBDA6B203613680E77BD4AD6320A1268388* ___BeginConnectCallback_32;
// System.AsyncCallback System.Net.Sockets.Socket::DisconnectAsyncCallback
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___DisconnectAsyncCallback_33;
// System.IOAsyncCallback System.Net.Sockets.Socket::BeginDisconnectCallback
IOAsyncCallback_tDBBA8BBDA6B203613680E77BD4AD6320A1268388* ___BeginDisconnectCallback_34;
// System.AsyncCallback System.Net.Sockets.Socket::ReceiveAsyncCallback
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___ReceiveAsyncCallback_35;
// System.IOAsyncCallback System.Net.Sockets.Socket::BeginReceiveCallback
IOAsyncCallback_tDBBA8BBDA6B203613680E77BD4AD6320A1268388* ___BeginReceiveCallback_36;
// System.IOAsyncCallback System.Net.Sockets.Socket::BeginReceiveGenericCallback
IOAsyncCallback_tDBBA8BBDA6B203613680E77BD4AD6320A1268388* ___BeginReceiveGenericCallback_37;
// System.AsyncCallback System.Net.Sockets.Socket::ReceiveFromAsyncCallback
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___ReceiveFromAsyncCallback_38;
// System.IOAsyncCallback System.Net.Sockets.Socket::BeginReceiveFromCallback
IOAsyncCallback_tDBBA8BBDA6B203613680E77BD4AD6320A1268388* ___BeginReceiveFromCallback_39;
// System.AsyncCallback System.Net.Sockets.Socket::SendAsyncCallback
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___SendAsyncCallback_40;
// System.IOAsyncCallback System.Net.Sockets.Socket::BeginSendGenericCallback
IOAsyncCallback_tDBBA8BBDA6B203613680E77BD4AD6320A1268388* ___BeginSendGenericCallback_41;
// System.AsyncCallback System.Net.Sockets.Socket::SendToAsyncCallback
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___SendToAsyncCallback_42;
};
// System.Runtime.Serialization.StreamingContext
struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677
{
// 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;
};
// Native definition for P/Invoke marshalling of System.Runtime.Serialization.StreamingContext
struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677_marshaled_pinvoke
{
Il2CppIUnknown* ___m_additionalContext_0;
int32_t ___m_state_1;
};
// Native definition for COM marshalling of System.Runtime.Serialization.StreamingContext
struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677_marshaled_com
{
Il2CppIUnknown* ___m_additionalContext_0;
int32_t ___m_state_1;
};
// System.SystemException
struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
{
};
// System.Net.Sockets.TcpClient
struct TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58 : public RuntimeObject
{
// System.Net.Sockets.Socket System.Net.Sockets.TcpClient::m_ClientSocket
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* ___m_ClientSocket_0;
// System.Boolean System.Net.Sockets.TcpClient::m_Active
bool ___m_Active_1;
// System.Net.Sockets.NetworkStream System.Net.Sockets.TcpClient::m_DataStream
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* ___m_DataStream_2;
// System.Net.Sockets.AddressFamily System.Net.Sockets.TcpClient::m_Family
int32_t ___m_Family_3;
// System.Boolean System.Net.Sockets.TcpClient::m_CleanedUp
bool ___m_CleanedUp_4;
};
// System.Net.TlsStream
struct TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51 : public NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0
{
// System.Net.Security.SslStream System.Net.TlsStream::_sslStream
SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* ____sslStream_12;
// System.String System.Net.TlsStream::_host
String_t* ____host_13;
// System.Security.Cryptography.X509Certificates.X509CertificateCollection System.Net.TlsStream::_clientCertificates
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* ____clientCertificates_14;
};
// System.Type
struct Type_t : public MemberInfo_t
{
// System.RuntimeTypeHandle System.Type::_impl
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ____impl_8;
};
struct Type_t_StaticFields
{
// System.Reflection.Binder modreq(System.Runtime.CompilerServices.IsVolatile) System.Type::s_defaultBinder
Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235* ___s_defaultBinder_0;
// System.Char System.Type::Delimiter
Il2CppChar ___Delimiter_1;
// System.Type[] System.Type::EmptyTypes
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___EmptyTypes_2;
// System.Object System.Type::Missing
RuntimeObject* ___Missing_3;
// System.Reflection.MemberFilter System.Type::FilterAttribute
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterAttribute_4;
// System.Reflection.MemberFilter System.Type::FilterName
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterName_5;
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterNameIgnoreCase_6;
};
// System.Uri
struct Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E : public RuntimeObject
{
// System.String System.Uri::m_String
String_t* ___m_String_13;
// System.String System.Uri::m_originalUnicodeString
String_t* ___m_originalUnicodeString_14;
// System.UriParser System.Uri::m_Syntax
UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* ___m_Syntax_15;
// System.String System.Uri::m_DnsSafeHost
String_t* ___m_DnsSafeHost_16;
// System.Uri/Flags System.Uri::m_Flags
uint64_t ___m_Flags_17;
// System.Uri/UriInfo System.Uri::m_Info
UriInfo_t5F91F77A93545DDDA6BB24A609BAF5E232CC1A09* ___m_Info_18;
// System.Boolean System.Uri::m_iriParsing
bool ___m_iriParsing_19;
};
struct Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_StaticFields
{
// System.String System.Uri::UriSchemeFile
String_t* ___UriSchemeFile_0;
// System.String System.Uri::UriSchemeFtp
String_t* ___UriSchemeFtp_1;
// System.String System.Uri::UriSchemeGopher
String_t* ___UriSchemeGopher_2;
// System.String System.Uri::UriSchemeHttp
String_t* ___UriSchemeHttp_3;
// System.String System.Uri::UriSchemeHttps
String_t* ___UriSchemeHttps_4;
// System.String System.Uri::UriSchemeWs
String_t* ___UriSchemeWs_5;
// System.String System.Uri::UriSchemeWss
String_t* ___UriSchemeWss_6;
// System.String System.Uri::UriSchemeMailto
String_t* ___UriSchemeMailto_7;
// System.String System.Uri::UriSchemeNews
String_t* ___UriSchemeNews_8;
// System.String System.Uri::UriSchemeNntp
String_t* ___UriSchemeNntp_9;
// System.String System.Uri::UriSchemeNetTcp
String_t* ___UriSchemeNetTcp_10;
// System.String System.Uri::UriSchemeNetPipe
String_t* ___UriSchemeNetPipe_11;
// System.String System.Uri::SchemeDelimiter
String_t* ___SchemeDelimiter_12;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_ConfigInitialized
bool ___s_ConfigInitialized_20;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_ConfigInitializing
bool ___s_ConfigInitializing_21;
// System.UriIdnScope modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_IdnScope
int32_t ___s_IdnScope_22;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_IriParsing
bool ___s_IriParsing_23;
// System.Boolean System.Uri::useDotNetRelativeOrAbsolute
bool ___useDotNetRelativeOrAbsolute_24;
// System.Boolean System.Uri::IsWindowsFileSystem
bool ___IsWindowsFileSystem_25;
// System.Object System.Uri::s_initLock
RuntimeObject* ___s_initLock_26;
// System.Char[] System.Uri::HexLowerChars
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___HexLowerChars_27;
// System.Char[] System.Uri::_WSchars
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ____WSchars_28;
};
// System.WeakReference
struct WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E : public RuntimeObject
{
// System.Boolean System.WeakReference::isLongReference
bool ___isLongReference_0;
// System.Runtime.InteropServices.GCHandle System.WeakReference::gcHandle
GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC ___gcHandle_1;
};
// System.Net.WebHeaderCollection
struct WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8 : public NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7
{
// System.String[] System.Net.WebHeaderCollection::m_CommonHeaders
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___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_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* ___m_InnerCollection_16;
// System.Net.WebHeaderCollectionType System.Net.WebHeaderCollection::m_Type
uint16_t ___m_Type_17;
};
struct WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_StaticFields
{
// System.Net.HeaderInfoTable System.Net.WebHeaderCollection::HInfo
HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F* ___HInfo_11;
// System.String[] System.Net.WebHeaderCollection::s_CommonHeaderNames
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___s_CommonHeaderNames_14;
// System.SByte[] System.Net.WebHeaderCollection::s_CommonHeaderHints
SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913* ___s_CommonHeaderHints_15;
// System.Char[] System.Net.WebHeaderCollection::HttpTrimCharacters
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___HttpTrimCharacters_18;
// System.Net.WebHeaderCollection/RfcChar[] System.Net.WebHeaderCollection::RfcCharMap
RfcCharU5BU5D_t8D79A380C46398F9D1F442FDEE0A27F77B7D1B4C* ___RfcCharMap_19;
};
// System.Net.WebRequest
struct WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE
{
// 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_tF15C94C5E458478914D5EB17753294BD488B0550* ___m_CachePolicy_6;
// System.Net.Cache.RequestCacheProtocol System.Net.WebRequest::m_CacheProtocol
RequestCacheProtocol_t43C1AC170194874A0C0B0D3B8BE9EABFB613DF85* ___m_CacheProtocol_7;
// System.Net.Cache.RequestCacheBinding System.Net.WebRequest::m_CacheBinding
RequestCacheBinding_t18F3F4FF8D0F77E86C2C666CEE7FD48A80C042EE* ___m_CacheBinding_8;
};
struct WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_StaticFields
{
// System.Collections.ArrayList modreq(System.Runtime.CompilerServices.IsVolatile) System.Net.WebRequest::s_PrefixList
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___s_PrefixList_1;
// System.Object System.Net.WebRequest::s_InternalSyncObject
RuntimeObject* ___s_InternalSyncObject_2;
// System.Net.TimerThread/Queue System.Net.WebRequest::s_DefaultTimerQueue
Queue_t644DC21212BC432819522EDA395EB4562BE2CC47* ___s_DefaultTimerQueue_3;
// System.Net.WebRequest/DesignerWebRequestCreate System.Net.WebRequest::webRequestCreate
DesignerWebRequestCreate_t75F62E4DEBF416E21EAF6FBB62E43ADB83A0753E* ___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;
};
// System.Security.Principal.WindowsIdentity
struct WindowsIdentity_t18EC60B678C8A1AA9A67A89BC3BCFA1CC1E2C459 : public ClaimsIdentity_tF926D758CB543B2C0FC3D0620E1F9BC597889206
{
// System.IntPtr System.Security.Principal.WindowsIdentity::_token
intptr_t ____token_13;
// System.String System.Security.Principal.WindowsIdentity::_type
String_t* ____type_14;
// System.Security.Principal.WindowsAccountType System.Security.Principal.WindowsIdentity::_account
int32_t ____account_15;
// System.Boolean System.Security.Principal.WindowsIdentity::_authenticated
bool ____authenticated_16;
// System.String System.Security.Principal.WindowsIdentity::_name
String_t* ____name_17;
// System.Runtime.Serialization.SerializationInfo System.Security.Principal.WindowsIdentity::_info
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ____info_18;
};
struct WindowsIdentity_t18EC60B678C8A1AA9A67A89BC3BCFA1CC1E2C459_StaticFields
{
// System.IntPtr System.Security.Principal.WindowsIdentity::invalidWindows
intptr_t ___invalidWindows_19;
};
// System.Net.CommandStream/PipelineEntry
struct PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463 : public RuntimeObject
{
// System.String System.Net.CommandStream/PipelineEntry::Command
String_t* ___Command_0;
// System.Net.CommandStream/PipelineEntryFlags System.Net.CommandStream/PipelineEntry::Flags
int32_t ___Flags_1;
};
// System.Net.FtpWebRequest/<CreateConnectionAsync>d__86
struct U3CCreateConnectionAsyncU3Ed__86_t2A570F4B60E471D570D3866403BE7034E2929A6E
{
// System.Int32 System.Net.FtpWebRequest/<CreateConnectionAsync>d__86::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Runtime.CompilerServices.AsyncVoidMethodBuilder System.Net.FtpWebRequest/<CreateConnectionAsync>d__86::<>t__builder
AsyncVoidMethodBuilder_t253E37B63E7E7B504878AE6563347C147F98EF2D ___U3CU3Et__builder_1;
// System.Net.FtpWebRequest System.Net.FtpWebRequest/<CreateConnectionAsync>d__86::<>4__this
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* ___U3CU3E4__this_2;
// System.Net.Sockets.TcpClient System.Net.FtpWebRequest/<CreateConnectionAsync>d__86::<client>5__2
TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58* ___U3CclientU3E5__2_3;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter System.Net.FtpWebRequest/<CreateConnectionAsync>d__86::<>u__1
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 ___U3CU3Eu__1_4;
};
// System.Net.FtpWebResponse/EmptyStream
struct EmptyStream_t195E304A631BA5798F6FED9BD12ADFDD157BB7E5 : public MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2
{
};
// System.Net.TimerThread/TimerNode
struct TimerNode_t21C7B25E858618C4613473EB473193B566380994 : public Timer_t251C62B59B7D01C94C28C6162B45228C0276C695
{
// System.Net.TimerThread/TimerNode/TimerState System.Net.TimerThread/TimerNode::m_TimerState
int32_t ___m_TimerState_2;
// System.Net.TimerThread/Callback System.Net.TimerThread/TimerNode::m_Callback
Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835* ___m_Callback_3;
// System.Object System.Net.TimerThread/TimerNode::m_Context
RuntimeObject* ___m_Context_4;
// System.Object System.Net.TimerThread/TimerNode::m_QueueLock
RuntimeObject* ___m_QueueLock_5;
// System.Net.TimerThread/TimerNode System.Net.TimerThread/TimerNode::next
TimerNode_t21C7B25E858618C4613473EB473193B566380994* ___next_6;
// System.Net.TimerThread/TimerNode System.Net.TimerThread/TimerNode::prev
TimerNode_t21C7B25E858618C4613473EB473193B566380994* ___prev_7;
};
// System.Func`1<System.Threading.Tasks.Task`1<System.Net.WebResponse>>
struct Func_1_tDAA6FBAB20A0B65227BD8FED28803AF2E7E5C29B : public MulticastDelegate_t
{
};
// System.Func`1<System.Security.Cryptography.X509Certificates.X509CertificateCollection>
struct Func_1_t1A018D620D1CB4D4C91AA22993DD233AA8AB8AFB : public MulticastDelegate_t
{
};
// System.Func`2<System.IAsyncResult,System.Net.WebResponse>
struct Func_2_tE048A673EF3350A89334B6C88EA7517D1EDF8FF3 : public MulticastDelegate_t
{
};
// System.Func`3<System.AsyncCallback,System.Object,System.IAsyncResult>
struct Func_3_t37EC932F9834D7F9E1C44B6BC6C01F409AE93BA7 : public MulticastDelegate_t
{
};
// System.ArgumentException
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
// System.String System.ArgumentException::_paramName
String_t* ____paramName_18;
};
// System.AsyncCallback
struct AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C : public MulticastDelegate_t
{
};
// System.Security.Authentication.AuthenticationException
struct AuthenticationException_tACF49ABE65B7CEABB69DE78FA8AE8B1771CDF6A8 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.Threading.AutoResetEvent
struct AutoResetEvent_t7F792F3F7AD11BEF7B411E771D98E5266A8CE7C0 : public EventWaitHandle_t18F2EB0161747B0646A9A406015A61A214A1EB7E
{
};
// System.EventHandler
struct EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82 : public MulticastDelegate_t
{
};
// System.Runtime.InteropServices.ExternalException
struct ExternalException_t419875A3CD3C551692EDBBC99E4927E69F2E1F4C : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.FormatException
struct FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.Net.FtpControlStream
struct FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888 : public CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123
{
// System.Net.Sockets.Socket System.Net.FtpControlStream::_dataSocket
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* ____dataSocket_21;
// System.Net.IPEndPoint System.Net.FtpControlStream::_passiveEndPoint
IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB* ____passiveEndPoint_22;
// System.Net.TlsStream System.Net.FtpControlStream::_tlsStream
TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51* ____tlsStream_23;
// System.Text.StringBuilder System.Net.FtpControlStream::_bannerMessage
StringBuilder_t* ____bannerMessage_24;
// System.Text.StringBuilder System.Net.FtpControlStream::_welcomeMessage
StringBuilder_t* ____welcomeMessage_25;
// System.Text.StringBuilder System.Net.FtpControlStream::_exitMessage
StringBuilder_t* ____exitMessage_26;
// System.WeakReference System.Net.FtpControlStream::_credentials
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* ____credentials_27;
// System.String System.Net.FtpControlStream::_currentTypeSetting
String_t* ____currentTypeSetting_28;
// System.Int64 System.Net.FtpControlStream::_contentLength
int64_t ____contentLength_29;
// System.DateTime System.Net.FtpControlStream::_lastModified
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ____lastModified_30;
// System.Boolean System.Net.FtpControlStream::_dataHandshakeStarted
bool ____dataHandshakeStarted_31;
// System.String System.Net.FtpControlStream::_loginDirectory
String_t* ____loginDirectory_32;
// System.String System.Net.FtpControlStream::_establishedServerDirectory
String_t* ____establishedServerDirectory_33;
// System.String System.Net.FtpControlStream::_requestedServerDirectory
String_t* ____requestedServerDirectory_34;
// System.Uri System.Net.FtpControlStream::_responseUri
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ____responseUri_35;
// System.Net.FtpLoginState System.Net.FtpControlStream::_loginState
uint8_t ____loginState_36;
// System.Net.FtpStatusCode System.Net.FtpControlStream::StatusCode
int32_t ___StatusCode_37;
// System.String System.Net.FtpControlStream::StatusLine
String_t* ___StatusLine_38;
};
struct FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_StaticFields
{
// System.AsyncCallback System.Net.FtpControlStream::s_acceptCallbackDelegate
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___s_acceptCallbackDelegate_39;
// System.AsyncCallback System.Net.FtpControlStream::s_connectCallbackDelegate
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___s_connectCallbackDelegate_40;
// System.AsyncCallback System.Net.FtpControlStream::s_SSLHandshakeCallback
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___s_SSLHandshakeCallback_41;
};
// System.Net.FtpWebRequest
struct FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9 : public WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B
{
// System.Object System.Net.FtpWebRequest::_syncObject
RuntimeObject* ____syncObject_12;
// System.Net.ICredentials System.Net.FtpWebRequest::_authInfo
RuntimeObject* ____authInfo_13;
// System.Uri System.Net.FtpWebRequest::_uri
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ____uri_14;
// System.Net.FtpMethodInfo System.Net.FtpWebRequest::_methodInfo
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* ____methodInfo_15;
// System.String System.Net.FtpWebRequest::_renameTo
String_t* ____renameTo_16;
// System.Boolean System.Net.FtpWebRequest::_getRequestStreamStarted
bool ____getRequestStreamStarted_17;
// System.Boolean System.Net.FtpWebRequest::_getResponseStarted
bool ____getResponseStarted_18;
// System.DateTime System.Net.FtpWebRequest::_startTime
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ____startTime_19;
// System.Int32 System.Net.FtpWebRequest::_timeout
int32_t ____timeout_20;
// System.Int32 System.Net.FtpWebRequest::_remainingTimeout
int32_t ____remainingTimeout_21;
// System.Int64 System.Net.FtpWebRequest::_contentLength
int64_t ____contentLength_22;
// System.Int64 System.Net.FtpWebRequest::_contentOffset
int64_t ____contentOffset_23;
// System.Security.Cryptography.X509Certificates.X509CertificateCollection System.Net.FtpWebRequest::_clientCertificates
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* ____clientCertificates_24;
// System.Boolean System.Net.FtpWebRequest::_passive
bool ____passive_25;
// System.Boolean System.Net.FtpWebRequest::_binary
bool ____binary_26;
// System.Boolean System.Net.FtpWebRequest::_async
bool ____async_27;
// System.Boolean System.Net.FtpWebRequest::_aborted
bool ____aborted_28;
// System.Boolean System.Net.FtpWebRequest::_timedOut
bool ____timedOut_29;
// System.Exception System.Net.FtpWebRequest::_exception
Exception_t* ____exception_30;
// System.Net.TimerThread/Queue System.Net.FtpWebRequest::_timerQueue
Queue_t644DC21212BC432819522EDA395EB4562BE2CC47* ____timerQueue_31;
// System.Net.TimerThread/Callback System.Net.FtpWebRequest::_timerCallback
Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835* ____timerCallback_32;
// System.Boolean System.Net.FtpWebRequest::_enableSsl
bool ____enableSsl_33;
// System.Net.FtpControlStream System.Net.FtpWebRequest::_connection
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* ____connection_34;
// System.IO.Stream System.Net.FtpWebRequest::_stream
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ____stream_35;
// System.Net.FtpWebRequest/RequestStage System.Net.FtpWebRequest::_requestStage
int32_t ____requestStage_36;
// System.Boolean System.Net.FtpWebRequest::_onceFailed
bool ____onceFailed_37;
// System.Net.WebHeaderCollection System.Net.FtpWebRequest::_ftpRequestHeaders
WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* ____ftpRequestHeaders_38;
// System.Net.FtpWebResponse System.Net.FtpWebRequest::_ftpWebResponse
FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* ____ftpWebResponse_39;
// System.Int32 System.Net.FtpWebRequest::_readWriteTimeout
int32_t ____readWriteTimeout_40;
// System.Net.ContextAwareResult System.Net.FtpWebRequest::_writeAsyncResult
ContextAwareResult_t3CCEE7D0B6510492A4EE1A2F828BDDF012ADBFDA* ____writeAsyncResult_41;
// System.Net.LazyAsyncResult System.Net.FtpWebRequest::_readAsyncResult
LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* ____readAsyncResult_42;
// System.Net.LazyAsyncResult System.Net.FtpWebRequest::_requestCompleteAsyncResult
LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* ____requestCompleteAsyncResult_43;
};
struct FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9_StaticFields
{
// System.Net.NetworkCredential System.Net.FtpWebRequest::s_defaultFtpNetworkCredential
NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* ___s_defaultFtpNetworkCredential_44;
// System.Net.TimerThread/Queue System.Net.FtpWebRequest::s_DefaultTimerQueue
Queue_t644DC21212BC432819522EDA395EB4562BE2CC47* ___s_DefaultTimerQueue_45;
};
// System.Net.HeaderParser
struct HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67 : public MulticastDelegate_t
{
};
// System.Net.HttpContinueDelegate
struct HttpContinueDelegate_t174E5B124FF75DBAC627C6E41A0802A802EAE6D9 : public MulticastDelegate_t
{
};
// System.IO.IOException
struct IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.IndexOutOfRangeException
struct IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.Net.InternalException
struct InternalException_tBD5CDE9133BB628E33CE7F16F6396FCD739C1934 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.InvalidOperationException
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.Threading.ManualResetEvent
struct ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158 : public EventWaitHandle_t18F2EB0161747B0646A9A406015A61A214A1EB7E
{
};
// System.NotImplementedException
struct NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.NotSupportedException
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.OutOfMemoryException
struct OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.Security.SecurityException
struct SecurityException_t025CB4C23107E67E07CF085826B40EDE72F8165C : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
// System.String System.Security.SecurityException::permissionState
String_t* ___permissionState_18;
};
// System.StackOverflowException
struct StackOverflowException_t938C753F2BB15F526FD564CCF52061BBE5BC97C9 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.Threading.ThreadAbortException
struct ThreadAbortException_tCA1833E5D49782387EDF3BDCBDB90597B273F3C4 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.Threading.ThreadStart
struct ThreadStart_t7662D98F1793EDE90192D7304D1C3C44119328A2 : public MulticastDelegate_t
{
};
// System.Threading.WaitCallback
struct WaitCallback_tFB2C7FD58D024BBC2B0333DC7A4CB63B8DEBD5D3 : public MulticastDelegate_t
{
};
// System.Net.TimerThread/Callback
struct Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835 : public MulticastDelegate_t
{
};
// System.ArgumentNullException
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129 : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
{
};
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
{
// System.Object System.ArgumentOutOfRangeException::_actualValue
RuntimeObject* ____actualValue_19;
};
// System.Net.CookieException
struct CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F : public FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B
{
};
// System.ObjectDisposedException
struct ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB : public InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB
{
// System.String System.ObjectDisposedException::_objectName
String_t* ____objectName_18;
};
// System.Net.ProtocolViolationException
struct ProtocolViolationException_t4660D647ACBC7121D1AE35068DDB7A6C7A88780D : public InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB
{
};
// System.Net.WebException
struct WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8 : public InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB
{
// System.Net.WebExceptionStatus System.Net.WebException::m_Status
int32_t ___m_Status_18;
// System.Net.WebResponse System.Net.WebException::m_Response
WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* ___m_Response_19;
// System.Net.WebExceptionInternalStatus System.Net.WebException::m_InternalStatus
int32_t ___m_InternalStatus_20;
};
// System.ComponentModel.Win32Exception
struct Win32Exception_t15A75629914EB77C816D8219D93ED78E50C74BE9 : public ExternalException_t419875A3CD3C551692EDBBC99E4927E69F2E1F4C
{
// System.Int32 System.ComponentModel.Win32Exception::nativeErrorCode
int32_t ___nativeErrorCode_18;
};
// System.Net.Sockets.SocketException
struct SocketException_t6D10102A62EA871BD31748E026A372DB6804083B : public Win32Exception_t15A75629914EB77C816D8219D93ED78E50C74BE9
{
// System.Net.EndPoint System.Net.Sockets.SocketException::m_EndPoint
EndPoint_t6233F4E2EB9F0F2D36E187F12BE050E6D8B73564* ___m_EndPoint_19;
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// System.Object[]
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918 : public RuntimeArray
{
ALIGN_FIELD (8) RuntimeObject* m_Items[1];
inline RuntimeObject* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RuntimeObject** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RuntimeObject* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline RuntimeObject* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RuntimeObject** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Net.CommandStream/PipelineEntry[]
struct PipelineEntryU5BU5D_tF96DE809CEDE1A15F1D069F027582F92EEE04CE4 : public RuntimeArray
{
ALIGN_FIELD (8) PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* m_Items[1];
inline PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463** 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, PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Byte[]
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031 : public RuntimeArray
{
ALIGN_FIELD (8) uint8_t m_Items[1];
inline uint8_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, uint8_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
{
m_Items[index] = value;
}
};
// System.Char[]
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB : public RuntimeArray
{
ALIGN_FIELD (8) Il2CppChar m_Items[1];
inline Il2CppChar GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Il2CppChar value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value)
{
m_Items[index] = value;
}
};
// System.String[]
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248 : public RuntimeArray
{
ALIGN_FIELD (8) String_t* m_Items[1];
inline String_t* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline String_t** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, String_t* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Net.FtpMethodInfo[]
struct FtpMethodInfoU5BU5D_tED308D4DC0FECB991D43BBF85B5B7345561B267B : public RuntimeArray
{
ALIGN_FIELD (8) FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* m_Items[1];
inline FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E** 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, FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Net.IPAddress[]
struct IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D : public RuntimeArray
{
ALIGN_FIELD (8) IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* m_Items[1];
inline IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484** 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_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Delegate[]
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771 : public RuntimeArray
{
ALIGN_FIELD (8) Delegate_t* m_Items[1];
inline Delegate_t* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Delegate_t** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Delegate_t* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Delegate_t* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Delegate_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.SByte[]
struct SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913 : public RuntimeArray
{
ALIGN_FIELD (8) int8_t m_Items[1];
inline int8_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int8_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, int8_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int8_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int8_t value)
{
m_Items[index] = value;
}
};
// System.Net.WebHeaderCollection/RfcChar[]
struct RfcCharU5BU5D_t8D79A380C46398F9D1F442FDEE0A27F77B7D1B4C : public RuntimeArray
{
ALIGN_FIELD (8) uint8_t m_Items[1];
inline uint8_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, uint8_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
{
m_Items[index] = value;
}
};
// System.Net.HeaderInfo[]
struct HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF : public RuntimeArray
{
ALIGN_FIELD (8) HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* m_Items[1];
inline HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3** 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_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Threading.WaitHandle[]
struct WaitHandleU5BU5D_t85D0945086BF1BF6008422B3DD937ECEC35A8108 : public RuntimeArray
{
ALIGN_FIELD (8) WaitHandle_t08F8DB54593B241FE32E0DD0BD3D82785D3AE3D8* m_Items[1];
inline WaitHandle_t08F8DB54593B241FE32E0DD0BD3D82785D3AE3D8* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline WaitHandle_t08F8DB54593B241FE32E0DD0BD3D82785D3AE3D8** 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, WaitHandle_t08F8DB54593B241FE32E0DD0BD3D82785D3AE3D8* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline WaitHandle_t08F8DB54593B241FE32E0DD0BD3D82785D3AE3D8* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline WaitHandle_t08F8DB54593B241FE32E0DD0BD3D82785D3AE3D8** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, WaitHandle_t08F8DB54593B241FE32E0DD0BD3D82785D3AE3D8* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Int32[]
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C : public RuntimeArray
{
ALIGN_FIELD (8) int32_t m_Items[1];
inline int32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, int32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
{
m_Items[index] = value;
}
};
// System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder::Start<System.Net.FtpWebRequest/<CreateConnectionAsync>d__86>(TStateMachine&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncVoidMethodBuilder_Start_TisU3CCreateConnectionAsyncU3Ed__86_t2A570F4B60E471D570D3866403BE7034E2929A6E_mB533C8375EAFF32F9CD221842EE38C58C343AC93_gshared (AsyncVoidMethodBuilder_t253E37B63E7E7B504878AE6563347C147F98EF2D* __this, U3CCreateConnectionAsyncU3Ed__86_t2A570F4B60E471D570D3866403BE7034E2929A6E* ___stateMachine0, const RuntimeMethod* method) ;
// System.Void System.Func`1<System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_1__ctor_m663374A863E492A515BE9626B6F0E444991834E8_gshared (Func_1_tD5C081AE11746B200C711DD48DBEB00E3A9276D4* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// T System.Threading.LazyInitializer::EnsureInitialized<System.Object>(T&,System.Object&,System.Func`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* LazyInitializer_EnsureInitialized_TisRuntimeObject_m321502C8F37B1E7454B1F8F146BEF2FC96D44CA4_gshared (RuntimeObject** ___target0, RuntimeObject** ___syncLock1, Func_1_tD5C081AE11746B200C711DD48DBEB00E3A9276D4* ___valueFactory2, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,System.Net.FtpWebRequest/<CreateConnectionAsync>d__86>(TAwaiter&,TStateMachine&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CCreateConnectionAsyncU3Ed__86_t2A570F4B60E471D570D3866403BE7034E2929A6E_m482497952BF8CA8BCBB356F2AB0CD3302A9A57DD_gshared (AsyncVoidMethodBuilder_t253E37B63E7E7B504878AE6563347C147F98EF2D* __this, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* ___awaiter0, U3CCreateConnectionAsyncU3Ed__86_t2A570F4B60E471D570D3866403BE7034E2929A6E* ___stateMachine1, const RuntimeMethod* method) ;
// T[] System.Array::Empty<System.Byte>()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m89F7B056854DF715AA3E2B78EB84D5FA3878E474_gshared_inline (const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::Add(T)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___item0, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Object>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1/Enumerator<System.Object>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method) ;
// System.Span`1<T> System.MemoryExtensions::AsSpan<System.Byte>(T[],System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 MemoryExtensions_AsSpan_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m107A36BC03551DA3FFD8816519D6F675279D5FB6_gshared_inline (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___array0, int32_t ___start1, const RuntimeMethod* method) ;
// System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::Run<System.Object>(System.Func`1<System.Threading.Tasks.Task`1<TResult>>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* Task_Run_TisRuntimeObject_mD3EECA5B522E829A92D4AB1E43CEA3B59B64A720_gshared (Func_1_tF400708EEA4975A6298D8D1C9AC51877FA5FD985* ___function0, const RuntimeMethod* method) ;
// System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1<System.Object>::get_Factory()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TaskFactory_1_t6F188FE70F3006B0386002E392B799D85100732B* Task_1_get_Factory_mFCEECEC269C6BA34AC0E7A879EC2160629E554A3_gshared (const RuntimeMethod* method) ;
// System.Void System.Func`3<System.Object,System.Object,System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_3__ctor_m7A3CDF8CC909FAEEA005D42C71F113B505F766DD_gshared (Func_3_tAB0692B406AF1455ADB5F518BF283E084B5E8566* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Void System.Func`2<System.Object,System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_2__ctor_m7F8A01C0B02BC1D4063F4EB1E817F7A48562A398_gshared (Func_2_tACBF5A1656250800CE861707354491F0611F6624* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.TaskFactory`1<System.Object>::FromAsync(System.Func`3<System.AsyncCallback,System.Object,System.IAsyncResult>,System.Func`2<System.IAsyncResult,TResult>,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* TaskFactory_1_FromAsync_mA2245574D79F2D5E00D63C9A55FDC2B8DAFF2FE4_gshared (TaskFactory_1_t6F188FE70F3006B0386002E392B799D85100732B* __this, Func_3_t37EC932F9834D7F9E1C44B6BC6C01F409AE93BA7* ___beginMethod0, Func_2_t0D0687635BAF9EA3FF389149941C5473EC0CD2D4* ___endMethod1, RuntimeObject* ___state2, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.LinkedList`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LinkedList_1__ctor_m2732A2EC5597469086D48C79A12B3563DEA501C5_gshared (LinkedList_1_t49DC5CF34D4D642E6417F1245CDEC26A32F60C76* __this, const RuntimeMethod* method) ;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1<System.Object>::AddLast(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LinkedListNode_1_t293BB098D459DDAE6A26977D0731A997186D1D4C* LinkedList_1_AddLast_mF5239C871EADC44D51C6B621592A9CAC43449A2E_gshared (LinkedList_1_t49DC5CF34D4D642E6417F1245CDEC26A32F60C76* __this, RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Int32>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_gshared (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Int32>::Add(T)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_gshared_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___item0, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1<System.Int32>::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_gshared (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<System.Int32>::get_Count()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_gshared_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.LinkedList`1<System.Object>::get_Count()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t LinkedList_1_get_Count_mBFF1AE23B10EDF501026201C0427AA5820AECD82_gshared_inline (LinkedList_1_t49DC5CF34D4D642E6417F1245CDEC26A32F60C76* __this, const RuntimeMethod* method) ;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1<System.Object>::get_First()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR LinkedListNode_1_t293BB098D459DDAE6A26977D0731A997186D1D4C* LinkedList_1_get_First_mF743AE65DDD0324290E33D3F433F37AC83216E18_gshared_inline (LinkedList_1_t49DC5CF34D4D642E6417F1245CDEC26A32F60C76* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.LinkedList`1<System.Object>::Remove(System.Collections.Generic.LinkedListNode`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LinkedList_1_Remove_m6B592B94D9AEF003EAE59FCB5455DA67AB4E423C_gshared (LinkedList_1_t49DC5CF34D4D642E6417F1245CDEC26A32F60C76* __this, LinkedListNode_1_t293BB098D459DDAE6A26977D0731A997186D1D4C* ___node0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.LinkedList`1<System.Object>::AddLast(System.Collections.Generic.LinkedListNode`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LinkedList_1_AddLast_m6070D31B124D5054AD3A5EA9C90A2CF4F09E4CAE_gshared (LinkedList_1_t49DC5CF34D4D642E6417F1245CDEC26A32F60C76* __this, LinkedListNode_1_t293BB098D459DDAE6A26977D0731A997186D1D4C* ___node0, const RuntimeMethod* method) ;
// T System.Collections.Generic.LinkedListNode`1<System.Object>::get_Value()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* LinkedListNode_1_get_Value_m8F67264DC98EF442B34CE4947044BCE18BF26053_gshared_inline (LinkedListNode_1_t293BB098D459DDAE6A26977D0731A997186D1D4C* __this, const RuntimeMethod* method) ;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1<System.Object>::get_Next()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LinkedListNode_1_t293BB098D459DDAE6A26977D0731A997186D1D4C* LinkedListNode_1_get_Next_mF9F997F067DC152AB327110F922FB789EB1DE249_gshared (LinkedListNode_1_t293BB098D459DDAE6A26977D0731A997186D1D4C* __this, const RuntimeMethod* method) ;
// T[] System.Collections.Generic.List`1<System.Int32>::ToArray()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* List_1_ToArray_m65479FB75A5FE539EA1A0D6681172717D23CEAAA_gshared (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method) ;
// System.Void System.Span`1<System.Byte>::.ctor(T&,System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_m947BF95D54571BF3897F96822B7A8FDA5853497B_gshared_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, uint8_t* ___ptr0, int32_t ___length1, const RuntimeMethod* method) ;
// System.Void System.WeakReference::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WeakReference__ctor_m5F9E2F970CD85965A003C0B37ABDBFAA1F5CF241 (WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* __this, RuntimeObject* ___target0, const RuntimeMethod* method) ;
// System.Void System.Net.CommandStream::.ctor(System.Net.Sockets.TcpClient)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CommandStream__ctor_mDC3049BB71D0C9B1479D1A94D2B923D753D6F36E (CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123* __this, TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58* ___client0, const RuntimeMethod* method) ;
// System.Void System.Net.Sockets.Socket::Close()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Socket_Close_m5EBF3D8BE2C42EF8037BC9372CE7760B1717EEE4 (Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* __this, const RuntimeMethod* method) ;
// System.Net.Sockets.Socket System.Net.Sockets.Socket::EndAccept(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* Socket_EndAccept_m6A7BE15D82A8C8DCA5AD786CC97E0A12FF354D09 (Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* __this, RuntimeObject* ___asyncResult0, const RuntimeMethod* method) ;
// System.Net.IPAddress System.Net.NetworkStreamWrapper::get_ServerAddress()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* NetworkStreamWrapper_get_ServerAddress_mE6D714D4B29C89FFE2C975AAA6828FF02440D2C6 (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, const RuntimeMethod* method) ;
// System.Net.EndPoint System.Net.Sockets.Socket::get_RemoteEndPoint()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EndPoint_t6233F4E2EB9F0F2D36E187F12BE050E6D8B73564* Socket_get_RemoteEndPoint_m6A626481D55A640C7654B91BFDE00199C2C95479 (Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* __this, const RuntimeMethod* method) ;
// System.Net.IPAddress System.Net.IPEndPoint::get_Address()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* IPEndPoint_get_Address_m72F783CB76E10E9DBDF680CCC1DAAED201BABB1C_inline (IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB* __this, const RuntimeMethod* method) ;
// System.Void System.Net.WebException::.ctor(System.String,System.Net.WebExceptionStatus)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebException__ctor_m6C829021B5388956F84830FC249915324C1453A1 (WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* __this, String_t* ___message0, int32_t ___status1, const RuntimeMethod* method) ;
// System.IO.Stream System.Net.CommandStream::ContinueCommandPipeline()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* CommandStream_ContinueCommandPipeline_m5C680F284A85251071F130E61F020F232C85B815 (CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123* __this, const RuntimeMethod* method) ;
// System.Void System.Net.NetworkStreamWrapper::CloseSocket()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkStreamWrapper_CloseSocket_mAD2F12D01E0C1D3B6DD51D691F1C5CBA1A4D1467 (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, const RuntimeMethod* method) ;
// System.Void System.Net.CommandStream::InvokeRequestCallback(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CommandStream_InvokeRequestCallback_m6E7BFD33406D1B53BCF50C42E9D91F13E42C5F3A (CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123* __this, RuntimeObject* ___obj0, const RuntimeMethod* method) ;
// System.Void System.Net.Sockets.Socket::EndConnect(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Socket_EndConnect_m10F5B4F43A68F96891DB3AEF493AB160CD8104D6 (Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* __this, RuntimeObject* ___asyncResult0, const RuntimeMethod* method) ;
// System.Void System.Net.TlsStream::EndAuthenticateAsClient(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TlsStream_EndAuthenticateAsClient_mE7E1915CE91F4E796B2A0358B677C3D756F3BB2F (TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51* __this, RuntimeObject* ___asyncResult0, const RuntimeMethod* method) ;
// System.Void System.Net.InternalException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalException__ctor_m20A09E66E185FB1449C71227304AF40936C8011A (InternalException_tBD5CDE9133BB628E33CE7F16F6396FCD739C1934* __this, const RuntimeMethod* method) ;
// System.Net.TriState System.Net.FtpControlStream::IsFtpDataStreamWriteable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FtpControlStream_IsFtpDataStreamWriteable_m98769CB129051685F3DF2107B8B7CD11D343D6E7 (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, const RuntimeMethod* method) ;
// System.Void System.Net.FtpDataStream::.ctor(System.Net.Sockets.NetworkStream,System.Net.FtpWebRequest,System.Net.TriState)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpDataStream__ctor_m43E92319125756CD8D5D660EE7FE9B940DA9DB75 (FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* __this, NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* ___networkStream0, FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* ___request1, int32_t ___writeOnly2, const RuntimeMethod* method) ;
// System.Void System.Net.Sockets.NetworkStream::.ctor(System.Net.Sockets.Socket,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkStream__ctor_mA44C3DB90F5B64F230CC2176DC7E722F4077A9DE (NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* __this, Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* ___socket0, bool ___ownsSocket1, const RuntimeMethod* method) ;
// System.Boolean System.Net.NetworkStreamWrapper::get_UsingSecureStream()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkStreamWrapper_get_UsingSecureStream_m86E61049DC4265D855C187275D6536ACA6988A05 (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, const RuntimeMethod* method) ;
// System.String System.Uri::get_Host()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_Host_m2C0E258C7DFF7A340049BE9BC08FF45E90988D8C (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
// System.Security.Cryptography.X509Certificates.X509CertificateCollection System.Net.FtpWebRequest::get_ClientCertificates()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* FtpWebRequest_get_ClientCertificates_mA566B0A04203FCA61A4C858073A0A9271AB73382 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method) ;
// System.Void System.Net.TlsStream::.ctor(System.Net.Sockets.NetworkStream,System.Net.Sockets.Socket,System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TlsStream__ctor_m92BDBF633326E74A389C3F979F7DA25991AA9575 (TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51* __this, NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* ___stream0, Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* ___socket1, String_t* ___host2, X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* ___clientCertificates3, const RuntimeMethod* method) ;
// System.IAsyncResult System.Net.TlsStream::BeginAuthenticateAsClient(System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TlsStream_BeginAuthenticateAsClient_mCC4D883302E06680A9E5F3EE95B79C52BD0E2FF6 (TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51* __this, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___asyncCallback0, RuntimeObject* ___state1, const RuntimeMethod* method) ;
// System.Void System.Net.TlsStream::AuthenticateAsClient()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TlsStream_AuthenticateAsClient_m95AA6647436479C34D8149DA1989A3FE6BD6F2C0 (TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51* __this, const RuntimeMethod* method) ;
// System.Void System.Net.CommandStream::ClearState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CommandStream_ClearState_m7562386C549485E956DC4305651DE87EA5A8B83B (CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123* __this, const RuntimeMethod* method) ;
// System.Void System.Net.FtpControlStream/<>c__DisplayClass31_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass31_0__ctor_mC80F22193462B0EF9A706D5ECFDADC54E5120638 (U3CU3Ec__DisplayClass31_0_t5AF210E8C8A968A4D36EE158747C05623DB6FD6E* __this, const RuntimeMethod* method) ;
// System.Boolean System.Net.NetEventSource::get_IsEnabled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8 (const RuntimeMethod* method) ;
// System.FormattableString System.Runtime.CompilerServices.FormattableStringFactory::Create(System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FormattableString_t4D7D221057108596F60CCCC83532037E2399BE0D* FormattableStringFactory_Create_mE112258142E627356203C9E0437E7CE21357A406 (String_t* ___format0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___arguments1, const RuntimeMethod* method) ;
// System.Void System.Net.NetEventSource::Info(System.Object,System.FormattableString,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetEventSource_Info_m0BE7F613FC95552DCCAB55C55B0396C13D2DB513 (RuntimeObject* ___thisOrContextObject0, FormattableString_t4D7D221057108596F60CCCC83532037E2399BE0D* ___formattableString1, String_t* ___memberName2, const RuntimeMethod* method) ;
// System.Boolean System.Net.ResponseDescription::get_InvalidStatusCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ResponseDescription_get_InvalidStatusCode_mCC93FF679EC42A75E4C1E07689BF1CBB5F537168 (ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* __this, const RuntimeMethod* method) ;
// System.Void System.Text.StringBuilder::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D (StringBuilder_t* __this, const RuntimeMethod* method) ;
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D (StringBuilder_t* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Exception System.Net.CommandStream::GenerateException(System.Net.FtpStatusCode,System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* CommandStream_GenerateException_m16AF53C8700B826E18BC10950729EE134C479E5B (CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123* __this, int32_t ___code0, String_t* ___statusDescription1, Exception_t* ___innerException2, const RuntimeMethod* method) ;
// System.Boolean System.String::op_Equality(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0 (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method) ;
// System.Boolean System.Net.ResponseDescription::get_PositiveCompletion()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ResponseDescription_get_PositiveCompletion_mA8C5CB9FF0E386FAD10146736663344154E4D58C (ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* __this, const RuntimeMethod* method) ;
// System.Text.Encoding System.Text.Encoding::get_UTF8()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* Encoding_get_UTF8_m9700ADA8E0F244002B2A89B483F1B2133B8FE336 (const RuntimeMethod* method) ;
// System.Void System.Net.CommandStream::set_Encoding(System.Text.Encoding)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CommandStream_set_Encoding_mE530EE55B34420E5E4BB74B91D65A6E88B2521FE (CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123* __this, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___value0, const RuntimeMethod* method) ;
// System.Text.Encoding System.Text.Encoding::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* Encoding_get_Default_m20D9BEC170CED98C8D129F8BF51BEEDCA6A9FB3D (const RuntimeMethod* method) ;
// System.Int32 System.String::IndexOf(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m69E9BDAFD93767C85A7FF861B453415D3B4A200F (String_t* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Boolean System.Net.ResponseDescription::get_TransientFailure()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ResponseDescription_get_TransientFailure_m79235F6AAD03B39148D25332EB0784E5C4696807 (ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* __this, const RuntimeMethod* method) ;
// System.Boolean System.Net.ResponseDescription::get_PermanentFailure()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ResponseDescription_get_PermanentFailure_mD250931175B99B4B6558297A889ED479FC292843 (ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* __this, const RuntimeMethod* method) ;
// System.Void System.Net.CommandStream::MarkAsRecoverableFailure()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CommandStream_MarkAsRecoverableFailure_m8577AAD7B31DAD61EAB4594E75EFEBB58B83E2B3 (CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123* __this, const RuntimeMethod* method) ;
// System.Boolean System.Net.CommandStream/PipelineEntry::HasFlag(System.Net.CommandStream/PipelineEntryFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PipelineEntry_HasFlag_m1C72335CAD79960E9FCCB190541F222A76F00F96 (PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* __this, int32_t ___flags0, const RuntimeMethod* method) ;
// System.Boolean System.Net.ResponseDescription::get_PositiveIntermediate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ResponseDescription_get_PositiveIntermediate_mEE58E298D3A383D8D2A8EB537B53AAC7A9B61348 (ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* __this, const RuntimeMethod* method) ;
// System.Net.CommandStream/PipelineInstruction System.Net.FtpControlStream::QueueOrCreateDataConection(System.Net.CommandStream/PipelineEntry,System.Net.ResponseDescription,System.Boolean,System.IO.Stream&,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FtpControlStream_QueueOrCreateDataConection_m8B8FFECC845071AF8089070B306555E05701DBB4 (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* ___entry0, ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* ___response1, bool ___timeout2, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE** ___stream3, bool* ___isSocketReady4, const RuntimeMethod* method) ;
// System.String SR::Format(System.String,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_Format_mCBC2E13309DB2E03F48F50E5189DD215B5BA7186 (String_t* ___resourceFormat0, RuntimeObject* ___p11, RuntimeObject* ___p22, const RuntimeMethod* method) ;
// System.Void System.Net.FtpControlStream::TryUpdateContentLength(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpControlStream_TryUpdateContentLength_mE2B8C5EC33E1F4D789FE5C6DE3825BB2952EB753 (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, String_t* ___str0, const RuntimeMethod* method) ;
// System.Net.FtpMethodInfo System.Net.FtpWebRequest::get_MethodInfo()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* FtpWebRequest_get_MethodInfo_m1916AEF829D24CCE147215A4CC8B5D12E35370EB_inline (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method) ;
// System.Boolean System.Net.FtpMethodInfo::get_ShouldParseForResponseUri()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FtpMethodInfo_get_ShouldParseForResponseUri_m7D40CD10C27151B72235705787C1FCBC62B6E60B (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* __this, const RuntimeMethod* method) ;
// System.Void System.Net.FtpControlStream::TryUpdateResponseUri(System.String,System.Net.FtpWebRequest)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpControlStream_TryUpdateResponseUri_mA4514F22354FA2F4BEB3D73F24A7DEB5240E213F (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, String_t* ___str0, FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* ___request1, const RuntimeMethod* method) ;
// System.Net.CommandStream/PipelineInstruction System.Net.FtpControlStream::QueueOrCreateFtpDataStream(System.IO.Stream&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FtpControlStream_QueueOrCreateFtpDataStream_m37AFE4C4DA7DB36D34170261D3AC39D65C2A4AC0 (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE** ___stream0, const RuntimeMethod* method) ;
// System.Net.Sockets.NetworkStream System.Net.NetworkStreamWrapper::get_NetworkStream()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* NetworkStreamWrapper_get_NetworkStream_m65DC14637198CEE4E9F9543EA3AC07168BA06488_inline (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, const RuntimeMethod* method) ;
// System.Net.Sockets.Socket System.Net.NetworkStreamWrapper::get_Socket()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* NetworkStreamWrapper_get_Socket_m787036C2B47E611BD0F452A14DE461D8B5A30246 (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, const RuntimeMethod* method) ;
// System.Void System.AsyncCallback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncCallback__ctor_mC3C0475E930E4419AED02C7335E53B425A2D68AC (AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Void System.Net.NetworkStreamWrapper::set_NetworkStream(System.Net.Sockets.NetworkStream)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void NetworkStreamWrapper_set_NetworkStream_m66A3B0C65E4DD88A79296C88CE4DC5912ED997A7_inline (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* ___value0, const RuntimeMethod* method) ;
// System.Boolean System.String::StartsWith(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_StartsWith_mF75DBA1EB709811E711B44E26FF919C88A8E65C0 (String_t* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Int64 System.Net.FtpControlStream::GetContentLengthFrom213Response(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t FtpControlStream_GetContentLengthFrom213Response_mC838EFD3A20DEA9A8DA867CF8496229CB076EB96 (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, String_t* ___responseString0, const RuntimeMethod* method) ;
// System.DateTime System.Net.FtpControlStream::GetLastModifiedFrom213Response(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D FtpControlStream_GetLastModifiedFrom213Response_mFF3AD1F97838C9CEBC92D3A2C033962064ECEE79 (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, String_t* ___str0, const RuntimeMethod* method) ;
// System.String System.Net.FtpControlStream::GetLoginDirectory(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* FtpControlStream_GetLoginDirectory_m24BD744DF3263F2FD96A6B120FD5E014C759ABE9 (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, String_t* ___str0, const RuntimeMethod* method) ;
// System.Void System.Collections.ArrayList::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80 (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* __this, const RuntimeMethod* method) ;
// System.Boolean System.Net.FtpWebRequest::get_EnableSsl()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool FtpWebRequest_get_EnableSsl_mE30506F987A04EB9771FD530066BC18A9F2A7ED8_inline (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method) ;
// System.String System.Net.FtpControlStream::FormatFtpCommand(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* FtpControlStream_FormatFtpCommand_m29176141DC970F6084AA0572E60CDF71F5A6BABB (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, String_t* ___command0, String_t* ___parameter1, const RuntimeMethod* method) ;
// System.Void System.Net.CommandStream/PipelineEntry::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PipelineEntry__ctor_m3988E03D67CAC7725DDD334A772C465FCDD58002 (PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* __this, String_t* ___command0, const RuntimeMethod* method) ;
// System.Void System.Net.FtpControlStream::set_Credentials(System.Net.NetworkCredential)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpControlStream_set_Credentials_mB7B4723790E93C6A35DA14B680F74E087EE7675E (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* ___value0, const RuntimeMethod* method) ;
// System.Net.NetworkCredential System.Net.FtpControlStream::get_Credentials()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* FtpControlStream_get_Credentials_m58332EC011855E9A49AF9938434859AF08C7CE7F (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, const RuntimeMethod* method) ;
// System.String System.Net.NetworkCredential::get_UserName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NetworkCredential_get_UserName_mEBB5D5B4928F1868DD79A104CF2BAFCFAC88AFA1 (NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* __this, const RuntimeMethod* method) ;
// System.String System.Net.NetworkCredential::get_Domain()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NetworkCredential_get_Domain_mFFC454BD64B52DC2FFA09971876B56A2B337DE17 (NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* __this, const RuntimeMethod* method) ;
// System.Boolean System.String::IsNullOrEmpty(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A (String_t* ___value0, const RuntimeMethod* method) ;
// System.String System.String::Concat(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method) ;
// System.String System.Net.NetworkCredential::get_Password()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NetworkCredential_get_Password_m7F0F54ED0E4A41F66513296C4E3063D70AF6036C (NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* __this, const RuntimeMethod* method) ;
// System.Int32 System.String::get_Length()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method) ;
// System.Void System.Net.CommandStream/PipelineEntry::.ctor(System.String,System.Net.CommandStream/PipelineEntryFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PipelineEntry__ctor_mCF62FB0B8F6602CF2081D896C0232FB7B9F31881 (PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* __this, String_t* ___command0, int32_t ___flags1, const RuntimeMethod* method) ;
// System.Boolean System.Net.FtpMethodInfo::HasFlag(System.Net.FtpMethodFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FtpMethodInfo_HasFlag_mE4178764BE8879A93F8E9A4A3737528A2BE3F775 (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* __this, int32_t ___flags0, const RuntimeMethod* method) ;
// System.Void System.Net.FtpControlStream::GetPathInfo(System.Net.FtpControlStream/GetPathOption,System.Uri,System.String&,System.String&,System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpControlStream_GetPathInfo_m2805EDE029970250B0F50068777129168ACF1A6F (int32_t ___pathOption0, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___uri1, String_t** ___path2, String_t** ___directory3, String_t** ___filename4, const RuntimeMethod* method) ;
// System.Void System.Net.WebException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebException__ctor_mFBC3890EC80132004827F36950EEB651595BF277 (WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Boolean System.String::op_Inequality(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method) ;
// System.Boolean System.Net.FtpMethodInfo::get_IsCommandOnly()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FtpMethodInfo_get_IsCommandOnly_m908F15518314673A19C0757AA67E24374709D719 (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* __this, const RuntimeMethod* method) ;
// System.Boolean System.Net.FtpWebRequest::get_UseBinary()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool FtpWebRequest_get_UseBinary_mF3DE86086AD5AD72D92B04325590EA25E2597591_inline (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method) ;
// System.Boolean System.Net.FtpWebRequest::get_UsePassive()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool FtpWebRequest_get_UsePassive_m3934FCB6A521CBDC77018736E820BAA8978135BC_inline (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method) ;
// System.Net.Sockets.AddressFamily System.Net.IPAddress::get_AddressFamily()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IPAddress_get_AddressFamily_m1CE4BCCE499BD70B22F9E37B3F266F9306A98C21 (IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* __this, const RuntimeMethod* method) ;
// System.Void System.Net.FtpControlStream::CreateFtpListenerSocket(System.Net.FtpWebRequest)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpControlStream_CreateFtpListenerSocket_mC7CAB6085D9ECF4C194F053CFC1AC34AFB8F323F (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* ___request0, const RuntimeMethod* method) ;
// System.String System.Net.FtpControlStream::GetPortCommandLine(System.Net.FtpWebRequest)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* FtpControlStream_GetPortCommandLine_mAA8762A087F108ABA5DE42D38AD916C9CFA03194 (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* ___request0, const RuntimeMethod* method) ;
// System.Int64 System.Net.FtpWebRequest::get_ContentOffset()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t FtpWebRequest_get_ContentOffset_mA4ECBD88A0B0834C16BF00D976B20AF95D87701B_inline (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method) ;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::get_InvariantCulture()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425 (const RuntimeMethod* method) ;
// System.String System.Int64::ToString(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int64_ToString_m5250B67D3E89B8EB829FB26136E744F1F141B7FD (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ;
// System.String System.String::Concat(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method) ;
// System.String System.Net.FtpWebRequest::get_RenameTo()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* FtpWebRequest_get_RenameTo_m582E665F04E3524E6E4F872D30E4DD30955760E5_inline (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method) ;
// System.Boolean System.String::StartsWith(System.String,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_StartsWith_mA2A4405B1B9F3653A6A9AA7F223F68D86A0C6264 (String_t* __this, String_t* ___value0, int32_t ___comparisonType1, const RuntimeMethod* method) ;
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E (RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ___handle0, const RuntimeMethod* method) ;
// System.String SR::Format(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_Format_mB99C6F1BE061EA1427A45176E0CAFB2A2C76D03F (String_t* ___resourceFormat0, RuntimeObject* ___p11, const RuntimeMethod* method) ;
// System.Int32 System.Net.FtpControlStream::GetPortV4(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FtpControlStream_GetPortV4_mED40942A0B437AFC658378BB5BFDFB21C0ADC1B5 (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, String_t* ___responseString0, const RuntimeMethod* method) ;
// System.Int32 System.Net.FtpControlStream::GetPortV6(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FtpControlStream_GetPortV6_m45FC9306A5E97C22B2778C2FAD6EFF882C98870D (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, String_t* ___responseString0, const RuntimeMethod* method) ;
// System.Void System.Net.NetEventSource::Fail(System.Object,System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetEventSource_Fail_m07530DCF1F3780671CA9D866BD5A0B681C0DF324 (RuntimeObject* ___thisOrContextObject0, RuntimeObject* ___message1, String_t* ___memberName2, const RuntimeMethod* method) ;
// System.Net.Sockets.Socket System.Net.FtpControlStream::CreateFtpDataSocket(System.Net.FtpWebRequest,System.Net.Sockets.Socket)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* FtpControlStream_CreateFtpDataSocket_mDDD4CC879C2BBDB4956033BB52781B60B262B56C (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* ___request0, Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* ___templateSocket1, const RuntimeMethod* method) ;
// System.Net.WebException System.Net.ExceptionHelper::get_RequestAbortedException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* ExceptionHelper_get_RequestAbortedException_m3DF6599ECE269D18BE8B09099E6D8A9E6692B309 (const RuntimeMethod* method) ;
// System.Net.EndPoint System.Net.Sockets.Socket::get_LocalEndPoint()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EndPoint_t6233F4E2EB9F0F2D36E187F12BE050E6D8B73564* Socket_get_LocalEndPoint_m3A2B4E60F0096E2DB31F7C28EF3CDE148D256E26 (Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* __this, const RuntimeMethod* method) ;
// System.Void System.Net.IPEndPoint::.ctor(System.Net.IPAddress,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IPEndPoint__ctor_m902C98F9E3F36B20B3C2E030AA91B62E2BC7A85A (IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB* __this, IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* ___address0, int32_t ___port1, const RuntimeMethod* method) ;
// System.Void System.Net.Sockets.Socket::Bind(System.Net.EndPoint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Socket_Bind_m137559EBA78A72ED4ADF8B56F5C535CE638165AA (Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* __this, EndPoint_t6233F4E2EB9F0F2D36E187F12BE050E6D8B73564* ___localEP0, const RuntimeMethod* method) ;
// System.Void System.Net.NetEventSource::Info(System.Object,System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetEventSource_Info_m550D5CB6271122B96B82DD45D65FCB037532E5E8 (RuntimeObject* ___thisOrContextObject0, RuntimeObject* ___message1, String_t* ___memberName2, const RuntimeMethod* method) ;
// System.IAsyncResult System.Net.Sockets.Socket::BeginConnect(System.Net.EndPoint,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Socket_BeginConnect_m5CBFB6B9DC973279CDC9E8935431972464F9E0B4 (Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* __this, EndPoint_t6233F4E2EB9F0F2D36E187F12BE050E6D8B73564* ___remoteEP0, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___callback1, RuntimeObject* ___state2, const RuntimeMethod* method) ;
// System.Void System.Net.Sockets.Socket::Connect(System.Net.EndPoint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Socket_Connect_m874A510F986F4D91446B2F53688D0BCFFE0A6BE1 (Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* __this, EndPoint_t6233F4E2EB9F0F2D36E187F12BE050E6D8B73564* ___remoteEP0, const RuntimeMethod* method) ;
// System.IAsyncResult System.Net.Sockets.Socket::BeginAccept(System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Socket_BeginAccept_mF6EA42D150734FE0A259576E0C8EAC76CF5B07B2 (Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* __this, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___callback0, RuntimeObject* ___state1, const RuntimeMethod* method) ;
// System.Net.Sockets.Socket System.Net.Sockets.Socket::Accept()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* Socket_Accept_m11B031FF408E1899034B993B352178D9D6B37C1A (Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* __this, const RuntimeMethod* method) ;
// System.String System.Uri::GetComponents(System.UriComponents,System.UriFormat)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_GetComponents_m30E3EAD4E9A39939456E764FEF94AFD4D6B7532A (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, int32_t ___components0, int32_t ___format1, const RuntimeMethod* method) ;
// System.Int32 System.String::LastIndexOf(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_LastIndexOf_m6BB3E7E1B48702D4C715FA423F8A822C053B290E (String_t* __this, Il2CppChar ___value0, const RuntimeMethod* method) ;
// System.String System.String::Substring(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE (String_t* __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method) ;
// System.Char System.String::get_Chars(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3 (String_t* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Byte[] System.Net.IPAddress::GetAddressBytes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* IPAddress_GetAddressBytes_m1501E0143C791E3A065E508F5535D8E206652EC9 (IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* __this, const RuntimeMethod* method) ;
// System.Void System.Text.StringBuilder::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m2619CA8D2C3476DF1A302D9D941498BB1C6164C5 (StringBuilder_t* __this, int32_t ___capacity0, const RuntimeMethod* method) ;
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m2AE3195218B68BDDF01EF85928C76D6B596ED18D (StringBuilder_t* __this, uint8_t ___value0, const RuntimeMethod* method) ;
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1 (StringBuilder_t* __this, Il2CppChar ___value0, const RuntimeMethod* method) ;
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m283B617AC29FB0DD6F3A7D8C01D385C25A5F0FAA (StringBuilder_t* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo::get_InvariantInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621 (const RuntimeMethod* method) ;
// System.String System.Int32::ToString(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m3B2730D9F5B0C1C57DCCC8B8DCFB8E5EC4E8979B (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ;
// System.String[] System.String::Split(System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* String_Split_m101D35FEC86371D2BB4E3480F6F896880093B2E9 (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___separator0, const RuntimeMethod* method) ;
// System.Void System.FormatException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Int64 System.Convert::ToInt64(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m921C5387614F1F5D2582F337D03BFC0B0EA2AC3D (String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) ;
// System.Int32 System.Convert::ToInt32(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_mA763F077DBFEB1F6A3B54471BE1DF07D667A6834 (String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) ;
// System.Int16 System.Convert::ToInt16(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m8532226DD71F9B6E701B8278A2AA8BE9EAD79DD8 (String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) ;
// System.Void System.DateTime::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime__ctor_mA66CE5141E86C5BC75F79543F99A7BD77B420201 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, int32_t ___year0, int32_t ___month1, int32_t ___day2, int32_t ___hour3, int32_t ___minute4, int32_t ___second5, int32_t ___millisecond6, const RuntimeMethod* method) ;
// System.DateTime System.DateTime::ToLocalTime()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_ToLocalTime_mD87626169251A26AF699DAE90A1C31190AD30B94 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(System.Array,System.RuntimeFieldHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeHelpers_InitializeArray_mE10C3436BA703E4D9D41B3F8F365E4C34F9926EF (RuntimeArray* ___array0, RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 ___fldHandle1, const RuntimeMethod* method) ;
// System.String System.String::TrimEnd(System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_TrimEnd_mD7CFB0999EEEE20E3A869516EBCE07E8AB5BD529 (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___trimChars0, const RuntimeMethod* method) ;
// System.String System.String::Replace(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Replace_mABDB7003A1D0AEDCAE9FF85E3DFFFBA752D2A166 (String_t* __this, String_t* ___oldValue0, String_t* ___newValue1, const RuntimeMethod* method) ;
// System.String System.Uri::get_AbsolutePath()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_AbsolutePath_mABB93DD30D4C0F11948DE5C117650B1C3A9925CA (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
// System.Void System.UriBuilder::.ctor(System.Uri)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UriBuilder__ctor_mD45945E23BE6C1AA8C56E64DEC181E36EE826C25 (UriBuilder_t7931690A4195FCF7400D95D3107C3FB1D55A1C72* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___uri0, const RuntimeMethod* method) ;
// System.Void System.UriBuilder::set_Path(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UriBuilder_set_Path_mD17EF197B4A8A764682938B468B647DAE716E9D0 (UriBuilder_t7931690A4195FCF7400D95D3107C3FB1D55A1C72* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Uri System.UriBuilder::get_Uri()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* UriBuilder_get_Uri_mD0DF3F7DDF7C56CC99E2D29E06C959F80A4171A1 (UriBuilder_t7931690A4195FCF7400D95D3107C3FB1D55A1C72* __this, const RuntimeMethod* method) ;
// System.Boolean System.Uri::TryCreate(System.Uri,System.String,System.Uri&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_TryCreate_m0653E526B4101798C6BD5D0D7D22B30EDD4EA4E8 (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___baseUri0, String_t* ___relativeUri1, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E** ___result2, const RuntimeMethod* method) ;
// System.Boolean System.Uri::IsBaseOf(System.Uri)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_IsBaseOf_m8A97015EF5FE3B91A413F678735EABB09D6CFB74 (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___uri0, const RuntimeMethod* method) ;
// System.String[] System.Uri::get_Segments()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* Uri_get_Segments_m823EACCF22A1B1D27771147C7B509702E21C2811 (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
// System.Int32 System.String::LastIndexOf(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_LastIndexOf_m8923DBD89F2B3E5A34190B038B48F402E0C17E40 (String_t* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Boolean System.Int64::TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Int64&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int64_TryParse_m280F0E3C898A7C3A57F35E3B136D4BFACE12122A (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, int64_t* ___result3, const RuntimeMethod* method) ;
// System.Int32 System.String::IndexOf(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966 (String_t* __this, Il2CppChar ___value0, const RuntimeMethod* method) ;
// System.Boolean System.Char::IsNumber(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsNumber_mF099A82125A3ACA2FDD2B751B04504E9B4E44897 (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method) ;
// System.Byte System.Convert::ToByte(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_mCBCFB5AB07D04AD6EE8D2E4A643A28294953507E (String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) ;
// System.Void System.Net.Sockets.Socket::Listen(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Socket_Listen_m734803DAC514E64828168AF9212D6A9EC63B32EC (Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* __this, int32_t ___backlog0, const RuntimeMethod* method) ;
// System.Int32 System.Net.IPEndPoint::get_Port()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t IPEndPoint_get_Port_mFBE1AF1C9CC7E68A46BF46AD3869CC9DC01CF429_inline (IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB* __this, const RuntimeMethod* method) ;
// System.String System.Net.FtpControlStream::FormatAddress(System.Net.IPAddress,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* FtpControlStream_FormatAddress_mB25FBE6AE9C810D3F72DDD79118F82D57EFAC294 (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* ___address0, int32_t ___Port1, const RuntimeMethod* method) ;
// System.String System.Net.FtpControlStream::FormatAddressV6(System.Net.IPAddress,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* FtpControlStream_FormatAddressV6_m3787064E91F973C183C1FFA9C8D9B4852369D62D (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* ___address0, int32_t ___port1, const RuntimeMethod* method) ;
// System.Exception System.Net.CommandStream::GenerateException(System.String,System.Net.WebExceptionStatus,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* CommandStream_GenerateException_m891A32F6C4DA9BF11336825DF694F0471376472D (CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123* __this, String_t* ___message0, int32_t ___status1, Exception_t* ___innerException2, const RuntimeMethod* method) ;
// System.Net.Sockets.AddressFamily System.Net.Sockets.Socket::get_AddressFamily()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Socket_get_AddressFamily_m42C390D31345314080EC35356ACFBBFF7E1123E5_inline (Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* __this, const RuntimeMethod* method) ;
// System.Net.Sockets.SocketType System.Net.Sockets.Socket::get_SocketType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Socket_get_SocketType_mAFBEF108992F069AF0B8AD26D47EBBEADB8D2661_inline (Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* __this, const RuntimeMethod* method) ;
// System.Net.Sockets.ProtocolType System.Net.Sockets.Socket::get_ProtocolType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Socket_get_ProtocolType_m364A0E823BF3EA78DAFC1ED3A6B39658FB6A23BB_inline (Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* __this, const RuntimeMethod* method) ;
// System.Void System.Net.Sockets.Socket::.ctor(System.Net.Sockets.AddressFamily,System.Net.Sockets.SocketType,System.Net.Sockets.ProtocolType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Socket__ctor_m35F1F4B4872E251867DA16460F06E903A30E4595 (Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* __this, int32_t ___addressFamily0, int32_t ___socketType1, int32_t ___protocolType2, const RuntimeMethod* method) ;
// System.Int32 System.Text.StringBuilder::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8 (StringBuilder_t* __this, const RuntimeMethod* method) ;
// System.Boolean System.Char::IsDigit(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsDigit_mC98DAF907860EFB7D26C3E126D80AD3A2CE72715 (Il2CppChar ___c0, const RuntimeMethod* method) ;
// System.Int32 System.String::IndexOf(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mCBADAB35416ED6F5F733DF46CC86C23E5C9E5A56 (String_t* __this, String_t* ___value0, int32_t ___startIndex1, const RuntimeMethod* method) ;
// System.Boolean System.Net.FtpMethodInfo::get_IsUpload()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FtpMethodInfo_get_IsUpload_m34E090D800423923B895D914383F63EF51019CEC (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* __this, const RuntimeMethod* method) ;
// System.Boolean System.Net.FtpMethodInfo::get_IsDownload()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FtpMethodInfo_get_IsDownload_m0D167463FDABE34B643B022F442A657A3CEA2EC4 (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* __this, const RuntimeMethod* method) ;
// System.Void System.Object::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* method) ;
// System.Void System.IO.Stream::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stream__ctor_mE8B074A0EBEB026FFF14062AB4B8A78E17EFFBF0 (Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* __this, const RuntimeMethod* method) ;
// System.Void System.IO.Stream::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stream_Dispose_m9B37BD21A57F8F2BD20EE353DE14405700810C5C (Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* __this, bool ___disposing0, const RuntimeMethod* method) ;
// System.Void System.Threading.Monitor::Exit(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9 (RuntimeObject* ___obj0, const RuntimeMethod* method) ;
// System.Void System.Threading.Monitor::Enter(System.Object,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4 (RuntimeObject* ___obj0, bool* ___lockTaken1, const RuntimeMethod* method) ;
// System.Void System.Net.FtpWebRequest::DataStreamClosed(System.Net.CloseExState)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebRequest_DataStreamClosed_m39A5D8350B2CC390416F67CE81165D4A69425CBD (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, int32_t ___closeState0, const RuntimeMethod* method) ;
// System.Void System.Net.Sockets.NetworkStream::Close(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkStream_Close_mF96B49D4D67AC90FEBA52F7A7642450C496F15A1 (NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* __this, int32_t ___timeout0, const RuntimeMethod* method) ;
// System.Net.WebResponse System.Net.WebException::get_Response()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* WebException_get_Response_m808BF96464DDCE6C66D633355101C69800A5A7E7_inline (WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* __this, const RuntimeMethod* method) ;
// System.Net.FtpStatusCode System.Net.FtpWebResponse::get_StatusCode()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t FtpWebResponse_get_StatusCode_m874357CEF43E1D988350EE6229F996F0F41DB795_inline (FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* __this, const RuntimeMethod* method) ;
// System.Boolean System.Net.FtpWebRequest::get_Aborted()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool FtpWebRequest_get_Aborted_mD54BB6D8935C6139F80371D631FA815961BAEA1D_inline (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method) ;
// System.Void System.Net.FtpDataStream::CheckError()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpDataStream_CheckError_mC26104FB2C3DEC62A33E10405B121830A3AEA959 (FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* __this, const RuntimeMethod* method) ;
// System.Void System.Net.LazyAsyncResult::InvokeCallback(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LazyAsyncResult_InvokeCallback_m4A1E1A15818F5ED6E6DBAEB48104A06529A11C9A (LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* __this, RuntimeObject* ___result0, const RuntimeMethod* method) ;
// System.Boolean System.Net.LazyAsyncResult::get_IsCompleted()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LazyAsyncResult_get_IsCompleted_mE0A803876FB2D312361FCA5F631535B09F6C3125 (LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* __this, const RuntimeMethod* method) ;
// System.Void System.Net.LazyAsyncResult::.ctor(System.Object,System.Object,System.AsyncCallback)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LazyAsyncResult__ctor_m62BAF64A732506AD7544741700A0333B22CADE2F (LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* __this, RuntimeObject* ___myObject0, RuntimeObject* ___myState1, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___myCallBack2, const RuntimeMethod* method) ;
// System.Object System.Net.LazyAsyncResult::InternalWaitForCompletion()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* LazyAsyncResult_InternalWaitForCompletion_mE52E38E8478ACA2C9344716035CCC46E5CA32A59 (LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* __this, const RuntimeMethod* method) ;
// System.Void System.Runtime.ExceptionServices.ExceptionDispatchInfo::Throw(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExceptionDispatchInfo_Throw_mFA716299AF77061945002B15FC713A3FBD6895F1 (Exception_t* ___source0, const RuntimeMethod* method) ;
// System.String System.String::ToUpper(System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToUpper_mFC5C17C8BFF52540CC7A73E36DFC9617281325D1 (String_t* __this, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture0, const RuntimeMethod* method) ;
// System.Void System.ArgumentException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___message0, String_t* ___paramName1, const RuntimeMethod* method) ;
// System.Void System.Net.FtpMethodInfo::.ctor(System.String,System.Net.FtpOperation,System.Net.FtpMethodFlags,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpMethodInfo__ctor_mC171C452F97CFBCC30ADEA3982ECBE6469C4523D (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* __this, String_t* ___method0, int32_t ___operation1, int32_t ___flags2, String_t* ___httpCommand3, const RuntimeMethod* method) ;
// System.Boolean System.Net.FtpWebRequest::get_InUse()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FtpWebRequest_get_InUse_mBBB7CD6328BBE78BEB1E032E2D5A0708BF9BE208 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method) ;
// System.Void System.InvalidOperationException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Net.FtpMethodInfo System.Net.FtpMethodInfo::GetMethodInfo(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* FtpMethodInfo_GetMethodInfo_mE5CB9773AE2ECF74C9C39DCCB562B616767BE39B (String_t* ___method0, const RuntimeMethod* method) ;
// System.Void System.ArgumentNullException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __this, String_t* ___paramName0, const RuntimeMethod* method) ;
// System.Net.NetworkCredential System.Net.CredentialCache::get_DefaultNetworkCredentials()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* CredentialCache_get_DefaultNetworkCredentials_m5C67A21E1BD70EE41FA927D7603622FBA7F10BA6_inline (const RuntimeMethod* method) ;
// System.Void System.Net.WebRequest::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebRequest__ctor_m8A7037980E4A7E78EEF420F0C38A36C10DE3D642 (WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* __this, const RuntimeMethod* method) ;
// System.String System.Uri::get_Scheme()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_Scheme_m29106D5109538220B22FC49DE7B44040E51B0F6F (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, String_t* ___paramName0, const RuntimeMethod* method) ;
// System.Void System.Net.TimerThread/Callback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Callback__ctor_mE36A85A258851A46EE477BBE1E87B5751C3CC9A9 (Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.String System.Uri::get_UserInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_UserInfo_mC0189C851F71ACF0B48A462E74C7F3EB86501C8D (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
// System.String System.Uri::UnescapeDataString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_UnescapeDataString_mD0A4732F7ED9CA5DB9E46D802971B5406094CC77 (String_t* ___stringToUnescape0, const RuntimeMethod* method) ;
// System.Void System.Net.NetworkCredential::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkCredential__ctor_mE50C6F50A386C1116DDEC3F21BD7A2894BDC902C (NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* __this, String_t* ___userName0, String_t* ___password1, const RuntimeMethod* method) ;
// System.Void System.Net.NetEventSource::Enter(System.Object,System.FormattableString,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetEventSource_Enter_m5EF1ED6D39F9FF936F537BE4C4E293583E8A0494 (RuntimeObject* ___thisOrContextObject0, FormattableString_t4D7D221057108596F60CCCC83532037E2399BE0D* ___formattableString1, String_t* ___memberName2, const RuntimeMethod* method) ;
// System.Void System.Net.NetEventSource::Exit(System.Object,System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetEventSource_Exit_m7AD7FF4004F7F0249F639B1087B11C15A526CF10 (RuntimeObject* ___thisOrContextObject0, RuntimeObject* ___arg01, String_t* ___memberName2, const RuntimeMethod* method) ;
// System.Void System.Net.FtpWebRequest::CheckError()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebRequest_CheckError_m0161167F168C34FC6CB654FD038950680B4EB204 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method) ;
// System.DateTime System.DateTime::get_UtcNow()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_get_UtcNow_m5D776FFEBC81592B361E4C7AF373297C5DFB46FD (const RuntimeMethod* method) ;
// System.TimeSpan System.DateTime::op_Subtraction(System.DateTime,System.DateTime)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A DateTime_op_Subtraction_m41335EF0E6DCD52B23C64916CB973A0B4A9E0387 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___d10, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___d21, const RuntimeMethod* method) ;
// System.Double System.TimeSpan::get_TotalMilliseconds()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double TimeSpan_get_TotalMilliseconds_m3506C1A49F1FE37A82F3027EA061D18215EF87CF (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, const RuntimeMethod* method) ;
// System.Net.WebException System.Net.ExceptionHelper::get_TimeoutException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* ExceptionHelper_get_TimeoutException_m952E47F158CFD9B5B3D42F89B032E0ED69C1CFCB (const RuntimeMethod* method) ;
// System.Net.FtpWebRequest/RequestStage System.Net.FtpWebRequest::FinishRequestStage(System.Net.FtpWebRequest/RequestStage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FtpWebRequest_FinishRequestStage_m46BBC97BEC097B3E0898D53A60463393BBC961FA (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, int32_t ___stage0, const RuntimeMethod* method) ;
// System.Void System.Net.FtpWebRequest::SubmitRequest(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebRequest_SubmitRequest_mD0DDB9A82DCD6D83C0BD14771B8C3DCB59436B1C (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, bool ___isAsync0, const RuntimeMethod* method) ;
// System.Void System.Net.FtpWebRequest::EnsureFtpWebResponse(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebRequest_EnsureFtpWebResponse_mB605C3DDD57BE29978FDA23340B5D280DD6FBAD9 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, Exception_t* ___exception0, const RuntimeMethod* method) ;
// System.Void System.Net.NetEventSource::Error(System.Object,System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetEventSource_Error_mD371BE6D7A90C126AA0E7C839979F4439C9E22AD (RuntimeObject* ___thisOrContextObject0, RuntimeObject* ___message1, String_t* ___memberName2, const RuntimeMethod* method) ;
// System.Void System.Net.FtpWebRequest::SetException(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebRequest_SetException_m273ED89B507A23F8C9B7F9B752EC32CAD27E59A8 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, Exception_t* ___exception0, const RuntimeMethod* method) ;
// System.Void System.Net.NetEventSource::Exit(System.Object,System.FormattableString,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetEventSource_Exit_m407F70ED0A9E9B586AB9FF87B9C15229468C9D36 (RuntimeObject* ___thisOrContextObject0, FormattableString_t4D7D221057108596F60CCCC83532037E2399BE0D* ___formattableString1, String_t* ___memberName2, const RuntimeMethod* method) ;
// System.Void System.Net.ContextAwareResult::.ctor(System.Object,System.Object,System.AsyncCallback)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContextAwareResult__ctor_m708591C2F982BAA23EC1D7A0A325F9452D1C6BB1 (ContextAwareResult_t3CCEE7D0B6510492A4EE1A2F828BDDF012ADBFDA* __this, RuntimeObject* ___myObject0, RuntimeObject* ___myState1, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___myCallBack2, const RuntimeMethod* method) ;
// System.Void System.Net.ContextAwareResult::.ctor(System.Boolean,System.Boolean,System.Object,System.Object,System.AsyncCallback)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContextAwareResult__ctor_m20CB91BD59CFD104B18692B6316D31E6F33E1A42 (ContextAwareResult_t3CCEE7D0B6510492A4EE1A2F828BDDF012ADBFDA* __this, bool ___captureIdentity0, bool ___forceCaptureContext1, RuntimeObject* ___myObject2, RuntimeObject* ___myState3, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___myCallBack4, const RuntimeMethod* method) ;
// System.Object System.Net.ContextAwareResult::StartPostingAsyncOp()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ContextAwareResult_StartPostingAsyncOp_mD312F7E2A819DA980A35D213519E8A2F72B1AA7F (ContextAwareResult_t3CCEE7D0B6510492A4EE1A2F828BDDF012ADBFDA* __this, const RuntimeMethod* method) ;
// System.Boolean System.Net.ContextAwareResult::FinishPostingAsyncOp()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ContextAwareResult_FinishPostingAsyncOp_mF7316900AFD1FF971CF886849C6CF22417C65935 (ContextAwareResult_t3CCEE7D0B6510492A4EE1A2F828BDDF012ADBFDA* __this, const RuntimeMethod* method) ;
// System.Boolean System.Net.LazyAsyncResult::get_InternalPeekCompleted()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LazyAsyncResult_get_InternalPeekCompleted_m4E25420F3F5315AEA52DB59D671C65A3103EF2DE (LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* __this, const RuntimeMethod* method) ;
// System.Void System.Net.LazyAsyncResult::InvokeCallback()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LazyAsyncResult_InvokeCallback_m1429C8FB483908BC3A0D6C754F2F27554AFE7439 (LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* __this, const RuntimeMethod* method) ;
// System.Boolean System.Net.LazyAsyncResult::get_EndCalled()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool LazyAsyncResult_get_EndCalled_mB9C44CD3D27331014867DB4D1957C4E10AB888B8_inline (LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* __this, const RuntimeMethod* method) ;
// System.Void System.Net.LazyAsyncResult::set_EndCalled(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void LazyAsyncResult_set_EndCalled_m90572F07D3130B1B2E9E1AF29B697EF61E8BFECF_inline (LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Void System.Net.FtpWebRequest::CreateConnectionAsync()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebRequest_CreateConnectionAsync_m32CC4FFE6A220E2BDDBFBFD2F5350959A362D023 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method) ;
// System.Net.FtpControlStream System.Net.FtpWebRequest::CreateConnection()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* FtpWebRequest_CreateConnection_m93965D472DEDD396B49FFEAFACE7F24B3E6E29B9 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method) ;
// System.Int32 System.Net.FtpWebRequest::get_RemainingTimeout()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t FtpWebRequest_get_RemainingTimeout_m22F8B622745C3B79728C7378C623523DB932FB0D_inline (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method) ;
// System.Void System.Net.NetworkStreamWrapper::SetSocketTimeoutOption(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkStreamWrapper_SetSocketTimeoutOption_mEF49FAF0A48C4B65816D8BF28868B897835419AF (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, int32_t ___timeout0, const RuntimeMethod* method) ;
// System.IO.Stream System.Net.FtpWebRequest::TimedSubmitRequestHelper(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* FtpWebRequest_TimedSubmitRequestHelper_m1BAC9B293CE60F33C0BE9B556AC516F249526AE5 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, bool ___isAsync0, const RuntimeMethod* method) ;
// System.Boolean System.Net.FtpWebRequest::AttemptedRecovery(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FtpWebRequest_AttemptedRecovery_m37F888BE32F44DAA4C7974B0B81514E2D5177288 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, Exception_t* ___e0, const RuntimeMethod* method) ;
// System.Exception System.Exception::get_InnerException()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Exception_t* Exception_get_InnerException_m0C1BDB339C786BA4DA7D2C1AD214571CFBBB1410_inline (Exception_t* __this, const RuntimeMethod* method) ;
// System.Net.Sockets.SocketError System.Net.Sockets.SocketException::get_SocketErrorCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SocketException_get_SocketErrorCode_m84FB2D308F046A24A1355975F3BF689C988224C6 (SocketException_t6D10102A62EA871BD31748E026A372DB6804083B* __this, const RuntimeMethod* method) ;
// System.Runtime.CompilerServices.AsyncVoidMethodBuilder System.Runtime.CompilerServices.AsyncVoidMethodBuilder::Create()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsyncVoidMethodBuilder_t253E37B63E7E7B504878AE6563347C147F98EF2D AsyncVoidMethodBuilder_Create_mE6D291637BF7B4B6D3F8BFCA14920B9200D7A502 (const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder::Start<System.Net.FtpWebRequest/<CreateConnectionAsync>d__86>(TStateMachine&)
inline void AsyncVoidMethodBuilder_Start_TisU3CCreateConnectionAsyncU3Ed__86_t2A570F4B60E471D570D3866403BE7034E2929A6E_mB533C8375EAFF32F9CD221842EE38C58C343AC93 (AsyncVoidMethodBuilder_t253E37B63E7E7B504878AE6563347C147F98EF2D* __this, U3CCreateConnectionAsyncU3Ed__86_t2A570F4B60E471D570D3866403BE7034E2929A6E* ___stateMachine0, const RuntimeMethod* method)
{
(( void (*) (AsyncVoidMethodBuilder_t253E37B63E7E7B504878AE6563347C147F98EF2D*, U3CCreateConnectionAsyncU3Ed__86_t2A570F4B60E471D570D3866403BE7034E2929A6E*, const RuntimeMethod*))AsyncVoidMethodBuilder_Start_TisU3CCreateConnectionAsyncU3Ed__86_t2A570F4B60E471D570D3866403BE7034E2929A6E_mB533C8375EAFF32F9CD221842EE38C58C343AC93_gshared)(__this, ___stateMachine0, method);
}
// System.Int32 System.Uri::get_Port()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Uri_get_Port_m7A1413AC9D9A2FC5DC8A7F89DF4A01ACA0241A02 (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
// System.Void System.Net.Sockets.TcpClient::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TcpClient__ctor_m709FAC4D5B9DDB279F9B97D90D3164B92E1F2C87 (TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58* __this, const RuntimeMethod* method) ;
// System.Void System.Net.Sockets.TcpClient::Connect(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TcpClient_Connect_mED87D733E342BEAF8DCB947F612FD25C505753BB (TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58* __this, String_t* ___hostname0, int32_t ___port1, const RuntimeMethod* method) ;
// System.Exception System.Net.FtpWebRequest::TranslateConnectException(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* FtpWebRequest_TranslateConnectException_mAB63B1B7A859BB09EAB69EB0C4429F41221954D7 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, Exception_t* ___e0, const RuntimeMethod* method) ;
// System.Void System.Net.FtpControlStream::.ctor(System.Net.Sockets.TcpClient)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpControlStream__ctor_m1A36E41268DE5D5E34A2D2053A3F8C2B24511402 (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58* ___client0, const RuntimeMethod* method) ;
// System.IO.Stream System.Net.CommandStream::SubmitRequest(System.Net.WebRequest,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* CommandStream_SubmitRequest_m4F1F3F4EC4C455CAD8679549106ED73D4607D021 (CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123* __this, WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* ___request0, bool ___isAsync1, bool ___readInitalResponseOnConnect2, const RuntimeMethod* method) ;
// System.Net.TimerThread/Queue System.Net.FtpWebRequest::get_TimerQueue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Queue_t644DC21212BC432819522EDA395EB4562BE2CC47* FtpWebRequest_get_TimerQueue_m7CC11C6132CB0AF1494DD8333DA4AE9A74A3B083 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method) ;
// System.Void System.Net.FtpControlStream::AbortConnect()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpControlStream_AbortConnect_m4C13BC4A12ED03FBB94A225138AD6C0620EC707C (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, const RuntimeMethod* method) ;
// System.Net.TimerThread/Queue System.Net.TimerThread::GetOrCreateQueue(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Queue_t644DC21212BC432819522EDA395EB4562BE2CC47* TimerThread_GetOrCreateQueue_m461C7A3FC2CFAC20EF0C9EBEEF29D3C73BFF52F2 (int32_t ___durationMilliseconds0, const RuntimeMethod* method) ;
// System.Boolean System.Net.CommandStream::get_RecoverableFailure()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool CommandStream_get_RecoverableFailure_m0FF23E84547D7F7E7C4EA8C56443F4C18AEA5641_inline (CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123* __this, const RuntimeMethod* method) ;
// System.Net.WebExceptionStatus System.Net.WebException::get_Status()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t WebException_get_Status_m9B08D3B07C3D75A6783EADB1215EB54E2D3B9822_inline (WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* __this, 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_m937A4670EAF10FD9EFA1E0AEAAE27515293339FD (WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* __this, String_t* ___message0, Exception_t* ___innerException1, int32_t ___status2, WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* ___response3, const RuntimeMethod* method) ;
// System.Void System.Net.WebException::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebException__ctor_m8075F9F7345CECCBDB276E0B67DE820A9F7D03E9 (WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* __this, String_t* ___message0, Exception_t* ___innerException1, const RuntimeMethod* method) ;
// System.String System.Net.FtpControlStream::get_ExitMessage()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* FtpControlStream_get_ExitMessage_m6E2214D55C11B97FC9FF7CCDC2F1072CDA01DF8F (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, const RuntimeMethod* method) ;
// System.Void System.Net.FtpWebResponse::UpdateStatus(System.Net.FtpStatusCode,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebResponse_UpdateStatus_mEB271B815F8918C8F4681301A2736BAC5C5877FB (FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* __this, int32_t ___statusCode0, String_t* ___statusLine1, String_t* ___exitMessage2, const RuntimeMethod* method) ;
// System.Void System.Net.FtpWebRequest::AsyncRequestCallback(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebRequest_AsyncRequestCallback_m16A0D27F8F25B02C06FB35441D0FFC04B53B4EDF (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, RuntimeObject* ___obj0, const RuntimeMethod* method) ;
// System.Void System.Net.FtpWebRequest::SyncRequestCallback(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebRequest_SyncRequestCallback_mBA4F7551E61FCC70A683BB0275E640ED308A1711 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, RuntimeObject* ___obj0, const RuntimeMethod* method) ;
// System.Void System.Net.NetEventSource::Enter(System.Object,System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetEventSource_Enter_mCD132529EA0CFD5742953E7C36292B7C89676859 (RuntimeObject* ___thisOrContextObject0, RuntimeObject* ___arg01, String_t* ___memberName2, const RuntimeMethod* method) ;
// System.Void System.Net.NetEventSource::Associate(System.Object,System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetEventSource_Associate_m73516419B7057CA3028739C1C4093B1F0CAE3BCC (RuntimeObject* ___first0, RuntimeObject* ___second1, String_t* ___memberName2, const RuntimeMethod* method) ;
// System.Void System.Net.FtpDataStream::SetSocketTimeoutOption(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpDataStream_SetSocketTimeoutOption_m20EDF2440DC034CB6530BB97A53796A2DBAC88A8 (FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* __this, int32_t ___timeout0, const RuntimeMethod* method) ;
// System.Void System.Func`1<System.Security.Cryptography.X509Certificates.X509CertificateCollection>::.ctor(System.Object,System.IntPtr)
inline void Func_1__ctor_m617B6D7BE0843905AE0309A5B272CA2C280B147C (Func_1_t1A018D620D1CB4D4C91AA22993DD233AA8AB8AFB* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_1_t1A018D620D1CB4D4C91AA22993DD233AA8AB8AFB*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_1__ctor_m663374A863E492A515BE9626B6F0E444991834E8_gshared)(__this, ___object0, ___method1, method);
}
// T System.Threading.LazyInitializer::EnsureInitialized<System.Security.Cryptography.X509Certificates.X509CertificateCollection>(T&,System.Object&,System.Func`1<T>)
inline X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* LazyInitializer_EnsureInitialized_TisX509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE_m8C2BA161D5BB95A3574BCC8A822D91DAE99D831D (X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE** ___target0, RuntimeObject** ___syncLock1, Func_1_t1A018D620D1CB4D4C91AA22993DD233AA8AB8AFB* ___valueFactory2, const RuntimeMethod* method)
{
return (( X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* (*) (X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE**, RuntimeObject**, Func_1_t1A018D620D1CB4D4C91AA22993DD233AA8AB8AFB*, const RuntimeMethod*))LazyInitializer_EnsureInitialized_TisRuntimeObject_m321502C8F37B1E7454B1F8F146BEF2FC96D44CA4_gshared)(___target0, ___syncLock1, ___valueFactory2, method);
}
// System.Void System.Net.WebHeaderCollection::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebHeaderCollection__ctor_m9C77B3E5FD0A3637283AE2B7084F5ED5D8CD7369 (WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* __this, const RuntimeMethod* method) ;
// System.NotSupportedException System.Net.ExceptionHelper::get_PropertyNotSupportedException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* ExceptionHelper_get_PropertyNotSupportedException_m5CC325461533A050D3EF68316653B789963A0DA2 (const RuntimeMethod* method) ;
// System.Int32 System.Net.FtpWebRequest::get_ReadWriteTimeout()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t FtpWebRequest_get_ReadWriteTimeout_mB6F0DF85418ED4107E9AA448C46B289C3C36CECF_inline (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method) ;
// System.Int64 System.Net.FtpControlStream::get_ContentLength()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t FtpControlStream_get_ContentLength_mE520E47DE78B6FD130907992A13C5CE778286DC7_inline (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, const RuntimeMethod* method) ;
// System.Void System.Net.FtpWebResponse::SetResponseStream(System.IO.Stream)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebResponse_SetResponseStream_mD0530FA146A88F6AB357A887FBC201FE58549039 (FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream0, const RuntimeMethod* method) ;
// System.Uri System.Net.FtpControlStream::get_ResponseUri()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* FtpControlStream_get_ResponseUri_mC488459D89E1783FDC6DCA0DFB2EEC465BE165F0_inline (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, const RuntimeMethod* method) ;
// System.DateTime System.Net.FtpControlStream::get_LastModified()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D FtpControlStream_get_LastModified_m2C2AE6C823CB3CE01A1E62FF588781F535177258_inline (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, const RuntimeMethod* method) ;
// System.String System.Net.FtpControlStream::get_BannerMessage()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* FtpControlStream_get_BannerMessage_m021AB6E64BF1E73206DDC72A6B6C54505B2E890C (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, const RuntimeMethod* method) ;
// System.String System.Net.FtpControlStream::get_WelcomeMessage()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* FtpControlStream_get_WelcomeMessage_m90D94C1DFE0345CC50333F139A4A6F5FA424F05E (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, const RuntimeMethod* method) ;
// System.Void System.Net.FtpWebResponse::.ctor(System.IO.Stream,System.Int64,System.Uri,System.Net.FtpStatusCode,System.String,System.DateTime,System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebResponse__ctor_mAEF0E4781821381A13AE4E1B84179049E1E907A3 (FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___responseStream0, int64_t ___contentLength1, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___responseUri2, int32_t ___statusCode3, String_t* ___statusLine4, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___lastModified5, String_t* ___bannerMessage6, String_t* ___welcomeMessage7, String_t* ___exitMessage8, const RuntimeMethod* method) ;
// System.DateTime System.DateTime::get_Now()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_get_Now_mC336498972C48439ADCD5C50D35FAE0F2A48B0F0 (const RuntimeMethod* method) ;
// System.Void System.Net.CommandStream::CheckContinuePipeline()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CommandStream_CheckContinuePipeline_m2C62E98BD471E8CBF8CEE7C819762D324A13002A (CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123* __this, const RuntimeMethod* method) ;
// System.Void System.Net.NetworkCredential::.ctor(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkCredential__ctor_m6AACF996F73DA7CE81D33CD301DF98362E7D3EB2 (NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* __this, String_t* ___userName0, String_t* ___password1, String_t* ___domain2, const RuntimeMethod* method) ;
// System.Threading.Tasks.Task System.Net.Sockets.TcpClient::ConnectAsync(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* TcpClient_ConnectAsync_m5CA2391FA5091EC441C8E94068F5EE61863659BF (TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58* __this, String_t* ___host0, int32_t ___port1, const RuntimeMethod* method) ;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable System.Threading.Tasks.Task::ConfigureAwait(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4 (Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* __this, bool ___continueOnCapturedContext0, const RuntimeMethod* method) ;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter System.Runtime.CompilerServices.ConfiguredTaskAwaitable::GetAwaiter()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline (ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C* __this, const RuntimeMethod* method) ;
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter::get_IsCompleted()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_mB189574F29658A59CC4C890B70538A9C5E835850 (ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* __this, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,System.Net.FtpWebRequest/<CreateConnectionAsync>d__86>(TAwaiter&,TStateMachine&)
inline void AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CCreateConnectionAsyncU3Ed__86_t2A570F4B60E471D570D3866403BE7034E2929A6E_m482497952BF8CA8BCBB356F2AB0CD3302A9A57DD (AsyncVoidMethodBuilder_t253E37B63E7E7B504878AE6563347C147F98EF2D* __this, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* ___awaiter0, U3CCreateConnectionAsyncU3Ed__86_t2A570F4B60E471D570D3866403BE7034E2929A6E* ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncVoidMethodBuilder_t253E37B63E7E7B504878AE6563347C147F98EF2D*, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618*, U3CCreateConnectionAsyncU3Ed__86_t2A570F4B60E471D570D3866403BE7034E2929A6E*, const RuntimeMethod*))AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CCreateConnectionAsyncU3Ed__86_t2A570F4B60E471D570D3866403BE7034E2929A6E_m482497952BF8CA8BCBB356F2AB0CD3302A9A57DD_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter::GetResult()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_GetResult_mD51FDD775D0CF7511FEE2B6C144DB003DE73AC26 (ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* __this, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder::SetException(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncVoidMethodBuilder_SetException_mD9A6F5D1A99A62AC9DF322901BFDE05193CB177B (AsyncVoidMethodBuilder_t253E37B63E7E7B504878AE6563347C147F98EF2D* __this, Exception_t* ___exception0, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder::SetResult()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncVoidMethodBuilder_SetResult_m008490FDF057D5F5D871F537C7A58BE36027F3DC (AsyncVoidMethodBuilder_t253E37B63E7E7B504878AE6563347C147F98EF2D* __this, const RuntimeMethod* method) ;
// System.Void System.Net.FtpWebRequest/<CreateConnectionAsync>d__86::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CCreateConnectionAsyncU3Ed__86_MoveNext_m60DE305F205F71E0F000095E3B3BA38D3156735C (U3CCreateConnectionAsyncU3Ed__86_t2A570F4B60E471D570D3866403BE7034E2929A6E* __this, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncVoidMethodBuilder::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncVoidMethodBuilder_SetStateMachine_m48640FB81C34D4C2B5A5BBA7F5AE17DC50BF1A25 (AsyncVoidMethodBuilder_t253E37B63E7E7B504878AE6563347C147F98EF2D* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) ;
// System.Void System.Net.FtpWebRequest/<CreateConnectionAsync>d__86::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CCreateConnectionAsyncU3Ed__86_SetStateMachine_m95964DA1EC40A81F593B072FF797A49EA11C94EE (U3CCreateConnectionAsyncU3Ed__86_t2A570F4B60E471D570D3866403BE7034E2929A6E* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) ;
// System.Void System.Net.FtpWebRequest/<>c::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mD37F7BFBDE41951EB965B2BE6B39FE005FEAA064 (U3CU3Ec_tC2DEFD54496D8274D1995CC11D74A23339DC4447* __this, const RuntimeMethod* method) ;
// System.Void System.Security.Cryptography.X509Certificates.X509CertificateCollection::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509CertificateCollection__ctor_m237A27DC157785FBC50EBAF3562AAF0907BF97EB (X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* __this, const RuntimeMethod* method) ;
// System.Void System.Net.FtpWebRequest::.ctor(System.Uri)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebRequest__ctor_mE322968A58EF47DADD907F88EAA7FB4E00543B77 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___uri0, const RuntimeMethod* method) ;
// System.Void System.Net.WebResponse::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebResponse__ctor_mC11AFFC628F1E49E53431A3129ADC7CEA012306B (WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* __this, const RuntimeMethod* method) ;
// System.Void System.Net.FtpWebResponse/EmptyStream::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyStream__ctor_m4237F8952ABD99619B5D769C10165FD7330AB327 (EmptyStream_t195E304A631BA5798F6FED9BD12ADFDD157BB7E5* __this, const RuntimeMethod* method) ;
// T[] System.Array::Empty<System.Byte>()
inline ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m89F7B056854DF715AA3E2B78EB84D5FA3878E474_inline (const RuntimeMethod* method)
{
return (( ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* (*) (const RuntimeMethod*))Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m89F7B056854DF715AA3E2B78EB84D5FA3878E474_gshared_inline)(method);
}
// System.Void System.IO.MemoryStream::.ctor(System.Byte[],System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryStream__ctor_m5BAFB4CE0C3BB700DB05907C334DD64834D75D1B (MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, bool ___writable1, const RuntimeMethod* method) ;
// System.Net.Sockets.NetworkStream System.Net.Sockets.TcpClient::GetStream()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* TcpClient_GetStream_mDD54336B17D1267BD593E0A1EB9EDF3E9506AEBA (TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58* __this, const RuntimeMethod* method) ;
// System.Net.Sockets.Socket System.Net.Sockets.TcpClient::get_Client()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* TcpClient_get_Client_m38B7DCD73EB42C6BBE6340B5E4C0A8432C1140C0_inline (TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58* __this, const RuntimeMethod* method) ;
// System.Void System.Net.Sockets.TcpClient::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TcpClient_Dispose_m533DFCEE37B4299BBB5FACD9A98F8181EC2386D0 (TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58* __this, const RuntimeMethod* method) ;
// System.String System.Net.ValidationHelper::MakeStringNull(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValidationHelper_MakeStringNull_mFC25A67C52461BFCE2F30DB71823434BE37895C0 (String_t* ___stringValue0, const RuntimeMethod* method) ;
// System.Void System.Net.SystemNetworkCredential::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemNetworkCredential__ctor_m6C0643A3B325903C6E20EEC9940A6646F4AE77B6 (SystemNetworkCredential_tFBEE5F9E93DECB97C8622974DD2F2EBCB0CBD4FF* __this, const RuntimeMethod* method) ;
// System.NotImplementedException System.Net.ExceptionHelper::get_PropertyNotImplementedException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* ExceptionHelper_get_PropertyNotImplementedException_m5029CA867B083BAEE8D3D4577B1F571FEDDDE590 (const RuntimeMethod* method) ;
// System.NotImplementedException System.Net.ExceptionHelper::get_MethodNotImplementedException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* ExceptionHelper_get_MethodNotImplementedException_mF8678EE4622F1BBEEC6CDD54293E4D1B40A6D251 (const RuntimeMethod* method) ;
// System.Void System.SystemException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_mB30C3C4B8AB4DF43F4A453C97CCA76DC4AE63B80 (SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295* __this, const RuntimeMethod* method) ;
// System.Net.IPAddress[] System.Net.NclUtilities::get_LocalAddresses()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D* NclUtilities_get_LocalAddresses_mC5E3B1D849F83965C3F09ECF963B3CB252A8F22F (const RuntimeMethod* method) ;
// System.Boolean System.Net.IPAddress::Equals(System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPAddress_Equals_mC4514B3B7F9B95B79A1121706C115AECE61636C7 (IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* __this, RuntimeObject* ___comparandObj0, bool ___compareScopeId1, const RuntimeMethod* method) ;
// System.String System.Net.Dns::GetHostName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Dns_GetHostName_mF728787FF8A38620054B934FD08E021460A7C14D (const RuntimeMethod* method) ;
// System.Net.IPHostEntry System.Net.Dns::GetHostByName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IPHostEntry_tAAAEB0F40DB9F28BE601B5FE7DA1D76191C94490* Dns_GetHostByName_m554E787DE7A847C2730E1BE8F74C56E9594C3D3F (String_t* ___hostName0, const RuntimeMethod* method) ;
// System.Object System.Net.NclUtilities::get_LocalAddressesLock()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* NclUtilities_get_LocalAddressesLock_mDF3BAF033A2D11D70D5703B65302AB09525F7880 (const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Net.IPAddress>::.ctor()
inline void List_1__ctor_m4DCCB8CBFA1558C1187D5E5FADF609094C917012 (List_1_t7327FFE7269D37546789F1E11A915BE2192559DA* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t7327FFE7269D37546789F1E11A915BE2192559DA*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
}
// System.Net.IPHostEntry System.Net.NclUtilities::GetLocalHost()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IPHostEntry_tAAAEB0F40DB9F28BE601B5FE7DA1D76191C94490* NclUtilities_GetLocalHost_m7C77756A35C2F3CC268016902FA61CF88C5AD56F (const RuntimeMethod* method) ;
// System.String System.Net.IPHostEntry::get_HostName()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* IPHostEntry_get_HostName_m04050E3890C11BC5CB02BF48FBDD8AB4938FC390_inline (IPHostEntry_tAAAEB0F40DB9F28BE601B5FE7DA1D76191C94490* __this, const RuntimeMethod* method) ;
// System.String System.String::Substring(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472 (String_t* __this, int32_t ___startIndex0, const RuntimeMethod* method) ;
// System.Net.IPAddress[] System.Net.IPHostEntry::get_AddressList()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D* IPHostEntry_get_AddressList_m9D14D52EFB41C53C9C4A36D438E1333A99B7AA71_inline (IPHostEntry_tAAAEB0F40DB9F28BE601B5FE7DA1D76191C94490* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Net.IPAddress>::Add(T)
inline void List_1_Add_m655BAF14F34AC465AE933AC35F8441AA5A6D9B1C_inline (List_1_t7327FFE7269D37546789F1E11A915BE2192559DA* __this, IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t7327FFE7269D37546789F1E11A915BE2192559DA*, IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method);
}
// System.Int32 System.Collections.Generic.List`1<System.Net.IPAddress>::get_Count()
inline int32_t List_1_get_Count_m69C39631522BEA9DD1F2069A0D201536156AD264_inline (List_1_t7327FFE7269D37546789F1E11A915BE2192559DA* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t7327FFE7269D37546789F1E11A915BE2192559DA*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
}
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Net.IPAddress>::GetEnumerator()
inline Enumerator_tB8AEF8B79C74FADAB88026E46ED0B2EBEDC85E0B List_1_GetEnumerator_m286EF5D0B3E9D36E9D972D64A0BFCECBCF7B2B7E (List_1_t7327FFE7269D37546789F1E11A915BE2192559DA* __this, const RuntimeMethod* method)
{
return (( Enumerator_tB8AEF8B79C74FADAB88026E46ED0B2EBEDC85E0B (*) (List_1_t7327FFE7269D37546789F1E11A915BE2192559DA*, const RuntimeMethod*))List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Net.IPAddress>::Dispose()
inline void Enumerator_Dispose_m699E34C337E17EB975FB980A66567C9A63EC1681 (Enumerator_tB8AEF8B79C74FADAB88026E46ED0B2EBEDC85E0B* __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tB8AEF8B79C74FADAB88026E46ED0B2EBEDC85E0B*, const RuntimeMethod*))Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<System.Net.IPAddress>::get_Current()
inline IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* Enumerator_get_Current_mF378E129EAD0E8D26056E37C1A436D320BD0043D_inline (Enumerator_tB8AEF8B79C74FADAB88026E46ED0B2EBEDC85E0B* __this, const RuntimeMethod* method)
{
return (( IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* (*) (Enumerator_tB8AEF8B79C74FADAB88026E46ED0B2EBEDC85E0B*, const RuntimeMethod*))Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Net.IPAddress>::MoveNext()
inline bool Enumerator_MoveNext_m2177AB693CC65C0750BC64B79841B0949E04F4B2 (Enumerator_tB8AEF8B79C74FADAB88026E46ED0B2EBEDC85E0B* __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tB8AEF8B79C74FADAB88026E46ED0B2EBEDC85E0B*, const RuntimeMethod*))Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared)(__this, method);
}
// System.Object System.Threading.Interlocked::CompareExchange(System.Object&,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Interlocked_CompareExchange_mE9CAF0B3E78E95BA138B5623615D3C0242581977 (RuntimeObject** ___location10, RuntimeObject* ___value1, RuntimeObject* ___comparand2, const RuntimeMethod* method) ;
// System.String SR::GetString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_GetString_m2FF076D246665572FABD5913A9945E2A694DCB4D (String_t* ___name0, const RuntimeMethod* method) ;
// System.Void System.NotImplementedException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotImplementedException__ctor_m8339D1A685E8D77CAC9D3260C06B38B5C7CA7742 (NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Void System.NotSupportedException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.String System.Net.NetRes::GetWebStatusString(System.String,System.Net.WebExceptionStatus)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NetRes_GetWebStatusString_m35A90AB3B319FDDFAC2A2C4AA534504806B8555B (String_t* ___Res0, int32_t ___Status1, const RuntimeMethod* method) ;
// System.Boolean System.Type::op_Inequality(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5 (Type_t* ___left0, Type_t* ___right1, const RuntimeMethod* method) ;
// System.Object System.Activator::CreateInstance(System.Type,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Activator_CreateInstance_mFB735A8FC37FEBDE59EF1E0A0C87C702E5C82CC8 (Type_t* ___type0, int32_t ___bindingAttr1, Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235* ___binder2, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args3, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture4, const RuntimeMethod* method) ;
// System.Void System.Net.WebRequestPrefixElement::set_Creator(System.Net.IWebRequestCreate)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void WebRequestPrefixElement_set_Creator_mD7ECF1CF1BD68AC660ED2E3EE27582CF3903CCCE_inline (WebRequestPrefixElement_tBE0FDE8DE0352095DECA0964655D25E05E435C35* __this, RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Void System.Net.NetworkCredential::set_UserName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkCredential_set_UserName_m1C8F2119945861B5B7A512896A57F5E2C5537B2F (NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Void System.Net.NetworkCredential::set_Password(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkCredential_set_Password_mF0B964234CE60FF322135B014FFD8C28FEF5428B (NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Void System.Net.NetworkCredential::set_Domain(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkCredential_set_Domain_mF7A8246CA8329E6A86A7B2B5FA8C972371F5AABA (NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.String System.Net.NetworkCredential::InternalGetUserName()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* NetworkCredential_InternalGetUserName_m3C611F91EF4D0D363D0F727ED93B5BB71057BAA9_inline (NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* __this, const RuntimeMethod* method) ;
// System.String System.Net.NetworkCredential::InternalGetPassword()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NetworkCredential_InternalGetPassword_mC81DF1C74B2EC52EB60CFAC26B7D39D04EA0919C (NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* __this, const RuntimeMethod* method) ;
// System.Security.SecureString System.Net.UnsafeNclNativeMethods/SecureStringHelper::CreateSecureString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SecureString_t6FBEB334D455CA90093BD446BBEBA47FE5B20C6C* SecureStringHelper_CreateSecureString_mEB7FEF36DD2FD2DE189C394068B70EA57F56C6D9 (String_t* ___plainString0, const RuntimeMethod* method) ;
// System.String System.Net.NetworkCredential::InternalGetDomain()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* NetworkCredential_InternalGetDomain_m23031ACE871266F13428419D081B8F0B76388D82_inline (NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* __this, const RuntimeMethod* method) ;
// System.String System.Net.UnsafeNclNativeMethods/SecureStringHelper::CreateString(System.Security.SecureString)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SecureStringHelper_CreateString_m713072716339E2EE83265145F2F9FEEA105428C5 (SecureString_t6FBEB334D455CA90093BD446BBEBA47FE5B20C6C* ___secureString0, const RuntimeMethod* method) ;
// System.Void System.InvalidOperationException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m1BE9BD198B904AA1D94F4B10DA88077DFD44B7A5 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, const RuntimeMethod* method) ;
// System.Void System.InvalidOperationException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m8C443A05288C1BFFD969714B5AFB66FD3995824F (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___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_mD69929DB0BB2512240908B9EEE21778CB7B72DA9 (Exception_t* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method) ;
// System.Int32 System.Net.SocketAddress::get_Size()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SocketAddress_get_Size_mBBA7758844EE6209A287989E0DBAE534C9A21A11_inline (SocketAddress_tAB4BC630E51E2241E607F4070DA1AEE00B442A03* __this, const RuntimeMethod* method) ;
// System.Void System.IndexOutOfRangeException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IndexOutOfRangeException__ctor_m270ED9671475CE680EEA8C62A7A43308AE4188EF (IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82* __this, const RuntimeMethod* method) ;
// System.Int32 System.IntPtr::get_Size()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IntPtr_get_Size_mF11301B9A665D54B8DC89DC6AFE37728B91E6F10 (const RuntimeMethod* method) ;
// System.Void System.Net.SocketAddress::.ctor(System.Net.Sockets.AddressFamily,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SocketAddress__ctor_mD56F67A8077F542F2DA0ABAF693EE192F5910ECB (SocketAddress_tAB4BC630E51E2241E607F4070DA1AEE00B442A03* __this, int32_t ___family0, int32_t ___size1, const RuntimeMethod* method) ;
// System.Int64 System.Net.IPAddress::get_ScopeId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t IPAddress_get_ScopeId_m464E5C5597F29B05135EDCA6DDB1667EFA70EEF8 (IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* __this, const RuntimeMethod* method) ;
// System.Span`1<T> System.MemoryExtensions::AsSpan<System.Byte>(T[],System.Int32)
inline Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 MemoryExtensions_AsSpan_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m107A36BC03551DA3FFD8816519D6F675279D5FB6_inline (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___array0, int32_t ___start1, const RuntimeMethod* method)
{
return (( Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 (*) (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, const RuntimeMethod*))MemoryExtensions_AsSpan_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m107A36BC03551DA3FFD8816519D6F675279D5FB6_gshared_inline)(___array0, ___start1, method);
}
// System.Boolean System.Net.IPAddress::TryWriteBytes(System.Span`1<System.Byte>,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPAddress_TryWriteBytes_mB6CA9DA47541FD37A67BCF614983BDBD3581346A (IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* __this, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 ___destination0, int32_t* ___bytesWritten1, const RuntimeMethod* method) ;
// System.Void System.Net.SocketAddress::.ctor(System.Net.IPAddress)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SocketAddress__ctor_mE024ADACE4B62D1FF2969E8D59E3D6A4B567DC30 (SocketAddress_tAB4BC630E51E2241E607F4070DA1AEE00B442A03* __this, IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* ___ipAddress0, const RuntimeMethod* method) ;
// System.Net.Sockets.AddressFamily System.Net.SocketAddress::get_Family()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SocketAddress_get_Family_mF66C07BE26931A763DF421310667F1C7EE82EA20 (SocketAddress_tAB4BC630E51E2241E607F4070DA1AEE00B442A03* __this, const RuntimeMethod* method) ;
// System.Void System.Net.IPAddress::.ctor(System.Byte[],System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IPAddress__ctor_m8D2578858CF6F8E56591F45C8A14150DEFFA44F5 (IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___address0, int64_t ___scopeid1, const RuntimeMethod* method) ;
// System.Void System.Net.IPAddress::.ctor(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IPAddress__ctor_mC240D2060BA0F5A96D286CDE3772FE4354D7030B (IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* __this, int64_t ___newAddress0, const RuntimeMethod* method) ;
// System.Void System.Net.Sockets.SocketException::.ctor(System.Net.Sockets.SocketError)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SocketException__ctor_m5E9DDE94C8009DE11B8CE2EF1611A5CE8A900AC3 (SocketException_t6D10102A62EA871BD31748E026A372DB6804083B* __this, int32_t ___socketError0, const RuntimeMethod* method) ;
// System.Net.IPAddress System.Net.SocketAddress::GetIPAddress()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* SocketAddress_GetIPAddress_m9F349596DE4F881222A989059162AF5880FBAA0D (SocketAddress_tAB4BC630E51E2241E607F4070DA1AEE00B442A03* __this, const RuntimeMethod* method) ;
// System.Byte System.Net.SocketAddress::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t SocketAddress_get_Item_mFF97A6A1AF0D8AB36C662282C477B5DBAFD10FBD (SocketAddress_tAB4BC630E51E2241E607F4070DA1AEE00B442A03* __this, int32_t ___offset0, const RuntimeMethod* method) ;
// System.String System.Byte::ToString(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m3F9787FE9A306FE63F388635DEE2733F91588A86 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ;
// System.String System.Enum::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741 (RuntimeObject* __this, const RuntimeMethod* method) ;
// System.String System.String::Concat(System.String[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m6B0734B65813C8EA093D78E5C2D16534EB6FE8C0 (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___values0, const RuntimeMethod* method) ;
// System.Void System.InvalidOperationException::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m63F5561BE647F655D22C8289E53A5D3A2196B668 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, String_t* ___message0, Exception_t* ___innerException1, const RuntimeMethod* method) ;
// System.Void System.Net.WebException::.ctor(System.String,System.Exception,System.Net.WebExceptionStatus,System.Net.WebResponse,System.Net.WebExceptionInternalStatus)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebException__ctor_m7A5D68872BF6CA52F8992EBFD74AB6BCB07EB77C (WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* __this, String_t* ___message0, Exception_t* ___innerException1, int32_t ___status2, WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* ___response3, int32_t ___internalStatus4, const RuntimeMethod* method) ;
// System.Void System.Net.WebException::.ctor(System.String,System.String,System.Exception,System.Net.WebExceptionStatus,System.Net.WebResponse)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebException__ctor_mA1609CA415DDD5C7C4AF37E9CD2CE77330C43384 (WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* __this, String_t* ___message0, String_t* ___data1, Exception_t* ___innerException2, int32_t ___status3, WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* ___response4, const RuntimeMethod* method) ;
// System.Void System.Net.WebException::.ctor(System.String,System.String,System.Exception,System.Net.WebExceptionStatus,System.Net.WebResponse,System.Net.WebExceptionInternalStatus)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebException__ctor_mF29A3D816C156692A8C353A9C824CA2F5C60BBFD (WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* __this, String_t* ___message0, String_t* ___data1, Exception_t* ___innerException2, int32_t ___status3, WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* ___response4, int32_t ___internalStatus5, const RuntimeMethod* method) ;
// System.Collections.Specialized.NameValueCollection System.Net.WebHeaderCollection::get_InnerCollection()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* WebHeaderCollection_get_InnerCollection_m544FF08AD232BC5BDD8C5109DF6CD21C5ECAE2D0 (WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Specialized.NameValueCollection::.ctor(System.Int32,System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NameValueCollection__ctor_m1545E08D22D8E6C1FCDDAE43741AA43D52F4A21E (NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* __this, int32_t ___capacity0, RuntimeObject* ___equalityComparer1, const RuntimeMethod* method) ;
// System.Net.HeaderInfo System.Net.HeaderInfoTable::get_Item(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* HeaderInfoTable_get_Item_mE388F21B37BFA30336BB82A1585C744E69A20021 (HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F* __this, String_t* ___name0, const RuntimeMethod* method) ;
// System.Boolean System.Net.WebHeaderCollection::get_AllowHttpRequestHeader()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WebHeaderCollection_get_AllowHttpRequestHeader_m3ED9F9796BC1B56D21105BAE17D4CABA83713889 (WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* __this, const RuntimeMethod* method) ;
// System.String System.Net.UnsafeNclNativeMethods/HttpApi/HTTP_REQUEST_HEADER_ID::ToString(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* HTTP_REQUEST_HEADER_ID_ToString_mA04F9029112EC556EDFEA391089A880B12C0CCD1 (int32_t ___position0, const RuntimeMethod* method) ;
// System.Void System.Net.WebHeaderCollection::NormalizeCommonHeaders()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebHeaderCollection_NormalizeCommonHeaders_mE1D83B9D009EB876D33D1EB93CDC65F4F97B5B77 (WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Specialized.NameValueCollection::InvalidateCachedArrays()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NameValueCollection_InvalidateCachedArrays_mA9AA2F9B6A67C2576FA30F12208AA6E1F149C44B (NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* __this, const RuntimeMethod* method) ;
// System.String SR::GetString(System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_GetString_mF713FCC09E41A8D1C0DE44EDD0932A57800A9BA3 (String_t* ___name0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args1, const RuntimeMethod* method) ;
// System.String System.String::Trim(System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_m81BD35659E6F89DDD56816975E6E05390D023FE5 (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___trimChars0, const RuntimeMethod* method) ;
// System.Int32 System.String::IndexOfAny(System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOfAny_mC7AA4AE42B38667BDB9B214AA6230F322306CFF6 (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___anyOf0, const RuntimeMethod* method) ;
// System.Boolean System.Net.WebHeaderCollection::ContainsNonAsciiChars(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WebHeaderCollection_ContainsNonAsciiChars_mAE8D797265C12FBCAC784B15D734914273ED7AFD (String_t* ___token0, const RuntimeMethod* method) ;
// System.String System.Net.WebHeaderCollection::CheckBadChars(System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebHeaderCollection_CheckBadChars_m1F7BCD4BF0DC01AF8C1378AD02862D9900B67D71 (String_t* ___name0, bool ___isHeaderValue1, const RuntimeMethod* method) ;
// System.Void System.Net.WebHeaderCollection::ThrowOnRestrictedHeader(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebHeaderCollection_ThrowOnRestrictedHeader_mFBE0E21167D9EB5485BD3DC18B505FEC9BF6CF51 (WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* __this, String_t* ___headerName0, const RuntimeMethod* method) ;
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m60B543A63AC8692C28096003FBF2AD124B9D5B85 (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, String_t* ___paramName0, RuntimeObject* ___actualValue1, String_t* ___message2, const RuntimeMethod* method) ;
// System.Boolean System.Net.ValidationHelper::IsBlankString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValidationHelper_IsBlankString_mEE97DDAD061D54175C26B9E51E891C4F346E33B6 (String_t* ___stringValue0, const RuntimeMethod* method) ;
// System.String[] System.Net.HeaderParser::Invoke(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* HeaderParser_Invoke_mCAC8132BC020AD64B0130E50BD0379A312245C8E_inline (HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Void System.Collections.ArrayList::.ctor(System.Collections.ICollection)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList__ctor_mCE5AABB7EF7F41F9170791E2C5145E49684DCE11 (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* __this, RuntimeObject* ___c0, const RuntimeMethod* method) ;
// System.String System.Net.WebHeaderCollection::GetAsString(System.Collections.Specialized.NameValueCollection,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebHeaderCollection_GetAsString_m7E801872DAF279F8228F57FF2EA5336CD29F2E4F (NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* ___cc0, bool ___winInetCompat1, bool ___forTrace2, const RuntimeMethod* method) ;
// System.String System.Collections.Specialized.NameValueCollection::get_Item(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NameValueCollection_get_Item_mE3ED755803E67BC852123C70EEF8D53774FA635F (NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* __this, String_t* ___name0, const RuntimeMethod* method) ;
// System.Void System.Collections.Specialized.NameValueCollection::.ctor(System.DBNull)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NameValueCollection__ctor_mF894B0B49D20CE92F0CE3BBF8ED67F48E61CDB6A (NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* __this, DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* ___dummy0, const RuntimeMethod* method) ;
// System.Int32 System.Runtime.Serialization.SerializationInfo::GetInt32(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SerializationInfo_GetInt32_m7731402825C7FC8D0673F7610D555615F95E4FB5 (SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* __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_mF0753AFAA13AABF8A30B8F0890AEC52BFBBC73E9 (SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* __this, String_t* ___name0, const RuntimeMethod* method) ;
// System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_m9D6ADD10966D1FE8D19050F3A269747C23FE9FC4 (SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* __this, String_t* ___name0, int32_t ___value1, const RuntimeMethod* method) ;
// System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_m28FE9B110F21DDB8FF5F5E35A0EABD659DB22C2F (SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* __this, String_t* ___name0, RuntimeObject* ___value1, const RuntimeMethod* method) ;
// System.Void System.Collections.Specialized.NameObjectCollectionBase/NameObjectKeysEnumerator::.ctor(System.Collections.Specialized.NameObjectCollectionBase)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NameObjectKeysEnumerator__ctor_mF3026FAD0A80AADFBC11888DCB0FDF7C2DD71801 (NameObjectKeysEnumerator_t4182E42291FFAE1FC7B3BB46365244F202EFE7A0* __this, NameObjectCollectionBase_tB6400DF2FA3B64660D79586B79016B4A0BA645FC* ___coll0, const RuntimeMethod* method) ;
// System.Void System.Net.HeaderInfoTable::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HeaderInfoTable__ctor_mED0A17850B2F6AA3A3E6BFACF257E8640A7F3F50 (HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F* __this, const RuntimeMethod* method) ;
// System.Int32 System.Net.CaseInsensitiveAscii::FastGetHashCode(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CaseInsensitiveAscii_FastGetHashCode_m8185162F020C571335BCFB444577F786E6BB1E06 (CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C* __this, String_t* ___myString0, const RuntimeMethod* method) ;
// System.Void System.Net.CaseInsensitiveAscii::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CaseInsensitiveAscii__ctor_mD964E182EFE7238322DE8F7A2CA169657B6C4F4A (CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C* __this, const RuntimeMethod* method) ;
// System.Boolean System.Net.Logging::get_On()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Logging_get_On_mE613A75366C51B02DEC967952C3C0DD852156B02 (const RuntimeMethod* method) ;
// System.String System.Uri::get_AbsoluteUri()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_AbsoluteUri_m080934F4F2E2160EBEABDF00F8B6D59888EA63AE (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
// System.Collections.ArrayList System.Net.WebRequest::get_PrefixList()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* WebRequest_get_PrefixList_m233C839E7F75B2777B26A693A2DAD1AACC7B915D (const RuntimeMethod* method) ;
// System.Int32 System.String::Compare(System.String,System.Int32,System.String,System.Int32,System.Int32,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_Compare_mC0521D93E3608D6A004D12B1921058A021987CAA (String_t* ___strA0, int32_t ___indexA1, String_t* ___strB2, int32_t ___indexB3, int32_t ___length4, int32_t ___comparisonType5, const RuntimeMethod* method) ;
// System.Net.IWebRequestCreate System.Net.WebRequestPrefixElement::get_Creator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WebRequestPrefixElement_get_Creator_mA4054182FA19EA0B452693C7F747122DC0A4A9ED (WebRequestPrefixElement_tBE0FDE8DE0352095DECA0964655D25E05E435C35* __this, const RuntimeMethod* method) ;
// System.Void System.Uri::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_m6CA436E6AD2768A121FA851CBEEFA3623E849D3A (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, String_t* ___uriString0, const RuntimeMethod* method) ;
// System.Net.WebRequest System.Net.WebRequest::Create(System.Uri,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* WebRequest_Create_m9DD92CB71F55DA62C44CDCB1797D1B4241E753DC (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___requestUri0, bool ___useUriBase1, const RuntimeMethod* method) ;
// System.Boolean System.Uri::op_Equality(System.Uri,System.Uri)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_op_Equality_mB299FA02A76FD12A781BCBAD53D65B73C1768682 (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___uri10, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___uri21, const RuntimeMethod* method) ;
// System.Object System.Net.WebRequest::get_InternalSyncObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WebRequest_get_InternalSyncObject_mCCA701B3B01048CC2F26150D9E84D25CD194DFCF (const RuntimeMethod* method) ;
// System.Collections.ArrayList System.Net.WebRequest::PopulatePrefixList()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* WebRequest_PopulatePrefixList_m6E56B2280C7828A4FFFF0154681C3CD8B1B61E8B (const RuntimeMethod* method) ;
// System.Void System.Net.HttpRequestCreator::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpRequestCreator__ctor_mA6D07F56561A4C93100584384CCDED5171C45F50 (HttpRequestCreator_tDA975F6F61D732123CEE4E5AF40042311D3EF7E0* __this, const RuntimeMethod* method) ;
// System.Void System.Net.WebRequestPrefixElement::.ctor(System.String,System.Net.IWebRequestCreate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebRequestPrefixElement__ctor_mA9BEF8159EE6A6C7092797F6E7BE68FDE06E3C4B (WebRequestPrefixElement_tBE0FDE8DE0352095DECA0964655D25E05E435C35* __this, String_t* ___P0, RuntimeObject* ___C1, const RuntimeMethod* method) ;
// System.Void System.Net.FileWebRequestCreator::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileWebRequestCreator__ctor_mDF264D86311EA60A56DA2B1FCE048E48F0BF6CAB (FileWebRequestCreator_tC059E97F3753B58929F60C8531EADB9683F4111D* __this, const RuntimeMethod* method) ;
// System.Void System.Net.FtpWebRequestCreator::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebRequestCreator__ctor_m163216FA7A2018F0D581EC6AC6B83FB853DA514D (FtpWebRequestCreator_tC389DCEC82487414E888BDCCE1922A5A10937620* __this, const RuntimeMethod* method) ;
// System.Void System.MarshalByRefObject::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MarshalByRefObject__ctor_mCBAD191F9BB35587528256781970FDFEFCDBE538 (MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE* __this, const RuntimeMethod* method) ;
// System.Void System.Net.WebRequest::InternalSetCachePolicy(System.Net.Cache.RequestCachePolicy)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebRequest_InternalSetCachePolicy_m48EE455302BEA5A1F75E18E5D7DCF5CA8A18F076 (WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* __this, RequestCachePolicy_tF15C94C5E458478914D5EB17753294BD488B0550* ___policy0, const RuntimeMethod* method) ;
// System.Net.Cache.RequestCache System.Net.Cache.RequestCacheBinding::get_Cache()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RequestCache_tE6EF47B39906B93E4777BC33B850BE7F9D4E3F9C* RequestCacheBinding_get_Cache_m96C4E0E7F9A2616C261B185E2BB28766929D9800_inline (RequestCacheBinding_t18F3F4FF8D0F77E86C2C666CEE7FD48A80C042EE* __this, const RuntimeMethod* method) ;
// System.Net.Cache.RequestCacheValidator System.Net.Cache.RequestCacheBinding::get_Validator()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RequestCacheValidator_t21CD031336DECDDBA28550AE4353AA82CC37E301* RequestCacheBinding_get_Validator_m74A9BB1C0CD37CD6B536782553DBCA4E67C145FC_inline (RequestCacheBinding_t18F3F4FF8D0F77E86C2C666CEE7FD48A80C042EE* __this, const RuntimeMethod* method) ;
// System.Net.Cache.RequestCacheProtocol System.Net.WebRequest::get_CacheProtocol()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RequestCacheProtocol_t43C1AC170194874A0C0B0D3B8BE9EABFB613DF85* WebRequest_get_CacheProtocol_m2936E9CABE538D40E6A88C1DC3B78CE9336A711B_inline (WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* __this, const RuntimeMethod* method) ;
// System.Net.Cache.RequestCacheLevel System.Net.Cache.RequestCachePolicy::get_Level()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RequestCachePolicy_get_Level_m2D45A6E3059B05DED8BFD8D1EA20AEC907D920D3_inline (RequestCachePolicy_tF15C94C5E458478914D5EB17753294BD488B0550* __this, const RuntimeMethod* method) ;
// System.Object System.Net.Cache.RequestCacheValidator::CreateValidator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* RequestCacheValidator_CreateValidator_mBFF46C1FCE42C817FD8596B221ADC9D880399CAD (RequestCacheValidator_t21CD031336DECDDBA28550AE4353AA82CC37E301* __this, const RuntimeMethod* method) ;
// System.Void System.Net.Cache.RequestCacheProtocol::.ctor(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RequestCacheProtocol__ctor_m4E7F5A158A0507C5E58846CDA06B9847FF0C3D9C (RequestCacheProtocol_t43C1AC170194874A0C0B0D3B8BE9EABFB613DF85* __this, RuntimeObject* ___arg10, RuntimeObject* ___arg21, const RuntimeMethod* method) ;
// System.Void System.Net.WebRequest::set_CacheProtocol(System.Net.Cache.RequestCacheProtocol)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void WebRequest_set_CacheProtocol_m708E1FF1630F00DF87309F698E837EA6E55428C4_inline (WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* __this, RequestCacheProtocol_t43C1AC170194874A0C0B0D3B8BE9EABFB613DF85* ___value0, const RuntimeMethod* method) ;
// System.Boolean System.Threading.ExecutionContext::IsFlowSuppressed()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExecutionContext_IsFlowSuppressed_mD899EB8EB2E9842281A91D2054F2AFDAA845802E (const RuntimeMethod* method) ;
// System.Void System.Net.WebRequest/<>c__DisplayClass79_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass79_0__ctor_m98DEB00C10B19311D74B7AA965FD379F91FA94B1 (U3CU3Ec__DisplayClass79_0_tA7D1A51487A16A545400DB55AE8D336EE26007F1* __this, const RuntimeMethod* method) ;
// System.Security.Principal.WindowsIdentity System.Net.WebRequest::SafeCaptureIdenity()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WindowsIdentity_t18EC60B678C8A1AA9A67A89BC3BCFA1CC1E2C459* WebRequest_SafeCaptureIdenity_m75DF76AA29C004E643C39626ADD8A24D4C5EEDD9 (WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* __this, const RuntimeMethod* method) ;
// System.Void System.Func`1<System.Threading.Tasks.Task`1<System.Net.WebResponse>>::.ctor(System.Object,System.IntPtr)
inline void Func_1__ctor_mF4FCE9C7D2D1A775DE2B62D1931004049FD36CDB (Func_1_tDAA6FBAB20A0B65227BD8FED28803AF2E7E5C29B* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_1_tDAA6FBAB20A0B65227BD8FED28803AF2E7E5C29B*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_1__ctor_m663374A863E492A515BE9626B6F0E444991834E8_gshared)(__this, ___object0, ___method1, method);
}
// System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::Run<System.Net.WebResponse>(System.Func`1<System.Threading.Tasks.Task`1<TResult>>)
inline Task_1_t5E1291839AEFBDBE3699513D40515588EE167AB0* Task_Run_TisWebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682_m45DB463CCE36493A6DC9101000833CC298826277 (Func_1_tDAA6FBAB20A0B65227BD8FED28803AF2E7E5C29B* ___function0, const RuntimeMethod* method)
{
return (( Task_1_t5E1291839AEFBDBE3699513D40515588EE167AB0* (*) (Func_1_tDAA6FBAB20A0B65227BD8FED28803AF2E7E5C29B*, const RuntimeMethod*))Task_Run_TisRuntimeObject_mD3EECA5B522E829A92D4AB1E43CEA3B59B64A720_gshared)(___function0, method);
}
// System.Security.Principal.WindowsIdentity System.Security.Principal.WindowsIdentity::GetCurrent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WindowsIdentity_t18EC60B678C8A1AA9A67A89BC3BCFA1CC1E2C459* WindowsIdentity_GetCurrent_m32EA0DA814950BFA3AB686A40649EF48BED03BDD (const RuntimeMethod* method) ;
// System.Net.Configuration.DefaultProxySectionInternal System.Net.Configuration.DefaultProxySectionInternal::GetSection()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DefaultProxySectionInternal_t660B515577A92AE03B159B75AC172E4E34466EC2* DefaultProxySectionInternal_GetSection_mC347FAA709106553F94BA8097F9593383BCA22FC (const RuntimeMethod* method) ;
// System.Net.IWebProxy System.Net.Configuration.DefaultProxySectionInternal::get_WebProxy()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* DefaultProxySectionInternal_get_WebProxy_mF4F15C1A7C6088706CA2834D70E8CD52086AFBDA_inline (DefaultProxySectionInternal_t660B515577A92AE03B159B75AC172E4E34466EC2* __this, const RuntimeMethod* method) ;
// System.Net.TimerThread/Queue System.Net.TimerThread::CreateQueue(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Queue_t644DC21212BC432819522EDA395EB4562BE2CC47* TimerThread_CreateQueue_mEE7746808FCC711657A10D38DAC9FC01B93B68D8 (int32_t ___durationMilliseconds0, const RuntimeMethod* method) ;
// System.Void System.Net.WebRequest/DesignerWebRequestCreate::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DesignerWebRequestCreate__ctor_mBFB58FED978B03A3C53AE292C3855EDED4222C88 (DesignerWebRequestCreate_t75F62E4DEBF416E21EAF6FBB62E43ADB83A0753E* __this, const RuntimeMethod* method) ;
// System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1<System.Net.WebResponse>::get_Factory()
inline TaskFactory_1_t1C878D0A5D747EAFF79E944B48ED5067568E4873* Task_1_get_Factory_m16AF14FEB63383FDA760799AF866A5241DF7BA76 (const RuntimeMethod* method)
{
return (( TaskFactory_1_t1C878D0A5D747EAFF79E944B48ED5067568E4873* (*) (const RuntimeMethod*))Task_1_get_Factory_mFCEECEC269C6BA34AC0E7A879EC2160629E554A3_gshared)(method);
}
// System.Void System.Func`3<System.AsyncCallback,System.Object,System.IAsyncResult>::.ctor(System.Object,System.IntPtr)
inline void Func_3__ctor_m324F8E477614BC2752604D3ECE61CD9A8FD3D0CA (Func_3_t37EC932F9834D7F9E1C44B6BC6C01F409AE93BA7* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_3_t37EC932F9834D7F9E1C44B6BC6C01F409AE93BA7*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_3__ctor_m7A3CDF8CC909FAEEA005D42C71F113B505F766DD_gshared)(__this, ___object0, ___method1, method);
}
// System.Void System.Func`2<System.IAsyncResult,System.Net.WebResponse>::.ctor(System.Object,System.IntPtr)
inline void Func_2__ctor_m94318EE271260331D61373FD793E51DFB7A1C4C0 (Func_2_tE048A673EF3350A89334B6C88EA7517D1EDF8FF3* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_2_tE048A673EF3350A89334B6C88EA7517D1EDF8FF3*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_2__ctor_m7F8A01C0B02BC1D4063F4EB1E817F7A48562A398_gshared)(__this, ___object0, ___method1, method);
}
// System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.TaskFactory`1<System.Net.WebResponse>::FromAsync(System.Func`3<System.AsyncCallback,System.Object,System.IAsyncResult>,System.Func`2<System.IAsyncResult,TResult>,System.Object)
inline Task_1_t5E1291839AEFBDBE3699513D40515588EE167AB0* TaskFactory_1_FromAsync_m59E275F7DFF2D16C3BF4E79DFD862A2ADB4A55B2 (TaskFactory_1_t1C878D0A5D747EAFF79E944B48ED5067568E4873* __this, Func_3_t37EC932F9834D7F9E1C44B6BC6C01F409AE93BA7* ___beginMethod0, Func_2_tE048A673EF3350A89334B6C88EA7517D1EDF8FF3* ___endMethod1, RuntimeObject* ___state2, const RuntimeMethod* method)
{
return (( Task_1_t5E1291839AEFBDBE3699513D40515588EE167AB0* (*) (TaskFactory_1_t1C878D0A5D747EAFF79E944B48ED5067568E4873*, Func_3_t37EC932F9834D7F9E1C44B6BC6C01F409AE93BA7*, Func_2_tE048A673EF3350A89334B6C88EA7517D1EDF8FF3*, RuntimeObject*, const RuntimeMethod*))TaskFactory_1_FromAsync_mA2245574D79F2D5E00D63C9A55FDC2B8DAFF2FE4_gshared)(__this, ___beginMethod0, ___endMethod1, ___state2, method);
}
// System.Net.WebRequest System.Net.WebRequest::Create(System.Uri)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* WebRequest_Create_mD11C7BB286D0C12A92911F717AC8D2CAF9027611 (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___requestUri0, const RuntimeMethod* method) ;
// System.Void System.GC::SuppressFinalize(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC_SuppressFinalize_m3352E2F2119EB46913B51B7AAE2F217C63C35F2A (RuntimeObject* ___obj0, const RuntimeMethod* method) ;
// System.Void System.Buffer::BlockCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_BlockCopy_mD8CF7EC96ADA7A542CCA3F3C73510624E10197A9 (RuntimeArray* ___src0, int32_t ___srcOffset1, RuntimeArray* ___dst2, int32_t ___dstOffset3, int32_t ___count4, const RuntimeMethod* method) ;
// System.Void System.Net.BufferOffsetSize::.ctor(System.Byte[],System.Int32,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BufferOffsetSize__ctor_mF73D1F45CFD84AD9AB753B1F923A762F00806BE5 (BufferOffsetSize_t46A7671E4C06281BB2D4C4AC98A6263715BDAC71* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___offset1, int32_t ___size2, bool ___copyBuffer3, const RuntimeMethod* method) ;
// System.Void System.Collections.Specialized.StringCollection::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringCollection__ctor_m3EF93D74FEC69C5A0CD7A502539B2CEDD8D02954 (StringCollection_t3C8ACD597B2EB7592031E5240BDDD4102223BDBE* __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_mB7B3AC2AF28010538650051A9000369B1CD6BAB6 (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___val0, int32_t ___startIndex1, int32_t ___length2, const RuntimeMethod* method) ;
// System.String System.String::Trim()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5 (String_t* __this, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Specialized.StringCollection::Add(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StringCollection_Add_m03BBFAA1D11499DA68474A73F5DB55460F0D6DAF (StringCollection_t3C8ACD597B2EB7592031E5240BDDD4102223BDBE* __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_mC6D18D20EEE559A67C72BD37ECA9C0FB93283F3F (StringCollection_t3C8ACD597B2EB7592031E5240BDDD4102223BDBE* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Specialized.StringCollection::CopyTo(System.String[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringCollection_CopyTo_mCD7A68178A8F87AC0628B2E92CE466A27512CB05 (StringCollection_t3C8ACD597B2EB7592031E5240BDDD4102223BDBE* __this, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___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_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8 (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* __this, String_t* ___name0, bool ___requestRestricted1, bool ___responseRestricted2, bool ___multi3, HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* ___p4, const RuntimeMethod* method) ;
// System.Void System.Net.HeaderParser::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HeaderParser__ctor_m3E4BFAA908282AFA1EB023C1B84A03C222A68AAD (HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* __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_mDE29E5ABF17000F07880AD49D21C42132A5BA7EC (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, int32_t ___capacity0, RuntimeObject* ___equalityComparer1, const RuntimeMethod* method) ;
// System.Void System.Net.LazyAsyncResult/ThreadContext::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadContext__ctor_mBFFE2269F22D15B6570BD909390F40F213E9DBF1 (ThreadContext_t4D66E3F5FE5863AF4D086D6CE7CAFF02382B7650* __this, const RuntimeMethod* method) ;
// System.Int32 System.Threading.Interlocked::CompareExchange(System.Int32&,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Interlocked_CompareExchange_m1B1A89142CF77793A6B396019B98265E6EE306FA (int32_t* ___location10, int32_t ___value1, int32_t ___comparand2, const RuntimeMethod* method) ;
// System.Boolean System.Net.LazyAsyncResult::LazilyCreateEvent(System.Threading.ManualResetEvent&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LazyAsyncResult_LazilyCreateEvent_mC82FEA0526DA66D9F1A9B03BE1858D1C181E252F (LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* __this, ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158** ___waitHandle0, const RuntimeMethod* method) ;
// System.Void System.Threading.ManualResetEvent::.ctor(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManualResetEvent__ctor_m361CFCF6AC28BFFF5C8790DC2B5951791A1C4CEE (ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* __this, bool ___initialState0, const RuntimeMethod* method) ;
// System.Boolean System.Threading.EventWaitHandle::Set()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventWaitHandle_Set_mDF98D67F214714A9590DF82A1C51D3D851281E4D (EventWaitHandle_t18F2EB0161747B0646A9A406015A61A214A1EB7E* __this, const RuntimeMethod* method) ;
// System.Int32 System.Threading.Interlocked::Increment(System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Interlocked_Increment_m7AC68EC482A6AFD97BCEFABA0FD45D203F3EA2E1 (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_mAB31EFC1A9671BA58BB38F59F381EAFE9C564410 (LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* __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_t4D66E3F5FE5863AF4D086D6CE7CAFF02382B7650* LazyAsyncResult_get_CurrentThreadContext_mC86876C2BE5FFCFB3CCD0B34ACAD7272E72725FD (const RuntimeMethod* method) ;
// System.Void System.Threading.WaitCallback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WaitCallback__ctor_m9730564F9A28ECB72462D05AA92CA9E43DE9B41C (WaitCallback_tFB2C7FD58D024BBC2B0333DC7A4CB63B8DEBD5D3* __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_m71B28F18E224DDB44B711DB3D23B1226AA7547AC (WaitCallback_tFB2C7FD58D024BBC2B0333DC7A4CB63B8DEBD5D3* ___callBack0, const RuntimeMethod* method) ;
// System.Void System.AsyncCallback::Invoke(System.IAsyncResult)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_inline (AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* __this, RuntimeObject* ___ar0, const RuntimeMethod* method) ;
// System.Object System.Net.LazyAsyncResult::WaitForCompletion(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* LazyAsyncResult_WaitForCompletion_mA2CEEA13EF894CFD3997117924FE18FF3D782649 (LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* __this, bool ___snap0, const RuntimeMethod* method) ;
// System.Void System.Threading.Thread::SpinWait(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_SpinWait_m21328EAAC550A5C9822D6AFD1BCA17DBC1B5FF7E (int32_t ___iterations0, const RuntimeMethod* method) ;
// System.String System.Net.WebExceptionMapping::GetWebStatusString(System.Net.WebExceptionStatus)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebExceptionMapping_GetWebStatusString_mC6F3D28D6DCDD3E8674CBDA5CA684DF603DBCF69 (int32_t ___status0, const RuntimeMethod* method) ;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::get_CurrentCulture()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* CultureInfo_get_CurrentCulture_m43D1E4E50AB1F62ADC7C1884F28F918B53871522 (const RuntimeMethod* method) ;
// System.String System.String::Format(System.IFormatProvider,System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m75580778A544C5C8DA0F2ACEE7972A2AC944063A (RuntimeObject* ___provider0, String_t* ___format1, RuntimeObject* ___arg02, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.LinkedList`1<System.WeakReference>::.ctor()
inline void LinkedList_1__ctor_mCCAB5F5D186AA57BE80E0C3B2DBA9392361B83B6 (LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2* __this, const RuntimeMethod* method)
{
(( void (*) (LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2*, const RuntimeMethod*))LinkedList_1__ctor_m2732A2EC5597469086D48C79A12B3563DEA501C5_gshared)(__this, method);
}
// System.Void System.Threading.AutoResetEvent::.ctor(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AutoResetEvent__ctor_mB7C8CD30C5BE11A2C8DB79B27593CF0C5FE82ADE (AutoResetEvent_t7F792F3F7AD11BEF7B411E771D98E5266A8CE7C0* __this, bool ___initialState0, const RuntimeMethod* method) ;
// System.Void System.Collections.Hashtable::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_mD7E2F1EB1BFD683186ECD6EDBE1708AF35C3A87D (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, const RuntimeMethod* method) ;
// System.AppDomain System.AppDomain::get_CurrentDomain()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AppDomain_tFF7010567CBABAEEA7BB19835234D6485E16AD5F* AppDomain_get_CurrentDomain_m5085B6AF21A19506C85E0650C46BE35A18011CFE (const RuntimeMethod* method) ;
// System.Void System.EventHandler::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventHandler__ctor_m95444CE8D5A6F1AFC9793866C3FE884E732DCEB2 (EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Void System.AppDomain::add_DomainUnload(System.EventHandler)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppDomain_add_DomainUnload_mC24E729ABD7550A0A1F018EBF215FDF03AA1064F (AppDomain_tFF7010567CBABAEEA7BB19835234D6485E16AD5F* __this, EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* ___value0, const RuntimeMethod* method) ;
// System.Void System.Net.TimerThread/InfiniteTimerQueue::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InfiniteTimerQueue__ctor_mC47879DB811308BFE6D5D4613791A81CCA215501 (InfiniteTimerQueue_tFE425952008C1E3FF928211F9325D43CAA8106D5* __this, const RuntimeMethod* method) ;
// System.Void System.Net.TimerThread/TimerQueue::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimerQueue__ctor_mCB1C60FF084C13E97E4FC8C4E56F6264649285D9 (TimerQueue_tAB38C0ABB8EDA32D28106F9D5DF595FBD20CF8FB* __this, int32_t ___durationMilliseconds0, const RuntimeMethod* method) ;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1<System.WeakReference>::AddLast(T)
inline LinkedListNode_1_t8B8D12143248A5FB82DF08BEFD95EF4C426E67FA* LinkedList_1_AddLast_mC80812585536C37E00934D36C6FD07932437B27F (LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2* __this, WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* ___value0, const RuntimeMethod* method)
{
return (( LinkedListNode_1_t8B8D12143248A5FB82DF08BEFD95EF4C426E67FA* (*) (LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2*, WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E*, const RuntimeMethod*))LinkedList_1_AddLast_mF5239C871EADC44D51C6B621592A9CAC43449A2E_gshared)(__this, ___value0, method);
}
// System.Void System.Collections.Generic.List`1<System.Int32>::.ctor()
inline void List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8 (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, const RuntimeMethod*))List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_gshared)(__this, method);
}
// System.Object System.Collections.DictionaryEntry::get_Value()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* DictionaryEntry_get_Value_m75FD18FE968AE131F28AA2CB0DF4895EBA39075E_inline (DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB* __this, const RuntimeMethod* method) ;
// System.Object System.Collections.DictionaryEntry::get_Key()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* DictionaryEntry_get_Key_m09845C00732E530E6FCB9042079E90D3912215FE_inline (DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Int32>::Add(T)
inline void List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, int32_t, const RuntimeMethod*))List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_gshared_inline)(__this, ___item0, method);
}
// T System.Collections.Generic.List`1<System.Int32>::get_Item(System.Int32)
inline int32_t List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, int32_t, const RuntimeMethod*))List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_gshared)(__this, ___index0, method);
}
// System.Int32 System.Collections.Generic.List`1<System.Int32>::get_Count()
inline int32_t List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, const RuntimeMethod*))List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_gshared_inline)(__this, method);
}
// System.Void System.Threading.ThreadStart::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadStart__ctor_m35CE51F76358F20E4A0C8F2963C3AE14E5FF7E71 (ThreadStart_t7662D98F1793EDE90192D7304D1C3C44119328A2* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Void System.Threading.Thread::.ctor(System.Threading.ThreadStart)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread__ctor_m1FA23A179DF4F5B659689D6FA40DE903086212E2 (Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* __this, ThreadStart_t7662D98F1793EDE90192D7304D1C3C44119328A2* ___start0, const RuntimeMethod* method) ;
// System.Void System.Threading.Thread::Start()
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Thread_Start_m2230799AA331CA9ACEF49D5500281D0C1A9F72FA (Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* __this, const RuntimeMethod* method) ;
// System.Threading.Thread System.Threading.Thread::get_CurrentThread()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* Thread_get_CurrentThread_m835AD1DF1C0D10BABE1A5427CC4B357C991B25AB (const RuntimeMethod* method) ;
// System.Void System.Threading.Thread::set_IsBackground(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_set_IsBackground_m45F00BD4C46F9B8A7C46A20A170B22BABB8FBA30 (Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Boolean System.Threading.EventWaitHandle::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventWaitHandle_Reset_m84719BED571BDAAEE27EE05F57295C7107A74DE6 (EventWaitHandle_t18F2EB0161747B0646A9A406015A61A214A1EB7E* __this, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.LinkedList`1<System.WeakReference>::get_Count()
inline int32_t LinkedList_1_get_Count_m042F42A43FB095ABBEF2D06601BA8F42F1C18F02_inline (LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2*, const RuntimeMethod*))LinkedList_1_get_Count_mBFF1AE23B10EDF501026201C0427AA5820AECD82_gshared_inline)(__this, method);
}
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1<System.WeakReference>::get_First()
inline LinkedListNode_1_t8B8D12143248A5FB82DF08BEFD95EF4C426E67FA* LinkedList_1_get_First_m5B5A0C7B81CBD5C40FA468D902307348D34EC0D4_inline (LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2* __this, const RuntimeMethod* method)
{
return (( LinkedListNode_1_t8B8D12143248A5FB82DF08BEFD95EF4C426E67FA* (*) (LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2*, const RuntimeMethod*))LinkedList_1_get_First_mF743AE65DDD0324290E33D3F433F37AC83216E18_gshared_inline)(__this, method);
}
// System.Void System.Collections.Generic.LinkedList`1<System.WeakReference>::Remove(System.Collections.Generic.LinkedListNode`1<T>)
inline void LinkedList_1_Remove_m46FC492751187095D1D203309443E26B22D52473 (LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2* __this, LinkedListNode_1_t8B8D12143248A5FB82DF08BEFD95EF4C426E67FA* ___node0, const RuntimeMethod* method)
{
(( void (*) (LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2*, LinkedListNode_1_t8B8D12143248A5FB82DF08BEFD95EF4C426E67FA*, const RuntimeMethod*))LinkedList_1_Remove_m6B592B94D9AEF003EAE59FCB5455DA67AB4E423C_gshared)(__this, ___node0, method);
}
// System.Void System.Collections.Generic.LinkedList`1<System.WeakReference>::AddLast(System.Collections.Generic.LinkedListNode`1<T>)
inline void LinkedList_1_AddLast_mFC009DB4A45FE723FD7912EBCF9D2EE9E3C73F6A (LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2* __this, LinkedListNode_1_t8B8D12143248A5FB82DF08BEFD95EF4C426E67FA* ___node0, const RuntimeMethod* method)
{
(( void (*) (LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2*, LinkedListNode_1_t8B8D12143248A5FB82DF08BEFD95EF4C426E67FA*, const RuntimeMethod*))LinkedList_1_AddLast_m6070D31B124D5054AD3A5EA9C90A2CF4F09E4CAE_gshared)(__this, ___node0, method);
}
// System.Int32 System.Environment::get_TickCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Environment_get_TickCount_m3499A4943E060ECB90E790A097D9691448AD1276 (const RuntimeMethod* method) ;
// T System.Collections.Generic.LinkedListNode`1<System.WeakReference>::get_Value()
inline WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* LinkedListNode_1_get_Value_m70875C72E64ECAC678D5E5DC7F5407EDD711E74F_inline (LinkedListNode_1_t8B8D12143248A5FB82DF08BEFD95EF4C426E67FA* __this, const RuntimeMethod* method)
{
return (( WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* (*) (LinkedListNode_1_t8B8D12143248A5FB82DF08BEFD95EF4C426E67FA*, const RuntimeMethod*))LinkedListNode_1_get_Value_m8F67264DC98EF442B34CE4947044BCE18BF26053_gshared_inline)(__this, method);
}
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1<System.WeakReference>::get_Next()
inline LinkedListNode_1_t8B8D12143248A5FB82DF08BEFD95EF4C426E67FA* LinkedListNode_1_get_Next_m9AD84867FD812771D97DE4B3EA139B9FFF6AAD02 (LinkedListNode_1_t8B8D12143248A5FB82DF08BEFD95EF4C426E67FA* __this, const RuntimeMethod* method)
{
return (( LinkedListNode_1_t8B8D12143248A5FB82DF08BEFD95EF4C426E67FA* (*) (LinkedListNode_1_t8B8D12143248A5FB82DF08BEFD95EF4C426E67FA*, const RuntimeMethod*))LinkedListNode_1_get_Next_mF9F997F067DC152AB327110F922FB789EB1DE249_gshared)(__this, method);
}
// System.Boolean System.Net.TimerThread/TimerQueue::Fire(System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimerQueue_Fire_mC3E66C373A87AF5794C3F8727B93B4FB9B15B70B (TimerQueue_tAB38C0ABB8EDA32D28106F9D5DF595FBD20CF8FB* __this, int32_t* ___nextExpiration0, const RuntimeMethod* method) ;
// System.Boolean System.Net.TimerThread::IsTickBetween(System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimerThread_IsTickBetween_m952A581DFA7C61EC0D553E7DFB9A4FFDE1685BCE (int32_t ___start0, int32_t ___end1, int32_t ___comparand2, const RuntimeMethod* method) ;
// System.UInt32 System.Math::Min(System.UInt32,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Math_Min_m1C7DD94B2E3BECC3C15A8B6899E88178DC539397 (uint32_t ___val10, uint32_t ___val21, const RuntimeMethod* method) ;
// System.Int32 System.Threading.WaitHandle::WaitAny(System.Threading.WaitHandle[],System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t WaitHandle_WaitAny_mC3FD8A389C6FC1FD414A81164B71520518AB3B9D (WaitHandleU5BU5D_t85D0945086BF1BF6008422B3DD937ECEC35A8108* ___waitHandles0, int32_t ___millisecondsTimeout1, bool ___exitContext2, const RuntimeMethod* method) ;
// System.Boolean System.Net.NclUtilities::IsFatal(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NclUtilities_IsFatal_m0B4EB55E9621759F8177F84710FBA8AB09074DB0 (Exception_t* ___exception0, const RuntimeMethod* method) ;
// System.Void System.Threading.Thread::Sleep(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_Sleep_m63B7D29DC735584F4D80373E48C91B34FF32D1A0 (int32_t ___millisecondsTimeout0, const RuntimeMethod* method) ;
// System.Int32 System.Threading.Interlocked::Exchange(System.Int32&,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Interlocked_Exchange_m1D23CC1BEB47E20FA336837BF97C292AE6B17629 (int32_t* ___location10, int32_t ___value1, const RuntimeMethod* method) ;
// System.Void System.Net.TimerThread::StopTimerThread()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimerThread_StopTimerThread_m1E3A2BE926509E8E445BA5C00BA5B83C8283EDCE (const RuntimeMethod* method) ;
// System.Void System.Net.TimerThread/Queue::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Queue__ctor_mD131B17E1C13BF9B3E8EBF5A909ACB274930B0A0 (Queue_t644DC21212BC432819522EDA395EB4562BE2CC47* __this, int32_t ___durationMilliseconds0, const RuntimeMethod* method) ;
// System.Void System.Net.TimerThread/TimerNode::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimerNode__ctor_m259A5ECB2BA964982D8CB975EE945899CB14EA6A (TimerNode_t21C7B25E858618C4613473EB473193B566380994* __this, const RuntimeMethod* method) ;
// System.Void System.Net.TimerThread/TimerNode::set_Next(System.Net.TimerThread/TimerNode)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TimerNode_set_Next_m77F9833E3DA4B66D565A10F0409C15B6B7677AB0_inline (TimerNode_t21C7B25E858618C4613473EB473193B566380994* __this, TimerNode_t21C7B25E858618C4613473EB473193B566380994* ___value0, const RuntimeMethod* method) ;
// System.Void System.Net.TimerThread/TimerNode::set_Prev(System.Net.TimerThread/TimerNode)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TimerNode_set_Prev_m3A7D7FD5A4B654793FB48D0BAF7D8E0638BB1E47_inline (TimerNode_t21C7B25E858618C4613473EB473193B566380994* __this, TimerNode_t21C7B25E858618C4613473EB473193B566380994* ___value0, const RuntimeMethod* method) ;
// System.Int32 System.Net.TimerThread/Queue::get_Duration()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Queue_get_Duration_m1249509895EBD084C625F955B7B5A73B4E07DF0E_inline (Queue_t644DC21212BC432819522EDA395EB4562BE2CC47* __this, const RuntimeMethod* method) ;
// System.Void System.Net.TimerThread/TimerNode::.ctor(System.Net.TimerThread/Callback,System.Object,System.Int32,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimerNode__ctor_mC170858DAB4706C116DA175AE8C42D6A7E23B6AA (TimerNode_t21C7B25E858618C4613473EB473193B566380994* __this, Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835* ___callback0, RuntimeObject* ___context1, int32_t ___durationMilliseconds2, RuntimeObject* ___queueLock3, const RuntimeMethod* method) ;
// System.Net.TimerThread/TimerNode System.Net.TimerThread/TimerNode::get_Next()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TimerNode_t21C7B25E858618C4613473EB473193B566380994* TimerNode_get_Next_mB0E6D37D592DC92CBED33A26B0362F00959578D5_inline (TimerNode_t21C7B25E858618C4613473EB473193B566380994* __this, const RuntimeMethod* method) ;
// System.Boolean System.IntPtr::op_Equality(System.IntPtr,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IntPtr_op_Equality_m73759B51FE326460AC87A0E386480226EF2FABED (intptr_t ___value10, intptr_t ___value21, const RuntimeMethod* method) ;
// System.Runtime.InteropServices.GCHandle System.Runtime.InteropServices.GCHandle::Alloc(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC GCHandle_Alloc_m74B02418DDB89BF52FA0F7412D14E6D19E1949C6 (RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.IntPtr System.Runtime.InteropServices.GCHandle::op_Explicit(System.Runtime.InteropServices.GCHandle)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t GCHandle_op_Explicit_m67A1C3E8BC6C8163C5775AE62A514000D00CD9B6_inline (GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC ___value0, const RuntimeMethod* method) ;
// System.Net.TimerThread/TimerNode System.Net.TimerThread/TimerNode::get_Prev()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TimerNode_t21C7B25E858618C4613473EB473193B566380994* TimerNode_get_Prev_m358430B0F3DD4E039E38962A04118F937E6F5E4D_inline (TimerNode_t21C7B25E858618C4613473EB473193B566380994* __this, const RuntimeMethod* method) ;
// System.Void System.Net.TimerThread::Prod()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimerThread_Prod_m73CCF5CF05935284BFCD40666A2BA524F75D105C (const RuntimeMethod* method) ;
// System.Boolean System.IntPtr::op_Inequality(System.IntPtr,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IntPtr_op_Inequality_m2F715312CBFCE7E1A81D0689F68B97218E37E5D1 (intptr_t ___value10, intptr_t ___value21, const RuntimeMethod* method) ;
// System.Runtime.InteropServices.GCHandle System.Runtime.InteropServices.GCHandle::op_Explicit(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC GCHandle_op_Explicit_m500B99BF54D923E624C5235A4B370A37C8B7050C (intptr_t ___value0, const RuntimeMethod* method) ;
// System.Void System.Runtime.InteropServices.GCHandle::Free()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GCHandle_Free_m1320A260E487EB1EA6D95F9E54BFFCB5A4EF83A3 (GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* __this, const RuntimeMethod* method) ;
// System.Boolean System.Net.TimerThread/TimerNode::Fire()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimerNode_Fire_mAB8C15270DBD595C98435414C10C82426BBB43F1 (TimerNode_t21C7B25E858618C4613473EB473193B566380994* __this, const RuntimeMethod* method) ;
// System.Int32 System.Net.TimerThread/Timer::get_Expiration()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Timer_get_Expiration_m3D63AB176553C0823D6CF30897DF9C1235C63DA5 (Timer_t251C62B59B7D01C94C28C6162B45228C0276C695* __this, const RuntimeMethod* method) ;
// System.Void System.Net.TimerThread/InfiniteTimer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InfiniteTimer__ctor_mE68D9F3FAA233B2BD5DCF61989ACFB5704F99B06 (InfiniteTimer_tDF656910621727F5F5BCBEA8B9FBE9398C783159* __this, const RuntimeMethod* method) ;
// System.Void System.Net.TimerThread/Timer::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Timer__ctor_m74E9AEA5FB4F7DDDD8D9089D6F9C9EF7A3A96F3E (Timer_t251C62B59B7D01C94C28C6162B45228C0276C695* __this, int32_t ___durationMilliseconds0, const RuntimeMethod* method) ;
// System.Int32 System.Net.TimerThread/Timer::get_StartTime()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Timer_get_StartTime_m7F6B27CEC188763E8D261933D8E40E1CDC3820D4_inline (Timer_t251C62B59B7D01C94C28C6162B45228C0276C695* __this, const RuntimeMethod* method) ;
// System.Void System.Net.TimerThread/Callback::Invoke(System.Net.TimerThread/Timer,System.Int32,System.Object)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Callback_Invoke_mE5F4E02D25CB58B34E93A55CC21418F00B55C1BE_inline (Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835* __this, Timer_t251C62B59B7D01C94C28C6162B45228C0276C695* ___timer0, int32_t ___timeNoticed1, RuntimeObject* ___context2, const RuntimeMethod* method) ;
// System.Boolean System.Net.Cookie::get_Plain()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cookie_get_Plain_m177DD473B1A9B7CD6E80E91862BFA3F9ED142453 (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method) ;
// System.String System.String::Concat(System.String,System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mF8B69BE42B5C5ABCAD3C176FBBE3010E0815D65D (String_t* ___str00, String_t* ___str11, String_t* ___str22, String_t* ___str33, const RuntimeMethod* method) ;
// System.Boolean System.DateTime::op_Inequality(System.DateTime,System.DateTime)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_op_Inequality_mC39C15A648628974D533B4E2D4EDBD091EA3E1B7 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___d10, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___d21, const RuntimeMethod* method) ;
// System.Boolean System.DateTime::op_LessThanOrEqual(System.DateTime,System.DateTime)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_op_LessThanOrEqual_m458241757285ECEABEDA1F8105546FBFCD9ECB80 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___t10, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___t21, const RuntimeMethod* method) ;
// System.Net.CookieVariant System.Net.Cookie::get_Variant()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Cookie_get_Variant_m12BD01DEE266FDACF399BF3ADA69A827319B1511_inline (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method) ;
// System.Int32 System.Net.Cookie::get_Version()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Cookie_get_Version_m504ECB98B28863D90067A67125E9636888232C5B_inline (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method) ;
// System.Void System.Net.CookieException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CookieException__ctor_m0E120836351D3B4DFA0E6542D805CB96A941EEB1 (CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.String System.Net.Cookie::get_Comment()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Cookie_get_Comment_m51FBB45D81565655A5241B5DDD813BC3EC42B592_inline (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method) ;
// System.String System.Net.Cookie::get_Path()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Cookie_get_Path_m805DD94569337D3ADA27B977CE95D672C344E448_inline (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method) ;
// System.Boolean System.Net.Cookie::DomainCharsTest(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cookie_DomainCharsTest_mE423C477EE07BA0676C5571B03FD4153030B2EE9 (String_t* ___name0, const RuntimeMethod* method) ;
// System.Int32 System.String::Compare(System.String,System.String,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_Compare_mC553A80AD870F5777F0E8B5E705B0205396B9D3E (String_t* ___strA0, String_t* ___strB1, int32_t ___comparisonType2, const RuntimeMethod* method) ;
// System.Int32 System.String::IndexOf(System.Char,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mFD81FEE71234D44F45A4924CD51AD6169C722ACB (String_t* __this, Il2CppChar ___value0, int32_t ___startIndex1, int32_t ___count2, const RuntimeMethod* method) ;
// System.Boolean System.Net.Cookie::IsDomainEqualToHost(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cookie_IsDomainEqualToHost_m3CE9C1502DEB31D44100BA130C5A277CF8548681 (String_t* ___domain0, String_t* ___host1, const RuntimeMethod* method) ;
// System.String System.String::ToLower(System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToLower_mD22E5D18F36015484078F5BA0F1687DA95904D1E (String_t* __this, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture0, const RuntimeMethod* method) ;
// System.String System.Net.CookieParser::CheckQuoted(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CookieParser_CheckQuoted_m27BD4DA2D4E5EB47F4320778921B598C45C650B0 (String_t* ___value0, const RuntimeMethod* method) ;
// System.Boolean System.Int32::TryParse(System.String,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int32_TryParse_mFC6BFCB86964E2BCA4052155B10983837A695EA4 (String_t* ___s0, int32_t* ___result1, const RuntimeMethod* method) ;
// T[] System.Collections.Generic.List`1<System.Int32>::ToArray()
inline Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* List_1_ToArray_m65479FB75A5FE539EA1A0D6681172717D23CEAAA (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method)
{
return (( Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, const RuntimeMethod*))List_1_ToArray_m65479FB75A5FE539EA1A0D6681172717D23CEAAA_gshared)(__this, method);
}
// System.String System.Net.Cookie::get_Domain()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Cookie_get_Domain_m4965D8397859F47975FD7E3C31E259B4979AF69A_inline (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method) ;
// System.String System.Net.Cookie::get_Name()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Cookie_get_Name_m8DE46D0C6ABF6E6B2D7B82E9A0AFCA04189FD6C1_inline (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method) ;
// System.String System.Net.Cookie::get_Value()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Cookie_get_Value_m2FA4FCF7BE3B02C07D7AF1942C135FF3CE2654F8_inline (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method) ;
// System.String System.Int32::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5 (int32_t* __this, const RuntimeMethod* method) ;
// System.String System.Net.Cookie::get__Domain()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Cookie_get__Domain_m8957AD2A8BF7C19270B62A6BF2C88E1E11347750 (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method) ;
// System.String System.Net.Cookie::get__Path()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Cookie_get__Path_mD7C431ED16B7443C45A872E061E389E16768CBE0 (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method) ;
// System.String System.Net.Cookie::get__Port()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Cookie_get__Port_mAFC419B810D0D3BA8AA96A4934AD074E9603558D (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method) ;
// System.String System.Net.Cookie::get__Version()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Cookie_get__Version_m270926E18A41C5CA0E3C2251BEFF3EA14152FA54 (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method) ;
// System.Void System.Net.Comparer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparer__ctor_mEF67BBC47130D32EC011BCE7C838625DF32885F1 (Comparer_t142F6C5E53FD6C38EFE484B87752469CEEEFD7AD* __this, const RuntimeMethod* method) ;
// System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_m272CE1B3040BA89B2C478E2CF629670574F30353 (const RuntimeMethod* method) ;
// System.Type System.Object::GetType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3 (RuntimeObject* __this, const RuntimeMethod* method) ;
// System.Void System.ThrowHelper::ThrowArrayTypeMismatchException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArrayTypeMismatchException_mDF51E7FDFA74ADCDDB1E43CFC4A3A3083692B010 (const RuntimeMethod* method) ;
// System.Byte& System.Array::GetRawSzArrayData()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint8_t* Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline (RuntimeArray* __this, const RuntimeMethod* method) ;
// System.Void System.Span`1<System.Byte>::.ctor(T&,System.Int32)
inline void Span_1__ctor_m947BF95D54571BF3897F96822B7A8FDA5853497B_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, uint8_t* ___ptr0, int32_t ___length1, const RuntimeMethod* method)
{
(( void (*) (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305*, uint8_t*, int32_t, const RuntimeMethod*))Span_1__ctor_m947BF95D54571BF3897F96822B7A8FDA5853497B_gshared_inline)(__this, ___ptr0, ___length1, method);
}
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.NetworkCredential System.Net.FtpControlStream::get_Credentials()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* FtpControlStream_get_Credentials_m58332EC011855E9A49AF9938434859AF08C7CE7F (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_0 = __this->____credentials_27;
if (!L_0)
{
goto IL_0026;
}
}
{
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_1 = __this->____credentials_27;
NullCheck(L_1);
bool L_2;
L_2 = VirtualFuncInvoker0< bool >::Invoke(5 /* System.Boolean System.WeakReference::get_IsAlive() */, L_1);
if (!L_2)
{
goto IL_0026;
}
}
{
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_3 = __this->____credentials_27;
NullCheck(L_3);
RuntimeObject* L_4;
L_4 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(6 /* System.Object System.WeakReference::get_Target() */, L_3);
return ((NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313*)CastclassClass((RuntimeObject*)L_4, NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313_il2cpp_TypeInfo_var));
}
IL_0026:
{
return (NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313*)NULL;
}
}
// System.Void System.Net.FtpControlStream::set_Credentials(System.Net.NetworkCredential)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpControlStream_set_Credentials_mB7B4723790E93C6A35DA14B680F74E087EE7675E (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_0 = __this->____credentials_27;
if (L_0)
{
goto IL_0014;
}
}
{
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_1 = (WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E*)il2cpp_codegen_object_new(WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E_il2cpp_TypeInfo_var);
NullCheck(L_1);
WeakReference__ctor_m5F9E2F970CD85965A003C0B37ABDBFAA1F5CF241(L_1, NULL, NULL);
__this->____credentials_27 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____credentials_27), (void*)L_1);
}
IL_0014:
{
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_2 = __this->____credentials_27;
NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* L_3 = ___value0;
NullCheck(L_2);
VirtualActionInvoker1< RuntimeObject* >::Invoke(7 /* System.Void System.WeakReference::set_Target(System.Object) */, L_2, L_3);
return;
}
}
// System.Void System.Net.FtpControlStream::.ctor(System.Net.Sockets.TcpClient)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpControlStream__ctor_m1A36E41268DE5D5E34A2D2053A3F8C2B24511402 (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58* ___client0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123_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))->___Empty_6;
__this->____currentTypeSetting_28 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____currentTypeSetting_28), (void*)L_0);
__this->____contentLength_29 = ((int64_t)(-1));
TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58* L_1 = ___client0;
il2cpp_codegen_runtime_class_init_inline(CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123_il2cpp_TypeInfo_var);
CommandStream__ctor_mDC3049BB71D0C9B1479D1A94D2B923D753D6F36E(__this, L_1, NULL);
return;
}
}
// System.Void System.Net.FtpControlStream::AbortConnect()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpControlStream_AbortConnect_m4C13BC4A12ED03FBB94A225138AD6C0620EC707C (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, const RuntimeMethod* method)
{
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* V_0 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_0 = __this->____dataSocket_21;
V_0 = L_0;
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_1 = V_0;
if (!L_1)
{
goto IL_0015;
}
}
try
{// begin try (depth: 1)
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_2 = V_0;
NullCheck(L_2);
Socket_Close_m5EBF3D8BE2C42EF8037BC9372CE7760B1717EEE4(L_2, NULL);
goto IL_0015;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0012;
}
throw e;
}
CATCH_0012:
{// begin catch(System.ObjectDisposedException)
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0015;
}// end catch (depth: 1)
IL_0015:
{
return;
}
}
// System.Void System.Net.FtpControlStream::AcceptCallback(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpControlStream_AcceptCallback_m32AB9ACD09857CB071842343824B5896EFAB4631 (RuntimeObject* ___asyncResult0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* V_0 = NULL;
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* V_1 = NULL;
Exception_t* V_2 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___asyncResult0;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2 /* System.Object System.IAsyncResult::get_AsyncState() */, IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5_il2cpp_TypeInfo_var, L_0);
V_0 = ((FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888*)CastclassClass((RuntimeObject*)L_1, FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_il2cpp_TypeInfo_var));
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_2 = V_0;
NullCheck(L_2);
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_3 = L_2->____dataSocket_21;
V_1 = L_3;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0072:
{// begin finally (depth: 1)
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_4 = V_1;
NullCheck(L_4);
Socket_Close_m5EBF3D8BE2C42EF8037BC9372CE7760B1717EEE4(L_4, NULL);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
try
{// begin try (depth: 2)
{
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_5 = V_0;
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_6 = V_1;
RuntimeObject* L_7 = ___asyncResult0;
NullCheck(L_6);
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_8;
L_8 = Socket_EndAccept_m6A7BE15D82A8C8DCA5AD786CC97E0A12FF354D09(L_6, L_7, NULL);
NullCheck(L_5);
L_5->____dataSocket_21 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&L_5->____dataSocket_21), (void*)L_8);
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_9 = V_0;
NullCheck(L_9);
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* L_10;
L_10 = NetworkStreamWrapper_get_ServerAddress_mE6D714D4B29C89FFE2C975AAA6828FF02440D2C6(L_9, NULL);
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_11 = V_0;
NullCheck(L_11);
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_12 = L_11->____dataSocket_21;
NullCheck(L_12);
EndPoint_t6233F4E2EB9F0F2D36E187F12BE050E6D8B73564* L_13;
L_13 = Socket_get_RemoteEndPoint_m6A626481D55A640C7654B91BFDE00199C2C95479(L_12, NULL);
NullCheck(((IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB*)CastclassClass((RuntimeObject*)L_13, IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB_il2cpp_TypeInfo_var)));
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* L_14;
L_14 = IPEndPoint_get_Address_m72F783CB76E10E9DBDF680CCC1DAAED201BABB1C_inline(((IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB*)CastclassClass((RuntimeObject*)L_13, IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB_il2cpp_TypeInfo_var)), NULL);
NullCheck(L_10);
bool L_15;
L_15 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_10, L_14);
if (L_15)
{
goto IL_0059_2;
}
}
{
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_16 = V_0;
NullCheck(L_16);
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_17 = L_16->____dataSocket_21;
NullCheck(L_17);
Socket_Close_m5EBF3D8BE2C42EF8037BC9372CE7760B1717EEE4(L_17, NULL);
WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* L_18 = (WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8_il2cpp_TypeInfo_var)));
NullCheck(L_18);
WebException__ctor_m6C829021B5388956F84830FC249915324C1453A1(L_18, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAD27FA3A0B67FF7854D05AB4CD97E2B72CEB5551)), 7, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpControlStream_AcceptCallback_m32AB9ACD09857CB071842343824B5896EFAB4631_RuntimeMethod_var)));
}
IL_0059_2:
{
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_19 = V_0;
NullCheck(L_19);
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_20;
L_20 = CommandStream_ContinueCommandPipeline_m5C680F284A85251071F130E61F020F232C85B815(L_19, NULL);
goto IL_0079;
}
}// end try (depth: 2)
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_0062_1;
}
throw e;
}
CATCH_0062_1:
{// begin catch(System.Exception)
V_2 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_21 = V_0;
NullCheck(L_21);
NetworkStreamWrapper_CloseSocket_mAD2F12D01E0C1D3B6DD51D691F1C5CBA1A4D1467(L_21, NULL);
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_22 = V_0;
Exception_t* L_23 = V_2;
NullCheck(L_22);
CommandStream_InvokeRequestCallback_m6E7BFD33406D1B53BCF50C42E9D91F13E42C5F3A(L_22, L_23, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0079;
}// end catch (depth: 2)
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0079:
{
return;
}
}
// System.Void System.Net.FtpControlStream::ConnectCallback(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpControlStream_ConnectCallback_mB51B71AC0FC2EB9DF9F868F0EC92AE8F760914DC (RuntimeObject* ___asyncResult0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* V_0 = NULL;
Exception_t* V_1 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___asyncResult0;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2 /* System.Object System.IAsyncResult::get_AsyncState() */, IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5_il2cpp_TypeInfo_var, L_0);
V_0 = ((FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888*)CastclassClass((RuntimeObject*)L_1, FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_il2cpp_TypeInfo_var));
}
try
{// begin try (depth: 1)
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_2 = V_0;
NullCheck(L_2);
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_3 = L_2->____dataSocket_21;
RuntimeObject* L_4 = ___asyncResult0;
NullCheck(L_3);
Socket_EndConnect_m10F5B4F43A68F96891DB3AEF493AB160CD8104D6(L_3, L_4, NULL);
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_5 = V_0;
NullCheck(L_5);
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_6;
L_6 = CommandStream_ContinueCommandPipeline_m5C680F284A85251071F130E61F020F232C85B815(L_5, NULL);
goto IL_0031;
}// 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_0021;
}
throw e;
}
CATCH_0021:
{// begin catch(System.Exception)
V_1 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_7 = V_0;
NullCheck(L_7);
NetworkStreamWrapper_CloseSocket_mAD2F12D01E0C1D3B6DD51D691F1C5CBA1A4D1467(L_7, NULL);
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_8 = V_0;
Exception_t* L_9 = V_1;
NullCheck(L_8);
CommandStream_InvokeRequestCallback_m6E7BFD33406D1B53BCF50C42E9D91F13E42C5F3A(L_8, L_9, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0031;
}// end catch (depth: 1)
IL_0031:
{
return;
}
}
// System.Void System.Net.FtpControlStream::SSLHandshakeCallback(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpControlStream_SSLHandshakeCallback_mD624AD2E7B323CCD637813D9B982316C4778ADD1 (RuntimeObject* ___asyncResult0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* V_0 = NULL;
Exception_t* V_1 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___asyncResult0;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2 /* System.Object System.IAsyncResult::get_AsyncState() */, IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5_il2cpp_TypeInfo_var, L_0);
V_0 = ((FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888*)CastclassClass((RuntimeObject*)L_1, FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_il2cpp_TypeInfo_var));
}
try
{// begin try (depth: 1)
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_2 = V_0;
NullCheck(L_2);
TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51* L_3 = L_2->____tlsStream_23;
RuntimeObject* L_4 = ___asyncResult0;
NullCheck(L_3);
TlsStream_EndAuthenticateAsClient_mE7E1915CE91F4E796B2A0358B677C3D756F3BB2F(L_3, L_4, NULL);
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_5 = V_0;
NullCheck(L_5);
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_6;
L_6 = CommandStream_ContinueCommandPipeline_m5C680F284A85251071F130E61F020F232C85B815(L_5, NULL);
goto IL_0031;
}// 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_0021;
}
throw e;
}
CATCH_0021:
{// begin catch(System.Exception)
V_1 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_7 = V_0;
NullCheck(L_7);
NetworkStreamWrapper_CloseSocket_mAD2F12D01E0C1D3B6DD51D691F1C5CBA1A4D1467(L_7, NULL);
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_8 = V_0;
Exception_t* L_9 = V_1;
NullCheck(L_8);
CommandStream_InvokeRequestCallback_m6E7BFD33406D1B53BCF50C42E9D91F13E42C5F3A(L_8, L_9, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0031;
}// end catch (depth: 1)
IL_0031:
{
return;
}
}
// System.Net.CommandStream/PipelineInstruction System.Net.FtpControlStream::QueueOrCreateFtpDataStream(System.IO.Stream&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FtpControlStream_QueueOrCreateFtpDataStream_m37AFE4C4DA7DB36D34170261D3AC39D65C2A4AC0 (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE** ___stream0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* V_0 = NULL;
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* V_1 = NULL;
TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51* V_2 = NULL;
{
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_0 = __this->____dataSocket_21;
if (L_0)
{
goto IL_000e;
}
}
{
InternalException_tBD5CDE9133BB628E33CE7F16F6396FCD739C1934* L_1 = (InternalException_tBD5CDE9133BB628E33CE7F16F6396FCD739C1934*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InternalException_tBD5CDE9133BB628E33CE7F16F6396FCD739C1934_il2cpp_TypeInfo_var)));
NullCheck(L_1);
InternalException__ctor_m20A09E66E185FB1449C71227304AF40936C8011A(L_1, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpControlStream_QueueOrCreateFtpDataStream_m37AFE4C4DA7DB36D34170261D3AC39D65C2A4AC0_RuntimeMethod_var)));
}
IL_000e:
{
TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51* L_2 = __this->____tlsStream_23;
if (!L_2)
{
goto IL_003d;
}
}
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE** L_3 = ___stream0;
TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51* L_4 = __this->____tlsStream_23;
WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* L_5 = ((CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123*)__this)->____request_9;
int32_t L_6;
L_6 = FtpControlStream_IsFtpDataStreamWriteable_m98769CB129051685F3DF2107B8B7CD11D343D6E7(__this, NULL);
FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* L_7 = (FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970*)il2cpp_codegen_object_new(FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970_il2cpp_TypeInfo_var);
NullCheck(L_7);
FtpDataStream__ctor_m43E92319125756CD8D5D660EE7FE9B940DA9DB75(L_7, L_4, ((FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9*)CastclassSealed((RuntimeObject*)L_5, FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9_il2cpp_TypeInfo_var)), L_6, NULL);
*((RuntimeObject**)L_3) = (RuntimeObject*)L_7;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_3, (void*)(RuntimeObject*)L_7);
__this->____tlsStream_23 = (TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->____tlsStream_23), (void*)(TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51*)NULL);
return (int32_t)(4);
}
IL_003d:
{
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_8 = __this->____dataSocket_21;
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_9 = (NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0*)il2cpp_codegen_object_new(NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0_il2cpp_TypeInfo_var);
NullCheck(L_9);
NetworkStream__ctor_mA44C3DB90F5B64F230CC2176DC7E722F4077A9DE(L_9, L_8, (bool)1, NULL);
V_0 = L_9;
bool L_10;
L_10 = NetworkStreamWrapper_get_UsingSecureStream_m86E61049DC4265D855C187275D6536ACA6988A05(__this, NULL);
if (!L_10)
{
goto IL_00a2;
}
}
{
WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* L_11 = ((CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123*)__this)->____request_9;
V_1 = ((FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9*)CastclassSealed((RuntimeObject*)L_11, FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9_il2cpp_TypeInfo_var));
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_12 = V_0;
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_13 = __this->____dataSocket_21;
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_14 = V_1;
NullCheck(L_14);
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_15;
L_15 = VirtualFuncInvoker0< Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* >::Invoke(11 /* System.Uri System.Net.WebRequest::get_RequestUri() */, L_14);
NullCheck(L_15);
String_t* L_16;
L_16 = Uri_get_Host_m2C0E258C7DFF7A340049BE9BC08FF45E90988D8C(L_15, NULL);
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_17 = V_1;
NullCheck(L_17);
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* L_18;
L_18 = FtpWebRequest_get_ClientCertificates_mA566B0A04203FCA61A4C858073A0A9271AB73382(L_17, NULL);
TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51* L_19 = (TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51*)il2cpp_codegen_object_new(TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51_il2cpp_TypeInfo_var);
NullCheck(L_19);
TlsStream__ctor_m92BDBF633326E74A389C3F979F7DA25991AA9575(L_19, L_12, L_13, L_16, L_18, NULL);
V_2 = L_19;
TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51* L_20 = V_2;
V_0 = L_20;
bool L_21 = ((CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123*)__this)->____isAsync_10;
if (!L_21)
{
goto IL_009c;
}
}
{
TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51* L_22 = V_2;
__this->____tlsStream_23 = L_22;
Il2CppCodeGenWriteBarrier((void**)(&__this->____tlsStream_23), (void*)L_22);
TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51* L_23 = V_2;
il2cpp_codegen_runtime_class_init_inline(FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_il2cpp_TypeInfo_var);
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* L_24 = ((FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_StaticFields*)il2cpp_codegen_static_fields_for(FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_il2cpp_TypeInfo_var))->___s_SSLHandshakeCallback_41;
NullCheck(L_23);
RuntimeObject* L_25;
L_25 = TlsStream_BeginAuthenticateAsClient_mCC4D883302E06680A9E5F3EE95B79C52BD0E2FF6(L_23, L_24, __this, NULL);
return (int32_t)(2);
}
IL_009c:
{
TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51* L_26 = V_2;
NullCheck(L_26);
TlsStream_AuthenticateAsClient_m95AA6647436479C34D8149DA1989A3FE6BD6F2C0(L_26, NULL);
}
IL_00a2:
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE** L_27 = ___stream0;
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_28 = V_0;
WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* L_29 = ((CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123*)__this)->____request_9;
int32_t L_30;
L_30 = FtpControlStream_IsFtpDataStreamWriteable_m98769CB129051685F3DF2107B8B7CD11D343D6E7(__this, NULL);
FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* L_31 = (FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970*)il2cpp_codegen_object_new(FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970_il2cpp_TypeInfo_var);
NullCheck(L_31);
FtpDataStream__ctor_m43E92319125756CD8D5D660EE7FE9B940DA9DB75(L_31, L_28, ((FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9*)CastclassSealed((RuntimeObject*)L_29, FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9_il2cpp_TypeInfo_var)), L_30, NULL);
*((RuntimeObject**)L_27) = (RuntimeObject*)L_31;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_27, (void*)(RuntimeObject*)L_31);
return (int32_t)(4);
}
}
// System.Void System.Net.FtpControlStream::ClearState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpControlStream_ClearState_mA17C5AA0F93146AA5AC167DDD564571852268CE2 (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
__this->____contentLength_29 = ((int64_t)(-1));
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32;
__this->____lastModified_30 = L_0;
__this->____responseUri_35 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->____responseUri_35), (void*)(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL);
__this->____dataHandshakeStarted_31 = (bool)0;
__this->___StatusCode_37 = 0;
__this->___StatusLine_38 = (String_t*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___StatusLine_38), (void*)(String_t*)NULL);
__this->____dataSocket_21 = (Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->____dataSocket_21), (void*)(Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E*)NULL);
__this->____passiveEndPoint_22 = (IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->____passiveEndPoint_22), (void*)(IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB*)NULL);
__this->____tlsStream_23 = (TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->____tlsStream_23), (void*)(TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51*)NULL);
CommandStream_ClearState_m7562386C549485E956DC4305651DE87EA5A8B83B(__this, NULL);
return;
}
}
// System.Net.CommandStream/PipelineInstruction System.Net.FtpControlStream::PipelineCallback(System.Net.CommandStream/PipelineEntry,System.Net.ResponseDescription,System.Boolean,System.IO.Stream&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FtpControlStream_PipelineCallback_m052E0525E918223582C672D47D8C17E46F7A2E3C (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* ___entry0, ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* ___response1, bool ___timeout2, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE** ___stream3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FtpStatusCode_tB41B8C83958681A4C0AB77B4C847B1D5C9196C6E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass31_0_U3CPipelineCallbackU3Eb__0_mFA6F1908DB89530BFD35B6934E01C14A5B45112D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass31_0_t5AF210E8C8A968A4D36EE158747C05623DB6FD6E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1653EF65FEC1A0699F44EC90CCA9C89884781A94);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral253C2A72C3C0896AEF65D4E8740C0541E7390437);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral27DDB0923D1148A950B6EDF4EC82AB4A24C64C43);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3F477F5B61F788A30AF7E67D63A4BA5A4FC200D5);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6C9C9B52BC5A172DC07702A43C413CDD765007FF);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7A1F5BB29CA3660283E74E89C0A4F6EBFA460DA5);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7F4834BD098A695FDE6AA074DD12E90C659CD225);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE0F839E3D8CDD713B4981591207E50BF36EE21DA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEB2C138260B2C2055436518E83EFD5F1079EA7CC);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF26481DB2F9523FA4A1D9924BB28759AFDCDE050);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFA28660998B4F40FD2D50064ABEABE168B3733BA);
s_Il2CppMethodInitialized = true;
}
U3CU3Ec__DisplayClass31_0_t5AF210E8C8A968A4D36EE158747C05623DB6FD6E* V_0 = NULL;
int32_t V_1 = 0;
bool V_2 = false;
int32_t V_3 = 0;
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* V_4 = NULL;
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* V_5 = NULL;
int32_t G_B3_0 = 0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B3_1 = NULL;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B3_2 = NULL;
String_t* G_B3_3 = NULL;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* G_B3_4 = NULL;
int32_t G_B2_0 = 0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B2_1 = NULL;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B2_2 = NULL;
String_t* G_B2_3 = NULL;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* G_B2_4 = NULL;
String_t* G_B4_0 = NULL;
int32_t G_B4_1 = 0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B4_2 = NULL;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B4_3 = NULL;
String_t* G_B4_4 = NULL;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* G_B4_5 = NULL;
int32_t G_B6_0 = 0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B6_1 = NULL;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B6_2 = NULL;
String_t* G_B6_3 = NULL;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* G_B6_4 = NULL;
int32_t G_B5_0 = 0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B5_1 = NULL;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B5_2 = NULL;
String_t* G_B5_3 = NULL;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* G_B5_4 = NULL;
String_t* G_B7_0 = NULL;
int32_t G_B7_1 = 0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B7_2 = NULL;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B7_3 = NULL;
String_t* G_B7_4 = NULL;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* G_B7_5 = NULL;
{
U3CU3Ec__DisplayClass31_0_t5AF210E8C8A968A4D36EE158747C05623DB6FD6E* L_0 = (U3CU3Ec__DisplayClass31_0_t5AF210E8C8A968A4D36EE158747C05623DB6FD6E*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass31_0_t5AF210E8C8A968A4D36EE158747C05623DB6FD6E_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CU3Ec__DisplayClass31_0__ctor_mC80F22193462B0EF9A706D5ECFDADC54E5120638(L_0, NULL);
V_0 = L_0;
U3CU3Ec__DisplayClass31_0_t5AF210E8C8A968A4D36EE158747C05623DB6FD6E* L_1 = V_0;
NullCheck(L_1);
L_1->___U3CU3E4__this_0 = __this;
Il2CppCodeGenWriteBarrier((void**)(&L_1->___U3CU3E4__this_0), (void*)__this);
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
bool L_2;
L_2 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_2)
{
goto IL_004d;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = L_3;
PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* L_5 = ___entry0;
G_B2_0 = 0;
G_B2_1 = L_4;
G_B2_2 = L_4;
G_B2_3 = _stringLiteralFA28660998B4F40FD2D50064ABEABE168B3733BA;
G_B2_4 = __this;
if (L_5)
{
G_B3_0 = 0;
G_B3_1 = L_4;
G_B3_2 = L_4;
G_B3_3 = _stringLiteralFA28660998B4F40FD2D50064ABEABE168B3733BA;
G_B3_4 = __this;
goto IL_0028;
}
}
{
G_B4_0 = ((String_t*)(NULL));
G_B4_1 = G_B2_0;
G_B4_2 = G_B2_1;
G_B4_3 = G_B2_2;
G_B4_4 = G_B2_3;
G_B4_5 = G_B2_4;
goto IL_002e;
}
IL_0028:
{
PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* L_6 = ___entry0;
NullCheck(L_6);
String_t* L_7 = L_6->___Command_0;
G_B4_0 = L_7;
G_B4_1 = G_B3_0;
G_B4_2 = G_B3_1;
G_B4_3 = G_B3_2;
G_B4_4 = G_B3_3;
G_B4_5 = G_B3_4;
}
IL_002e:
{
NullCheck(G_B4_2);
ArrayElementTypeCheck (G_B4_2, G_B4_0);
(G_B4_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B4_1), (RuntimeObject*)G_B4_0);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_8 = G_B4_3;
ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* L_9 = ___response1;
G_B5_0 = 1;
G_B5_1 = L_8;
G_B5_2 = L_8;
G_B5_3 = G_B4_4;
G_B5_4 = G_B4_5;
if (L_9)
{
G_B6_0 = 1;
G_B6_1 = L_8;
G_B6_2 = L_8;
G_B6_3 = G_B4_4;
G_B6_4 = G_B4_5;
goto IL_0037;
}
}
{
G_B7_0 = ((String_t*)(NULL));
G_B7_1 = G_B5_0;
G_B7_2 = G_B5_1;
G_B7_3 = G_B5_2;
G_B7_4 = G_B5_3;
G_B7_5 = G_B5_4;
goto IL_003d;
}
IL_0037:
{
ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* L_10 = ___response1;
NullCheck(L_10);
String_t* L_11 = L_10->___StatusDescription_2;
G_B7_0 = L_11;
G_B7_1 = G_B6_0;
G_B7_2 = G_B6_1;
G_B7_3 = G_B6_2;
G_B7_4 = G_B6_3;
G_B7_5 = G_B6_4;
}
IL_003d:
{
NullCheck(G_B7_2);
ArrayElementTypeCheck (G_B7_2, G_B7_0);
(G_B7_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B7_1), (RuntimeObject*)G_B7_0);
FormattableString_t4D7D221057108596F60CCCC83532037E2399BE0D* L_12;
L_12 = FormattableStringFactory_Create_mE112258142E627356203C9E0437E7CE21357A406(G_B7_4, G_B7_3, NULL);
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Info_m0BE7F613FC95552DCCAB55C55B0396C13D2DB513(G_B7_5, L_12, _stringLiteral6C9C9B52BC5A172DC07702A43C413CDD765007FF, NULL);
}
IL_004d:
{
ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* L_13 = ___response1;
if (L_13)
{
goto IL_0052;
}
}
{
return (int32_t)(0);
}
IL_0052:
{
ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* L_14 = ___response1;
NullCheck(L_14);
int32_t L_15 = L_14->___Status_1;
V_1 = L_15;
int32_t L_16 = V_1;
if ((((int32_t)L_16) == ((int32_t)((int32_t)221))))
{
goto IL_0074;
}
}
{
int32_t L_17 = V_1;
__this->___StatusCode_37 = L_17;
ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* L_18 = ___response1;
NullCheck(L_18);
String_t* L_19 = L_18->___StatusDescription_2;
__this->___StatusLine_38 = L_19;
Il2CppCodeGenWriteBarrier((void**)(&__this->___StatusLine_38), (void*)L_19);
}
IL_0074:
{
ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* L_20 = ___response1;
NullCheck(L_20);
bool L_21;
L_21 = ResponseDescription_get_InvalidStatusCode_mCC93FF679EC42A75E4C1E07689BF1CBB5F537168(L_20, NULL);
if (!L_21)
{
goto IL_0088;
}
}
{
WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* L_22 = (WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8_il2cpp_TypeInfo_var)));
NullCheck(L_22);
WebException__ctor_m6C829021B5388956F84830FC249915324C1453A1(L_22, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0C13E7FBCD32454431CB2B4D68B04D5BD105D9CC)), 7, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpControlStream_PipelineCallback_m052E0525E918223582C672D47D8C17E46F7A2E3C_RuntimeMethod_var)));
}
IL_0088:
{
int32_t L_23 = ((CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123*)__this)->____index_13;
if ((!(((uint32_t)L_23) == ((uint32_t)(-1)))))
{
goto IL_00ce;
}
}
{
int32_t L_24 = V_1;
if ((!(((uint32_t)L_24) == ((uint32_t)((int32_t)220)))))
{
goto IL_00b8;
}
}
{
StringBuilder_t* L_25 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
NullCheck(L_25);
StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_25, NULL);
__this->____bannerMessage_24 = L_25;
Il2CppCodeGenWriteBarrier((void**)(&__this->____bannerMessage_24), (void*)L_25);
StringBuilder_t* L_26 = __this->____bannerMessage_24;
String_t* L_27 = __this->___StatusLine_38;
NullCheck(L_26);
StringBuilder_t* L_28;
L_28 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_26, L_27, NULL);
return (int32_t)(1);
}
IL_00b8:
{
int32_t L_29 = V_1;
if ((!(((uint32_t)L_29) == ((uint32_t)((int32_t)120)))))
{
goto IL_00bf;
}
}
{
return (int32_t)(3);
}
IL_00bf:
{
int32_t L_30 = V_1;
ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* L_31 = ___response1;
NullCheck(L_31);
String_t* L_32 = L_31->___StatusDescription_2;
Exception_t* L_33;
L_33 = CommandStream_GenerateException_m16AF53C8700B826E18BC10950729EE134C479E5B(__this, L_30, L_32, (Exception_t*)NULL, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_33, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpControlStream_PipelineCallback_m052E0525E918223582C672D47D8C17E46F7A2E3C_RuntimeMethod_var)));
}
IL_00ce:
{
PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* L_34 = ___entry0;
NullCheck(L_34);
String_t* L_35 = L_34->___Command_0;
bool L_36;
L_36 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_35, _stringLiteral27DDB0923D1148A950B6EDF4EC82AB4A24C64C43, NULL);
if (!L_36)
{
goto IL_0102;
}
}
{
ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* L_37 = ___response1;
NullCheck(L_37);
bool L_38;
L_38 = ResponseDescription_get_PositiveCompletion_mA8C5CB9FF0E386FAD10146736663344154E4D58C(L_37, NULL);
if (!L_38)
{
goto IL_00f5;
}
}
{
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_39;
L_39 = Encoding_get_UTF8_m9700ADA8E0F244002B2A89B483F1B2133B8FE336(NULL);
CommandStream_set_Encoding_mE530EE55B34420E5E4BB74B91D65A6E88B2521FE(__this, L_39, NULL);
goto IL_0100;
}
IL_00f5:
{
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_40;
L_40 = Encoding_get_Default_m20D9BEC170CED98C8D129F8BF51BEEDCA6A9FB3D(NULL);
CommandStream_set_Encoding_mE530EE55B34420E5E4BB74B91D65A6E88B2521FE(__this, L_40, NULL);
}
IL_0100:
{
return (int32_t)(1);
}
IL_0102:
{
PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* L_41 = ___entry0;
NullCheck(L_41);
String_t* L_42 = L_41->___Command_0;
NullCheck(L_42);
int32_t L_43;
L_43 = String_IndexOf_m69E9BDAFD93767C85A7FF861B453415D3B4A200F(L_42, _stringLiteralE0F839E3D8CDD713B4981591207E50BF36EE21DA, NULL);
if ((((int32_t)L_43) == ((int32_t)(-1))))
{
goto IL_0132;
}
}
{
int32_t L_44 = V_1;
if ((!(((uint32_t)L_44) == ((uint32_t)((int32_t)230)))))
{
goto IL_0132;
}
}
{
__this->____loginState_36 = 1;
int32_t L_45 = ((CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123*)__this)->____index_13;
((CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123*)__this)->____index_13 = ((int32_t)il2cpp_codegen_add(L_45, 1));
}
IL_0132:
{
ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* L_46 = ___response1;
NullCheck(L_46);
bool L_47;
L_47 = ResponseDescription_get_TransientFailure_m79235F6AAD03B39148D25332EB0784E5C4696807(L_46, NULL);
if (L_47)
{
goto IL_0142;
}
}
{
ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* L_48 = ___response1;
NullCheck(L_48);
bool L_49;
L_49 = ResponseDescription_get_PermanentFailure_mD250931175B99B4B6558297A889ED479FC292843(L_48, NULL);
if (!L_49)
{
goto IL_015f;
}
}
IL_0142:
{
int32_t L_50 = V_1;
if ((!(((uint32_t)L_50) == ((uint32_t)((int32_t)421)))))
{
goto IL_0150;
}
}
{
CommandStream_MarkAsRecoverableFailure_m8577AAD7B31DAD61EAB4594E75EFEBB58B83E2B3(__this, NULL);
}
IL_0150:
{
int32_t L_51 = V_1;
ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* L_52 = ___response1;
NullCheck(L_52);
String_t* L_53 = L_52->___StatusDescription_2;
Exception_t* L_54;
L_54 = CommandStream_GenerateException_m16AF53C8700B826E18BC10950729EE134C479E5B(__this, L_51, L_53, (Exception_t*)NULL, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_54, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpControlStream_PipelineCallback_m052E0525E918223582C672D47D8C17E46F7A2E3C_RuntimeMethod_var)));
}
IL_015f:
{
uint8_t L_55 = __this->____loginState_36;
if ((((int32_t)L_55) == ((int32_t)1)))
{
goto IL_01a3;
}
}
{
PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* L_56 = ___entry0;
NullCheck(L_56);
String_t* L_57 = L_56->___Command_0;
NullCheck(L_57);
int32_t L_58;
L_58 = String_IndexOf_m69E9BDAFD93767C85A7FF861B453415D3B4A200F(L_57, _stringLiteral3F477F5B61F788A30AF7E67D63A4BA5A4FC200D5, NULL);
if ((((int32_t)L_58) == ((int32_t)(-1))))
{
goto IL_01a3;
}
}
{
int32_t L_59 = V_1;
if ((((int32_t)L_59) == ((int32_t)((int32_t)332))))
{
goto IL_018b;
}
}
{
int32_t L_60 = V_1;
if ((!(((uint32_t)L_60) == ((uint32_t)((int32_t)230)))))
{
goto IL_0194;
}
}
IL_018b:
{
__this->____loginState_36 = 1;
goto IL_01a3;
}
IL_0194:
{
int32_t L_61 = V_1;
ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* L_62 = ___response1;
NullCheck(L_62);
String_t* L_63 = L_62->___StatusDescription_2;
Exception_t* L_64;
L_64 = CommandStream_GenerateException_m16AF53C8700B826E18BC10950729EE134C479E5B(__this, L_61, L_63, (Exception_t*)NULL, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_64, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpControlStream_PipelineCallback_m052E0525E918223582C672D47D8C17E46F7A2E3C_RuntimeMethod_var)));
}
IL_01a3:
{
PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* L_65 = ___entry0;
NullCheck(L_65);
bool L_66;
L_66 = PipelineEntry_HasFlag_m1C72335CAD79960E9FCCB190541F222A76F00F96(L_65, 4, NULL);
if (!L_66)
{
goto IL_01cf;
}
}
{
ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* L_67 = ___response1;
NullCheck(L_67);
bool L_68;
L_68 = ResponseDescription_get_PositiveCompletion_mA8C5CB9FF0E386FAD10146736663344154E4D58C(L_67, NULL);
if (L_68)
{
goto IL_01bc;
}
}
{
ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* L_69 = ___response1;
NullCheck(L_69);
bool L_70;
L_70 = ResponseDescription_get_PositiveIntermediate_mEE58E298D3A383D8D2A8EB537B53AAC7A9B61348(L_69, NULL);
if (!L_70)
{
goto IL_01cf;
}
}
IL_01bc:
{
PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* L_71 = ___entry0;
ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* L_72 = ___response1;
bool L_73 = ___timeout2;
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE** L_74 = ___stream3;
int32_t L_75;
L_75 = FtpControlStream_QueueOrCreateDataConection_m8B8FFECC845071AF8089070B306555E05701DBB4(__this, L_71, L_72, L_73, L_74, (&V_2), NULL);
V_3 = L_75;
bool L_76 = V_2;
if (L_76)
{
goto IL_01cf;
}
}
{
int32_t L_77 = V_3;
return L_77;
}
IL_01cf:
{
int32_t L_78 = V_1;
if ((((int32_t)L_78) == ((int32_t)((int32_t)150))))
{
goto IL_01dc;
}
}
{
int32_t L_79 = V_1;
if ((!(((uint32_t)L_79) == ((uint32_t)((int32_t)125)))))
{
goto IL_024b;
}
}
IL_01dc:
{
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_80 = __this->____dataSocket_21;
if (L_80)
{
goto IL_01e6;
}
}
{
return (int32_t)(0);
}
IL_01e6:
{
PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* L_81 = ___entry0;
NullCheck(L_81);
bool L_82;
L_82 = PipelineEntry_HasFlag_m1C72335CAD79960E9FCCB190541F222A76F00F96(L_81, 2, NULL);
if (L_82)
{
goto IL_020d;
}
}
{
int32_t L_83 = V_1;
int32_t L_84 = L_83;
RuntimeObject* L_85 = Box(FtpStatusCode_tB41B8C83958681A4C0AB77B4C847B1D5C9196C6E_il2cpp_TypeInfo_var, &L_84);
PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* L_86 = ___entry0;
NullCheck(L_86);
String_t* L_87 = L_86->___Command_0;
String_t* L_88;
L_88 = SR_Format_mCBC2E13309DB2E03F48F50E5189DD215B5BA7186(_stringLiteral253C2A72C3C0896AEF65D4E8740C0541E7390437, L_85, L_87, NULL);
((CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123*)__this)->____abortReason_17 = L_88;
Il2CppCodeGenWriteBarrier((void**)(&((CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123*)__this)->____abortReason_17), (void*)L_88);
return (int32_t)(0);
}
IL_020d:
{
ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* L_89 = ___response1;
NullCheck(L_89);
String_t* L_90 = L_89->___StatusDescription_2;
FtpControlStream_TryUpdateContentLength_mE2B8C5EC33E1F4D789FE5C6DE3825BB2952EB753(__this, L_90, NULL);
WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* L_91 = ((CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123*)__this)->____request_9;
V_4 = ((FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9*)CastclassSealed((RuntimeObject*)L_91, FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9_il2cpp_TypeInfo_var));
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_92 = V_4;
NullCheck(L_92);
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_93;
L_93 = FtpWebRequest_get_MethodInfo_m1916AEF829D24CCE147215A4CC8B5D12E35370EB_inline(L_92, NULL);
NullCheck(L_93);
bool L_94;
L_94 = FtpMethodInfo_get_ShouldParseForResponseUri_m7D40CD10C27151B72235705787C1FCBC62B6E60B(L_93, NULL);
if (!L_94)
{
goto IL_0242;
}
}
{
ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* L_95 = ___response1;
NullCheck(L_95);
String_t* L_96 = L_95->___StatusDescription_2;
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_97 = V_4;
FtpControlStream_TryUpdateResponseUri_mA4514F22354FA2F4BEB3D73F24A7DEB5240E213F(__this, L_96, L_97, NULL);
}
IL_0242:
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE** L_98 = ___stream3;
int32_t L_99;
L_99 = FtpControlStream_QueueOrCreateFtpDataStream_m37AFE4C4DA7DB36D34170261D3AC39D65C2A4AC0(__this, L_98, NULL);
return L_99;
}
IL_024b:
{
int32_t L_100 = V_1;
if ((!(((uint32_t)L_100) == ((uint32_t)((int32_t)230)))))
{
goto IL_026a;
}
}
{
StringBuilder_t* L_101 = __this->____welcomeMessage_25;
String_t* L_102 = __this->___StatusLine_38;
NullCheck(L_101);
StringBuilder_t* L_103;
L_103 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_101, L_102, NULL);
goto IL_03d6;
}
IL_026a:
{
int32_t L_104 = V_1;
if ((!(((uint32_t)L_104) == ((uint32_t)((int32_t)221)))))
{
goto IL_028f;
}
}
{
StringBuilder_t* L_105 = __this->____exitMessage_26;
ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* L_106 = ___response1;
NullCheck(L_106);
String_t* L_107 = L_106->___StatusDescription_2;
NullCheck(L_105);
StringBuilder_t* L_108;
L_108 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_105, L_107, NULL);
NetworkStreamWrapper_CloseSocket_mAD2F12D01E0C1D3B6DD51D691F1C5CBA1A4D1467(__this, NULL);
goto IL_03d6;
}
IL_028f:
{
int32_t L_109 = V_1;
if ((!(((uint32_t)L_109) == ((uint32_t)((int32_t)234)))))
{
goto IL_0320;
}
}
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_110;
L_110 = NetworkStreamWrapper_get_NetworkStream_m65DC14637198CEE4E9F9543EA3AC07168BA06488_inline(__this, NULL);
if (((TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51*)IsInstClass((RuntimeObject*)L_110, TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51_il2cpp_TypeInfo_var)))
{
goto IL_03d6;
}
}
{
WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* L_111 = ((CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123*)__this)->____request_9;
V_5 = ((FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9*)CastclassSealed((RuntimeObject*)L_111, FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9_il2cpp_TypeInfo_var));
U3CU3Ec__DisplayClass31_0_t5AF210E8C8A968A4D36EE158747C05623DB6FD6E* L_112 = V_0;
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_113;
L_113 = NetworkStreamWrapper_get_NetworkStream_m65DC14637198CEE4E9F9543EA3AC07168BA06488_inline(__this, NULL);
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_114;
L_114 = NetworkStreamWrapper_get_Socket_m787036C2B47E611BD0F452A14DE461D8B5A30246(__this, NULL);
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_115 = V_5;
NullCheck(L_115);
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_116;
L_116 = VirtualFuncInvoker0< Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* >::Invoke(11 /* System.Uri System.Net.WebRequest::get_RequestUri() */, L_115);
NullCheck(L_116);
String_t* L_117;
L_117 = Uri_get_Host_m2C0E258C7DFF7A340049BE9BC08FF45E90988D8C(L_116, NULL);
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_118 = V_5;
NullCheck(L_118);
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* L_119;
L_119 = FtpWebRequest_get_ClientCertificates_mA566B0A04203FCA61A4C858073A0A9271AB73382(L_118, NULL);
TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51* L_120 = (TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51*)il2cpp_codegen_object_new(TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51_il2cpp_TypeInfo_var);
NullCheck(L_120);
TlsStream__ctor_m92BDBF633326E74A389C3F979F7DA25991AA9575(L_120, L_113, L_114, L_117, L_119, NULL);
NullCheck(L_112);
L_112->___tlsStream_1 = L_120;
Il2CppCodeGenWriteBarrier((void**)(&L_112->___tlsStream_1), (void*)L_120);
bool L_121 = ((CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123*)__this)->____isAsync_10;
if (!L_121)
{
goto IL_0304;
}
}
{
U3CU3Ec__DisplayClass31_0_t5AF210E8C8A968A4D36EE158747C05623DB6FD6E* L_122 = V_0;
NullCheck(L_122);
TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51* L_123 = L_122->___tlsStream_1;
U3CU3Ec__DisplayClass31_0_t5AF210E8C8A968A4D36EE158747C05623DB6FD6E* L_124 = V_0;
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* L_125 = (AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C*)il2cpp_codegen_object_new(AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C_il2cpp_TypeInfo_var);
NullCheck(L_125);
AsyncCallback__ctor_mC3C0475E930E4419AED02C7335E53B425A2D68AC(L_125, L_124, (intptr_t)((void*)U3CU3Ec__DisplayClass31_0_U3CPipelineCallbackU3Eb__0_mFA6F1908DB89530BFD35B6934E01C14A5B45112D_RuntimeMethod_var), NULL);
NullCheck(L_123);
RuntimeObject* L_126;
L_126 = TlsStream_BeginAuthenticateAsClient_mCC4D883302E06680A9E5F3EE95B79C52BD0E2FF6(L_123, L_125, NULL, NULL);
return (int32_t)(2);
}
IL_0304:
{
U3CU3Ec__DisplayClass31_0_t5AF210E8C8A968A4D36EE158747C05623DB6FD6E* L_127 = V_0;
NullCheck(L_127);
TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51* L_128 = L_127->___tlsStream_1;
NullCheck(L_128);
TlsStream_AuthenticateAsClient_m95AA6647436479C34D8149DA1989A3FE6BD6F2C0(L_128, NULL);
U3CU3Ec__DisplayClass31_0_t5AF210E8C8A968A4D36EE158747C05623DB6FD6E* L_129 = V_0;
NullCheck(L_129);
TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51* L_130 = L_129->___tlsStream_1;
NetworkStreamWrapper_set_NetworkStream_m66A3B0C65E4DD88A79296C88CE4DC5912ED997A7_inline(__this, L_130, NULL);
goto IL_03d6;
}
IL_0320:
{
int32_t L_131 = V_1;
if ((!(((uint32_t)L_131) == ((uint32_t)((int32_t)213)))))
{
goto IL_0380;
}
}
{
WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* L_132 = ((CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123*)__this)->____request_9;
PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* L_133 = ___entry0;
NullCheck(L_133);
String_t* L_134 = L_133->___Command_0;
NullCheck(L_134);
bool L_135;
L_135 = String_StartsWith_mF75DBA1EB709811E711B44E26FF919C88A8E65C0(L_134, _stringLiteral7A1F5BB29CA3660283E74E89C0A4F6EBFA460DA5, NULL);
if (!L_135)
{
goto IL_035a;
}
}
{
ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* L_136 = ___response1;
NullCheck(L_136);
String_t* L_137 = L_136->___StatusDescription_2;
int64_t L_138;
L_138 = FtpControlStream_GetContentLengthFrom213Response_mC838EFD3A20DEA9A8DA867CF8496229CB076EB96(__this, L_137, NULL);
__this->____contentLength_29 = L_138;
goto IL_03d6;
}
IL_035a:
{
PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* L_139 = ___entry0;
NullCheck(L_139);
String_t* L_140 = L_139->___Command_0;
NullCheck(L_140);
bool L_141;
L_141 = String_StartsWith_mF75DBA1EB709811E711B44E26FF919C88A8E65C0(L_140, _stringLiteralEB2C138260B2C2055436518E83EFD5F1079EA7CC, NULL);
if (!L_141)
{
goto IL_03d6;
}
}
{
ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* L_142 = ___response1;
NullCheck(L_142);
String_t* L_143 = L_142->___StatusDescription_2;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_144;
L_144 = FtpControlStream_GetLastModifiedFrom213Response_mFF3AD1F97838C9CEBC92D3A2C033962064ECEE79(__this, L_143, NULL);
__this->____lastModified_30 = L_144;
goto IL_03d6;
}
IL_0380:
{
int32_t L_145 = V_1;
if ((!(((uint32_t)L_145) == ((uint32_t)((int32_t)257)))))
{
goto IL_03b7;
}
}
{
PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* L_146 = ___entry0;
NullCheck(L_146);
String_t* L_147 = L_146->___Command_0;
bool L_148;
L_148 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_147, _stringLiteralF26481DB2F9523FA4A1D9924BB28759AFDCDE050, NULL);
if (!L_148)
{
goto IL_03d6;
}
}
{
PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* L_149 = ___entry0;
NullCheck(L_149);
bool L_150;
L_150 = PipelineEntry_HasFlag_m1C72335CAD79960E9FCCB190541F222A76F00F96(L_149, 1, NULL);
if (L_150)
{
goto IL_03d6;
}
}
{
ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* L_151 = ___response1;
NullCheck(L_151);
String_t* L_152 = L_151->___StatusDescription_2;
String_t* L_153;
L_153 = FtpControlStream_GetLoginDirectory_m24BD744DF3263F2FD96A6B120FD5E014C759ABE9(__this, L_152, NULL);
__this->____loginDirectory_32 = L_153;
Il2CppCodeGenWriteBarrier((void**)(&__this->____loginDirectory_32), (void*)L_153);
goto IL_03d6;
}
IL_03b7:
{
PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* L_154 = ___entry0;
NullCheck(L_154);
String_t* L_155 = L_154->___Command_0;
NullCheck(L_155);
int32_t L_156;
L_156 = String_IndexOf_m69E9BDAFD93767C85A7FF861B453415D3B4A200F(L_155, _stringLiteral7F4834BD098A695FDE6AA074DD12E90C659CD225, NULL);
if ((((int32_t)L_156) == ((int32_t)(-1))))
{
goto IL_03d6;
}
}
{
String_t* L_157 = __this->____requestedServerDirectory_34;
__this->____establishedServerDirectory_33 = L_157;
Il2CppCodeGenWriteBarrier((void**)(&__this->____establishedServerDirectory_33), (void*)L_157);
}
IL_03d6:
{
ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* L_158 = ___response1;
NullCheck(L_158);
bool L_159;
L_159 = ResponseDescription_get_PositiveIntermediate_mEE58E298D3A383D8D2A8EB537B53AAC7A9B61348(L_158, NULL);
if (L_159)
{
goto IL_03f8;
}
}
{
bool L_160;
L_160 = NetworkStreamWrapper_get_UsingSecureStream_m86E61049DC4265D855C187275D6536ACA6988A05(__this, NULL);
if (L_160)
{
goto IL_03fa;
}
}
{
PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* L_161 = ___entry0;
NullCheck(L_161);
String_t* L_162 = L_161->___Command_0;
bool L_163;
L_163 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_162, _stringLiteral1653EF65FEC1A0699F44EC90CCA9C89884781A94, NULL);
if (!L_163)
{
goto IL_03fa;
}
}
IL_03f8:
{
return (int32_t)(3);
}
IL_03fa:
{
return (int32_t)(1);
}
}
// System.Net.CommandStream/PipelineEntry[] System.Net.FtpControlStream::BuildCommandsList(System.Net.WebRequest)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PipelineEntryU5BU5D_tF96DE809CEDE1A15F1D069F027582F92EEE04CE4* FtpControlStream_BuildCommandsList_mE94A3FF9361C3692177B493AA3E4A70B4F903B45 (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* ___req0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICredentials_t8FDA6AF64B852DA0631D4BE66962B20E51E230F0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PipelineEntryU5BU5D_tF96DE809CEDE1A15F1D069F027582F92EEE04CE4_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral04045BCBA2BF67D6C1FB792E497557BDF7F450B1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral08AEFF14DE513F5C997D873327E69A7331DF29D8);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral09B11B6CC411D8B9FFB75EAAE9A35B2AF248CE40);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1673637C0DEF01B1D6ED9979CE65DF36B659184D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1EFC2D997940179D05D340EEFB09AEABEBBE5AF3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2A2B511F9E1806176D2C8E3C04414FCABDA3FC6A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral30533292CAF49D04873AD3F08735959A1C6C6111);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral37ED1B470D34983C51B7FCACFA5663E89C9196E2);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3F477F5B61F788A30AF7E67D63A4BA5A4FC200D5);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4400EE4D96128FF5849A664BF898C4FA42C55867);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6B63473C94B9EADF291135D2EDD34552020ACFFA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6CB05FD18E12F98F81A204339D25DD82BC993FDD);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6E34E505E342A11AE48ECA3D71434F8043A88EB6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7636E7C7A5108E7ABB16B320D0A637F4E2A9E3E6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7F4834BD098A695FDE6AA074DD12E90C659CD225);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral864F0127710FB26053A56F852CCABCB8F269195F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8C84DED9E27D73A4FA0659FD02C5FAD66640F888);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral960C0D8C9BD0DBD457272FE9A9489F8182BB0C2B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9E457975468FF4D1398279C178A1A9A3B8DFE28E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA2F1D185E07BC18D8F5CEE1B8FD0C522DDB0158D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA46737DD153510F79305AF4E1494F323B2F08BBA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAA97414725713F976A0AA88257D701073421F779);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAFF6FC1BBF8225403B19D80590F3E0C595DA293C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE0F839E3D8CDD713B4981591207E50BF36EE21DA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE2C28F43F81C1F168F05093B64423B1E32B3DC9C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEF420ABFDDBDA7B9EE665D85EF62E4A437554003);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFCA440D9A4F7E2D10772A726D6FB427BAE128D34);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* V_1 = NULL;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* V_2 = NULL;
int32_t V_3 = 0;
String_t* V_4 = NULL;
String_t* V_5 = NULL;
String_t* V_6 = NULL;
int32_t V_7 = 0;
String_t* V_8 = NULL;
String_t* V_9 = NULL;
String_t* V_10 = NULL;
String_t* V_11 = NULL;
String_t* V_12 = NULL;
String_t* V_13 = NULL;
int64_t V_14 = 0;
String_t* V_15 = NULL;
String_t* V_16 = NULL;
String_t* G_B38_0 = NULL;
String_t* G_B44_0 = NULL;
String_t* G_B48_0 = NULL;
String_t* G_B58_0 = NULL;
{
V_0 = (bool)0;
WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* L_0 = ___req0;
V_1 = ((FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9*)CastclassSealed((RuntimeObject*)L_0, FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9_il2cpp_TypeInfo_var));
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
bool L_1;
L_1 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_1)
{
goto IL_001c;
}
}
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Info_m0BE7F613FC95552DCCAB55C55B0396C13D2DB513(__this, (FormattableString_t4D7D221057108596F60CCCC83532037E2399BE0D*)NULL, _stringLiteral6B63473C94B9EADF291135D2EDD34552020ACFFA, NULL);
}
IL_001c:
{
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_2 = V_1;
NullCheck(L_2);
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_3;
L_3 = VirtualFuncInvoker0< Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* >::Invoke(11 /* System.Uri System.Net.WebRequest::get_RequestUri() */, L_2);
__this->____responseUri_35 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->____responseUri_35), (void*)L_3);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_4 = (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)il2cpp_codegen_object_new(ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var);
NullCheck(L_4);
ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80(L_4, NULL);
V_2 = L_4;
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_5 = V_1;
NullCheck(L_5);
bool L_6;
L_6 = FtpWebRequest_get_EnableSsl_mE30506F987A04EB9771FD530066BC18A9F2A7ED8_inline(L_5, NULL);
if (!L_6)
{
goto IL_005c;
}
}
{
bool L_7;
L_7 = NetworkStreamWrapper_get_UsingSecureStream_m86E61049DC4265D855C187275D6536ACA6988A05(__this, NULL);
if (L_7)
{
goto IL_005c;
}
}
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_8 = V_2;
String_t* L_9;
L_9 = FtpControlStream_FormatFtpCommand_m29176141DC970F6084AA0572E60CDF71F5A6BABB(__this, _stringLiteral08AEFF14DE513F5C997D873327E69A7331DF29D8, _stringLiteral1673637C0DEF01B1D6ED9979CE65DF36B659184D, NULL);
PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* L_10 = (PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463*)il2cpp_codegen_object_new(PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463_il2cpp_TypeInfo_var);
NullCheck(L_10);
PipelineEntry__ctor_m3988E03D67CAC7725DDD334A772C465FCDD58002(L_10, L_9, NULL);
NullCheck(L_8);
int32_t L_11;
L_11 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_8, L_10);
V_0 = (bool)1;
}
IL_005c:
{
bool L_12 = V_0;
if (!L_12)
{
goto IL_008f;
}
}
{
__this->____loginDirectory_32 = (String_t*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->____loginDirectory_32), (void*)(String_t*)NULL);
__this->____establishedServerDirectory_33 = (String_t*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->____establishedServerDirectory_33), (void*)(String_t*)NULL);
__this->____requestedServerDirectory_34 = (String_t*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->____requestedServerDirectory_34), (void*)(String_t*)NULL);
String_t* L_13 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
__this->____currentTypeSetting_28 = L_13;
Il2CppCodeGenWriteBarrier((void**)(&__this->____currentTypeSetting_28), (void*)L_13);
uint8_t L_14 = __this->____loginState_36;
if ((!(((uint32_t)L_14) == ((uint32_t)1))))
{
goto IL_008f;
}
}
{
__this->____loginState_36 = 2;
}
IL_008f:
{
uint8_t L_15 = __this->____loginState_36;
if ((((int32_t)L_15) == ((int32_t)1)))
{
goto IL_01f2;
}
}
{
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_16 = V_1;
NullCheck(L_16);
RuntimeObject* L_17;
L_17 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(14 /* System.Net.ICredentials System.Net.WebRequest::get_Credentials() */, L_16);
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_18 = V_1;
NullCheck(L_18);
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_19;
L_19 = VirtualFuncInvoker0< Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* >::Invoke(11 /* System.Uri System.Net.WebRequest::get_RequestUri() */, L_18);
NullCheck(L_17);
NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* L_20;
L_20 = InterfaceFuncInvoker2< NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313*, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*, String_t* >::Invoke(0 /* System.Net.NetworkCredential System.Net.ICredentials::GetCredential(System.Uri,System.String) */, ICredentials_t8FDA6AF64B852DA0631D4BE66962B20E51E230F0_il2cpp_TypeInfo_var, L_17, L_19, _stringLiteral6E34E505E342A11AE48ECA3D71434F8043A88EB6);
FtpControlStream_set_Credentials_mB7B4723790E93C6A35DA14B680F74E087EE7675E(__this, L_20, NULL);
StringBuilder_t* L_21 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
NullCheck(L_21);
StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_21, NULL);
__this->____welcomeMessage_25 = L_21;
Il2CppCodeGenWriteBarrier((void**)(&__this->____welcomeMessage_25), (void*)L_21);
StringBuilder_t* L_22 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
NullCheck(L_22);
StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_22, NULL);
__this->____exitMessage_26 = L_22;
Il2CppCodeGenWriteBarrier((void**)(&__this->____exitMessage_26), (void*)L_22);
String_t* L_23 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
V_8 = L_23;
String_t* L_24 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
V_9 = L_24;
NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* L_25;
L_25 = FtpControlStream_get_Credentials_m58332EC011855E9A49AF9938434859AF08C7CE7F(__this, NULL);
if (!L_25)
{
goto IL_0123;
}
}
{
NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* L_26;
L_26 = FtpControlStream_get_Credentials_m58332EC011855E9A49AF9938434859AF08C7CE7F(__this, NULL);
NullCheck(L_26);
String_t* L_27;
L_27 = NetworkCredential_get_UserName_mEBB5D5B4928F1868DD79A104CF2BAFCFAC88AFA1(L_26, NULL);
V_8 = L_27;
NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* L_28;
L_28 = FtpControlStream_get_Credentials_m58332EC011855E9A49AF9938434859AF08C7CE7F(__this, NULL);
NullCheck(L_28);
String_t* L_29;
L_29 = NetworkCredential_get_Domain_mFFC454BD64B52DC2FFA09971876B56A2B337DE17(L_28, NULL);
V_10 = L_29;
String_t* L_30 = V_10;
bool L_31;
L_31 = String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A(L_30, NULL);
if (L_31)
{
goto IL_0116;
}
}
{
String_t* L_32 = V_10;
String_t* L_33 = V_8;
String_t* L_34;
L_34 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(L_32, _stringLiteral09B11B6CC411D8B9FFB75EAAE9A35B2AF248CE40, L_33, NULL);
V_8 = L_34;
}
IL_0116:
{
NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* L_35;
L_35 = FtpControlStream_get_Credentials_m58332EC011855E9A49AF9938434859AF08C7CE7F(__this, NULL);
NullCheck(L_35);
String_t* L_36;
L_36 = NetworkCredential_get_Password_m7F0F54ED0E4A41F66513296C4E3063D70AF6036C(L_35, NULL);
V_9 = L_36;
}
IL_0123:
{
String_t* L_37 = V_8;
NullCheck(L_37);
int32_t L_38;
L_38 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_37, NULL);
if (L_38)
{
goto IL_0143;
}
}
{
String_t* L_39 = V_9;
NullCheck(L_39);
int32_t L_40;
L_40 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_39, NULL);
if (L_40)
{
goto IL_0143;
}
}
{
V_8 = _stringLiteral37ED1B470D34983C51B7FCACFA5663E89C9196E2;
V_9 = _stringLiteral864F0127710FB26053A56F852CCABCB8F269195F;
}
IL_0143:
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_41 = V_2;
String_t* L_42 = V_8;
String_t* L_43;
L_43 = FtpControlStream_FormatFtpCommand_m29176141DC970F6084AA0572E60CDF71F5A6BABB(__this, _stringLiteralE0F839E3D8CDD713B4981591207E50BF36EE21DA, L_42, NULL);
PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* L_44 = (PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463*)il2cpp_codegen_object_new(PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463_il2cpp_TypeInfo_var);
NullCheck(L_44);
PipelineEntry__ctor_m3988E03D67CAC7725DDD334A772C465FCDD58002(L_44, L_43, NULL);
NullCheck(L_41);
int32_t L_45;
L_45 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_41, L_44);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_46 = V_2;
String_t* L_47 = V_9;
String_t* L_48;
L_48 = FtpControlStream_FormatFtpCommand_m29176141DC970F6084AA0572E60CDF71F5A6BABB(__this, _stringLiteral3F477F5B61F788A30AF7E67D63A4BA5A4FC200D5, L_47, NULL);
PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* L_49 = (PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463*)il2cpp_codegen_object_new(PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463_il2cpp_TypeInfo_var);
NullCheck(L_49);
PipelineEntry__ctor_mCF62FB0B8F6602CF2081D896C0232FB7B9F31881(L_49, L_48, 8, NULL);
NullCheck(L_46);
int32_t L_50;
L_50 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_46, L_49);
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_51 = V_1;
NullCheck(L_51);
bool L_52;
L_52 = FtpWebRequest_get_EnableSsl_mE30506F987A04EB9771FD530066BC18A9F2A7ED8_inline(L_51, NULL);
if (!L_52)
{
goto IL_01be;
}
}
{
bool L_53;
L_53 = NetworkStreamWrapper_get_UsingSecureStream_m86E61049DC4265D855C187275D6536ACA6988A05(__this, NULL);
if (L_53)
{
goto IL_01be;
}
}
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_54 = V_2;
String_t* L_55;
L_55 = FtpControlStream_FormatFtpCommand_m29176141DC970F6084AA0572E60CDF71F5A6BABB(__this, _stringLiteral30533292CAF49D04873AD3F08735959A1C6C6111, _stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024, NULL);
PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* L_56 = (PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463*)il2cpp_codegen_object_new(PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463_il2cpp_TypeInfo_var);
NullCheck(L_56);
PipelineEntry__ctor_m3988E03D67CAC7725DDD334A772C465FCDD58002(L_56, L_55, NULL);
NullCheck(L_54);
int32_t L_57;
L_57 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_54, L_56);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_58 = V_2;
String_t* L_59;
L_59 = FtpControlStream_FormatFtpCommand_m29176141DC970F6084AA0572E60CDF71F5A6BABB(__this, _stringLiteralAA97414725713F976A0AA88257D701073421F779, _stringLiteralFCA440D9A4F7E2D10772A726D6FB427BAE128D34, NULL);
PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* L_60 = (PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463*)il2cpp_codegen_object_new(PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463_il2cpp_TypeInfo_var);
NullCheck(L_60);
PipelineEntry__ctor_m3988E03D67CAC7725DDD334A772C465FCDD58002(L_60, L_59, NULL);
NullCheck(L_58);
int32_t L_61;
L_61 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_58, L_60);
}
IL_01be:
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_62 = V_2;
String_t* L_63;
L_63 = FtpControlStream_FormatFtpCommand_m29176141DC970F6084AA0572E60CDF71F5A6BABB(__this, _stringLiteralA46737DD153510F79305AF4E1494F323B2F08BBA, _stringLiteralAFF6FC1BBF8225403B19D80590F3E0C595DA293C, NULL);
PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* L_64 = (PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463*)il2cpp_codegen_object_new(PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463_il2cpp_TypeInfo_var);
NullCheck(L_64);
PipelineEntry__ctor_m3988E03D67CAC7725DDD334A772C465FCDD58002(L_64, L_63, NULL);
NullCheck(L_62);
int32_t L_65;
L_65 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_62, L_64);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_66 = V_2;
String_t* L_67;
L_67 = FtpControlStream_FormatFtpCommand_m29176141DC970F6084AA0572E60CDF71F5A6BABB(__this, _stringLiteral04045BCBA2BF67D6C1FB792E497557BDF7F450B1, (String_t*)NULL, NULL);
PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* L_68 = (PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463*)il2cpp_codegen_object_new(PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463_il2cpp_TypeInfo_var);
NullCheck(L_68);
PipelineEntry__ctor_m3988E03D67CAC7725DDD334A772C465FCDD58002(L_68, L_67, NULL);
NullCheck(L_66);
int32_t L_69;
L_69 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_66, L_68);
}
IL_01f2:
{
V_3 = 0;
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_70 = V_1;
NullCheck(L_70);
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_71;
L_71 = FtpWebRequest_get_MethodInfo_m1916AEF829D24CCE147215A4CC8B5D12E35370EB_inline(L_70, NULL);
NullCheck(L_71);
bool L_72;
L_72 = FtpMethodInfo_HasFlag_mE4178764BE8879A93F8E9A4A3737528A2BE3F775(L_71, ((int32_t)16), NULL);
if (!L_72)
{
goto IL_0207;
}
}
{
V_3 = 2;
goto IL_0218;
}
IL_0207:
{
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_73 = V_1;
NullCheck(L_73);
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_74;
L_74 = FtpWebRequest_get_MethodInfo_m1916AEF829D24CCE147215A4CC8B5D12E35370EB_inline(L_73, NULL);
NullCheck(L_74);
bool L_75;
L_75 = FtpMethodInfo_HasFlag_mE4178764BE8879A93F8E9A4A3737528A2BE3F775(L_74, ((int32_t)32), NULL);
if (!L_75)
{
goto IL_0218;
}
}
{
V_3 = 1;
}
IL_0218:
{
int32_t L_76 = V_3;
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_77 = V_1;
NullCheck(L_77);
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_78;
L_78 = VirtualFuncInvoker0< Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* >::Invoke(11 /* System.Uri System.Net.WebRequest::get_RequestUri() */, L_77);
il2cpp_codegen_runtime_class_init_inline(FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_il2cpp_TypeInfo_var);
FtpControlStream_GetPathInfo_m2805EDE029970250B0F50068777129168ACF1A6F(L_76, L_78, (&V_4), (&V_5), (&V_6), NULL);
String_t* L_79 = V_6;
NullCheck(L_79);
int32_t L_80;
L_80 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_79, NULL);
if (L_80)
{
goto IL_024c;
}
}
{
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_81 = V_1;
NullCheck(L_81);
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_82;
L_82 = FtpWebRequest_get_MethodInfo_m1916AEF829D24CCE147215A4CC8B5D12E35370EB_inline(L_81, NULL);
NullCheck(L_82);
bool L_83;
L_83 = FtpMethodInfo_HasFlag_mE4178764BE8879A93F8E9A4A3737528A2BE3F775(L_82, 4, NULL);
if (!L_83)
{
goto IL_024c;
}
}
{
WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* L_84 = (WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8_il2cpp_TypeInfo_var)));
NullCheck(L_84);
WebException__ctor_mFBC3890EC80132004827F36950EEB651595BF277(L_84, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral105F370F0767E80644D1284D6D35746E195C6599)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_84, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpControlStream_BuildCommandsList_mE94A3FF9361C3692177B493AA3E4A70B4F903B45_RuntimeMethod_var)));
}
IL_024c:
{
String_t* L_85 = __this->____establishedServerDirectory_33;
if (!L_85)
{
goto IL_0299;
}
}
{
String_t* L_86 = __this->____loginDirectory_32;
if (!L_86)
{
goto IL_0299;
}
}
{
String_t* L_87 = __this->____establishedServerDirectory_33;
String_t* L_88 = __this->____loginDirectory_32;
bool L_89;
L_89 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_87, L_88, NULL);
if (!L_89)
{
goto IL_0299;
}
}
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_90 = V_2;
String_t* L_91 = __this->____loginDirectory_32;
String_t* L_92;
L_92 = FtpControlStream_FormatFtpCommand_m29176141DC970F6084AA0572E60CDF71F5A6BABB(__this, _stringLiteral7F4834BD098A695FDE6AA074DD12E90C659CD225, L_91, NULL);
PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* L_93 = (PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463*)il2cpp_codegen_object_new(PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463_il2cpp_TypeInfo_var);
NullCheck(L_93);
PipelineEntry__ctor_mCF62FB0B8F6602CF2081D896C0232FB7B9F31881(L_93, L_92, 1, NULL);
NullCheck(L_90);
int32_t L_94;
L_94 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_90, L_93);
String_t* L_95 = __this->____loginDirectory_32;
__this->____requestedServerDirectory_34 = L_95;
Il2CppCodeGenWriteBarrier((void**)(&__this->____requestedServerDirectory_34), (void*)L_95);
}
IL_0299:
{
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_96 = V_1;
NullCheck(L_96);
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_97;
L_97 = FtpWebRequest_get_MethodInfo_m1916AEF829D24CCE147215A4CC8B5D12E35370EB_inline(L_96, NULL);
NullCheck(L_97);
bool L_98;
L_98 = FtpMethodInfo_HasFlag_mE4178764BE8879A93F8E9A4A3737528A2BE3F775(L_97, ((int32_t)256), NULL);
if (!L_98)
{
goto IL_02d7;
}
}
{
String_t* L_99 = V_5;
NullCheck(L_99);
int32_t L_100;
L_100 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_99, NULL);
if ((((int32_t)L_100) <= ((int32_t)0)))
{
goto IL_02d7;
}
}
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_101 = V_2;
String_t* L_102 = V_5;
String_t* L_103;
L_103 = FtpControlStream_FormatFtpCommand_m29176141DC970F6084AA0572E60CDF71F5A6BABB(__this, _stringLiteral7F4834BD098A695FDE6AA074DD12E90C659CD225, L_102, NULL);
PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* L_104 = (PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463*)il2cpp_codegen_object_new(PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463_il2cpp_TypeInfo_var);
NullCheck(L_104);
PipelineEntry__ctor_mCF62FB0B8F6602CF2081D896C0232FB7B9F31881(L_104, L_103, 1, NULL);
NullCheck(L_101);
int32_t L_105;
L_105 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_101, L_104);
String_t* L_106 = V_5;
__this->____requestedServerDirectory_34 = L_106;
Il2CppCodeGenWriteBarrier((void**)(&__this->____requestedServerDirectory_34), (void*)L_106);
}
IL_02d7:
{
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_107 = V_1;
NullCheck(L_107);
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_108;
L_108 = FtpWebRequest_get_MethodInfo_m1916AEF829D24CCE147215A4CC8B5D12E35370EB_inline(L_107, NULL);
NullCheck(L_108);
bool L_109;
L_109 = FtpMethodInfo_get_IsCommandOnly_m908F15518314673A19C0757AA67E24374709D719(L_108, NULL);
if (L_109)
{
goto IL_03dc;
}
}
{
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_110 = V_1;
NullCheck(L_110);
bool L_111;
L_111 = FtpWebRequest_get_UseBinary_mF3DE86086AD5AD72D92B04325590EA25E2597591_inline(L_110, NULL);
if (L_111)
{
goto IL_02f6;
}
}
{
G_B38_0 = _stringLiteralEF420ABFDDBDA7B9EE665D85EF62E4A437554003;
goto IL_02fb;
}
IL_02f6:
{
G_B38_0 = _stringLiteral6CB05FD18E12F98F81A204339D25DD82BC993FDD;
}
IL_02fb:
{
V_11 = G_B38_0;
String_t* L_112 = __this->____currentTypeSetting_28;
String_t* L_113 = V_11;
bool L_114;
L_114 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_112, L_113, NULL);
if (!L_114)
{
goto IL_032d;
}
}
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_115 = V_2;
String_t* L_116 = V_11;
String_t* L_117;
L_117 = FtpControlStream_FormatFtpCommand_m29176141DC970F6084AA0572E60CDF71F5A6BABB(__this, _stringLiteral1EFC2D997940179D05D340EEFB09AEABEBBE5AF3, L_116, NULL);
PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* L_118 = (PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463*)il2cpp_codegen_object_new(PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463_il2cpp_TypeInfo_var);
NullCheck(L_118);
PipelineEntry__ctor_m3988E03D67CAC7725DDD334A772C465FCDD58002(L_118, L_117, NULL);
NullCheck(L_115);
int32_t L_119;
L_119 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_115, L_118);
String_t* L_120 = V_11;
__this->____currentTypeSetting_28 = L_120;
Il2CppCodeGenWriteBarrier((void**)(&__this->____currentTypeSetting_28), (void*)L_120);
}
IL_032d:
{
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_121 = V_1;
NullCheck(L_121);
bool L_122;
L_122 = FtpWebRequest_get_UsePassive_m3934FCB6A521CBDC77018736E820BAA8978135BC_inline(L_121, NULL);
if (!L_122)
{
goto IL_0369;
}
}
{
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* L_123;
L_123 = NetworkStreamWrapper_get_ServerAddress_mE6D714D4B29C89FFE2C975AAA6828FF02440D2C6(__this, NULL);
NullCheck(L_123);
int32_t L_124;
L_124 = IPAddress_get_AddressFamily_m1CE4BCCE499BD70B22F9E37B3F266F9306A98C21(L_123, NULL);
if ((((int32_t)L_124) == ((int32_t)2)))
{
goto IL_034a;
}
}
{
G_B44_0 = _stringLiteral8C84DED9E27D73A4FA0659FD02C5FAD66640F888;
goto IL_034f;
}
IL_034a:
{
G_B44_0 = _stringLiteral7636E7C7A5108E7ABB16B320D0A637F4E2A9E3E6;
}
IL_034f:
{
V_12 = G_B44_0;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_125 = V_2;
String_t* L_126 = V_12;
String_t* L_127;
L_127 = FtpControlStream_FormatFtpCommand_m29176141DC970F6084AA0572E60CDF71F5A6BABB(__this, L_126, (String_t*)NULL, NULL);
PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* L_128 = (PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463*)il2cpp_codegen_object_new(PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463_il2cpp_TypeInfo_var);
NullCheck(L_128);
PipelineEntry__ctor_mCF62FB0B8F6602CF2081D896C0232FB7B9F31881(L_128, L_127, 4, NULL);
NullCheck(L_125);
int32_t L_129;
L_129 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_125, L_128);
goto IL_03a7;
}
IL_0369:
{
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* L_130;
L_130 = NetworkStreamWrapper_get_ServerAddress_mE6D714D4B29C89FFE2C975AAA6828FF02440D2C6(__this, NULL);
NullCheck(L_130);
int32_t L_131;
L_131 = IPAddress_get_AddressFamily_m1CE4BCCE499BD70B22F9E37B3F266F9306A98C21(L_130, NULL);
if ((((int32_t)L_131) == ((int32_t)2)))
{
goto IL_037e;
}
}
{
G_B48_0 = _stringLiteral960C0D8C9BD0DBD457272FE9A9489F8182BB0C2B;
goto IL_0383;
}
IL_037e:
{
G_B48_0 = _stringLiteral4400EE4D96128FF5849A664BF898C4FA42C55867;
}
IL_0383:
{
V_13 = G_B48_0;
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_132 = V_1;
FtpControlStream_CreateFtpListenerSocket_mC7CAB6085D9ECF4C194F053CFC1AC34AFB8F323F(__this, L_132, NULL);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_133 = V_2;
String_t* L_134 = V_13;
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_135 = V_1;
String_t* L_136;
L_136 = FtpControlStream_GetPortCommandLine_mAA8762A087F108ABA5DE42D38AD916C9CFA03194(__this, L_135, NULL);
String_t* L_137;
L_137 = FtpControlStream_FormatFtpCommand_m29176141DC970F6084AA0572E60CDF71F5A6BABB(__this, L_134, L_136, NULL);
PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* L_138 = (PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463*)il2cpp_codegen_object_new(PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463_il2cpp_TypeInfo_var);
NullCheck(L_138);
PipelineEntry__ctor_m3988E03D67CAC7725DDD334A772C465FCDD58002(L_138, L_137, NULL);
NullCheck(L_133);
int32_t L_139;
L_139 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_133, L_138);
}
IL_03a7:
{
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_140 = V_1;
NullCheck(L_140);
int64_t L_141;
L_141 = FtpWebRequest_get_ContentOffset_mA4ECBD88A0B0834C16BF00D976B20AF95D87701B_inline(L_140, NULL);
if ((((int64_t)L_141) <= ((int64_t)((int64_t)0))))
{
goto IL_03dc;
}
}
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_142 = V_2;
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_143 = V_1;
NullCheck(L_143);
int64_t L_144;
L_144 = FtpWebRequest_get_ContentOffset_mA4ECBD88A0B0834C16BF00D976B20AF95D87701B_inline(L_143, NULL);
V_14 = L_144;
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_145;
L_145 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
String_t* L_146;
L_146 = Int64_ToString_m5250B67D3E89B8EB829FB26136E744F1F141B7FD((&V_14), L_145, NULL);
String_t* L_147;
L_147 = FtpControlStream_FormatFtpCommand_m29176141DC970F6084AA0572E60CDF71F5A6BABB(__this, _stringLiteral9E457975468FF4D1398279C178A1A9A3B8DFE28E, L_146, NULL);
PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* L_148 = (PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463*)il2cpp_codegen_object_new(PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463_il2cpp_TypeInfo_var);
NullCheck(L_148);
PipelineEntry__ctor_m3988E03D67CAC7725DDD334A772C465FCDD58002(L_148, L_147, NULL);
NullCheck(L_142);
int32_t L_149;
L_149 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_142, L_148);
}
IL_03dc:
{
V_7 = 1;
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_150 = V_1;
NullCheck(L_150);
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_151;
L_151 = FtpWebRequest_get_MethodInfo_m1916AEF829D24CCE147215A4CC8B5D12E35370EB_inline(L_150, NULL);
NullCheck(L_151);
bool L_152;
L_152 = FtpMethodInfo_get_IsCommandOnly_m908F15518314673A19C0757AA67E24374709D719(L_151, NULL);
if (L_152)
{
goto IL_0400;
}
}
{
int32_t L_153 = V_7;
V_7 = ((int32_t)((int32_t)L_153|2));
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_154 = V_1;
NullCheck(L_154);
bool L_155;
L_155 = FtpWebRequest_get_UsePassive_m3934FCB6A521CBDC77018736E820BAA8978135BC_inline(L_154, NULL);
if (L_155)
{
goto IL_0400;
}
}
{
int32_t L_156 = V_7;
V_7 = ((int32_t)((int32_t)L_156|4));
}
IL_0400:
{
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_157 = V_1;
NullCheck(L_157);
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_158;
L_158 = FtpWebRequest_get_MethodInfo_m1916AEF829D24CCE147215A4CC8B5D12E35370EB_inline(L_157, NULL);
NullCheck(L_158);
int32_t L_159 = L_158->___Operation_1;
if ((!(((uint32_t)L_159) == ((uint32_t)((int32_t)9)))))
{
goto IL_04ad;
}
}
{
String_t* L_160 = V_5;
String_t* L_161 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
bool L_162;
L_162 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_160, L_161, NULL);
if (L_162)
{
goto IL_042e;
}
}
{
String_t* L_163 = V_5;
String_t* L_164;
L_164 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_163, _stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1, NULL);
G_B58_0 = L_164;
goto IL_0433;
}
IL_042e:
{
String_t* L_165 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
G_B58_0 = L_165;
}
IL_0433:
{
V_15 = G_B58_0;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_166 = V_2;
String_t* L_167 = V_15;
String_t* L_168 = V_6;
String_t* L_169;
L_169 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_167, L_168, NULL);
String_t* L_170;
L_170 = FtpControlStream_FormatFtpCommand_m29176141DC970F6084AA0572E60CDF71F5A6BABB(__this, _stringLiteralE2C28F43F81C1F168F05093B64423B1E32B3DC9C, L_169, NULL);
int32_t L_171 = V_7;
PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* L_172 = (PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463*)il2cpp_codegen_object_new(PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463_il2cpp_TypeInfo_var);
NullCheck(L_172);
PipelineEntry__ctor_mCF62FB0B8F6602CF2081D896C0232FB7B9F31881(L_172, L_170, L_171, NULL);
NullCheck(L_166);
int32_t L_173;
L_173 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_166, L_172);
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_174 = V_1;
NullCheck(L_174);
String_t* L_175;
L_175 = FtpWebRequest_get_RenameTo_m582E665F04E3524E6E4F872D30E4DD30955760E5_inline(L_174, NULL);
bool L_176;
L_176 = String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A(L_175, NULL);
if (L_176)
{
goto IL_0481;
}
}
{
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_177 = V_1;
NullCheck(L_177);
String_t* L_178;
L_178 = FtpWebRequest_get_RenameTo_m582E665F04E3524E6E4F872D30E4DD30955760E5_inline(L_177, NULL);
NullCheck(L_178);
bool L_179;
L_179 = String_StartsWith_mA2A4405B1B9F3653A6A9AA7F223F68D86A0C6264(L_178, _stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1, 5, NULL);
if (!L_179)
{
goto IL_0481;
}
}
{
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_180 = V_1;
NullCheck(L_180);
String_t* L_181;
L_181 = FtpWebRequest_get_RenameTo_m582E665F04E3524E6E4F872D30E4DD30955760E5_inline(L_180, NULL);
V_16 = L_181;
goto IL_0490;
}
IL_0481:
{
String_t* L_182 = V_15;
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_183 = V_1;
NullCheck(L_183);
String_t* L_184;
L_184 = FtpWebRequest_get_RenameTo_m582E665F04E3524E6E4F872D30E4DD30955760E5_inline(L_183, NULL);
String_t* L_185;
L_185 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_182, L_184, NULL);
V_16 = L_185;
}
IL_0490:
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_186 = V_2;
String_t* L_187 = V_16;
String_t* L_188;
L_188 = FtpControlStream_FormatFtpCommand_m29176141DC970F6084AA0572E60CDF71F5A6BABB(__this, _stringLiteralA2F1D185E07BC18D8F5CEE1B8FD0C522DDB0158D, L_187, NULL);
int32_t L_189 = V_7;
PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* L_190 = (PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463*)il2cpp_codegen_object_new(PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463_il2cpp_TypeInfo_var);
NullCheck(L_190);
PipelineEntry__ctor_mCF62FB0B8F6602CF2081D896C0232FB7B9F31881(L_190, L_188, L_189, NULL);
NullCheck(L_186);
int32_t L_191;
L_191 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_186, L_190);
goto IL_0529;
}
IL_04ad:
{
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_192 = V_1;
NullCheck(L_192);
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_193;
L_193 = FtpWebRequest_get_MethodInfo_m1916AEF829D24CCE147215A4CC8B5D12E35370EB_inline(L_192, NULL);
NullCheck(L_193);
bool L_194;
L_194 = FtpMethodInfo_HasFlag_mE4178764BE8879A93F8E9A4A3737528A2BE3F775(L_193, ((int32_t)16), NULL);
if (!L_194)
{
goto IL_04dd;
}
}
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_195 = V_2;
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_196 = V_1;
NullCheck(L_196);
String_t* L_197;
L_197 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Net.WebRequest::get_Method() */, L_196);
String_t* L_198 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
String_t* L_199;
L_199 = FtpControlStream_FormatFtpCommand_m29176141DC970F6084AA0572E60CDF71F5A6BABB(__this, L_197, L_198, NULL);
int32_t L_200 = V_7;
PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* L_201 = (PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463*)il2cpp_codegen_object_new(PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463_il2cpp_TypeInfo_var);
NullCheck(L_201);
PipelineEntry__ctor_mCF62FB0B8F6602CF2081D896C0232FB7B9F31881(L_201, L_199, L_200, NULL);
NullCheck(L_195);
int32_t L_202;
L_202 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_195, L_201);
goto IL_0529;
}
IL_04dd:
{
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_203 = V_1;
NullCheck(L_203);
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_204;
L_204 = FtpWebRequest_get_MethodInfo_m1916AEF829D24CCE147215A4CC8B5D12E35370EB_inline(L_203, NULL);
NullCheck(L_204);
bool L_205;
L_205 = FtpMethodInfo_HasFlag_mE4178764BE8879A93F8E9A4A3737528A2BE3F775(L_204, ((int32_t)256), NULL);
if (!L_205)
{
goto IL_050d;
}
}
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_206 = V_2;
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_207 = V_1;
NullCheck(L_207);
String_t* L_208;
L_208 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Net.WebRequest::get_Method() */, L_207);
String_t* L_209 = V_6;
String_t* L_210;
L_210 = FtpControlStream_FormatFtpCommand_m29176141DC970F6084AA0572E60CDF71F5A6BABB(__this, L_208, L_209, NULL);
int32_t L_211 = V_7;
PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* L_212 = (PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463*)il2cpp_codegen_object_new(PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463_il2cpp_TypeInfo_var);
NullCheck(L_212);
PipelineEntry__ctor_mCF62FB0B8F6602CF2081D896C0232FB7B9F31881(L_212, L_210, L_211, NULL);
NullCheck(L_206);
int32_t L_213;
L_213 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_206, L_212);
goto IL_0529;
}
IL_050d:
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_214 = V_2;
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_215 = V_1;
NullCheck(L_215);
String_t* L_216;
L_216 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Net.WebRequest::get_Method() */, L_215);
String_t* L_217 = V_4;
String_t* L_218;
L_218 = FtpControlStream_FormatFtpCommand_m29176141DC970F6084AA0572E60CDF71F5A6BABB(__this, L_216, L_217, NULL);
int32_t L_219 = V_7;
PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* L_220 = (PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463*)il2cpp_codegen_object_new(PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463_il2cpp_TypeInfo_var);
NullCheck(L_220);
PipelineEntry__ctor_mCF62FB0B8F6602CF2081D896C0232FB7B9F31881(L_220, L_218, L_219, NULL);
NullCheck(L_214);
int32_t L_221;
L_221 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_214, L_220);
}
IL_0529:
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_222 = V_2;
String_t* L_223;
L_223 = FtpControlStream_FormatFtpCommand_m29176141DC970F6084AA0572E60CDF71F5A6BABB(__this, _stringLiteral2A2B511F9E1806176D2C8E3C04414FCABDA3FC6A, (String_t*)NULL, NULL);
PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* L_224 = (PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463*)il2cpp_codegen_object_new(PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463_il2cpp_TypeInfo_var);
NullCheck(L_224);
PipelineEntry__ctor_m3988E03D67CAC7725DDD334A772C465FCDD58002(L_224, L_223, NULL);
NullCheck(L_222);
int32_t L_225;
L_225 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_222, L_224);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_226 = V_2;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_227 = { reinterpret_cast<intptr_t> (PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_228;
L_228 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_227, NULL);
NullCheck(L_226);
RuntimeArray* L_229;
L_229 = VirtualFuncInvoker1< RuntimeArray*, Type_t* >::Invoke(47 /* System.Array System.Collections.ArrayList::ToArray(System.Type) */, L_226, L_228);
return ((PipelineEntryU5BU5D_tF96DE809CEDE1A15F1D069F027582F92EEE04CE4*)Castclass((RuntimeObject*)L_229, PipelineEntryU5BU5D_tF96DE809CEDE1A15F1D069F027582F92EEE04CE4_il2cpp_TypeInfo_var));
}
}
// System.Net.CommandStream/PipelineInstruction System.Net.FtpControlStream::QueueOrCreateDataConection(System.Net.CommandStream/PipelineEntry,System.Net.ResponseDescription,System.Boolean,System.IO.Stream&,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FtpControlStream_QueueOrCreateDataConection_m8B8FFECC845071AF8089070B306555E05701DBB4 (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* ___entry0, ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* ___response1, bool ___timeout2, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE** ___stream3, bool* ___isSocketReady4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral84D476FB41C785D939EDB803394BDE5FF705ECE0);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral959B8EDC13DED60C561BA19DAB5B5FC6B5E42D7F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB9D4616FF8C325B5F064CE0D8195DB31C1B71C4F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBE5B59D30F0D33E2F3D6284AAA2E1E227661DC08);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC5D182FFDA1DDD64CBD89F5F59569AADDAD731F3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD1456E1DC2F4BFD98609407C3075CAA740B0E74E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDB79AF2E944FFBCA9F3391D587BA7C84F000946C);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
int32_t V_2 = 0;
IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB* V_3 = NULL;
IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB* V_4 = NULL;
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* V_5 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
bool* L_0 = ___isSocketReady4;
*((int8_t*)L_0) = (int8_t)0;
bool L_1 = __this->____dataHandshakeStarted_31;
if (!L_1)
{
goto IL_0012;
}
}
{
bool* L_2 = ___isSocketReady4;
*((int8_t*)L_2) = (int8_t)1;
return (int32_t)(2);
}
IL_0012:
{
__this->____dataHandshakeStarted_31 = (bool)1;
V_0 = (bool)0;
V_1 = (-1);
PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* L_3 = ___entry0;
NullCheck(L_3);
String_t* L_4 = L_3->___Command_0;
bool L_5;
L_5 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_4, _stringLiteral959B8EDC13DED60C561BA19DAB5B5FC6B5E42D7F, NULL);
if (L_5)
{
goto IL_0041;
}
}
{
PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* L_6 = ___entry0;
NullCheck(L_6);
String_t* L_7 = L_6->___Command_0;
bool L_8;
L_8 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_7, _stringLiteralDB79AF2E944FFBCA9F3391D587BA7C84F000946C, NULL);
if (!L_8)
{
goto IL_0096;
}
}
IL_0041:
{
ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* L_9 = ___response1;
NullCheck(L_9);
bool L_10;
L_10 = ResponseDescription_get_PositiveCompletion_mA8C5CB9FF0E386FAD10146736663344154E4D58C(L_9, NULL);
if (L_10)
{
goto IL_0066;
}
}
{
ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* L_11 = ___response1;
NullCheck(L_11);
int32_t L_12 = L_11->___Status_1;
int32_t L_13 = L_12;
RuntimeObject* L_14 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_13);
String_t* L_15;
L_15 = SR_Format_mB99C6F1BE061EA1427A45176E0CAFB2A2C76D03F(_stringLiteralC5D182FFDA1DDD64CBD89F5F59569AADDAD731F3, L_14, NULL);
((CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123*)__this)->____abortReason_17 = L_15;
Il2CppCodeGenWriteBarrier((void**)(&((CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123*)__this)->____abortReason_17), (void*)L_15);
return (int32_t)(0);
}
IL_0066:
{
PipelineEntry_t3169094ED57F0D943BF1EC06C99B977532DA7463* L_16 = ___entry0;
NullCheck(L_16);
String_t* L_17 = L_16->___Command_0;
bool L_18;
L_18 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_17, _stringLiteral959B8EDC13DED60C561BA19DAB5B5FC6B5E42D7F, NULL);
if (!L_18)
{
goto IL_0087;
}
}
{
ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* L_19 = ___response1;
NullCheck(L_19);
String_t* L_20 = L_19->___StatusDescription_2;
int32_t L_21;
L_21 = FtpControlStream_GetPortV4_mED40942A0B437AFC658378BB5BFDFB21C0ADC1B5(__this, L_20, NULL);
V_1 = L_21;
goto IL_0094;
}
IL_0087:
{
ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* L_22 = ___response1;
NullCheck(L_22);
String_t* L_23 = L_22->___StatusDescription_2;
int32_t L_24;
L_24 = FtpControlStream_GetPortV6_m45FC9306A5E97C22B2778C2FAD6EFF882C98870D(__this, L_23, NULL);
V_1 = L_24;
}
IL_0094:
{
V_0 = (bool)1;
}
IL_0096:
{
bool L_25 = V_0;
if (!L_25)
{
goto IL_010e;
}
}
{
int32_t L_26 = V_1;
if ((!(((uint32_t)L_26) == ((uint32_t)(-1)))))
{
goto IL_00ad;
}
}
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Fail_m07530DCF1F3780671CA9D866BD5A0B681C0DF324(__this, _stringLiteralB9D4616FF8C325B5F064CE0D8195DB31C1B71C4F, _stringLiteralD1456E1DC2F4BFD98609407C3075CAA740B0E74E, NULL);
}
IL_00ad:
{
}
try
{// begin try (depth: 1)
WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* L_27 = ((CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123*)__this)->____request_9;
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_28;
L_28 = NetworkStreamWrapper_get_Socket_m787036C2B47E611BD0F452A14DE461D8B5A30246(__this, NULL);
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_29;
L_29 = FtpControlStream_CreateFtpDataSocket_mDDD4CC879C2BBDB4956033BB52781B60B262B56C(__this, ((FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9*)CastclassSealed((RuntimeObject*)L_27, FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9_il2cpp_TypeInfo_var)), L_28, NULL);
__this->____dataSocket_21 = L_29;
Il2CppCodeGenWriteBarrier((void**)(&__this->____dataSocket_21), (void*)L_29);
goto IL_00d4;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_00cd;
}
throw e;
}
CATCH_00cd:
{// begin catch(System.ObjectDisposedException)
WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* L_30;
L_30 = ExceptionHelper_get_RequestAbortedException_m3DF6599ECE269D18BE8B09099E6D8A9E6692B309(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_30, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpControlStream_QueueOrCreateDataConection_m8B8FFECC845071AF8089070B306555E05701DBB4_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_00d4:
{
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_31;
L_31 = NetworkStreamWrapper_get_Socket_m787036C2B47E611BD0F452A14DE461D8B5A30246(__this, NULL);
NullCheck(L_31);
EndPoint_t6233F4E2EB9F0F2D36E187F12BE050E6D8B73564* L_32;
L_32 = Socket_get_LocalEndPoint_m3A2B4E60F0096E2DB31F7C28EF3CDE148D256E26(L_31, NULL);
NullCheck(((IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB*)CastclassClass((RuntimeObject*)L_32, IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB_il2cpp_TypeInfo_var)));
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* L_33;
L_33 = IPEndPoint_get_Address_m72F783CB76E10E9DBDF680CCC1DAAED201BABB1C_inline(((IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB*)CastclassClass((RuntimeObject*)L_32, IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB_il2cpp_TypeInfo_var)), NULL);
IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB* L_34 = (IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB*)il2cpp_codegen_object_new(IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB_il2cpp_TypeInfo_var);
NullCheck(L_34);
IPEndPoint__ctor_m902C98F9E3F36B20B3C2E030AA91B62E2BC7A85A(L_34, L_33, 0, NULL);
V_3 = L_34;
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_35 = __this->____dataSocket_21;
IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB* L_36 = V_3;
NullCheck(L_35);
Socket_Bind_m137559EBA78A72ED4ADF8B56F5C535CE638165AA(L_35, L_36, NULL);
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* L_37;
L_37 = NetworkStreamWrapper_get_ServerAddress_mE6D714D4B29C89FFE2C975AAA6828FF02440D2C6(__this, NULL);
int32_t L_38 = V_1;
IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB* L_39 = (IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB*)il2cpp_codegen_object_new(IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB_il2cpp_TypeInfo_var);
NullCheck(L_39);
IPEndPoint__ctor_m902C98F9E3F36B20B3C2E030AA91B62E2BC7A85A(L_39, L_37, L_38, NULL);
__this->____passiveEndPoint_22 = L_39;
Il2CppCodeGenWriteBarrier((void**)(&__this->____passiveEndPoint_22), (void*)L_39);
}
IL_010e:
{
IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB* L_40 = __this->____passiveEndPoint_22;
if (!L_40)
{
goto IL_0173;
}
}
{
IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB* L_41 = __this->____passiveEndPoint_22;
V_4 = L_41;
__this->____passiveEndPoint_22 = (IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->____passiveEndPoint_22), (void*)(IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB*)NULL);
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
bool L_42;
L_42 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_42)
{
goto IL_013c;
}
}
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Info_m550D5CB6271122B96B82DD45D65FCB037532E5E8(__this, _stringLiteral84D476FB41C785D939EDB803394BDE5FF705ECE0, _stringLiteralD1456E1DC2F4BFD98609407C3075CAA740B0E74E, NULL);
}
IL_013c:
{
bool L_43 = ((CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123*)__this)->____isAsync_10;
if (!L_43)
{
goto IL_015f;
}
}
{
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_44 = __this->____dataSocket_21;
IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB* L_45 = V_4;
il2cpp_codegen_runtime_class_init_inline(FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_il2cpp_TypeInfo_var);
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* L_46 = ((FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_StaticFields*)il2cpp_codegen_static_fields_for(FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_il2cpp_TypeInfo_var))->___s_connectCallbackDelegate_40;
NullCheck(L_44);
RuntimeObject* L_47;
L_47 = Socket_BeginConnect_m5CBFB6B9DC973279CDC9E8935431972464F9E0B4(L_44, L_45, L_46, __this, NULL);
V_2 = 2;
goto IL_020a;
}
IL_015f:
{
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_48 = __this->____dataSocket_21;
IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB* L_49 = V_4;
NullCheck(L_48);
Socket_Connect_m874A510F986F4D91446B2F53688D0BCFFE0A6BE1(L_48, L_49, NULL);
V_2 = 1;
goto IL_020a;
}
IL_0173:
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
bool L_50;
L_50 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_50)
{
goto IL_018a;
}
}
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Info_m550D5CB6271122B96B82DD45D65FCB037532E5E8(__this, _stringLiteralBE5B59D30F0D33E2F3D6284AAA2E1E227661DC08, _stringLiteralD1456E1DC2F4BFD98609407C3075CAA740B0E74E, NULL);
}
IL_018a:
{
bool L_51 = ((CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123*)__this)->____isAsync_10;
if (!L_51)
{
goto IL_01a8;
}
}
{
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_52 = __this->____dataSocket_21;
il2cpp_codegen_runtime_class_init_inline(FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_il2cpp_TypeInfo_var);
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* L_53 = ((FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_StaticFields*)il2cpp_codegen_static_fields_for(FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_il2cpp_TypeInfo_var))->___s_acceptCallbackDelegate_39;
NullCheck(L_52);
RuntimeObject* L_54;
L_54 = Socket_BeginAccept_mF6EA42D150734FE0A259576E0C8EAC76CF5B07B2(L_52, L_53, __this, NULL);
V_2 = 2;
goto IL_020a;
}
IL_01a8:
{
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_55 = __this->____dataSocket_21;
V_5 = L_55;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0202:
{// begin finally (depth: 1)
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_56 = V_5;
NullCheck(L_56);
Socket_Close_m5EBF3D8BE2C42EF8037BC9372CE7760B1717EEE4(L_56, NULL);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_57 = __this->____dataSocket_21;
NullCheck(L_57);
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_58;
L_58 = Socket_Accept_m11B031FF408E1899034B993B352178D9D6B37C1A(L_57, NULL);
__this->____dataSocket_21 = L_58;
Il2CppCodeGenWriteBarrier((void**)(&__this->____dataSocket_21), (void*)L_58);
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* L_59;
L_59 = NetworkStreamWrapper_get_ServerAddress_mE6D714D4B29C89FFE2C975AAA6828FF02440D2C6(__this, NULL);
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_60 = __this->____dataSocket_21;
NullCheck(L_60);
EndPoint_t6233F4E2EB9F0F2D36E187F12BE050E6D8B73564* L_61;
L_61 = Socket_get_RemoteEndPoint_m6A626481D55A640C7654B91BFDE00199C2C95479(L_60, NULL);
NullCheck(((IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB*)CastclassClass((RuntimeObject*)L_61, IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB_il2cpp_TypeInfo_var)));
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* L_62;
L_62 = IPEndPoint_get_Address_m72F783CB76E10E9DBDF680CCC1DAAED201BABB1C_inline(((IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB*)CastclassClass((RuntimeObject*)L_61, IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB_il2cpp_TypeInfo_var)), NULL);
NullCheck(L_59);
bool L_63;
L_63 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_59, L_62);
if (L_63)
{
goto IL_01fa_1;
}
}
{
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_64 = __this->____dataSocket_21;
NullCheck(L_64);
Socket_Close_m5EBF3D8BE2C42EF8037BC9372CE7760B1717EEE4(L_64, NULL);
WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* L_65 = (WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8_il2cpp_TypeInfo_var)));
NullCheck(L_65);
WebException__ctor_m6C829021B5388956F84830FC249915324C1453A1(L_65, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAD27FA3A0B67FF7854D05AB4CD97E2B72CEB5551)), 7, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_65, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpControlStream_QueueOrCreateDataConection_m8B8FFECC845071AF8089070B306555E05701DBB4_RuntimeMethod_var)));
}
IL_01fa_1:
{
bool* L_66 = ___isSocketReady4;
*((int8_t*)L_66) = (int8_t)1;
V_2 = 2;
goto IL_020a;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_020a:
{
int32_t L_67 = V_2;
return L_67;
}
}
// System.Void System.Net.FtpControlStream::GetPathInfo(System.Net.FtpControlStream/GetPathOption,System.Uri,System.String&,System.String&,System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpControlStream_GetPathInfo_m2805EDE029970250B0F50068777129168ACF1A6F (int32_t ___pathOption0, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___uri1, String_t** ___path2, String_t** ___directory3, String_t** ___filename4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
String_t** L_0 = ___path2;
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_1 = ___uri1;
NullCheck(L_1);
String_t* L_2;
L_2 = Uri_GetComponents_m30E3EAD4E9A39939456E764FEF94AFD4D6B7532A(L_1, ((int32_t)16), 2, NULL);
*((RuntimeObject**)L_0) = (RuntimeObject*)L_2;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_0, (void*)(RuntimeObject*)L_2);
String_t** L_3 = ___path2;
String_t* L_4 = *((String_t**)L_3);
NullCheck(L_4);
int32_t L_5;
L_5 = String_LastIndexOf_m6BB3E7E1B48702D4C715FA423F8A822C053B290E(L_4, ((int32_t)47), NULL);
V_0 = L_5;
int32_t L_6 = ___pathOption0;
if ((!(((uint32_t)L_6) == ((uint32_t)1))))
{
goto IL_0046;
}
}
{
int32_t L_7 = V_0;
if ((((int32_t)L_7) == ((int32_t)(-1))))
{
goto IL_0046;
}
}
{
int32_t L_8 = V_0;
String_t** L_9 = ___path2;
String_t* L_10 = *((String_t**)L_9);
NullCheck(L_10);
int32_t L_11;
L_11 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_10, NULL);
if ((!(((uint32_t)L_8) == ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_11, 1))))))
{
goto IL_0046;
}
}
{
String_t** L_12 = ___path2;
String_t** L_13 = ___path2;
String_t* L_14 = *((String_t**)L_13);
String_t** L_15 = ___path2;
String_t* L_16 = *((String_t**)L_15);
NullCheck(L_16);
int32_t L_17;
L_17 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_16, NULL);
NullCheck(L_14);
String_t* L_18;
L_18 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_14, 0, ((int32_t)il2cpp_codegen_subtract(L_17, 1)), NULL);
*((RuntimeObject**)L_12) = (RuntimeObject*)L_18;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_12, (void*)(RuntimeObject*)L_18);
String_t** L_19 = ___path2;
String_t* L_20 = *((String_t**)L_19);
NullCheck(L_20);
int32_t L_21;
L_21 = String_LastIndexOf_m6BB3E7E1B48702D4C715FA423F8A822C053B290E(L_20, ((int32_t)47), NULL);
V_0 = L_21;
}
IL_0046:
{
int32_t L_22 = ___pathOption0;
if ((!(((uint32_t)L_22) == ((uint32_t)2))))
{
goto IL_0058;
}
}
{
String_t** L_23 = ___directory3;
String_t** L_24 = ___path2;
String_t* L_25 = *((String_t**)L_24);
*((RuntimeObject**)L_23) = (RuntimeObject*)L_25;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_23, (void*)(RuntimeObject*)L_25);
String_t** L_26 = ___filename4;
String_t* L_27 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
*((RuntimeObject**)L_26) = (RuntimeObject*)L_27;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_26, (void*)(RuntimeObject*)L_27);
goto IL_007d;
}
IL_0058:
{
String_t** L_28 = ___directory3;
String_t** L_29 = ___path2;
String_t* L_30 = *((String_t**)L_29);
int32_t L_31 = V_0;
NullCheck(L_30);
String_t* L_32;
L_32 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_30, 0, ((int32_t)il2cpp_codegen_add(L_31, 1)), NULL);
*((RuntimeObject**)L_28) = (RuntimeObject*)L_32;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_28, (void*)(RuntimeObject*)L_32);
String_t** L_33 = ___filename4;
String_t** L_34 = ___path2;
String_t* L_35 = *((String_t**)L_34);
int32_t L_36 = V_0;
String_t** L_37 = ___path2;
String_t* L_38 = *((String_t**)L_37);
NullCheck(L_38);
int32_t L_39;
L_39 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_38, NULL);
int32_t L_40 = V_0;
NullCheck(L_35);
String_t* L_41;
L_41 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_35, ((int32_t)il2cpp_codegen_add(L_36, 1)), ((int32_t)il2cpp_codegen_subtract(L_39, ((int32_t)il2cpp_codegen_add(L_40, 1)))), NULL);
*((RuntimeObject**)L_33) = (RuntimeObject*)L_41;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_33, (void*)(RuntimeObject*)L_41);
}
IL_007d:
{
String_t** L_42 = ___directory3;
String_t* L_43 = *((String_t**)L_42);
NullCheck(L_43);
int32_t L_44;
L_44 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_43, NULL);
if ((((int32_t)L_44) <= ((int32_t)1)))
{
goto IL_00ae;
}
}
{
String_t** L_45 = ___directory3;
String_t* L_46 = *((String_t**)L_45);
String_t** L_47 = ___directory3;
String_t* L_48 = *((String_t**)L_47);
NullCheck(L_48);
int32_t L_49;
L_49 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_48, NULL);
NullCheck(L_46);
Il2CppChar L_50;
L_50 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_46, ((int32_t)il2cpp_codegen_subtract(L_49, 1)), NULL);
if ((!(((uint32_t)L_50) == ((uint32_t)((int32_t)47)))))
{
goto IL_00ae;
}
}
{
String_t** L_51 = ___directory3;
String_t** L_52 = ___directory3;
String_t* L_53 = *((String_t**)L_52);
String_t** L_54 = ___directory3;
String_t* L_55 = *((String_t**)L_54);
NullCheck(L_55);
int32_t L_56;
L_56 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_55, NULL);
NullCheck(L_53);
String_t* L_57;
L_57 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_53, 0, ((int32_t)il2cpp_codegen_subtract(L_56, 1)), NULL);
*((RuntimeObject**)L_51) = (RuntimeObject*)L_57;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_51, (void*)(RuntimeObject*)L_57);
}
IL_00ae:
{
return;
}
}
// System.String System.Net.FtpControlStream::FormatAddress(System.Net.IPAddress,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* FtpControlStream_FormatAddress_mB25FBE6AE9C810D3F72DDD79118F82D57EFAC294 (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* ___address0, int32_t ___Port1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t* V_0 = NULL;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_1 = NULL;
int32_t V_2 = 0;
uint8_t V_3 = 0x0;
{
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* L_0 = ___address0;
NullCheck(L_0);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1;
L_1 = IPAddress_GetAddressBytes_m1501E0143C791E3A065E508F5535D8E206652EC9(L_0, NULL);
StringBuilder_t* L_2 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
NullCheck(L_2);
StringBuilder__ctor_m2619CA8D2C3476DF1A302D9D941498BB1C6164C5(L_2, ((int32_t)32), NULL);
V_0 = L_2;
V_1 = L_1;
V_2 = 0;
goto IL_002c;
}
IL_0013:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = V_1;
int32_t L_4 = V_2;
NullCheck(L_3);
int32_t L_5 = L_4;
uint8_t L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
V_3 = L_6;
StringBuilder_t* L_7 = V_0;
uint8_t L_8 = V_3;
NullCheck(L_7);
StringBuilder_t* L_9;
L_9 = StringBuilder_Append_m2AE3195218B68BDDF01EF85928C76D6B596ED18D(L_7, L_8, NULL);
StringBuilder_t* L_10 = V_0;
NullCheck(L_10);
StringBuilder_t* L_11;
L_11 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_10, ((int32_t)44), NULL);
int32_t L_12 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_12, 1));
}
IL_002c:
{
int32_t L_13 = V_2;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_14 = V_1;
NullCheck(L_14);
if ((((int32_t)L_13) < ((int32_t)((int32_t)(((RuntimeArray*)L_14)->max_length)))))
{
goto IL_0013;
}
}
{
StringBuilder_t* L_15 = V_0;
int32_t L_16 = ___Port1;
NullCheck(L_15);
StringBuilder_t* L_17;
L_17 = StringBuilder_Append_m283B617AC29FB0DD6F3A7D8C01D385C25A5F0FAA(L_15, ((int32_t)(L_16/((int32_t)256))), NULL);
StringBuilder_t* L_18 = V_0;
NullCheck(L_18);
StringBuilder_t* L_19;
L_19 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_18, ((int32_t)44), NULL);
StringBuilder_t* L_20 = V_0;
int32_t L_21 = ___Port1;
NullCheck(L_20);
StringBuilder_t* L_22;
L_22 = StringBuilder_Append_m283B617AC29FB0DD6F3A7D8C01D385C25A5F0FAA(L_20, ((int32_t)(L_21%((int32_t)256))), NULL);
StringBuilder_t* L_23 = V_0;
NullCheck(L_23);
String_t* L_24;
L_24 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_23);
return L_24;
}
}
// System.String System.Net.FtpControlStream::FormatAddressV6(System.Net.IPAddress,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* FtpControlStream_FormatAddressV6_m3787064E91F973C183C1FFA9C8D9B4852369D62D (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* ___address0, int32_t ___port1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral62D8319602CC0C685C5740895830F89A1DE77FAF);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
StringBuilder_t* L_0 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
NullCheck(L_0);
StringBuilder__ctor_m2619CA8D2C3476DF1A302D9D941498BB1C6164C5(L_0, ((int32_t)43), NULL);
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* L_1 = ___address0;
NullCheck(L_1);
String_t* L_2;
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_1);
V_0 = L_2;
StringBuilder_t* L_3 = L_0;
NullCheck(L_3);
StringBuilder_t* L_4;
L_4 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_3, _stringLiteral62D8319602CC0C685C5740895830F89A1DE77FAF, NULL);
StringBuilder_t* L_5 = L_3;
String_t* L_6 = V_0;
NullCheck(L_5);
StringBuilder_t* L_7;
L_7 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_5, L_6, NULL);
StringBuilder_t* L_8 = L_5;
NullCheck(L_8);
StringBuilder_t* L_9;
L_9 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_8, ((int32_t)124), NULL);
StringBuilder_t* L_10 = L_8;
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_11;
L_11 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL);
String_t* L_12;
L_12 = Int32_ToString_m3B2730D9F5B0C1C57DCCC8B8DCFB8E5EC4E8979B((&___port1), L_11, NULL);
NullCheck(L_10);
StringBuilder_t* L_13;
L_13 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_10, L_12, NULL);
StringBuilder_t* L_14 = L_10;
NullCheck(L_14);
StringBuilder_t* L_15;
L_15 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_14, ((int32_t)124), NULL);
NullCheck(L_14);
String_t* L_16;
L_16 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_14);
return L_16;
}
}
// System.Int64 System.Net.FtpControlStream::get_ContentLength()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t FtpControlStream_get_ContentLength_mE520E47DE78B6FD130907992A13C5CE778286DC7 (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, const RuntimeMethod* method)
{
{
int64_t L_0 = __this->____contentLength_29;
return L_0;
}
}
// System.DateTime System.Net.FtpControlStream::get_LastModified()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D FtpControlStream_get_LastModified_m2C2AE6C823CB3CE01A1E62FF588781F535177258 (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, const RuntimeMethod* method)
{
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = __this->____lastModified_30;
return L_0;
}
}
// System.Uri System.Net.FtpControlStream::get_ResponseUri()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* FtpControlStream_get_ResponseUri_mC488459D89E1783FDC6DCA0DFB2EEC465BE165F0 (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, const RuntimeMethod* method)
{
{
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_0 = __this->____responseUri_35;
return L_0;
}
}
// System.String System.Net.FtpControlStream::get_BannerMessage()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* FtpControlStream_get_BannerMessage_m021AB6E64BF1E73206DDC72A6B6C54505B2E890C (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, const RuntimeMethod* method)
{
{
StringBuilder_t* L_0 = __this->____bannerMessage_24;
if (L_0)
{
goto IL_000a;
}
}
{
return (String_t*)NULL;
}
IL_000a:
{
StringBuilder_t* L_1 = __this->____bannerMessage_24;
NullCheck(L_1);
String_t* L_2;
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_1);
return L_2;
}
}
// System.String System.Net.FtpControlStream::get_WelcomeMessage()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* FtpControlStream_get_WelcomeMessage_m90D94C1DFE0345CC50333F139A4A6F5FA424F05E (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, const RuntimeMethod* method)
{
{
StringBuilder_t* L_0 = __this->____welcomeMessage_25;
if (L_0)
{
goto IL_000a;
}
}
{
return (String_t*)NULL;
}
IL_000a:
{
StringBuilder_t* L_1 = __this->____welcomeMessage_25;
NullCheck(L_1);
String_t* L_2;
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_1);
return L_2;
}
}
// System.String System.Net.FtpControlStream::get_ExitMessage()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* FtpControlStream_get_ExitMessage_m6E2214D55C11B97FC9FF7CCDC2F1072CDA01DF8F (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, const RuntimeMethod* method)
{
{
StringBuilder_t* L_0 = __this->____exitMessage_26;
if (L_0)
{
goto IL_000a;
}
}
{
return (String_t*)NULL;
}
IL_000a:
{
StringBuilder_t* L_1 = __this->____exitMessage_26;
NullCheck(L_1);
String_t* L_2;
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_1);
return L_2;
}
}
// System.Int64 System.Net.FtpControlStream::GetContentLengthFrom213Response(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t FtpControlStream_GetContentLengthFrom213Response_mC838EFD3A20DEA9A8DA867CF8496229CB076EB96 (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, String_t* ___responseString0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B2_0 = NULL;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B1_0 = NULL;
{
String_t* L_0 = ___responseString0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)1);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = L_1;
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)32));
NullCheck(L_0);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_3;
L_3 = String_Split_m101D35FEC86371D2BB4E3480F6F896880093B2E9(L_0, L_2, NULL);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_4 = L_3;
NullCheck(L_4);
G_B1_0 = L_4;
if ((((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))) >= ((int32_t)2)))
{
G_B2_0 = L_4;
goto IL_0028;
}
}
{
String_t* L_5 = ___responseString0;
String_t* L_6;
L_6 = SR_Format_mB99C6F1BE061EA1427A45176E0CAFB2A2C76D03F(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1D9F98EAF5D9B13BF257985BA152DBC980FD412B)), L_5, NULL);
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_7 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)));
NullCheck(L_7);
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_7, L_6, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpControlStream_GetContentLengthFrom213Response_mC838EFD3A20DEA9A8DA867CF8496229CB076EB96_RuntimeMethod_var)));
}
IL_0028:
{
NullCheck(G_B2_0);
int32_t L_8 = 1;
String_t* L_9 = (G_B2_0)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_10;
L_10 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int64_t L_11;
L_11 = Convert_ToInt64_m921C5387614F1F5D2582F337D03BFC0B0EA2AC3D(L_9, L_10, NULL);
return L_11;
}
}
// System.DateTime System.Net.FtpControlStream::GetLastModifiedFrom213Response(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D FtpControlStream_GetLastModifiedFrom213Response_mFF3AD1F97838C9CEBC92D3A2C033962064ECEE79 (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, String_t* ___str0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_0;
memset((&V_0), 0, sizeof(V_0));
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_1 = NULL;
String_t* V_2 = NULL;
int32_t V_3 = 0;
int32_t V_4 = 0;
int32_t V_5 = 0;
int32_t V_6 = 0;
int32_t V_7 = 0;
int32_t V_8 = 0;
int32_t V_9 = 0;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = __this->____lastModified_30;
V_0 = L_0;
String_t* L_1 = ___str0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)2);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = L_2;
NullCheck(L_3);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)32));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_4 = L_3;
NullCheck(L_4);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(1), (Il2CppChar)((int32_t)46));
NullCheck(L_1);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_5;
L_5 = String_Split_m101D35FEC86371D2BB4E3480F6F896880093B2E9(L_1, L_4, NULL);
V_1 = L_5;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_6 = V_1;
NullCheck(L_6);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length))) >= ((int32_t)2)))
{
goto IL_0026;
}
}
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_7 = V_0;
return L_7;
}
IL_0026:
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_8 = V_1;
NullCheck(L_8);
int32_t L_9 = 1;
String_t* L_10 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
V_2 = L_10;
String_t* L_11 = V_2;
NullCheck(L_11);
int32_t L_12;
L_12 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_11, NULL);
if ((((int32_t)L_12) >= ((int32_t)((int32_t)14))))
{
goto IL_0036;
}
}
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_13 = V_0;
return L_13;
}
IL_0036:
{
String_t* L_14 = V_2;
NullCheck(L_14);
String_t* L_15;
L_15 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_14, 0, 4, NULL);
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_16;
L_16 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int32_t L_17;
L_17 = Convert_ToInt32_mA763F077DBFEB1F6A3B54471BE1DF07D667A6834(L_15, L_16, NULL);
V_3 = L_17;
String_t* L_18 = V_2;
NullCheck(L_18);
String_t* L_19;
L_19 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_18, 4, 2, NULL);
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_20;
L_20 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL);
int16_t L_21;
L_21 = Convert_ToInt16_m8532226DD71F9B6E701B8278A2AA8BE9EAD79DD8(L_19, L_20, NULL);
V_4 = L_21;
String_t* L_22 = V_2;
NullCheck(L_22);
String_t* L_23;
L_23 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_22, 6, 2, NULL);
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_24;
L_24 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL);
int16_t L_25;
L_25 = Convert_ToInt16_m8532226DD71F9B6E701B8278A2AA8BE9EAD79DD8(L_23, L_24, NULL);
V_5 = L_25;
String_t* L_26 = V_2;
NullCheck(L_26);
String_t* L_27;
L_27 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_26, 8, 2, NULL);
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_28;
L_28 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL);
int16_t L_29;
L_29 = Convert_ToInt16_m8532226DD71F9B6E701B8278A2AA8BE9EAD79DD8(L_27, L_28, NULL);
V_6 = L_29;
String_t* L_30 = V_2;
NullCheck(L_30);
String_t* L_31;
L_31 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_30, ((int32_t)10), 2, NULL);
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_32;
L_32 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL);
int16_t L_33;
L_33 = Convert_ToInt16_m8532226DD71F9B6E701B8278A2AA8BE9EAD79DD8(L_31, L_32, NULL);
V_7 = L_33;
String_t* L_34 = V_2;
NullCheck(L_34);
String_t* L_35;
L_35 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_34, ((int32_t)12), 2, NULL);
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_36;
L_36 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL);
int16_t L_37;
L_37 = Convert_ToInt16_m8532226DD71F9B6E701B8278A2AA8BE9EAD79DD8(L_35, L_36, NULL);
V_8 = L_37;
V_9 = 0;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_38 = V_1;
NullCheck(L_38);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_38)->max_length))) <= ((int32_t)2)))
{
goto IL_00c7;
}
}
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_39 = V_1;
NullCheck(L_39);
int32_t L_40 = 2;
String_t* L_41 = (L_39)->GetAt(static_cast<il2cpp_array_size_t>(L_40));
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_42;
L_42 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int16_t L_43;
L_43 = Convert_ToInt16_m8532226DD71F9B6E701B8278A2AA8BE9EAD79DD8(L_41, L_42, NULL);
V_9 = L_43;
}
IL_00c7:
{
}
try
{// begin try (depth: 1)
int32_t L_44 = V_3;
int32_t L_45 = V_4;
int32_t L_46 = V_5;
int32_t L_47 = V_6;
int32_t L_48 = V_7;
int32_t L_49 = V_8;
int32_t L_50 = V_9;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_51;
memset((&L_51), 0, sizeof(L_51));
DateTime__ctor_mA66CE5141E86C5BC75F79543F99A7BD77B420201((&L_51), L_44, L_45, L_46, L_47, L_48, L_49, L_50, /*hidden argument*/NULL);
V_0 = L_51;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_52;
L_52 = DateTime_ToLocalTime_mD87626169251A26AF699DAE90A1C31190AD30B94((&V_0), NULL);
V_0 = L_52;
goto IL_00eb;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_00e5;
}
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_00e8;
}
throw e;
}
CATCH_00e5:
{// begin catch(System.ArgumentOutOfRangeException)
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_00eb;
}// end catch (depth: 1)
CATCH_00e8:
{// begin catch(System.ArgumentException)
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_00eb;
}// end catch (depth: 1)
IL_00eb:
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_53 = V_0;
return L_53;
}
}
// System.Void System.Net.FtpControlStream::TryUpdateResponseUri(System.String,System.Net.FtpWebRequest)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpControlStream_TryUpdateResponseUri_mA4514F22354FA2F4BEB3D73F24A7DEB5240E213F (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, String_t* ___str0, FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* ___request1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____6C8F647E1FCD63826D12272FF0930E9C16F1FFEF719948703A4C0F3B90052885_8_FieldInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UriBuilder_t7931690A4195FCF7400D95D3107C3FB1D55A1C72_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0B0FEB3147CE20EB2C90076367F895C59BCD14B3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1F867E542346F4FD171E87D0AE89A5DA4F78A7B6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral35FECFFF9CC241A89AB13A0D45EBC175B703DFE1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6C066B34F4DB79023C0642AFBC43B25A5327F710);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral923A177028E3EE4682B85F229CFEDF05038402BC);
s_Il2CppMethodInitialized = true;
}
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* V_0 = NULL;
int32_t V_1 = 0;
int32_t V_2 = 0;
String_t* V_3 = NULL;
String_t* V_4 = NULL;
String_t* V_5 = NULL;
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* V_6 = NULL;
{
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_0 = ___request1;
NullCheck(L_0);
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_1;
L_1 = VirtualFuncInvoker0< Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* >::Invoke(11 /* System.Uri System.Net.WebRequest::get_RequestUri() */, L_0);
V_0 = L_1;
String_t* L_2 = ___str0;
NullCheck(L_2);
int32_t L_3;
L_3 = String_IndexOf_m69E9BDAFD93767C85A7FF861B453415D3B4A200F(L_2, _stringLiteral923A177028E3EE4682B85F229CFEDF05038402BC, NULL);
V_1 = L_3;
int32_t L_4 = V_1;
if ((!(((uint32_t)L_4) == ((uint32_t)(-1)))))
{
goto IL_0018;
}
}
{
return;
}
IL_0018:
{
int32_t L_5 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_5, 4));
String_t* L_6 = ___str0;
NullCheck(L_6);
int32_t L_7;
L_7 = String_LastIndexOf_m6BB3E7E1B48702D4C715FA423F8A822C053B290E(L_6, ((int32_t)40), NULL);
V_2 = L_7;
int32_t L_8 = V_2;
if ((!(((uint32_t)L_8) == ((uint32_t)(-1)))))
{
goto IL_0030;
}
}
{
String_t* L_9 = ___str0;
NullCheck(L_9);
int32_t L_10;
L_10 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_9, NULL);
V_2 = L_10;
}
IL_0030:
{
int32_t L_11 = V_2;
int32_t L_12 = V_1;
if ((((int32_t)L_11) > ((int32_t)L_12)))
{
goto IL_0035;
}
}
{
return;
}
IL_0035:
{
String_t* L_13 = ___str0;
int32_t L_14 = V_1;
int32_t L_15 = V_2;
int32_t L_16 = V_1;
NullCheck(L_13);
String_t* L_17;
L_17 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_13, L_14, ((int32_t)il2cpp_codegen_subtract(L_15, L_16)), NULL);
V_3 = L_17;
String_t* L_18 = V_3;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_19 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)4);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_20 = L_19;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_21 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____6C8F647E1FCD63826D12272FF0930E9C16F1FFEF719948703A4C0F3B90052885_8_FieldInfo_var) };
RuntimeHelpers_InitializeArray_mE10C3436BA703E4D9D41B3F8F365E4C34F9926EF((RuntimeArray*)L_20, L_21, NULL);
NullCheck(L_18);
String_t* L_22;
L_22 = String_TrimEnd_mD7CFB0999EEEE20E3A869516EBCE07E8AB5BD529(L_18, L_20, NULL);
V_3 = L_22;
String_t* L_23 = V_3;
NullCheck(L_23);
String_t* L_24;
L_24 = String_Replace_mABDB7003A1D0AEDCAE9FF85E3DFFFBA752D2A166(L_23, _stringLiteral6C066B34F4DB79023C0642AFBC43B25A5327F710, _stringLiteral35FECFFF9CC241A89AB13A0D45EBC175B703DFE1, NULL);
V_4 = L_24;
String_t* L_25 = V_4;
NullCheck(L_25);
String_t* L_26;
L_26 = String_Replace_mABDB7003A1D0AEDCAE9FF85E3DFFFBA752D2A166(L_25, _stringLiteral0B0FEB3147CE20EB2C90076367F895C59BCD14B3, _stringLiteral1F867E542346F4FD171E87D0AE89A5DA4F78A7B6, NULL);
V_4 = L_26;
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_27 = V_0;
NullCheck(L_27);
String_t* L_28;
L_28 = Uri_get_AbsolutePath_mABB93DD30D4C0F11948DE5C117650B1C3A9925CA(L_27, NULL);
V_5 = L_28;
String_t* L_29 = V_5;
NullCheck(L_29);
int32_t L_30;
L_30 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_29, NULL);
if ((((int32_t)L_30) <= ((int32_t)0)))
{
goto IL_00c1;
}
}
{
String_t* L_31 = V_5;
String_t* L_32 = V_5;
NullCheck(L_32);
int32_t L_33;
L_33 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_32, NULL);
NullCheck(L_31);
Il2CppChar L_34;
L_34 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_31, ((int32_t)il2cpp_codegen_subtract(L_33, 1)), NULL);
if ((((int32_t)L_34) == ((int32_t)((int32_t)47))))
{
goto IL_00c1;
}
}
{
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_35 = V_0;
UriBuilder_t7931690A4195FCF7400D95D3107C3FB1D55A1C72* L_36 = (UriBuilder_t7931690A4195FCF7400D95D3107C3FB1D55A1C72*)il2cpp_codegen_object_new(UriBuilder_t7931690A4195FCF7400D95D3107C3FB1D55A1C72_il2cpp_TypeInfo_var);
NullCheck(L_36);
UriBuilder__ctor_mD45945E23BE6C1AA8C56E64DEC181E36EE826C25(L_36, L_35, NULL);
UriBuilder_t7931690A4195FCF7400D95D3107C3FB1D55A1C72* L_37 = L_36;
String_t* L_38 = V_5;
String_t* L_39;
L_39 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_38, _stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1, NULL);
NullCheck(L_37);
UriBuilder_set_Path_mD17EF197B4A8A764682938B468B647DAE716E9D0(L_37, L_39, NULL);
NullCheck(L_37);
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_40;
L_40 = UriBuilder_get_Uri_mD0DF3F7DDF7C56CC99E2D29E06C959F80A4171A1(L_37, NULL);
V_0 = L_40;
}
IL_00c1:
{
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_41 = V_0;
String_t* L_42 = V_4;
il2cpp_codegen_runtime_class_init_inline(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
bool L_43;
L_43 = Uri_TryCreate_m0653E526B4101798C6BD5D0D7D22B30EDD4EA4E8(L_41, L_42, (&V_6), NULL);
if (L_43)
{
goto IL_00de;
}
}
{
String_t* L_44 = V_3;
String_t* L_45;
L_45 = SR_Format_mB99C6F1BE061EA1427A45176E0CAFB2A2C76D03F(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral06D61D0AFF358E1C2D49BEA96357FC2BFECF1985)), L_44, NULL);
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_46 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)));
NullCheck(L_46);
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_46, L_45, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_46, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpControlStream_TryUpdateResponseUri_mA4514F22354FA2F4BEB3D73F24A7DEB5240E213F_RuntimeMethod_var)));
}
IL_00de:
{
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_47 = V_0;
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_48 = V_6;
NullCheck(L_47);
bool L_49;
L_49 = Uri_IsBaseOf_m8A97015EF5FE3B91A413F678735EABB09D6CFB74(L_47, L_48, NULL);
if (!L_49)
{
goto IL_00fd;
}
}
{
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_50 = V_0;
NullCheck(L_50);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_51;
L_51 = Uri_get_Segments_m823EACCF22A1B1D27771147C7B509702E21C2811(L_50, NULL);
NullCheck(L_51);
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_52 = V_6;
NullCheck(L_52);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_53;
L_53 = Uri_get_Segments_m823EACCF22A1B1D27771147C7B509702E21C2811(L_52, NULL);
NullCheck(L_53);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_51)->max_length))) == ((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_53)->max_length)), 1)))))
{
goto IL_010e;
}
}
IL_00fd:
{
String_t* L_54 = V_3;
String_t* L_55;
L_55 = SR_Format_mB99C6F1BE061EA1427A45176E0CAFB2A2C76D03F(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral06D61D0AFF358E1C2D49BEA96357FC2BFECF1985)), L_54, NULL);
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_56 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)));
NullCheck(L_56);
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_56, L_55, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_56, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpControlStream_TryUpdateResponseUri_mA4514F22354FA2F4BEB3D73F24A7DEB5240E213F_RuntimeMethod_var)));
}
IL_010e:
{
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_57 = V_6;
__this->____responseUri_35 = L_57;
Il2CppCodeGenWriteBarrier((void**)(&__this->____responseUri_35), (void*)L_57);
return;
}
}
// System.Void System.Net.FtpControlStream::TryUpdateContentLength(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpControlStream_TryUpdateContentLength_mE2B8C5EC33E1F4D789FE5C6DE3825BB2952EB753 (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, String_t* ___str0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0FD27F76C34125DBDF11649F3ABCF552FF2E9692);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int64_t V_2 = 0;
{
String_t* L_0 = ___str0;
NullCheck(L_0);
int32_t L_1;
L_1 = String_LastIndexOf_m8923DBD89F2B3E5A34190B038B48F402E0C17E40(L_0, _stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73, NULL);
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)(-1))))
{
goto IL_0048;
}
}
{
String_t* L_3 = ___str0;
NullCheck(L_3);
int32_t L_4;
L_4 = String_IndexOf_m69E9BDAFD93767C85A7FF861B453415D3B4A200F(L_3, _stringLiteral0FD27F76C34125DBDF11649F3ABCF552FF2E9692, NULL);
V_1 = L_4;
int32_t L_5 = V_1;
if ((((int32_t)L_5) == ((int32_t)(-1))))
{
goto IL_0048;
}
}
{
int32_t L_6 = V_1;
int32_t L_7 = V_0;
if ((((int32_t)L_6) <= ((int32_t)L_7)))
{
goto IL_0048;
}
}
{
int32_t L_8 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_8, 1));
String_t* L_9 = ___str0;
int32_t L_10 = V_0;
int32_t L_11 = V_1;
int32_t L_12 = V_0;
NullCheck(L_9);
String_t* L_13;
L_13 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_9, L_10, ((int32_t)il2cpp_codegen_subtract(L_11, L_12)), NULL);
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_14;
L_14 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL);
bool L_15;
L_15 = Int64_TryParse_m280F0E3C898A7C3A57F35E3B136D4BFACE12122A(L_13, 3, L_14, (&V_2), NULL);
if (!L_15)
{
goto IL_0048;
}
}
{
int64_t L_16 = V_2;
__this->____contentLength_29 = L_16;
}
IL_0048:
{
return;
}
}
// System.String System.Net.FtpControlStream::GetLoginDirectory(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* FtpControlStream_GetLoginDirectory_m24BD744DF3263F2FD96A6B120FD5E014C759ABE9 (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, String_t* ___str0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
String_t* L_0 = ___str0;
NullCheck(L_0);
int32_t L_1;
L_1 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_0, ((int32_t)34), NULL);
V_0 = L_1;
String_t* L_2 = ___str0;
NullCheck(L_2);
int32_t L_3;
L_3 = String_LastIndexOf_m6BB3E7E1B48702D4C715FA423F8A822C053B290E(L_2, ((int32_t)34), NULL);
V_1 = L_3;
int32_t L_4 = V_0;
if ((((int32_t)L_4) == ((int32_t)(-1))))
{
goto IL_002d;
}
}
{
int32_t L_5 = V_1;
if ((((int32_t)L_5) == ((int32_t)(-1))))
{
goto IL_002d;
}
}
{
int32_t L_6 = V_0;
int32_t L_7 = V_1;
if ((((int32_t)L_6) == ((int32_t)L_7)))
{
goto IL_002d;
}
}
{
String_t* L_8 = ___str0;
int32_t L_9 = V_0;
int32_t L_10 = V_1;
int32_t L_11 = V_0;
NullCheck(L_8);
String_t* L_12;
L_12 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_8, ((int32_t)il2cpp_codegen_add(L_9, 1)), ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_10, L_11)), 1)), NULL);
return L_12;
}
IL_002d:
{
String_t* L_13 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_13;
}
}
// System.Int32 System.Net.FtpControlStream::GetPortV4(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FtpControlStream_GetPortV4_mED40942A0B437AFC658378BB5BFDFB21C0ADC1B5 (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, String_t* ___responseString0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____BB6BB42AC5453BD8AA992CCB8929F1CB7D4E112E3FC56E57D711E106D1F72859_13_FieldInfo_var);
s_Il2CppMethodInitialized = true;
}
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_0 = NULL;
int32_t V_1 = 0;
{
String_t* L_0 = ___responseString0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)4);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = L_1;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_3 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____BB6BB42AC5453BD8AA992CCB8929F1CB7D4E112E3FC56E57D711E106D1F72859_13_FieldInfo_var) };
RuntimeHelpers_InitializeArray_mE10C3436BA703E4D9D41B3F8F365E4C34F9926EF((RuntimeArray*)L_2, L_3, NULL);
NullCheck(L_0);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_4;
L_4 = String_Split_m101D35FEC86371D2BB4E3480F6F896880093B2E9(L_0, L_2, NULL);
V_0 = L_4;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_5 = V_0;
NullCheck(L_5);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length))) > ((int32_t)7)))
{
goto IL_002f;
}
}
{
String_t* L_6 = ___responseString0;
String_t* L_7;
L_7 = SR_Format_mB99C6F1BE061EA1427A45176E0CAFB2A2C76D03F(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1D9F98EAF5D9B13BF257985BA152DBC980FD412B)), L_6, NULL);
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_8 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)));
NullCheck(L_8);
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_8, L_7, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpControlStream_GetPortV4_mED40942A0B437AFC658378BB5BFDFB21C0ADC1B5_RuntimeMethod_var)));
}
IL_002f:
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_9 = V_0;
NullCheck(L_9);
V_1 = ((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_9)->max_length)), 1));
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_10 = V_0;
int32_t L_11 = V_1;
NullCheck(L_10);
int32_t L_12 = L_11;
String_t* L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
bool L_14;
L_14 = Char_IsNumber_mF099A82125A3ACA2FDD2B751B04504E9B4E44897(L_13, 0, NULL);
if (L_14)
{
goto IL_0044;
}
}
{
int32_t L_15 = V_1;
V_1 = ((int32_t)il2cpp_codegen_subtract(L_15, 1));
}
IL_0044:
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_16 = V_0;
int32_t L_17 = V_1;
int32_t L_18 = L_17;
V_1 = ((int32_t)il2cpp_codegen_subtract(L_18, 1));
NullCheck(L_16);
int32_t L_19 = L_18;
String_t* L_20 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_21;
L_21 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
uint8_t L_22;
L_22 = Convert_ToByte_mCBCFB5AB07D04AD6EE8D2E4A643A28294953507E(L_20, L_21, NULL);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_23 = V_0;
int32_t L_24 = V_1;
int32_t L_25 = L_24;
V_1 = ((int32_t)il2cpp_codegen_subtract(L_25, 1));
NullCheck(L_23);
int32_t L_26 = L_25;
String_t* L_27 = (L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_26));
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_28;
L_28 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL);
uint8_t L_29;
L_29 = Convert_ToByte_mCBCFB5AB07D04AD6EE8D2E4A643A28294953507E(L_27, L_28, NULL);
return ((int32_t)((int32_t)L_22|((int32_t)((int32_t)L_29<<8))));
}
}
// System.Int32 System.Net.FtpControlStream::GetPortV6(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FtpControlStream_GetPortV6_m45FC9306A5E97C22B2778C2FAD6EFF882C98870D (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, String_t* ___responseString0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B5_0 = NULL;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B4_0 = NULL;
{
String_t* L_0 = ___responseString0;
NullCheck(L_0);
int32_t L_1;
L_1 = String_LastIndexOf_m8923DBD89F2B3E5A34190B038B48F402E0C17E40(L_0, _stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73, NULL);
V_0 = L_1;
String_t* L_2 = ___responseString0;
NullCheck(L_2);
int32_t L_3;
L_3 = String_LastIndexOf_m8923DBD89F2B3E5A34190B038B48F402E0C17E40(L_2, _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D, NULL);
V_1 = L_3;
int32_t L_4 = V_0;
if ((((int32_t)L_4) == ((int32_t)(-1))))
{
goto IL_0020;
}
}
{
int32_t L_5 = V_1;
int32_t L_6 = V_0;
if ((((int32_t)L_5) > ((int32_t)L_6)))
{
goto IL_0031;
}
}
IL_0020:
{
String_t* L_7 = ___responseString0;
String_t* L_8;
L_8 = SR_Format_mB99C6F1BE061EA1427A45176E0CAFB2A2C76D03F(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1D9F98EAF5D9B13BF257985BA152DBC980FD412B)), L_7, NULL);
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_9 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)));
NullCheck(L_9);
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_9, L_8, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpControlStream_GetPortV6_m45FC9306A5E97C22B2778C2FAD6EFF882C98870D_RuntimeMethod_var)));
}
IL_0031:
{
String_t* L_10 = ___responseString0;
int32_t L_11 = V_0;
int32_t L_12 = V_1;
int32_t L_13 = V_0;
NullCheck(L_10);
String_t* L_14;
L_14 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_10, ((int32_t)il2cpp_codegen_add(L_11, 1)), ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_12, L_13)), 1)), NULL);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_15 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)1);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_16 = L_15;
NullCheck(L_16);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)124));
NullCheck(L_14);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_17;
L_17 = String_Split_m101D35FEC86371D2BB4E3480F6F896880093B2E9(L_14, L_16, NULL);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_18 = L_17;
NullCheck(L_18);
G_B4_0 = L_18;
if ((((int32_t)((int32_t)(((RuntimeArray*)L_18)->max_length))) >= ((int32_t)4)))
{
G_B5_0 = L_18;
goto IL_0066;
}
}
{
String_t* L_19 = ___responseString0;
String_t* L_20;
L_20 = SR_Format_mB99C6F1BE061EA1427A45176E0CAFB2A2C76D03F(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1D9F98EAF5D9B13BF257985BA152DBC980FD412B)), L_19, NULL);
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_21 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)));
NullCheck(L_21);
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_21, L_20, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpControlStream_GetPortV6_m45FC9306A5E97C22B2778C2FAD6EFF882C98870D_RuntimeMethod_var)));
}
IL_0066:
{
NullCheck(G_B5_0);
int32_t L_22 = 3;
String_t* L_23 = (G_B5_0)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_24;
L_24 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int32_t L_25;
L_25 = Convert_ToInt32_mA763F077DBFEB1F6A3B54471BE1DF07D667A6834(L_23, L_24, NULL);
return L_25;
}
}
// System.Void System.Net.FtpControlStream::CreateFtpListenerSocket(System.Net.FtpWebRequest)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpControlStream_CreateFtpListenerSocket_mC7CAB6085D9ECF4C194F053CFC1AC34AFB8F323F (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* ___request0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB* V_0 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_0;
L_0 = NetworkStreamWrapper_get_Socket_m787036C2B47E611BD0F452A14DE461D8B5A30246(__this, NULL);
NullCheck(L_0);
EndPoint_t6233F4E2EB9F0F2D36E187F12BE050E6D8B73564* L_1;
L_1 = Socket_get_LocalEndPoint_m3A2B4E60F0096E2DB31F7C28EF3CDE148D256E26(L_0, NULL);
NullCheck(((IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB*)CastclassClass((RuntimeObject*)L_1, IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB_il2cpp_TypeInfo_var)));
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* L_2;
L_2 = IPEndPoint_get_Address_m72F783CB76E10E9DBDF680CCC1DAAED201BABB1C_inline(((IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB*)CastclassClass((RuntimeObject*)L_1, IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB_il2cpp_TypeInfo_var)), NULL);
IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB* L_3 = (IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB*)il2cpp_codegen_object_new(IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB_il2cpp_TypeInfo_var);
NullCheck(L_3);
IPEndPoint__ctor_m902C98F9E3F36B20B3C2E030AA91B62E2BC7A85A(L_3, L_2, 0, NULL);
V_0 = L_3;
}
try
{// begin try (depth: 1)
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_4 = ___request0;
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_5;
L_5 = NetworkStreamWrapper_get_Socket_m787036C2B47E611BD0F452A14DE461D8B5A30246(__this, NULL);
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_6;
L_6 = FtpControlStream_CreateFtpDataSocket_mDDD4CC879C2BBDB4956033BB52781B60B262B56C(__this, L_4, L_5, NULL);
__this->____dataSocket_21 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->____dataSocket_21), (void*)L_6);
goto IL_0038;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0031;
}
throw e;
}
CATCH_0031:
{// begin catch(System.ObjectDisposedException)
WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* L_7;
L_7 = ExceptionHelper_get_RequestAbortedException_m3DF6599ECE269D18BE8B09099E6D8A9E6692B309(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpControlStream_CreateFtpListenerSocket_mC7CAB6085D9ECF4C194F053CFC1AC34AFB8F323F_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_0038:
{
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_8 = __this->____dataSocket_21;
IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB* L_9 = V_0;
NullCheck(L_8);
Socket_Bind_m137559EBA78A72ED4ADF8B56F5C535CE638165AA(L_8, L_9, NULL);
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_10 = __this->____dataSocket_21;
NullCheck(L_10);
Socket_Listen_m734803DAC514E64828168AF9212D6A9EC63B32EC(L_10, 1, NULL);
return;
}
}
// System.String System.Net.FtpControlStream::GetPortCommandLine(System.Net.FtpWebRequest)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* FtpControlStream_GetPortCommandLine_mAA8762A087F108ABA5DE42D38AD916C9CFA03194 (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* ___request0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB* V_0 = NULL;
String_t* V_1 = NULL;
Exception_t* V_2 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
{
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_0 = __this->____dataSocket_21;
NullCheck(L_0);
EndPoint_t6233F4E2EB9F0F2D36E187F12BE050E6D8B73564* L_1;
L_1 = Socket_get_LocalEndPoint_m3A2B4E60F0096E2DB31F7C28EF3CDE148D256E26(L_0, NULL);
V_0 = ((IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB*)CastclassClass((RuntimeObject*)L_1, IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB_il2cpp_TypeInfo_var));
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* L_2;
L_2 = NetworkStreamWrapper_get_ServerAddress_mE6D714D4B29C89FFE2C975AAA6828FF02440D2C6(__this, NULL);
NullCheck(L_2);
int32_t L_3;
L_3 = IPAddress_get_AddressFamily_m1CE4BCCE499BD70B22F9E37B3F266F9306A98C21(L_2, NULL);
if ((!(((uint32_t)L_3) == ((uint32_t)2))))
{
goto IL_0034_1;
}
}
{
IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB* L_4 = V_0;
NullCheck(L_4);
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* L_5;
L_5 = IPEndPoint_get_Address_m72F783CB76E10E9DBDF680CCC1DAAED201BABB1C_inline(L_4, NULL);
IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB* L_6 = V_0;
NullCheck(L_6);
int32_t L_7;
L_7 = IPEndPoint_get_Port_mFBE1AF1C9CC7E68A46BF46AD3869CC9DC01CF429_inline(L_6, NULL);
String_t* L_8;
L_8 = FtpControlStream_FormatAddress_mB25FBE6AE9C810D3F72DDD79118F82D57EFAC294(__this, L_5, L_7, NULL);
V_1 = L_8;
goto IL_006d;
}
IL_0034_1:
{
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* L_9;
L_9 = NetworkStreamWrapper_get_ServerAddress_mE6D714D4B29C89FFE2C975AAA6828FF02440D2C6(__this, NULL);
NullCheck(L_9);
int32_t L_10;
L_10 = IPAddress_get_AddressFamily_m1CE4BCCE499BD70B22F9E37B3F266F9306A98C21(L_9, NULL);
if ((!(((uint32_t)L_10) == ((uint32_t)((int32_t)23)))))
{
goto IL_0058_1;
}
}
{
IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB* L_11 = V_0;
NullCheck(L_11);
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* L_12;
L_12 = IPEndPoint_get_Address_m72F783CB76E10E9DBDF680CCC1DAAED201BABB1C_inline(L_11, NULL);
IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB* L_13 = V_0;
NullCheck(L_13);
int32_t L_14;
L_14 = IPEndPoint_get_Port_mFBE1AF1C9CC7E68A46BF46AD3869CC9DC01CF429_inline(L_13, NULL);
String_t* L_15;
L_15 = FtpControlStream_FormatAddressV6_m3787064E91F973C183C1FFA9C8D9B4852369D62D(__this, L_12, L_14, NULL);
V_1 = L_15;
goto IL_006d;
}
IL_0058_1:
{
InternalException_tBD5CDE9133BB628E33CE7F16F6396FCD739C1934* L_16 = (InternalException_tBD5CDE9133BB628E33CE7F16F6396FCD739C1934*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InternalException_tBD5CDE9133BB628E33CE7F16F6396FCD739C1934_il2cpp_TypeInfo_var)));
NullCheck(L_16);
InternalException__ctor_m20A09E66E185FB1449C71227304AF40936C8011A(L_16, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpControlStream_GetPortCommandLine_mAA8762A087F108ABA5DE42D38AD916C9CFA03194_RuntimeMethod_var)));
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_005e;
}
throw e;
}
CATCH_005e:
{// begin catch(System.Exception)
V_2 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
Exception_t* L_17 = V_2;
Exception_t* L_18;
L_18 = CommandStream_GenerateException_m891A32F6C4DA9BF11336825DF694F0471376472D(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral95E94A4F406335B785CDD0878A7A7B3A25738CA1)), 7, L_17, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpControlStream_GetPortCommandLine_mAA8762A087F108ABA5DE42D38AD916C9CFA03194_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_006d:
{
String_t* L_19 = V_1;
return L_19;
}
}
// System.String System.Net.FtpControlStream::FormatFtpCommand(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* FtpControlStream_FormatFtpCommand_m29176141DC970F6084AA0572E60CDF71F5A6BABB (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, String_t* ___command0, String_t* ___parameter1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4133EC0E83E4C69B6C0094B47BFD1408F0C8D4C5);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t* V_0 = NULL;
int32_t G_B2_0 = 0;
int32_t G_B1_0 = 0;
int32_t G_B3_0 = 0;
int32_t G_B3_1 = 0;
{
String_t* L_0 = ___command0;
NullCheck(L_0);
int32_t L_1;
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL);
String_t* L_2 = ___parameter1;
G_B1_0 = L_1;
if (L_2)
{
G_B2_0 = L_1;
goto IL_000c;
}
}
{
G_B3_0 = 0;
G_B3_1 = G_B1_0;
goto IL_0012;
}
IL_000c:
{
String_t* L_3 = ___parameter1;
NullCheck(L_3);
int32_t L_4;
L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL);
G_B3_0 = L_4;
G_B3_1 = G_B2_0;
}
IL_0012:
{
StringBuilder_t* L_5 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
NullCheck(L_5);
StringBuilder__ctor_m2619CA8D2C3476DF1A302D9D941498BB1C6164C5(L_5, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(G_B3_1, G_B3_0)), 3)), NULL);
V_0 = L_5;
StringBuilder_t* L_6 = V_0;
String_t* L_7 = ___command0;
NullCheck(L_6);
StringBuilder_t* L_8;
L_8 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_6, L_7, NULL);
String_t* L_9 = ___parameter1;
bool L_10;
L_10 = String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A(L_9, NULL);
if (L_10)
{
goto IL_003c;
}
}
{
StringBuilder_t* L_11 = V_0;
NullCheck(L_11);
StringBuilder_t* L_12;
L_12 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_11, ((int32_t)32), NULL);
StringBuilder_t* L_13 = V_0;
String_t* L_14 = ___parameter1;
NullCheck(L_13);
StringBuilder_t* L_15;
L_15 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_13, L_14, NULL);
}
IL_003c:
{
StringBuilder_t* L_16 = V_0;
NullCheck(L_16);
StringBuilder_t* L_17;
L_17 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_16, _stringLiteral4133EC0E83E4C69B6C0094B47BFD1408F0C8D4C5, NULL);
StringBuilder_t* L_18 = V_0;
NullCheck(L_18);
String_t* L_19;
L_19 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_18);
return L_19;
}
}
// System.Net.Sockets.Socket System.Net.FtpControlStream::CreateFtpDataSocket(System.Net.FtpWebRequest,System.Net.Sockets.Socket)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* FtpControlStream_CreateFtpDataSocket_mDDD4CC879C2BBDB4956033BB52781B60B262B56C (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* ___request0, Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* ___templateSocket1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_0 = ___templateSocket1;
NullCheck(L_0);
int32_t L_1;
L_1 = Socket_get_AddressFamily_m42C390D31345314080EC35356ACFBBFF7E1123E5_inline(L_0, NULL);
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_2 = ___templateSocket1;
NullCheck(L_2);
int32_t L_3;
L_3 = Socket_get_SocketType_mAFBEF108992F069AF0B8AD26D47EBBEADB8D2661_inline(L_2, NULL);
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_4 = ___templateSocket1;
NullCheck(L_4);
int32_t L_5;
L_5 = Socket_get_ProtocolType_m364A0E823BF3EA78DAFC1ED3A6B39658FB6A23BB_inline(L_4, NULL);
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_6 = (Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E*)il2cpp_codegen_object_new(Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E_il2cpp_TypeInfo_var);
NullCheck(L_6);
Socket__ctor_m35F1F4B4872E251867DA16460F06E903A30E4595(L_6, L_1, L_3, L_5, NULL);
return L_6;
}
}
// System.Boolean System.Net.FtpControlStream::CheckValid(System.Net.ResponseDescription,System.Int32&,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FtpControlStream_CheckValid_mC618F705ACE6DC3B6F636C74FE1CFCE8600C4141 (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* ___response0, int32_t* ___validThrough1, int32_t* ___completeLength2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4133EC0E83E4C69B6C0094B47BFD1408F0C8D4C5);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB1E498D1FDCAC7DD2B740989B7BFF5C99BD688BE);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralECD5559D94A6212CC6C17C395E8CC06883EE1DD5);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
bool L_0;
L_0 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_0)
{
goto IL_002b;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = L_1;
ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* L_3 = ___response0;
NullCheck(L_3);
StringBuilder_t* L_4 = L_3->___StatusBuffer_3;
NullCheck(L_2);
ArrayElementTypeCheck (L_2, L_4);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_4);
FormattableString_t4D7D221057108596F60CCCC83532037E2399BE0D* L_5;
L_5 = FormattableStringFactory_Create_mE112258142E627356203C9E0437E7CE21357A406(_stringLiteralB1E498D1FDCAC7DD2B740989B7BFF5C99BD688BE, L_2, NULL);
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Info_m0BE7F613FC95552DCCAB55C55B0396C13D2DB513(__this, L_5, _stringLiteralECD5559D94A6212CC6C17C395E8CC06883EE1DD5, NULL);
}
IL_002b:
{
ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* L_6 = ___response0;
NullCheck(L_6);
StringBuilder_t* L_7 = L_6->___StatusBuffer_3;
NullCheck(L_7);
int32_t L_8;
L_8 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_7, NULL);
if ((((int32_t)L_8) >= ((int32_t)4)))
{
goto IL_003b;
}
}
{
return (bool)1;
}
IL_003b:
{
ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* L_9 = ___response0;
NullCheck(L_9);
StringBuilder_t* L_10 = L_9->___StatusBuffer_3;
NullCheck(L_10);
String_t* L_11;
L_11 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_10);
V_0 = L_11;
ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* L_12 = ___response0;
NullCheck(L_12);
int32_t L_13 = L_12->___Status_1;
if ((!(((uint32_t)L_13) == ((uint32_t)(-1)))))
{
goto IL_00c8;
}
}
{
String_t* L_14 = V_0;
NullCheck(L_14);
Il2CppChar L_15;
L_15 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_14, 0, NULL);
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
bool L_16;
L_16 = Char_IsDigit_mC98DAF907860EFB7D26C3E126D80AD3A2CE72715(L_15, NULL);
if (!L_16)
{
goto IL_0090;
}
}
{
String_t* L_17 = V_0;
NullCheck(L_17);
Il2CppChar L_18;
L_18 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_17, 1, NULL);
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
bool L_19;
L_19 = Char_IsDigit_mC98DAF907860EFB7D26C3E126D80AD3A2CE72715(L_18, NULL);
if (!L_19)
{
goto IL_0090;
}
}
{
String_t* L_20 = V_0;
NullCheck(L_20);
Il2CppChar L_21;
L_21 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_20, 2, NULL);
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
bool L_22;
L_22 = Char_IsDigit_mC98DAF907860EFB7D26C3E126D80AD3A2CE72715(L_21, NULL);
if (!L_22)
{
goto IL_0090;
}
}
{
String_t* L_23 = V_0;
NullCheck(L_23);
Il2CppChar L_24;
L_24 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_23, 3, NULL);
if ((((int32_t)L_24) == ((int32_t)((int32_t)32))))
{
goto IL_0092;
}
}
{
String_t* L_25 = V_0;
NullCheck(L_25);
Il2CppChar L_26;
L_26 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_25, 3, NULL);
if ((((int32_t)L_26) == ((int32_t)((int32_t)45))))
{
goto IL_0092;
}
}
IL_0090:
{
return (bool)0;
}
IL_0092:
{
ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* L_27 = ___response0;
String_t* L_28 = V_0;
NullCheck(L_28);
String_t* L_29;
L_29 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_28, 0, 3, NULL);
NullCheck(L_27);
L_27->___StatusCodeString_4 = L_29;
Il2CppCodeGenWriteBarrier((void**)(&L_27->___StatusCodeString_4), (void*)L_29);
ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* L_30 = ___response0;
ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* L_31 = ___response0;
NullCheck(L_31);
String_t* L_32 = L_31->___StatusCodeString_4;
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_33;
L_33 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int16_t L_34;
L_34 = Convert_ToInt16_m8532226DD71F9B6E701B8278A2AA8BE9EAD79DD8(L_32, L_33, NULL);
NullCheck(L_30);
L_30->___Status_1 = L_34;
String_t* L_35 = V_0;
NullCheck(L_35);
Il2CppChar L_36;
L_36 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_35, 3, NULL);
if ((!(((uint32_t)L_36) == ((uint32_t)((int32_t)45)))))
{
goto IL_00c8;
}
}
{
ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* L_37 = ___response0;
NullCheck(L_37);
L_37->___Multiline_0 = (bool)1;
}
IL_00c8:
{
V_1 = 0;
goto IL_0115;
}
IL_00cc:
{
int32_t* L_38 = ___validThrough1;
int32_t L_39 = *((int32_t*)L_38);
V_2 = L_39;
int32_t* L_40 = ___validThrough1;
int32_t L_41 = V_1;
*((int32_t*)L_40) = (int32_t)((int32_t)il2cpp_codegen_add(L_41, 2));
ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* L_42 = ___response0;
NullCheck(L_42);
bool L_43 = L_42->___Multiline_0;
if (L_43)
{
goto IL_00e2;
}
}
{
int32_t* L_44 = ___completeLength2;
int32_t* L_45 = ___validThrough1;
int32_t L_46 = *((int32_t*)L_45);
*((int32_t*)L_44) = (int32_t)L_46;
return (bool)1;
}
IL_00e2:
{
String_t* L_47 = V_0;
NullCheck(L_47);
int32_t L_48;
L_48 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_47, NULL);
int32_t L_49 = V_2;
if ((((int32_t)L_48) <= ((int32_t)((int32_t)il2cpp_codegen_add(L_49, 4)))))
{
goto IL_0115;
}
}
{
String_t* L_50 = V_0;
int32_t L_51 = V_2;
NullCheck(L_50);
String_t* L_52;
L_52 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_50, L_51, 3, NULL);
ResponseDescription_t5A661AE824700CC3F19B5762F53AEB947B44AAC7* L_53 = ___response0;
NullCheck(L_53);
String_t* L_54 = L_53->___StatusCodeString_4;
bool L_55;
L_55 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_52, L_54, NULL);
if (!L_55)
{
goto IL_0115;
}
}
{
String_t* L_56 = V_0;
int32_t L_57 = V_2;
NullCheck(L_56);
Il2CppChar L_58;
L_58 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_56, ((int32_t)il2cpp_codegen_add(L_57, 3)), NULL);
if ((!(((uint32_t)L_58) == ((uint32_t)((int32_t)32)))))
{
goto IL_0115;
}
}
{
int32_t* L_59 = ___completeLength2;
int32_t* L_60 = ___validThrough1;
int32_t L_61 = *((int32_t*)L_60);
*((int32_t*)L_59) = (int32_t)L_61;
return (bool)1;
}
IL_0115:
{
String_t* L_62 = V_0;
int32_t* L_63 = ___validThrough1;
int32_t L_64 = *((int32_t*)L_63);
NullCheck(L_62);
int32_t L_65;
L_65 = String_IndexOf_mCBADAB35416ED6F5F733DF46CC86C23E5C9E5A56(L_62, _stringLiteral4133EC0E83E4C69B6C0094B47BFD1408F0C8D4C5, L_64, NULL);
int32_t L_66 = L_65;
V_1 = L_66;
if ((!(((uint32_t)L_66) == ((uint32_t)(-1)))))
{
goto IL_00cc;
}
}
{
return (bool)1;
}
}
// System.Net.TriState System.Net.FtpControlStream::IsFtpDataStreamWriteable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FtpControlStream_IsFtpDataStreamWriteable_m98769CB129051685F3DF2107B8B7CD11D343D6E7 (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* V_0 = NULL;
{
WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* L_0 = ((CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123*)__this)->____request_9;
V_0 = ((FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9*)IsInstSealed((RuntimeObject*)L_0, FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9_il2cpp_TypeInfo_var));
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_1 = V_0;
if (!L_1)
{
goto IL_002d;
}
}
{
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_2 = V_0;
NullCheck(L_2);
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_3;
L_3 = FtpWebRequest_get_MethodInfo_m1916AEF829D24CCE147215A4CC8B5D12E35370EB_inline(L_2, NULL);
NullCheck(L_3);
bool L_4;
L_4 = FtpMethodInfo_get_IsUpload_m34E090D800423923B895D914383F63EF51019CEC(L_3, NULL);
if (!L_4)
{
goto IL_001e;
}
}
{
return (int32_t)(1);
}
IL_001e:
{
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_5 = V_0;
NullCheck(L_5);
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_6;
L_6 = FtpWebRequest_get_MethodInfo_m1916AEF829D24CCE147215A4CC8B5D12E35370EB_inline(L_5, NULL);
NullCheck(L_6);
bool L_7;
L_7 = FtpMethodInfo_get_IsDownload_m0D167463FDABE34B643B022F442A657A3CEA2EC4(L_6, NULL);
if (!L_7)
{
goto IL_002d;
}
}
{
return (int32_t)(0);
}
IL_002d:
{
return (int32_t)((-1));
}
}
// System.Void System.Net.FtpControlStream::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpControlStream__cctor_mF8D6566F149435771B819B916199BBF9853A1EB0 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FtpControlStream_AcceptCallback_m32AB9ACD09857CB071842343824B5896EFAB4631_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FtpControlStream_ConnectCallback_mB51B71AC0FC2EB9DF9F868F0EC92AE8F760914DC_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FtpControlStream_SSLHandshakeCallback_mD624AD2E7B323CCD637813D9B982316C4778ADD1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* L_0 = (AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C*)il2cpp_codegen_object_new(AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C_il2cpp_TypeInfo_var);
NullCheck(L_0);
AsyncCallback__ctor_mC3C0475E930E4419AED02C7335E53B425A2D68AC(L_0, NULL, (intptr_t)((void*)FtpControlStream_AcceptCallback_m32AB9ACD09857CB071842343824B5896EFAB4631_RuntimeMethod_var), NULL);
((FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_StaticFields*)il2cpp_codegen_static_fields_for(FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_il2cpp_TypeInfo_var))->___s_acceptCallbackDelegate_39 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_StaticFields*)il2cpp_codegen_static_fields_for(FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_il2cpp_TypeInfo_var))->___s_acceptCallbackDelegate_39), (void*)L_0);
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* L_1 = (AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C*)il2cpp_codegen_object_new(AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C_il2cpp_TypeInfo_var);
NullCheck(L_1);
AsyncCallback__ctor_mC3C0475E930E4419AED02C7335E53B425A2D68AC(L_1, NULL, (intptr_t)((void*)FtpControlStream_ConnectCallback_mB51B71AC0FC2EB9DF9F868F0EC92AE8F760914DC_RuntimeMethod_var), NULL);
((FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_StaticFields*)il2cpp_codegen_static_fields_for(FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_il2cpp_TypeInfo_var))->___s_connectCallbackDelegate_40 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&((FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_StaticFields*)il2cpp_codegen_static_fields_for(FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_il2cpp_TypeInfo_var))->___s_connectCallbackDelegate_40), (void*)L_1);
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* L_2 = (AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C*)il2cpp_codegen_object_new(AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C_il2cpp_TypeInfo_var);
NullCheck(L_2);
AsyncCallback__ctor_mC3C0475E930E4419AED02C7335E53B425A2D68AC(L_2, NULL, (intptr_t)((void*)FtpControlStream_SSLHandshakeCallback_mD624AD2E7B323CCD637813D9B982316C4778ADD1_RuntimeMethod_var), NULL);
((FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_StaticFields*)il2cpp_codegen_static_fields_for(FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_il2cpp_TypeInfo_var))->___s_SSLHandshakeCallback_41 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&((FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_StaticFields*)il2cpp_codegen_static_fields_for(FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_il2cpp_TypeInfo_var))->___s_SSLHandshakeCallback_41), (void*)L_2);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#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.FtpControlStream/<>c__DisplayClass31_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass31_0__ctor_mC80F22193462B0EF9A706D5ECFDADC54E5120638 (U3CU3Ec__DisplayClass31_0_t5AF210E8C8A968A4D36EE158747C05623DB6FD6E* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Void System.Net.FtpControlStream/<>c__DisplayClass31_0::<PipelineCallback>b__0(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass31_0_U3CPipelineCallbackU3Eb__0_mFA6F1908DB89530BFD35B6934E01C14A5B45112D (U3CU3Ec__DisplayClass31_0_t5AF210E8C8A968A4D36EE158747C05623DB6FD6E* __this, RuntimeObject* ___ar0, const RuntimeMethod* method)
{
Exception_t* V_0 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51* L_0 = __this->___tlsStream_1;
RuntimeObject* L_1 = ___ar0;
NullCheck(L_0);
TlsStream_EndAuthenticateAsClient_mE7E1915CE91F4E796B2A0358B677C3D756F3BB2F(L_0, L_1, NULL);
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_2 = __this->___U3CU3E4__this_0;
TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51* L_3 = __this->___tlsStream_1;
NullCheck(L_2);
NetworkStreamWrapper_set_NetworkStream_m66A3B0C65E4DD88A79296C88CE4DC5912ED997A7_inline(L_2, L_3, NULL);
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_4 = __this->___U3CU3E4__this_0;
NullCheck(L_4);
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_5;
L_5 = CommandStream_ContinueCommandPipeline_m5C680F284A85251071F130E61F020F232C85B815(L_4, NULL);
goto IL_0045;
}// 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_002b;
}
throw e;
}
CATCH_002b:
{// begin catch(System.Exception)
V_0 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_6 = __this->___U3CU3E4__this_0;
NullCheck(L_6);
NetworkStreamWrapper_CloseSocket_mAD2F12D01E0C1D3B6DD51D691F1C5CBA1A4D1467(L_6, NULL);
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_7 = __this->___U3CU3E4__this_0;
Exception_t* L_8 = V_0;
NullCheck(L_7);
CommandStream_InvokeRequestCallback_m6E7BFD33406D1B53BCF50C42E9D91F13E42C5F3A(L_7, L_8, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0045;
}// end catch (depth: 1)
IL_0045:
{
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.FtpDataStream::.ctor(System.Net.Sockets.NetworkStream,System.Net.FtpWebRequest,System.Net.TriState)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpDataStream__ctor_m43E92319125756CD8D5D660EE7FE9B940DA9DB75 (FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* __this, NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* ___networkStream0, FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* ___request1, int32_t ___writeOnly2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral31514D8FFE6EBD8A160985B5C25BE0F2A7BEF863);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_il2cpp_TypeInfo_var);
Stream__ctor_mE8B074A0EBEB026FFF14062AB4B8A78E17EFFBF0(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
bool L_0;
L_0 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_0)
{
goto IL_0019;
}
}
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Info_m0BE7F613FC95552DCCAB55C55B0396C13D2DB513(__this, (FormattableString_t4D7D221057108596F60CCCC83532037E2399BE0D*)NULL, _stringLiteral31514D8FFE6EBD8A160985B5C25BE0F2A7BEF863, NULL);
}
IL_0019:
{
__this->____readable_7 = (bool)1;
__this->____writeable_6 = (bool)1;
int32_t L_1 = ___writeOnly2;
if ((!(((uint32_t)L_1) == ((uint32_t)1))))
{
goto IL_0034;
}
}
{
__this->____readable_7 = (bool)0;
goto IL_003e;
}
IL_0034:
{
int32_t L_2 = ___writeOnly2;
if (L_2)
{
goto IL_003e;
}
}
{
__this->____writeable_6 = (bool)0;
}
IL_003e:
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_3 = ___networkStream0;
__this->____networkStream_5 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->____networkStream_5), (void*)L_3);
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_4 = ___request1;
__this->____request_4 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->____request_4), (void*)L_4);
return;
}
}
// System.Void System.Net.FtpDataStream::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpDataStream_Dispose_m40A248B7B3B4AA751449298E068A48711AF2437A (FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* __this, bool ___disposing0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICloseEx_tCE0C0139320304106D631B20A3A73B581D2ED6F1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0015:
{// begin finally (depth: 1)
bool L_0 = ___disposing0;
Stream_Dispose_m9B37BD21A57F8F2BD20EE353DE14405700810C5C(__this, L_0, NULL);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
bool L_1 = ___disposing0;
if (!L_1)
{
goto IL_000c_1;
}
}
{
InterfaceActionInvoker1< int32_t >::Invoke(0 /* System.Void System.Net.ICloseEx::CloseEx(System.Net.CloseExState) */, ICloseEx_tCE0C0139320304106D631B20A3A73B581D2ED6F1_il2cpp_TypeInfo_var, __this, 0);
goto IL_001d;
}
IL_000c_1:
{
InterfaceActionInvoker1< int32_t >::Invoke(0 /* System.Void System.Net.ICloseEx::CloseEx(System.Net.CloseExState) */, ICloseEx_tCE0C0139320304106D631B20A3A73B581D2ED6F1_il2cpp_TypeInfo_var, __this, 3);
goto IL_001d;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_001d:
{
return;
}
}
// System.Void System.Net.FtpDataStream::System.Net.ICloseEx.CloseEx(System.Net.CloseExState)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpDataStream_System_Net_ICloseEx_CloseEx_m8518CB2A9A5EB9C3EB5DF8BDD7190CF67EA12D4E (FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* __this, int32_t ___closeState0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CloseExState_t3BF48B5344EC89945CB921ED26AF81B4BF9F6C44_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7261AC55A08390AC06CD46D9461EC1CC693D1B6C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral852D6C5FF950C5F68CBF45E550ECB7097C8EDE5F);
s_Il2CppMethodInitialized = true;
}
FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* V_3 = NULL;
FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* V_4 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
bool L_0;
L_0 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_0)
{
goto IL_002b;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = L_1;
int32_t L_3 = ___closeState0;
int32_t L_4 = L_3;
RuntimeObject* L_5 = Box(CloseExState_t3BF48B5344EC89945CB921ED26AF81B4BF9F6C44_il2cpp_TypeInfo_var, &L_4);
NullCheck(L_2);
ArrayElementTypeCheck (L_2, L_5);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_5);
FormattableString_t4D7D221057108596F60CCCC83532037E2399BE0D* L_6;
L_6 = FormattableStringFactory_Create_mE112258142E627356203C9E0437E7CE21357A406(_stringLiteral7261AC55A08390AC06CD46D9461EC1CC693D1B6C, L_2, NULL);
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Info_m0BE7F613FC95552DCCAB55C55B0396C13D2DB513(__this, L_6, _stringLiteral852D6C5FF950C5F68CBF45E550ECB7097C8EDE5F, NULL);
}
IL_002b:
{
V_0 = __this;
V_1 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_005b:
{// begin finally (depth: 1)
{
bool L_7 = V_1;
if (!L_7)
{
goto IL_0064;
}
}
{
FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* L_8 = V_0;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_8, NULL);
}
IL_0064:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* L_9 = V_0;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_9, (&V_1), NULL);
bool L_10 = __this->____closing_9;
if (!L_10)
{
goto IL_0044_1;
}
}
{
goto IL_00d6;
}
IL_0044_1:
{
__this->____closing_9 = (bool)1;
__this->____writeable_6 = (bool)0;
__this->____readable_7 = (bool)0;
goto IL_0065;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0065:
{
}
try
{// begin try (depth: 1)
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0087_1:
{// begin finally (depth: 2)
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_11 = __this->____request_4;
int32_t L_12 = ___closeState0;
NullCheck(L_11);
FtpWebRequest_DataStreamClosed_m39A5D8350B2CC390416F67CE81165D4A69425CBD(L_11, L_12, NULL);
return;
}// end finally (depth: 2)
});
try
{// begin try (depth: 2)
{
int32_t L_13 = ___closeState0;
if (((int32_t)((int32_t)L_13&1)))
{
goto IL_0079_2;
}
}
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_14 = __this->____networkStream_5;
NullCheck(L_14);
NetworkStream_Close_mF96B49D4D67AC90FEBA52F7A7642450C496F15A1(L_14, (-1), NULL);
goto IL_0085_2;
}
IL_0079_2:
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_15 = __this->____networkStream_5;
NullCheck(L_15);
NetworkStream_Close_mF96B49D4D67AC90FEBA52F7A7642450C496F15A1(L_15, 0, NULL);
}
IL_0085_2:
{
goto IL_0094_1;
}
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0094_1:
{
goto IL_00d6;
}
}// 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_0096;
}
throw e;
}
CATCH_0096:
{// begin catch(System.Exception)
{
V_2 = (bool)1;
V_3 = ((WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8*)IsInstClass((RuntimeObject*)((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*)), ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8_il2cpp_TypeInfo_var))));
WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* L_16 = V_3;
if (!L_16)
{
goto IL_00ca;
}
}
{
WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* L_17 = V_3;
NullCheck(L_17);
WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* L_18;
L_18 = WebException_get_Response_m808BF96464DDCE6C66D633355101C69800A5A7E7_inline(L_17, NULL);
V_4 = ((FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77*)IsInstClass((RuntimeObject*)L_18, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77_il2cpp_TypeInfo_var))));
FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* L_19 = V_4;
if (!L_19)
{
goto IL_00ca;
}
}
{
bool L_20 = __this->____isFullyRead_8;
if (L_20)
{
goto IL_00ca;
}
}
{
FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* L_21 = V_4;
NullCheck(L_21);
int32_t L_22;
L_22 = FtpWebResponse_get_StatusCode_m874357CEF43E1D988350EE6229F996F0F41DB795_inline(L_21, NULL);
if ((!(((uint32_t)L_22) == ((uint32_t)((int32_t)426)))))
{
goto IL_00ca;
}
}
{
V_2 = (bool)0;
}
IL_00ca:
{
bool L_23 = V_2;
if (!L_23)
{
goto IL_00d4;
}
}
{
int32_t L_24 = ___closeState0;
if (((int32_t)((int32_t)L_24&2)))
{
goto IL_00d4;
}
}
{
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpDataStream_System_Net_ICloseEx_CloseEx_m8518CB2A9A5EB9C3EB5DF8BDD7190CF67EA12D4E_RuntimeMethod_var)));
}
IL_00d4:
{
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_00d6;
}
}// end catch (depth: 1)
IL_00d6:
{
return;
}
}
// System.Void System.Net.FtpDataStream::CheckError()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpDataStream_CheckError_mC26104FB2C3DEC62A33E10405B121830A3AEA959 (FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* __this, const RuntimeMethod* method)
{
{
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_0 = __this->____request_4;
NullCheck(L_0);
bool L_1;
L_1 = FtpWebRequest_get_Aborted_mD54BB6D8935C6139F80371D631FA815961BAEA1D_inline(L_0, NULL);
if (!L_1)
{
goto IL_0013;
}
}
{
WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* L_2;
L_2 = ExceptionHelper_get_RequestAbortedException_m3DF6599ECE269D18BE8B09099E6D8A9E6692B309(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpDataStream_CheckError_mC26104FB2C3DEC62A33E10405B121830A3AEA959_RuntimeMethod_var)));
}
IL_0013:
{
return;
}
}
// System.Boolean System.Net.FtpDataStream::get_CanRead()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FtpDataStream_get_CanRead_mB136FDA74BD17ECC05F810CEC8DA8452725F88BC (FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->____readable_7;
return L_0;
}
}
// System.Boolean System.Net.FtpDataStream::get_CanSeek()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FtpDataStream_get_CanSeek_m16CFE4B9386DA93BD72857FD3DDAC124B68BEEAA (FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* __this, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(8 /* System.Boolean System.IO.Stream::get_CanSeek() */, L_0);
return L_1;
}
}
// System.Boolean System.Net.FtpDataStream::get_CanWrite()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FtpDataStream_get_CanWrite_mAD89E9F515C503810E61BB8F044CF512DDD9E0EE (FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->____writeable_6;
return L_0;
}
}
// System.Int64 System.Net.FtpDataStream::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t FtpDataStream_get_Length_m41102D2823EC5DA138301485C9A96DA8BC507614 (FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* __this, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
NullCheck(L_0);
int64_t L_1;
L_1 = VirtualFuncInvoker0< int64_t >::Invoke(11 /* System.Int64 System.IO.Stream::get_Length() */, L_0);
return L_1;
}
}
// System.Int64 System.Net.FtpDataStream::get_Position()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t FtpDataStream_get_Position_m61B62F61A716965679CC54C94B1C16E4694CD957 (FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* __this, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
NullCheck(L_0);
int64_t L_1;
L_1 = VirtualFuncInvoker0< int64_t >::Invoke(12 /* System.Int64 System.IO.Stream::get_Position() */, L_0);
return L_1;
}
}
// System.Void System.Net.FtpDataStream::set_Position(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpDataStream_set_Position_m079639CACCF2F27743CA7213A0DB8A64759D04B0 (FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* __this, int64_t ___value0, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
int64_t L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< int64_t >::Invoke(13 /* System.Void System.IO.Stream::set_Position(System.Int64) */, L_0, L_1);
return;
}
}
// System.Int64 System.Net.FtpDataStream::Seek(System.Int64,System.IO.SeekOrigin)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t FtpDataStream_Seek_m14D6F555BAE0811E39C12619CED96986472CABC7 (FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* __this, int64_t ___offset0, int32_t ___origin1, const RuntimeMethod* method)
{
int64_t V_0 = 0;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
FtpDataStream_CheckError_mC26104FB2C3DEC62A33E10405B121830A3AEA959(__this, NULL);
}
try
{// begin try (depth: 1)
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
int64_t L_1 = ___offset0;
int32_t L_2 = ___origin1;
NullCheck(L_0);
int64_t L_3;
L_3 = VirtualFuncInvoker2< int64_t, int64_t, int32_t >::Invoke(30 /* System.Int64 System.IO.Stream::Seek(System.Int64,System.IO.SeekOrigin) */, L_0, L_1, L_2);
V_0 = L_3;
goto IL_001f;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0016;
}
throw e;
}
CATCH_0016:
{// begin catch(System.Object)
FtpDataStream_CheckError_mC26104FB2C3DEC62A33E10405B121830A3AEA959(__this, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpDataStream_Seek_m14D6F555BAE0811E39C12619CED96986472CABC7_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_001f:
{
int64_t L_4 = V_0;
return L_4;
}
}
// System.Int32 System.Net.FtpDataStream::Read(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FtpDataStream_Read_m80A22ED0497EEACE48277E18ED0E9B4190542D44 (FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___offset1, int32_t ___size2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
FtpDataStream_CheckError_mC26104FB2C3DEC62A33E10405B121830A3AEA959(__this, NULL);
}
try
{// begin try (depth: 1)
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___buffer0;
int32_t L_2 = ___offset1;
int32_t L_3 = ___size2;
NullCheck(L_0);
int32_t L_4;
L_4 = VirtualFuncInvoker3< int32_t, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(31 /* System.Int32 System.IO.Stream::Read(System.Byte[],System.Int32,System.Int32) */, L_0, L_1, L_2, L_3);
V_0 = L_4;
goto IL_0020;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0017;
}
throw e;
}
CATCH_0017:
{// begin catch(System.Object)
FtpDataStream_CheckError_mC26104FB2C3DEC62A33E10405B121830A3AEA959(__this, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpDataStream_Read_m80A22ED0497EEACE48277E18ED0E9B4190542D44_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_0020:
{
int32_t L_5 = V_0;
if (L_5)
{
goto IL_0030;
}
}
{
__this->____isFullyRead_8 = (bool)1;
VirtualActionInvoker0::Invoke(18 /* System.Void System.IO.Stream::Close() */, __this);
}
IL_0030:
{
int32_t L_6 = V_0;
return L_6;
}
}
// System.Void System.Net.FtpDataStream::Write(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpDataStream_Write_m5B917E5BAB484222765206736846B9816A835183 (FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___offset1, int32_t ___size2, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
FtpDataStream_CheckError_mC26104FB2C3DEC62A33E10405B121830A3AEA959(__this, NULL);
}
try
{// begin try (depth: 1)
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___buffer0;
int32_t L_2 = ___offset1;
int32_t L_3 = ___size2;
NullCheck(L_0);
VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(34 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_0, L_1, L_2, L_3);
goto IL_001f;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0016;
}
throw e;
}
CATCH_0016:
{// begin catch(System.Object)
FtpDataStream_CheckError_mC26104FB2C3DEC62A33E10405B121830A3AEA959(__this, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpDataStream_Write_m5B917E5BAB484222765206736846B9816A835183_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_001f:
{
return;
}
}
// System.Void System.Net.FtpDataStream::AsyncReadCallback(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpDataStream_AsyncReadCallback_m8A05268C76664CF1F38C1901EB05327A33FF8A9B (FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* __this, RuntimeObject* ___ar0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* V_0 = NULL;
int32_t V_1 = 0;
Exception_t* V_2 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 2> __active_exceptions;
{
RuntimeObject* L_0 = ___ar0;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2 /* System.Object System.IAsyncResult::get_AsyncState() */, IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5_il2cpp_TypeInfo_var, L_0);
V_0 = ((LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B*)CastclassClass((RuntimeObject*)L_1, LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B_il2cpp_TypeInfo_var));
}
try
{// begin try (depth: 1)
try
{// begin try (depth: 2)
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_2 = __this->____networkStream_5;
RuntimeObject* L_3 = ___ar0;
NullCheck(L_2);
int32_t L_4;
L_4 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(23 /* System.Int32 System.IO.Stream::EndRead(System.IAsyncResult) */, L_2, L_3);
V_1 = L_4;
int32_t L_5 = V_1;
if (L_5)
{
goto IL_0029_2;
}
}
{
__this->____isFullyRead_8 = (bool)1;
VirtualActionInvoker0::Invoke(18 /* System.Void System.IO.Stream::Close() */, __this);
}
IL_0029_2:
{
LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* L_6 = V_0;
int32_t L_7 = V_1;
int32_t L_8 = L_7;
RuntimeObject* L_9 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_8);
NullCheck(L_6);
LazyAsyncResult_InvokeCallback_m4A1E1A15818F5ED6E6DBAEB48104A06529A11C9A(L_6, L_9, NULL);
goto IL_0049_1;
}
}// end try (depth: 2)
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_0037_1;
}
throw e;
}
CATCH_0037_1:
{// begin catch(System.Exception)
{
V_2 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* L_10 = V_0;
NullCheck(L_10);
bool L_11;
L_11 = LazyAsyncResult_get_IsCompleted_mE0A803876FB2D312361FCA5F631535B09F6C3125(L_10, NULL);
if (L_11)
{
goto IL_0047_1;
}
}
{
LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* L_12 = V_0;
Exception_t* L_13 = V_2;
NullCheck(L_12);
LazyAsyncResult_InvokeCallback_m4A1E1A15818F5ED6E6DBAEB48104A06529A11C9A(L_12, L_13, NULL);
}
IL_0047_1:
{
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0049_1;
}
}// end catch (depth: 2)
IL_0049_1:
{
goto IL_004e;
}
}// 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_004b;
}
throw e;
}
CATCH_004b:
{// begin catch(System.Object)
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_004e;
}// end catch (depth: 1)
IL_004e:
{
return;
}
}
// System.IAsyncResult System.Net.FtpDataStream::BeginRead(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* FtpDataStream_BeginRead_m5164D1F47EBDF439C369ECF12776AFF3A721FAAA (FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___offset1, int32_t ___size2, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___callback3, RuntimeObject* ___state4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FtpDataStream_AsyncReadCallback_m8A05268C76664CF1F38C1901EB05327A33FF8A9B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* V_0 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
FtpDataStream_CheckError_mC26104FB2C3DEC62A33E10405B121830A3AEA959(__this, NULL);
RuntimeObject* L_0 = ___state4;
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* L_1 = ___callback3;
LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* L_2 = (LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B*)il2cpp_codegen_object_new(LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B_il2cpp_TypeInfo_var);
NullCheck(L_2);
LazyAsyncResult__ctor_m62BAF64A732506AD7544741700A0333B22CADE2F(L_2, __this, L_0, L_1, NULL);
V_0 = L_2;
}
try
{// begin try (depth: 1)
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_3 = __this->____networkStream_5;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ___buffer0;
int32_t L_5 = ___offset1;
int32_t L_6 = ___size2;
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* L_7 = (AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C*)il2cpp_codegen_object_new(AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C_il2cpp_TypeInfo_var);
NullCheck(L_7);
AsyncCallback__ctor_mC3C0475E930E4419AED02C7335E53B425A2D68AC(L_7, __this, (intptr_t)((void*)FtpDataStream_AsyncReadCallback_m8A05268C76664CF1F38C1901EB05327A33FF8A9B_RuntimeMethod_var), NULL);
LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* L_8 = V_0;
NullCheck(L_3);
RuntimeObject* L_9;
L_9 = VirtualFuncInvoker5< RuntimeObject*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C*, RuntimeObject* >::Invoke(22 /* System.IAsyncResult System.IO.Stream::BeginRead(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object) */, L_3, L_4, L_5, L_6, L_7, L_8);
goto IL_0038;
}// 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_002f;
}
throw e;
}
CATCH_002f:
{// begin catch(System.Object)
FtpDataStream_CheckError_mC26104FB2C3DEC62A33E10405B121830A3AEA959(__this, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpDataStream_BeginRead_m5164D1F47EBDF439C369ECF12776AFF3A721FAAA_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_0038:
{
LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* L_10 = V_0;
return L_10;
}
}
// System.Int32 System.Net.FtpDataStream::EndRead(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FtpDataStream_EndRead_m0C22E9C40BBBCBFA9ACA9D672059F8E3A852339C (FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* __this, RuntimeObject* ___ar0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Exception_t* V_0 = NULL;
int32_t V_1 = 0;
RuntimeObject* G_B2_0 = NULL;
RuntimeObject* G_B1_0 = NULL;
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0023:
{// begin finally (depth: 1)
FtpDataStream_CheckError_mC26104FB2C3DEC62A33E10405B121830A3AEA959(__this, NULL);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
RuntimeObject* L_0 = ___ar0;
NullCheck(((LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B*)CastclassClass((RuntimeObject*)L_0, LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B_il2cpp_TypeInfo_var)));
RuntimeObject* L_1;
L_1 = LazyAsyncResult_InternalWaitForCompletion_mE52E38E8478ACA2C9344716035CCC46E5CA32A59(((LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B*)CastclassClass((RuntimeObject*)L_0, LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B_il2cpp_TypeInfo_var)), NULL);
RuntimeObject* L_2 = L_1;
V_0 = ((Exception_t*)IsInstClass((RuntimeObject*)L_2, Exception_t_il2cpp_TypeInfo_var));
Exception_t* L_3 = V_0;
G_B1_0 = L_2;
if (!L_3)
{
G_B2_0 = L_2;
goto IL_001b_1;
}
}
{
Exception_t* L_4 = V_0;
ExceptionDispatchInfo_Throw_mFA716299AF77061945002B15FC713A3FBD6895F1(L_4, NULL);
G_B2_0 = G_B1_0;
}
IL_001b_1:
{
V_1 = ((*(int32_t*)((int32_t*)(int32_t*)UnBox(G_B2_0, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var))));
goto IL_002a;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_002a:
{
int32_t L_5 = V_1;
return L_5;
}
}
// System.IAsyncResult System.Net.FtpDataStream::BeginWrite(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* FtpDataStream_BeginWrite_m5C92FBF9A19E02023A289311E0BBD2647F4D64FF (FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___offset1, int32_t ___size2, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___callback3, RuntimeObject* ___state4, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
FtpDataStream_CheckError_mC26104FB2C3DEC62A33E10405B121830A3AEA959(__this, NULL);
}
try
{// begin try (depth: 1)
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___buffer0;
int32_t L_2 = ___offset1;
int32_t L_3 = ___size2;
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* L_4 = ___callback3;
RuntimeObject* L_5 = ___state4;
NullCheck(L_0);
RuntimeObject* L_6;
L_6 = VirtualFuncInvoker5< RuntimeObject*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C*, RuntimeObject* >::Invoke(26 /* System.IAsyncResult System.IO.Stream::BeginWrite(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object) */, L_0, L_1, L_2, L_3, L_4, L_5);
V_0 = L_6;
goto IL_0024;
}// 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_001b;
}
throw e;
}
CATCH_001b:
{// begin catch(System.Object)
FtpDataStream_CheckError_mC26104FB2C3DEC62A33E10405B121830A3AEA959(__this, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpDataStream_BeginWrite_m5C92FBF9A19E02023A289311E0BBD2647F4D64FF_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_0024:
{
RuntimeObject* L_7 = V_0;
return L_7;
}
}
// System.Void System.Net.FtpDataStream::EndWrite(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpDataStream_EndWrite_mC462BE976E9BBDD4EDD8CF8DE0EC5E9224973CC9 (FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* __this, RuntimeObject* ___asyncResult0, const RuntimeMethod* method)
{
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_000e:
{// begin finally (depth: 1)
FtpDataStream_CheckError_mC26104FB2C3DEC62A33E10405B121830A3AEA959(__this, NULL);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
RuntimeObject* L_1 = ___asyncResult0;
NullCheck(L_0);
VirtualActionInvoker1< RuntimeObject* >::Invoke(27 /* System.Void System.IO.Stream::EndWrite(System.IAsyncResult) */, L_0, L_1);
goto IL_0015;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0015:
{
return;
}
}
// System.Void System.Net.FtpDataStream::Flush()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpDataStream_Flush_m68DD6058C64DF629BD9E77C15821CE07E4CB8157 (FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* __this, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
NullCheck(L_0);
VirtualActionInvoker0::Invoke(20 /* System.Void System.IO.Stream::Flush() */, L_0);
return;
}
}
// System.Boolean System.Net.FtpDataStream::get_CanTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FtpDataStream_get_CanTimeout_m4D01B3DCA1B67CA92E1E39B66D5CCE66B40C592A (FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* __this, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(9 /* System.Boolean System.IO.Stream::get_CanTimeout() */, L_0);
return L_1;
}
}
// System.Int32 System.Net.FtpDataStream::get_ReadTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FtpDataStream_get_ReadTimeout_mEAFCC7065DAB83EFD8E4116426E05EB460B42795 (FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* __this, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(14 /* System.Int32 System.IO.Stream::get_ReadTimeout() */, L_0);
return L_1;
}
}
// System.Void System.Net.FtpDataStream::set_ReadTimeout(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpDataStream_set_ReadTimeout_m51BE244F4873D324D797C0B05D063C40371422D2 (FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
int32_t L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< int32_t >::Invoke(15 /* System.Void System.IO.Stream::set_ReadTimeout(System.Int32) */, L_0, L_1);
return;
}
}
// System.Int32 System.Net.FtpDataStream::get_WriteTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FtpDataStream_get_WriteTimeout_mA96F0FB2ED35E26FE846C5AB322739F1429C1336 (FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* __this, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(16 /* System.Int32 System.IO.Stream::get_WriteTimeout() */, L_0);
return L_1;
}
}
// System.Void System.Net.FtpDataStream::set_WriteTimeout(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpDataStream_set_WriteTimeout_m2E70796FCB84096334299E26840F1536FB380761 (FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
int32_t L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< int32_t >::Invoke(17 /* System.Void System.IO.Stream::set_WriteTimeout(System.Int32) */, L_0, L_1);
return;
}
}
// System.Void System.Net.FtpDataStream::SetSocketTimeoutOption(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpDataStream_SetSocketTimeoutOption_m20EDF2440DC034CB6530BB97A53796A2DBAC88A8 (FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* __this, int32_t ___timeout0, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
int32_t L_1 = ___timeout0;
NullCheck(L_0);
VirtualActionInvoker1< int32_t >::Invoke(15 /* System.Void System.IO.Stream::set_ReadTimeout(System.Int32) */, L_0, L_1);
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_2 = __this->____networkStream_5;
int32_t L_3 = ___timeout0;
NullCheck(L_2);
VirtualActionInvoker1< int32_t >::Invoke(17 /* System.Void System.IO.Stream::set_WriteTimeout(System.Int32) */, L_2, 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
#ifdef __clang__
#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.FtpMethodInfo::.ctor(System.String,System.Net.FtpOperation,System.Net.FtpMethodFlags,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpMethodInfo__ctor_mC171C452F97CFBCC30ADEA3982ECBE6469C4523D (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* __this, String_t* ___method0, int32_t ___operation1, int32_t ___flags2, String_t* ___httpCommand3, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
String_t* L_0 = ___method0;
__this->___Method_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___Method_0), (void*)L_0);
int32_t L_1 = ___operation1;
__this->___Operation_1 = L_1;
int32_t L_2 = ___flags2;
__this->___Flags_2 = L_2;
String_t* L_3 = ___httpCommand3;
__this->___HttpCommand_3 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___HttpCommand_3), (void*)L_3);
return;
}
}
// System.Boolean System.Net.FtpMethodInfo::HasFlag(System.Net.FtpMethodFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FtpMethodInfo_HasFlag_mE4178764BE8879A93F8E9A4A3737528A2BE3F775 (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* __this, int32_t ___flags0, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___Flags_2;
int32_t L_1 = ___flags0;
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)L_1))) <= ((uint32_t)0)))? 1 : 0);
}
}
// System.Boolean System.Net.FtpMethodInfo::get_IsCommandOnly()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FtpMethodInfo_get_IsCommandOnly_m908F15518314673A19C0757AA67E24374709D719 (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___Flags_2;
return (bool)((((int32_t)((int32_t)((int32_t)L_0&3))) == ((int32_t)0))? 1 : 0);
}
}
// System.Boolean System.Net.FtpMethodInfo::get_IsUpload()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FtpMethodInfo_get_IsUpload_m34E090D800423923B895D914383F63EF51019CEC (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___Flags_2;
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&2))) <= ((uint32_t)0)))? 1 : 0);
}
}
// System.Boolean System.Net.FtpMethodInfo::get_IsDownload()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FtpMethodInfo_get_IsDownload_m0D167463FDABE34B643B022F442A657A3CEA2EC4 (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___Flags_2;
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&1))) <= ((uint32_t)0)))? 1 : 0);
}
}
// System.Boolean System.Net.FtpMethodInfo::get_ShouldParseForResponseUri()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FtpMethodInfo_get_ShouldParseForResponseUri_m7D40CD10C27151B72235705787C1FCBC62B6E60B (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___Flags_2;
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&((int32_t)64)))) <= ((uint32_t)0)))? 1 : 0);
}
}
// System.Net.FtpMethodInfo System.Net.FtpMethodInfo::GetMethodInfo(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* FtpMethodInfo_GetMethodInfo_mE5CB9773AE2ECF74C9C39DCCB562B616767BE39B (String_t* ___method0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
FtpMethodInfoU5BU5D_tED308D4DC0FECB991D43BBF85B5B7345561B267B* V_0 = NULL;
int32_t V_1 = 0;
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* V_2 = NULL;
{
String_t* L_0 = ___method0;
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_1;
L_1 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
NullCheck(L_0);
String_t* L_2;
L_2 = String_ToUpper_mFC5C17C8BFF52540CC7A73E36DFC9617281325D1(L_0, L_1, NULL);
___method0 = L_2;
il2cpp_codegen_runtime_class_init_inline(FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E_il2cpp_TypeInfo_var);
FtpMethodInfoU5BU5D_tED308D4DC0FECB991D43BBF85B5B7345561B267B* L_3 = ((FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E_StaticFields*)il2cpp_codegen_static_fields_for(FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E_il2cpp_TypeInfo_var))->___s_knownMethodInfo_4;
V_0 = L_3;
V_1 = 0;
goto IL_002f;
}
IL_0017:
{
FtpMethodInfoU5BU5D_tED308D4DC0FECB991D43BBF85B5B7345561B267B* L_4 = V_0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
V_2 = L_7;
String_t* L_8 = ___method0;
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_9 = V_2;
NullCheck(L_9);
String_t* L_10 = L_9->___Method_0;
bool L_11;
L_11 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_8, L_10, NULL);
if (!L_11)
{
goto IL_002b;
}
}
{
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_12 = V_2;
return L_12;
}
IL_002b:
{
int32_t L_13 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_13, 1));
}
IL_002f:
{
int32_t L_14 = V_1;
FtpMethodInfoU5BU5D_tED308D4DC0FECB991D43BBF85B5B7345561B267B* L_15 = V_0;
NullCheck(L_15);
if ((((int32_t)L_14) < ((int32_t)((int32_t)(((RuntimeArray*)L_15)->max_length)))))
{
goto IL_0017;
}
}
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_16 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_16);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_16, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAFA58366D18B83459A7329A0ADE678FD54489434)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral82EA3C9AFC08F0CECEBC1B257606B3106346FCAF)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpMethodInfo_GetMethodInfo_mE5CB9773AE2ECF74C9C39DCCB562B616767BE39B_RuntimeMethod_var)));
}
}
// System.Void System.Net.FtpMethodInfo::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpMethodInfo__cctor_m59F0FDD90D25CF351E06C20D432F9458CA1D68D4 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FtpMethodInfoU5BU5D_tED308D4DC0FECB991D43BBF85B5B7345561B267B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral04045BCBA2BF67D6C1FB792E497557BDF7F450B1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral127982D8D48B627D6FEB2E03467C76CE65E3AD8A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2264BCDAE97447CBA2BF489CDD8241719D321D83);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3CF09EA528F2B59A7130F83612C8F6DC4419E135);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4804D4A94A508275B12EF1A6D5615949E9E336E1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral495DC0FD751814351D0F918BCFE0E9C782E2E090);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral65C1D59289B5966ECA441384A680097DC790EC62);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral86EB59FCEC37C8229DD2F3BB2A9EBA2F48812A6A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAAFC71E95E05872CC9F35C4F43F28F1413C8E894);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB7037FE69D3F4578EBCEE87B50A50C9E21C70409);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB80519B73D335C4C43628C2D134643395ECC9577);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC68DC3872E7EB1BBA4CCE5012FCB2352A90E5572);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD4E42EF2513EC8A2FD0A32ECA2B740EDC1D77361);
s_Il2CppMethodInitialized = true;
}
{
FtpMethodInfoU5BU5D_tED308D4DC0FECB991D43BBF85B5B7345561B267B* L_0 = (FtpMethodInfoU5BU5D_tED308D4DC0FECB991D43BBF85B5B7345561B267B*)(FtpMethodInfoU5BU5D_tED308D4DC0FECB991D43BBF85B5B7345561B267B*)SZArrayNew(FtpMethodInfoU5BU5D_tED308D4DC0FECB991D43BBF85B5B7345561B267B_il2cpp_TypeInfo_var, (uint32_t)((int32_t)13));
FtpMethodInfoU5BU5D_tED308D4DC0FECB991D43BBF85B5B7345561B267B* L_1 = L_0;
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_2 = (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E*)il2cpp_codegen_object_new(FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E_il2cpp_TypeInfo_var);
NullCheck(L_2);
FtpMethodInfo__ctor_mC171C452F97CFBCC30ADEA3982ECBE6469C4523D(L_2, _stringLiteral2264BCDAE97447CBA2BF489CDD8241719D321D83, 0, ((int32_t)133), _stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6, NULL);
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E*)L_2);
FtpMethodInfoU5BU5D_tED308D4DC0FECB991D43BBF85B5B7345561B267B* L_3 = L_1;
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_4 = (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E*)il2cpp_codegen_object_new(FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E_il2cpp_TypeInfo_var);
NullCheck(L_4);
FtpMethodInfo__ctor_mC171C452F97CFBCC30ADEA3982ECBE6469C4523D(L_4, _stringLiteral127982D8D48B627D6FEB2E03467C76CE65E3AD8A, 1, ((int32_t)393), _stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6, NULL);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_4);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E*)L_4);
FtpMethodInfoU5BU5D_tED308D4DC0FECB991D43BBF85B5B7345561B267B* L_5 = L_3;
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_6 = (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E*)il2cpp_codegen_object_new(FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E_il2cpp_TypeInfo_var);
NullCheck(L_6);
FtpMethodInfo__ctor_mC171C452F97CFBCC30ADEA3982ECBE6469C4523D(L_6, _stringLiteral495DC0FD751814351D0F918BCFE0E9C782E2E090, 2, ((int32_t)393), _stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6, NULL);
NullCheck(L_5);
ArrayElementTypeCheck (L_5, L_6);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(2), (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E*)L_6);
FtpMethodInfoU5BU5D_tED308D4DC0FECB991D43BBF85B5B7345561B267B* L_7 = L_5;
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_8 = (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E*)il2cpp_codegen_object_new(FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E_il2cpp_TypeInfo_var);
NullCheck(L_8);
FtpMethodInfo__ctor_mC171C452F97CFBCC30ADEA3982ECBE6469C4523D(L_8, _stringLiteralB7037FE69D3F4578EBCEE87B50A50C9E21C70409, 3, 6, (String_t*)NULL, NULL);
NullCheck(L_7);
ArrayElementTypeCheck (L_7, L_8);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(3), (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E*)L_8);
FtpMethodInfoU5BU5D_tED308D4DC0FECB991D43BBF85B5B7345561B267B* L_9 = L_7;
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_10 = (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E*)il2cpp_codegen_object_new(FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E_il2cpp_TypeInfo_var);
NullCheck(L_10);
FtpMethodInfo__ctor_mC171C452F97CFBCC30ADEA3982ECBE6469C4523D(L_10, _stringLiteralC68DC3872E7EB1BBA4CCE5012FCB2352A90E5572, 4, ((int32_t)338), (String_t*)NULL, NULL);
NullCheck(L_9);
ArrayElementTypeCheck (L_9, L_10);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(4), (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E*)L_10);
FtpMethodInfoU5BU5D_tED308D4DC0FECB991D43BBF85B5B7345561B267B* L_11 = L_9;
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_12 = (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E*)il2cpp_codegen_object_new(FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E_il2cpp_TypeInfo_var);
NullCheck(L_12);
FtpMethodInfo__ctor_mC171C452F97CFBCC30ADEA3982ECBE6469C4523D(L_12, _stringLiteral65C1D59289B5966ECA441384A680097DC790EC62, 5, 6, (String_t*)NULL, NULL);
NullCheck(L_11);
ArrayElementTypeCheck (L_11, L_12);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(5), (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E*)L_12);
FtpMethodInfoU5BU5D_tED308D4DC0FECB991D43BBF85B5B7345561B267B* L_13 = L_11;
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_14 = (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E*)il2cpp_codegen_object_new(FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E_il2cpp_TypeInfo_var);
NullCheck(L_14);
FtpMethodInfo__ctor_mC171C452F97CFBCC30ADEA3982ECBE6469C4523D(L_14, _stringLiteral86EB59FCEC37C8229DD2F3BB2A9EBA2F48812A6A, 6, 4, (String_t*)NULL, NULL);
NullCheck(L_13);
ArrayElementTypeCheck (L_13, L_14);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(6), (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E*)L_14);
FtpMethodInfoU5BU5D_tED308D4DC0FECB991D43BBF85B5B7345561B267B* L_15 = L_13;
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_16 = (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E*)il2cpp_codegen_object_new(FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E_il2cpp_TypeInfo_var);
NullCheck(L_16);
FtpMethodInfo__ctor_mC171C452F97CFBCC30ADEA3982ECBE6469C4523D(L_16, _stringLiteral4804D4A94A508275B12EF1A6D5615949E9E336E1, 7, 4, (String_t*)NULL, NULL);
NullCheck(L_15);
ArrayElementTypeCheck (L_15, L_16);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(7), (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E*)L_16);
FtpMethodInfoU5BU5D_tED308D4DC0FECB991D43BBF85B5B7345561B267B* L_17 = L_15;
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_18 = (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E*)il2cpp_codegen_object_new(FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E_il2cpp_TypeInfo_var);
NullCheck(L_18);
FtpMethodInfo__ctor_mC171C452F97CFBCC30ADEA3982ECBE6469C4523D(L_18, _stringLiteralAAFC71E95E05872CC9F35C4F43F28F1413C8E894, 8, 4, (String_t*)NULL, NULL);
NullCheck(L_17);
ArrayElementTypeCheck (L_17, L_18);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(8), (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E*)L_18);
FtpMethodInfoU5BU5D_tED308D4DC0FECB991D43BBF85B5B7345561B267B* L_19 = L_17;
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_20 = (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E*)il2cpp_codegen_object_new(FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E_il2cpp_TypeInfo_var);
NullCheck(L_20);
FtpMethodInfo__ctor_mC171C452F97CFBCC30ADEA3982ECBE6469C4523D(L_20, _stringLiteralB80519B73D335C4C43628C2D134643395ECC9577, ((int32_t)9), 4, (String_t*)NULL, NULL);
NullCheck(L_19);
ArrayElementTypeCheck (L_19, L_20);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)9)), (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E*)L_20);
FtpMethodInfoU5BU5D_tED308D4DC0FECB991D43BBF85B5B7345561B267B* L_21 = L_19;
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_22 = (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E*)il2cpp_codegen_object_new(FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E_il2cpp_TypeInfo_var);
NullCheck(L_22);
FtpMethodInfo__ctor_mC171C452F97CFBCC30ADEA3982ECBE6469C4523D(L_22, _stringLiteral3CF09EA528F2B59A7130F83612C8F6DC4419E135, ((int32_t)10), ((int32_t)36), (String_t*)NULL, NULL);
NullCheck(L_21);
ArrayElementTypeCheck (L_21, L_22);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)10)), (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E*)L_22);
FtpMethodInfoU5BU5D_tED308D4DC0FECB991D43BBF85B5B7345561B267B* L_23 = L_21;
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_24 = (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E*)il2cpp_codegen_object_new(FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E_il2cpp_TypeInfo_var);
NullCheck(L_24);
FtpMethodInfo__ctor_mC171C452F97CFBCC30ADEA3982ECBE6469C4523D(L_24, _stringLiteralD4E42EF2513EC8A2FD0A32ECA2B740EDC1D77361, ((int32_t)11), ((int32_t)36), (String_t*)NULL, NULL);
NullCheck(L_23);
ArrayElementTypeCheck (L_23, L_24);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)11)), (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E*)L_24);
FtpMethodInfoU5BU5D_tED308D4DC0FECB991D43BBF85B5B7345561B267B* L_25 = L_23;
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_26 = (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E*)il2cpp_codegen_object_new(FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E_il2cpp_TypeInfo_var);
NullCheck(L_26);
FtpMethodInfo__ctor_mC171C452F97CFBCC30ADEA3982ECBE6469C4523D(L_26, _stringLiteral04045BCBA2BF67D6C1FB792E497557BDF7F450B1, ((int32_t)12), ((int32_t)16), (String_t*)NULL, NULL);
NullCheck(L_25);
ArrayElementTypeCheck (L_25, L_26);
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)12)), (FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E*)L_26);
((FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E_StaticFields*)il2cpp_codegen_static_fields_for(FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E_il2cpp_TypeInfo_var))->___s_knownMethodInfo_4 = L_25;
Il2CppCodeGenWriteBarrier((void**)(&((FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E_StaticFields*)il2cpp_codegen_static_fields_for(FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E_il2cpp_TypeInfo_var))->___s_knownMethodInfo_4), (void*)L_25);
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.FtpMethodInfo System.Net.FtpWebRequest::get_MethodInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* FtpWebRequest_get_MethodInfo_m1916AEF829D24CCE147215A4CC8B5D12E35370EB (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method)
{
{
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_0 = __this->____methodInfo_15;
return L_0;
}
}
// System.String System.Net.FtpWebRequest::get_Method()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* FtpWebRequest_get_Method_m76600B77DC79C16B5ED7E4E8A8D8998B82FBD506 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method)
{
{
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_0 = __this->____methodInfo_15;
NullCheck(L_0);
String_t* L_1 = L_0->___Method_0;
return L_1;
}
}
// System.Void System.Net.FtpWebRequest::set_Method(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebRequest_set_Method_mC770F8F66E7CEE6C513DDE38D97D50CC7E5C0560 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
String_t* L_0 = ___value0;
bool L_1;
L_1 = String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A(L_0, NULL);
if (!L_1)
{
goto IL_0018;
}
}
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA6FA6333C381255498D0C48C380EBB0ADA6466A3)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpWebRequest_set_Method_mC770F8F66E7CEE6C513DDE38D97D50CC7E5C0560_RuntimeMethod_var)));
}
IL_0018:
{
bool L_3;
L_3 = FtpWebRequest_get_InUse_mBBB7CD6328BBE78BEB1E032E2D5A0708BF9BE208(__this, NULL);
if (!L_3)
{
goto IL_002b;
}
}
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_4 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_4);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0EF29B2C7D325AC477F82D9ACC3AF99C88146FE9)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpWebRequest_set_Method_mC770F8F66E7CEE6C513DDE38D97D50CC7E5C0560_RuntimeMethod_var)));
}
IL_002b:
{
}
try
{// begin try (depth: 1)
String_t* L_5 = ___value0;
il2cpp_codegen_runtime_class_init_inline(FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E_il2cpp_TypeInfo_var);
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_6;
L_6 = FtpMethodInfo_GetMethodInfo_mE5CB9773AE2ECF74C9C39DCCB562B616767BE39B(L_5, NULL);
__this->____methodInfo_15 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->____methodInfo_15), (void*)L_6);
goto IL_004b;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_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.ArgumentException)
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_7 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_7);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAFA58366D18B83459A7329A0ADE678FD54489434)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpWebRequest_set_Method_mC770F8F66E7CEE6C513DDE38D97D50CC7E5C0560_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_004b:
{
return;
}
}
// System.String System.Net.FtpWebRequest::get_RenameTo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* FtpWebRequest_get_RenameTo_m582E665F04E3524E6E4F872D30E4DD30955760E5 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->____renameTo_16;
return L_0;
}
}
// System.Net.ICredentials System.Net.FtpWebRequest::get_Credentials()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* FtpWebRequest_get_Credentials_mD7E41D3F3E9D53C87C8FBC639554C134E834B5DA (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->____authInfo_13;
return L_0;
}
}
// System.Void System.Net.FtpWebRequest::set_Credentials(System.Net.ICredentials)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebRequest_set_Credentials_m6BD777D7820D5BBA97E49B2A480420AF2DD79B9A (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
bool L_0;
L_0 = FtpWebRequest_get_InUse_mBBB7CD6328BBE78BEB1E032E2D5A0708BF9BE208(__this, NULL);
if (!L_0)
{
goto IL_0013;
}
}
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_1);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0EF29B2C7D325AC477F82D9ACC3AF99C88146FE9)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpWebRequest_set_Credentials_m6BD777D7820D5BBA97E49B2A480420AF2DD79B9A_RuntimeMethod_var)));
}
IL_0013:
{
RuntimeObject* L_2 = ___value0;
if (L_2)
{
goto IL_0021;
}
}
{
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_3 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_3);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpWebRequest_set_Credentials_m6BD777D7820D5BBA97E49B2A480420AF2DD79B9A_RuntimeMethod_var)));
}
IL_0021:
{
RuntimeObject* L_4 = ___value0;
NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* L_5;
L_5 = CredentialCache_get_DefaultNetworkCredentials_m5C67A21E1BD70EE41FA927D7603622FBA7F10BA6_inline(NULL);
if ((!(((RuntimeObject*)(RuntimeObject*)L_4) == ((RuntimeObject*)(NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313*)L_5))))
{
goto IL_0039;
}
}
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_6 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_6);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral376279D3A1357B88D8CAD8BAD1C4F384B5380B3B)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpWebRequest_set_Credentials_m6BD777D7820D5BBA97E49B2A480420AF2DD79B9A_RuntimeMethod_var)));
}
IL_0039:
{
RuntimeObject* L_7 = ___value0;
__this->____authInfo_13 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&__this->____authInfo_13), (void*)L_7);
return;
}
}
// System.Uri System.Net.FtpWebRequest::get_RequestUri()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* FtpWebRequest_get_RequestUri_mE435FBA45447DC0D5826C9128DCD99474CE12D0D (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method)
{
{
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_0 = __this->____uri_14;
return L_0;
}
}
// System.Int32 System.Net.FtpWebRequest::get_Timeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FtpWebRequest_get_Timeout_m58C5D209E4958C3F49DEA797966FBE802BE33010 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____timeout_20;
return L_0;
}
}
// System.Int32 System.Net.FtpWebRequest::get_RemainingTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FtpWebRequest_get_RemainingTimeout_m22F8B622745C3B79728C7378C623523DB932FB0D (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____remainingTimeout_21;
return L_0;
}
}
// System.Int32 System.Net.FtpWebRequest::get_ReadWriteTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FtpWebRequest_get_ReadWriteTimeout_mB6F0DF85418ED4107E9AA448C46B289C3C36CECF (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____readWriteTimeout_40;
return L_0;
}
}
// System.Int64 System.Net.FtpWebRequest::get_ContentOffset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t FtpWebRequest_get_ContentOffset_mA4ECBD88A0B0834C16BF00D976B20AF95D87701B (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method)
{
{
int64_t L_0 = __this->____contentOffset_23;
return L_0;
}
}
// System.Int64 System.Net.FtpWebRequest::get_ContentLength()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t FtpWebRequest_get_ContentLength_mAF7452EC5E6497F2E093A56BE157B27EF30AA052 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method)
{
{
int64_t L_0 = __this->____contentLength_22;
return L_0;
}
}
// System.Net.IWebProxy System.Net.FtpWebRequest::get_Proxy()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* FtpWebRequest_get_Proxy_m58F2BDAB196B855C65E59D432B5C0760C0E0AF21 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method)
{
{
return (RuntimeObject*)NULL;
}
}
// System.Void System.Net.FtpWebRequest::set_Proxy(System.Net.IWebProxy)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebRequest_set_Proxy_mA142CDA01AA7953FF40A1448B98BFF8845D973BF (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
bool L_0;
L_0 = FtpWebRequest_get_InUse_mBBB7CD6328BBE78BEB1E032E2D5A0708BF9BE208(__this, NULL);
if (!L_0)
{
goto IL_0013;
}
}
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_1);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0EF29B2C7D325AC477F82D9ACC3AF99C88146FE9)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpWebRequest_set_Proxy_mA142CDA01AA7953FF40A1448B98BFF8845D973BF_RuntimeMethod_var)));
}
IL_0013:
{
return;
}
}
// System.Boolean System.Net.FtpWebRequest::get_Aborted()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FtpWebRequest_get_Aborted_mD54BB6D8935C6139F80371D631FA815961BAEA1D (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->____aborted_28;
return L_0;
}
}
// System.Void System.Net.FtpWebRequest::.ctor(System.Uri)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebRequest__ctor_mE322968A58EF47DADD907F88EAA7FB4E00543B77 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___uri0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FtpWebRequest_TimerCallback_m4E2E74539A7C5060AEC4AC31826EE40F956FF8F4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2264BCDAE97447CBA2BF489CDD8241719D321D83);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral31514D8FFE6EBD8A160985B5C25BE0F2A7BEF863);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
s_Il2CppMethodInitialized = true;
}
NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* V_0 = NULL;
String_t* V_1 = NULL;
String_t* V_2 = NULL;
String_t* V_3 = NULL;
int32_t V_4 = 0;
{
__this->____timeout_20 = ((int32_t)100000);
__this->____passive_25 = (bool)1;
__this->____binary_26 = (bool)1;
il2cpp_codegen_runtime_class_init_inline(FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9_il2cpp_TypeInfo_var);
Queue_t644DC21212BC432819522EDA395EB4562BE2CC47* L_0 = ((FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9_StaticFields*)il2cpp_codegen_static_fields_for(FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9_il2cpp_TypeInfo_var))->___s_DefaultTimerQueue_45;
__this->____timerQueue_31 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____timerQueue_31), (void*)L_0);
__this->____readWriteTimeout_40 = ((int32_t)300000);
il2cpp_codegen_runtime_class_init_inline(WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var);
WebRequest__ctor_m8A7037980E4A7E78EEF420F0C38A36C10DE3D642(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
bool L_1;
L_1 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_1)
{
goto IL_0048;
}
}
{
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_2 = ___uri0;
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Info_m550D5CB6271122B96B82DD45D65FCB037532E5E8(__this, L_2, _stringLiteral31514D8FFE6EBD8A160985B5C25BE0F2A7BEF863, NULL);
}
IL_0048:
{
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_3 = ___uri0;
NullCheck(L_3);
String_t* L_4;
L_4 = Uri_get_Scheme_m29106D5109538220B22FC49DE7B44040E51B0F6F(L_3, NULL);
il2cpp_codegen_runtime_class_init_inline(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
String_t* L_5 = ((Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var))->___UriSchemeFtp_1;
if ((((RuntimeObject*)(String_t*)L_4) == ((RuntimeObject*)(String_t*)L_5)))
{
goto IL_0060;
}
}
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_6 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_6);
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral10C63C8C602DD5E38BE4A758C90EBAC324CD3E69)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpWebRequest__ctor_mE322968A58EF47DADD907F88EAA7FB4E00543B77_RuntimeMethod_var)));
}
IL_0060:
{
Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835* L_7 = (Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835*)il2cpp_codegen_object_new(Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835_il2cpp_TypeInfo_var);
NullCheck(L_7);
Callback__ctor_mE36A85A258851A46EE477BBE1E87B5751C3CC9A9(L_7, __this, (intptr_t)((void*)FtpWebRequest_TimerCallback_m4E2E74539A7C5060AEC4AC31826EE40F956FF8F4_RuntimeMethod_var), NULL);
__this->____timerCallback_32 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&__this->____timerCallback_32), (void*)L_7);
RuntimeObject* L_8 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
NullCheck(L_8);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_8, NULL);
__this->____syncObject_12 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->____syncObject_12), (void*)L_8);
V_0 = (NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313*)NULL;
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_9 = ___uri0;
__this->____uri_14 = L_9;
Il2CppCodeGenWriteBarrier((void**)(&__this->____uri_14), (void*)L_9);
il2cpp_codegen_runtime_class_init_inline(FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E_il2cpp_TypeInfo_var);
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_10;
L_10 = FtpMethodInfo_GetMethodInfo_mE5CB9773AE2ECF74C9C39DCCB562B616767BE39B(_stringLiteral2264BCDAE97447CBA2BF489CDD8241719D321D83, NULL);
__this->____methodInfo_15 = L_10;
Il2CppCodeGenWriteBarrier((void**)(&__this->____methodInfo_15), (void*)L_10);
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_11 = __this->____uri_14;
NullCheck(L_11);
String_t* L_12;
L_12 = Uri_get_UserInfo_mC0189C851F71ACF0B48A462E74C7F3EB86501C8D(L_11, NULL);
if (!L_12)
{
goto IL_010c;
}
}
{
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_13 = __this->____uri_14;
NullCheck(L_13);
String_t* L_14;
L_14 = Uri_get_UserInfo_mC0189C851F71ACF0B48A462E74C7F3EB86501C8D(L_13, NULL);
NullCheck(L_14);
int32_t L_15;
L_15 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_14, NULL);
if (!L_15)
{
goto IL_010c;
}
}
{
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_16 = __this->____uri_14;
NullCheck(L_16);
String_t* L_17;
L_17 = Uri_get_UserInfo_mC0189C851F71ACF0B48A462E74C7F3EB86501C8D(L_16, NULL);
V_1 = L_17;
String_t* L_18 = V_1;
V_2 = L_18;
V_3 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
String_t* L_19 = V_1;
NullCheck(L_19);
int32_t L_20;
L_20 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_19, ((int32_t)58), NULL);
V_4 = L_20;
int32_t L_21 = V_4;
if ((((int32_t)L_21) == ((int32_t)(-1))))
{
goto IL_0104;
}
}
{
String_t* L_22 = V_1;
int32_t L_23 = V_4;
NullCheck(L_22);
String_t* L_24;
L_24 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_22, 0, L_23, NULL);
il2cpp_codegen_runtime_class_init_inline(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
String_t* L_25;
L_25 = Uri_UnescapeDataString_mD0A4732F7ED9CA5DB9E46D802971B5406094CC77(L_24, NULL);
V_2 = L_25;
int32_t L_26 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add(L_26, 1));
String_t* L_27 = V_1;
int32_t L_28 = V_4;
String_t* L_29 = V_1;
NullCheck(L_29);
int32_t L_30;
L_30 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_29, NULL);
int32_t L_31 = V_4;
NullCheck(L_27);
String_t* L_32;
L_32 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_27, L_28, ((int32_t)il2cpp_codegen_subtract(L_30, L_31)), NULL);
String_t* L_33;
L_33 = Uri_UnescapeDataString_mD0A4732F7ED9CA5DB9E46D802971B5406094CC77(L_32, NULL);
V_3 = L_33;
}
IL_0104:
{
String_t* L_34 = V_2;
String_t* L_35 = V_3;
NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* L_36 = (NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313*)il2cpp_codegen_object_new(NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313_il2cpp_TypeInfo_var);
NullCheck(L_36);
NetworkCredential__ctor_mE50C6F50A386C1116DDEC3F21BD7A2894BDC902C(L_36, L_34, L_35, NULL);
V_0 = L_36;
}
IL_010c:
{
NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* L_37 = V_0;
if (L_37)
{
goto IL_0115;
}
}
{
il2cpp_codegen_runtime_class_init_inline(FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9_il2cpp_TypeInfo_var);
NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* L_38 = ((FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9_StaticFields*)il2cpp_codegen_static_fields_for(FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9_il2cpp_TypeInfo_var))->___s_defaultFtpNetworkCredential_44;
V_0 = L_38;
}
IL_0115:
{
NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* L_39 = V_0;
__this->____authInfo_13 = L_39;
Il2CppCodeGenWriteBarrier((void**)(&__this->____authInfo_13), (void*)L_39);
return;
}
}
// System.Net.WebResponse System.Net.FtpWebRequest::GetResponse()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* FtpWebRequest_GetResponse_m2E40BD4F0CCC5D9B8B6D5C20509CE9AC5EE2FFFA (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral694377C0677C61D486C4B5E6D1EC89FC94F03DA2);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6B132E8CB6DC038EF010802D53A03049F6EAE19A);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* V_1 = NULL;
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_2;
memset((&V_2), 0, sizeof(V_2));
RuntimeObject* V_3 = NULL;
bool V_4 = false;
Exception_t* V_5 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
bool L_0;
L_0 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_0)
{
goto IL_004a;
}
}
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
bool L_1;
L_1 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_1)
{
goto IL_001a;
}
}
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Enter_m5EF1ED6D39F9FF936F537BE4C4E293583E8A0494(__this, (FormattableString_t4D7D221057108596F60CCCC83532037E2399BE0D*)NULL, _stringLiteral6B132E8CB6DC038EF010802D53A03049F6EAE19A, NULL);
}
IL_001a:
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
bool L_2;
L_2 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_2)
{
goto IL_004a;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = L_3;
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_5 = __this->____methodInfo_15;
NullCheck(L_5);
String_t* L_6 = L_5->___Method_0;
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_6);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_6);
FormattableString_t4D7D221057108596F60CCCC83532037E2399BE0D* L_7;
L_7 = FormattableStringFactory_Create_mE112258142E627356203C9E0437E7CE21357A406(_stringLiteral694377C0677C61D486C4B5E6D1EC89FC94F03DA2, L_4, NULL);
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Info_m0BE7F613FC95552DCCAB55C55B0396C13D2DB513(__this, L_7, _stringLiteral6B132E8CB6DC038EF010802D53A03049F6EAE19A, NULL);
}
IL_004a:
{
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_01b2:
{// begin finally (depth: 1)
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
bool L_8;
L_8 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_8)
{
goto IL_01ca;
}
}
{
FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* L_9 = __this->____ftpWebResponse_39;
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Exit_m7AD7FF4004F7F0249F639B1087B11C15A526CF10(__this, L_9, _stringLiteral6B132E8CB6DC038EF010802D53A03049F6EAE19A, NULL);
}
IL_01ca:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
try
{// begin try (depth: 2)
{
FtpWebRequest_CheckError_m0161167F168C34FC6CB654FD038950680B4EB204(__this, NULL);
FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* L_10 = __this->____ftpWebResponse_39;
if (!L_10)
{
goto IL_0065_2;
}
}
{
FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* L_11 = __this->____ftpWebResponse_39;
V_1 = L_11;
goto IL_01d2;
}
IL_0065_2:
{
bool L_12 = __this->____getResponseStarted_18;
if (!L_12)
{
goto IL_0078_2;
}
}
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_13 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_13);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_13, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAFCA66D5D5878810A8CD2E0D26A5C5C39E21C7FE)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpWebRequest_GetResponse_m2E40BD4F0CCC5D9B8B6D5C20509CE9AC5EE2FFFA_RuntimeMethod_var)));
}
IL_0078_2:
{
__this->____getResponseStarted_18 = (bool)1;
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_14;
L_14 = DateTime_get_UtcNow_m5D776FFEBC81592B361E4C7AF373297C5DFB46FD(NULL);
__this->____startTime_19 = L_14;
int32_t L_15;
L_15 = VirtualFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Net.WebRequest::get_Timeout() */, __this);
__this->____remainingTimeout_21 = L_15;
int32_t L_16;
L_16 = VirtualFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Net.WebRequest::get_Timeout() */, __this);
if ((((int32_t)L_16) == ((int32_t)(-1))))
{
goto IL_00d4_2;
}
}
{
int32_t L_17;
L_17 = VirtualFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Net.WebRequest::get_Timeout() */, __this);
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_18;
L_18 = DateTime_get_UtcNow_m5D776FFEBC81592B361E4C7AF373297C5DFB46FD(NULL);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_19 = __this->____startTime_19;
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_20;
L_20 = DateTime_op_Subtraction_m41335EF0E6DCD52B23C64916CB973A0B4A9E0387(L_18, L_19, NULL);
V_2 = L_20;
double L_21;
L_21 = TimeSpan_get_TotalMilliseconds_m3506C1A49F1FE37A82F3027EA061D18215EF87CF((&V_2), NULL);
__this->____remainingTimeout_21 = ((int32_t)il2cpp_codegen_subtract(L_17, il2cpp_codegen_cast_double_to_int<int32_t>(L_21)));
int32_t L_22 = __this->____remainingTimeout_21;
if ((((int32_t)L_22) > ((int32_t)0)))
{
goto IL_00d4_2;
}
}
{
WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* L_23;
L_23 = ExceptionHelper_get_TimeoutException_m952E47F158CFD9B5B3D42F89B032E0ED69C1CFCB(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_23, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpWebRequest_GetResponse_m2E40BD4F0CCC5D9B8B6D5C20509CE9AC5EE2FFFA_RuntimeMethod_var)));
}
IL_00d4_2:
{
int32_t L_24;
L_24 = FtpWebRequest_FinishRequestStage_m46BBC97BEC097B3E0898D53A60463393BBC961FA(__this, 1, NULL);
V_0 = L_24;
int32_t L_25 = V_0;
if ((((int32_t)L_25) < ((int32_t)1)))
{
goto IL_0139_2;
}
}
{
int32_t L_26 = V_0;
if ((((int32_t)L_26) >= ((int32_t)3)))
{
goto IL_016c_2;
}
}
{
RuntimeObject* L_27 = __this->____syncObject_12;
V_3 = L_27;
V_4 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0112_2:
{// begin finally (depth: 3)
{
bool L_28 = V_4;
if (!L_28)
{
goto IL_011c_2;
}
}
{
RuntimeObject* L_29 = V_3;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_29, NULL);
}
IL_011c_2:
{
return;
}
}// end finally (depth: 3)
});
try
{// begin try (depth: 3)
{
RuntimeObject* L_30 = V_3;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_30, (&V_4), NULL);
int32_t L_31 = __this->____requestStage_36;
if ((((int32_t)L_31) >= ((int32_t)3)))
{
goto IL_0110_3;
}
}
{
LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* L_32 = (LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B*)il2cpp_codegen_object_new(LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B_il2cpp_TypeInfo_var);
NullCheck(L_32);
LazyAsyncResult__ctor_m62BAF64A732506AD7544741700A0333B22CADE2F(L_32, NULL, NULL, (AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C*)NULL, NULL);
__this->____readAsyncResult_42 = L_32;
Il2CppCodeGenWriteBarrier((void**)(&__this->____readAsyncResult_42), (void*)L_32);
}
IL_0110_3:
{
goto IL_011d_2;
}
}// end try (depth: 3)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_011d_2:
{
LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* L_33 = __this->____readAsyncResult_42;
if (!L_33)
{
goto IL_0131_2;
}
}
{
LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* L_34 = __this->____readAsyncResult_42;
NullCheck(L_34);
RuntimeObject* L_35;
L_35 = LazyAsyncResult_InternalWaitForCompletion_mE52E38E8478ACA2C9344716035CCC46E5CA32A59(L_34, NULL);
}
IL_0131_2:
{
FtpWebRequest_CheckError_m0161167F168C34FC6CB654FD038950680B4EB204(__this, NULL);
goto IL_016c_2;
}
IL_0139_2:
{
FtpWebRequest_SubmitRequest_mD0DDB9A82DCD6D83C0BD14771B8C3DCB59436B1C(__this, (bool)0, NULL);
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_36 = __this->____methodInfo_15;
NullCheck(L_36);
bool L_37;
L_37 = FtpMethodInfo_get_IsUpload_m34E090D800423923B895D914383F63EF51019CEC(L_36, NULL);
if (!L_37)
{
goto IL_0157_2;
}
}
{
int32_t L_38;
L_38 = FtpWebRequest_FinishRequestStage_m46BBC97BEC097B3E0898D53A60463393BBC961FA(__this, 2, NULL);
goto IL_015f_2;
}
IL_0157_2:
{
int32_t L_39;
L_39 = FtpWebRequest_FinishRequestStage_m46BBC97BEC097B3E0898D53A60463393BBC961FA(__this, 3, NULL);
}
IL_015f_2:
{
FtpWebRequest_CheckError_m0161167F168C34FC6CB654FD038950680B4EB204(__this, NULL);
FtpWebRequest_EnsureFtpWebResponse_mB605C3DDD57BE29978FDA23340B5D280DD6FBAD9(__this, (Exception_t*)NULL, NULL);
}
IL_016c_2:
{
goto IL_01cb;
}
}// end try (depth: 2)
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_016e_1;
}
throw e;
}
CATCH_016e_1:
{// begin catch(System.Exception)
{
V_5 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var)));
bool L_40;
L_40 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_40)
{
goto IL_0184_1;
}
}
{
Exception_t* L_41 = V_5;
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var)));
NetEventSource_Error_mD371BE6D7A90C126AA0E7C839979F4439C9E22AD(__this, L_41, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6B132E8CB6DC038EF010802D53A03049F6EAE19A)), NULL);
}
IL_0184_1:
{
Exception_t* L_42 = __this->____exception_30;
if (L_42)
{
goto IL_01b0_1;
}
}
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var)));
bool L_43;
L_43 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_43)
{
goto IL_01a0_1;
}
}
{
Exception_t* L_44 = V_5;
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var)));
NetEventSource_Error_mD371BE6D7A90C126AA0E7C839979F4439C9E22AD(__this, L_44, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6B132E8CB6DC038EF010802D53A03049F6EAE19A)), NULL);
}
IL_01a0_1:
{
Exception_t* L_45 = V_5;
FtpWebRequest_SetException_m273ED89B507A23F8C9B7F9B752EC32CAD27E59A8(__this, L_45, NULL);
int32_t L_46;
L_46 = FtpWebRequest_FinishRequestStage_m46BBC97BEC097B3E0898D53A60463393BBC961FA(__this, 0, NULL);
}
IL_01b0_1:
{
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpWebRequest_GetResponse_m2E40BD4F0CCC5D9B8B6D5C20509CE9AC5EE2FFFA_RuntimeMethod_var)));
}
}// end catch (depth: 2)
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_01cb:
{
FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* L_47 = __this->____ftpWebResponse_39;
return L_47;
}
IL_01d2:
{
WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* L_48 = V_1;
return L_48;
}
}
// System.IAsyncResult System.Net.FtpWebRequest::BeginGetResponse(System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* FtpWebRequest_BeginGetResponse_mEB30D254D530BA29140C679AA1BDE6F8D472DEBF (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___callback0, RuntimeObject* ___state1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextAwareResult_t3CCEE7D0B6510492A4EE1A2F828BDDF012ADBFDA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5E31512678863221EE7E201CC4738E79F8A04D42);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral694377C0677C61D486C4B5E6D1EC89FC94F03DA2);
s_Il2CppMethodInitialized = true;
}
ContextAwareResult_t3CCEE7D0B6510492A4EE1A2F828BDDF012ADBFDA* V_0 = NULL;
int32_t V_1 = 0;
RuntimeObject* V_2 = NULL;
RuntimeObject* V_3 = NULL;
bool V_4 = false;
Exception_t* V_5 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
bool L_0;
L_0 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_0)
{
goto IL_003c;
}
}
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Enter_m5EF1ED6D39F9FF936F537BE4C4E293583E8A0494(__this, (FormattableString_t4D7D221057108596F60CCCC83532037E2399BE0D*)NULL, _stringLiteral5E31512678863221EE7E201CC4738E79F8A04D42, NULL);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = L_1;
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_3 = __this->____methodInfo_15;
NullCheck(L_3);
String_t* L_4 = L_3->___Method_0;
NullCheck(L_2);
ArrayElementTypeCheck (L_2, L_4);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_4);
FormattableString_t4D7D221057108596F60CCCC83532037E2399BE0D* L_5;
L_5 = FormattableStringFactory_Create_mE112258142E627356203C9E0437E7CE21357A406(_stringLiteral694377C0677C61D486C4B5E6D1EC89FC94F03DA2, L_2, NULL);
NetEventSource_Info_m0BE7F613FC95552DCCAB55C55B0396C13D2DB513(__this, L_5, _stringLiteral5E31512678863221EE7E201CC4738E79F8A04D42, NULL);
}
IL_003c:
{
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_014d:
{// begin finally (depth: 1)
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
bool L_6;
L_6 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_6)
{
goto IL_0160;
}
}
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Exit_m407F70ED0A9E9B586AB9FF87B9C15229468C9D36(__this, (FormattableString_t4D7D221057108596F60CCCC83532037E2399BE0D*)NULL, _stringLiteral5E31512678863221EE7E201CC4738E79F8A04D42, NULL);
}
IL_0160:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
try
{// begin try (depth: 2)
{
FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* L_7 = __this->____ftpWebResponse_39;
if (!L_7)
{
goto IL_0061_2;
}
}
{
RuntimeObject* L_8 = ___state1;
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* L_9 = ___callback0;
ContextAwareResult_t3CCEE7D0B6510492A4EE1A2F828BDDF012ADBFDA* L_10 = (ContextAwareResult_t3CCEE7D0B6510492A4EE1A2F828BDDF012ADBFDA*)il2cpp_codegen_object_new(ContextAwareResult_t3CCEE7D0B6510492A4EE1A2F828BDDF012ADBFDA_il2cpp_TypeInfo_var);
NullCheck(L_10);
ContextAwareResult__ctor_m708591C2F982BAA23EC1D7A0A325F9452D1C6BB1(L_10, __this, L_8, L_9, NULL);
V_0 = L_10;
ContextAwareResult_t3CCEE7D0B6510492A4EE1A2F828BDDF012ADBFDA* L_11 = V_0;
FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* L_12 = __this->____ftpWebResponse_39;
NullCheck(L_11);
LazyAsyncResult_InvokeCallback_m4A1E1A15818F5ED6E6DBAEB48104A06529A11C9A(L_11, L_12, NULL);
ContextAwareResult_t3CCEE7D0B6510492A4EE1A2F828BDDF012ADBFDA* L_13 = V_0;
V_2 = L_13;
goto IL_0163;
}
IL_0061_2:
{
bool L_14 = __this->____getResponseStarted_18;
if (!L_14)
{
goto IL_0074_2;
}
}
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_15 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_15);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_15, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAFCA66D5D5878810A8CD2E0D26A5C5C39E21C7FE)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpWebRequest_BeginGetResponse_mEB30D254D530BA29140C679AA1BDE6F8D472DEBF_RuntimeMethod_var)));
}
IL_0074_2:
{
__this->____getResponseStarted_18 = (bool)1;
FtpWebRequest_CheckError_m0161167F168C34FC6CB654FD038950680B4EB204(__this, NULL);
int32_t L_16;
L_16 = FtpWebRequest_FinishRequestStage_m46BBC97BEC097B3E0898D53A60463393BBC961FA(__this, 1, NULL);
V_1 = L_16;
RuntimeObject* L_17 = ___state1;
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* L_18 = ___callback0;
ContextAwareResult_t3CCEE7D0B6510492A4EE1A2F828BDDF012ADBFDA* L_19 = (ContextAwareResult_t3CCEE7D0B6510492A4EE1A2F828BDDF012ADBFDA*)il2cpp_codegen_object_new(ContextAwareResult_t3CCEE7D0B6510492A4EE1A2F828BDDF012ADBFDA_il2cpp_TypeInfo_var);
NullCheck(L_19);
ContextAwareResult__ctor_m20CB91BD59CFD104B18692B6316D31E6F33E1A42(L_19, (bool)1, (bool)1, __this, L_17, L_18, NULL);
V_0 = L_19;
ContextAwareResult_t3CCEE7D0B6510492A4EE1A2F828BDDF012ADBFDA* L_20 = V_0;
__this->____readAsyncResult_42 = L_20;
Il2CppCodeGenWriteBarrier((void**)(&__this->____readAsyncResult_42), (void*)L_20);
int32_t L_21 = V_1;
if ((((int32_t)L_21) < ((int32_t)1)))
{
goto IL_00fe_2;
}
}
{
ContextAwareResult_t3CCEE7D0B6510492A4EE1A2F828BDDF012ADBFDA* L_22 = V_0;
NullCheck(L_22);
RuntimeObject* L_23;
L_23 = ContextAwareResult_StartPostingAsyncOp_mD312F7E2A819DA980A35D213519E8A2F72B1AA7F(L_22, NULL);
ContextAwareResult_t3CCEE7D0B6510492A4EE1A2F828BDDF012ADBFDA* L_24 = V_0;
NullCheck(L_24);
bool L_25;
L_25 = ContextAwareResult_FinishPostingAsyncOp_mF7316900AFD1FF971CF886849C6CF22417C65935(L_24, NULL);
int32_t L_26 = V_1;
if ((((int32_t)L_26) < ((int32_t)3)))
{
goto IL_00b5_2;
}
}
{
V_0 = (ContextAwareResult_t3CCEE7D0B6510492A4EE1A2F828BDDF012ADBFDA*)NULL;
goto IL_00df_2;
}
IL_00b5_2:
{
RuntimeObject* L_27 = __this->____syncObject_12;
V_3 = L_27;
V_4 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00d4_2:
{// begin finally (depth: 3)
{
bool L_28 = V_4;
if (!L_28)
{
goto IL_00de_2;
}
}
{
RuntimeObject* L_29 = V_3;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_29, NULL);
}
IL_00de_2:
{
return;
}
}// end finally (depth: 3)
});
try
{// begin try (depth: 3)
{
RuntimeObject* L_30 = V_3;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_30, (&V_4), NULL);
int32_t L_31 = __this->____requestStage_36;
if ((((int32_t)L_31) < ((int32_t)3)))
{
goto IL_00d2_3;
}
}
{
V_0 = (ContextAwareResult_t3CCEE7D0B6510492A4EE1A2F828BDDF012ADBFDA*)NULL;
}
IL_00d2_3:
{
goto IL_00df_2;
}
}// end try (depth: 3)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00df_2:
{
ContextAwareResult_t3CCEE7D0B6510492A4EE1A2F828BDDF012ADBFDA* L_32 = V_0;
if (L_32)
{
goto IL_0133_2;
}
}
{
LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* L_33 = __this->____readAsyncResult_42;
V_0 = ((ContextAwareResult_t3CCEE7D0B6510492A4EE1A2F828BDDF012ADBFDA*)CastclassClass((RuntimeObject*)L_33, ContextAwareResult_t3CCEE7D0B6510492A4EE1A2F828BDDF012ADBFDA_il2cpp_TypeInfo_var));
ContextAwareResult_t3CCEE7D0B6510492A4EE1A2F828BDDF012ADBFDA* L_34 = V_0;
NullCheck(L_34);
bool L_35;
L_35 = LazyAsyncResult_get_InternalPeekCompleted_m4E25420F3F5315AEA52DB59D671C65A3103EF2DE(L_34, NULL);
if (L_35)
{
goto IL_0133_2;
}
}
{
ContextAwareResult_t3CCEE7D0B6510492A4EE1A2F828BDDF012ADBFDA* L_36 = V_0;
NullCheck(L_36);
LazyAsyncResult_InvokeCallback_m1429C8FB483908BC3A0D6C754F2F27554AFE7439(L_36, NULL);
goto IL_0133_2;
}
IL_00fe_2:
{
ContextAwareResult_t3CCEE7D0B6510492A4EE1A2F828BDDF012ADBFDA* L_37 = V_0;
NullCheck(L_37);
RuntimeObject* L_38;
L_38 = ContextAwareResult_StartPostingAsyncOp_mD312F7E2A819DA980A35D213519E8A2F72B1AA7F(L_37, NULL);
V_3 = L_38;
V_4 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0120_2:
{// begin finally (depth: 3)
{
bool L_39 = V_4;
if (!L_39)
{
goto IL_012a_2;
}
}
{
RuntimeObject* L_40 = V_3;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_40, NULL);
}
IL_012a_2:
{
return;
}
}// end finally (depth: 3)
});
try
{// begin try (depth: 3)
RuntimeObject* L_41 = V_3;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_41, (&V_4), NULL);
FtpWebRequest_SubmitRequest_mD0DDB9A82DCD6D83C0BD14771B8C3DCB59436B1C(__this, (bool)1, NULL);
ContextAwareResult_t3CCEE7D0B6510492A4EE1A2F828BDDF012ADBFDA* L_42 = V_0;
NullCheck(L_42);
bool L_43;
L_43 = ContextAwareResult_FinishPostingAsyncOp_mF7316900AFD1FF971CF886849C6CF22417C65935(L_42, NULL);
goto IL_012b_2;
}// end try (depth: 3)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_012b_2:
{
int32_t L_44;
L_44 = FtpWebRequest_FinishRequestStage_m46BBC97BEC097B3E0898D53A60463393BBC961FA(__this, 0, NULL);
}
IL_0133_2:
{
goto IL_0161;
}
}// end try (depth: 2)
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_0135_1;
}
throw e;
}
CATCH_0135_1:
{// begin catch(System.Exception)
{
V_5 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var)));
bool L_45;
L_45 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_45)
{
goto IL_014b_1;
}
}
{
Exception_t* L_46 = V_5;
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var)));
NetEventSource_Error_mD371BE6D7A90C126AA0E7C839979F4439C9E22AD(__this, L_46, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5E31512678863221EE7E201CC4738E79F8A04D42)), NULL);
}
IL_014b_1:
{
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpWebRequest_BeginGetResponse_mEB30D254D530BA29140C679AA1BDE6F8D472DEBF_RuntimeMethod_var)));
}
}// end catch (depth: 2)
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0161:
{
ContextAwareResult_t3CCEE7D0B6510492A4EE1A2F828BDDF012ADBFDA* L_47 = V_0;
return L_47;
}
IL_0163:
{
RuntimeObject* L_48 = V_2;
return L_48;
}
}
// System.Net.WebResponse System.Net.FtpWebRequest::EndGetResponse(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* FtpWebRequest_EndGetResponse_mB67129902D8A7767D96CCECB5A1B5B25F8C1EBB8 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, RuntimeObject* ___asyncResult0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8DB17B6F8C60D6E80C82057FD4253EAFB6EF36BE);
s_Il2CppMethodInitialized = true;
}
Exception_t* V_0 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* G_B7_0 = NULL;
LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* G_B6_0 = NULL;
LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* G_B9_0 = NULL;
LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* G_B8_0 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
bool L_0;
L_0 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_0)
{
goto IL_0013;
}
}
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Enter_m5EF1ED6D39F9FF936F537BE4C4E293583E8A0494(__this, (FormattableString_t4D7D221057108596F60CCCC83532037E2399BE0D*)NULL, _stringLiteral8DB17B6F8C60D6E80C82057FD4253EAFB6EF36BE, NULL);
}
IL_0013:
{
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0083:
{// begin finally (depth: 1)
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
bool L_1;
L_1 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_1)
{
goto IL_0096;
}
}
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Exit_m407F70ED0A9E9B586AB9FF87B9C15229468C9D36(__this, (FormattableString_t4D7D221057108596F60CCCC83532037E2399BE0D*)NULL, _stringLiteral8DB17B6F8C60D6E80C82057FD4253EAFB6EF36BE, NULL);
}
IL_0096:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
try
{// begin try (depth: 2)
{
RuntimeObject* L_2 = ___asyncResult0;
if (L_2)
{
goto IL_0022_2;
}
}
{
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_3 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_3);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral453A1400C5EBA45D0DD93B54ED1EC6D42377A4B5)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpWebRequest_EndGetResponse_mB67129902D8A7767D96CCECB5A1B5B25F8C1EBB8_RuntimeMethod_var)));
}
IL_0022_2:
{
RuntimeObject* L_4 = ___asyncResult0;
LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* L_5 = ((LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B*)IsInstClass((RuntimeObject*)L_4, LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B_il2cpp_TypeInfo_var));
G_B6_0 = L_5;
if (L_5)
{
G_B7_0 = L_5;
goto IL_003b_2;
}
}
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_6 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_6);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE8919B3EA19F272A32C34A085DDD7865989E28DF)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral453A1400C5EBA45D0DD93B54ED1EC6D42377A4B5)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpWebRequest_EndGetResponse_mB67129902D8A7767D96CCECB5A1B5B25F8C1EBB8_RuntimeMethod_var)));
}
IL_003b_2:
{
LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* L_7 = G_B7_0;
NullCheck(L_7);
bool L_8;
L_8 = LazyAsyncResult_get_EndCalled_mB9C44CD3D27331014867DB4D1957C4E10AB888B8_inline(L_7, NULL);
G_B8_0 = L_7;
if (!L_8)
{
G_B9_0 = L_7;
goto IL_0058_2;
}
}
{
String_t* L_9;
L_9 = SR_Format_mB99C6F1BE061EA1427A45176E0CAFB2A2C76D03F(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD7EDEFBFF1F5CFDDC93B1C9FE3C5FF7823573674)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8DB17B6F8C60D6E80C82057FD4253EAFB6EF36BE)), NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_10 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_10);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_10, L_9, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpWebRequest_EndGetResponse_mB67129902D8A7767D96CCECB5A1B5B25F8C1EBB8_RuntimeMethod_var)));
}
IL_0058_2:
{
LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* L_11 = G_B9_0;
NullCheck(L_11);
RuntimeObject* L_12;
L_12 = LazyAsyncResult_InternalWaitForCompletion_mE52E38E8478ACA2C9344716035CCC46E5CA32A59(L_11, NULL);
NullCheck(L_11);
LazyAsyncResult_set_EndCalled_m90572F07D3130B1B2E9E1AF29B697EF61E8BFECF_inline(L_11, (bool)1, NULL);
FtpWebRequest_CheckError_m0161167F168C34FC6CB654FD038950680B4EB204(__this, NULL);
goto IL_0097;
}
}// end try (depth: 2)
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_006d_1;
}
throw e;
}
CATCH_006d_1:
{// begin catch(System.Exception)
{
V_0 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var)));
bool L_13;
L_13 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_13)
{
goto IL_0081_1;
}
}
{
Exception_t* L_14 = V_0;
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var)));
NetEventSource_Error_mD371BE6D7A90C126AA0E7C839979F4439C9E22AD(__this, L_14, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8DB17B6F8C60D6E80C82057FD4253EAFB6EF36BE)), NULL);
}
IL_0081_1:
{
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpWebRequest_EndGetResponse_mB67129902D8A7767D96CCECB5A1B5B25F8C1EBB8_RuntimeMethod_var)));
}
}// end catch (depth: 2)
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0097:
{
FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* L_15 = __this->____ftpWebResponse_39;
return L_15;
}
}
// System.Void System.Net.FtpWebRequest::SubmitRequest(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebRequest_SubmitRequest_mD0DDB9A82DCD6D83C0BD14771B8C3DCB59436B1C (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, bool ___isAsync0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral016427F0ED7C71BEAF9035FF518905122A45BB4B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0E6EB3120D4E632393E32A4A5DEA7103A2B70E2A);
s_Il2CppMethodInitialized = true;
}
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* V_0 = NULL;
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_1;
memset((&V_1), 0, sizeof(V_1));
Exception_t* V_2 = NULL;
WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* V_3 = NULL;
IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910* V_4 = NULL;
SocketException_t6D10102A62EA871BD31748E026A372DB6804083B* V_5 = NULL;
Exception_t* V_6 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 2> __active_exceptions;
try
{// begin try (depth: 1)
{
bool L_0 = ___isAsync0;
__this->____async_27 = L_0;
}
IL_0007_1:
{
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_1 = __this->____connection_34;
V_0 = L_1;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_2 = V_0;
if (L_2)
{
goto IL_002d_1;
}
}
{
bool L_3 = ___isAsync0;
if (!L_3)
{
goto IL_001f_1;
}
}
{
FtpWebRequest_CreateConnectionAsync_m32CC4FFE6A220E2BDDBFBFD2F5350959A362D023(__this, NULL);
goto IL_0144;
}
IL_001f_1:
{
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_4;
L_4 = FtpWebRequest_CreateConnection_m93965D472DEDD396B49FFEAFACE7F24B3E6E29B9(__this, NULL);
V_0 = L_4;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_5 = V_0;
__this->____connection_34 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&__this->____connection_34), (void*)L_5);
}
IL_002d_1:
{
bool L_6 = ___isAsync0;
if (L_6)
{
goto IL_006e_1;
}
}
{
int32_t L_7;
L_7 = VirtualFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Net.WebRequest::get_Timeout() */, __this);
if ((((int32_t)L_7) == ((int32_t)(-1))))
{
goto IL_006e_1;
}
}
{
int32_t L_8;
L_8 = VirtualFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Net.WebRequest::get_Timeout() */, __this);
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_9;
L_9 = DateTime_get_UtcNow_m5D776FFEBC81592B361E4C7AF373297C5DFB46FD(NULL);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_10 = __this->____startTime_19;
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_11;
L_11 = DateTime_op_Subtraction_m41335EF0E6DCD52B23C64916CB973A0B4A9E0387(L_9, L_10, NULL);
V_1 = L_11;
double L_12;
L_12 = TimeSpan_get_TotalMilliseconds_m3506C1A49F1FE37A82F3027EA061D18215EF87CF((&V_1), NULL);
__this->____remainingTimeout_21 = ((int32_t)il2cpp_codegen_subtract(L_8, il2cpp_codegen_cast_double_to_int<int32_t>(L_12)));
int32_t L_13 = __this->____remainingTimeout_21;
if ((((int32_t)L_13) > ((int32_t)0)))
{
goto IL_006e_1;
}
}
{
WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* L_14;
L_14 = ExceptionHelper_get_TimeoutException_m952E47F158CFD9B5B3D42F89B032E0ED69C1CFCB(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpWebRequest_SubmitRequest_mD0DDB9A82DCD6D83C0BD14771B8C3DCB59436B1C_RuntimeMethod_var)));
}
IL_006e_1:
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
bool L_15;
L_15 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_15)
{
goto IL_0085_1;
}
}
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Info_m550D5CB6271122B96B82DD45D65FCB037532E5E8(__this, _stringLiteral0E6EB3120D4E632393E32A4A5DEA7103A2B70E2A, _stringLiteral016427F0ED7C71BEAF9035FF518905122A45BB4B, NULL);
}
IL_0085_1:
{
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_16 = V_0;
int32_t L_17;
L_17 = FtpWebRequest_get_RemainingTimeout_m22F8B622745C3B79728C7378C623523DB932FB0D_inline(__this, NULL);
NullCheck(L_16);
NetworkStreamWrapper_SetSocketTimeoutOption_mEF49FAF0A48C4B65816D8BF28868B897835419AF(L_16, L_17, NULL);
}
try
{// begin try (depth: 2)
bool L_18 = ___isAsync0;
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_19;
L_19 = FtpWebRequest_TimedSubmitRequestHelper_m1BAC9B293CE60F33C0BE9B556AC516F249526AE5(__this, L_18, NULL);
goto IL_00e9_1;
}// end try (depth: 2)
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_009b_1;
}
throw e;
}
CATCH_009b_1:
{// begin catch(System.Exception)
{
V_2 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
Exception_t* L_20 = V_2;
bool L_21;
L_21 = FtpWebRequest_AttemptedRecovery_m37F888BE32F44DAA4C7974B0B81514E2D5177288(__this, L_20, NULL);
if (!L_21)
{
goto IL_00e7_1;
}
}
{
bool L_22 = ___isAsync0;
if (L_22)
{
goto IL_00e2_1;
}
}
{
int32_t L_23;
L_23 = VirtualFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Net.WebRequest::get_Timeout() */, __this);
if ((((int32_t)L_23) == ((int32_t)(-1))))
{
goto IL_00e2_1;
}
}
{
int32_t L_24;
L_24 = VirtualFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Net.WebRequest::get_Timeout() */, __this);
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var)));
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_25;
L_25 = DateTime_get_UtcNow_m5D776FFEBC81592B361E4C7AF373297C5DFB46FD(NULL);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_26 = __this->____startTime_19;
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_27;
L_27 = DateTime_op_Subtraction_m41335EF0E6DCD52B23C64916CB973A0B4A9E0387(L_25, L_26, NULL);
V_1 = L_27;
double L_28;
L_28 = TimeSpan_get_TotalMilliseconds_m3506C1A49F1FE37A82F3027EA061D18215EF87CF((&V_1), NULL);
__this->____remainingTimeout_21 = ((int32_t)il2cpp_codegen_subtract(L_24, il2cpp_codegen_cast_double_to_int<int32_t>(L_28)));
int32_t L_29 = __this->____remainingTimeout_21;
if ((((int32_t)L_29) > ((int32_t)0)))
{
goto IL_00e2_1;
}
}
{
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpWebRequest_SubmitRequest_mD0DDB9A82DCD6D83C0BD14771B8C3DCB59436B1C_RuntimeMethod_var)));
}
IL_00e2_1:
{
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0007_1;
}
IL_00e7_1:
{
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpWebRequest_SubmitRequest_mD0DDB9A82DCD6D83C0BD14771B8C3DCB59436B1C_RuntimeMethod_var)));
}
}// end catch (depth: 2)
IL_00e9_1:
{
goto IL_0144;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_00eb;
}
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_0138;
}
throw e;
}
CATCH_00eb:
{// begin catch(System.Net.WebException)
{
V_3 = ((WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8*)IL2CPP_GET_ACTIVE_EXCEPTION(WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8*));
WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* L_30 = V_3;
NullCheck(L_30);
Exception_t* L_31;
L_31 = Exception_get_InnerException_m0C1BDB339C786BA4DA7D2C1AD214571CFBBB1410_inline(L_30, NULL);
V_4 = ((IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910*)IsInstClass((RuntimeObject*)L_31, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910_il2cpp_TypeInfo_var))));
IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910* L_32 = V_4;
if (!L_32)
{
goto IL_012f;
}
}
{
IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910* L_33 = V_4;
NullCheck(L_33);
Exception_t* L_34;
L_34 = Exception_get_InnerException_m0C1BDB339C786BA4DA7D2C1AD214571CFBBB1410_inline(L_33, NULL);
V_5 = ((SocketException_t6D10102A62EA871BD31748E026A372DB6804083B*)IsInstClass((RuntimeObject*)L_34, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SocketException_t6D10102A62EA871BD31748E026A372DB6804083B_il2cpp_TypeInfo_var))));
SocketException_t6D10102A62EA871BD31748E026A372DB6804083B* L_35 = V_5;
if (!L_35)
{
goto IL_012f;
}
}
{
SocketException_t6D10102A62EA871BD31748E026A372DB6804083B* L_36 = V_5;
NullCheck(L_36);
int32_t L_37;
L_37 = SocketException_get_SocketErrorCode_m84FB2D308F046A24A1355975F3BF689C988224C6(L_36, NULL);
if ((!(((uint32_t)L_37) == ((uint32_t)((int32_t)10060)))))
{
goto IL_012f;
}
}
{
WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* L_38 = (WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8_il2cpp_TypeInfo_var)));
NullCheck(L_38);
WebException__ctor_m6C829021B5388956F84830FC249915324C1453A1(L_38, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEBF2718390EE473280CB1AC9DB1591547C00DF0E)), ((int32_t)14), NULL);
FtpWebRequest_SetException_m273ED89B507A23F8C9B7F9B752EC32CAD27E59A8(__this, L_38, NULL);
}
IL_012f:
{
WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* L_39 = V_3;
FtpWebRequest_SetException_m273ED89B507A23F8C9B7F9B752EC32CAD27E59A8(__this, L_39, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0144;
}
}// end catch (depth: 1)
CATCH_0138:
{// begin catch(System.Exception)
V_6 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
Exception_t* L_40 = V_6;
FtpWebRequest_SetException_m273ED89B507A23F8C9B7F9B752EC32CAD27E59A8(__this, L_40, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0144;
}// end catch (depth: 1)
IL_0144:
{
return;
}
}
// System.Exception System.Net.FtpWebRequest::TranslateConnectException(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* FtpWebRequest_TranslateConnectException_mAB63B1B7A859BB09EAB69EB0C4429F41221954D7 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, Exception_t* ___e0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SocketException_t6D10102A62EA871BD31748E026A372DB6804083B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral57B97F9882E61671CA606918FB68E9D6344D44E6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB5F906901438009B03906D0B6A2FB2E3369076F3);
s_Il2CppMethodInitialized = true;
}
SocketException_t6D10102A62EA871BD31748E026A372DB6804083B* V_0 = NULL;
{
Exception_t* L_0 = ___e0;
V_0 = ((SocketException_t6D10102A62EA871BD31748E026A372DB6804083B*)IsInstClass((RuntimeObject*)L_0, SocketException_t6D10102A62EA871BD31748E026A372DB6804083B_il2cpp_TypeInfo_var));
SocketException_t6D10102A62EA871BD31748E026A372DB6804083B* L_1 = V_0;
if (!L_1)
{
goto IL_002f;
}
}
{
SocketException_t6D10102A62EA871BD31748E026A372DB6804083B* L_2 = V_0;
NullCheck(L_2);
int32_t L_3;
L_3 = SocketException_get_SocketErrorCode_m84FB2D308F046A24A1355975F3BF689C988224C6(L_2, NULL);
if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)11001)))))
{
goto IL_0023;
}
}
{
WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* L_4 = (WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8*)il2cpp_codegen_object_new(WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8_il2cpp_TypeInfo_var);
NullCheck(L_4);
WebException__ctor_m6C829021B5388956F84830FC249915324C1453A1(L_4, _stringLiteral57B97F9882E61671CA606918FB68E9D6344D44E6, 1, NULL);
return L_4;
}
IL_0023:
{
WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* L_5 = (WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8*)il2cpp_codegen_object_new(WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8_il2cpp_TypeInfo_var);
NullCheck(L_5);
WebException__ctor_m6C829021B5388956F84830FC249915324C1453A1(L_5, _stringLiteralB5F906901438009B03906D0B6A2FB2E3369076F3, 2, NULL);
return L_5;
}
IL_002f:
{
Exception_t* L_6 = ___e0;
return L_6;
}
}
// System.Void System.Net.FtpWebRequest::CreateConnectionAsync()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebRequest_CreateConnectionAsync_m32CC4FFE6A220E2BDDBFBFD2F5350959A362D023 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncVoidMethodBuilder_Start_TisU3CCreateConnectionAsyncU3Ed__86_t2A570F4B60E471D570D3866403BE7034E2929A6E_mB533C8375EAFF32F9CD221842EE38C58C343AC93_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
U3CCreateConnectionAsyncU3Ed__86_t2A570F4B60E471D570D3866403BE7034E2929A6E V_0;
memset((&V_0), 0, sizeof(V_0));
{
(&V_0)->___U3CU3E4__this_2 = __this;
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___U3CU3E4__this_2), (void*)__this);
AsyncVoidMethodBuilder_t253E37B63E7E7B504878AE6563347C147F98EF2D L_0;
L_0 = AsyncVoidMethodBuilder_Create_mE6D291637BF7B4B6D3F8BFCA14920B9200D7A502(NULL);
(&V_0)->___U3CU3Et__builder_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)&(((&(&V_0)->___U3CU3Et__builder_1))->___m_synchronizationContext_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&(&V_0)->___U3CU3Et__builder_1))->___m_coreState_1))->___m_stateMachine_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&(&V_0)->___U3CU3Et__builder_1))->___m_coreState_1))->___m_defaultContextAction_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&(&V_0)->___U3CU3Et__builder_1))->___m_task_2), (void*)NULL);
#endif
(&V_0)->___U3CU3E1__state_0 = (-1);
AsyncVoidMethodBuilder_t253E37B63E7E7B504878AE6563347C147F98EF2D* L_1 = (&(&V_0)->___U3CU3Et__builder_1);
AsyncVoidMethodBuilder_Start_TisU3CCreateConnectionAsyncU3Ed__86_t2A570F4B60E471D570D3866403BE7034E2929A6E_mB533C8375EAFF32F9CD221842EE38C58C343AC93(L_1, (&V_0), AsyncVoidMethodBuilder_Start_TisU3CCreateConnectionAsyncU3Ed__86_t2A570F4B60E471D570D3866403BE7034E2929A6E_mB533C8375EAFF32F9CD221842EE38C58C343AC93_RuntimeMethod_var);
return;
}
}
// System.Net.FtpControlStream System.Net.FtpWebRequest::CreateConnection()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* FtpWebRequest_CreateConnection_m93965D472DEDD396B49FFEAFACE7F24B3E6E29B9 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
int32_t V_1 = 0;
TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58* V_2 = NULL;
Exception_t* V_3 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_0 = __this->____uri_14;
NullCheck(L_0);
String_t* L_1;
L_1 = Uri_get_Host_m2C0E258C7DFF7A340049BE9BC08FF45E90988D8C(L_0, NULL);
V_0 = L_1;
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_2 = __this->____uri_14;
NullCheck(L_2);
int32_t L_3;
L_3 = Uri_get_Port_m7A1413AC9D9A2FC5DC8A7F89DF4A01ACA0241A02(L_2, NULL);
V_1 = L_3;
TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58* L_4 = (TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58*)il2cpp_codegen_object_new(TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58_il2cpp_TypeInfo_var);
NullCheck(L_4);
TcpClient__ctor_m709FAC4D5B9DDB279F9B97D90D3164B92E1F2C87(L_4, NULL);
V_2 = L_4;
}
try
{// begin try (depth: 1)
TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58* L_5 = V_2;
String_t* L_6 = V_0;
int32_t L_7 = V_1;
NullCheck(L_5);
TcpClient_Connect_mED87D733E342BEAF8DCB947F612FD25C505753BB(L_5, L_6, L_7, NULL);
goto IL_0031;
}// 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_0028;
}
throw e;
}
CATCH_0028:
{// begin catch(System.Exception)
V_3 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
Exception_t* L_8 = V_3;
Exception_t* L_9;
L_9 = FtpWebRequest_TranslateConnectException_mAB63B1B7A859BB09EAB69EB0C4429F41221954D7(__this, L_8, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpWebRequest_CreateConnection_m93965D472DEDD396B49FFEAFACE7F24B3E6E29B9_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_0031:
{
TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58* L_10 = V_2;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_11 = (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888*)il2cpp_codegen_object_new(FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_il2cpp_TypeInfo_var);
NullCheck(L_11);
FtpControlStream__ctor_m1A36E41268DE5D5E34A2D2053A3F8C2B24511402(L_11, L_10, NULL);
return L_11;
}
}
// System.IO.Stream System.Net.FtpWebRequest::TimedSubmitRequestHelper(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* FtpWebRequest_TimedSubmitRequestHelper_m1BAC9B293CE60F33C0BE9B556AC516F249526AE5 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, bool ___isAsync0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* V_0 = NULL;
bool V_1 = false;
Timer_t251C62B59B7D01C94C28C6162B45228C0276C695* V_2 = NULL;
Exception_t* V_3 = NULL;
RuntimeObject* V_4 = NULL;
bool V_5 = false;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
bool L_0 = ___isAsync0;
if (!L_0)
{
goto IL_0028;
}
}
{
LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* L_1 = __this->____requestCompleteAsyncResult_43;
if (L_1)
{
goto IL_0019;
}
}
{
LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* L_2 = (LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B*)il2cpp_codegen_object_new(LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B_il2cpp_TypeInfo_var);
NullCheck(L_2);
LazyAsyncResult__ctor_m62BAF64A732506AD7544741700A0333B22CADE2F(L_2, NULL, NULL, (AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C*)NULL, NULL);
__this->____requestCompleteAsyncResult_43 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->____requestCompleteAsyncResult_43), (void*)L_2);
}
IL_0019:
{
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_3 = __this->____connection_34;
NullCheck(L_3);
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_4;
L_4 = CommandStream_SubmitRequest_m4F1F3F4EC4C455CAD8679549106ED73D4607D021(L_3, __this, (bool)1, (bool)1, NULL);
return L_4;
}
IL_0028:
{
V_0 = (Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE*)NULL;
V_1 = (bool)0;
Queue_t644DC21212BC432819522EDA395EB4562BE2CC47* L_5;
L_5 = FtpWebRequest_get_TimerQueue_m7CC11C6132CB0AF1494DD8333DA4AE9A74A3B083(__this, NULL);
Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835* L_6 = __this->____timerCallback_32;
NullCheck(L_5);
Timer_t251C62B59B7D01C94C28C6162B45228C0276C695* L_7;
L_7 = VirtualFuncInvoker2< Timer_t251C62B59B7D01C94C28C6162B45228C0276C695*, Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835*, RuntimeObject* >::Invoke(4 /* System.Net.TimerThread/Timer System.Net.TimerThread/Queue::CreateTimer(System.Net.TimerThread/Callback,System.Object) */, L_5, L_6, NULL);
V_2 = L_7;
}
try
{// begin try (depth: 1)
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_8 = __this->____connection_34;
NullCheck(L_8);
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_9;
L_9 = CommandStream_SubmitRequest_m4F1F3F4EC4C455CAD8679549106ED73D4607D021(L_8, __this, (bool)0, (bool)1, NULL);
V_0 = L_9;
goto IL_0076;
}// 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_0050;
}
throw e;
}
CATCH_0050:
{// begin catch(System.Exception)
{
V_3 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
Exception_t* L_10 = V_3;
if (((SocketException_t6D10102A62EA871BD31748E026A372DB6804083B*)IsInstClass((RuntimeObject*)L_10, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SocketException_t6D10102A62EA871BD31748E026A372DB6804083B_il2cpp_TypeInfo_var)))))
{
goto IL_0061;
}
}
{
Exception_t* L_11 = V_3;
if (!((ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)IsInstClass((RuntimeObject*)L_11, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)))))
{
goto IL_0069;
}
}
IL_0061:
{
Timer_t251C62B59B7D01C94C28C6162B45228C0276C695* L_12 = V_2;
NullCheck(L_12);
bool L_13;
L_13 = VirtualFuncInvoker0< bool >::Invoke(6 /* System.Boolean System.Net.TimerThread/Timer::get_HasExpired() */, L_12);
if (L_13)
{
goto IL_0072;
}
}
IL_0069:
{
Timer_t251C62B59B7D01C94C28C6162B45228C0276C695* L_14 = V_2;
NullCheck(L_14);
bool L_15;
L_15 = VirtualFuncInvoker0< bool >::Invoke(5 /* System.Boolean System.Net.TimerThread/Timer::Cancel() */, L_14);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpWebRequest_TimedSubmitRequestHelper_m1BAC9B293CE60F33C0BE9B556AC516F249526AE5_RuntimeMethod_var)));
}
IL_0072:
{
V_1 = (bool)1;
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0076;
}
}// end catch (depth: 1)
IL_0076:
{
bool L_16 = V_1;
if (L_16)
{
goto IL_0081;
}
}
{
Timer_t251C62B59B7D01C94C28C6162B45228C0276C695* L_17 = V_2;
NullCheck(L_17);
bool L_18;
L_18 = VirtualFuncInvoker0< bool >::Invoke(5 /* System.Boolean System.Net.TimerThread/Timer::Cancel() */, L_17);
if (L_18)
{
goto IL_008e;
}
}
IL_0081:
{
__this->____timedOut_29 = (bool)1;
WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* L_19;
L_19 = ExceptionHelper_get_TimeoutException_m952E47F158CFD9B5B3D42F89B032E0ED69C1CFCB(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpWebRequest_TimedSubmitRequestHelper_m1BAC9B293CE60F33C0BE9B556AC516F249526AE5_RuntimeMethod_var)));
}
IL_008e:
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_20 = V_0;
if (!L_20)
{
goto IL_00da;
}
}
{
RuntimeObject* L_21 = __this->____syncObject_12;
V_4 = L_21;
V_5 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00ce:
{// begin finally (depth: 1)
{
bool L_22 = V_5;
if (!L_22)
{
goto IL_00d9;
}
}
{
RuntimeObject* L_23 = V_4;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_23, NULL);
}
IL_00d9:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
RuntimeObject* L_24 = V_4;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_24, (&V_5), NULL);
bool L_25 = __this->____aborted_28;
if (!L_25)
{
goto IL_00c5_1;
}
}
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_26 = V_0;
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_26, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ICloseEx_tCE0C0139320304106D631B20A3A73B581D2ED6F1_il2cpp_TypeInfo_var)))));
InterfaceActionInvoker1< int32_t >::Invoke(0 /* System.Void System.Net.ICloseEx::CloseEx(System.Net.CloseExState) */, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ICloseEx_tCE0C0139320304106D631B20A3A73B581D2ED6F1_il2cpp_TypeInfo_var)), ((RuntimeObject*)Castclass((RuntimeObject*)L_26, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ICloseEx_tCE0C0139320304106D631B20A3A73B581D2ED6F1_il2cpp_TypeInfo_var)))), 3);
FtpWebRequest_CheckError_m0161167F168C34FC6CB654FD038950680B4EB204(__this, NULL);
InternalException_tBD5CDE9133BB628E33CE7F16F6396FCD739C1934* L_27 = (InternalException_tBD5CDE9133BB628E33CE7F16F6396FCD739C1934*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InternalException_tBD5CDE9133BB628E33CE7F16F6396FCD739C1934_il2cpp_TypeInfo_var)));
NullCheck(L_27);
InternalException__ctor_m20A09E66E185FB1449C71227304AF40936C8011A(L_27, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_27, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpWebRequest_TimedSubmitRequestHelper_m1BAC9B293CE60F33C0BE9B556AC516F249526AE5_RuntimeMethod_var)));
}
IL_00c5_1:
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_28 = V_0;
__this->____stream_35 = L_28;
Il2CppCodeGenWriteBarrier((void**)(&__this->____stream_35), (void*)L_28);
goto IL_00da;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00da:
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_29 = V_0;
return L_29;
}
}
// System.Void System.Net.FtpWebRequest::TimerCallback(System.Net.TimerThread/Timer,System.Int32,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebRequest_TimerCallback_m4E2E74539A7C5060AEC4AC31826EE40F956FF8F4 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, Timer_t251C62B59B7D01C94C28C6162B45228C0276C695* ___timer0, int32_t ___timeNoticed1, RuntimeObject* ___context2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2808BA0FD08F571CFB3F1BFDD65B2830813409F4);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB106E8740CE42211E45D45DA37C3F737E6872BA6);
s_Il2CppMethodInitialized = true;
}
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* V_0 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
bool L_0;
L_0 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_0)
{
goto IL_0013;
}
}
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Info_m0BE7F613FC95552DCCAB55C55B0396C13D2DB513(__this, (FormattableString_t4D7D221057108596F60CCCC83532037E2399BE0D*)NULL, _stringLiteralB106E8740CE42211E45D45DA37C3F737E6872BA6, NULL);
}
IL_0013:
{
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_1 = __this->____connection_34;
V_0 = L_1;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_2 = V_0;
if (!L_2)
{
goto IL_003a;
}
}
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
bool L_3;
L_3 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_3)
{
goto IL_0034;
}
}
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Info_m550D5CB6271122B96B82DD45D65FCB037532E5E8(__this, _stringLiteral2808BA0FD08F571CFB3F1BFDD65B2830813409F4, _stringLiteralB106E8740CE42211E45D45DA37C3F737E6872BA6, NULL);
}
IL_0034:
{
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_4 = V_0;
NullCheck(L_4);
FtpControlStream_AbortConnect_m4C13BC4A12ED03FBB94A225138AD6C0620EC707C(L_4, NULL);
}
IL_003a:
{
return;
}
}
// System.Net.TimerThread/Queue System.Net.FtpWebRequest::get_TimerQueue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Queue_t644DC21212BC432819522EDA395EB4562BE2CC47* FtpWebRequest_get_TimerQueue_m7CC11C6132CB0AF1494DD8333DA4AE9A74A3B083 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Queue_t644DC21212BC432819522EDA395EB4562BE2CC47* L_0 = __this->____timerQueue_31;
if (L_0)
{
goto IL_0019;
}
}
{
int32_t L_1;
L_1 = FtpWebRequest_get_RemainingTimeout_m22F8B622745C3B79728C7378C623523DB932FB0D_inline(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
Queue_t644DC21212BC432819522EDA395EB4562BE2CC47* L_2;
L_2 = TimerThread_GetOrCreateQueue_m461C7A3FC2CFAC20EF0C9EBEEF29D3C73BFF52F2(L_1, NULL);
__this->____timerQueue_31 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->____timerQueue_31), (void*)L_2);
}
IL_0019:
{
Queue_t644DC21212BC432819522EDA395EB4562BE2CC47* L_3 = __this->____timerQueue_31;
return L_3;
}
}
// System.Boolean System.Net.FtpWebRequest::AttemptedRecovery(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FtpWebRequest_AttemptedRecovery_m37F888BE32F44DAA4C7974B0B81514E2D5177288 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, Exception_t* ___e0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0B1F0CB1E4B39488382BB9FFA847FAE16A9A34AB);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAD972D784BB1C6D613B9152EADDCA1A1A8DD73B8);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
{
Exception_t* L_0 = ___e0;
if (((OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F*)IsInstClass((RuntimeObject*)L_0, OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F_il2cpp_TypeInfo_var)))
{
goto IL_0035;
}
}
{
bool L_1 = __this->____onceFailed_37;
if (L_1)
{
goto IL_0035;
}
}
{
bool L_2 = __this->____aborted_28;
if (L_2)
{
goto IL_0035;
}
}
{
bool L_3 = __this->____timedOut_29;
if (L_3)
{
goto IL_0035;
}
}
{
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_4 = __this->____connection_34;
if (!L_4)
{
goto IL_0035;
}
}
{
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_5 = __this->____connection_34;
NullCheck(L_5);
bool L_6;
L_6 = CommandStream_get_RecoverableFailure_m0FF23E84547D7F7E7C4EA8C56443F4C18AEA5641_inline(L_5, NULL);
if (L_6)
{
goto IL_0037;
}
}
IL_0035:
{
return (bool)0;
}
IL_0037:
{
__this->____onceFailed_37 = (bool)1;
RuntimeObject* L_7 = __this->____syncObject_12;
V_0 = L_7;
V_1 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_009a:
{// begin finally (depth: 1)
{
bool L_8 = V_1;
if (!L_8)
{
goto IL_00a3;
}
}
{
RuntimeObject* L_9 = V_0;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_9, NULL);
}
IL_00a3:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
RuntimeObject* L_10 = V_0;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_10, (&V_1), NULL);
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_11 = __this->____connection_34;
if (!L_11)
{
goto IL_0096_1;
}
}
{
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_12 = __this->____connection_34;
NullCheck(L_12);
NetworkStreamWrapper_CloseSocket_mAD2F12D01E0C1D3B6DD51D691F1C5CBA1A4D1467(L_12, NULL);
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
bool L_13;
L_13 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_13)
{
goto IL_008d_1;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_14 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_15 = L_14;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_16 = __this->____connection_34;
NullCheck(L_15);
ArrayElementTypeCheck (L_15, L_16);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_16);
FormattableString_t4D7D221057108596F60CCCC83532037E2399BE0D* L_17;
L_17 = FormattableStringFactory_Create_mE112258142E627356203C9E0437E7CE21357A406(_stringLiteral0B1F0CB1E4B39488382BB9FFA847FAE16A9A34AB, L_15, NULL);
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Info_m0BE7F613FC95552DCCAB55C55B0396C13D2DB513(__this, L_17, _stringLiteralAD972D784BB1C6D613B9152EADDCA1A1A8DD73B8, NULL);
}
IL_008d_1:
{
__this->____connection_34 = (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->____connection_34), (void*)(FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888*)NULL);
goto IL_00a4;
}
IL_0096_1:
{
V_2 = (bool)0;
goto IL_00a6;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00a4:
{
return (bool)1;
}
IL_00a6:
{
bool L_18 = V_2;
return L_18;
}
}
// System.Void System.Net.FtpWebRequest::SetException(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebRequest_SetException_m273ED89B507A23F8C9B7F9B752EC32CAD27E59A8 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, Exception_t* ___exception0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AuthenticationException_tACF49ABE65B7CEABB69DE78FA8AE8B1771CDF6A8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SecurityException_t025CB4C23107E67E07CF085826B40EDE72F8165C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2FB6E07A52502F6305C1B908F904737A1F29E74E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral330C8147389635B6DA06062A5D3FE6044B37C7E0);
s_Il2CppMethodInitialized = true;
}
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* V_0 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
bool L_0;
L_0 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_0)
{
goto IL_0013;
}
}
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Info_m0BE7F613FC95552DCCAB55C55B0396C13D2DB513(__this, (FormattableString_t4D7D221057108596F60CCCC83532037E2399BE0D*)NULL, _stringLiteral330C8147389635B6DA06062A5D3FE6044B37C7E0, NULL);
}
IL_0013:
{
Exception_t* L_1 = ___exception0;
if (!((OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F*)IsInstClass((RuntimeObject*)L_1, OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F_il2cpp_TypeInfo_var)))
{
goto IL_0024;
}
}
{
Exception_t* L_2 = ___exception0;
__this->____exception_30 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->____exception_30), (void*)L_2);
Exception_t* L_3 = ___exception0;
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpWebRequest_SetException_m273ED89B507A23F8C9B7F9B752EC32CAD27E59A8_RuntimeMethod_var)));
}
IL_0024:
{
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_4 = __this->____connection_34;
V_0 = L_4;
Exception_t* L_5 = __this->____exception_30;
if (L_5)
{
goto IL_00f4;
}
}
{
Exception_t* L_6 = ___exception0;
if (!((WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8*)IsInstClass((RuntimeObject*)L_6, WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8_il2cpp_TypeInfo_var)))
{
goto IL_006a;
}
}
{
Exception_t* L_7 = ___exception0;
FtpWebRequest_EnsureFtpWebResponse_mB605C3DDD57BE29978FDA23340B5D280DD6FBAD9(__this, L_7, NULL);
Exception_t* L_8 = ___exception0;
NullCheck(L_8);
String_t* L_9;
L_9 = VirtualFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, L_8);
Exception_t* L_10 = ___exception0;
NullCheck(((WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8*)CastclassClass((RuntimeObject*)L_10, WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8_il2cpp_TypeInfo_var)));
int32_t L_11;
L_11 = WebException_get_Status_m9B08D3B07C3D75A6783EADB1215EB54E2D3B9822_inline(((WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8*)CastclassClass((RuntimeObject*)L_10, WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8_il2cpp_TypeInfo_var)), NULL);
FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* L_12 = __this->____ftpWebResponse_39;
WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* L_13 = (WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8*)il2cpp_codegen_object_new(WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8_il2cpp_TypeInfo_var);
NullCheck(L_13);
WebException__ctor_m937A4670EAF10FD9EFA1E0AEAAE27515293339FD(L_13, L_9, (Exception_t*)NULL, L_11, L_12, NULL);
__this->____exception_30 = L_13;
Il2CppCodeGenWriteBarrier((void**)(&__this->____exception_30), (void*)L_13);
goto IL_00cc;
}
IL_006a:
{
Exception_t* L_14 = ___exception0;
if (((AuthenticationException_tACF49ABE65B7CEABB69DE78FA8AE8B1771CDF6A8*)IsInstClass((RuntimeObject*)L_14, AuthenticationException_tACF49ABE65B7CEABB69DE78FA8AE8B1771CDF6A8_il2cpp_TypeInfo_var)))
{
goto IL_007a;
}
}
{
Exception_t* L_15 = ___exception0;
if (!((SecurityException_t025CB4C23107E67E07CF085826B40EDE72F8165C*)IsInstClass((RuntimeObject*)L_15, SecurityException_t025CB4C23107E67E07CF085826B40EDE72F8165C_il2cpp_TypeInfo_var)))
{
goto IL_0083;
}
}
IL_007a:
{
Exception_t* L_16 = ___exception0;
__this->____exception_30 = L_16;
Il2CppCodeGenWriteBarrier((void**)(&__this->____exception_30), (void*)L_16);
goto IL_00cc;
}
IL_0083:
{
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_17 = V_0;
if (!L_17)
{
goto IL_00ba;
}
}
{
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_18 = V_0;
NullCheck(L_18);
int32_t L_19 = L_18->___StatusCode_37;
if (!L_19)
{
goto IL_00ba;
}
}
{
Exception_t* L_20 = ___exception0;
FtpWebRequest_EnsureFtpWebResponse_mB605C3DDD57BE29978FDA23340B5D280DD6FBAD9(__this, L_20, NULL);
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_21 = V_0;
NullCheck(L_21);
String_t* L_22 = L_21->___StatusLine_38;
String_t* L_23;
L_23 = SR_Format_mB99C6F1BE061EA1427A45176E0CAFB2A2C76D03F(_stringLiteral2FB6E07A52502F6305C1B908F904737A1F29E74E, L_22, NULL);
Exception_t* L_24 = ___exception0;
FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* L_25 = __this->____ftpWebResponse_39;
WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* L_26 = (WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8*)il2cpp_codegen_object_new(WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8_il2cpp_TypeInfo_var);
NullCheck(L_26);
WebException__ctor_m937A4670EAF10FD9EFA1E0AEAAE27515293339FD(L_26, L_23, L_24, 7, L_25, NULL);
__this->____exception_30 = L_26;
Il2CppCodeGenWriteBarrier((void**)(&__this->____exception_30), (void*)L_26);
goto IL_00cc;
}
IL_00ba:
{
Exception_t* L_27 = ___exception0;
NullCheck(L_27);
String_t* L_28;
L_28 = VirtualFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, L_27);
Exception_t* L_29 = ___exception0;
WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* L_30 = (WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8*)il2cpp_codegen_object_new(WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8_il2cpp_TypeInfo_var);
NullCheck(L_30);
WebException__ctor_m8075F9F7345CECCBDB276E0B67DE820A9F7D03E9(L_30, L_28, L_29, NULL);
__this->____exception_30 = L_30;
Il2CppCodeGenWriteBarrier((void**)(&__this->____exception_30), (void*)L_30);
}
IL_00cc:
{
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_31 = V_0;
if (!L_31)
{
goto IL_00f4;
}
}
{
FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* L_32 = __this->____ftpWebResponse_39;
if (!L_32)
{
goto IL_00f4;
}
}
{
FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* L_33 = __this->____ftpWebResponse_39;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_34 = V_0;
NullCheck(L_34);
int32_t L_35 = L_34->___StatusCode_37;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_36 = V_0;
NullCheck(L_36);
String_t* L_37 = L_36->___StatusLine_38;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_38 = V_0;
NullCheck(L_38);
String_t* L_39;
L_39 = FtpControlStream_get_ExitMessage_m6E2214D55C11B97FC9FF7CCDC2F1072CDA01DF8F(L_38, NULL);
NullCheck(L_33);
FtpWebResponse_UpdateStatus_mEB271B815F8918C8F4681301A2736BAC5C5877FB(L_33, L_35, L_37, L_39, NULL);
}
IL_00f4:
{
return;
}
}
// System.Void System.Net.FtpWebRequest::CheckError()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebRequest_CheckError_m0161167F168C34FC6CB654FD038950680B4EB204 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method)
{
{
Exception_t* L_0 = __this->____exception_30;
if (!L_0)
{
goto IL_0013;
}
}
{
Exception_t* L_1 = __this->____exception_30;
ExceptionDispatchInfo_Throw_mFA716299AF77061945002B15FC713A3FBD6895F1(L_1, NULL);
}
IL_0013:
{
return;
}
}
// System.Void System.Net.FtpWebRequest::RequestCallback(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebRequest_RequestCallback_m01917657BCE4DD15D0FA926E652F214B25A489B7 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, RuntimeObject* ___obj0, const RuntimeMethod* method)
{
{
bool L_0 = __this->____async_27;
if (!L_0)
{
goto IL_0010;
}
}
{
RuntimeObject* L_1 = ___obj0;
FtpWebRequest_AsyncRequestCallback_m16A0D27F8F25B02C06FB35441D0FFC04B53B4EDF(__this, L_1, NULL);
return;
}
IL_0010:
{
RuntimeObject* L_2 = ___obj0;
FtpWebRequest_SyncRequestCallback_mBA4F7551E61FCC70A683BB0275E640ED308A1711(__this, L_2, NULL);
return;
}
}
// System.Void System.Net.FtpWebRequest::SyncRequestCallback(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebRequest_SyncRequestCallback_mBA4F7551E61FCC70A683BB0275E640ED308A1711 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, RuntimeObject* ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3FC2E68F241F851C7C6FAADC81426876045B40ED);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7FD5233B8BABC601678D101B169D10B91A449A07);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
bool V_1 = false;
Exception_t* V_2 = NULL;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* V_3 = NULL;
Exception_t* V_4 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
bool L_0;
L_0 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_0)
{
goto IL_0013;
}
}
{
RuntimeObject* L_1 = ___obj0;
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Enter_mCD132529EA0CFD5742953E7C36292B7C89676859(__this, L_1, _stringLiteral3FC2E68F241F851C7C6FAADC81426876045B40ED, NULL);
}
IL_0013:
{
V_0 = 0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00a3:
{// begin finally (depth: 1)
{
int32_t L_2 = V_0;
int32_t L_3;
L_3 = FtpWebRequest_FinishRequestStage_m46BBC97BEC097B3E0898D53A60463393BBC961FA(__this, L_2, NULL);
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
bool L_4;
L_4 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_4)
{
goto IL_00be;
}
}
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Exit_m407F70ED0A9E9B586AB9FF87B9C15229468C9D36(__this, (FormattableString_t4D7D221057108596F60CCCC83532037E2399BE0D*)NULL, _stringLiteral3FC2E68F241F851C7C6FAADC81426876045B40ED, NULL);
}
IL_00be:
{
FtpWebRequest_CheckError_m0161167F168C34FC6CB654FD038950680B4EB204(__this, NULL);
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
try
{// begin try (depth: 2)
{
RuntimeObject* L_5 = ___obj0;
V_1 = (bool)((((RuntimeObject*)(RuntimeObject*)L_5) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
RuntimeObject* L_6 = ___obj0;
V_2 = ((Exception_t*)IsInstClass((RuntimeObject*)L_6, Exception_t_il2cpp_TypeInfo_var));
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
bool L_7;
L_7 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_7)
{
goto IL_0050_2;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_8 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_9 = L_8;
Exception_t* L_10 = V_2;
NullCheck(L_9);
ArrayElementTypeCheck (L_9, L_10);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_10);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_11 = L_9;
bool L_12 = V_1;
bool L_13 = L_12;
RuntimeObject* L_14 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_13);
NullCheck(L_11);
ArrayElementTypeCheck (L_11, L_14);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_14);
FormattableString_t4D7D221057108596F60CCCC83532037E2399BE0D* L_15;
L_15 = FormattableStringFactory_Create_mE112258142E627356203C9E0437E7CE21357A406(_stringLiteral7FD5233B8BABC601678D101B169D10B91A449A07, L_11, NULL);
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Info_m0BE7F613FC95552DCCAB55C55B0396C13D2DB513(__this, L_15, _stringLiteral3FC2E68F241F851C7C6FAADC81426876045B40ED, NULL);
}
IL_0050_2:
{
Exception_t* L_16 = V_2;
if (!L_16)
{
goto IL_005c_2;
}
}
{
Exception_t* L_17 = V_2;
FtpWebRequest_SetException_m273ED89B507A23F8C9B7F9B752EC32CAD27E59A8(__this, L_17, NULL);
goto IL_0095_2;
}
IL_005c_2:
{
bool L_18 = V_1;
if (L_18)
{
goto IL_0065_2;
}
}
{
InternalException_tBD5CDE9133BB628E33CE7F16F6396FCD739C1934* L_19 = (InternalException_tBD5CDE9133BB628E33CE7F16F6396FCD739C1934*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InternalException_tBD5CDE9133BB628E33CE7F16F6396FCD739C1934_il2cpp_TypeInfo_var)));
NullCheck(L_19);
InternalException__ctor_m20A09E66E185FB1449C71227304AF40936C8011A(L_19, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpWebRequest_SyncRequestCallback_mBA4F7551E61FCC70A683BB0275E640ED308A1711_RuntimeMethod_var)));
}
IL_0065_2:
{
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_20 = __this->____connection_34;
V_3 = L_20;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_21 = V_3;
if (!L_21)
{
goto IL_0093_2;
}
}
{
FtpWebRequest_EnsureFtpWebResponse_mB605C3DDD57BE29978FDA23340B5D280DD6FBAD9(__this, (Exception_t*)NULL, NULL);
FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* L_22 = __this->____ftpWebResponse_39;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_23 = V_3;
NullCheck(L_23);
int32_t L_24 = L_23->___StatusCode_37;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_25 = V_3;
NullCheck(L_25);
String_t* L_26 = L_25->___StatusLine_38;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_27 = V_3;
NullCheck(L_27);
String_t* L_28;
L_28 = FtpControlStream_get_ExitMessage_m6E2214D55C11B97FC9FF7CCDC2F1072CDA01DF8F(L_27, NULL);
NullCheck(L_22);
FtpWebResponse_UpdateStatus_mEB271B815F8918C8F4681301A2736BAC5C5877FB(L_22, L_24, L_26, L_28, NULL);
}
IL_0093_2:
{
V_0 = 4;
}
IL_0095_2:
{
goto IL_00c5;
}
}// end try (depth: 2)
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_0097_1;
}
throw e;
}
CATCH_0097_1:
{// begin catch(System.Exception)
V_4 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
Exception_t* L_29 = V_4;
FtpWebRequest_SetException_m273ED89B507A23F8C9B7F9B752EC32CAD27E59A8(__this, L_29, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_00c5;
}// end catch (depth: 2)
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00c5:
{
return;
}
}
// System.Void System.Net.FtpWebRequest::AsyncRequestCallback(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebRequest_AsyncRequestCallback_m16A0D27F8F25B02C06FB35441D0FFC04B53B4EDF (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, RuntimeObject* ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICloseEx_tCE0C0139320304106D631B20A3A73B581D2ED6F1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral759AD690A88BEF96FA539D85F8E0DFED8A1AE494);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7904BBACEB7DA702721E788913F82DE674A89DD4);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF2B21D2D13AD7FCD4A4D17AF946C159CD107EAC8);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* V_1 = NULL;
FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* V_2 = NULL;
Exception_t* V_3 = NULL;
bool V_4 = false;
RuntimeObject* V_5 = NULL;
bool V_6 = false;
Exception_t* V_7 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 2> __active_exceptions;
int32_t G_B39_0 = 0;
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
bool L_0;
L_0 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_0)
{
goto IL_0013;
}
}
{
RuntimeObject* L_1 = ___obj0;
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Enter_mCD132529EA0CFD5742953E7C36292B7C89676859(__this, L_1, _stringLiteralF2B21D2D13AD7FCD4A4D17AF946C159CD107EAC8, NULL);
}
IL_0013:
{
V_0 = 0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_01d8:
{// begin finally (depth: 1)
{
int32_t L_2 = V_0;
int32_t L_3;
L_3 = FtpWebRequest_FinishRequestStage_m46BBC97BEC097B3E0898D53A60463393BBC961FA(__this, L_2, NULL);
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
bool L_4;
L_4 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_4)
{
goto IL_01f3;
}
}
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Exit_m407F70ED0A9E9B586AB9FF87B9C15229468C9D36(__this, (FormattableString_t4D7D221057108596F60CCCC83532037E2399BE0D*)NULL, _stringLiteralF2B21D2D13AD7FCD4A4D17AF946C159CD107EAC8, NULL);
}
IL_01f3:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
try
{// begin try (depth: 2)
{
RuntimeObject* L_5 = ___obj0;
V_1 = ((FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888*)IsInstClass((RuntimeObject*)L_5, FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_il2cpp_TypeInfo_var));
RuntimeObject* L_6 = ___obj0;
V_2 = ((FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970*)IsInstClass((RuntimeObject*)L_6, FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970_il2cpp_TypeInfo_var));
RuntimeObject* L_7 = ___obj0;
V_3 = ((Exception_t*)IsInstClass((RuntimeObject*)L_7, Exception_t_il2cpp_TypeInfo_var));
RuntimeObject* L_8 = ___obj0;
V_4 = (bool)((((RuntimeObject*)(RuntimeObject*)L_8) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
bool L_9;
L_9 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_9)
{
goto IL_0068_2;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_10 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)4);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_11 = L_10;
FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* L_12 = V_2;
NullCheck(L_11);
ArrayElementTypeCheck (L_11, L_12);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_12);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_13 = L_11;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_14 = V_1;
NullCheck(L_13);
ArrayElementTypeCheck (L_13, L_14);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_14);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_15 = L_13;
Exception_t* L_16 = V_3;
NullCheck(L_15);
ArrayElementTypeCheck (L_15, L_16);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject*)L_16);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_17 = L_15;
bool L_18 = V_4;
bool L_19 = L_18;
RuntimeObject* L_20 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_19);
NullCheck(L_17);
ArrayElementTypeCheck (L_17, L_20);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject*)L_20);
FormattableString_t4D7D221057108596F60CCCC83532037E2399BE0D* L_21;
L_21 = FormattableStringFactory_Create_mE112258142E627356203C9E0437E7CE21357A406(_stringLiteral759AD690A88BEF96FA539D85F8E0DFED8A1AE494, L_17, NULL);
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Info_m0BE7F613FC95552DCCAB55C55B0396C13D2DB513(__this, L_21, _stringLiteralF2B21D2D13AD7FCD4A4D17AF946C159CD107EAC8, NULL);
}
IL_0068_2:
{
Exception_t* L_22 = V_3;
if (!L_22)
{
goto IL_0094_2;
}
}
{
Exception_t* L_23 = V_3;
bool L_24;
L_24 = FtpWebRequest_AttemptedRecovery_m37F888BE32F44DAA4C7974B0B81514E2D5177288(__this, L_23, NULL);
if (!L_24)
{
goto IL_0085_2;
}
}
{
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_25;
L_25 = FtpWebRequest_CreateConnection_m93965D472DEDD396B49FFEAFACE7F24B3E6E29B9(__this, NULL);
V_1 = L_25;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_26 = V_1;
if (L_26)
{
goto IL_0083_2;
}
}
{
goto IL_01f4;
}
IL_0083_2:
{
V_3 = (Exception_t*)NULL;
}
IL_0085_2:
{
Exception_t* L_27 = V_3;
if (!L_27)
{
goto IL_0094_2;
}
}
{
Exception_t* L_28 = V_3;
FtpWebRequest_SetException_m273ED89B507A23F8C9B7F9B752EC32CAD27E59A8(__this, L_28, NULL);
goto IL_01ca_2;
}
IL_0094_2:
{
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_29 = V_1;
if (!L_29)
{
goto IL_012f_2;
}
}
{
RuntimeObject* L_30 = __this->____syncObject_12;
V_5 = L_30;
V_6 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0108_2:
{// begin finally (depth: 3)
{
bool L_31 = V_6;
if (!L_31)
{
goto IL_0113_2;
}
}
{
RuntimeObject* L_32 = V_5;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_32, NULL);
}
IL_0113_2:
{
return;
}
}// end finally (depth: 3)
});
try
{// begin try (depth: 3)
{
RuntimeObject* L_33 = V_5;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_33, (&V_6), NULL);
bool L_34 = __this->____aborted_28;
if (!L_34)
{
goto IL_00e7_3;
}
}
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
bool L_35;
L_35 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_35)
{
goto IL_00dc_3;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_36 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_37 = L_36;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_38 = V_1;
NullCheck(L_37);
ArrayElementTypeCheck (L_37, L_38);
(L_37)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_38);
FormattableString_t4D7D221057108596F60CCCC83532037E2399BE0D* L_39;
L_39 = FormattableStringFactory_Create_mE112258142E627356203C9E0437E7CE21357A406(_stringLiteral7904BBACEB7DA702721E788913F82DE674A89DD4, L_37, NULL);
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Info_m0BE7F613FC95552DCCAB55C55B0396C13D2DB513(__this, L_39, _stringLiteralF2B21D2D13AD7FCD4A4D17AF946C159CD107EAC8, NULL);
}
IL_00dc_3:
{
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_40 = V_1;
NullCheck(L_40);
NetworkStreamWrapper_CloseSocket_mAD2F12D01E0C1D3B6DD51D691F1C5CBA1A4D1467(L_40, NULL);
goto IL_01ca_2;
}
IL_00e7_3:
{
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_41 = V_1;
__this->____connection_34 = L_41;
Il2CppCodeGenWriteBarrier((void**)(&__this->____connection_34), (void*)L_41);
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
bool L_42;
L_42 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_42)
{
goto IL_0106_3;
}
}
{
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_43 = __this->____connection_34;
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Associate_m73516419B7057CA3028739C1C4093B1F0CAE3BCC(__this, L_43, _stringLiteralF2B21D2D13AD7FCD4A4D17AF946C159CD107EAC8, NULL);
}
IL_0106_3:
{
goto IL_0114_2;
}
}// end try (depth: 3)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0114_2:
{
}
try
{// begin try (depth: 3)
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_44;
L_44 = FtpWebRequest_TimedSubmitRequestHelper_m1BAC9B293CE60F33C0BE9B556AC516F249526AE5(__this, (bool)1, NULL);
V_2 = ((FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970*)CastclassClass((RuntimeObject*)L_44, FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970_il2cpp_TypeInfo_var));
goto IL_012a_2;
}// end try (depth: 3)
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_0124_2;
}
throw e;
}
CATCH_0124_2:
{// begin catch(System.Exception)
V_3 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0068_2;
}// end catch (depth: 3)
IL_012a_2:
{
goto IL_01f4;
}
IL_012f_2:
{
FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* L_45 = V_2;
if (!L_45)
{
goto IL_018e_2;
}
}
{
RuntimeObject* L_46 = __this->____syncObject_12;
V_5 = L_46;
V_6 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0160_2:
{// begin finally (depth: 3)
{
bool L_47 = V_6;
if (!L_47)
{
goto IL_016b_2;
}
}
{
RuntimeObject* L_48 = V_5;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_48, NULL);
}
IL_016b_2:
{
return;
}
}// end finally (depth: 3)
});
try
{// begin try (depth: 3)
{
RuntimeObject* L_49 = V_5;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_49, (&V_6), NULL);
bool L_50 = __this->____aborted_28;
if (!L_50)
{
goto IL_0157_3;
}
}
{
FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* L_51 = V_2;
NullCheck(L_51);
InterfaceActionInvoker1< int32_t >::Invoke(0 /* System.Void System.Net.ICloseEx::CloseEx(System.Net.CloseExState) */, ICloseEx_tCE0C0139320304106D631B20A3A73B581D2ED6F1_il2cpp_TypeInfo_var, L_51, 3);
goto IL_01ca_2;
}
IL_0157_3:
{
FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* L_52 = V_2;
__this->____stream_35 = L_52;
Il2CppCodeGenWriteBarrier((void**)(&__this->____stream_35), (void*)L_52);
goto IL_016c_2;
}
}// end try (depth: 3)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_016c_2:
{
FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* L_53 = V_2;
int32_t L_54;
L_54 = VirtualFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Net.WebRequest::get_Timeout() */, __this);
NullCheck(L_53);
FtpDataStream_SetSocketTimeoutOption_m20EDF2440DC034CB6530BB97A53796A2DBAC88A8(L_53, L_54, NULL);
FtpWebRequest_EnsureFtpWebResponse_mB605C3DDD57BE29978FDA23340B5D280DD6FBAD9(__this, (Exception_t*)NULL, NULL);
FtpDataStream_t44CAD554C1C62626401C0AFD9E3EC2C57699E970* L_55 = V_2;
NullCheck(L_55);
bool L_56;
L_56 = VirtualFuncInvoker0< bool >::Invoke(7 /* System.Boolean System.IO.Stream::get_CanRead() */, L_55);
if (L_56)
{
goto IL_018a_2;
}
}
{
G_B39_0 = 2;
goto IL_018b_2;
}
IL_018a_2:
{
G_B39_0 = 3;
}
IL_018b_2:
{
V_0 = G_B39_0;
goto IL_01ca_2;
}
IL_018e_2:
{
bool L_57 = V_4;
if (!L_57)
{
goto IL_01c4_2;
}
}
{
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_58 = __this->____connection_34;
V_1 = L_58;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_59 = V_1;
if (!L_59)
{
goto IL_01c0_2;
}
}
{
FtpWebRequest_EnsureFtpWebResponse_mB605C3DDD57BE29978FDA23340B5D280DD6FBAD9(__this, (Exception_t*)NULL, NULL);
FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* L_60 = __this->____ftpWebResponse_39;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_61 = V_1;
NullCheck(L_61);
int32_t L_62 = L_61->___StatusCode_37;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_63 = V_1;
NullCheck(L_63);
String_t* L_64 = L_63->___StatusLine_38;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_65 = V_1;
NullCheck(L_65);
String_t* L_66;
L_66 = FtpControlStream_get_ExitMessage_m6E2214D55C11B97FC9FF7CCDC2F1072CDA01DF8F(L_65, NULL);
NullCheck(L_60);
FtpWebResponse_UpdateStatus_mEB271B815F8918C8F4681301A2736BAC5C5877FB(L_60, L_62, L_64, L_66, NULL);
}
IL_01c0_2:
{
V_0 = 4;
goto IL_01ca_2;
}
IL_01c4_2:
{
InternalException_tBD5CDE9133BB628E33CE7F16F6396FCD739C1934* L_67 = (InternalException_tBD5CDE9133BB628E33CE7F16F6396FCD739C1934*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InternalException_tBD5CDE9133BB628E33CE7F16F6396FCD739C1934_il2cpp_TypeInfo_var)));
NullCheck(L_67);
InternalException__ctor_m20A09E66E185FB1449C71227304AF40936C8011A(L_67, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_67, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpWebRequest_AsyncRequestCallback_m16A0D27F8F25B02C06FB35441D0FFC04B53B4EDF_RuntimeMethod_var)));
}
IL_01ca_2:
{
goto IL_01f4;
}
}// end try (depth: 2)
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_01cc_1;
}
throw e;
}
CATCH_01cc_1:
{// begin catch(System.Exception)
V_7 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
Exception_t* L_68 = V_7;
FtpWebRequest_SetException_m273ED89B507A23F8C9B7F9B752EC32CAD27E59A8(__this, L_68, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_01f4;
}// end catch (depth: 2)
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_01f4:
{
return;
}
}
// System.Net.FtpWebRequest/RequestStage System.Net.FtpWebRequest::FinishRequestStage(System.Net.FtpWebRequest/RequestStage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FtpWebRequest_FinishRequestStage_m46BBC97BEC097B3E0898D53A60463393BBC961FA (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, int32_t ___stage0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RequestStage_tDC743E2D2E03FDE23DBCF5E27E2A7853EECFB4CD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0B1F0CB1E4B39488382BB9FFA847FAE16A9A34AB);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE772E9FF8194334D5FC28A946A7146ABB11B328A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF0DF1BDF8BFAC0650E5B92D55ADF7C2719A06541);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* V_1 = NULL;
LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* V_2 = NULL;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* V_3 = NULL;
RuntimeObject* V_4 = NULL;
bool V_5 = false;
int32_t V_6 = 0;
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
bool L_0;
L_0 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_0)
{
goto IL_002b;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = L_1;
int32_t L_3 = ___stage0;
int32_t L_4 = L_3;
RuntimeObject* L_5 = Box(RequestStage_tDC743E2D2E03FDE23DBCF5E27E2A7853EECFB4CD_il2cpp_TypeInfo_var, &L_4);
NullCheck(L_2);
ArrayElementTypeCheck (L_2, L_5);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_5);
FormattableString_t4D7D221057108596F60CCCC83532037E2399BE0D* L_6;
L_6 = FormattableStringFactory_Create_mE112258142E627356203C9E0437E7CE21357A406(_stringLiteralE772E9FF8194334D5FC28A946A7146ABB11B328A, L_2, NULL);
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Info_m0BE7F613FC95552DCCAB55C55B0396C13D2DB513(__this, L_6, _stringLiteralF0DF1BDF8BFAC0650E5B92D55ADF7C2719A06541, NULL);
}
IL_002b:
{
Exception_t* L_7 = __this->____exception_30;
if (!L_7)
{
goto IL_0036;
}
}
{
___stage0 = 4;
}
IL_0036:
{
RuntimeObject* L_8 = __this->____syncObject_12;
V_4 = L_8;
V_5 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00db:
{// begin finally (depth: 1)
{
bool L_9 = V_5;
if (!L_9)
{
goto IL_00e6;
}
}
{
RuntimeObject* L_10 = V_4;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_10, NULL);
}
IL_00e6:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
RuntimeObject* L_11 = V_4;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_11, (&V_5), NULL);
int32_t L_12 = __this->____requestStage_36;
V_0 = L_12;
int32_t L_13 = ___stage0;
if (L_13)
{
goto IL_005c_1;
}
}
{
int32_t L_14 = V_0;
V_6 = L_14;
goto IL_01af;
}
IL_005c_1:
{
int32_t L_15 = V_0;
if ((!(((uint32_t)L_15) == ((uint32_t)4))))
{
goto IL_006c_1;
}
}
{
int32_t L_16 = ___stage0;
if ((!(((uint32_t)L_16) == ((uint32_t)4))))
{
goto IL_006c_1;
}
}
{
V_6 = 4;
goto IL_01af;
}
IL_006c_1:
{
int32_t L_17 = ___stage0;
int32_t L_18 = V_0;
if ((((int32_t)L_17) <= ((int32_t)L_18)))
{
goto IL_0077_1;
}
}
{
int32_t L_19 = ___stage0;
__this->____requestStage_36 = L_19;
}
IL_0077_1:
{
int32_t L_20 = ___stage0;
if ((((int32_t)L_20) > ((int32_t)1)))
{
goto IL_0083_1;
}
}
{
int32_t L_21 = V_0;
V_6 = L_21;
goto IL_01af;
}
IL_0083_1:
{
ContextAwareResult_t3CCEE7D0B6510492A4EE1A2F828BDDF012ADBFDA* L_22 = __this->____writeAsyncResult_41;
V_1 = L_22;
LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* L_23 = __this->____readAsyncResult_42;
V_2 = L_23;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_24 = __this->____connection_34;
V_3 = L_24;
int32_t L_25 = ___stage0;
if ((!(((uint32_t)L_25) == ((uint32_t)4))))
{
goto IL_00d9_1;
}
}
{
Exception_t* L_26 = __this->____exception_30;
if (L_26)
{
goto IL_00d2_1;
}
}
{
bool L_27 = __this->____aborted_28;
if (L_27)
{
goto IL_00d2_1;
}
}
{
int32_t L_28 = V_0;
if ((((int32_t)L_28) == ((int32_t)3)))
{
goto IL_00d2_1;
}
}
{
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_29 = __this->____methodInfo_15;
NullCheck(L_29);
bool L_30;
L_30 = FtpMethodInfo_get_IsDownload_m0D167463FDABE34B643B022F442A657A3CEA2EC4(L_29, NULL);
if (!L_30)
{
goto IL_00d2_1;
}
}
{
FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* L_31 = __this->____ftpWebResponse_39;
NullCheck(L_31);
bool L_32;
L_32 = VirtualFuncInvoker0< bool >::Invoke(11 /* System.Boolean System.Net.WebResponse::get_IsFromCache() */, L_31);
if (L_32)
{
goto IL_00d2_1;
}
}
{
int32_t L_33 = V_0;
V_6 = L_33;
goto IL_01af;
}
IL_00d2_1:
{
__this->____connection_34 = (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->____connection_34), (void*)(FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888*)NULL);
}
IL_00d9_1:
{
goto IL_00e7;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00e7:
{
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0156:
{// begin finally (depth: 1)
{
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0198:
{// begin finally (depth: 2)
{
int32_t L_34 = ___stage0;
if ((((int32_t)L_34) < ((int32_t)3)))
{
goto IL_01ad;
}
}
{
LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* L_35 = V_2;
if (!L_35)
{
goto IL_01ad;
}
}
{
LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* L_36 = V_2;
NullCheck(L_36);
bool L_37;
L_37 = LazyAsyncResult_get_InternalPeekCompleted_m4E25420F3F5315AEA52DB59D671C65A3103EF2DE(L_36, NULL);
if (L_37)
{
goto IL_01ad;
}
}
{
LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* L_38 = V_2;
NullCheck(L_38);
LazyAsyncResult_InvokeCallback_m1429C8FB483908BC3A0D6C754F2F27554AFE7439(L_38, NULL);
}
IL_01ad:
{
return;
}
}// end finally (depth: 2)
});
try
{// begin try (depth: 2)
{
int32_t L_39 = ___stage0;
if ((((int32_t)L_39) < ((int32_t)2)))
{
goto IL_0196_1;
}
}
{
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_40 = __this->____methodInfo_15;
NullCheck(L_40);
bool L_41;
L_41 = FtpMethodInfo_get_IsUpload_m34E090D800423923B895D914383F63EF51019CEC(L_40, NULL);
if (!L_41)
{
goto IL_0185_1;
}
}
{
bool L_42 = __this->____getRequestStreamStarted_17;
if (L_42)
{
goto IL_0185_1;
}
}
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_43 = __this->____stream_35;
if (!L_43)
{
goto IL_0196_1;
}
}
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_44 = __this->____stream_35;
NullCheck(L_44);
VirtualActionInvoker0::Invoke(18 /* System.Void System.IO.Stream::Close() */, L_44);
goto IL_01ae;
}
IL_0185_1:
{
LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* L_45 = V_1;
if (!L_45)
{
goto IL_0196_1;
}
}
{
LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* L_46 = V_1;
NullCheck(L_46);
bool L_47;
L_47 = LazyAsyncResult_get_InternalPeekCompleted_m4E25420F3F5315AEA52DB59D671C65A3103EF2DE(L_46, NULL);
if (L_47)
{
goto IL_0196_1;
}
}
{
LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* L_48 = V_1;
NullCheck(L_48);
LazyAsyncResult_InvokeCallback_m1429C8FB483908BC3A0D6C754F2F27554AFE7439(L_48, NULL);
}
IL_0196_1:
{
goto IL_01ae;
}
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_01ae:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
int32_t L_49 = ___stage0;
if ((((int32_t)L_49) == ((int32_t)4)))
{
goto IL_00f0_1;
}
}
{
int32_t L_50 = V_0;
if ((!(((uint32_t)L_50) == ((uint32_t)4))))
{
goto IL_0151_1;
}
}
IL_00f0_1:
{
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_51 = V_3;
if (!L_51)
{
goto IL_0151_1;
}
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0109_1:
{// begin finally (depth: 2)
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
bool L_52;
L_52 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_52)
{
goto IL_012f_1;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_53 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_54 = L_53;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_55 = V_3;
NullCheck(L_54);
ArrayElementTypeCheck (L_54, L_55);
(L_54)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_55);
FormattableString_t4D7D221057108596F60CCCC83532037E2399BE0D* L_56;
L_56 = FormattableStringFactory_Create_mE112258142E627356203C9E0437E7CE21357A406(_stringLiteral0B1F0CB1E4B39488382BB9FFA847FAE16A9A34AB, L_54, NULL);
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Info_m0BE7F613FC95552DCCAB55C55B0396C13D2DB513(__this, L_56, _stringLiteralF0DF1BDF8BFAC0650E5B92D55ADF7C2719A06541, NULL);
}
IL_012f_1:
{
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_57 = V_3;
NullCheck(L_57);
NetworkStreamWrapper_CloseSocket_mAD2F12D01E0C1D3B6DD51D691F1C5CBA1A4D1467(L_57, NULL);
bool L_58 = __this->____async_27;
if (!L_58)
{
goto IL_0150_1;
}
}
{
LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* L_59 = __this->____requestCompleteAsyncResult_43;
if (!L_59)
{
goto IL_0150_1;
}
}
{
LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* L_60 = __this->____requestCompleteAsyncResult_43;
NullCheck(L_60);
LazyAsyncResult_InvokeCallback_m1429C8FB483908BC3A0D6C754F2F27554AFE7439(L_60, NULL);
}
IL_0150_1:
{
return;
}
}// end finally (depth: 2)
});
try
{// begin try (depth: 2)
{
Exception_t* L_61 = __this->____exception_30;
if (!L_61)
{
goto IL_0107_2;
}
}
{
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_62 = V_3;
Exception_t* L_63 = __this->____exception_30;
NullCheck(L_62);
VirtualActionInvoker1< Exception_t* >::Invoke(37 /* System.Void System.Net.CommandStream::Abort(System.Exception) */, L_62, L_63);
}
IL_0107_2:
{
goto IL_0151_1;
}
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0151_1:
{
int32_t L_64 = V_0;
V_6 = L_64;
goto IL_01af;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_01af:
{
int32_t L_65 = V_6;
return L_65;
}
}
// System.Void System.Net.FtpWebRequest::Abort()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebRequest_Abort_m692F58C2CAE79DF9BE85C883804FBDF8ED3ADF8E (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICloseEx_tCE0C0139320304106D631B20A3A73B581D2ED6F1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2596BC412EFA7548DA969FAB0524F2329C019534);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEF3AE2BA98885A01372DBA26E85EF15FB6B45537);
s_Il2CppMethodInitialized = true;
}
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* V_0 = NULL;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* V_1 = NULL;
RuntimeObject* V_2 = NULL;
bool V_3 = false;
Exception_t* V_4 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
bool L_0 = __this->____aborted_28;
if (!L_0)
{
goto IL_0009;
}
}
{
return;
}
IL_0009:
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
bool L_1;
L_1 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_1)
{
goto IL_001c;
}
}
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Enter_m5EF1ED6D39F9FF936F537BE4C4E293583E8A0494(__this, (FormattableString_t4D7D221057108596F60CCCC83532037E2399BE0D*)NULL, _stringLiteralEF3AE2BA98885A01372DBA26E85EF15FB6B45537, NULL);
}
IL_001c:
{
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00b7:
{// begin finally (depth: 1)
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
bool L_2;
L_2 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_2)
{
goto IL_00ca;
}
}
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Exit_m407F70ED0A9E9B586AB9FF87B9C15229468C9D36(__this, (FormattableString_t4D7D221057108596F60CCCC83532037E2399BE0D*)NULL, _stringLiteralEF3AE2BA98885A01372DBA26E85EF15FB6B45537, NULL);
}
IL_00ca:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
try
{// begin try (depth: 2)
{
RuntimeObject* L_3 = __this->____syncObject_12;
V_2 = L_3;
V_3 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_005e_2:
{// begin finally (depth: 3)
{
bool L_4 = V_3;
if (!L_4)
{
goto IL_0067_2;
}
}
{
RuntimeObject* L_5 = V_2;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_5, NULL);
}
IL_0067_2:
{
return;
}
}// end finally (depth: 3)
});
try
{// begin try (depth: 3)
{
RuntimeObject* L_6 = V_2;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_6, (&V_3), NULL);
int32_t L_7 = __this->____requestStage_36;
if ((((int32_t)L_7) < ((int32_t)4)))
{
goto IL_003c_3;
}
}
{
goto IL_00cb;
}
IL_003c_3:
{
__this->____aborted_28 = (bool)1;
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_8 = __this->____stream_35;
V_0 = L_8;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_9 = __this->____connection_34;
V_1 = L_9;
WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* L_10;
L_10 = ExceptionHelper_get_RequestAbortedException_m3DF6599ECE269D18BE8B09099E6D8A9E6692B309(NULL);
__this->____exception_30 = L_10;
Il2CppCodeGenWriteBarrier((void**)(&__this->____exception_30), (void*)L_10);
goto IL_0068_2;
}
}// end try (depth: 3)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0068_2:
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_11 = V_0;
if (!L_11)
{
goto IL_008f_2;
}
}
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_12 = V_0;
if (((RuntimeObject*)IsInst((RuntimeObject*)L_12, ICloseEx_tCE0C0139320304106D631B20A3A73B581D2ED6F1_il2cpp_TypeInfo_var)))
{
goto IL_0083_2;
}
}
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Fail_m07530DCF1F3780671CA9D866BD5A0B681C0DF324(__this, _stringLiteral2596BC412EFA7548DA969FAB0524F2329C019534, _stringLiteralEF3AE2BA98885A01372DBA26E85EF15FB6B45537, NULL);
}
IL_0083_2:
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_13 = V_0;
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_13, ICloseEx_tCE0C0139320304106D631B20A3A73B581D2ED6F1_il2cpp_TypeInfo_var)));
InterfaceActionInvoker1< int32_t >::Invoke(0 /* System.Void System.Net.ICloseEx::CloseEx(System.Net.CloseExState) */, ICloseEx_tCE0C0139320304106D631B20A3A73B581D2ED6F1_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_13, ICloseEx_tCE0C0139320304106D631B20A3A73B581D2ED6F1_il2cpp_TypeInfo_var)), 3);
}
IL_008f_2:
{
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_14 = V_1;
if (!L_14)
{
goto IL_009d_2;
}
}
{
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_15 = V_1;
WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* L_16;
L_16 = ExceptionHelper_get_RequestAbortedException_m3DF6599ECE269D18BE8B09099E6D8A9E6692B309(NULL);
NullCheck(L_15);
VirtualActionInvoker1< Exception_t* >::Invoke(37 /* System.Void System.Net.CommandStream::Abort(System.Exception) */, L_15, L_16);
}
IL_009d_2:
{
goto IL_00cb;
}
}// end try (depth: 2)
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_009f_1;
}
throw e;
}
CATCH_009f_1:
{// begin catch(System.Exception)
{
V_4 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var)));
bool L_17;
L_17 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_17)
{
goto IL_00b5_1;
}
}
{
Exception_t* L_18 = V_4;
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var)));
NetEventSource_Error_mD371BE6D7A90C126AA0E7C839979F4439C9E22AD(__this, L_18, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEF3AE2BA98885A01372DBA26E85EF15FB6B45537)), NULL);
}
IL_00b5_1:
{
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpWebRequest_Abort_m692F58C2CAE79DF9BE85C883804FBDF8ED3ADF8E_RuntimeMethod_var)));
}
}// end catch (depth: 2)
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00cb:
{
return;
}
}
// System.Void System.Net.FtpWebRequest::set_CachePolicy(System.Net.Cache.RequestCachePolicy)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebRequest_set_CachePolicy_m9D41AA5795A910761DF6943E06A629CFFFD1ACA0 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, RequestCachePolicy_tF15C94C5E458478914D5EB17753294BD488B0550* ___value0, const RuntimeMethod* method)
{
{
bool L_0;
L_0 = FtpWebRequest_get_InUse_mBBB7CD6328BBE78BEB1E032E2D5A0708BF9BE208(__this, NULL);
if (!L_0)
{
goto IL_0013;
}
}
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_1);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0EF29B2C7D325AC477F82D9ACC3AF99C88146FE9)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpWebRequest_set_CachePolicy_m9D41AA5795A910761DF6943E06A629CFFFD1ACA0_RuntimeMethod_var)));
}
IL_0013:
{
return;
}
}
// System.Boolean System.Net.FtpWebRequest::get_UseBinary()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FtpWebRequest_get_UseBinary_mF3DE86086AD5AD72D92B04325590EA25E2597591 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->____binary_26;
return L_0;
}
}
// System.Boolean System.Net.FtpWebRequest::get_UsePassive()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FtpWebRequest_get_UsePassive_m3934FCB6A521CBDC77018736E820BAA8978135BC (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->____passive_25;
return L_0;
}
}
// System.Security.Cryptography.X509Certificates.X509CertificateCollection System.Net.FtpWebRequest::get_ClientCertificates()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* FtpWebRequest_get_ClientCertificates_mA566B0A04203FCA61A4C858073A0A9271AB73382 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_1_t1A018D620D1CB4D4C91AA22993DD233AA8AB8AFB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LazyInitializer_EnsureInitialized_TisX509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE_m8C2BA161D5BB95A3574BCC8A822D91DAE99D831D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3Cget_ClientCertificatesU3Eb__114_0_m40805B8FBE35ACD91B1128B347050725AEF2B700_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_tC2DEFD54496D8274D1995CC11D74A23339DC4447_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Func_1_t1A018D620D1CB4D4C91AA22993DD233AA8AB8AFB* G_B2_0 = NULL;
RuntimeObject** G_B2_1 = NULL;
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE** G_B2_2 = NULL;
Func_1_t1A018D620D1CB4D4C91AA22993DD233AA8AB8AFB* G_B1_0 = NULL;
RuntimeObject** G_B1_1 = NULL;
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE** G_B1_2 = NULL;
{
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE** L_0 = (&__this->____clientCertificates_24);
RuntimeObject** L_1 = (&__this->____syncObject_12);
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_tC2DEFD54496D8274D1995CC11D74A23339DC4447_il2cpp_TypeInfo_var);
Func_1_t1A018D620D1CB4D4C91AA22993DD233AA8AB8AFB* L_2 = ((U3CU3Ec_tC2DEFD54496D8274D1995CC11D74A23339DC4447_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tC2DEFD54496D8274D1995CC11D74A23339DC4447_il2cpp_TypeInfo_var))->___U3CU3E9__114_0_1;
Func_1_t1A018D620D1CB4D4C91AA22993DD233AA8AB8AFB* L_3 = L_2;
G_B1_0 = L_3;
G_B1_1 = L_1;
G_B1_2 = L_0;
if (L_3)
{
G_B2_0 = L_3;
G_B2_1 = L_1;
G_B2_2 = L_0;
goto IL_002b;
}
}
{
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_tC2DEFD54496D8274D1995CC11D74A23339DC4447_il2cpp_TypeInfo_var);
U3CU3Ec_tC2DEFD54496D8274D1995CC11D74A23339DC4447* L_4 = ((U3CU3Ec_tC2DEFD54496D8274D1995CC11D74A23339DC4447_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tC2DEFD54496D8274D1995CC11D74A23339DC4447_il2cpp_TypeInfo_var))->___U3CU3E9_0;
Func_1_t1A018D620D1CB4D4C91AA22993DD233AA8AB8AFB* L_5 = (Func_1_t1A018D620D1CB4D4C91AA22993DD233AA8AB8AFB*)il2cpp_codegen_object_new(Func_1_t1A018D620D1CB4D4C91AA22993DD233AA8AB8AFB_il2cpp_TypeInfo_var);
NullCheck(L_5);
Func_1__ctor_m617B6D7BE0843905AE0309A5B272CA2C280B147C(L_5, L_4, (intptr_t)((void*)U3CU3Ec_U3Cget_ClientCertificatesU3Eb__114_0_m40805B8FBE35ACD91B1128B347050725AEF2B700_RuntimeMethod_var), NULL);
Func_1_t1A018D620D1CB4D4C91AA22993DD233AA8AB8AFB* L_6 = L_5;
((U3CU3Ec_tC2DEFD54496D8274D1995CC11D74A23339DC4447_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tC2DEFD54496D8274D1995CC11D74A23339DC4447_il2cpp_TypeInfo_var))->___U3CU3E9__114_0_1 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_tC2DEFD54496D8274D1995CC11D74A23339DC4447_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tC2DEFD54496D8274D1995CC11D74A23339DC4447_il2cpp_TypeInfo_var))->___U3CU3E9__114_0_1), (void*)L_6);
G_B2_0 = L_6;
G_B2_1 = G_B1_1;
G_B2_2 = G_B1_2;
}
IL_002b:
{
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* L_7;
L_7 = LazyInitializer_EnsureInitialized_TisX509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE_m8C2BA161D5BB95A3574BCC8A822D91DAE99D831D(G_B2_2, G_B2_1, G_B2_0, LazyInitializer_EnsureInitialized_TisX509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE_m8C2BA161D5BB95A3574BCC8A822D91DAE99D831D_RuntimeMethod_var);
return L_7;
}
}
// System.Boolean System.Net.FtpWebRequest::get_EnableSsl()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FtpWebRequest_get_EnableSsl_mE30506F987A04EB9771FD530066BC18A9F2A7ED8 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->____enableSsl_33;
return L_0;
}
}
// System.Net.WebHeaderCollection System.Net.FtpWebRequest::get_Headers()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* FtpWebRequest_get_Headers_mAA9F97EA5BF0115BD58AEC6E4E9C610643C5F031 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* L_0 = __this->____ftpRequestHeaders_38;
if (L_0)
{
goto IL_0013;
}
}
{
WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* L_1 = (WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8*)il2cpp_codegen_object_new(WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var);
NullCheck(L_1);
WebHeaderCollection__ctor_m9C77B3E5FD0A3637283AE2B7084F5ED5D8CD7369(L_1, NULL);
__this->____ftpRequestHeaders_38 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____ftpRequestHeaders_38), (void*)L_1);
}
IL_0013:
{
WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* L_2 = __this->____ftpRequestHeaders_38;
return L_2;
}
}
// System.Boolean System.Net.FtpWebRequest::get_UseDefaultCredentials()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FtpWebRequest_get_UseDefaultCredentials_mAD856EDBDCF69FB4ABDE74722A1D446C59000A86 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0;
L_0 = ExceptionHelper_get_PropertyNotSupportedException_m5CC325461533A050D3EF68316653B789963A0DA2(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FtpWebRequest_get_UseDefaultCredentials_mAD856EDBDCF69FB4ABDE74722A1D446C59000A86_RuntimeMethod_var)));
}
}
// System.Boolean System.Net.FtpWebRequest::get_InUse()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FtpWebRequest_get_InUse_mBBB7CD6328BBE78BEB1E032E2D5A0708BF9BE208 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->____getRequestStreamStarted_17;
if (L_0)
{
goto IL_0010;
}
}
{
bool L_1 = __this->____getResponseStarted_18;
if (!L_1)
{
goto IL_0012;
}
}
IL_0010:
{
return (bool)1;
}
IL_0012:
{
return (bool)0;
}
}
// System.Void System.Net.FtpWebRequest::EnsureFtpWebResponse(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebRequest_EnsureFtpWebResponse_mB605C3DDD57BE29978FDA23340B5D280DD6FBAD9 (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, Exception_t* ___exception0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EmptyStream_t195E304A631BA5798F6FED9BD12ADFDD157BB7E5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3C448FF28DD2EF62D928054D74F4BEEC5B65ADFE);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral87B40F9D5C037647BD25D92BACEB7E078C14395A);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
bool V_1 = false;
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* V_2 = NULL;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* V_3 = NULL;
int64_t V_4 = 0;
int64_t G_B16_0 = 0;
{
FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* L_0 = __this->____ftpWebResponse_39;
if (!L_0)
{
goto IL_0028;
}
}
{
FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* L_1 = __this->____ftpWebResponse_39;
NullCheck(L_1);
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_2;
L_2 = VirtualFuncInvoker0< Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* >::Invoke(12 /* System.IO.Stream System.Net.WebResponse::GetResponseStream() */, L_1);
if (!((EmptyStream_t195E304A631BA5798F6FED9BD12ADFDD157BB7E5*)IsInstSealed((RuntimeObject*)L_2, EmptyStream_t195E304A631BA5798F6FED9BD12ADFDD157BB7E5_il2cpp_TypeInfo_var)))
{
goto IL_015b;
}
}
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_3 = __this->____stream_35;
if (!L_3)
{
goto IL_015b;
}
}
IL_0028:
{
RuntimeObject* L_4 = __this->____syncObject_12;
V_0 = L_4;
V_1 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0151:
{// begin finally (depth: 1)
{
bool L_5 = V_1;
if (!L_5)
{
goto IL_015a;
}
}
{
RuntimeObject* L_6 = V_0;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_6, NULL);
}
IL_015a:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
RuntimeObject* L_7 = V_0;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_7, (&V_1), NULL);
FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* L_8 = __this->____ftpWebResponse_39;
if (!L_8)
{
goto IL_0061_1;
}
}
{
FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* L_9 = __this->____ftpWebResponse_39;
NullCheck(L_9);
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_10;
L_10 = VirtualFuncInvoker0< Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* >::Invoke(12 /* System.IO.Stream System.Net.WebResponse::GetResponseStream() */, L_9);
if (!((EmptyStream_t195E304A631BA5798F6FED9BD12ADFDD157BB7E5*)IsInstSealed((RuntimeObject*)L_10, EmptyStream_t195E304A631BA5798F6FED9BD12ADFDD157BB7E5_il2cpp_TypeInfo_var)))
{
goto IL_014f_1;
}
}
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_11 = __this->____stream_35;
if (!L_11)
{
goto IL_014f_1;
}
}
IL_0061_1:
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_12 = __this->____stream_35;
V_2 = L_12;
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_13 = __this->____methodInfo_15;
NullCheck(L_13);
bool L_14;
L_14 = FtpMethodInfo_get_IsUpload_m34E090D800423923B895D914383F63EF51019CEC(L_13, NULL);
if (!L_14)
{
goto IL_0077_1;
}
}
{
V_2 = (Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE*)NULL;
}
IL_0077_1:
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_15 = __this->____stream_35;
if (!L_15)
{
goto IL_00bb_1;
}
}
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_16 = __this->____stream_35;
NullCheck(L_16);
bool L_17;
L_17 = VirtualFuncInvoker0< bool >::Invoke(7 /* System.Boolean System.IO.Stream::get_CanRead() */, L_16);
if (!L_17)
{
goto IL_00bb_1;
}
}
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_18 = __this->____stream_35;
NullCheck(L_18);
bool L_19;
L_19 = VirtualFuncInvoker0< bool >::Invoke(9 /* System.Boolean System.IO.Stream::get_CanTimeout() */, L_18);
if (!L_19)
{
goto IL_00bb_1;
}
}
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_20 = __this->____stream_35;
int32_t L_21;
L_21 = FtpWebRequest_get_ReadWriteTimeout_mB6F0DF85418ED4107E9AA448C46B289C3C36CECF_inline(__this, NULL);
NullCheck(L_20);
VirtualActionInvoker1< int32_t >::Invoke(15 /* System.Void System.IO.Stream::set_ReadTimeout(System.Int32) */, L_20, L_21);
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_22 = __this->____stream_35;
int32_t L_23;
L_23 = FtpWebRequest_get_ReadWriteTimeout_mB6F0DF85418ED4107E9AA448C46B289C3C36CECF_inline(__this, NULL);
NullCheck(L_22);
VirtualActionInvoker1< int32_t >::Invoke(17 /* System.Void System.IO.Stream::set_WriteTimeout(System.Int32) */, L_22, L_23);
}
IL_00bb_1:
{
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_24 = __this->____connection_34;
V_3 = L_24;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_25 = V_3;
if (L_25)
{
goto IL_00c9_1;
}
}
{
G_B16_0 = ((int64_t)(-1));
goto IL_00cf_1;
}
IL_00c9_1:
{
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_26 = V_3;
NullCheck(L_26);
int64_t L_27;
L_27 = FtpControlStream_get_ContentLength_mE520E47DE78B6FD130907992A13C5CE778286DC7_inline(L_26, NULL);
G_B16_0 = L_27;
}
IL_00cf_1:
{
V_4 = G_B16_0;
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_28 = V_2;
if (L_28)
{
goto IL_00de_1;
}
}
{
int64_t L_29 = V_4;
if ((((int64_t)L_29) >= ((int64_t)((int64_t)0))))
{
goto IL_00de_1;
}
}
{
V_4 = ((int64_t)0);
}
IL_00de_1:
{
FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* L_30 = __this->____ftpWebResponse_39;
if (!L_30)
{
goto IL_00f4_1;
}
}
{
FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* L_31 = __this->____ftpWebResponse_39;
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_32 = V_2;
NullCheck(L_31);
FtpWebResponse_SetResponseStream_mD0530FA146A88F6AB357A887FBC201FE58549039(L_31, L_32, NULL);
goto IL_015b;
}
IL_00f4_1:
{
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_33 = V_3;
if (!L_33)
{
goto IL_0131_1;
}
}
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_34 = V_2;
int64_t L_35 = V_4;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_36 = V_3;
NullCheck(L_36);
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_37;
L_37 = FtpControlStream_get_ResponseUri_mC488459D89E1783FDC6DCA0DFB2EEC465BE165F0_inline(L_36, NULL);
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_38 = V_3;
NullCheck(L_38);
int32_t L_39 = L_38->___StatusCode_37;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_40 = V_3;
NullCheck(L_40);
String_t* L_41 = L_40->___StatusLine_38;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_42 = V_3;
NullCheck(L_42);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_43;
L_43 = FtpControlStream_get_LastModified_m2C2AE6C823CB3CE01A1E62FF588781F535177258_inline(L_42, NULL);
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_44 = V_3;
NullCheck(L_44);
String_t* L_45;
L_45 = FtpControlStream_get_BannerMessage_m021AB6E64BF1E73206DDC72A6B6C54505B2E890C(L_44, NULL);
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_46 = V_3;
NullCheck(L_46);
String_t* L_47;
L_47 = FtpControlStream_get_WelcomeMessage_m90D94C1DFE0345CC50333F139A4A6F5FA424F05E(L_46, NULL);
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_48 = V_3;
NullCheck(L_48);
String_t* L_49;
L_49 = FtpControlStream_get_ExitMessage_m6E2214D55C11B97FC9FF7CCDC2F1072CDA01DF8F(L_48, NULL);
FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* L_50 = (FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77*)il2cpp_codegen_object_new(FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77_il2cpp_TypeInfo_var);
NullCheck(L_50);
FtpWebResponse__ctor_mAEF0E4781821381A13AE4E1B84179049E1E907A3(L_50, L_34, L_35, L_37, L_39, L_41, L_43, L_45, L_47, L_49, NULL);
__this->____ftpWebResponse_39 = L_50;
Il2CppCodeGenWriteBarrier((void**)(&__this->____ftpWebResponse_39), (void*)L_50);
goto IL_015b;
}
IL_0131_1:
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_51 = V_2;
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_52 = __this->____uri_14;
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_53;
L_53 = DateTime_get_Now_mC336498972C48439ADCD5C50D35FAE0F2A48B0F0(NULL);
FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* L_54 = (FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77*)il2cpp_codegen_object_new(FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77_il2cpp_TypeInfo_var);
NullCheck(L_54);
FtpWebResponse__ctor_mAEF0E4781821381A13AE4E1B84179049E1E907A3(L_54, L_51, ((int64_t)(-1)), L_52, 0, (String_t*)NULL, L_53, (String_t*)NULL, (String_t*)NULL, (String_t*)NULL, NULL);
__this->____ftpWebResponse_39 = L_54;
Il2CppCodeGenWriteBarrier((void**)(&__this->____ftpWebResponse_39), (void*)L_54);
}
IL_014f_1:
{
goto IL_015b;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_015b:
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
bool L_55;
L_55 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_55)
{
goto IL_0194;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_56 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_57 = L_56;
FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* L_58 = __this->____ftpWebResponse_39;
NullCheck(L_57);
ArrayElementTypeCheck (L_57, L_58);
(L_57)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_58);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_59 = L_57;
FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* L_60 = __this->____ftpWebResponse_39;
NullCheck(L_60);
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_61 = L_60->____responseStream_2;
NullCheck(L_59);
ArrayElementTypeCheck (L_59, L_61);
(L_59)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_61);
FormattableString_t4D7D221057108596F60CCCC83532037E2399BE0D* L_62;
L_62 = FormattableStringFactory_Create_mE112258142E627356203C9E0437E7CE21357A406(_stringLiteral87B40F9D5C037647BD25D92BACEB7E078C14395A, L_59, NULL);
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Info_m0BE7F613FC95552DCCAB55C55B0396C13D2DB513(__this, L_62, _stringLiteral3C448FF28DD2EF62D928054D74F4BEEC5B65ADFE, NULL);
}
IL_0194:
{
return;
}
}
// System.Void System.Net.FtpWebRequest::DataStreamClosed(System.Net.CloseExState)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebRequest_DataStreamClosed_m39A5D8350B2CC390416F67CE81165D4A69425CBD (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, int32_t ___closeState0, const RuntimeMethod* method)
{
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* V_0 = NULL;
{
int32_t L_0 = ___closeState0;
if (((int32_t)((int32_t)L_0&1)))
{
goto IL_0034;
}
}
{
bool L_1 = __this->____async_27;
if (L_1)
{
goto IL_0021;
}
}
{
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_2 = __this->____connection_34;
if (!L_2)
{
goto IL_0049;
}
}
{
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_3 = __this->____connection_34;
NullCheck(L_3);
CommandStream_CheckContinuePipeline_m2C62E98BD471E8CBF8CEE7C819762D324A13002A(L_3, NULL);
return;
}
IL_0021:
{
LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* L_4 = __this->____requestCompleteAsyncResult_43;
NullCheck(L_4);
RuntimeObject* L_5;
L_5 = LazyAsyncResult_InternalWaitForCompletion_mE52E38E8478ACA2C9344716035CCC46E5CA32A59(L_4, NULL);
FtpWebRequest_CheckError_m0161167F168C34FC6CB654FD038950680B4EB204(__this, NULL);
return;
}
IL_0034:
{
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_6 = __this->____connection_34;
V_0 = L_6;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_7 = V_0;
if (!L_7)
{
goto IL_0049;
}
}
{
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_8 = V_0;
WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* L_9;
L_9 = ExceptionHelper_get_RequestAbortedException_m3DF6599ECE269D18BE8B09099E6D8A9E6692B309(NULL);
NullCheck(L_8);
VirtualActionInvoker1< Exception_t* >::Invoke(37 /* System.Void System.Net.CommandStream::Abort(System.Exception) */, L_8, L_9);
}
IL_0049:
{
return;
}
}
// System.Void System.Net.FtpWebRequest::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebRequest__cctor_m828B5A5267951FE5E80B4AE153163FCBA4BF026D (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral37ED1B470D34983C51B7FCACFA5663E89C9196E2);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral864F0127710FB26053A56F852CCABCB8F269195F);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* L_1 = (NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313*)il2cpp_codegen_object_new(NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313_il2cpp_TypeInfo_var);
NullCheck(L_1);
NetworkCredential__ctor_m6AACF996F73DA7CE81D33CD301DF98362E7D3EB2(L_1, _stringLiteral37ED1B470D34983C51B7FCACFA5663E89C9196E2, _stringLiteral864F0127710FB26053A56F852CCABCB8F269195F, L_0, NULL);
((FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9_StaticFields*)il2cpp_codegen_static_fields_for(FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9_il2cpp_TypeInfo_var))->___s_defaultFtpNetworkCredential_44 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&((FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9_StaticFields*)il2cpp_codegen_static_fields_for(FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9_il2cpp_TypeInfo_var))->___s_defaultFtpNetworkCredential_44), (void*)L_1);
il2cpp_codegen_runtime_class_init_inline(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
Queue_t644DC21212BC432819522EDA395EB4562BE2CC47* L_2;
L_2 = TimerThread_GetOrCreateQueue_m461C7A3FC2CFAC20EF0C9EBEEF29D3C73BFF52F2(((int32_t)100000), NULL);
((FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9_StaticFields*)il2cpp_codegen_static_fields_for(FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9_il2cpp_TypeInfo_var))->___s_DefaultTimerQueue_45 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&((FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9_StaticFields*)il2cpp_codegen_static_fields_for(FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9_il2cpp_TypeInfo_var))->___s_DefaultTimerQueue_45), (void*)L_2);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#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.FtpWebRequest/<CreateConnectionAsync>d__86::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CCreateConnectionAsyncU3Ed__86_MoveNext_m60DE305F205F71E0F000095E3B3BA38D3156735C (U3CCreateConnectionAsyncU3Ed__86_t2A570F4B60E471D570D3866403BE7034E2929A6E* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CCreateConnectionAsyncU3Ed__86_t2A570F4B60E471D570D3866403BE7034E2929A6E_m482497952BF8CA8BCBB356F2AB0CD3302A9A57DD_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* V_1 = NULL;
String_t* V_2 = NULL;
int32_t V_3 = 0;
RuntimeObject* V_4 = NULL;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 V_5;
memset((&V_5), 0, sizeof(V_5));
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C V_6;
memset((&V_6), 0, sizeof(V_6));
Exception_t* V_7 = NULL;
Exception_t* V_8 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 2> __active_exceptions;
{
int32_t L_0 = __this->___U3CU3E1__state_0;
V_0 = L_0;
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_1 = __this->___U3CU3E4__this_2;
V_1 = L_1;
}
try
{// begin try (depth: 1)
{
int32_t L_2 = V_0;
if (!L_2)
{
goto IL_0034_1;
}
}
{
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_3 = V_1;
NullCheck(L_3);
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_4 = L_3->____uri_14;
NullCheck(L_4);
String_t* L_5;
L_5 = Uri_get_Host_m2C0E258C7DFF7A340049BE9BC08FF45E90988D8C(L_4, NULL);
V_2 = L_5;
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_6 = V_1;
NullCheck(L_6);
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_7 = L_6->____uri_14;
NullCheck(L_7);
int32_t L_8;
L_8 = Uri_get_Port_m7A1413AC9D9A2FC5DC8A7F89DF4A01ACA0241A02(L_7, NULL);
V_3 = L_8;
TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58* L_9 = (TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58*)il2cpp_codegen_object_new(TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58_il2cpp_TypeInfo_var);
NullCheck(L_9);
TcpClient__ctor_m709FAC4D5B9DDB279F9B97D90D3164B92E1F2C87(L_9, NULL);
__this->___U3CclientU3E5__2_3 = L_9;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CclientU3E5__2_3), (void*)L_9);
}
IL_0034_1:
{
}
try
{// begin try (depth: 2)
{
int32_t L_10 = V_0;
if (!L_10)
{
goto IL_0083_2;
}
}
{
TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58* L_11 = __this->___U3CclientU3E5__2_3;
String_t* L_12 = V_2;
int32_t L_13 = V_3;
NullCheck(L_11);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_14;
L_14 = TcpClient_ConnectAsync_m5CA2391FA5091EC441C8E94068F5EE61863659BF(L_11, L_12, L_13, NULL);
NullCheck(L_14);
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C L_15;
L_15 = Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4(L_14, (bool)0, NULL);
V_6 = L_15;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_16;
L_16 = ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline((&V_6), NULL);
V_5 = L_16;
bool L_17;
L_17 = ConfiguredTaskAwaiter_get_IsCompleted_mB189574F29658A59CC4C890B70538A9C5E835850((&V_5), NULL);
if (L_17)
{
goto IL_00a0_2;
}
}
{
int32_t L_18 = 0;
V_0 = L_18;
__this->___U3CU3E1__state_0 = L_18;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_19 = V_5;
__this->___U3CU3Eu__1_4 = L_19;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3Eu__1_4))->___m_task_0), (void*)NULL);
AsyncVoidMethodBuilder_t253E37B63E7E7B504878AE6563347C147F98EF2D* L_20 = (&__this->___U3CU3Et__builder_1);
AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CCreateConnectionAsyncU3Ed__86_t2A570F4B60E471D570D3866403BE7034E2929A6E_m482497952BF8CA8BCBB356F2AB0CD3302A9A57DD(L_20, (&V_5), __this, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CCreateConnectionAsyncU3Ed__86_t2A570F4B60E471D570D3866403BE7034E2929A6E_m482497952BF8CA8BCBB356F2AB0CD3302A9A57DD_RuntimeMethod_var);
goto IL_0108;
}
IL_0083_2:
{
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_21 = __this->___U3CU3Eu__1_4;
V_5 = L_21;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* L_22 = (&__this->___U3CU3Eu__1_4);
il2cpp_codegen_initobj(L_22, sizeof(ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618));
int32_t L_23 = (-1);
V_0 = L_23;
__this->___U3CU3E1__state_0 = L_23;
}
IL_00a0_2:
{
ConfiguredTaskAwaiter_GetResult_mD51FDD775D0CF7511FEE2B6C144DB003DE73AC26((&V_5), NULL);
TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58* L_24 = __this->___U3CclientU3E5__2_3;
FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* L_25 = (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888*)il2cpp_codegen_object_new(FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888_il2cpp_TypeInfo_var);
NullCheck(L_25);
FtpControlStream__ctor_m1A36E41268DE5D5E34A2D2053A3F8C2B24511402(L_25, L_24, NULL);
V_4 = L_25;
goto IL_00c4_1;
}
}// end try (depth: 2)
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_00b6_1;
}
throw e;
}
CATCH_00b6_1:
{// begin catch(System.Exception)
V_7 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_26 = V_1;
Exception_t* L_27 = V_7;
NullCheck(L_26);
Exception_t* L_28;
L_28 = FtpWebRequest_TranslateConnectException_mAB63B1B7A859BB09EAB69EB0C4429F41221954D7(L_26, L_27, NULL);
V_4 = L_28;
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_00c4_1;
}// end catch (depth: 2)
IL_00c4_1:
{
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_29 = V_1;
RuntimeObject* L_30 = V_4;
NullCheck(L_29);
FtpWebRequest_AsyncRequestCallback_m16A0D27F8F25B02C06FB35441D0FFC04B53B4EDF(L_29, L_30, NULL);
goto IL_00ee;
}
}// 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_00ce;
}
throw e;
}
CATCH_00ce:
{// begin catch(System.Exception)
V_8 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
__this->___U3CU3E1__state_0 = ((int32_t)-2);
__this->___U3CclientU3E5__2_3 = (TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CclientU3E5__2_3), (void*)(TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58*)NULL);
AsyncVoidMethodBuilder_t253E37B63E7E7B504878AE6563347C147F98EF2D* L_31 = (&__this->___U3CU3Et__builder_1);
Exception_t* L_32 = V_8;
AsyncVoidMethodBuilder_SetException_mD9A6F5D1A99A62AC9DF322901BFDE05193CB177B(L_31, L_32, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0108;
}// end catch (depth: 1)
IL_00ee:
{
__this->___U3CU3E1__state_0 = ((int32_t)-2);
__this->___U3CclientU3E5__2_3 = (TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CclientU3E5__2_3), (void*)(TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58*)NULL);
AsyncVoidMethodBuilder_t253E37B63E7E7B504878AE6563347C147F98EF2D* L_33 = (&__this->___U3CU3Et__builder_1);
AsyncVoidMethodBuilder_SetResult_m008490FDF057D5F5D871F537C7A58BE36027F3DC(L_33, NULL);
}
IL_0108:
{
return;
}
}
IL2CPP_EXTERN_C void U3CCreateConnectionAsyncU3Ed__86_MoveNext_m60DE305F205F71E0F000095E3B3BA38D3156735C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
U3CCreateConnectionAsyncU3Ed__86_t2A570F4B60E471D570D3866403BE7034E2929A6E* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<U3CCreateConnectionAsyncU3Ed__86_t2A570F4B60E471D570D3866403BE7034E2929A6E*>(__this + _offset);
U3CCreateConnectionAsyncU3Ed__86_MoveNext_m60DE305F205F71E0F000095E3B3BA38D3156735C(_thisAdjusted, method);
}
// System.Void System.Net.FtpWebRequest/<CreateConnectionAsync>d__86::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CCreateConnectionAsyncU3Ed__86_SetStateMachine_m95964DA1EC40A81F593B072FF797A49EA11C94EE (U3CCreateConnectionAsyncU3Ed__86_t2A570F4B60E471D570D3866403BE7034E2929A6E* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
{
AsyncVoidMethodBuilder_t253E37B63E7E7B504878AE6563347C147F98EF2D* L_0 = (&__this->___U3CU3Et__builder_1);
RuntimeObject* L_1 = ___stateMachine0;
AsyncVoidMethodBuilder_SetStateMachine_m48640FB81C34D4C2B5A5BBA7F5AE17DC50BF1A25(L_0, L_1, NULL);
return;
}
}
IL2CPP_EXTERN_C void U3CCreateConnectionAsyncU3Ed__86_SetStateMachine_m95964DA1EC40A81F593B072FF797A49EA11C94EE_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
U3CCreateConnectionAsyncU3Ed__86_t2A570F4B60E471D570D3866403BE7034E2929A6E* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<U3CCreateConnectionAsyncU3Ed__86_t2A570F4B60E471D570D3866403BE7034E2929A6E*>(__this + _offset);
U3CCreateConnectionAsyncU3Ed__86_SetStateMachine_m95964DA1EC40A81F593B072FF797A49EA11C94EE(_thisAdjusted, ___stateMachine0, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Net.FtpWebRequest/<>c::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m0AEF40FE4AAF8906461BEB8EA30A8408ACFA485C (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_tC2DEFD54496D8274D1995CC11D74A23339DC4447_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
U3CU3Ec_tC2DEFD54496D8274D1995CC11D74A23339DC4447* L_0 = (U3CU3Ec_tC2DEFD54496D8274D1995CC11D74A23339DC4447*)il2cpp_codegen_object_new(U3CU3Ec_tC2DEFD54496D8274D1995CC11D74A23339DC4447_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CU3Ec__ctor_mD37F7BFBDE41951EB965B2BE6B39FE005FEAA064(L_0, NULL);
((U3CU3Ec_tC2DEFD54496D8274D1995CC11D74A23339DC4447_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tC2DEFD54496D8274D1995CC11D74A23339DC4447_il2cpp_TypeInfo_var))->___U3CU3E9_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_tC2DEFD54496D8274D1995CC11D74A23339DC4447_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tC2DEFD54496D8274D1995CC11D74A23339DC4447_il2cpp_TypeInfo_var))->___U3CU3E9_0), (void*)L_0);
return;
}
}
// System.Void System.Net.FtpWebRequest/<>c::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mD37F7BFBDE41951EB965B2BE6B39FE005FEAA064 (U3CU3Ec_tC2DEFD54496D8274D1995CC11D74A23339DC4447* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Security.Cryptography.X509Certificates.X509CertificateCollection System.Net.FtpWebRequest/<>c::<get_ClientCertificates>b__114_0()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* U3CU3Ec_U3Cget_ClientCertificatesU3Eb__114_0_m40805B8FBE35ACD91B1128B347050725AEF2B700 (U3CU3Ec_tC2DEFD54496D8274D1995CC11D74A23339DC4447* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* L_0 = (X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE*)il2cpp_codegen_object_new(X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE_il2cpp_TypeInfo_var);
NullCheck(L_0);
X509CertificateCollection__ctor_m237A27DC157785FBC50EBAF3562AAF0907BF97EB(L_0, 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.Net.FtpWebRequestCreator::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebRequestCreator__ctor_m163216FA7A2018F0D581EC6AC6B83FB853DA514D (FtpWebRequestCreator_tC389DCEC82487414E888BDCCE1922A5A10937620* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Net.WebRequest System.Net.FtpWebRequestCreator::Create(System.Uri)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* FtpWebRequestCreator_Create_mA3D39BA636449D51EDB273828E43418690A5D73F (FtpWebRequestCreator_tC389DCEC82487414E888BDCCE1922A5A10937620* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___uri0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_0 = ___uri0;
FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* L_1 = (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9*)il2cpp_codegen_object_new(FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9_il2cpp_TypeInfo_var);
NullCheck(L_1);
FtpWebRequest__ctor_mE322968A58EF47DADD907F88EAA7FB4E00543B77(L_1, L_0, NULL);
return L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Net.FtpWebResponse::.ctor(System.IO.Stream,System.Int64,System.Uri,System.Net.FtpStatusCode,System.String,System.DateTime,System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebResponse__ctor_mAEF0E4781821381A13AE4E1B84179049E1E907A3 (FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___responseStream0, int64_t ___contentLength1, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___responseUri2, int32_t ___statusCode3, String_t* ___statusLine4, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___lastModified5, String_t* ___bannerMessage6, String_t* ___welcomeMessage7, String_t* ___exitMessage8, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
WebResponse__ctor_mC11AFFC628F1E49E53431A3129ADC7CEA012306B(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
bool L_0;
L_0 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_0)
{
goto IL_001b;
}
}
{
int64_t L_1 = ___contentLength1;
int64_t L_2 = L_1;
RuntimeObject* L_3 = Box(Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var, &L_2);
String_t* L_4 = ___statusLine4;
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Enter_mCD132529EA0CFD5742953E7C36292B7C89676859(__this, L_3, L_4, NULL);
}
IL_001b:
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_5 = ___responseStream0;
__this->____responseStream_2 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&__this->____responseStream_2), (void*)L_5);
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_6 = ___responseStream0;
if (L_6)
{
goto IL_002e;
}
}
{
int64_t L_7 = ___contentLength1;
if ((((int64_t)L_7) >= ((int64_t)((int64_t)0))))
{
goto IL_002e;
}
}
{
___contentLength1 = ((int64_t)0);
}
IL_002e:
{
int64_t L_8 = ___contentLength1;
__this->____contentLength_3 = L_8;
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_9 = ___responseUri2;
__this->____responseUri_4 = L_9;
Il2CppCodeGenWriteBarrier((void**)(&__this->____responseUri_4), (void*)L_9);
int32_t L_10 = ___statusCode3;
__this->____statusCode_5 = L_10;
String_t* L_11 = ___statusLine4;
__this->____statusLine_6 = L_11;
Il2CppCodeGenWriteBarrier((void**)(&__this->____statusLine_6), (void*)L_11);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_12 = ___lastModified5;
__this->____lastModified_8 = L_12;
String_t* L_13 = ___bannerMessage6;
__this->____bannerMessage_9 = L_13;
Il2CppCodeGenWriteBarrier((void**)(&__this->____bannerMessage_9), (void*)L_13);
String_t* L_14 = ___welcomeMessage7;
__this->____welcomeMessage_10 = L_14;
Il2CppCodeGenWriteBarrier((void**)(&__this->____welcomeMessage_10), (void*)L_14);
String_t* L_15 = ___exitMessage8;
__this->____exitMessage_11 = L_15;
Il2CppCodeGenWriteBarrier((void**)(&__this->____exitMessage_11), (void*)L_15);
return;
}
}
// System.Void System.Net.FtpWebResponse::UpdateStatus(System.Net.FtpStatusCode,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebResponse_UpdateStatus_mEB271B815F8918C8F4681301A2736BAC5C5877FB (FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* __this, int32_t ___statusCode0, String_t* ___statusLine1, String_t* ___exitMessage2, const RuntimeMethod* method)
{
{
int32_t L_0 = ___statusCode0;
__this->____statusCode_5 = L_0;
String_t* L_1 = ___statusLine1;
__this->____statusLine_6 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____statusLine_6), (void*)L_1);
String_t* L_2 = ___exitMessage2;
__this->____exitMessage_11 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->____exitMessage_11), (void*)L_2);
return;
}
}
// System.IO.Stream System.Net.FtpWebResponse::GetResponseStream()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* FtpWebResponse_GetResponseStream_m9D103F0115A561706EAD524F43F6CD7296C0231E (FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EmptyStream_t195E304A631BA5798F6FED9BD12ADFDD157BB7E5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* V_0 = NULL;
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* V_1 = NULL;
{
V_0 = (Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE*)NULL;
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0 = __this->____responseStream_2;
if (!L_0)
{
goto IL_0013;
}
}
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_1 = __this->____responseStream_2;
V_0 = L_1;
goto IL_0022;
}
IL_0013:
{
EmptyStream_t195E304A631BA5798F6FED9BD12ADFDD157BB7E5* L_2 = (EmptyStream_t195E304A631BA5798F6FED9BD12ADFDD157BB7E5*)il2cpp_codegen_object_new(EmptyStream_t195E304A631BA5798F6FED9BD12ADFDD157BB7E5_il2cpp_TypeInfo_var);
NullCheck(L_2);
EmptyStream__ctor_m4237F8952ABD99619B5D769C10165FD7330AB327(L_2, NULL);
EmptyStream_t195E304A631BA5798F6FED9BD12ADFDD157BB7E5* L_3 = L_2;
V_1 = L_3;
__this->____responseStream_2 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->____responseStream_2), (void*)L_3);
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_4 = V_1;
V_0 = L_4;
}
IL_0022:
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_5 = V_0;
return L_5;
}
}
// System.Void System.Net.FtpWebResponse::SetResponseStream(System.IO.Stream)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebResponse_SetResponseStream_mD0530FA146A88F6AB357A887FBC201FE58549039 (FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EmptyStream_t195E304A631BA5798F6FED9BD12ADFDD157BB7E5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0 = ___stream0;
if (!L_0)
{
goto IL_0013;
}
}
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_1 = ___stream0;
il2cpp_codegen_runtime_class_init_inline(Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_il2cpp_TypeInfo_var);
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_2 = ((Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_StaticFields*)il2cpp_codegen_static_fields_for(Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_il2cpp_TypeInfo_var))->___Null_1;
if ((((RuntimeObject*)(Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE*)L_1) == ((RuntimeObject*)(Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE*)L_2)))
{
goto IL_0013;
}
}
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_3 = ___stream0;
if (!((EmptyStream_t195E304A631BA5798F6FED9BD12ADFDD157BB7E5*)IsInstSealed((RuntimeObject*)L_3, EmptyStream_t195E304A631BA5798F6FED9BD12ADFDD157BB7E5_il2cpp_TypeInfo_var)))
{
goto IL_0014;
}
}
IL_0013:
{
return;
}
IL_0014:
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_4 = ___stream0;
__this->____responseStream_2 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->____responseStream_2), (void*)L_4);
return;
}
}
// System.Void System.Net.FtpWebResponse::Close()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FtpWebResponse_Close_m25B6EDDB1321F60623EB7ADA95D0A5A44DAE025B (FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6CE02DBF10772951A436ED08602B6C21AF7A06F2);
s_Il2CppMethodInitialized = true;
}
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* G_B4_0 = NULL;
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* G_B3_0 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
bool L_0;
L_0 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_0)
{
goto IL_0013;
}
}
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Enter_m5EF1ED6D39F9FF936F537BE4C4E293583E8A0494(__this, (FormattableString_t4D7D221057108596F60CCCC83532037E2399BE0D*)NULL, _stringLiteral6CE02DBF10772951A436ED08602B6C21AF7A06F2, NULL);
}
IL_0013:
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_1 = __this->____responseStream_2;
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_2 = L_1;
G_B3_0 = L_2;
if (L_2)
{
G_B4_0 = L_2;
goto IL_001f;
}
}
{
goto IL_0024;
}
IL_001f:
{
NullCheck(G_B4_0);
VirtualActionInvoker0::Invoke(18 /* System.Void System.IO.Stream::Close() */, G_B4_0);
}
IL_0024:
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
bool L_3;
L_3 = NetEventSource_get_IsEnabled_mF23BA9F90570906AAA1904CF647678C7C03F89F8(NULL);
if (!L_3)
{
goto IL_0037;
}
}
{
il2cpp_codegen_runtime_class_init_inline(NetEventSource_tCFE66E755A29D53FCCB21E599710B768BA6E0282_il2cpp_TypeInfo_var);
NetEventSource_Exit_m407F70ED0A9E9B586AB9FF87B9C15229468C9D36(__this, (FormattableString_t4D7D221057108596F60CCCC83532037E2399BE0D*)NULL, _stringLiteral6CE02DBF10772951A436ED08602B6C21AF7A06F2, NULL);
}
IL_0037:
{
return;
}
}
// System.Net.WebHeaderCollection System.Net.FtpWebResponse::get_Headers()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* FtpWebResponse_get_Headers_m0EC3B53A0804C6442101F3187F141C4ED1EA6D0F (FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* V_0 = NULL;
bool V_1 = false;
{
WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* L_0 = __this->____ftpRequestHeaders_7;
if (L_0)
{
goto IL_0033;
}
}
{
V_0 = __this;
V_1 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0029:
{// begin finally (depth: 1)
{
bool L_1 = V_1;
if (!L_1)
{
goto IL_0032;
}
}
{
FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* L_2 = V_0;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_2, NULL);
}
IL_0032:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* L_3 = V_0;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_3, (&V_1), NULL);
WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* L_4 = __this->____ftpRequestHeaders_7;
if (L_4)
{
goto IL_0027_1;
}
}
{
WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* L_5 = (WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8*)il2cpp_codegen_object_new(WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var);
NullCheck(L_5);
WebHeaderCollection__ctor_m9C77B3E5FD0A3637283AE2B7084F5ED5D8CD7369(L_5, NULL);
__this->____ftpRequestHeaders_7 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&__this->____ftpRequestHeaders_7), (void*)L_5);
}
IL_0027_1:
{
goto IL_0033;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0033:
{
WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* L_6 = __this->____ftpRequestHeaders_7;
return L_6;
}
}
// System.Uri System.Net.FtpWebResponse::get_ResponseUri()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* FtpWebResponse_get_ResponseUri_m6B5B02E5CF3F53F21100824DA95850AE1AF6A3B3 (FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* __this, const RuntimeMethod* method)
{
{
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_0 = __this->____responseUri_4;
return L_0;
}
}
// System.Net.FtpStatusCode System.Net.FtpWebResponse::get_StatusCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FtpWebResponse_get_StatusCode_m874357CEF43E1D988350EE6229F996F0F41DB795 (FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____statusCode_5;
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.FtpWebResponse/EmptyStream::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyStream__ctor_m4237F8952ABD99619B5D769C10165FD7330AB327 (EmptyStream_t195E304A631BA5798F6FED9BD12ADFDD157BB7E5* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m89F7B056854DF715AA3E2B78EB84D5FA3878E474_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0;
L_0 = Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m89F7B056854DF715AA3E2B78EB84D5FA3878E474_inline(Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m89F7B056854DF715AA3E2B78EB84D5FA3878E474_RuntimeMethod_var);
MemoryStream__ctor_m5BAFB4CE0C3BB700DB05907C334DD64834D75D1B(__this, L_0, (bool)0, 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.Net.NetworkStreamWrapper::.ctor(System.Net.Sockets.TcpClient)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkStreamWrapper__ctor_mCA258E4FB49C2E9CEA040D4ACBC9B5F70BD454EF (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58* ___client0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_il2cpp_TypeInfo_var);
Stream__ctor_mE8B074A0EBEB026FFF14062AB4B8A78E17EFFBF0(__this, NULL);
TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58* L_0 = ___client0;
__this->____client_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____client_4), (void*)L_0);
TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58* L_1 = ___client0;
NullCheck(L_1);
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_2;
L_2 = TcpClient_GetStream_mDD54336B17D1267BD593E0A1EB9EDF3E9506AEBA(L_1, NULL);
__this->____networkStream_5 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->____networkStream_5), (void*)L_2);
return;
}
}
// System.Boolean System.Net.NetworkStreamWrapper::get_UsingSecureStream()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkStreamWrapper_get_UsingSecureStream_m86E61049DC4265D855C187275D6536ACA6988A05 (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
return (bool)((!(((RuntimeObject*)(TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51*)((TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51*)IsInstClass((RuntimeObject*)L_0, TlsStream_tBA812F5D23939D0595B505C10F46BAB6EEB7CB51_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
}
}
// System.Net.IPAddress System.Net.NetworkStreamWrapper::get_ServerAddress()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* NetworkStreamWrapper_get_ServerAddress_mE6D714D4B29C89FFE2C975AAA6828FF02440D2C6 (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_0;
L_0 = NetworkStreamWrapper_get_Socket_m787036C2B47E611BD0F452A14DE461D8B5A30246(__this, NULL);
NullCheck(L_0);
EndPoint_t6233F4E2EB9F0F2D36E187F12BE050E6D8B73564* L_1;
L_1 = Socket_get_RemoteEndPoint_m6A626481D55A640C7654B91BFDE00199C2C95479(L_0, NULL);
NullCheck(((IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB*)CastclassClass((RuntimeObject*)L_1, IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB_il2cpp_TypeInfo_var)));
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* L_2;
L_2 = IPEndPoint_get_Address_m72F783CB76E10E9DBDF680CCC1DAAED201BABB1C_inline(((IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB*)CastclassClass((RuntimeObject*)L_1, IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB_il2cpp_TypeInfo_var)), NULL);
return L_2;
}
}
// System.Net.Sockets.Socket System.Net.NetworkStreamWrapper::get_Socket()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* NetworkStreamWrapper_get_Socket_m787036C2B47E611BD0F452A14DE461D8B5A30246 (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, const RuntimeMethod* method)
{
{
TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58* L_0 = __this->____client_4;
NullCheck(L_0);
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_1;
L_1 = TcpClient_get_Client_m38B7DCD73EB42C6BBE6340B5E4C0A8432C1140C0_inline(L_0, NULL);
return L_1;
}
}
// System.Net.Sockets.NetworkStream System.Net.NetworkStreamWrapper::get_NetworkStream()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* NetworkStreamWrapper_get_NetworkStream_m65DC14637198CEE4E9F9543EA3AC07168BA06488 (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
return L_0;
}
}
// System.Void System.Net.NetworkStreamWrapper::set_NetworkStream(System.Net.Sockets.NetworkStream)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkStreamWrapper_set_NetworkStream_m66A3B0C65E4DD88A79296C88CE4DC5912ED997A7 (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* ___value0, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = ___value0;
__this->____networkStream_5 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____networkStream_5), (void*)L_0);
return;
}
}
// System.Boolean System.Net.NetworkStreamWrapper::get_CanRead()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkStreamWrapper_get_CanRead_m9E3F88847C63CC45E08A4CA38347BA18E6F0C7DE (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(7 /* System.Boolean System.IO.Stream::get_CanRead() */, L_0);
return L_1;
}
}
// System.Boolean System.Net.NetworkStreamWrapper::get_CanSeek()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkStreamWrapper_get_CanSeek_mF81EC536A250C1136AFF2D8C772511D65BC2DDEF (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(8 /* System.Boolean System.IO.Stream::get_CanSeek() */, L_0);
return L_1;
}
}
// System.Boolean System.Net.NetworkStreamWrapper::get_CanWrite()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkStreamWrapper_get_CanWrite_m9512E5D900C0599D481133881057F66CCF229610 (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(10 /* System.Boolean System.IO.Stream::get_CanWrite() */, L_0);
return L_1;
}
}
// System.Boolean System.Net.NetworkStreamWrapper::get_CanTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkStreamWrapper_get_CanTimeout_mF4442A0A130CC0F5A653C915415879D0FB9673A3 (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(9 /* System.Boolean System.IO.Stream::get_CanTimeout() */, L_0);
return L_1;
}
}
// System.Int32 System.Net.NetworkStreamWrapper::get_ReadTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NetworkStreamWrapper_get_ReadTimeout_m38DC646B80AF1B0458ACE2A5FE167E12E1EFCAB8 (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(14 /* System.Int32 System.IO.Stream::get_ReadTimeout() */, L_0);
return L_1;
}
}
// System.Void System.Net.NetworkStreamWrapper::set_ReadTimeout(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkStreamWrapper_set_ReadTimeout_m1F0FAADB8CA55B27A565F086A3437A567AB2A773 (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
int32_t L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< int32_t >::Invoke(15 /* System.Void System.IO.Stream::set_ReadTimeout(System.Int32) */, L_0, L_1);
return;
}
}
// System.Int32 System.Net.NetworkStreamWrapper::get_WriteTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NetworkStreamWrapper_get_WriteTimeout_m95206E798C00EEBD7B43D48721E1997C74390E51 (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(16 /* System.Int32 System.IO.Stream::get_WriteTimeout() */, L_0);
return L_1;
}
}
// System.Void System.Net.NetworkStreamWrapper::set_WriteTimeout(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkStreamWrapper_set_WriteTimeout_mF38A5FB8D14BAD03B0B3697CF9D5EB860D095ECA (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
int32_t L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< int32_t >::Invoke(17 /* System.Void System.IO.Stream::set_WriteTimeout(System.Int32) */, L_0, L_1);
return;
}
}
// System.Int64 System.Net.NetworkStreamWrapper::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t NetworkStreamWrapper_get_Length_m3BAAACDBA6569575645415C83EB9583F9225584F (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
NullCheck(L_0);
int64_t L_1;
L_1 = VirtualFuncInvoker0< int64_t >::Invoke(11 /* System.Int64 System.IO.Stream::get_Length() */, L_0);
return L_1;
}
}
// System.Int64 System.Net.NetworkStreamWrapper::get_Position()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t NetworkStreamWrapper_get_Position_m3623B9694018445156B83888F5CD8DCE4BA26889 (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
NullCheck(L_0);
int64_t L_1;
L_1 = VirtualFuncInvoker0< int64_t >::Invoke(12 /* System.Int64 System.IO.Stream::get_Position() */, L_0);
return L_1;
}
}
// System.Void System.Net.NetworkStreamWrapper::set_Position(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkStreamWrapper_set_Position_m76431A4932CD8EA168ACE97C40908437B729681F (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, int64_t ___value0, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
int64_t L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< int64_t >::Invoke(13 /* System.Void System.IO.Stream::set_Position(System.Int64) */, L_0, L_1);
return;
}
}
// System.Int64 System.Net.NetworkStreamWrapper::Seek(System.Int64,System.IO.SeekOrigin)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t NetworkStreamWrapper_Seek_m6194A60CF7B41228714AE19BBD9D75555B720BCA (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, int64_t ___offset0, int32_t ___origin1, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
int64_t L_1 = ___offset0;
int32_t L_2 = ___origin1;
NullCheck(L_0);
int64_t L_3;
L_3 = VirtualFuncInvoker2< int64_t, int64_t, int32_t >::Invoke(30 /* System.Int64 System.IO.Stream::Seek(System.Int64,System.IO.SeekOrigin) */, L_0, L_1, L_2);
return L_3;
}
}
// System.Int32 System.Net.NetworkStreamWrapper::Read(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NetworkStreamWrapper_Read_m6FD99AB7C194754AA011AF6AB1F00A41D30F597B (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___offset1, int32_t ___size2, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___buffer0;
int32_t L_2 = ___offset1;
int32_t L_3 = ___size2;
NullCheck(L_0);
int32_t L_4;
L_4 = VirtualFuncInvoker3< int32_t, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(31 /* System.Int32 System.IO.Stream::Read(System.Byte[],System.Int32,System.Int32) */, L_0, L_1, L_2, L_3);
return L_4;
}
}
// System.Void System.Net.NetworkStreamWrapper::Write(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkStreamWrapper_Write_mA60BF942F19DF67A950CE07564E5F45457999C07 (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___offset1, int32_t ___size2, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___buffer0;
int32_t L_2 = ___offset1;
int32_t L_3 = ___size2;
NullCheck(L_0);
VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(34 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_0, L_1, L_2, L_3);
return;
}
}
// System.Void System.Net.NetworkStreamWrapper::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkStreamWrapper_Dispose_mB3DC621F9502A2251F9D30FFAB6D50F5B3C078A1 (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, bool ___disposing0, const RuntimeMethod* method)
{
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_000b:
{// begin finally (depth: 1)
bool L_0 = ___disposing0;
Stream_Dispose_m9B37BD21A57F8F2BD20EE353DE14405700810C5C(__this, L_0, NULL);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
bool L_1 = ___disposing0;
if (!L_1)
{
goto IL_0009_1;
}
}
{
NetworkStreamWrapper_CloseSocket_mAD2F12D01E0C1D3B6DD51D691F1C5CBA1A4D1467(__this, NULL);
}
IL_0009_1:
{
goto IL_0013;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0013:
{
return;
}
}
// System.Void System.Net.NetworkStreamWrapper::CloseSocket()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkStreamWrapper_CloseSocket_mAD2F12D01E0C1D3B6DD51D691F1C5CBA1A4D1467 (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
NullCheck(L_0);
VirtualActionInvoker0::Invoke(18 /* System.Void System.IO.Stream::Close() */, L_0);
TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58* L_1 = __this->____client_4;
NullCheck(L_1);
TcpClient_Dispose_m533DFCEE37B4299BBB5FACD9A98F8181EC2386D0(L_1, NULL);
return;
}
}
// System.Void System.Net.NetworkStreamWrapper::Close(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkStreamWrapper_Close_mD87894052ED65B641C61C3C068C61F36E0DBCC04 (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, int32_t ___timeout0, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
int32_t L_1 = ___timeout0;
NullCheck(L_0);
NetworkStream_Close_mF96B49D4D67AC90FEBA52F7A7642450C496F15A1(L_0, L_1, NULL);
TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58* L_2 = __this->____client_4;
NullCheck(L_2);
TcpClient_Dispose_m533DFCEE37B4299BBB5FACD9A98F8181EC2386D0(L_2, NULL);
return;
}
}
// System.IAsyncResult System.Net.NetworkStreamWrapper::BeginRead(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* NetworkStreamWrapper_BeginRead_m9DAD8D04D5A685983DD0DC913E6F3EC64A0467E9 (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___offset1, int32_t ___size2, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___callback3, RuntimeObject* ___state4, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___buffer0;
int32_t L_2 = ___offset1;
int32_t L_3 = ___size2;
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* L_4 = ___callback3;
RuntimeObject* L_5 = ___state4;
NullCheck(L_0);
RuntimeObject* L_6;
L_6 = VirtualFuncInvoker5< RuntimeObject*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C*, RuntimeObject* >::Invoke(22 /* System.IAsyncResult System.IO.Stream::BeginRead(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object) */, L_0, L_1, L_2, L_3, L_4, L_5);
return L_6;
}
}
// System.Int32 System.Net.NetworkStreamWrapper::EndRead(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NetworkStreamWrapper_EndRead_m6B52AC13E227B396A7D669137BBA5DF258158954 (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, RuntimeObject* ___asyncResult0, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
RuntimeObject* L_1 = ___asyncResult0;
NullCheck(L_0);
int32_t L_2;
L_2 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(23 /* System.Int32 System.IO.Stream::EndRead(System.IAsyncResult) */, L_0, L_1);
return L_2;
}
}
// System.Threading.Tasks.Task`1<System.Int32> System.Net.NetworkStreamWrapper::ReadAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t4C228DE57804012969575431CFF12D57C875552D* NetworkStreamWrapper_ReadAsync_m382936CA17D7F12FFB5D83D8F6EB159C34CF70B7 (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___offset1, int32_t ___count2, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken3, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___buffer0;
int32_t L_2 = ___offset1;
int32_t L_3 = ___count2;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_4 = ___cancellationToken3;
NullCheck(L_0);
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_5;
L_5 = VirtualFuncInvoker4< Task_1_t4C228DE57804012969575431CFF12D57C875552D*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED >::Invoke(24 /* System.Threading.Tasks.Task`1<System.Int32> 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.IAsyncResult System.Net.NetworkStreamWrapper::BeginWrite(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* NetworkStreamWrapper_BeginWrite_m8CCA440D2C97AA61CEF2EF205163A15B0BE055B3 (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___offset1, int32_t ___size2, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___callback3, RuntimeObject* ___state4, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___buffer0;
int32_t L_2 = ___offset1;
int32_t L_3 = ___size2;
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* L_4 = ___callback3;
RuntimeObject* L_5 = ___state4;
NullCheck(L_0);
RuntimeObject* L_6;
L_6 = VirtualFuncInvoker5< RuntimeObject*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C*, RuntimeObject* >::Invoke(26 /* System.IAsyncResult System.IO.Stream::BeginWrite(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object) */, L_0, L_1, L_2, L_3, L_4, L_5);
return L_6;
}
}
// System.Void System.Net.NetworkStreamWrapper::EndWrite(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkStreamWrapper_EndWrite_mF1202D2CBDF5B003113810B1ECCC151583F4B800 (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, RuntimeObject* ___asyncResult0, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
RuntimeObject* L_1 = ___asyncResult0;
NullCheck(L_0);
VirtualActionInvoker1< RuntimeObject* >::Invoke(27 /* System.Void System.IO.Stream::EndWrite(System.IAsyncResult) */, L_0, L_1);
return;
}
}
// System.Threading.Tasks.Task System.Net.NetworkStreamWrapper::WriteAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* NetworkStreamWrapper_WriteAsync_mB2FFD56F071DD38C6C019188479564EC664D72F6 (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___offset1, int32_t ___count2, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken3, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___buffer0;
int32_t L_2 = ___offset1;
int32_t L_3 = ___count2;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_4 = ___cancellationToken3;
NullCheck(L_0);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_5;
L_5 = VirtualFuncInvoker4< Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED >::Invoke(28 /* 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.Void System.Net.NetworkStreamWrapper::Flush()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkStreamWrapper_Flush_mF9DC6E0A66A95E743B38E0DDC4E3B833A66DD48C (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
NullCheck(L_0);
VirtualActionInvoker0::Invoke(20 /* System.Void System.IO.Stream::Flush() */, L_0);
return;
}
}
// System.Threading.Tasks.Task System.Net.NetworkStreamWrapper::FlushAsync(System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* NetworkStreamWrapper_FlushAsync_mC50DB25E23FE1DD253EF6F34595B451F31D38721 (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken0, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_1 = ___cancellationToken0;
NullCheck(L_0);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_2;
L_2 = VirtualFuncInvoker1< Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED >::Invoke(21 /* System.Threading.Tasks.Task System.IO.Stream::FlushAsync(System.Threading.CancellationToken) */, L_0, L_1);
return L_2;
}
}
// System.Void System.Net.NetworkStreamWrapper::SetSocketTimeoutOption(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkStreamWrapper_SetSocketTimeoutOption_mEF49FAF0A48C4B65816D8BF28868B897835419AF (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, int32_t ___timeout0, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
int32_t L_1 = ___timeout0;
NullCheck(L_0);
VirtualActionInvoker1< int32_t >::Invoke(15 /* System.Void System.IO.Stream::set_ReadTimeout(System.Int32) */, L_0, L_1);
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_2 = __this->____networkStream_5;
int32_t L_3 = ___timeout0;
NullCheck(L_2);
VirtualActionInvoker1< int32_t >::Invoke(17 /* System.Void System.IO.Stream::set_WriteTimeout(System.Int32) */, L_2, 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.Net.Authorization::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Authorization__ctor_m2B6F7C3A1C77B4B4532B4964BF214BF957694268 (Authorization_t7F109103AF7366A418844BF604458413434F60D4* __this, String_t* ___token0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidationHelper_tA6AE681FCDFA9BE8E3EF31C28A624AADF973A25C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
String_t* L_0 = ___token0;
il2cpp_codegen_runtime_class_init_inline(ValidationHelper_tA6AE681FCDFA9BE8E3EF31C28A624AADF973A25C_il2cpp_TypeInfo_var);
String_t* L_1;
L_1 = ValidationHelper_MakeStringNull_mFC25A67C52461BFCE2F30DB71823434BE37895C0(L_0, NULL);
__this->___m_Message_0 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Message_0), (void*)L_1);
__this->___m_Complete_1 = (bool)1;
return;
}
}
// System.Void System.Net.Authorization::.ctor(System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Authorization__ctor_m7EC4EAC7186BC2664B45DDCDA917BA6C8315CBDC (Authorization_t7F109103AF7366A418844BF604458413434F60D4* __this, String_t* ___token0, bool ___finished1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidationHelper_tA6AE681FCDFA9BE8E3EF31C28A624AADF973A25C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
String_t* L_0 = ___token0;
il2cpp_codegen_runtime_class_init_inline(ValidationHelper_tA6AE681FCDFA9BE8E3EF31C28A624AADF973A25C_il2cpp_TypeInfo_var);
String_t* L_1;
L_1 = ValidationHelper_MakeStringNull_mFC25A67C52461BFCE2F30DB71823434BE37895C0(L_0, NULL);
__this->___m_Message_0 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Message_0), (void*)L_1);
bool L_2 = ___finished1;
__this->___m_Complete_1 = L_2;
return;
}
}
// System.String System.Net.Authorization::get_Message()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Authorization_get_Message_m84C00416C183E8A3B06E37052923C90F486F529A (Authorization_t7F109103AF7366A418844BF604458413434F60D4* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___m_Message_0;
return L_0;
}
}
// System.Boolean System.Net.Authorization::get_Complete()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Authorization_get_Complete_m43C3AC5D83009442D51B959623D46AD1ABA2AEB8 (Authorization_t7F109103AF7366A418844BF604458413434F60D4* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___m_Complete_1;
return L_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.ICredentials System.Net.CredentialCache::get_DefaultCredentials()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CredentialCache_get_DefaultCredentials_mFD45861A5151E546B6DF04F6D527E82214EA4143 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SystemNetworkCredential_tFBEE5F9E93DECB97C8622974DD2F2EBCB0CBD4FF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(SystemNetworkCredential_tFBEE5F9E93DECB97C8622974DD2F2EBCB0CBD4FF_il2cpp_TypeInfo_var);
SystemNetworkCredential_tFBEE5F9E93DECB97C8622974DD2F2EBCB0CBD4FF* L_0 = ((SystemNetworkCredential_tFBEE5F9E93DECB97C8622974DD2F2EBCB0CBD4FF_StaticFields*)il2cpp_codegen_static_fields_for(SystemNetworkCredential_tFBEE5F9E93DECB97C8622974DD2F2EBCB0CBD4FF_il2cpp_TypeInfo_var))->___defaultCredential_3;
return L_0;
}
}
// System.Net.NetworkCredential System.Net.CredentialCache::get_DefaultNetworkCredentials()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* CredentialCache_get_DefaultNetworkCredentials_m5C67A21E1BD70EE41FA927D7603622FBA7F10BA6 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SystemNetworkCredential_tFBEE5F9E93DECB97C8622974DD2F2EBCB0CBD4FF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(SystemNetworkCredential_tFBEE5F9E93DECB97C8622974DD2F2EBCB0CBD4FF_il2cpp_TypeInfo_var);
SystemNetworkCredential_tFBEE5F9E93DECB97C8622974DD2F2EBCB0CBD4FF* L_0 = ((SystemNetworkCredential_tFBEE5F9E93DECB97C8622974DD2F2EBCB0CBD4FF_StaticFields*)il2cpp_codegen_static_fields_for(SystemNetworkCredential_tFBEE5F9E93DECB97C8622974DD2F2EBCB0CBD4FF_il2cpp_TypeInfo_var))->___defaultCredential_3;
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.SystemNetworkCredential::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemNetworkCredential__ctor_m6C0643A3B325903C6E20EEC9940A6646F4AE77B6 (SystemNetworkCredential_tFBEE5F9E93DECB97C8622974DD2F2EBCB0CBD4FF* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
NetworkCredential__ctor_m6AACF996F73DA7CE81D33CD301DF98362E7D3EB2(__this, L_0, L_1, L_2, NULL);
return;
}
}
// System.Void System.Net.SystemNetworkCredential::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemNetworkCredential__cctor_mC2950C5826DFEFF2A593B0E00769DCAF75257AF3 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SystemNetworkCredential_tFBEE5F9E93DECB97C8622974DD2F2EBCB0CBD4FF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
SystemNetworkCredential_tFBEE5F9E93DECB97C8622974DD2F2EBCB0CBD4FF* L_0 = (SystemNetworkCredential_tFBEE5F9E93DECB97C8622974DD2F2EBCB0CBD4FF*)il2cpp_codegen_object_new(SystemNetworkCredential_tFBEE5F9E93DECB97C8622974DD2F2EBCB0CBD4FF_il2cpp_TypeInfo_var);
NullCheck(L_0);
SystemNetworkCredential__ctor_m6C0643A3B325903C6E20EEC9940A6646F4AE77B6(L_0, NULL);
((SystemNetworkCredential_tFBEE5F9E93DECB97C8622974DD2F2EBCB0CBD4FF_StaticFields*)il2cpp_codegen_static_fields_for(SystemNetworkCredential_tFBEE5F9E93DECB97C8622974DD2F2EBCB0CBD4FF_il2cpp_TypeInfo_var))->___defaultCredential_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((SystemNetworkCredential_tFBEE5F9E93DECB97C8622974DD2F2EBCB0CBD4FF_StaticFields*)il2cpp_codegen_static_fields_for(SystemNetworkCredential_tFBEE5F9E93DECB97C8622974DD2F2EBCB0CBD4FF_il2cpp_TypeInfo_var))->___defaultCredential_3), (void*)L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Sockets.AddressFamily System.Net.EndPoint::get_AddressFamily()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EndPoint_get_AddressFamily_m44AC2CD5C6868280BEBABF4090D3AFCA2E254537 (EndPoint_t6233F4E2EB9F0F2D36E187F12BE050E6D8B73564* __this, const RuntimeMethod* method)
{
{
NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_0;
L_0 = ExceptionHelper_get_PropertyNotImplementedException_m5029CA867B083BAEE8D3D4577B1F571FEDDDE590(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EndPoint_get_AddressFamily_m44AC2CD5C6868280BEBABF4090D3AFCA2E254537_RuntimeMethod_var)));
}
}
// System.Net.SocketAddress System.Net.EndPoint::Serialize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SocketAddress_tAB4BC630E51E2241E607F4070DA1AEE00B442A03* EndPoint_Serialize_mB045A92E21967EF34B1D5A32EF4E645CC1871BA3 (EndPoint_t6233F4E2EB9F0F2D36E187F12BE050E6D8B73564* __this, const RuntimeMethod* method)
{
{
NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_0;
L_0 = ExceptionHelper_get_MethodNotImplementedException_mF8678EE4622F1BBEEC6CDD54293E4D1B40A6D251(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EndPoint_Serialize_mB045A92E21967EF34B1D5A32EF4E645CC1871BA3_RuntimeMethod_var)));
}
}
// System.Net.EndPoint System.Net.EndPoint::Create(System.Net.SocketAddress)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EndPoint_t6233F4E2EB9F0F2D36E187F12BE050E6D8B73564* EndPoint_Create_m09DA8D1A544D556AD0A1A08E3B0CBE9052615983 (EndPoint_t6233F4E2EB9F0F2D36E187F12BE050E6D8B73564* __this, SocketAddress_tAB4BC630E51E2241E607F4070DA1AEE00B442A03* ___socketAddress0, const RuntimeMethod* method)
{
{
NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_0;
L_0 = ExceptionHelper_get_MethodNotImplementedException_mF8678EE4622F1BBEEC6CDD54293E4D1B40A6D251(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EndPoint_Create_m09DA8D1A544D556AD0A1A08E3B0CBE9052615983_RuntimeMethod_var)));
}
}
// System.Void System.Net.EndPoint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EndPoint__ctor_m4CD393A3D801B696473199A2D2F7EC80E8036F5D (EndPoint_t6233F4E2EB9F0F2D36E187F12BE050E6D8B73564* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String System.Net.IPHostEntry::get_HostName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IPHostEntry_get_HostName_m04050E3890C11BC5CB02BF48FBDD8AB4938FC390 (IPHostEntry_tAAAEB0F40DB9F28BE601B5FE7DA1D76191C94490* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___hostName_0;
return L_0;
}
}
// System.Void System.Net.IPHostEntry::set_HostName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IPHostEntry_set_HostName_m4218E75B9A5D143AF361FEC708ED40CD3829920A (IPHostEntry_tAAAEB0F40DB9F28BE601B5FE7DA1D76191C94490* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___hostName_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___hostName_0), (void*)L_0);
return;
}
}
// System.Void System.Net.IPHostEntry::set_Aliases(System.String[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IPHostEntry_set_Aliases_mCAB3DC9E9B474EA49C1A80E8010FF4932316B266 (IPHostEntry_tAAAEB0F40DB9F28BE601B5FE7DA1D76191C94490* __this, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___value0, const RuntimeMethod* method)
{
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = ___value0;
__this->___aliases_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___aliases_1), (void*)L_0);
return;
}
}
// System.Net.IPAddress[] System.Net.IPHostEntry::get_AddressList()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D* IPHostEntry_get_AddressList_m9D14D52EFB41C53C9C4A36D438E1333A99B7AA71 (IPHostEntry_tAAAEB0F40DB9F28BE601B5FE7DA1D76191C94490* __this, const RuntimeMethod* method)
{
{
IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D* L_0 = __this->___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_mFC955717B52B0D1DC71059FC7B2ED6659E4729D8 (IPHostEntry_tAAAEB0F40DB9F28BE601B5FE7DA1D76191C94490* __this, IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D* ___value0, const RuntimeMethod* method)
{
{
IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D* L_0 = ___value0;
__this->___addressList_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___addressList_2), (void*)L_0);
return;
}
}
// System.Void System.Net.IPHostEntry::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IPHostEntry__ctor_mF2D2692AFFD3ED81CAF30F4CD42B7B0843952398 (IPHostEntry_tAAAEB0F40DB9F28BE601B5FE7DA1D76191C94490* __this, const RuntimeMethod* method)
{
{
__this->___isTrustedHost_3 = (bool)1;
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Net.InternalException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalException__ctor_m20A09E66E185FB1449C71227304AF40936C8011A (InternalException_tBD5CDE9133BB628E33CE7F16F6396FCD739C1934* __this, const RuntimeMethod* method)
{
{
SystemException__ctor_mB30C3C4B8AB4DF43F4A453C97CCA76DC4AE63B80(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean System.Net.NclUtilities::IsFatal(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NclUtilities_IsFatal_m0B4EB55E9621759F8177F84710FBA8AB09074DB0 (Exception_t* ___exception0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StackOverflowException_t938C753F2BB15F526FD564CCF52061BBE5BC97C9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ThreadAbortException_tCA1833E5D49782387EDF3BDCBDB90597B273F3C4_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Exception_t* L_0 = ___exception0;
if (!L_0)
{
goto IL_001f;
}
}
{
Exception_t* L_1 = ___exception0;
if (((OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F*)IsInstClass((RuntimeObject*)L_1, OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F_il2cpp_TypeInfo_var)))
{
goto IL_001d;
}
}
{
Exception_t* L_2 = ___exception0;
if (((StackOverflowException_t938C753F2BB15F526FD564CCF52061BBE5BC97C9*)IsInstSealed((RuntimeObject*)L_2, StackOverflowException_t938C753F2BB15F526FD564CCF52061BBE5BC97C9_il2cpp_TypeInfo_var)))
{
goto IL_001d;
}
}
{
Exception_t* L_3 = ___exception0;
return (bool)((!(((RuntimeObject*)(ThreadAbortException_tCA1833E5D49782387EDF3BDCBDB90597B273F3C4*)((ThreadAbortException_tCA1833E5D49782387EDF3BDCBDB90597B273F3C4*)IsInstSealed((RuntimeObject*)L_3, ThreadAbortException_tCA1833E5D49782387EDF3BDCBDB90597B273F3C4_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
}
IL_001d:
{
return (bool)1;
}
IL_001f:
{
return (bool)0;
}
}
// System.Boolean System.Net.NclUtilities::IsAddressLocal(System.Net.IPAddress)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NclUtilities_IsAddressLocal_mA952662DF0A2D8BF1AFF9E74B1FF46DBCA90812F (IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* ___ipAddress0, const RuntimeMethod* method)
{
IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D* V_0 = NULL;
int32_t V_1 = 0;
{
IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D* L_0;
L_0 = NclUtilities_get_LocalAddresses_mC5E3B1D849F83965C3F09ECF963B3CB252A8F22F(NULL);
V_0 = L_0;
V_1 = 0;
goto IL_001c;
}
IL_000a:
{
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* L_1 = ___ipAddress0;
IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D* L_2 = V_0;
int32_t L_3 = V_1;
NullCheck(L_2);
int32_t L_4 = L_3;
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
NullCheck(L_1);
bool L_6;
L_6 = IPAddress_Equals_mC4514B3B7F9B95B79A1121706C115AECE61636C7(L_1, L_5, (bool)0, NULL);
if (!L_6)
{
goto IL_0018;
}
}
{
return (bool)1;
}
IL_0018:
{
int32_t L_7 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_7, 1));
}
IL_001c:
{
int32_t L_8 = V_1;
IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D* L_9 = V_0;
NullCheck(L_9);
if ((((int32_t)L_8) < ((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))))
{
goto IL_000a;
}
}
{
return (bool)0;
}
}
// System.Net.IPHostEntry System.Net.NclUtilities::GetLocalHost()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IPHostEntry_tAAAEB0F40DB9F28BE601B5FE7DA1D76191C94490* NclUtilities_GetLocalHost_m7C77756A35C2F3CC268016902FA61CF88C5AD56F (const RuntimeMethod* method)
{
{
String_t* L_0;
L_0 = Dns_GetHostName_mF728787FF8A38620054B934FD08E021460A7C14D(NULL);
IPHostEntry_tAAAEB0F40DB9F28BE601B5FE7DA1D76191C94490* L_1;
L_1 = Dns_GetHostByName_m554E787DE7A847C2730E1BE8F74C56E9594C3D3F(L_0, NULL);
return L_1;
}
}
// System.Net.IPAddress[] System.Net.NclUtilities::get_LocalAddresses()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D* NclUtilities_get_LocalAddresses_mC5E3B1D849F83965C3F09ECF963B3CB252A8F22F (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m699E34C337E17EB975FB980A66567C9A63EC1681_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m2177AB693CC65C0750BC64B79841B0949E04F4B2_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mF378E129EAD0E8D26056E37C1A436D320BD0043D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m655BAF14F34AC465AE933AC35F8441AA5A6D9B1C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m286EF5D0B3E9D36E9D972D64A0BFCECBCF7B2B7E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m4DCCB8CBFA1558C1187D5E5FADF609094C917012_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m69C39631522BEA9DD1F2069A0D201536156AD264_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t7327FFE7269D37546789F1E11A915BE2192559DA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NclUtilities_t631EDB0996FE8DEB88C069D5A050B9809E23DA8D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D* V_0 = NULL;
RuntimeObject* V_1 = NULL;
bool V_2 = false;
List_1_t7327FFE7269D37546789F1E11A915BE2192559DA* V_3 = NULL;
int32_t V_4 = 0;
IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D* V_5 = NULL;
IPHostEntry_tAAAEB0F40DB9F28BE601B5FE7DA1D76191C94490* V_6 = NULL;
IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D* V_7 = NULL;
int32_t V_8 = 0;
IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D* V_9 = NULL;
int32_t V_10 = 0;
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* V_11 = NULL;
Enumerator_tB8AEF8B79C74FADAB88026E46ED0B2EBEDC85E0B V_12;
memset((&V_12), 0, sizeof(V_12));
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* V_13 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D* L_0 = ((NclUtilities_t631EDB0996FE8DEB88C069D5A050B9809E23DA8D_StaticFields*)il2cpp_codegen_static_fields_for(NclUtilities_t631EDB0996FE8DEB88C069D5A050B9809E23DA8D_il2cpp_TypeInfo_var))->____LocalAddresses_0;
il2cpp_codegen_memory_barrier();
V_0 = L_0;
IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D* L_1 = V_0;
if (!L_1)
{
goto IL_000d;
}
}
{
IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D* L_2 = V_0;
return L_2;
}
IL_000d:
{
RuntimeObject* L_3;
L_3 = NclUtilities_get_LocalAddressesLock_mDF3BAF033A2D11D70D5703B65302AB09525F7880(NULL);
V_1 = L_3;
V_2 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00fe:
{// begin finally (depth: 1)
{
bool L_4 = V_2;
if (!L_4)
{
goto IL_0107;
}
}
{
RuntimeObject* L_5 = V_1;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_5, NULL);
}
IL_0107:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
RuntimeObject* L_6 = V_1;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_6, (&V_2), NULL);
IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D* L_7 = ((NclUtilities_t631EDB0996FE8DEB88C069D5A050B9809E23DA8D_StaticFields*)il2cpp_codegen_static_fields_for(NclUtilities_t631EDB0996FE8DEB88C069D5A050B9809E23DA8D_il2cpp_TypeInfo_var))->____LocalAddresses_0;
il2cpp_codegen_memory_barrier();
V_0 = L_7;
IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D* L_8 = V_0;
if (!L_8)
{
goto IL_0030_1;
}
}
{
IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D* L_9 = V_0;
V_5 = L_9;
goto IL_0108;
}
IL_0030_1:
{
List_1_t7327FFE7269D37546789F1E11A915BE2192559DA* L_10 = (List_1_t7327FFE7269D37546789F1E11A915BE2192559DA*)il2cpp_codegen_object_new(List_1_t7327FFE7269D37546789F1E11A915BE2192559DA_il2cpp_TypeInfo_var);
NullCheck(L_10);
List_1__ctor_m4DCCB8CBFA1558C1187D5E5FADF609094C917012(L_10, List_1__ctor_m4DCCB8CBFA1558C1187D5E5FADF609094C917012_RuntimeMethod_var);
V_3 = L_10;
}
try
{// begin try (depth: 2)
{
IPHostEntry_tAAAEB0F40DB9F28BE601B5FE7DA1D76191C94490* L_11;
L_11 = NclUtilities_GetLocalHost_m7C77756A35C2F3CC268016902FA61CF88C5AD56F(NULL);
V_6 = L_11;
IPHostEntry_tAAAEB0F40DB9F28BE601B5FE7DA1D76191C94490* L_12 = V_6;
if (!L_12)
{
goto IL_00a5_2;
}
}
{
IPHostEntry_tAAAEB0F40DB9F28BE601B5FE7DA1D76191C94490* L_13 = V_6;
NullCheck(L_13);
String_t* L_14;
L_14 = IPHostEntry_get_HostName_m04050E3890C11BC5CB02BF48FBDD8AB4938FC390_inline(L_13, NULL);
if (!L_14)
{
goto IL_0072_2;
}
}
{
IPHostEntry_tAAAEB0F40DB9F28BE601B5FE7DA1D76191C94490* L_15 = V_6;
NullCheck(L_15);
String_t* L_16;
L_16 = IPHostEntry_get_HostName_m04050E3890C11BC5CB02BF48FBDD8AB4938FC390_inline(L_15, NULL);
NullCheck(L_16);
int32_t L_17;
L_17 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_16, ((int32_t)46), NULL);
V_8 = L_17;
int32_t L_18 = V_8;
if ((((int32_t)L_18) == ((int32_t)(-1))))
{
goto IL_0072_2;
}
}
{
IPHostEntry_tAAAEB0F40DB9F28BE601B5FE7DA1D76191C94490* L_19 = V_6;
NullCheck(L_19);
String_t* L_20;
L_20 = IPHostEntry_get_HostName_m04050E3890C11BC5CB02BF48FBDD8AB4938FC390_inline(L_19, NULL);
int32_t L_21 = V_8;
NullCheck(L_20);
String_t* L_22;
L_22 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_20, L_21, NULL);
((NclUtilities_t631EDB0996FE8DEB88C069D5A050B9809E23DA8D_StaticFields*)il2cpp_codegen_static_fields_for(NclUtilities_t631EDB0996FE8DEB88C069D5A050B9809E23DA8D_il2cpp_TypeInfo_var))->____LocalDomainName_2 = L_22;
Il2CppCodeGenWriteBarrier((void**)(&((NclUtilities_t631EDB0996FE8DEB88C069D5A050B9809E23DA8D_StaticFields*)il2cpp_codegen_static_fields_for(NclUtilities_t631EDB0996FE8DEB88C069D5A050B9809E23DA8D_il2cpp_TypeInfo_var))->____LocalDomainName_2), (void*)L_22);
}
IL_0072_2:
{
IPHostEntry_tAAAEB0F40DB9F28BE601B5FE7DA1D76191C94490* L_23 = V_6;
NullCheck(L_23);
IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D* L_24;
L_24 = IPHostEntry_get_AddressList_m9D14D52EFB41C53C9C4A36D438E1333A99B7AA71_inline(L_23, NULL);
V_7 = L_24;
IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D* L_25 = V_7;
if (!L_25)
{
goto IL_00a5_2;
}
}
{
IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D* L_26 = V_7;
V_9 = L_26;
V_10 = 0;
goto IL_009d_2;
}
IL_0088_2:
{
IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D* L_27 = V_9;
int32_t L_28 = V_10;
NullCheck(L_27);
int32_t L_29 = L_28;
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* L_30 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_29));
V_11 = L_30;
List_1_t7327FFE7269D37546789F1E11A915BE2192559DA* L_31 = V_3;
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* L_32 = V_11;
NullCheck(L_31);
List_1_Add_m655BAF14F34AC465AE933AC35F8441AA5A6D9B1C_inline(L_31, L_32, List_1_Add_m655BAF14F34AC465AE933AC35F8441AA5A6D9B1C_RuntimeMethod_var);
int32_t L_33 = V_10;
V_10 = ((int32_t)il2cpp_codegen_add(L_33, 1));
}
IL_009d_2:
{
int32_t L_34 = V_10;
IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D* L_35 = V_9;
NullCheck(L_35);
if ((((int32_t)L_34) < ((int32_t)((int32_t)(((RuntimeArray*)L_35)->max_length)))))
{
goto IL_0088_2;
}
}
IL_00a5_2:
{
goto IL_00aa_1;
}
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_00a7_1;
}
throw e;
}
CATCH_00a7_1:
{// begin catch(System.Object)
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_00aa_1;
}// end catch (depth: 2)
IL_00aa_1:
{
List_1_t7327FFE7269D37546789F1E11A915BE2192559DA* L_36 = V_3;
NullCheck(L_36);
int32_t L_37;
L_37 = List_1_get_Count_m69C39631522BEA9DD1F2069A0D201536156AD264_inline(L_36, List_1_get_Count_m69C39631522BEA9DD1F2069A0D201536156AD264_RuntimeMethod_var);
IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D* L_38 = (IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D*)(IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D*)SZArrayNew(IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D_il2cpp_TypeInfo_var, (uint32_t)L_37);
V_0 = L_38;
V_4 = 0;
List_1_t7327FFE7269D37546789F1E11A915BE2192559DA* L_39 = V_3;
NullCheck(L_39);
Enumerator_tB8AEF8B79C74FADAB88026E46ED0B2EBEDC85E0B L_40;
L_40 = List_1_GetEnumerator_m286EF5D0B3E9D36E9D972D64A0BFCECBCF7B2B7E(L_39, List_1_GetEnumerator_m286EF5D0B3E9D36E9D972D64A0BFCECBCF7B2B7E_RuntimeMethod_var);
V_12 = L_40;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00e3_1:
{// begin finally (depth: 2)
Enumerator_Dispose_m699E34C337E17EB975FB980A66567C9A63EC1681((&V_12), Enumerator_Dispose_m699E34C337E17EB975FB980A66567C9A63EC1681_RuntimeMethod_var);
return;
}// end finally (depth: 2)
});
try
{// begin try (depth: 2)
{
goto IL_00d8_2;
}
IL_00c3_2:
{
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* L_41;
L_41 = Enumerator_get_Current_mF378E129EAD0E8D26056E37C1A436D320BD0043D_inline((&V_12), Enumerator_get_Current_mF378E129EAD0E8D26056E37C1A436D320BD0043D_RuntimeMethod_var);
V_13 = L_41;
IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D* L_42 = V_0;
int32_t L_43 = V_4;
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* L_44 = V_13;
NullCheck(L_42);
ArrayElementTypeCheck (L_42, L_44);
(L_42)->SetAt(static_cast<il2cpp_array_size_t>(L_43), (IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484*)L_44);
int32_t L_45 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add(L_45, 1));
}
IL_00d8_2:
{
bool L_46;
L_46 = Enumerator_MoveNext_m2177AB693CC65C0750BC64B79841B0949E04F4B2((&V_12), Enumerator_MoveNext_m2177AB693CC65C0750BC64B79841B0949E04F4B2_RuntimeMethod_var);
if (L_46)
{
goto IL_00c3_2;
}
}
{
goto IL_00f1_1;
}
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00f1_1:
{
IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D* L_47 = V_0;
il2cpp_codegen_memory_barrier();
((NclUtilities_t631EDB0996FE8DEB88C069D5A050B9809E23DA8D_StaticFields*)il2cpp_codegen_static_fields_for(NclUtilities_t631EDB0996FE8DEB88C069D5A050B9809E23DA8D_il2cpp_TypeInfo_var))->____LocalAddresses_0 = L_47;
Il2CppCodeGenWriteBarrier((void**)(&((NclUtilities_t631EDB0996FE8DEB88C069D5A050B9809E23DA8D_StaticFields*)il2cpp_codegen_static_fields_for(NclUtilities_t631EDB0996FE8DEB88C069D5A050B9809E23DA8D_il2cpp_TypeInfo_var))->____LocalAddresses_0), (void*)L_47);
IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D* L_48 = V_0;
V_5 = L_48;
goto IL_0108;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0108:
{
IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D* L_49 = V_5;
return L_49;
}
}
// System.Object System.Net.NclUtilities::get_LocalAddressesLock()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* NclUtilities_get_LocalAddressesLock_mDF3BAF033A2D11D70D5703B65302AB09525F7880 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NclUtilities_t631EDB0996FE8DEB88C069D5A050B9809E23DA8D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ((NclUtilities_t631EDB0996FE8DEB88C069D5A050B9809E23DA8D_StaticFields*)il2cpp_codegen_static_fields_for(NclUtilities_t631EDB0996FE8DEB88C069D5A050B9809E23DA8D_il2cpp_TypeInfo_var))->____LocalAddressesLock_1;
if (L_0)
{
goto IL_0018;
}
}
{
RuntimeObject* L_1 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
NullCheck(L_1);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_1, NULL);
RuntimeObject* L_2;
L_2 = Interlocked_CompareExchange_mE9CAF0B3E78E95BA138B5623615D3C0242581977((&((NclUtilities_t631EDB0996FE8DEB88C069D5A050B9809E23DA8D_StaticFields*)il2cpp_codegen_static_fields_for(NclUtilities_t631EDB0996FE8DEB88C069D5A050B9809E23DA8D_il2cpp_TypeInfo_var))->____LocalAddressesLock_1), L_1, NULL, NULL);
}
IL_0018:
{
RuntimeObject* L_3 = ((NclUtilities_t631EDB0996FE8DEB88C069D5A050B9809E23DA8D_StaticFields*)il2cpp_codegen_static_fields_for(NclUtilities_t631EDB0996FE8DEB88C069D5A050B9809E23DA8D_il2cpp_TypeInfo_var))->____LocalAddressesLock_1;
return L_3;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String System.Net.ValidationHelper::MakeStringNull(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValidationHelper_MakeStringNull_mFC25A67C52461BFCE2F30DB71823434BE37895C0 (String_t* ___stringValue0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___stringValue0;
if (!L_0)
{
goto IL_000b;
}
}
{
String_t* L_1 = ___stringValue0;
NullCheck(L_1);
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL);
if (L_2)
{
goto IL_000d;
}
}
IL_000b:
{
return (String_t*)NULL;
}
IL_000d:
{
String_t* L_3 = ___stringValue0;
return L_3;
}
}
// System.Boolean System.Net.ValidationHelper::IsBlankString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValidationHelper_IsBlankString_mEE97DDAD061D54175C26B9E51E891C4F346E33B6 (String_t* ___stringValue0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___stringValue0;
if (!L_0)
{
goto IL_000d;
}
}
{
String_t* L_1 = ___stringValue0;
NullCheck(L_1);
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL);
return (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
}
IL_000d:
{
return (bool)1;
}
}
// System.Boolean System.Net.ValidationHelper::ValidateTcpPort(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValidationHelper_ValidateTcpPort_m9042E85AFB8EA2756E2940065C116104C008CCB2 (int32_t ___port0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___port0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0010;
}
}
{
int32_t L_1 = ___port0;
return (bool)((((int32_t)((((int32_t)L_1) > ((int32_t)((int32_t)65535)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0010:
{
return (bool)0;
}
}
// System.Void System.Net.ValidationHelper::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationHelper__cctor_m24C6635AA32CE592CED801B39532BB4B7445AFC1 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____3505B8A2248AC03FE41ACADF8F29294572BBADEE1DD2E1A45D025766681C012C_6_FieldInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____9001C3EDE1D7E939C07996B84F82F7CBE59A7266C1FC2735E959E3C8609602E8_10_FieldInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidationHelper_tA6AE681FCDFA9BE8E3EF31C28A624AADF973A25C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)0);
((ValidationHelper_tA6AE681FCDFA9BE8E3EF31C28A624AADF973A25C_StaticFields*)il2cpp_codegen_static_fields_for(ValidationHelper_tA6AE681FCDFA9BE8E3EF31C28A624AADF973A25C_il2cpp_TypeInfo_var))->___EmptyArray_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((ValidationHelper_tA6AE681FCDFA9BE8E3EF31C28A624AADF973A25C_StaticFields*)il2cpp_codegen_static_fields_for(ValidationHelper_tA6AE681FCDFA9BE8E3EF31C28A624AADF973A25C_il2cpp_TypeInfo_var))->___EmptyArray_0), (void*)L_0);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)4);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = L_1;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_3 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____3505B8A2248AC03FE41ACADF8F29294572BBADEE1DD2E1A45D025766681C012C_6_FieldInfo_var) };
RuntimeHelpers_InitializeArray_mE10C3436BA703E4D9D41B3F8F365E4C34F9926EF((RuntimeArray*)L_2, L_3, NULL);
((ValidationHelper_tA6AE681FCDFA9BE8E3EF31C28A624AADF973A25C_StaticFields*)il2cpp_codegen_static_fields_for(ValidationHelper_tA6AE681FCDFA9BE8E3EF31C28A624AADF973A25C_il2cpp_TypeInfo_var))->___InvalidMethodChars_1 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&((ValidationHelper_tA6AE681FCDFA9BE8E3EF31C28A624AADF973A25C_StaticFields*)il2cpp_codegen_static_fields_for(ValidationHelper_tA6AE681FCDFA9BE8E3EF31C28A624AADF973A25C_il2cpp_TypeInfo_var))->___InvalidMethodChars_1), (void*)L_2);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_4 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)22));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_5 = L_4;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_6 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____9001C3EDE1D7E939C07996B84F82F7CBE59A7266C1FC2735E959E3C8609602E8_10_FieldInfo_var) };
RuntimeHelpers_InitializeArray_mE10C3436BA703E4D9D41B3F8F365E4C34F9926EF((RuntimeArray*)L_5, L_6, NULL);
((ValidationHelper_tA6AE681FCDFA9BE8E3EF31C28A624AADF973A25C_StaticFields*)il2cpp_codegen_static_fields_for(ValidationHelper_tA6AE681FCDFA9BE8E3EF31C28A624AADF973A25C_il2cpp_TypeInfo_var))->___InvalidParamChars_2 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&((ValidationHelper_tA6AE681FCDFA9BE8E3EF31C28A624AADF973A25C_StaticFields*)il2cpp_codegen_static_fields_for(ValidationHelper_tA6AE681FCDFA9BE8E3EF31C28A624AADF973A25C_il2cpp_TypeInfo_var))->___InvalidParamChars_2), (void*)L_5);
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.NotImplementedException System.Net.ExceptionHelper::get_MethodNotImplementedException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* ExceptionHelper_get_MethodNotImplementedException_mF8678EE4622F1BBEEC6CDD54293E4D1B40A6D251 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral03BC8C687581927CC1FD3891B147EE76622E0C94);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0;
L_0 = SR_GetString_m2FF076D246665572FABD5913A9945E2A694DCB4D(_stringLiteral03BC8C687581927CC1FD3891B147EE76622E0C94, NULL);
NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_1 = (NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8*)il2cpp_codegen_object_new(NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8_il2cpp_TypeInfo_var);
NullCheck(L_1);
NotImplementedException__ctor_m8339D1A685E8D77CAC9D3260C06B38B5C7CA7742(L_1, L_0, NULL);
return L_1;
}
}
// System.NotImplementedException System.Net.ExceptionHelper::get_PropertyNotImplementedException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* ExceptionHelper_get_PropertyNotImplementedException_m5029CA867B083BAEE8D3D4577B1F571FEDDDE590 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFED9EBE0DFFF5E192C00377580AFB1A32E627E7A);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0;
L_0 = SR_GetString_m2FF076D246665572FABD5913A9945E2A694DCB4D(_stringLiteralFED9EBE0DFFF5E192C00377580AFB1A32E627E7A, NULL);
NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_1 = (NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8*)il2cpp_codegen_object_new(NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8_il2cpp_TypeInfo_var);
NullCheck(L_1);
NotImplementedException__ctor_m8339D1A685E8D77CAC9D3260C06B38B5C7CA7742(L_1, L_0, NULL);
return L_1;
}
}
// System.Net.WebException System.Net.ExceptionHelper::get_TimeoutException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* ExceptionHelper_get_TimeoutException_m952E47F158CFD9B5B3D42F89B032E0ED69C1CFCB (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEBF2718390EE473280CB1AC9DB1591547C00DF0E);
s_Il2CppMethodInitialized = true;
}
{
WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* L_0 = (WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8*)il2cpp_codegen_object_new(WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8_il2cpp_TypeInfo_var);
NullCheck(L_0);
WebException__ctor_mFBC3890EC80132004827F36950EEB651595BF277(L_0, _stringLiteralEBF2718390EE473280CB1AC9DB1591547C00DF0E, NULL);
return L_0;
}
}
// System.NotSupportedException System.Net.ExceptionHelper::get_PropertyNotSupportedException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* ExceptionHelper_get_PropertyNotSupportedException_m5CC325461533A050D3EF68316653B789963A0DA2 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9BFBA6FC6C00F5F6483CB92EEB238D32EA589C2D);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0;
L_0 = SR_GetString_m2FF076D246665572FABD5913A9945E2A694DCB4D(_stringLiteral9BFBA6FC6C00F5F6483CB92EEB238D32EA589C2D, NULL);
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_1 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var);
NullCheck(L_1);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_1, L_0, NULL);
return L_1;
}
}
// System.Net.WebException System.Net.ExceptionHelper::get_RequestAbortedException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* ExceptionHelper_get_RequestAbortedException_m3DF6599ECE269D18BE8B09099E6D8A9E6692B309 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4502112B709257EB72BDA2E310BDAD51C4094E46);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0;
L_0 = NetRes_GetWebStatusString_m35A90AB3B319FDDFAC2A2C4AA534504806B8555B(_stringLiteral4502112B709257EB72BDA2E310BDAD51C4094E46, 6, NULL);
WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* L_1 = (WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8*)il2cpp_codegen_object_new(WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8_il2cpp_TypeInfo_var);
NullCheck(L_1);
WebException__ctor_m6C829021B5388956F84830FC249915324C1453A1(L_1, L_0, 6, 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.Net.IWebRequestCreate System.Net.WebRequestPrefixElement::get_Creator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WebRequestPrefixElement_get_Creator_mA4054182FA19EA0B452693C7F747122DC0A4A9ED (WebRequestPrefixElement_tBE0FDE8DE0352095DECA0964655D25E05E435C35* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IWebRequestCreate_t5D7AD1E61E488459300CF994DF01218434C6D930_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
WebRequestPrefixElement_tBE0FDE8DE0352095DECA0964655D25E05E435C35* V_0 = NULL;
bool V_1 = false;
{
RuntimeObject* L_0 = __this->___creator_1;
if (L_0)
{
goto IL_005d;
}
}
{
Type_t* L_1 = __this->___creatorType_2;
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_2;
L_2 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_1, (Type_t*)NULL, NULL);
if (!L_2)
{
goto IL_005d;
}
}
{
V_0 = __this;
V_1 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0053:
{// begin finally (depth: 1)
{
bool L_3 = V_1;
if (!L_3)
{
goto IL_005c;
}
}
{
WebRequestPrefixElement_tBE0FDE8DE0352095DECA0964655D25E05E435C35* L_4 = V_0;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_4, NULL);
}
IL_005c:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
WebRequestPrefixElement_tBE0FDE8DE0352095DECA0964655D25E05E435C35* L_5 = V_0;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_5, (&V_1), NULL);
RuntimeObject* L_6 = __this->___creator_1;
if (L_6)
{
goto IL_0051_1;
}
}
{
Type_t* L_7 = __this->___creatorType_2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_8 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)0);
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_9;
L_9 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
RuntimeObject* L_10;
L_10 = Activator_CreateInstance_mFB735A8FC37FEBDE59EF1E0A0C87C702E5C82CC8(L_7, ((int32_t)564), (Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235*)NULL, L_8, L_9, NULL);
__this->___creator_1 = ((RuntimeObject*)Castclass((RuntimeObject*)L_10, IWebRequestCreate_t5D7AD1E61E488459300CF994DF01218434C6D930_il2cpp_TypeInfo_var));
Il2CppCodeGenWriteBarrier((void**)(&__this->___creator_1), (void*)((RuntimeObject*)Castclass((RuntimeObject*)L_10, IWebRequestCreate_t5D7AD1E61E488459300CF994DF01218434C6D930_il2cpp_TypeInfo_var)));
}
IL_0051_1:
{
goto IL_005d;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_005d:
{
RuntimeObject* L_11 = __this->___creator_1;
return L_11;
}
}
// System.Void System.Net.WebRequestPrefixElement::set_Creator(System.Net.IWebRequestCreate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebRequestPrefixElement_set_Creator_mD7ECF1CF1BD68AC660ED2E3EE27582CF3903CCCE (WebRequestPrefixElement_tBE0FDE8DE0352095DECA0964655D25E05E435C35* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->___creator_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___creator_1), (void*)L_0);
return;
}
}
// System.Void System.Net.WebRequestPrefixElement::.ctor(System.String,System.Net.IWebRequestCreate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebRequestPrefixElement__ctor_mA9BEF8159EE6A6C7092797F6E7BE68FDE06E3C4B (WebRequestPrefixElement_tBE0FDE8DE0352095DECA0964655D25E05E435C35* __this, String_t* ___P0, RuntimeObject* ___C1, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
String_t* L_0 = ___P0;
__this->___Prefix_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___Prefix_0), (void*)L_0);
RuntimeObject* L_1 = ___C1;
WebRequestPrefixElement_set_Creator_mD7ECF1CF1BD68AC660ED2E3EE27582CF3903CCCE_inline(__this, L_1, 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
void HttpContinueDelegate_Invoke_m911A3C37BB31B610864B0381AA08241D41B2CB7D_Multicast(HttpContinueDelegate_t174E5B124FF75DBAC627C6E41A0802A802EAE6D9* __this, int32_t ___StatusCode0, WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* ___httpHeaders1, const RuntimeMethod* method)
{
il2cpp_array_size_t length = __this->___delegates_13->max_length;
Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates_13->GetAddressAtUnchecked(0));
typedef void (*FunctionPointerType) (HttpContinueDelegate_t174E5B124FF75DBAC627C6E41A0802A802EAE6D9* __this, int32_t ___StatusCode0, WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* ___httpHeaders1, const RuntimeMethod* method);
for (il2cpp_array_size_t i = 0; i < length; i++)
{
HttpContinueDelegate_t174E5B124FF75DBAC627C6E41A0802A802EAE6D9* currentDelegate = reinterpret_cast<HttpContinueDelegate_t174E5B124FF75DBAC627C6E41A0802A802EAE6D9*>(delegatesToInvoke[i]);
((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___StatusCode0, ___httpHeaders1, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
}
void HttpContinueDelegate_Invoke_m911A3C37BB31B610864B0381AA08241D41B2CB7D_Open(HttpContinueDelegate_t174E5B124FF75DBAC627C6E41A0802A802EAE6D9* __this, int32_t ___StatusCode0, WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* ___httpHeaders1, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (int32_t, WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(___StatusCode0, ___httpHeaders1, method);
}
void HttpContinueDelegate_Invoke_m911A3C37BB31B610864B0381AA08241D41B2CB7D_Closed(HttpContinueDelegate_t174E5B124FF75DBAC627C6E41A0802A802EAE6D9* __this, int32_t ___StatusCode0, WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* ___httpHeaders1, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, int32_t, WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___StatusCode0, ___httpHeaders1, method);
}
void HttpContinueDelegate_Invoke_m911A3C37BB31B610864B0381AA08241D41B2CB7D_OpenStaticInvoker(HttpContinueDelegate_t174E5B124FF75DBAC627C6E41A0802A802EAE6D9* __this, int32_t ___StatusCode0, WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* ___httpHeaders1, const RuntimeMethod* method)
{
InvokerActionInvoker2< int32_t, WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* >::Invoke(__this->___method_ptr_0, method, NULL, ___StatusCode0, ___httpHeaders1);
}
void HttpContinueDelegate_Invoke_m911A3C37BB31B610864B0381AA08241D41B2CB7D_ClosedStaticInvoker(HttpContinueDelegate_t174E5B124FF75DBAC627C6E41A0802A802EAE6D9* __this, int32_t ___StatusCode0, WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* ___httpHeaders1, const RuntimeMethod* method)
{
InvokerActionInvoker3< RuntimeObject*, int32_t, WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___StatusCode0, ___httpHeaders1);
}
// System.Void System.Net.HttpContinueDelegate::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpContinueDelegate__ctor_mF88BDF13545D1FCB1962650C0A2B5C891BA83DF5 (HttpContinueDelegate_t174E5B124FF75DBAC627C6E41A0802A802EAE6D9* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->___method_ptr_0 = il2cpp_codegen_get_virtual_call_method_pointer((RuntimeMethod*)___method1);
__this->___method_3 = ___method1;
__this->___m_target_2 = ___object0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target_2), (void*)___object0);
int methodCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___method1);
if (MethodIsStatic((RuntimeMethod*)___method1))
{
bool isOpen = methodCount == 2;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&HttpContinueDelegate_Invoke_m911A3C37BB31B610864B0381AA08241D41B2CB7D_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&HttpContinueDelegate_Invoke_m911A3C37BB31B610864B0381AA08241D41B2CB7D_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&HttpContinueDelegate_Invoke_m911A3C37BB31B610864B0381AA08241D41B2CB7D_Open;
else
__this->___invoke_impl_1 = (intptr_t)&HttpContinueDelegate_Invoke_m911A3C37BB31B610864B0381AA08241D41B2CB7D_Closed;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&HttpContinueDelegate_Invoke_m911A3C37BB31B610864B0381AA08241D41B2CB7D_Closed;
}
__this->___extra_arg_5 = (intptr_t)&HttpContinueDelegate_Invoke_m911A3C37BB31B610864B0381AA08241D41B2CB7D_Multicast;
}
// System.Void System.Net.HttpContinueDelegate::Invoke(System.Int32,System.Net.WebHeaderCollection)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HttpContinueDelegate_Invoke_m911A3C37BB31B610864B0381AA08241D41B2CB7D (HttpContinueDelegate_t174E5B124FF75DBAC627C6E41A0802A802EAE6D9* __this, int32_t ___StatusCode0, WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* ___httpHeaders1, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (HttpContinueDelegate_t174E5B124FF75DBAC627C6E41A0802A802EAE6D9* __this, int32_t ___StatusCode0, WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* ___httpHeaders1, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___StatusCode0, ___httpHeaders1, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Net.NetworkCredential::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkCredential__ctor_mE50C6F50A386C1116DDEC3F21BD7A2894BDC902C (NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* __this, String_t* ___userName0, String_t* ___password1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___userName0;
String_t* L_1 = ___password1;
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
NetworkCredential__ctor_m6AACF996F73DA7CE81D33CD301DF98362E7D3EB2(__this, L_0, L_1, L_2, NULL);
return;
}
}
// System.Void System.Net.NetworkCredential::.ctor(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkCredential__ctor_m6AACF996F73DA7CE81D33CD301DF98362E7D3EB2 (NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* __this, String_t* ___userName0, String_t* ___password1, String_t* ___domain2, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
String_t* L_0 = ___userName0;
NetworkCredential_set_UserName_m1C8F2119945861B5B7A512896A57F5E2C5537B2F(__this, L_0, NULL);
String_t* L_1 = ___password1;
NetworkCredential_set_Password_mF0B964234CE60FF322135B014FFD8C28FEF5428B(__this, L_1, NULL);
String_t* L_2 = ___domain2;
NetworkCredential_set_Domain_mF7A8246CA8329E6A86A7B2B5FA8C972371F5AABA(__this, L_2, NULL);
return;
}
}
// System.String System.Net.NetworkCredential::get_UserName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NetworkCredential_get_UserName_mEBB5D5B4928F1868DD79A104CF2BAFCFAC88AFA1 (NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* __this, const RuntimeMethod* method)
{
{
String_t* L_0;
L_0 = NetworkCredential_InternalGetUserName_m3C611F91EF4D0D363D0F727ED93B5BB71057BAA9_inline(__this, NULL);
return L_0;
}
}
// System.Void System.Net.NetworkCredential::set_UserName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkCredential_set_UserName_m1C8F2119945861B5B7A512896A57F5E2C5537B2F (NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* __this, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___value0;
if (L_0)
{
goto IL_000f;
}
}
{
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
__this->___m_userName_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_userName_1), (void*)L_1);
return;
}
IL_000f:
{
String_t* L_2 = ___value0;
__this->___m_userName_1 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_userName_1), (void*)L_2);
return;
}
}
// System.String System.Net.NetworkCredential::get_Password()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NetworkCredential_get_Password_m7F0F54ED0E4A41F66513296C4E3063D70AF6036C (NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* __this, const RuntimeMethod* method)
{
{
String_t* L_0;
L_0 = NetworkCredential_InternalGetPassword_mC81DF1C74B2EC52EB60CFAC26B7D39D04EA0919C(__this, NULL);
return L_0;
}
}
// System.Void System.Net.NetworkCredential::set_Password(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkCredential_set_Password_mF0B964234CE60FF322135B014FFD8C28FEF5428B (NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
SecureString_t6FBEB334D455CA90093BD446BBEBA47FE5B20C6C* L_1;
L_1 = SecureStringHelper_CreateSecureString_mEB7FEF36DD2FD2DE189C394068B70EA57F56C6D9(L_0, NULL);
__this->___m_password_2 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_password_2), (void*)L_1);
return;
}
}
// System.String System.Net.NetworkCredential::get_Domain()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NetworkCredential_get_Domain_mFFC454BD64B52DC2FFA09971876B56A2B337DE17 (NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* __this, const RuntimeMethod* method)
{
{
String_t* L_0;
L_0 = NetworkCredential_InternalGetDomain_m23031ACE871266F13428419D081B8F0B76388D82_inline(__this, NULL);
return L_0;
}
}
// System.Void System.Net.NetworkCredential::set_Domain(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkCredential_set_Domain_mF7A8246CA8329E6A86A7B2B5FA8C972371F5AABA (NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* __this, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___value0;
if (L_0)
{
goto IL_000f;
}
}
{
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
__this->___m_domain_0 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_domain_0), (void*)L_1);
return;
}
IL_000f:
{
String_t* L_2 = ___value0;
__this->___m_domain_0 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_domain_0), (void*)L_2);
return;
}
}
// System.String System.Net.NetworkCredential::InternalGetUserName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NetworkCredential_InternalGetUserName_m3C611F91EF4D0D363D0F727ED93B5BB71057BAA9 (NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___m_userName_1;
return L_0;
}
}
// System.String System.Net.NetworkCredential::InternalGetPassword()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NetworkCredential_InternalGetPassword_mC81DF1C74B2EC52EB60CFAC26B7D39D04EA0919C (NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* __this, const RuntimeMethod* method)
{
{
SecureString_t6FBEB334D455CA90093BD446BBEBA47FE5B20C6C* L_0 = __this->___m_password_2;
String_t* L_1;
L_1 = SecureStringHelper_CreateString_m713072716339E2EE83265145F2F9FEEA105428C5(L_0, NULL);
return L_1;
}
}
// System.String System.Net.NetworkCredential::InternalGetDomain()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NetworkCredential_InternalGetDomain_m23031ACE871266F13428419D081B8F0B76388D82 (NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___m_domain_0;
return L_0;
}
}
// System.Net.NetworkCredential System.Net.NetworkCredential::GetCredential(System.Uri,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* NetworkCredential_GetCredential_mA14F76598AB02327F11A1A09ABB896510F20C64F (NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___uri0, String_t* ___authType1, const RuntimeMethod* method)
{
{
return __this;
}
}
#ifdef __clang__
#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.ProtocolViolationException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProtocolViolationException__ctor_m0999A59A95131FA8BB4D6685FBF4BC0B74E01E34 (ProtocolViolationException_t4660D647ACBC7121D1AE35068DDB7A6C7A88780D* __this, const RuntimeMethod* method)
{
{
InvalidOperationException__ctor_m1BE9BD198B904AA1D94F4B10DA88077DFD44B7A5(__this, NULL);
return;
}
}
// System.Void System.Net.ProtocolViolationException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProtocolViolationException__ctor_m2C2665583590BF7DB9B53A7AF126FEFDDE364BA5 (ProtocolViolationException_t4660D647ACBC7121D1AE35068DDB7A6C7A88780D* __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(__this, L_0, NULL);
return;
}
}
// System.Void System.Net.ProtocolViolationException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProtocolViolationException__ctor_mD9B5606196795D66E9A101AE92EE2A8D9B9A7440 (ProtocolViolationException_t4660D647ACBC7121D1AE35068DDB7A6C7A88780D* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___serializationInfo0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___streamingContext1, const RuntimeMethod* method)
{
{
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___serializationInfo0;
StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___streamingContext1;
InvalidOperationException__ctor_m8C443A05288C1BFFD969714B5AFB66FD3995824F(__this, L_0, L_1, NULL);
return;
}
}
// System.Void System.Net.ProtocolViolationException::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProtocolViolationException_System_Runtime_Serialization_ISerializable_GetObjectData_mA112E599073DE2CF2AC7F84E6CD354BFEBFA3170 (ProtocolViolationException_t4660D647ACBC7121D1AE35068DDB7A6C7A88780D* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___serializationInfo0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___streamingContext1, const RuntimeMethod* method)
{
{
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___serializationInfo0;
StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___streamingContext1;
Exception_GetObjectData_mD69929DB0BB2512240908B9EEE21778CB7B72DA9(__this, L_0, L_1, NULL);
return;
}
}
// System.Void System.Net.ProtocolViolationException::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProtocolViolationException_GetObjectData_mF3C17B3E564B658959AF1A026E232D8E2D2CCEB9 (ProtocolViolationException_t4660D647ACBC7121D1AE35068DDB7A6C7A88780D* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___serializationInfo0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___streamingContext1, const RuntimeMethod* method)
{
{
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___serializationInfo0;
StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___streamingContext1;
Exception_GetObjectData_mD69929DB0BB2512240908B9EEE21778CB7B72DA9(__this, L_0, L_1, 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.Net.Sockets.AddressFamily System.Net.SocketAddress::get_Family()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SocketAddress_get_Family_mF66C07BE26931A763DF421310667F1C7EE82EA20 (SocketAddress_tAB4BC630E51E2241E607F4070DA1AEE00B442A03* __this, const RuntimeMethod* method)
{
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = __this->___m_Buffer_1;
NullCheck(L_0);
int32_t L_1 = 0;
uint8_t L_2 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_1));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = __this->___m_Buffer_1;
NullCheck(L_3);
int32_t L_4 = 1;
uint8_t L_5 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
return (int32_t)(((int32_t)((int32_t)L_2|((int32_t)((int32_t)L_5<<8)))));
}
}
// System.Int32 System.Net.SocketAddress::get_Size()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SocketAddress_get_Size_mBBA7758844EE6209A287989E0DBAE534C9A21A11 (SocketAddress_tAB4BC630E51E2241E607F4070DA1AEE00B442A03* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___m_Size_0;
return L_0;
}
}
// System.Byte System.Net.SocketAddress::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t SocketAddress_get_Item_mFF97A6A1AF0D8AB36C662282C477B5DBAFD10FBD (SocketAddress_tAB4BC630E51E2241E607F4070DA1AEE00B442A03* __this, int32_t ___offset0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___offset0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_000d;
}
}
{
int32_t L_1 = ___offset0;
int32_t L_2;
L_2 = SocketAddress_get_Size_mBBA7758844EE6209A287989E0DBAE534C9A21A11_inline(__this, NULL);
if ((((int32_t)L_1) < ((int32_t)L_2)))
{
goto IL_0013;
}
}
IL_000d:
{
IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82* L_3 = (IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82_il2cpp_TypeInfo_var)));
NullCheck(L_3);
IndexOutOfRangeException__ctor_m270ED9671475CE680EEA8C62A7A43308AE4188EF(L_3, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SocketAddress_get_Item_mFF97A6A1AF0D8AB36C662282C477B5DBAFD10FBD_RuntimeMethod_var)));
}
IL_0013:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = __this->___m_Buffer_1;
int32_t L_5 = ___offset0;
NullCheck(L_4);
int32_t L_6 = L_5;
uint8_t L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
return L_7;
}
}
// System.Void System.Net.SocketAddress::.ctor(System.Net.Sockets.AddressFamily,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SocketAddress__ctor_mD56F67A8077F542F2DA0ABAF693EE192F5910ECB (SocketAddress_tAB4BC630E51E2241E607F4070DA1AEE00B442A03* __this, int32_t ___family0, int32_t ___size1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
__this->___m_changed_2 = (bool)1;
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
int32_t L_0 = ___size1;
if ((((int32_t)L_0) >= ((int32_t)2)))
{
goto IL_001c;
}
}
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_1);
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3EE5A4671A4E5AEBD31CA5F013A7773DC18ED22B)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SocketAddress__ctor_mD56F67A8077F542F2DA0ABAF693EE192F5910ECB_RuntimeMethod_var)));
}
IL_001c:
{
int32_t L_2 = ___size1;
__this->___m_Size_0 = L_2;
int32_t L_3 = ___size1;
int32_t L_4;
L_4 = IntPtr_get_Size_mF11301B9A665D54B8DC89DC6AFE37728B91E6F10(NULL);
int32_t L_5;
L_5 = IntPtr_get_Size_mF11301B9A665D54B8DC89DC6AFE37728B91E6F10(NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply(((int32_t)il2cpp_codegen_add(((int32_t)(L_3/L_4)), 2)), L_5)));
__this->___m_Buffer_1 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Buffer_1), (void*)L_6);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7 = __this->___m_Buffer_1;
int32_t L_8 = ___family0;
NullCheck(L_7);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)((int32_t)(uint8_t)L_8));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = __this->___m_Buffer_1;
int32_t L_10 = ___family0;
NullCheck(L_9);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(1), (uint8_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_10>>8))));
return;
}
}
// System.Void System.Net.SocketAddress::.ctor(System.Net.IPAddress)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SocketAddress__ctor_mE024ADACE4B62D1FF2969E8D59E3D6A4B567DC30 (SocketAddress_tAB4BC630E51E2241E607F4070DA1AEE00B442A03* __this, IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* ___ipAddress0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryExtensions_AsSpan_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m107A36BC03551DA3FFD8816519D6F675279D5FB6_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_1 = NULL;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t G_B2_0 = 0;
SocketAddress_tAB4BC630E51E2241E607F4070DA1AEE00B442A03* G_B2_1 = NULL;
int32_t G_B1_0 = 0;
SocketAddress_tAB4BC630E51E2241E607F4070DA1AEE00B442A03* G_B1_1 = NULL;
int32_t G_B3_0 = 0;
int32_t G_B3_1 = 0;
SocketAddress_tAB4BC630E51E2241E607F4070DA1AEE00B442A03* G_B3_2 = NULL;
{
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* L_0 = ___ipAddress0;
NullCheck(L_0);
int32_t L_1;
L_1 = IPAddress_get_AddressFamily_m1CE4BCCE499BD70B22F9E37B3F266F9306A98C21(L_0, NULL);
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* L_2 = ___ipAddress0;
NullCheck(L_2);
int32_t L_3;
L_3 = IPAddress_get_AddressFamily_m1CE4BCCE499BD70B22F9E37B3F266F9306A98C21(L_2, NULL);
G_B1_0 = L_1;
G_B1_1 = __this;
if ((((int32_t)L_3) == ((int32_t)2)))
{
G_B2_0 = L_1;
G_B2_1 = __this;
goto IL_0014;
}
}
{
G_B3_0 = ((int32_t)28);
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
goto IL_0016;
}
IL_0014:
{
G_B3_0 = ((int32_t)16);
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
}
IL_0016:
{
SocketAddress__ctor_mD56F67A8077F542F2DA0ABAF693EE192F5910ECB(G_B3_2, G_B3_1, G_B3_0, NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = __this->___m_Buffer_1;
NullCheck(L_4);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(2), (uint8_t)0);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = __this->___m_Buffer_1;
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(3), (uint8_t)0);
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* L_6 = ___ipAddress0;
NullCheck(L_6);
int32_t L_7;
L_7 = IPAddress_get_AddressFamily_m1CE4BCCE499BD70B22F9E37B3F266F9306A98C21(L_6, NULL);
if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)23)))))
{
goto IL_00bc;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = __this->___m_Buffer_1;
NullCheck(L_8);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(4), (uint8_t)0);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = __this->___m_Buffer_1;
NullCheck(L_9);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(5), (uint8_t)0);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = __this->___m_Buffer_1;
NullCheck(L_10);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(6), (uint8_t)0);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = __this->___m_Buffer_1;
NullCheck(L_11);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(7), (uint8_t)0);
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* L_12 = ___ipAddress0;
NullCheck(L_12);
int64_t L_13;
L_13 = IPAddress_get_ScopeId_m464E5C5597F29B05135EDCA6DDB1667EFA70EEF8(L_12, NULL);
V_0 = L_13;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_14 = __this->___m_Buffer_1;
int64_t L_15 = V_0;
NullCheck(L_14);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)24)), (uint8_t)((int32_t)(uint8_t)L_15));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_16 = __this->___m_Buffer_1;
int64_t L_17 = V_0;
NullCheck(L_16);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)25)), (uint8_t)((int32_t)(uint8_t)((int64_t)(L_17>>8))));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_18 = __this->___m_Buffer_1;
int64_t L_19 = V_0;
NullCheck(L_18);
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)26)), (uint8_t)((int32_t)(uint8_t)((int64_t)(L_19>>((int32_t)16)))));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_20 = __this->___m_Buffer_1;
int64_t L_21 = V_0;
NullCheck(L_20);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)27)), (uint8_t)((int32_t)(uint8_t)((int64_t)(L_21>>((int32_t)24)))));
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* L_22 = ___ipAddress0;
NullCheck(L_22);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_23;
L_23 = IPAddress_GetAddressBytes_m1501E0143C791E3A065E508F5535D8E206652EC9(L_22, NULL);
V_1 = L_23;
V_2 = 0;
goto IL_00b5;
}
IL_00a4:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_24 = __this->___m_Buffer_1;
int32_t L_25 = V_2;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_26 = V_1;
int32_t L_27 = V_2;
NullCheck(L_26);
int32_t L_28 = L_27;
uint8_t L_29 = (L_26)->GetAt(static_cast<il2cpp_array_size_t>(L_28));
NullCheck(L_24);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add(8, L_25))), (uint8_t)L_29);
int32_t L_30 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_30, 1));
}
IL_00b5:
{
int32_t L_31 = V_2;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_32 = V_1;
NullCheck(L_32);
if ((((int32_t)L_31) < ((int32_t)((int32_t)(((RuntimeArray*)L_32)->max_length)))))
{
goto IL_00a4;
}
}
{
return;
}
IL_00bc:
{
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* L_33 = ___ipAddress0;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_34 = __this->___m_Buffer_1;
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_35;
L_35 = MemoryExtensions_AsSpan_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m107A36BC03551DA3FFD8816519D6F675279D5FB6_inline(L_34, 4, MemoryExtensions_AsSpan_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m107A36BC03551DA3FFD8816519D6F675279D5FB6_RuntimeMethod_var);
NullCheck(L_33);
bool L_36;
L_36 = IPAddress_TryWriteBytes_mB6CA9DA47541FD37A67BCF614983BDBD3581346A(L_33, L_35, (&V_3), NULL);
return;
}
}
// System.Void System.Net.SocketAddress::.ctor(System.Net.IPAddress,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SocketAddress__ctor_m33DA845BE27401842BFABDF79738F8EFA60B12B6 (SocketAddress_tAB4BC630E51E2241E607F4070DA1AEE00B442A03* __this, IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* ___ipaddress0, int32_t ___port1, const RuntimeMethod* method)
{
{
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* L_0 = ___ipaddress0;
SocketAddress__ctor_mE024ADACE4B62D1FF2969E8D59E3D6A4B567DC30(__this, L_0, NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = __this->___m_Buffer_1;
int32_t L_2 = ___port1;
NullCheck(L_1);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(2), (uint8_t)((int32_t)(uint8_t)((int32_t)(L_2>>8))));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = __this->___m_Buffer_1;
int32_t L_4 = ___port1;
NullCheck(L_3);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(3), (uint8_t)((int32_t)(uint8_t)L_4));
return;
}
}
// System.Net.IPAddress System.Net.SocketAddress::GetIPAddress()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* SocketAddress_GetIPAddress_m9F349596DE4F881222A989059162AF5880FBAA0D (SocketAddress_tAB4BC630E51E2241E607F4070DA1AEE00B442A03* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
int64_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0;
L_0 = SocketAddress_get_Family_mF66C07BE26931A763DF421310667F1C7EE82EA20(__this, NULL);
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)23)))))
{
goto IL_0066;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)((int32_t)16));
V_0 = L_1;
V_2 = 0;
goto IL_0027;
}
IL_0016:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = V_0;
int32_t L_3 = V_2;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = __this->___m_Buffer_1;
int32_t L_5 = V_2;
NullCheck(L_4);
int32_t L_6 = ((int32_t)il2cpp_codegen_add(L_5, 8));
uint8_t L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (uint8_t)L_7);
int32_t L_8 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_8, 1));
}
IL_0027:
{
int32_t L_9 = V_2;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = V_0;
NullCheck(L_10);
if ((((int32_t)L_9) < ((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))))
{
goto IL_0016;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = __this->___m_Buffer_1;
NullCheck(L_11);
int32_t L_12 = ((int32_t)27);
uint8_t L_13 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_14 = __this->___m_Buffer_1;
NullCheck(L_14);
int32_t L_15 = ((int32_t)26);
uint8_t L_16 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_17 = __this->___m_Buffer_1;
NullCheck(L_17);
int32_t L_18 = ((int32_t)25);
uint8_t L_19 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_20 = __this->___m_Buffer_1;
NullCheck(L_20);
int32_t L_21 = ((int32_t)24);
uint8_t L_22 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
V_1 = ((int64_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)((int32_t)L_13<<((int32_t)24))), ((int32_t)((int32_t)L_16<<((int32_t)16))))), ((int32_t)((int32_t)L_19<<8)))), (int32_t)L_22)));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_23 = V_0;
int64_t L_24 = V_1;
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* L_25 = (IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484*)il2cpp_codegen_object_new(IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484_il2cpp_TypeInfo_var);
NullCheck(L_25);
IPAddress__ctor_m8D2578858CF6F8E56591F45C8A14150DEFFA44F5(L_25, L_23, L_24, NULL);
return L_25;
}
IL_0066:
{
int32_t L_26;
L_26 = SocketAddress_get_Family_mF66C07BE26931A763DF421310667F1C7EE82EA20(__this, NULL);
if ((!(((uint32_t)L_26) == ((uint32_t)2))))
{
goto IL_00b6;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_27 = __this->___m_Buffer_1;
NullCheck(L_27);
int32_t L_28 = 4;
uint8_t L_29 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_28));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_30 = __this->___m_Buffer_1;
NullCheck(L_30);
int32_t L_31 = 5;
uint8_t L_32 = (L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_31));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_33 = __this->___m_Buffer_1;
NullCheck(L_33);
int32_t L_34 = 6;
uint8_t L_35 = (L_33)->GetAt(static_cast<il2cpp_array_size_t>(L_34));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_36 = __this->___m_Buffer_1;
NullCheck(L_36);
int32_t L_37 = 7;
uint8_t L_38 = (L_36)->GetAt(static_cast<il2cpp_array_size_t>(L_37));
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* L_39 = (IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484*)il2cpp_codegen_object_new(IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484_il2cpp_TypeInfo_var);
NullCheck(L_39);
IPAddress__ctor_mC240D2060BA0F5A96D286CDE3772FE4354D7030B(L_39, ((int64_t)(((int64_t)((int32_t)(((int32_t)(((int32_t)(((int32_t)((int32_t)L_29&((int32_t)255)))|((int32_t)(((int32_t)((int32_t)L_32<<8))&((int32_t)65280)))))|((int32_t)(((int32_t)((int32_t)L_35<<((int32_t)16)))&((int32_t)16711680)))))|((int32_t)((int32_t)L_38<<((int32_t)24))))))&((int64_t)(uint64_t)((uint32_t)(-1))))), NULL);
return L_39;
}
IL_00b6:
{
SocketException_t6D10102A62EA871BD31748E026A372DB6804083B* L_40 = (SocketException_t6D10102A62EA871BD31748E026A372DB6804083B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SocketException_t6D10102A62EA871BD31748E026A372DB6804083B_il2cpp_TypeInfo_var)));
NullCheck(L_40);
SocketException__ctor_m5E9DDE94C8009DE11B8CE2EF1611A5CE8A900AC3(L_40, ((int32_t)10047), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_40, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SocketAddress_GetIPAddress_m9F349596DE4F881222A989059162AF5880FBAA0D_RuntimeMethod_var)));
}
}
// System.Net.IPEndPoint System.Net.SocketAddress::GetIPEndPoint()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB* SocketAddress_GetIPEndPoint_m1B1532600216A9545A7CAC1EA49F23CBAC5C8C17 (SocketAddress_tAB4BC630E51E2241E607F4070DA1AEE00B442A03* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* L_0;
L_0 = SocketAddress_GetIPAddress_m9F349596DE4F881222A989059162AF5880FBAA0D(__this, NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = __this->___m_Buffer_1;
NullCheck(L_1);
int32_t L_2 = 2;
uint8_t L_3 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = __this->___m_Buffer_1;
NullCheck(L_4);
int32_t L_5 = 3;
uint8_t L_6 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
V_0 = ((int32_t)(((int32_t)(((int32_t)((int32_t)L_3<<8))&((int32_t)65280)))|(int32_t)L_6));
int32_t L_7 = V_0;
IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB* L_8 = (IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB*)il2cpp_codegen_object_new(IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB_il2cpp_TypeInfo_var);
NullCheck(L_8);
IPEndPoint__ctor_m902C98F9E3F36B20B3C2E030AA91B62E2BC7A85A(L_8, L_0, L_7, NULL);
return L_8;
}
}
// System.Boolean System.Net.SocketAddress::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SocketAddress_Equals_m68D7D3DC11E1070E43492BA30FD9AE5AEA51C49D (SocketAddress_tAB4BC630E51E2241E607F4070DA1AEE00B442A03* __this, RuntimeObject* ___comparand0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SocketAddress_tAB4BC630E51E2241E607F4070DA1AEE00B442A03_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
SocketAddress_tAB4BC630E51E2241E607F4070DA1AEE00B442A03* V_0 = NULL;
int32_t V_1 = 0;
{
RuntimeObject* L_0 = ___comparand0;
V_0 = ((SocketAddress_tAB4BC630E51E2241E607F4070DA1AEE00B442A03*)IsInstClass((RuntimeObject*)L_0, SocketAddress_tAB4BC630E51E2241E607F4070DA1AEE00B442A03_il2cpp_TypeInfo_var));
SocketAddress_tAB4BC630E51E2241E607F4070DA1AEE00B442A03* L_1 = V_0;
if (!L_1)
{
goto IL_0018;
}
}
{
int32_t L_2;
L_2 = SocketAddress_get_Size_mBBA7758844EE6209A287989E0DBAE534C9A21A11_inline(__this, NULL);
SocketAddress_tAB4BC630E51E2241E607F4070DA1AEE00B442A03* L_3 = V_0;
NullCheck(L_3);
int32_t L_4;
L_4 = SocketAddress_get_Size_mBBA7758844EE6209A287989E0DBAE534C9A21A11_inline(L_3, NULL);
if ((((int32_t)L_2) == ((int32_t)L_4)))
{
goto IL_001a;
}
}
IL_0018:
{
return (bool)0;
}
IL_001a:
{
V_1 = 0;
goto IL_0034;
}
IL_001e:
{
int32_t L_5 = V_1;
uint8_t L_6;
L_6 = SocketAddress_get_Item_mFF97A6A1AF0D8AB36C662282C477B5DBAFD10FBD(__this, L_5, NULL);
SocketAddress_tAB4BC630E51E2241E607F4070DA1AEE00B442A03* L_7 = V_0;
int32_t L_8 = V_1;
NullCheck(L_7);
uint8_t L_9;
L_9 = SocketAddress_get_Item_mFF97A6A1AF0D8AB36C662282C477B5DBAFD10FBD(L_7, L_8, NULL);
if ((((int32_t)L_6) == ((int32_t)L_9)))
{
goto IL_0030;
}
}
{
return (bool)0;
}
IL_0030:
{
int32_t L_10 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_10, 1));
}
IL_0034:
{
int32_t L_11 = V_1;
int32_t L_12;
L_12 = SocketAddress_get_Size_mBBA7758844EE6209A287989E0DBAE534C9A21A11_inline(__this, NULL);
if ((((int32_t)L_11) < ((int32_t)L_12)))
{
goto IL_001e;
}
}
{
return (bool)1;
}
}
// System.Int32 System.Net.SocketAddress::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SocketAddress_GetHashCode_mA5B524859742D73CF5870F6984360E15F09FA719 (SocketAddress_tAB4BC630E51E2241E607F4070DA1AEE00B442A03* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
{
bool L_0 = __this->___m_changed_2;
if (!L_0)
{
goto IL_00ac;
}
}
{
__this->___m_changed_2 = (bool)0;
__this->___m_hash_3 = 0;
int32_t L_1;
L_1 = SocketAddress_get_Size_mBBA7758844EE6209A287989E0DBAE534C9A21A11_inline(__this, NULL);
V_1 = ((int32_t)(L_1&((int32_t)-4)));
V_0 = 0;
goto IL_0069;
}
IL_0027:
{
int32_t L_2 = __this->___m_hash_3;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = __this->___m_Buffer_1;
int32_t L_4 = V_0;
NullCheck(L_3);
int32_t L_5 = L_4;
uint8_t L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7 = __this->___m_Buffer_1;
int32_t L_8 = V_0;
NullCheck(L_7);
int32_t L_9 = ((int32_t)il2cpp_codegen_add(L_8, 1));
uint8_t L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = __this->___m_Buffer_1;
int32_t L_12 = V_0;
NullCheck(L_11);
int32_t L_13 = ((int32_t)il2cpp_codegen_add(L_12, 2));
uint8_t L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_15 = __this->___m_Buffer_1;
int32_t L_16 = V_0;
NullCheck(L_15);
int32_t L_17 = ((int32_t)il2cpp_codegen_add(L_16, 3));
uint8_t L_18 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
__this->___m_hash_3 = ((int32_t)(L_2^((int32_t)(((int32_t)(((int32_t)((int32_t)L_6|((int32_t)((int32_t)L_10<<8))))|((int32_t)((int32_t)L_14<<((int32_t)16)))))|((int32_t)((int32_t)L_18<<((int32_t)24)))))));
int32_t L_19 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_19, 4));
}
IL_0069:
{
int32_t L_20 = V_0;
int32_t L_21 = V_1;
if ((((int32_t)L_20) < ((int32_t)L_21)))
{
goto IL_0027;
}
}
{
int32_t L_22;
L_22 = SocketAddress_get_Size_mBBA7758844EE6209A287989E0DBAE534C9A21A11_inline(__this, NULL);
if (!((int32_t)(L_22&3)))
{
goto IL_00ac;
}
}
{
V_2 = 0;
V_3 = 0;
goto IL_0095;
}
IL_007d:
{
int32_t L_23 = V_2;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_24 = __this->___m_Buffer_1;
int32_t L_25 = V_0;
NullCheck(L_24);
int32_t L_26 = L_25;
uint8_t L_27 = (L_24)->GetAt(static_cast<il2cpp_array_size_t>(L_26));
int32_t L_28 = V_3;
V_2 = ((int32_t)(L_23|((int32_t)((int32_t)L_27<<((int32_t)(L_28&((int32_t)31)))))));
int32_t L_29 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_29, 8));
int32_t L_30 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_30, 1));
}
IL_0095:
{
int32_t L_31 = V_0;
int32_t L_32;
L_32 = SocketAddress_get_Size_mBBA7758844EE6209A287989E0DBAE534C9A21A11_inline(__this, NULL);
if ((((int32_t)L_31) < ((int32_t)L_32)))
{
goto IL_007d;
}
}
{
int32_t L_33 = __this->___m_hash_3;
int32_t L_34 = V_2;
__this->___m_hash_3 = ((int32_t)(L_33^L_34));
}
IL_00ac:
{
int32_t L_35 = __this->___m_hash_3;
return L_35;
}
}
// System.String System.Net.SocketAddress::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SocketAddress_ToString_m1C4AEB870E76472C9E3800224F2400A66DF8E46A (SocketAddress_tAB4BC630E51E2241E607F4070DA1AEE00B442A03* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AddressFamily_t01AA8C9FD15E4727B241F1F453D88444337C7524_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4D8D9C94AC5DA5FCED2EC8A64E10E714A2515C30);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6C8B879C8DDD1F43E70CC5411A8D8E6CF0F55DF7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC18C9BB6DF0D5C60CE5A5D2D3D6111BEB6F8CCEB);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t* V_0 = NULL;
int32_t V_1 = 0;
uint8_t V_2 = 0x0;
int32_t V_3 = 0;
int32_t V_4 = 0;
{
StringBuilder_t* L_0 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
NullCheck(L_0);
StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_0, NULL);
V_0 = L_0;
V_1 = 2;
goto IL_0039;
}
IL_000a:
{
int32_t L_1 = V_1;
if ((((int32_t)L_1) <= ((int32_t)2)))
{
goto IL_001a;
}
}
{
StringBuilder_t* L_2 = V_0;
NullCheck(L_2);
StringBuilder_t* L_3;
L_3 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_2, _stringLiteralC18C9BB6DF0D5C60CE5A5D2D3D6111BEB6F8CCEB, NULL);
}
IL_001a:
{
StringBuilder_t* L_4 = V_0;
int32_t L_5 = V_1;
uint8_t L_6;
L_6 = SocketAddress_get_Item_mFF97A6A1AF0D8AB36C662282C477B5DBAFD10FBD(__this, L_5, NULL);
V_2 = L_6;
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_7;
L_7 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL);
String_t* L_8;
L_8 = Byte_ToString_m3F9787FE9A306FE63F388635DEE2733F91588A86((&V_2), L_7, NULL);
NullCheck(L_4);
StringBuilder_t* L_9;
L_9 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_4, L_8, NULL);
int32_t L_10 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_10, 1));
}
IL_0039:
{
int32_t L_11 = V_1;
int32_t L_12;
L_12 = SocketAddress_get_Size_mBBA7758844EE6209A287989E0DBAE534C9A21A11_inline(__this, NULL);
if ((((int32_t)L_11) < ((int32_t)L_12)))
{
goto IL_000a;
}
}
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_13 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)6);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_14 = L_13;
int32_t L_15;
L_15 = SocketAddress_get_Family_mF66C07BE26931A763DF421310667F1C7EE82EA20(__this, NULL);
V_3 = L_15;
Il2CppFakeBox<int32_t> L_16(AddressFamily_t01AA8C9FD15E4727B241F1F453D88444337C7524_il2cpp_TypeInfo_var, (&V_3));
String_t* L_17;
L_17 = Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)(&L_16), NULL);
NullCheck(L_14);
ArrayElementTypeCheck (L_14, L_17);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_17);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_18 = L_14;
NullCheck(L_18);
ArrayElementTypeCheck (L_18, _stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D);
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_19 = L_18;
int32_t L_20;
L_20 = SocketAddress_get_Size_mBBA7758844EE6209A287989E0DBAE534C9A21A11_inline(__this, NULL);
V_4 = L_20;
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_21;
L_21 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL);
String_t* L_22;
L_22 = Int32_ToString_m3B2730D9F5B0C1C57DCCC8B8DCFB8E5EC4E8979B((&V_4), L_21, NULL);
NullCheck(L_19);
ArrayElementTypeCheck (L_19, L_22);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_22);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_23 = L_19;
NullCheck(L_23);
ArrayElementTypeCheck (L_23, _stringLiteral6C8B879C8DDD1F43E70CC5411A8D8E6CF0F55DF7);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral6C8B879C8DDD1F43E70CC5411A8D8E6CF0F55DF7);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_24 = L_23;
StringBuilder_t* L_25 = V_0;
NullCheck(L_25);
String_t* L_26;
L_26 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_25);
NullCheck(L_24);
ArrayElementTypeCheck (L_24, L_26);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)L_26);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_27 = L_24;
NullCheck(L_27);
ArrayElementTypeCheck (L_27, _stringLiteral4D8D9C94AC5DA5FCED2EC8A64E10E714A2515C30);
(L_27)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral4D8D9C94AC5DA5FCED2EC8A64E10E714A2515C30);
String_t* L_28;
L_28 = String_Concat_m6B0734B65813C8EA093D78E5C2D16534EB6FE8C0(L_27, NULL);
return L_28;
}
}
#ifdef __clang__
#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.WebException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebException__ctor_m1F229FB262E89CA90779094218A3066F532EB8CB (WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* __this, const RuntimeMethod* method)
{
{
__this->___m_Status_18 = ((int32_t)16);
InvalidOperationException__ctor_m1BE9BD198B904AA1D94F4B10DA88077DFD44B7A5(__this, NULL);
return;
}
}
// System.Void System.Net.WebException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebException__ctor_mFBC3890EC80132004827F36950EEB651595BF277 (WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
WebException__ctor_m8075F9F7345CECCBDB276E0B67DE820A9F7D03E9(__this, L_0, (Exception_t*)NULL, NULL);
return;
}
}
// System.Void System.Net.WebException::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebException__ctor_m8075F9F7345CECCBDB276E0B67DE820A9F7D03E9 (WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* __this, String_t* ___message0, Exception_t* ___innerException1, const RuntimeMethod* method)
{
{
__this->___m_Status_18 = ((int32_t)16);
String_t* L_0 = ___message0;
Exception_t* L_1 = ___innerException1;
InvalidOperationException__ctor_m63F5561BE647F655D22C8289E53A5D3A2196B668(__this, L_0, L_1, NULL);
return;
}
}
// System.Void System.Net.WebException::.ctor(System.String,System.Net.WebExceptionStatus)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebException__ctor_m6C829021B5388956F84830FC249915324C1453A1 (WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* __this, String_t* ___message0, int32_t ___status1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
int32_t L_1 = ___status1;
WebException__ctor_m937A4670EAF10FD9EFA1E0AEAAE27515293339FD(__this, L_0, (Exception_t*)NULL, L_1, (WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682*)NULL, NULL);
return;
}
}
// System.Void System.Net.WebException::.ctor(System.String,System.Net.WebExceptionStatus,System.Net.WebExceptionInternalStatus,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebException__ctor_m7022740DDAF9DE008CB8B2B66CC04AE2C5C45174 (WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* __this, String_t* ___message0, int32_t ___status1, int32_t ___internalStatus2, Exception_t* ___innerException3, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
Exception_t* L_1 = ___innerException3;
int32_t L_2 = ___status1;
int32_t L_3 = ___internalStatus2;
WebException__ctor_m7A5D68872BF6CA52F8992EBFD74AB6BCB07EB77C(__this, L_0, L_1, L_2, (WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682*)NULL, L_3, NULL);
return;
}
}
// 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_m937A4670EAF10FD9EFA1E0AEAAE27515293339FD (WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* __this, String_t* ___message0, Exception_t* ___innerException1, int32_t ___status2, WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* ___response3, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
Exception_t* L_1 = ___innerException1;
int32_t L_2 = ___status2;
WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* L_3 = ___response3;
WebException__ctor_mA1609CA415DDD5C7C4AF37E9CD2CE77330C43384(__this, L_0, (String_t*)NULL, L_1, L_2, L_3, NULL);
return;
}
}
// System.Void System.Net.WebException::.ctor(System.String,System.String,System.Exception,System.Net.WebExceptionStatus,System.Net.WebResponse)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebException__ctor_mA1609CA415DDD5C7C4AF37E9CD2CE77330C43384 (WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* __this, String_t* ___message0, String_t* ___data1, Exception_t* ___innerException2, int32_t ___status3, WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* ___response4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral90B1F8A5D2657AA29275021823D578F50A05BFFC);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
s_Il2CppMethodInitialized = true;
}
String_t* G_B2_0 = NULL;
WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* G_B2_1 = NULL;
String_t* G_B1_0 = NULL;
WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* G_B1_1 = NULL;
String_t* G_B3_0 = NULL;
String_t* G_B3_1 = NULL;
WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* G_B3_2 = NULL;
{
__this->___m_Status_18 = ((int32_t)16);
String_t* L_0 = ___message0;
String_t* L_1 = ___data1;
G_B1_0 = L_0;
G_B1_1 = __this;
if (L_1)
{
G_B2_0 = L_0;
G_B2_1 = __this;
goto IL_0014;
}
}
{
G_B3_0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
goto IL_0024;
}
IL_0014:
{
String_t* L_2 = ___data1;
String_t* L_3;
L_3 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(_stringLiteral90B1F8A5D2657AA29275021823D578F50A05BFFC, L_2, _stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D, NULL);
G_B3_0 = L_3;
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
}
IL_0024:
{
String_t* L_4;
L_4 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(G_B3_1, G_B3_0, NULL);
Exception_t* L_5 = ___innerException2;
InvalidOperationException__ctor_m63F5561BE647F655D22C8289E53A5D3A2196B668(G_B3_2, L_4, L_5, NULL);
int32_t L_6 = ___status3;
__this->___m_Status_18 = L_6;
WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* L_7 = ___response4;
__this->___m_Response_19 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Response_19), (void*)L_7);
return;
}
}
// System.Void System.Net.WebException::.ctor(System.String,System.Exception,System.Net.WebExceptionStatus,System.Net.WebResponse,System.Net.WebExceptionInternalStatus)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebException__ctor_m7A5D68872BF6CA52F8992EBFD74AB6BCB07EB77C (WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* __this, String_t* ___message0, Exception_t* ___innerException1, int32_t ___status2, WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* ___response3, int32_t ___internalStatus4, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
Exception_t* L_1 = ___innerException1;
int32_t L_2 = ___status2;
WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* L_3 = ___response3;
int32_t L_4 = ___internalStatus4;
WebException__ctor_mF29A3D816C156692A8C353A9C824CA2F5C60BBFD(__this, L_0, (String_t*)NULL, L_1, L_2, L_3, L_4, NULL);
return;
}
}
// System.Void System.Net.WebException::.ctor(System.String,System.String,System.Exception,System.Net.WebExceptionStatus,System.Net.WebResponse,System.Net.WebExceptionInternalStatus)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebException__ctor_mF29A3D816C156692A8C353A9C824CA2F5C60BBFD (WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* __this, String_t* ___message0, String_t* ___data1, Exception_t* ___innerException2, int32_t ___status3, WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* ___response4, int32_t ___internalStatus5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral90B1F8A5D2657AA29275021823D578F50A05BFFC);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
s_Il2CppMethodInitialized = true;
}
String_t* G_B2_0 = NULL;
WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* G_B2_1 = NULL;
String_t* G_B1_0 = NULL;
WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* G_B1_1 = NULL;
String_t* G_B3_0 = NULL;
String_t* G_B3_1 = NULL;
WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* G_B3_2 = NULL;
{
__this->___m_Status_18 = ((int32_t)16);
String_t* L_0 = ___message0;
String_t* L_1 = ___data1;
G_B1_0 = L_0;
G_B1_1 = __this;
if (L_1)
{
G_B2_0 = L_0;
G_B2_1 = __this;
goto IL_0014;
}
}
{
G_B3_0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
goto IL_0024;
}
IL_0014:
{
String_t* L_2 = ___data1;
String_t* L_3;
L_3 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(_stringLiteral90B1F8A5D2657AA29275021823D578F50A05BFFC, L_2, _stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D, NULL);
G_B3_0 = L_3;
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
}
IL_0024:
{
String_t* L_4;
L_4 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(G_B3_1, G_B3_0, NULL);
Exception_t* L_5 = ___innerException2;
InvalidOperationException__ctor_m63F5561BE647F655D22C8289E53A5D3A2196B668(G_B3_2, L_4, L_5, NULL);
int32_t L_6 = ___status3;
__this->___m_Status_18 = L_6;
WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* L_7 = ___response4;
__this->___m_Response_19 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Response_19), (void*)L_7);
int32_t L_8 = ___internalStatus5;
__this->___m_InternalStatus_20 = L_8;
return;
}
}
// System.Void System.Net.WebException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebException__ctor_m6D36D5DBE171207E973C5BDFC9A57BE2A1E5DA7C (WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___serializationInfo0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___streamingContext1, const RuntimeMethod* method)
{
{
__this->___m_Status_18 = ((int32_t)16);
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___serializationInfo0;
StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___streamingContext1;
InvalidOperationException__ctor_m8C443A05288C1BFFD969714B5AFB66FD3995824F(__this, L_0, L_1, NULL);
return;
}
}
// System.Void System.Net.WebException::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebException_System_Runtime_Serialization_ISerializable_GetObjectData_mAEABC5E4A1BAE8AD395EFC404CCEAA00345AD628 (WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___serializationInfo0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___streamingContext1, const RuntimeMethod* method)
{
{
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___serializationInfo0;
StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___streamingContext1;
VirtualActionInvoker2< SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37*, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 >::Invoke(10 /* System.Void System.Exception::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, __this, L_0, L_1);
return;
}
}
// System.Void System.Net.WebException::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebException_GetObjectData_mF735C851AF332C94DDDAB38C0C24AA1871DC2901 (WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___serializationInfo0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___streamingContext1, const RuntimeMethod* method)
{
{
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___serializationInfo0;
StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___streamingContext1;
Exception_GetObjectData_mD69929DB0BB2512240908B9EEE21778CB7B72DA9(__this, L_0, L_1, NULL);
return;
}
}
// System.Net.WebExceptionStatus System.Net.WebException::get_Status()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t WebException_get_Status_m9B08D3B07C3D75A6783EADB1215EB54E2D3B9822 (WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___m_Status_18;
return L_0;
}
}
// System.Net.WebResponse System.Net.WebException::get_Response()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* WebException_get_Response_m808BF96464DDCE6C66D633355101C69800A5A7E7 (WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* __this, const RuntimeMethod* method)
{
{
WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* L_0 = __this->___m_Response_19;
return L_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String System.Net.WebExceptionMapping::GetWebStatusString(System.Net.WebExceptionStatus)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebExceptionMapping_GetWebStatusString_mC6F3D28D6DCDD3E8674CBDA5CA684DF603DBCF69 (int32_t ___status0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebExceptionMapping_tDDA997889D4DC7BF308F43EE387C07295C096FA8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebExceptionStatus_t86B29EE86F8C7D20D1825C71503F0473C43B4B92_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3920A82609B491048963B8ABAE79392979797BC9);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
String_t* V_1 = NULL;
{
int32_t L_0 = ___status0;
V_0 = L_0;
int32_t L_1 = V_0;
il2cpp_codegen_runtime_class_init_inline(WebExceptionMapping_tDDA997889D4DC7BF308F43EE387C07295C096FA8_il2cpp_TypeInfo_var);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_2 = ((WebExceptionMapping_tDDA997889D4DC7BF308F43EE387C07295C096FA8_StaticFields*)il2cpp_codegen_static_fields_for(WebExceptionMapping_tDDA997889D4DC7BF308F43EE387C07295C096FA8_il2cpp_TypeInfo_var))->___s_Mapping_0;
NullCheck(L_2);
if ((((int32_t)L_1) >= ((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))))
{
goto IL_0010;
}
}
{
int32_t L_3 = V_0;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0016;
}
}
IL_0010:
{
InternalException_tBD5CDE9133BB628E33CE7F16F6396FCD739C1934* L_4 = (InternalException_tBD5CDE9133BB628E33CE7F16F6396FCD739C1934*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InternalException_tBD5CDE9133BB628E33CE7F16F6396FCD739C1934_il2cpp_TypeInfo_var)));
NullCheck(L_4);
InternalException__ctor_m20A09E66E185FB1449C71227304AF40936C8011A(L_4, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebExceptionMapping_GetWebStatusString_mC6F3D28D6DCDD3E8674CBDA5CA684DF603DBCF69_RuntimeMethod_var)));
}
IL_0016:
{
il2cpp_codegen_runtime_class_init_inline(WebExceptionMapping_tDDA997889D4DC7BF308F43EE387C07295C096FA8_il2cpp_TypeInfo_var);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_5 = ((WebExceptionMapping_tDDA997889D4DC7BF308F43EE387C07295C096FA8_StaticFields*)il2cpp_codegen_static_fields_for(WebExceptionMapping_tDDA997889D4DC7BF308F43EE387C07295C096FA8_il2cpp_TypeInfo_var))->___s_Mapping_0;
int32_t L_6 = V_0;
NullCheck(L_5);
String_t* L_7;
L_7 = VolatileRead(((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6))));
V_1 = L_7;
String_t* L_8 = V_1;
if (L_8)
{
goto IL_0053;
}
}
{
Il2CppFakeBox<int32_t> L_9(WebExceptionStatus_t86B29EE86F8C7D20D1825C71503F0473C43B4B92_il2cpp_TypeInfo_var, (&___status0));
String_t* L_10;
L_10 = Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)(&L_9), NULL);
String_t* L_11;
L_11 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteral3920A82609B491048963B8ABAE79392979797BC9, L_10, NULL);
V_1 = L_11;
il2cpp_codegen_runtime_class_init_inline(WebExceptionMapping_tDDA997889D4DC7BF308F43EE387C07295C096FA8_il2cpp_TypeInfo_var);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_12 = ((WebExceptionMapping_tDDA997889D4DC7BF308F43EE387C07295C096FA8_StaticFields*)il2cpp_codegen_static_fields_for(WebExceptionMapping_tDDA997889D4DC7BF308F43EE387C07295C096FA8_il2cpp_TypeInfo_var))->___s_Mapping_0;
int32_t L_13 = V_0;
NullCheck(L_12);
String_t* L_14 = V_1;
VolatileWrite(((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13))), L_14);
}
IL_0053:
{
String_t* L_15 = V_1;
return L_15;
}
}
// System.Void System.Net.WebExceptionMapping::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebExceptionMapping__cctor_m56C96AB4B5D49C51756576BE119AC1096CDD6C4C (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebExceptionMapping_tDDA997889D4DC7BF308F43EE387C07295C096FA8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)((int32_t)21));
((WebExceptionMapping_tDDA997889D4DC7BF308F43EE387C07295C096FA8_StaticFields*)il2cpp_codegen_static_fields_for(WebExceptionMapping_tDDA997889D4DC7BF308F43EE387C07295C096FA8_il2cpp_TypeInfo_var))->___s_Mapping_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((WebExceptionMapping_tDDA997889D4DC7BF308F43EE387C07295C096FA8_StaticFields*)il2cpp_codegen_static_fields_for(WebExceptionMapping_tDDA997889D4DC7BF308F43EE387C07295C096FA8_il2cpp_TypeInfo_var))->___s_Mapping_0), (void*)L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#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.WebHeaderCollection::NormalizeCommonHeaders()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebHeaderCollection_NormalizeCommonHeaders_mE1D83B9D009EB876D33D1EB93CDC65F4F97B5B77 (WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = __this->___m_CommonHeaders_12;
if (L_0)
{
goto IL_0009;
}
}
{
return;
}
IL_0009:
{
V_0 = 0;
goto IL_0035;
}
IL_000d:
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_1 = __this->___m_CommonHeaders_12;
int32_t L_2 = V_0;
NullCheck(L_1);
int32_t L_3 = L_2;
String_t* L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
if (!L_4)
{
goto IL_0031;
}
}
{
NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* L_5;
L_5 = WebHeaderCollection_get_InnerCollection_m544FF08AD232BC5BDD8C5109DF6CD21C5ECAE2D0(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_6 = ((WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var))->___s_CommonHeaderNames_14;
int32_t L_7 = V_0;
NullCheck(L_6);
int32_t L_8 = L_7;
String_t* L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_10 = __this->___m_CommonHeaders_12;
int32_t L_11 = V_0;
NullCheck(L_10);
int32_t L_12 = L_11;
String_t* L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
NullCheck(L_5);
VirtualActionInvoker2< String_t*, String_t* >::Invoke(15 /* System.Void System.Collections.Specialized.NameValueCollection::Add(System.String,System.String) */, L_5, L_9, L_13);
}
IL_0031:
{
int32_t L_14 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_14, 1));
}
IL_0035:
{
int32_t L_15 = V_0;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_16 = __this->___m_CommonHeaders_12;
NullCheck(L_16);
if ((((int32_t)L_15) < ((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length)))))
{
goto IL_000d;
}
}
{
__this->___m_CommonHeaders_12 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_CommonHeaders_12), (void*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)NULL);
__this->___m_NumCommonHeaders_13 = 0;
return;
}
}
// System.Collections.Specialized.NameValueCollection System.Net.WebHeaderCollection::get_InnerCollection()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* WebHeaderCollection_get_InnerCollection_m544FF08AD232BC5BDD8C5109DF6CD21C5ECAE2D0 (WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* L_0 = __this->___m_InnerCollection_16;
if (L_0)
{
goto IL_001a;
}
}
{
il2cpp_codegen_runtime_class_init_inline(CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_il2cpp_TypeInfo_var);
CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C* L_1 = ((CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_StaticFields*)il2cpp_codegen_static_fields_for(CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_il2cpp_TypeInfo_var))->___StaticInstance_0;
NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* L_2 = (NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7*)il2cpp_codegen_object_new(NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7_il2cpp_TypeInfo_var);
NullCheck(L_2);
NameValueCollection__ctor_m1545E08D22D8E6C1FCDDAE43741AA43D52F4A21E(L_2, ((int32_t)16), L_1, NULL);
__this->___m_InnerCollection_16 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_InnerCollection_16), (void*)L_2);
}
IL_001a:
{
NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* L_3 = __this->___m_InnerCollection_16;
return L_3;
}
}
// System.Boolean System.Net.WebHeaderCollection::AllowMultiValues(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WebHeaderCollection_AllowMultiValues_mDE5975EA8A29DCB2347D5B3FCFD97473E12CDC16 (String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
s_Il2CppMethodInitialized = true;
}
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* V_0 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var);
HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F* L_0 = ((WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var))->___HInfo_11;
String_t* L_1 = ___name0;
NullCheck(L_0);
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_2;
L_2 = HeaderInfoTable_get_Item_mE388F21B37BFA30336BB82A1585C744E69A20021(L_0, L_1, NULL);
V_0 = L_2;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_3 = V_0;
NullCheck(L_3);
bool L_4 = L_3->___AllowMultiValues_4;
if (L_4)
{
goto IL_0025;
}
}
{
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_5 = V_0;
NullCheck(L_5);
String_t* L_6 = L_5->___HeaderName_3;
bool L_7;
L_7 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_6, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, NULL);
return L_7;
}
IL_0025:
{
return (bool)1;
}
}
// System.Boolean System.Net.WebHeaderCollection::get_AllowHttpRequestHeader()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WebHeaderCollection_get_AllowHttpRequestHeader_m3ED9F9796BC1B56D21105BAE17D4CABA83713889 (WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* __this, const RuntimeMethod* method)
{
{
uint16_t L_0 = __this->___m_Type_17;
if (L_0)
{
goto IL_000f;
}
}
{
__this->___m_Type_17 = 1;
}
IL_000f:
{
uint16_t L_1 = __this->___m_Type_17;
if ((((int32_t)L_1) == ((int32_t)1)))
{
goto IL_002b;
}
}
{
uint16_t L_2 = __this->___m_Type_17;
if ((((int32_t)L_2) == ((int32_t)3)))
{
goto IL_002b;
}
}
{
uint16_t L_3 = __this->___m_Type_17;
return (bool)((((int32_t)L_3) == ((int32_t)5))? 1 : 0);
}
IL_002b:
{
return (bool)1;
}
}
// System.Void System.Net.WebHeaderCollection::Remove(System.Net.HttpRequestHeader)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebHeaderCollection_Remove_m93990EF3A5F1D4F6D67232583029BB26483C7F67 (WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* __this, int32_t ___header0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HTTP_REQUEST_HEADER_ID_t2ACEB911F77BA4CEA6188D3A58E028E2F9EDF51E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
bool L_0;
L_0 = WebHeaderCollection_get_AllowHttpRequestHeader_m3ED9F9796BC1B56D21105BAE17D4CABA83713889(__this, NULL);
if (L_0)
{
goto IL_0018;
}
}
{
String_t* L_1;
L_1 = SR_GetString_m2FF076D246665572FABD5913A9945E2A694DCB4D(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral282E4C330C51E3CF417428EAAD50AB8F2AA43472)), NULL);
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_2);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, L_1, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebHeaderCollection_Remove_m93990EF3A5F1D4F6D67232583029BB26483C7F67_RuntimeMethod_var)));
}
IL_0018:
{
int32_t L_3 = ___header0;
il2cpp_codegen_runtime_class_init_inline(HTTP_REQUEST_HEADER_ID_t2ACEB911F77BA4CEA6188D3A58E028E2F9EDF51E_il2cpp_TypeInfo_var);
String_t* L_4;
L_4 = HTTP_REQUEST_HEADER_ID_ToString_mA04F9029112EC556EDFEA391089A880B12C0CCD1(L_3, NULL);
VirtualActionInvoker1< String_t* >::Invoke(19 /* System.Void System.Collections.Specialized.NameValueCollection::Remove(System.String) */, __this, L_4);
return;
}
}
// System.Void System.Net.WebHeaderCollection::AddInternal(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebHeaderCollection_AddInternal_m0EE002E2F815150CA5C43EC865F6D193FD4B7777 (WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method)
{
{
WebHeaderCollection_NormalizeCommonHeaders_mE1D83B9D009EB876D33D1EB93CDC65F4F97B5B77(__this, NULL);
NameValueCollection_InvalidateCachedArrays_mA9AA2F9B6A67C2576FA30F12208AA6E1F149C44B(__this, NULL);
NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* L_0;
L_0 = WebHeaderCollection_get_InnerCollection_m544FF08AD232BC5BDD8C5109DF6CD21C5ECAE2D0(__this, NULL);
String_t* L_1 = ___name0;
String_t* L_2 = ___value1;
NullCheck(L_0);
VirtualActionInvoker2< String_t*, String_t* >::Invoke(15 /* System.Void System.Collections.Specialized.NameValueCollection::Add(System.String,System.String) */, L_0, L_1, L_2);
return;
}
}
// System.Void System.Net.WebHeaderCollection::ChangeInternal(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebHeaderCollection_ChangeInternal_m170009EA1B341E9E69FD5A7DECF0AD2EE601C2EB (WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method)
{
{
WebHeaderCollection_NormalizeCommonHeaders_mE1D83B9D009EB876D33D1EB93CDC65F4F97B5B77(__this, NULL);
NameValueCollection_InvalidateCachedArrays_mA9AA2F9B6A67C2576FA30F12208AA6E1F149C44B(__this, NULL);
NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* L_0;
L_0 = WebHeaderCollection_get_InnerCollection_m544FF08AD232BC5BDD8C5109DF6CD21C5ECAE2D0(__this, NULL);
String_t* L_1 = ___name0;
String_t* L_2 = ___value1;
NullCheck(L_0);
VirtualActionInvoker2< String_t*, String_t* >::Invoke(18 /* System.Void System.Collections.Specialized.NameValueCollection::Set(System.String,System.String) */, L_0, L_1, L_2);
return;
}
}
// System.Void System.Net.WebHeaderCollection::RemoveInternal(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebHeaderCollection_RemoveInternal_mC5B544F96C64E2087FE388E375DBE4A185E53AF0 (WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* __this, String_t* ___name0, const RuntimeMethod* method)
{
{
WebHeaderCollection_NormalizeCommonHeaders_mE1D83B9D009EB876D33D1EB93CDC65F4F97B5B77(__this, NULL);
NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* L_0 = __this->___m_InnerCollection_16;
if (!L_0)
{
goto IL_0020;
}
}
{
NameValueCollection_InvalidateCachedArrays_mA9AA2F9B6A67C2576FA30F12208AA6E1F149C44B(__this, NULL);
NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* L_1 = __this->___m_InnerCollection_16;
String_t* L_2 = ___name0;
NullCheck(L_1);
VirtualActionInvoker1< String_t* >::Invoke(19 /* System.Void System.Collections.Specialized.NameValueCollection::Remove(System.String) */, L_1, L_2);
}
IL_0020:
{
return;
}
}
// System.String System.Net.WebHeaderCollection::CheckBadChars(System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebHeaderCollection_CheckBadChars_m1F7BCD4BF0DC01AF8C1378AD02862D9900B67D71 (String_t* ___name0, bool ___isHeaderValue1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidationHelper_tA6AE681FCDFA9BE8E3EF31C28A624AADF973A25C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Il2CppChar V_2 = 0x0;
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* G_B6_0 = NULL;
{
String_t* L_0 = ___name0;
if (!L_0)
{
goto IL_000b;
}
}
{
String_t* L_1 = ___name0;
NullCheck(L_1);
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL);
if (L_2)
{
goto IL_0046;
}
}
IL_000b:
{
bool L_3 = ___isHeaderValue1;
if (L_3)
{
goto IL_0040;
}
}
{
String_t* L_4 = ___name0;
if (!L_4)
{
goto IL_0035;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = L_5;
NullCheck(L_6);
ArrayElementTypeCheck (L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F)));
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F)));
String_t* L_7;
L_7 = SR_GetString_mF713FCC09E41A8D1C0DE44EDD0932A57800A9BA3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5896CBBFC90905C75DD54D891BDA98D58E394A45)), L_6, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_8 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_8);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_8, L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F)), NULL);
G_B6_0 = L_8;
goto IL_003f;
}
IL_0035:
{
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_9 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_9);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F)), NULL);
G_B6_0 = ((ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)(L_9));
}
IL_003f:
{
IL2CPP_RAISE_MANAGED_EXCEPTION(G_B6_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebHeaderCollection_CheckBadChars_m1F7BCD4BF0DC01AF8C1378AD02862D9900B67D71_RuntimeMethod_var)));
}
IL_0040:
{
String_t* L_10 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_10;
}
IL_0046:
{
bool L_11 = ___isHeaderValue1;
if (!L_11)
{
goto IL_0124;
}
}
{
String_t* L_12 = ___name0;
il2cpp_codegen_runtime_class_init_inline(WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_13 = ((WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var))->___HttpTrimCharacters_18;
NullCheck(L_12);
String_t* L_14;
L_14 = String_Trim_m81BD35659E6F89DDD56816975E6E05390D023FE5(L_12, L_13, NULL);
___name0 = L_14;
V_0 = 0;
V_1 = 0;
goto IL_0100;
}
IL_0062:
{
String_t* L_15 = ___name0;
int32_t L_16 = V_1;
NullCheck(L_15);
Il2CppChar L_17;
L_17 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_15, L_16, NULL);
V_2 = ((int32_t)(uint16_t)((int32_t)(((int32_t)255)&(int32_t)L_17)));
int32_t L_18 = V_0;
switch (L_18)
{
case 0:
{
goto IL_0085;
}
case 1:
{
goto IL_00bb;
}
case 2:
{
goto IL_00d9;
}
}
}
{
goto IL_00fc;
}
IL_0085:
{
Il2CppChar L_19 = V_2;
if ((!(((uint32_t)L_19) == ((uint32_t)((int32_t)13)))))
{
goto IL_008e;
}
}
{
V_0 = 1;
goto IL_00fc;
}
IL_008e:
{
Il2CppChar L_20 = V_2;
if ((!(((uint32_t)L_20) == ((uint32_t)((int32_t)10)))))
{
goto IL_0097;
}
}
{
V_0 = 2;
goto IL_00fc;
}
IL_0097:
{
Il2CppChar L_21 = V_2;
if ((((int32_t)L_21) == ((int32_t)((int32_t)127))))
{
goto IL_00a6;
}
}
{
Il2CppChar L_22 = V_2;
if ((((int32_t)L_22) >= ((int32_t)((int32_t)32))))
{
goto IL_00fc;
}
}
{
Il2CppChar L_23 = V_2;
if ((((int32_t)L_23) == ((int32_t)((int32_t)9))))
{
goto IL_00fc;
}
}
IL_00a6:
{
String_t* L_24;
L_24 = SR_GetString_m2FF076D246665572FABD5913A9945E2A694DCB4D(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFDFFE28162CF41B1A4769465853369BC9103A870)), NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_25 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_25);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_25, L_24, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebHeaderCollection_CheckBadChars_m1F7BCD4BF0DC01AF8C1378AD02862D9900B67D71_RuntimeMethod_var)));
}
IL_00bb:
{
Il2CppChar L_26 = V_2;
if ((!(((uint32_t)L_26) == ((uint32_t)((int32_t)10)))))
{
goto IL_00c4;
}
}
{
V_0 = 2;
goto IL_00fc;
}
IL_00c4:
{
String_t* L_27;
L_27 = SR_GetString_m2FF076D246665572FABD5913A9945E2A694DCB4D(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAC669FEED01B4FD2367FB6264BEFB325184802C8)), NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_28 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_28);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_28, L_27, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebHeaderCollection_CheckBadChars_m1F7BCD4BF0DC01AF8C1378AD02862D9900B67D71_RuntimeMethod_var)));
}
IL_00d9:
{
Il2CppChar L_29 = V_2;
if ((((int32_t)L_29) == ((int32_t)((int32_t)32))))
{
goto IL_00e3;
}
}
{
Il2CppChar L_30 = V_2;
if ((!(((uint32_t)L_30) == ((uint32_t)((int32_t)9)))))
{
goto IL_00e7;
}
}
IL_00e3:
{
V_0 = 0;
goto IL_00fc;
}
IL_00e7:
{
String_t* L_31;
L_31 = SR_GetString_m2FF076D246665572FABD5913A9945E2A694DCB4D(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAC669FEED01B4FD2367FB6264BEFB325184802C8)), NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_32 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_32);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_32, L_31, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_32, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebHeaderCollection_CheckBadChars_m1F7BCD4BF0DC01AF8C1378AD02862D9900B67D71_RuntimeMethod_var)));
}
IL_00fc:
{
int32_t L_33 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_33, 1));
}
IL_0100:
{
int32_t L_34 = V_1;
String_t* L_35 = ___name0;
NullCheck(L_35);
int32_t L_36;
L_36 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_35, NULL);
if ((((int32_t)L_34) < ((int32_t)L_36)))
{
goto IL_0062;
}
}
{
int32_t L_37 = V_0;
if (!L_37)
{
goto IL_0164;
}
}
{
String_t* L_38;
L_38 = SR_GetString_m2FF076D246665572FABD5913A9945E2A694DCB4D(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAC669FEED01B4FD2367FB6264BEFB325184802C8)), NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_39 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_39);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_39, L_38, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_39, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebHeaderCollection_CheckBadChars_m1F7BCD4BF0DC01AF8C1378AD02862D9900B67D71_RuntimeMethod_var)));
}
IL_0124:
{
String_t* L_40 = ___name0;
il2cpp_codegen_runtime_class_init_inline(ValidationHelper_tA6AE681FCDFA9BE8E3EF31C28A624AADF973A25C_il2cpp_TypeInfo_var);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_41 = ((ValidationHelper_tA6AE681FCDFA9BE8E3EF31C28A624AADF973A25C_StaticFields*)il2cpp_codegen_static_fields_for(ValidationHelper_tA6AE681FCDFA9BE8E3EF31C28A624AADF973A25C_il2cpp_TypeInfo_var))->___InvalidParamChars_2;
NullCheck(L_40);
int32_t L_42;
L_42 = String_IndexOfAny_mC7AA4AE42B38667BDB9B214AA6230F322306CFF6(L_40, L_41, NULL);
if ((((int32_t)L_42) == ((int32_t)(-1))))
{
goto IL_0147;
}
}
{
String_t* L_43;
L_43 = SR_GetString_m2FF076D246665572FABD5913A9945E2A694DCB4D(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1C997AE61348A368618FE9FD363F88CDC0B40097)), NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_44 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_44);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_44, L_43, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_44, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebHeaderCollection_CheckBadChars_m1F7BCD4BF0DC01AF8C1378AD02862D9900B67D71_RuntimeMethod_var)));
}
IL_0147:
{
String_t* L_45 = ___name0;
il2cpp_codegen_runtime_class_init_inline(WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var);
bool L_46;
L_46 = WebHeaderCollection_ContainsNonAsciiChars_mAE8D797265C12FBCAC784B15D734914273ED7AFD(L_45, NULL);
if (!L_46)
{
goto IL_0164;
}
}
{
String_t* L_47;
L_47 = SR_GetString_m2FF076D246665572FABD5913A9945E2A694DCB4D(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBE862036DA47632F04AD94833A9CB9CC121765B5)), NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_48 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_48);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_48, L_47, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_48, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebHeaderCollection_CheckBadChars_m1F7BCD4BF0DC01AF8C1378AD02862D9900B67D71_RuntimeMethod_var)));
}
IL_0164:
{
String_t* L_49 = ___name0;
return L_49;
}
}
// System.Boolean System.Net.WebHeaderCollection::ContainsNonAsciiChars(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WebHeaderCollection_ContainsNonAsciiChars_mAE8D797265C12FBCAC784B15D734914273ED7AFD (String_t* ___token0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
V_0 = 0;
goto IL_0020;
}
IL_0004:
{
String_t* L_0 = ___token0;
int32_t L_1 = V_0;
NullCheck(L_0);
Il2CppChar L_2;
L_2 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_0, L_1, NULL);
if ((((int32_t)L_2) < ((int32_t)((int32_t)32))))
{
goto IL_001a;
}
}
{
String_t* L_3 = ___token0;
int32_t L_4 = V_0;
NullCheck(L_3);
Il2CppChar L_5;
L_5 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_3, L_4, NULL);
if ((((int32_t)L_5) <= ((int32_t)((int32_t)126))))
{
goto IL_001c;
}
}
IL_001a:
{
return (bool)1;
}
IL_001c:
{
int32_t L_6 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_6, 1));
}
IL_0020:
{
int32_t L_7 = V_0;
String_t* L_8 = ___token0;
NullCheck(L_8);
int32_t L_9;
L_9 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_8, NULL);
if ((((int32_t)L_7) < ((int32_t)L_9)))
{
goto IL_0004;
}
}
{
return (bool)0;
}
}
// System.Void System.Net.WebHeaderCollection::ThrowOnRestrictedHeader(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebHeaderCollection_ThrowOnRestrictedHeader_mFBE0E21167D9EB5485BD3DC18B505FEC9BF6CF51 (WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* __this, String_t* ___headerName0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
uint16_t L_0 = __this->___m_Type_17;
if ((!(((uint32_t)L_0) == ((uint32_t)3))))
{
goto IL_003a;
}
}
{
il2cpp_codegen_runtime_class_init_inline(WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var);
HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F* L_1 = ((WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var))->___HInfo_11;
String_t* L_2 = ___headerName0;
NullCheck(L_1);
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_3;
L_3 = HeaderInfoTable_get_Item_mE388F21B37BFA30336BB82A1585C744E69A20021(L_1, L_2, NULL);
NullCheck(L_3);
bool L_4 = L_3->___IsRequestRestricted_0;
if (!L_4)
{
goto IL_0074;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = L_5;
String_t* L_7 = ___headerName0;
NullCheck(L_6);
ArrayElementTypeCheck (L_6, L_7);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_7);
String_t* L_8;
L_8 = SR_GetString_mF713FCC09E41A8D1C0DE44EDD0932A57800A9BA3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral53005BF01FA9DB19AA782E943D8D2B4BB1BD3B20)), L_6, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_9 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_9);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_9, L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebHeaderCollection_ThrowOnRestrictedHeader_mFBE0E21167D9EB5485BD3DC18B505FEC9BF6CF51_RuntimeMethod_var)));
}
IL_003a:
{
uint16_t L_10 = __this->___m_Type_17;
if ((!(((uint32_t)L_10) == ((uint32_t)6))))
{
goto IL_0074;
}
}
{
il2cpp_codegen_runtime_class_init_inline(WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var);
HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F* L_11 = ((WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var))->___HInfo_11;
String_t* L_12 = ___headerName0;
NullCheck(L_11);
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_13;
L_13 = HeaderInfoTable_get_Item_mE388F21B37BFA30336BB82A1585C744E69A20021(L_11, L_12, NULL);
NullCheck(L_13);
bool L_14 = L_13->___IsResponseRestricted_1;
if (!L_14)
{
goto IL_0074;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_15 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_16 = L_15;
String_t* L_17 = ___headerName0;
NullCheck(L_16);
ArrayElementTypeCheck (L_16, L_17);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_17);
String_t* L_18;
L_18 = SR_GetString_mF713FCC09E41A8D1C0DE44EDD0932A57800A9BA3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral53005BF01FA9DB19AA782E943D8D2B4BB1BD3B20)), L_16, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_19 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_19);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_19, L_18, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebHeaderCollection_ThrowOnRestrictedHeader_mFBE0E21167D9EB5485BD3DC18B505FEC9BF6CF51_RuntimeMethod_var)));
}
IL_0074:
{
return;
}
}
// System.Void System.Net.WebHeaderCollection::Add(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebHeaderCollection_Add_m3E612375F241E3383BA9EC01972C5A5FCD9384CF (WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___name0;
il2cpp_codegen_runtime_class_init_inline(WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var);
String_t* L_1;
L_1 = WebHeaderCollection_CheckBadChars_m1F7BCD4BF0DC01AF8C1378AD02862D9900B67D71(L_0, (bool)0, NULL);
___name0 = L_1;
String_t* L_2 = ___name0;
WebHeaderCollection_ThrowOnRestrictedHeader_mFBE0E21167D9EB5485BD3DC18B505FEC9BF6CF51(__this, L_2, NULL);
String_t* L_3 = ___value1;
String_t* L_4;
L_4 = WebHeaderCollection_CheckBadChars_m1F7BCD4BF0DC01AF8C1378AD02862D9900B67D71(L_3, (bool)1, NULL);
___value1 = L_4;
uint16_t L_5 = __this->___m_Type_17;
if ((!(((uint32_t)L_5) == ((uint32_t)6))))
{
goto IL_005b;
}
}
{
String_t* L_6 = ___value1;
if (!L_6)
{
goto IL_005b;
}
}
{
String_t* L_7 = ___value1;
NullCheck(L_7);
int32_t L_8;
L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL);
if ((((int32_t)L_8) <= ((int32_t)((int32_t)65535))))
{
goto IL_005b;
}
}
{
String_t* L_9 = ___value1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_10 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_11 = L_10;
uint16_t L_12 = ((uint16_t)((int32_t)65535));
RuntimeObject* L_13 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var)), &L_12);
NullCheck(L_11);
ArrayElementTypeCheck (L_11, L_13);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_13);
String_t* L_14;
L_14 = SR_GetString_mF713FCC09E41A8D1C0DE44EDD0932A57800A9BA3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE3F0C6F0E0E0D3195915132B144512F6D8BA7E9E)), L_11, NULL);
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_15 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_15);
ArgumentOutOfRangeException__ctor_m60B543A63AC8692C28096003FBF2AD124B9D5B85(L_15, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), L_9, L_14, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebHeaderCollection_Add_m3E612375F241E3383BA9EC01972C5A5FCD9384CF_RuntimeMethod_var)));
}
IL_005b:
{
WebHeaderCollection_NormalizeCommonHeaders_mE1D83B9D009EB876D33D1EB93CDC65F4F97B5B77(__this, NULL);
NameValueCollection_InvalidateCachedArrays_mA9AA2F9B6A67C2576FA30F12208AA6E1F149C44B(__this, NULL);
NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* L_16;
L_16 = WebHeaderCollection_get_InnerCollection_m544FF08AD232BC5BDD8C5109DF6CD21C5ECAE2D0(__this, NULL);
String_t* L_17 = ___name0;
String_t* L_18 = ___value1;
NullCheck(L_16);
VirtualActionInvoker2< String_t*, String_t* >::Invoke(15 /* System.Void System.Collections.Specialized.NameValueCollection::Add(System.String,System.String) */, L_16, L_17, L_18);
return;
}
}
// System.Void System.Net.WebHeaderCollection::Add(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebHeaderCollection_Add_m9A3740A95FB8359CB0B56367D2E19E8C3CD77EDC (WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* __this, String_t* ___header0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidationHelper_tA6AE681FCDFA9BE8E3EF31C28A624AADF973A25C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
String_t* V_1 = NULL;
String_t* V_2 = NULL;
{
String_t* L_0 = ___header0;
il2cpp_codegen_runtime_class_init_inline(ValidationHelper_tA6AE681FCDFA9BE8E3EF31C28A624AADF973A25C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = ValidationHelper_IsBlankString_mEE97DDAD061D54175C26B9E51E891C4F346E33B6(L_0, NULL);
if (!L_1)
{
goto IL_0013;
}
}
{
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9FB2F3655E9DD75E99A6C4F16345BA6B6F009B9D)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebHeaderCollection_Add_m9A3740A95FB8359CB0B56367D2E19E8C3CD77EDC_RuntimeMethod_var)));
}
IL_0013:
{
String_t* L_3 = ___header0;
NullCheck(L_3);
int32_t L_4;
L_4 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_3, ((int32_t)58), NULL);
V_0 = L_4;
int32_t L_5 = V_0;
if ((((int32_t)L_5) >= ((int32_t)0)))
{
goto IL_0035;
}
}
{
String_t* L_6;
L_6 = SR_GetString_m2FF076D246665572FABD5913A9945E2A694DCB4D(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC2E0F578E57F229F6AA99FF855A860FD55B2DBC8)), NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_7 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_7);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_7, L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9FB2F3655E9DD75E99A6C4F16345BA6B6F009B9D)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebHeaderCollection_Add_m9A3740A95FB8359CB0B56367D2E19E8C3CD77EDC_RuntimeMethod_var)));
}
IL_0035:
{
String_t* L_8 = ___header0;
int32_t L_9 = V_0;
NullCheck(L_8);
String_t* L_10;
L_10 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_8, 0, L_9, NULL);
V_1 = L_10;
String_t* L_11 = ___header0;
int32_t L_12 = V_0;
NullCheck(L_11);
String_t* L_13;
L_13 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_11, ((int32_t)il2cpp_codegen_add(L_12, 1)), NULL);
V_2 = L_13;
String_t* L_14 = V_1;
il2cpp_codegen_runtime_class_init_inline(WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var);
String_t* L_15;
L_15 = WebHeaderCollection_CheckBadChars_m1F7BCD4BF0DC01AF8C1378AD02862D9900B67D71(L_14, (bool)0, NULL);
V_1 = L_15;
String_t* L_16 = V_1;
WebHeaderCollection_ThrowOnRestrictedHeader_mFBE0E21167D9EB5485BD3DC18B505FEC9BF6CF51(__this, L_16, NULL);
String_t* L_17 = V_2;
String_t* L_18;
L_18 = WebHeaderCollection_CheckBadChars_m1F7BCD4BF0DC01AF8C1378AD02862D9900B67D71(L_17, (bool)1, NULL);
V_2 = L_18;
uint16_t L_19 = __this->___m_Type_17;
if ((!(((uint32_t)L_19) == ((uint32_t)6))))
{
goto IL_00a1;
}
}
{
String_t* L_20 = V_2;
if (!L_20)
{
goto IL_00a1;
}
}
{
String_t* L_21 = V_2;
NullCheck(L_21);
int32_t L_22;
L_22 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_21, NULL);
if ((((int32_t)L_22) <= ((int32_t)((int32_t)65535))))
{
goto IL_00a1;
}
}
{
String_t* L_23 = V_2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_24 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_25 = L_24;
uint16_t L_26 = ((uint16_t)((int32_t)65535));
RuntimeObject* L_27 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var)), &L_26);
NullCheck(L_25);
ArrayElementTypeCheck (L_25, L_27);
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_27);
String_t* L_28;
L_28 = SR_GetString_mF713FCC09E41A8D1C0DE44EDD0932A57800A9BA3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE3F0C6F0E0E0D3195915132B144512F6D8BA7E9E)), L_25, NULL);
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_29 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_29);
ArgumentOutOfRangeException__ctor_m60B543A63AC8692C28096003FBF2AD124B9D5B85(L_29, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), L_23, L_28, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebHeaderCollection_Add_m9A3740A95FB8359CB0B56367D2E19E8C3CD77EDC_RuntimeMethod_var)));
}
IL_00a1:
{
WebHeaderCollection_NormalizeCommonHeaders_mE1D83B9D009EB876D33D1EB93CDC65F4F97B5B77(__this, NULL);
NameValueCollection_InvalidateCachedArrays_mA9AA2F9B6A67C2576FA30F12208AA6E1F149C44B(__this, NULL);
NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* L_30;
L_30 = WebHeaderCollection_get_InnerCollection_m544FF08AD232BC5BDD8C5109DF6CD21C5ECAE2D0(__this, NULL);
String_t* L_31 = V_1;
String_t* L_32 = V_2;
NullCheck(L_30);
VirtualActionInvoker2< String_t*, String_t* >::Invoke(15 /* System.Void System.Collections.Specialized.NameValueCollection::Add(System.String,System.String) */, L_30, L_31, L_32);
return;
}
}
// System.Void System.Net.WebHeaderCollection::Set(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebHeaderCollection_Set_mD28BC00E4A0787295183E92F630DAAF9AD435D47 (WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidationHelper_tA6AE681FCDFA9BE8E3EF31C28A624AADF973A25C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___name0;
il2cpp_codegen_runtime_class_init_inline(ValidationHelper_tA6AE681FCDFA9BE8E3EF31C28A624AADF973A25C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = ValidationHelper_IsBlankString_mEE97DDAD061D54175C26B9E51E891C4F346E33B6(L_0, NULL);
if (!L_1)
{
goto IL_0013;
}
}
{
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebHeaderCollection_Set_mD28BC00E4A0787295183E92F630DAAF9AD435D47_RuntimeMethod_var)));
}
IL_0013:
{
String_t* L_3 = ___name0;
il2cpp_codegen_runtime_class_init_inline(WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var);
String_t* L_4;
L_4 = WebHeaderCollection_CheckBadChars_m1F7BCD4BF0DC01AF8C1378AD02862D9900B67D71(L_3, (bool)0, NULL);
___name0 = L_4;
String_t* L_5 = ___name0;
WebHeaderCollection_ThrowOnRestrictedHeader_mFBE0E21167D9EB5485BD3DC18B505FEC9BF6CF51(__this, L_5, NULL);
String_t* L_6 = ___value1;
String_t* L_7;
L_7 = WebHeaderCollection_CheckBadChars_m1F7BCD4BF0DC01AF8C1378AD02862D9900B67D71(L_6, (bool)1, NULL);
___value1 = L_7;
uint16_t L_8 = __this->___m_Type_17;
if ((!(((uint32_t)L_8) == ((uint32_t)6))))
{
goto IL_006e;
}
}
{
String_t* L_9 = ___value1;
if (!L_9)
{
goto IL_006e;
}
}
{
String_t* L_10 = ___value1;
NullCheck(L_10);
int32_t L_11;
L_11 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_10, NULL);
if ((((int32_t)L_11) <= ((int32_t)((int32_t)65535))))
{
goto IL_006e;
}
}
{
String_t* L_12 = ___value1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_13 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_14 = L_13;
uint16_t L_15 = ((uint16_t)((int32_t)65535));
RuntimeObject* L_16 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var)), &L_15);
NullCheck(L_14);
ArrayElementTypeCheck (L_14, L_16);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_16);
String_t* L_17;
L_17 = SR_GetString_mF713FCC09E41A8D1C0DE44EDD0932A57800A9BA3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE3F0C6F0E0E0D3195915132B144512F6D8BA7E9E)), L_14, NULL);
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_18 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_18);
ArgumentOutOfRangeException__ctor_m60B543A63AC8692C28096003FBF2AD124B9D5B85(L_18, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), L_12, L_17, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebHeaderCollection_Set_mD28BC00E4A0787295183E92F630DAAF9AD435D47_RuntimeMethod_var)));
}
IL_006e:
{
WebHeaderCollection_NormalizeCommonHeaders_mE1D83B9D009EB876D33D1EB93CDC65F4F97B5B77(__this, NULL);
NameValueCollection_InvalidateCachedArrays_mA9AA2F9B6A67C2576FA30F12208AA6E1F149C44B(__this, NULL);
NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* L_19;
L_19 = WebHeaderCollection_get_InnerCollection_m544FF08AD232BC5BDD8C5109DF6CD21C5ECAE2D0(__this, NULL);
String_t* L_20 = ___name0;
String_t* L_21 = ___value1;
NullCheck(L_19);
VirtualActionInvoker2< String_t*, String_t* >::Invoke(18 /* System.Void System.Collections.Specialized.NameValueCollection::Set(System.String,System.String) */, L_19, L_20, L_21);
return;
}
}
// System.Void System.Net.WebHeaderCollection::SetInternal(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebHeaderCollection_SetInternal_m3E861ED032C85112F8FD4B715C6505508BD78679 (WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidationHelper_tA6AE681FCDFA9BE8E3EF31C28A624AADF973A25C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___name0;
il2cpp_codegen_runtime_class_init_inline(ValidationHelper_tA6AE681FCDFA9BE8E3EF31C28A624AADF973A25C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = ValidationHelper_IsBlankString_mEE97DDAD061D54175C26B9E51E891C4F346E33B6(L_0, NULL);
if (!L_1)
{
goto IL_0013;
}
}
{
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebHeaderCollection_SetInternal_m3E861ED032C85112F8FD4B715C6505508BD78679_RuntimeMethod_var)));
}
IL_0013:
{
String_t* L_3 = ___name0;
il2cpp_codegen_runtime_class_init_inline(WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var);
String_t* L_4;
L_4 = WebHeaderCollection_CheckBadChars_m1F7BCD4BF0DC01AF8C1378AD02862D9900B67D71(L_3, (bool)0, NULL);
___name0 = L_4;
String_t* L_5 = ___value1;
String_t* L_6;
L_6 = WebHeaderCollection_CheckBadChars_m1F7BCD4BF0DC01AF8C1378AD02862D9900B67D71(L_5, (bool)1, NULL);
___value1 = L_6;
uint16_t L_7 = __this->___m_Type_17;
if ((!(((uint32_t)L_7) == ((uint32_t)6))))
{
goto IL_0067;
}
}
{
String_t* L_8 = ___value1;
if (!L_8)
{
goto IL_0067;
}
}
{
String_t* L_9 = ___value1;
NullCheck(L_9);
int32_t L_10;
L_10 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_9, NULL);
if ((((int32_t)L_10) <= ((int32_t)((int32_t)65535))))
{
goto IL_0067;
}
}
{
String_t* L_11 = ___value1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_12 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_13 = L_12;
uint16_t L_14 = ((uint16_t)((int32_t)65535));
RuntimeObject* L_15 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var)), &L_14);
NullCheck(L_13);
ArrayElementTypeCheck (L_13, L_15);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_15);
String_t* L_16;
L_16 = SR_GetString_mF713FCC09E41A8D1C0DE44EDD0932A57800A9BA3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE3F0C6F0E0E0D3195915132B144512F6D8BA7E9E)), L_13, NULL);
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_17 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_17);
ArgumentOutOfRangeException__ctor_m60B543A63AC8692C28096003FBF2AD124B9D5B85(L_17, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), L_11, L_16, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebHeaderCollection_SetInternal_m3E861ED032C85112F8FD4B715C6505508BD78679_RuntimeMethod_var)));
}
IL_0067:
{
WebHeaderCollection_NormalizeCommonHeaders_mE1D83B9D009EB876D33D1EB93CDC65F4F97B5B77(__this, NULL);
NameValueCollection_InvalidateCachedArrays_mA9AA2F9B6A67C2576FA30F12208AA6E1F149C44B(__this, NULL);
NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* L_18;
L_18 = WebHeaderCollection_get_InnerCollection_m544FF08AD232BC5BDD8C5109DF6CD21C5ECAE2D0(__this, NULL);
String_t* L_19 = ___name0;
String_t* L_20 = ___value1;
NullCheck(L_18);
VirtualActionInvoker2< String_t*, String_t* >::Invoke(18 /* System.Void System.Collections.Specialized.NameValueCollection::Set(System.String,System.String) */, L_18, L_19, L_20);
return;
}
}
// System.Void System.Net.WebHeaderCollection::Remove(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebHeaderCollection_Remove_mD3D0E549867A561B0E71C7B4DC9B532208C60A6E (WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* __this, String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidationHelper_tA6AE681FCDFA9BE8E3EF31C28A624AADF973A25C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___name0;
il2cpp_codegen_runtime_class_init_inline(ValidationHelper_tA6AE681FCDFA9BE8E3EF31C28A624AADF973A25C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = ValidationHelper_IsBlankString_mEE97DDAD061D54175C26B9E51E891C4F346E33B6(L_0, NULL);
if (!L_1)
{
goto IL_0013;
}
}
{
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebHeaderCollection_Remove_mD3D0E549867A561B0E71C7B4DC9B532208C60A6E_RuntimeMethod_var)));
}
IL_0013:
{
String_t* L_3 = ___name0;
WebHeaderCollection_ThrowOnRestrictedHeader_mFBE0E21167D9EB5485BD3DC18B505FEC9BF6CF51(__this, L_3, NULL);
String_t* L_4 = ___name0;
il2cpp_codegen_runtime_class_init_inline(WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var);
String_t* L_5;
L_5 = WebHeaderCollection_CheckBadChars_m1F7BCD4BF0DC01AF8C1378AD02862D9900B67D71(L_4, (bool)0, NULL);
___name0 = L_5;
WebHeaderCollection_NormalizeCommonHeaders_mE1D83B9D009EB876D33D1EB93CDC65F4F97B5B77(__this, NULL);
NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* L_6 = __this->___m_InnerCollection_16;
if (!L_6)
{
goto IL_0043;
}
}
{
NameValueCollection_InvalidateCachedArrays_mA9AA2F9B6A67C2576FA30F12208AA6E1F149C44B(__this, NULL);
NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* L_7 = __this->___m_InnerCollection_16;
String_t* L_8 = ___name0;
NullCheck(L_7);
VirtualActionInvoker1< String_t* >::Invoke(19 /* System.Void System.Collections.Specialized.NameValueCollection::Remove(System.String) */, L_7, L_8);
}
IL_0043:
{
return;
}
}
// System.String[] System.Net.WebHeaderCollection::GetValues(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* WebHeaderCollection_GetValues_mB75176E99C15DAE45AC897402491AA38C9D4FD33 (WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* __this, String_t* ___header0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* V_0 = NULL;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_1 = NULL;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_2 = NULL;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* V_3 = NULL;
int32_t V_4 = 0;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_5 = NULL;
{
WebHeaderCollection_NormalizeCommonHeaders_mE1D83B9D009EB876D33D1EB93CDC65F4F97B5B77(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var);
HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F* L_0 = ((WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var))->___HInfo_11;
String_t* L_1 = ___header0;
NullCheck(L_0);
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_2;
L_2 = HeaderInfoTable_get_Item_mE388F21B37BFA30336BB82A1585C744E69A20021(L_0, L_1, NULL);
V_0 = L_2;
NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* L_3;
L_3 = WebHeaderCollection_get_InnerCollection_m544FF08AD232BC5BDD8C5109DF6CD21C5ECAE2D0(__this, NULL);
String_t* L_4 = ___header0;
NullCheck(L_3);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_5;
L_5 = VirtualFuncInvoker1< StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*, String_t* >::Invoke(17 /* System.String[] System.Collections.Specialized.NameValueCollection::GetValues(System.String) */, L_3, L_4);
V_1 = L_5;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_6 = V_0;
if (!L_6)
{
goto IL_002d;
}
}
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_7 = V_1;
if (!L_7)
{
goto IL_002d;
}
}
{
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_8 = V_0;
NullCheck(L_8);
bool L_9 = L_8->___AllowMultiValues_4;
if (L_9)
{
goto IL_002f;
}
}
IL_002d:
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_10 = V_1;
return L_10;
}
IL_002f:
{
V_3 = (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)NULL;
V_4 = 0;
goto IL_007a;
}
IL_0036:
{
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_11 = V_0;
NullCheck(L_11);
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_12 = L_11->___Parser_2;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_13 = V_1;
int32_t L_14 = V_4;
NullCheck(L_13);
int32_t L_15 = L_14;
String_t* L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
NullCheck(L_12);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_17;
L_17 = HeaderParser_Invoke_mCAC8132BC020AD64B0130E50BD0379A312245C8E_inline(L_12, L_16, NULL);
V_2 = L_17;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_18 = V_3;
if (L_18)
{
goto IL_006d;
}
}
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_19 = V_2;
NullCheck(L_19);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_19)->max_length))) <= ((int32_t)1)))
{
goto IL_0074;
}
}
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_20 = V_1;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_21 = (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)il2cpp_codegen_object_new(ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var);
NullCheck(L_21);
ArrayList__ctor_mCE5AABB7EF7F41F9170791E2C5145E49684DCE11(L_21, (RuntimeObject*)L_20, NULL);
V_3 = L_21;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_22 = V_3;
int32_t L_23 = V_4;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_24 = V_1;
NullCheck(L_24);
int32_t L_25 = V_4;
NullCheck(L_22);
VirtualActionInvoker2< int32_t, int32_t >::Invoke(43 /* System.Void System.Collections.ArrayList::RemoveRange(System.Int32,System.Int32) */, L_22, L_23, ((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_24)->max_length)), L_25)));
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_26 = V_3;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_27 = V_2;
NullCheck(L_26);
VirtualActionInvoker1< RuntimeObject* >::Invoke(30 /* System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) */, L_26, (RuntimeObject*)L_27);
goto IL_0074;
}
IL_006d:
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_28 = V_3;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_29 = V_2;
NullCheck(L_28);
VirtualActionInvoker1< RuntimeObject* >::Invoke(30 /* System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) */, L_28, (RuntimeObject*)L_29);
}
IL_0074:
{
int32_t L_30 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add(L_30, 1));
}
IL_007a:
{
int32_t L_31 = V_4;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_32 = V_1;
NullCheck(L_32);
if ((((int32_t)L_31) < ((int32_t)((int32_t)(((RuntimeArray*)L_32)->max_length)))))
{
goto IL_0036;
}
}
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_33 = V_3;
if (!L_33)
{
goto IL_009c;
}
}
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_34 = V_3;
NullCheck(L_34);
int32_t L_35;
L_35 = VirtualFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_34);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_36 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)L_35);
V_5 = L_36;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_37 = V_3;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_38 = V_5;
NullCheck(L_37);
VirtualActionInvoker1< RuntimeArray* >::Invoke(34 /* System.Void System.Collections.ArrayList::CopyTo(System.Array) */, L_37, (RuntimeArray*)L_38);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_39 = V_5;
return L_39;
}
IL_009c:
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_40 = V_1;
return L_40;
}
}
// System.String System.Net.WebHeaderCollection::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebHeaderCollection_ToString_m60D2996FFE881E3D8AAF700E761ECA34B0A24D86 (WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var);
String_t* L_0;
L_0 = WebHeaderCollection_GetAsString_m7E801872DAF279F8228F57FF2EA5336CD29F2E4F(__this, (bool)0, (bool)0, NULL);
return L_0;
}
}
// System.String System.Net.WebHeaderCollection::GetAsString(System.Collections.Specialized.NameValueCollection,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebHeaderCollection_GetAsString_m7E801872DAF279F8228F57FF2EA5336CD29F2E4F (NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* ___cc0, bool ___winInetCompat1, bool ___forTrace2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidationHelper_tA6AE681FCDFA9BE8E3EF31C28A624AADF973A25C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1168E92C164109D6220480DEDA987085B2A21155);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4133EC0E83E4C69B6C0094B47BFD1408F0C8D4C5);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t* V_0 = NULL;
String_t* V_1 = NULL;
int32_t V_2 = 0;
String_t* V_3 = NULL;
String_t* V_4 = NULL;
{
bool L_0 = ___winInetCompat1;
if (!L_0)
{
goto IL_0009;
}
}
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_1);
InvalidOperationException__ctor_m1BE9BD198B904AA1D94F4B10DA88077DFD44B7A5(L_1, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebHeaderCollection_GetAsString_m7E801872DAF279F8228F57FF2EA5336CD29F2E4F_RuntimeMethod_var)));
}
IL_0009:
{
NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* L_2 = ___cc0;
if (!L_2)
{
goto IL_0014;
}
}
{
NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* L_3 = ___cc0;
NullCheck(L_3);
int32_t L_4;
L_4 = VirtualFuncInvoker0< int32_t >::Invoke(14 /* System.Int32 System.Collections.Specialized.NameObjectCollectionBase::get_Count() */, L_3);
if (L_4)
{
goto IL_001a;
}
}
IL_0014:
{
return _stringLiteral4133EC0E83E4C69B6C0094B47BFD1408F0C8D4C5;
}
IL_001a:
{
NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* L_5 = ___cc0;
NullCheck(L_5);
int32_t L_6;
L_6 = VirtualFuncInvoker0< int32_t >::Invoke(14 /* System.Int32 System.Collections.Specialized.NameObjectCollectionBase::get_Count() */, L_5);
StringBuilder_t* L_7 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
NullCheck(L_7);
StringBuilder__ctor_m2619CA8D2C3476DF1A302D9D941498BB1C6164C5(L_7, ((int32_t)il2cpp_codegen_multiply(((int32_t)30), L_6)), NULL);
V_0 = L_7;
NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* L_8 = ___cc0;
String_t* L_9 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
NullCheck(L_8);
String_t* L_10;
L_10 = NameValueCollection_get_Item_mE3ED755803E67BC852123C70EEF8D53774FA635F(L_8, L_9, NULL);
V_1 = L_10;
String_t* L_11 = V_1;
if (!L_11)
{
goto IL_004a;
}
}
{
StringBuilder_t* L_12 = V_0;
String_t* L_13 = V_1;
NullCheck(L_12);
StringBuilder_t* L_14;
L_14 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_12, L_13, NULL);
NullCheck(L_14);
StringBuilder_t* L_15;
L_15 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_14, _stringLiteral4133EC0E83E4C69B6C0094B47BFD1408F0C8D4C5, NULL);
}
IL_004a:
{
V_2 = 0;
goto IL_00a0;
}
IL_004e:
{
NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* L_16 = ___cc0;
int32_t L_17 = V_2;
NullCheck(L_16);
String_t* L_18;
L_18 = VirtualFuncInvoker1< String_t*, int32_t >::Invoke(21 /* System.String System.Collections.Specialized.NameValueCollection::GetKey(System.Int32) */, L_16, L_17);
V_3 = L_18;
NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* L_19 = ___cc0;
int32_t L_20 = V_2;
NullCheck(L_19);
String_t* L_21;
L_21 = VirtualFuncInvoker1< String_t*, int32_t >::Invoke(20 /* System.String System.Collections.Specialized.NameValueCollection::Get(System.Int32) */, L_19, L_20);
V_4 = L_21;
String_t* L_22 = V_3;
il2cpp_codegen_runtime_class_init_inline(ValidationHelper_tA6AE681FCDFA9BE8E3EF31C28A624AADF973A25C_il2cpp_TypeInfo_var);
bool L_23;
L_23 = ValidationHelper_IsBlankString_mEE97DDAD061D54175C26B9E51E891C4F346E33B6(L_22, NULL);
if (L_23)
{
goto IL_009c;
}
}
{
StringBuilder_t* L_24 = V_0;
String_t* L_25 = V_3;
NullCheck(L_24);
StringBuilder_t* L_26;
L_26 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_24, L_25, NULL);
bool L_27 = ___winInetCompat1;
if (!L_27)
{
goto IL_007d;
}
}
{
StringBuilder_t* L_28 = V_0;
NullCheck(L_28);
StringBuilder_t* L_29;
L_29 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_28, ((int32_t)58), NULL);
goto IL_0089;
}
IL_007d:
{
StringBuilder_t* L_30 = V_0;
NullCheck(L_30);
StringBuilder_t* L_31;
L_31 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_30, _stringLiteral1168E92C164109D6220480DEDA987085B2A21155, NULL);
}
IL_0089:
{
StringBuilder_t* L_32 = V_0;
String_t* L_33 = V_4;
NullCheck(L_32);
StringBuilder_t* L_34;
L_34 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_32, L_33, NULL);
NullCheck(L_34);
StringBuilder_t* L_35;
L_35 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_34, _stringLiteral4133EC0E83E4C69B6C0094B47BFD1408F0C8D4C5, NULL);
}
IL_009c:
{
int32_t L_36 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_36, 1));
}
IL_00a0:
{
int32_t L_37 = V_2;
NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* L_38 = ___cc0;
NullCheck(L_38);
int32_t L_39;
L_39 = VirtualFuncInvoker0< int32_t >::Invoke(14 /* System.Int32 System.Collections.Specialized.NameObjectCollectionBase::get_Count() */, L_38);
if ((((int32_t)L_37) < ((int32_t)L_39)))
{
goto IL_004e;
}
}
{
bool L_40 = ___forTrace2;
if (L_40)
{
goto IL_00b8;
}
}
{
StringBuilder_t* L_41 = V_0;
NullCheck(L_41);
StringBuilder_t* L_42;
L_42 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_41, _stringLiteral4133EC0E83E4C69B6C0094B47BFD1408F0C8D4C5, NULL);
}
IL_00b8:
{
StringBuilder_t* L_43 = V_0;
NullCheck(L_43);
String_t* L_44;
L_44 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_43);
return L_44;
}
}
// System.Void System.Net.WebHeaderCollection::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebHeaderCollection__ctor_m9C77B3E5FD0A3637283AE2B7084F5ED5D8CD7369 (WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_0 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
NameValueCollection__ctor_mF894B0B49D20CE92F0CE3BBF8ED67F48E61CDB6A(__this, L_0, NULL);
return;
}
}
// System.Void System.Net.WebHeaderCollection::.ctor(System.Net.WebHeaderCollectionType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebHeaderCollection__ctor_mE6EBDC6DA6CA46B83FD87FA51A93BACCA7FCDB27 (WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* __this, uint16_t ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_0 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
NameValueCollection__ctor_mF894B0B49D20CE92F0CE3BBF8ED67F48E61CDB6A(__this, L_0, NULL);
uint16_t L_1 = ___type0;
__this->___m_Type_17 = L_1;
uint16_t L_2 = ___type0;
if ((!(((uint32_t)L_2) == ((uint32_t)4))))
{
goto IL_002a;
}
}
{
il2cpp_codegen_runtime_class_init_inline(WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_3 = ((WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var))->___s_CommonHeaderNames_14;
NullCheck(L_3);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_4 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_3)->max_length)), 1)));
__this->___m_CommonHeaders_12 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_CommonHeaders_12), (void*)L_4);
}
IL_002a:
{
return;
}
}
// System.Void System.Net.WebHeaderCollection::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebHeaderCollection__ctor_m7FAAE403639DC42E7FFED6006B1D10BF5A1B4B5F (WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___serializationInfo0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___streamingContext1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral37B9D73BE7368F9E631CD06C5DC3758F48D4E89C);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
String_t* V_2 = NULL;
String_t* V_3 = NULL;
int32_t V_4 = 0;
{
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_0 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
NameValueCollection__ctor_mF894B0B49D20CE92F0CE3BBF8ED67F48E61CDB6A(__this, L_0, NULL);
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_1 = ___serializationInfo0;
NullCheck(L_1);
int32_t L_2;
L_2 = SerializationInfo_GetInt32_m7731402825C7FC8D0673F7610D555615F95E4FB5(L_1, _stringLiteral37B9D73BE7368F9E631CD06C5DC3758F48D4E89C, NULL);
V_0 = L_2;
int32_t L_3 = V_0;
il2cpp_codegen_runtime_class_init_inline(CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_il2cpp_TypeInfo_var);
CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C* L_4 = ((CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_StaticFields*)il2cpp_codegen_static_fields_for(CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_il2cpp_TypeInfo_var))->___StaticInstance_0;
NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* L_5 = (NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7*)il2cpp_codegen_object_new(NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7_il2cpp_TypeInfo_var);
NullCheck(L_5);
NameValueCollection__ctor_m1545E08D22D8E6C1FCDDAE43741AA43D52F4A21E(L_5, ((int32_t)il2cpp_codegen_add(L_3, 2)), L_4, NULL);
__this->___m_InnerCollection_16 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_InnerCollection_16), (void*)L_5);
V_1 = 0;
goto IL_006a;
}
IL_002e:
{
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_6 = ___serializationInfo0;
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_7;
L_7 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL);
String_t* L_8;
L_8 = Int32_ToString_m3B2730D9F5B0C1C57DCCC8B8DCFB8E5EC4E8979B((&V_1), L_7, NULL);
NullCheck(L_6);
String_t* L_9;
L_9 = SerializationInfo_GetString_mF0753AFAA13AABF8A30B8F0890AEC52BFBBC73E9(L_6, L_8, NULL);
V_2 = L_9;
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_10 = ___serializationInfo0;
int32_t L_11 = V_1;
int32_t L_12 = V_0;
V_4 = ((int32_t)il2cpp_codegen_add(L_11, L_12));
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_13;
L_13 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL);
String_t* L_14;
L_14 = Int32_ToString_m3B2730D9F5B0C1C57DCCC8B8DCFB8E5EC4E8979B((&V_4), L_13, NULL);
NullCheck(L_10);
String_t* L_15;
L_15 = SerializationInfo_GetString_mF0753AFAA13AABF8A30B8F0890AEC52BFBBC73E9(L_10, L_14, NULL);
V_3 = L_15;
NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* L_16;
L_16 = WebHeaderCollection_get_InnerCollection_m544FF08AD232BC5BDD8C5109DF6CD21C5ECAE2D0(__this, NULL);
String_t* L_17 = V_2;
String_t* L_18 = V_3;
NullCheck(L_16);
VirtualActionInvoker2< String_t*, String_t* >::Invoke(15 /* System.Void System.Collections.Specialized.NameValueCollection::Add(System.String,System.String) */, L_16, L_17, L_18);
int32_t L_19 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_19, 1));
}
IL_006a:
{
int32_t L_20 = V_1;
int32_t L_21 = V_0;
if ((((int32_t)L_20) < ((int32_t)L_21)))
{
goto IL_002e;
}
}
{
return;
}
}
// System.Void System.Net.WebHeaderCollection::OnDeserialization(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebHeaderCollection_OnDeserialization_mDF73EE0F5BBF3AEE9C37273B79738A47530BECA4 (WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* __this, RuntimeObject* ___sender0, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Net.WebHeaderCollection::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebHeaderCollection_GetObjectData_mA9D238943F3E6D4DF3A1156A0EA6729F5CA6F911 (WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___serializationInfo0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___streamingContext1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral37B9D73BE7368F9E631CD06C5DC3758F48D4E89C);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
WebHeaderCollection_NormalizeCommonHeaders_mE1D83B9D009EB876D33D1EB93CDC65F4F97B5B77(__this, NULL);
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___serializationInfo0;
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(14 /* System.Int32 System.Collections.Specialized.NameObjectCollectionBase::get_Count() */, __this);
NullCheck(L_0);
SerializationInfo_AddValue_m9D6ADD10966D1FE8D19050F3A269747C23FE9FC4(L_0, _stringLiteral37B9D73BE7368F9E631CD06C5DC3758F48D4E89C, L_1, NULL);
V_0 = 0;
goto IL_005a;
}
IL_001b:
{
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_2 = ___serializationInfo0;
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_3;
L_3 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL);
String_t* L_4;
L_4 = Int32_ToString_m3B2730D9F5B0C1C57DCCC8B8DCFB8E5EC4E8979B((&V_0), L_3, NULL);
int32_t L_5 = V_0;
String_t* L_6;
L_6 = VirtualFuncInvoker1< String_t*, int32_t >::Invoke(21 /* System.String System.Collections.Specialized.NameValueCollection::GetKey(System.Int32) */, __this, L_5);
NullCheck(L_2);
SerializationInfo_AddValue_m28FE9B110F21DDB8FF5F5E35A0EABD659DB22C2F(L_2, L_4, L_6, NULL);
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_7 = ___serializationInfo0;
int32_t L_8 = V_0;
int32_t L_9;
L_9 = VirtualFuncInvoker0< int32_t >::Invoke(14 /* System.Int32 System.Collections.Specialized.NameObjectCollectionBase::get_Count() */, __this);
V_1 = ((int32_t)il2cpp_codegen_add(L_8, L_9));
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_10;
L_10 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL);
String_t* L_11;
L_11 = Int32_ToString_m3B2730D9F5B0C1C57DCCC8B8DCFB8E5EC4E8979B((&V_1), L_10, NULL);
int32_t L_12 = V_0;
String_t* L_13;
L_13 = VirtualFuncInvoker1< String_t*, int32_t >::Invoke(20 /* System.String System.Collections.Specialized.NameValueCollection::Get(System.Int32) */, __this, L_12);
NullCheck(L_7);
SerializationInfo_AddValue_m28FE9B110F21DDB8FF5F5E35A0EABD659DB22C2F(L_7, L_11, L_13, NULL);
int32_t L_14 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_14, 1));
}
IL_005a:
{
int32_t L_15 = V_0;
int32_t L_16;
L_16 = VirtualFuncInvoker0< int32_t >::Invoke(14 /* System.Int32 System.Collections.Specialized.NameObjectCollectionBase::get_Count() */, __this);
if ((((int32_t)L_15) < ((int32_t)L_16)))
{
goto IL_001b;
}
}
{
return;
}
}
// System.Void System.Net.WebHeaderCollection::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebHeaderCollection_System_Runtime_Serialization_ISerializable_GetObjectData_mCB9569FEA54BEF369CF3BE5F56F36072D01D712D (WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___serializationInfo0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___streamingContext1, const RuntimeMethod* method)
{
{
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___serializationInfo0;
StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___streamingContext1;
VirtualActionInvoker2< SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37*, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 >::Invoke(11 /* System.Void System.Collections.Specialized.NameObjectCollectionBase::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, __this, L_0, L_1);
return;
}
}
// System.String System.Net.WebHeaderCollection::Get(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebHeaderCollection_Get_m7EB2DFD01DAC1EA2CC4CA7290459BF47B06CABED (WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* __this, String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
String_t* V_1 = NULL;
int32_t V_2 = 0;
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = __this->___m_CommonHeaders_12;
if (!L_0)
{
goto IL_00ef;
}
}
{
String_t* L_1 = ___name0;
if (!L_1)
{
goto IL_00ef;
}
}
{
String_t* L_2 = ___name0;
NullCheck(L_2);
int32_t L_3;
L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL);
if ((((int32_t)L_3) <= ((int32_t)0)))
{
goto IL_00ef;
}
}
{
String_t* L_4 = ___name0;
NullCheck(L_4);
Il2CppChar L_5;
L_5 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_4, 0, NULL);
if ((((int32_t)L_5) >= ((int32_t)((int32_t)256))))
{
goto IL_00ef;
}
}
{
il2cpp_codegen_runtime_class_init_inline(WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var);
SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913* L_6 = ((WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var))->___s_CommonHeaderHints_15;
String_t* L_7 = ___name0;
NullCheck(L_7);
Il2CppChar L_8;
L_8 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_7, 0, NULL);
NullCheck(L_6);
int32_t L_9 = ((int32_t)((int32_t)L_8&((int32_t)31)));
int8_t L_10 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
V_0 = L_10;
int32_t L_11 = V_0;
if ((((int32_t)L_11) < ((int32_t)0)))
{
goto IL_00ef;
}
}
IL_0046:
{
il2cpp_codegen_runtime_class_init_inline(WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_12 = ((WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var))->___s_CommonHeaderNames_14;
int32_t L_13 = V_0;
int32_t L_14 = L_13;
V_0 = ((int32_t)il2cpp_codegen_add(L_14, 1));
NullCheck(L_12);
int32_t L_15 = L_14;
String_t* L_16 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
V_1 = L_16;
String_t* L_17 = V_1;
NullCheck(L_17);
int32_t L_18;
L_18 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_17, NULL);
String_t* L_19 = ___name0;
NullCheck(L_19);
int32_t L_20;
L_20 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_19, NULL);
if ((((int32_t)L_18) < ((int32_t)L_20)))
{
goto IL_00ef;
}
}
{
il2cpp_codegen_runtime_class_init_inline(CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_il2cpp_TypeInfo_var);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_21 = ((CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_StaticFields*)il2cpp_codegen_static_fields_for(CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_il2cpp_TypeInfo_var))->___AsciiToLower_1;
String_t* L_22 = ___name0;
NullCheck(L_22);
Il2CppChar L_23;
L_23 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_22, 0, NULL);
NullCheck(L_21);
Il2CppChar L_24 = L_23;
uint8_t L_25 = (L_21)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_26 = ((CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_StaticFields*)il2cpp_codegen_static_fields_for(CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_il2cpp_TypeInfo_var))->___AsciiToLower_1;
String_t* L_27 = V_1;
NullCheck(L_27);
Il2CppChar L_28;
L_28 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_27, 0, NULL);
NullCheck(L_26);
Il2CppChar L_29 = L_28;
uint8_t L_30 = (L_26)->GetAt(static_cast<il2cpp_array_size_t>(L_29));
if ((!(((uint32_t)L_25) == ((uint32_t)L_30))))
{
goto IL_00ef;
}
}
{
String_t* L_31 = V_1;
NullCheck(L_31);
int32_t L_32;
L_32 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_31, NULL);
String_t* L_33 = ___name0;
NullCheck(L_33);
int32_t L_34;
L_34 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_33, NULL);
if ((((int32_t)L_32) > ((int32_t)L_34)))
{
goto IL_0046;
}
}
{
V_2 = 1;
goto IL_00cf;
}
IL_0091:
{
String_t* L_35 = ___name0;
int32_t L_36 = V_2;
NullCheck(L_35);
Il2CppChar L_37;
L_37 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_35, L_36, NULL);
String_t* L_38 = V_1;
int32_t L_39 = V_2;
NullCheck(L_38);
Il2CppChar L_40;
L_40 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_38, L_39, NULL);
if ((((int32_t)L_37) == ((int32_t)L_40)))
{
goto IL_00cb;
}
}
{
String_t* L_41 = ___name0;
int32_t L_42 = V_2;
NullCheck(L_41);
Il2CppChar L_43;
L_43 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_41, L_42, NULL);
if ((((int32_t)L_43) > ((int32_t)((int32_t)255))))
{
goto IL_00d8;
}
}
{
il2cpp_codegen_runtime_class_init_inline(CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_il2cpp_TypeInfo_var);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_44 = ((CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_StaticFields*)il2cpp_codegen_static_fields_for(CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_il2cpp_TypeInfo_var))->___AsciiToLower_1;
String_t* L_45 = ___name0;
int32_t L_46 = V_2;
NullCheck(L_45);
Il2CppChar L_47;
L_47 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_45, L_46, NULL);
NullCheck(L_44);
Il2CppChar L_48 = L_47;
uint8_t L_49 = (L_44)->GetAt(static_cast<il2cpp_array_size_t>(L_48));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_50 = ((CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_StaticFields*)il2cpp_codegen_static_fields_for(CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_il2cpp_TypeInfo_var))->___AsciiToLower_1;
String_t* L_51 = V_1;
int32_t L_52 = V_2;
NullCheck(L_51);
Il2CppChar L_53;
L_53 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_51, L_52, NULL);
NullCheck(L_50);
Il2CppChar L_54 = L_53;
uint8_t L_55 = (L_50)->GetAt(static_cast<il2cpp_array_size_t>(L_54));
if ((!(((uint32_t)L_49) == ((uint32_t)L_55))))
{
goto IL_00d8;
}
}
IL_00cb:
{
int32_t L_56 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_56, 1));
}
IL_00cf:
{
int32_t L_57 = V_2;
String_t* L_58 = V_1;
NullCheck(L_58);
int32_t L_59;
L_59 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_58, NULL);
if ((((int32_t)L_57) < ((int32_t)L_59)))
{
goto IL_0091;
}
}
IL_00d8:
{
int32_t L_60 = V_2;
String_t* L_61 = V_1;
NullCheck(L_61);
int32_t L_62;
L_62 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_61, NULL);
if ((!(((uint32_t)L_60) == ((uint32_t)L_62))))
{
goto IL_0046;
}
}
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_63 = __this->___m_CommonHeaders_12;
int32_t L_64 = V_0;
NullCheck(L_63);
int32_t L_65 = ((int32_t)il2cpp_codegen_subtract(L_64, 1));
String_t* L_66 = (L_63)->GetAt(static_cast<il2cpp_array_size_t>(L_65));
return L_66;
}
IL_00ef:
{
NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* L_67 = __this->___m_InnerCollection_16;
if (L_67)
{
goto IL_00f9;
}
}
{
return (String_t*)NULL;
}
IL_00f9:
{
NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* L_68 = __this->___m_InnerCollection_16;
String_t* L_69 = ___name0;
NullCheck(L_68);
String_t* L_70;
L_70 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(16 /* System.String System.Collections.Specialized.NameValueCollection::Get(System.String) */, L_68, L_69);
return L_70;
}
}
// System.Collections.IEnumerator System.Net.WebHeaderCollection::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WebHeaderCollection_GetEnumerator_m8A77AE9A2EFFD0F12E60A1DDF51BBBF2C9F5904B (WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NameObjectKeysEnumerator_t4182E42291FFAE1FC7B3BB46365244F202EFE7A0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
WebHeaderCollection_NormalizeCommonHeaders_mE1D83B9D009EB876D33D1EB93CDC65F4F97B5B77(__this, NULL);
NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* L_0;
L_0 = WebHeaderCollection_get_InnerCollection_m544FF08AD232BC5BDD8C5109DF6CD21C5ECAE2D0(__this, NULL);
NameObjectKeysEnumerator_t4182E42291FFAE1FC7B3BB46365244F202EFE7A0* L_1 = (NameObjectKeysEnumerator_t4182E42291FFAE1FC7B3BB46365244F202EFE7A0*)il2cpp_codegen_object_new(NameObjectKeysEnumerator_t4182E42291FFAE1FC7B3BB46365244F202EFE7A0_il2cpp_TypeInfo_var);
NullCheck(L_1);
NameObjectKeysEnumerator__ctor_mF3026FAD0A80AADFBC11888DCB0FDF7C2DD71801(L_1, L_0, NULL);
return L_1;
}
}
// System.Int32 System.Net.WebHeaderCollection::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t WebHeaderCollection_get_Count_mFD0A0FD946CC97663996F70E67BF64851F3A4B26 (WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* __this, const RuntimeMethod* method)
{
int32_t G_B3_0 = 0;
{
NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* L_0 = __this->___m_InnerCollection_16;
if (!L_0)
{
goto IL_0015;
}
}
{
NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* L_1 = __this->___m_InnerCollection_16;
NullCheck(L_1);
int32_t L_2;
L_2 = VirtualFuncInvoker0< int32_t >::Invoke(14 /* System.Int32 System.Collections.Specialized.NameObjectCollectionBase::get_Count() */, L_1);
G_B3_0 = L_2;
goto IL_0016;
}
IL_0015:
{
G_B3_0 = 0;
}
IL_0016:
{
int32_t L_3 = __this->___m_NumCommonHeaders_13;
return ((int32_t)il2cpp_codegen_add(G_B3_0, L_3));
}
}
// System.String System.Net.WebHeaderCollection::Get(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebHeaderCollection_Get_m99BCFF243942F451A075C334C2B67767B2332348 (WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* __this, int32_t ___index0, const RuntimeMethod* method)
{
{
WebHeaderCollection_NormalizeCommonHeaders_mE1D83B9D009EB876D33D1EB93CDC65F4F97B5B77(__this, NULL);
NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* L_0;
L_0 = WebHeaderCollection_get_InnerCollection_m544FF08AD232BC5BDD8C5109DF6CD21C5ECAE2D0(__this, NULL);
int32_t L_1 = ___index0;
NullCheck(L_0);
String_t* L_2;
L_2 = VirtualFuncInvoker1< String_t*, int32_t >::Invoke(20 /* System.String System.Collections.Specialized.NameValueCollection::Get(System.Int32) */, L_0, L_1);
return L_2;
}
}
// System.String System.Net.WebHeaderCollection::GetKey(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebHeaderCollection_GetKey_m568730550CD89F6A9C02478A059923E3BEE324BD (WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* __this, int32_t ___index0, const RuntimeMethod* method)
{
{
WebHeaderCollection_NormalizeCommonHeaders_mE1D83B9D009EB876D33D1EB93CDC65F4F97B5B77(__this, NULL);
NameValueCollection_t52D1E38AB1D4ADD497A17DA305D663BB77B31DF7* L_0;
L_0 = WebHeaderCollection_get_InnerCollection_m544FF08AD232BC5BDD8C5109DF6CD21C5ECAE2D0(__this, NULL);
int32_t L_1 = ___index0;
NullCheck(L_0);
String_t* L_2;
L_2 = VirtualFuncInvoker1< String_t*, int32_t >::Invoke(21 /* System.String System.Collections.Specialized.NameValueCollection::GetKey(System.Int32) */, L_0, L_1);
return L_2;
}
}
// System.Void System.Net.WebHeaderCollection::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebHeaderCollection__cctor_m065B6EEB9A340079FA0815B12CF08010D7A5FD81 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RfcCharU5BU5D_t8D79A380C46398F9D1F442FDEE0A27F77B7D1B4C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____063691760A57230E8119DF650327304D68AE1C009E476E48BE8C73DCA199D374_2_FieldInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____356A582FCE68ACAE8FC944F7B4F0C0DA2BFF4A90D3767C75905F3EDE2E4E66CF_7_FieldInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____8109EF063456779751E8A4AEE94A0BE9AE32827B6EB153ABD7F40057FF2C9CE3_9_FieldInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0D0D0C17BC59054E43F2DF1F9E9184032FBFBF01);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0DD32B18A388C5F1A6BAFD3629759260C61F767C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3015B2A3D39F343DF5439AC8F9FFEFD31A155603);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral39CB21871F9F9FE5AE18BA5E81ED4EC6DADB8E03);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5A345D210B621CD73744E42A4CA62CEE6971E34F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5B58EBE31E594BF8FA4BEA3CD075473149322B18);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5C5EE883BE58477D29789770C77CED0740EA2109);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral69246FD8ECCD71895CF44BE2EB6A80E686C5A018);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6CE5ADD5EE932BBD004053FD59D31BCED33C98EC);
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*)&_stringLiteralABDF52D360297C3F8D7E4851B2C8262AF0F3CE00);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCC624D1FAF7A8A629CE51F4FE3FFB1FBA27EDF86);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE8258FE4B53775D781FF54E8010D50E54F753759);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE94FC0164ACA93BBD146E365EB6DAF1DE30A259D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFAE55AFF6F18607FEDBE2F4C0C6BA4D4F219D504);
s_Il2CppMethodInitialized = true;
}
{
HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F* L_0 = (HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F*)il2cpp_codegen_object_new(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var);
NullCheck(L_0);
HeaderInfoTable__ctor_mED0A17850B2F6AA3A3E6BFACF257E8640A7F3F50(L_0, NULL);
((WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var))->___HInfo_11 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var))->___HInfo_11), (void*)L_0);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_1 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)((int32_t)19));
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_2 = L_1;
NullCheck(L_2);
ArrayElementTypeCheck (L_2, _stringLiteralABDF52D360297C3F8D7E4851B2C8262AF0F3CE00);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralABDF52D360297C3F8D7E4851B2C8262AF0F3CE00);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_3 = L_2;
NullCheck(L_3);
ArrayElementTypeCheck (L_3, _stringLiteral86E7C0314F9CA521BDA0F361B0D90037E62E63C2);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral86E7C0314F9CA521BDA0F361B0D90037E62E63C2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_4 = L_3;
NullCheck(L_4);
ArrayElementTypeCheck (L_4, _stringLiteral69246FD8ECCD71895CF44BE2EB6A80E686C5A018);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral69246FD8ECCD71895CF44BE2EB6A80E686C5A018);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_5 = L_4;
NullCheck(L_5);
ArrayElementTypeCheck (L_5, _stringLiteral5B58EBE31E594BF8FA4BEA3CD075473149322B18);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral5B58EBE31E594BF8FA4BEA3CD075473149322B18);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_6 = L_5;
NullCheck(L_6);
ArrayElementTypeCheck (L_6, _stringLiteral39CB21871F9F9FE5AE18BA5E81ED4EC6DADB8E03);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral39CB21871F9F9FE5AE18BA5E81ED4EC6DADB8E03);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_7 = L_6;
NullCheck(L_7);
ArrayElementTypeCheck (L_7, _stringLiteral7C5B2C0D17D684D4380087821D68BB021A77AA5D);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral7C5B2C0D17D684D4380087821D68BB021A77AA5D);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_8 = L_7;
NullCheck(L_8);
ArrayElementTypeCheck (L_8, _stringLiteral3015B2A3D39F343DF5439AC8F9FFEFD31A155603);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteral3015B2A3D39F343DF5439AC8F9FFEFD31A155603);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_9 = L_8;
NullCheck(L_9);
ArrayElementTypeCheck (L_9, _stringLiteral8D28F1F930CE88A866A5AFD45B7587A776D2A2E5);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(7), (String_t*)_stringLiteral8D28F1F930CE88A866A5AFD45B7587A776D2A2E5);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_10 = L_9;
NullCheck(L_10);
ArrayElementTypeCheck (L_10, _stringLiteral0DD32B18A388C5F1A6BAFD3629759260C61F767C);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(8), (String_t*)_stringLiteral0DD32B18A388C5F1A6BAFD3629759260C61F767C);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_11 = L_10;
NullCheck(L_11);
ArrayElementTypeCheck (L_11, _stringLiteralCC624D1FAF7A8A629CE51F4FE3FFB1FBA27EDF86);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)9)), (String_t*)_stringLiteralCC624D1FAF7A8A629CE51F4FE3FFB1FBA27EDF86);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_12 = L_11;
NullCheck(L_12);
ArrayElementTypeCheck (L_12, _stringLiteral5A345D210B621CD73744E42A4CA62CEE6971E34F);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)10)), (String_t*)_stringLiteral5A345D210B621CD73744E42A4CA62CEE6971E34F);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_13 = L_12;
NullCheck(L_13);
ArrayElementTypeCheck (L_13, _stringLiteralE8258FE4B53775D781FF54E8010D50E54F753759);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)11)), (String_t*)_stringLiteralE8258FE4B53775D781FF54E8010D50E54F753759);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_14 = L_13;
NullCheck(L_14);
ArrayElementTypeCheck (L_14, _stringLiteral5C5EE883BE58477D29789770C77CED0740EA2109);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)12)), (String_t*)_stringLiteral5C5EE883BE58477D29789770C77CED0740EA2109);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_15 = L_14;
NullCheck(L_15);
ArrayElementTypeCheck (L_15, _stringLiteral0D0D0C17BC59054E43F2DF1F9E9184032FBFBF01);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)13)), (String_t*)_stringLiteral0D0D0C17BC59054E43F2DF1F9E9184032FBFBF01);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_16 = L_15;
NullCheck(L_16);
ArrayElementTypeCheck (L_16, _stringLiteralFAE55AFF6F18607FEDBE2F4C0C6BA4D4F219D504);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)14)), (String_t*)_stringLiteralFAE55AFF6F18607FEDBE2F4C0C6BA4D4F219D504);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_17 = L_16;
NullCheck(L_17);
ArrayElementTypeCheck (L_17, _stringLiteral837AB1353B48531677906AF6731DF5EF5ACDA3F1);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)15)), (String_t*)_stringLiteral837AB1353B48531677906AF6731DF5EF5ACDA3F1);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_18 = L_17;
NullCheck(L_18);
ArrayElementTypeCheck (L_18, _stringLiteral6CE5ADD5EE932BBD004053FD59D31BCED33C98EC);
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)16)), (String_t*)_stringLiteral6CE5ADD5EE932BBD004053FD59D31BCED33C98EC);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_19 = L_18;
NullCheck(L_19);
ArrayElementTypeCheck (L_19, _stringLiteralE94FC0164ACA93BBD146E365EB6DAF1DE30A259D);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)17)), (String_t*)_stringLiteralE94FC0164ACA93BBD146E365EB6DAF1DE30A259D);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_20 = L_19;
NullCheck(L_20);
ArrayElementTypeCheck (L_20, _stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)18)), (String_t*)_stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1);
((WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var))->___s_CommonHeaderNames_14 = L_20;
Il2CppCodeGenWriteBarrier((void**)(&((WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var))->___s_CommonHeaderNames_14), (void*)L_20);
SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913* L_21 = (SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913*)(SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913*)SZArrayNew(SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913_il2cpp_TypeInfo_var, (uint32_t)((int32_t)32));
SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913* L_22 = L_21;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_23 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____063691760A57230E8119DF650327304D68AE1C009E476E48BE8C73DCA199D374_2_FieldInfo_var) };
RuntimeHelpers_InitializeArray_mE10C3436BA703E4D9D41B3F8F365E4C34F9926EF((RuntimeArray*)L_22, L_23, NULL);
((WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var))->___s_CommonHeaderHints_15 = L_22;
Il2CppCodeGenWriteBarrier((void**)(&((WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var))->___s_CommonHeaderHints_15), (void*)L_22);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_24 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)6);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_25 = L_24;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_26 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____356A582FCE68ACAE8FC944F7B4F0C0DA2BFF4A90D3767C75905F3EDE2E4E66CF_7_FieldInfo_var) };
RuntimeHelpers_InitializeArray_mE10C3436BA703E4D9D41B3F8F365E4C34F9926EF((RuntimeArray*)L_25, L_26, NULL);
((WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var))->___HttpTrimCharacters_18 = L_25;
Il2CppCodeGenWriteBarrier((void**)(&((WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var))->___HttpTrimCharacters_18), (void*)L_25);
RfcCharU5BU5D_t8D79A380C46398F9D1F442FDEE0A27F77B7D1B4C* L_27 = (RfcCharU5BU5D_t8D79A380C46398F9D1F442FDEE0A27F77B7D1B4C*)(RfcCharU5BU5D_t8D79A380C46398F9D1F442FDEE0A27F77B7D1B4C*)SZArrayNew(RfcCharU5BU5D_t8D79A380C46398F9D1F442FDEE0A27F77B7D1B4C_il2cpp_TypeInfo_var, (uint32_t)((int32_t)128));
RfcCharU5BU5D_t8D79A380C46398F9D1F442FDEE0A27F77B7D1B4C* L_28 = L_27;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_29 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____8109EF063456779751E8A4AEE94A0BE9AE32827B6EB153ABD7F40057FF2C9CE3_9_FieldInfo_var) };
RuntimeHelpers_InitializeArray_mE10C3436BA703E4D9D41B3F8F365E4C34F9926EF((RuntimeArray*)L_28, L_29, NULL);
((WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var))->___RfcCharMap_19 = L_28;
Il2CppCodeGenWriteBarrier((void**)(&((WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_StaticFields*)il2cpp_codegen_static_fields_for(WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8_il2cpp_TypeInfo_var))->___RfcCharMap_19), (void*)L_28);
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.Int32 System.Net.CaseInsensitiveAscii::GetHashCode(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CaseInsensitiveAscii_GetHashCode_m6196C976C5E2C2BF948F9775AF827D80AA0707B2 (CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C* __this, RuntimeObject* ___myObject0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
int32_t V_1 = 0;
{
RuntimeObject* L_0 = ___myObject0;
V_0 = ((String_t*)IsInstSealed((RuntimeObject*)L_0, String_t_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = ___myObject0;
if (L_1)
{
goto IL_000c;
}
}
{
return 0;
}
IL_000c:
{
String_t* L_2 = V_0;
NullCheck(L_2);
int32_t L_3;
L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL);
V_1 = L_3;
int32_t L_4 = V_1;
if (L_4)
{
goto IL_0018;
}
}
{
return 0;
}
IL_0018:
{
int32_t L_5 = V_1;
il2cpp_codegen_runtime_class_init_inline(CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_il2cpp_TypeInfo_var);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = ((CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_StaticFields*)il2cpp_codegen_static_fields_for(CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_il2cpp_TypeInfo_var))->___AsciiToLower_1;
String_t* L_7 = V_0;
NullCheck(L_7);
Il2CppChar L_8;
L_8 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_7, 0, NULL);
NullCheck(L_6);
int32_t L_9 = ((int32_t)(uint8_t)L_8);
uint8_t L_10 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = ((CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_StaticFields*)il2cpp_codegen_static_fields_for(CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_il2cpp_TypeInfo_var))->___AsciiToLower_1;
String_t* L_12 = V_0;
int32_t L_13 = V_1;
NullCheck(L_12);
Il2CppChar L_14;
L_14 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_12, ((int32_t)il2cpp_codegen_subtract(L_13, 1)), NULL);
NullCheck(L_11);
int32_t L_15 = ((int32_t)(uint8_t)L_14);
uint8_t L_16 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
V_1 = ((int32_t)(L_5^((int32_t)(((int32_t)((int32_t)L_10<<((int32_t)24)))^((int32_t)((int32_t)L_16<<((int32_t)16)))))));
int32_t L_17 = V_1;
return L_17;
}
}
// System.Int32 System.Net.CaseInsensitiveAscii::Compare(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CaseInsensitiveAscii_Compare_mDA30468D238E946A8CA36C5D0CBD9C92EBB67B0B (CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C* __this, RuntimeObject* ___firstObject0, RuntimeObject* ___secondObject1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_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;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t V_4 = 0;
int32_t V_5 = 0;
int32_t G_B9_0 = 0;
{
RuntimeObject* L_0 = ___firstObject0;
V_0 = ((String_t*)IsInstSealed((RuntimeObject*)L_0, String_t_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = ___secondObject1;
V_1 = ((String_t*)IsInstSealed((RuntimeObject*)L_1, String_t_il2cpp_TypeInfo_var));
String_t* L_2 = V_0;
if (L_2)
{
goto IL_0018;
}
}
{
String_t* L_3 = V_1;
if (!L_3)
{
goto IL_0016;
}
}
{
return (-1);
}
IL_0016:
{
return 0;
}
IL_0018:
{
String_t* L_4 = V_1;
if (L_4)
{
goto IL_001d;
}
}
{
return 1;
}
IL_001d:
{
String_t* L_5 = V_0;
NullCheck(L_5);
int32_t L_6;
L_6 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_5, NULL);
String_t* L_7 = V_1;
NullCheck(L_7);
int32_t L_8;
L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL);
V_2 = ((int32_t)il2cpp_codegen_subtract(L_6, L_8));
int32_t L_9 = V_2;
if ((((int32_t)L_9) > ((int32_t)0)))
{
goto IL_0037;
}
}
{
String_t* L_10 = V_0;
NullCheck(L_10);
int32_t L_11;
L_11 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_10, NULL);
G_B9_0 = L_11;
goto IL_003d;
}
IL_0037:
{
String_t* L_12 = V_1;
NullCheck(L_12);
int32_t L_13;
L_13 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_12, NULL);
G_B9_0 = L_13;
}
IL_003d:
{
V_3 = G_B9_0;
V_5 = 0;
goto IL_0071;
}
IL_0043:
{
il2cpp_codegen_runtime_class_init_inline(CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_il2cpp_TypeInfo_var);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_14 = ((CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_StaticFields*)il2cpp_codegen_static_fields_for(CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_il2cpp_TypeInfo_var))->___AsciiToLower_1;
String_t* L_15 = V_0;
int32_t L_16 = V_5;
NullCheck(L_15);
Il2CppChar L_17;
L_17 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_15, L_16, NULL);
NullCheck(L_14);
Il2CppChar L_18 = L_17;
uint8_t L_19 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_20 = ((CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_StaticFields*)il2cpp_codegen_static_fields_for(CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_il2cpp_TypeInfo_var))->___AsciiToLower_1;
String_t* L_21 = V_1;
int32_t L_22 = V_5;
NullCheck(L_21);
Il2CppChar L_23;
L_23 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_21, L_22, NULL);
NullCheck(L_20);
Il2CppChar L_24 = L_23;
uint8_t L_25 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
V_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)L_25));
int32_t L_26 = V_4;
if (!L_26)
{
goto IL_006b;
}
}
{
int32_t L_27 = V_4;
V_2 = L_27;
goto IL_0076;
}
IL_006b:
{
int32_t L_28 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add(L_28, 1));
}
IL_0071:
{
int32_t L_29 = V_5;
int32_t L_30 = V_3;
if ((((int32_t)L_29) < ((int32_t)L_30)))
{
goto IL_0043;
}
}
IL_0076:
{
int32_t L_31 = V_2;
return L_31;
}
}
// System.Int32 System.Net.CaseInsensitiveAscii::FastGetHashCode(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CaseInsensitiveAscii_FastGetHashCode_m8185162F020C571335BCFB444577F786E6BB1E06 (CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C* __this, String_t* ___myString0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
String_t* L_0 = ___myString0;
NullCheck(L_0);
int32_t L_1;
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL);
V_0 = L_1;
int32_t L_2 = V_0;
if (!L_2)
{
goto IL_0032;
}
}
{
int32_t L_3 = V_0;
il2cpp_codegen_runtime_class_init_inline(CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_il2cpp_TypeInfo_var);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ((CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_StaticFields*)il2cpp_codegen_static_fields_for(CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_il2cpp_TypeInfo_var))->___AsciiToLower_1;
String_t* L_5 = ___myString0;
NullCheck(L_5);
Il2CppChar L_6;
L_6 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_5, 0, NULL);
NullCheck(L_4);
int32_t L_7 = ((int32_t)(uint8_t)L_6);
uint8_t L_8 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = ((CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_StaticFields*)il2cpp_codegen_static_fields_for(CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_il2cpp_TypeInfo_var))->___AsciiToLower_1;
String_t* L_10 = ___myString0;
int32_t L_11 = V_0;
NullCheck(L_10);
Il2CppChar L_12;
L_12 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_10, ((int32_t)il2cpp_codegen_subtract(L_11, 1)), NULL);
NullCheck(L_9);
int32_t L_13 = ((int32_t)(uint8_t)L_12);
uint8_t L_14 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_13));
V_0 = ((int32_t)(L_3^((int32_t)(((int32_t)((int32_t)L_8<<((int32_t)24)))^((int32_t)((int32_t)L_14<<((int32_t)16)))))));
}
IL_0032:
{
int32_t L_15 = V_0;
return L_15;
}
}
// System.Boolean System.Net.CaseInsensitiveAscii::Equals(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CaseInsensitiveAscii_Equals_m2F02CC88964600A235BA5B084B83ADA6CEE2EE5F (CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C* __this, RuntimeObject* ___firstObject0, RuntimeObject* ___secondObject1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_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;
int32_t V_2 = 0;
{
RuntimeObject* L_0 = ___firstObject0;
V_0 = ((String_t*)IsInstSealed((RuntimeObject*)L_0, String_t_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = ___secondObject1;
V_1 = ((String_t*)IsInstSealed((RuntimeObject*)L_1, String_t_il2cpp_TypeInfo_var));
String_t* L_2 = V_0;
if (L_2)
{
goto IL_0016;
}
}
{
String_t* L_3 = V_1;
return (bool)((((RuntimeObject*)(String_t*)L_3) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
}
IL_0016:
{
String_t* L_4 = V_1;
if (!L_4)
{
goto IL_006a;
}
}
{
String_t* L_5 = V_0;
NullCheck(L_5);
int32_t L_6;
L_6 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_5, NULL);
V_2 = L_6;
int32_t L_7 = V_2;
String_t* L_8 = V_1;
NullCheck(L_8);
int32_t L_9;
L_9 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_8, NULL);
if ((!(((uint32_t)L_7) == ((uint32_t)L_9))))
{
goto IL_006a;
}
}
{
String_t* L_10 = V_0;
int32_t L_11;
L_11 = CaseInsensitiveAscii_FastGetHashCode_m8185162F020C571335BCFB444577F786E6BB1E06(__this, L_10, NULL);
String_t* L_12 = V_1;
int32_t L_13;
L_13 = CaseInsensitiveAscii_FastGetHashCode_m8185162F020C571335BCFB444577F786E6BB1E06(__this, L_12, NULL);
if ((!(((uint32_t)L_11) == ((uint32_t)L_13))))
{
goto IL_006a;
}
}
{
String_t* L_14 = V_0;
NullCheck(L_14);
int32_t L_15;
L_15 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_14, NULL);
goto IL_0064;
}
IL_0042:
{
int32_t L_16 = V_2;
V_2 = ((int32_t)il2cpp_codegen_subtract(L_16, 1));
il2cpp_codegen_runtime_class_init_inline(CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_il2cpp_TypeInfo_var);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_17 = ((CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_StaticFields*)il2cpp_codegen_static_fields_for(CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_il2cpp_TypeInfo_var))->___AsciiToLower_1;
String_t* L_18 = V_0;
int32_t L_19 = V_2;
NullCheck(L_18);
Il2CppChar L_20;
L_20 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_18, L_19, NULL);
NullCheck(L_17);
Il2CppChar L_21 = L_20;
uint8_t L_22 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_23 = ((CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_StaticFields*)il2cpp_codegen_static_fields_for(CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_il2cpp_TypeInfo_var))->___AsciiToLower_1;
String_t* L_24 = V_1;
int32_t L_25 = V_2;
NullCheck(L_24);
Il2CppChar L_26;
L_26 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_24, L_25, NULL);
NullCheck(L_23);
Il2CppChar L_27 = L_26;
uint8_t L_28 = (L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_27));
if ((((int32_t)L_22) == ((int32_t)L_28)))
{
goto IL_0064;
}
}
{
return (bool)0;
}
IL_0064:
{
int32_t L_29 = V_2;
if ((((int32_t)L_29) > ((int32_t)0)))
{
goto IL_0042;
}
}
{
return (bool)1;
}
IL_006a:
{
return (bool)0;
}
}
// System.Void System.Net.CaseInsensitiveAscii::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CaseInsensitiveAscii__ctor_mD964E182EFE7238322DE8F7A2CA169657B6C4F4A (CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Void System.Net.CaseInsensitiveAscii::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CaseInsensitiveAscii__cctor_m769922E617CDF4088DCC27EDD5C2F0042D2318A3 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____00C700F38385659BA060672F86D4A9A5376EADF9ED1CABB1C63290A0FDEFE36A_0_FieldInfo_var);
s_Il2CppMethodInitialized = true;
}
{
CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C* L_0 = (CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C*)il2cpp_codegen_object_new(CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_il2cpp_TypeInfo_var);
NullCheck(L_0);
CaseInsensitiveAscii__ctor_mD964E182EFE7238322DE8F7A2CA169657B6C4F4A(L_0, NULL);
((CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_StaticFields*)il2cpp_codegen_static_fields_for(CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_il2cpp_TypeInfo_var))->___StaticInstance_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_StaticFields*)il2cpp_codegen_static_fields_for(CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_il2cpp_TypeInfo_var))->___StaticInstance_0), (void*)L_0);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)((int32_t)256));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = L_1;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_3 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____00C700F38385659BA060672F86D4A9A5376EADF9ED1CABB1C63290A0FDEFE36A_0_FieldInfo_var) };
RuntimeHelpers_InitializeArray_mE10C3436BA703E4D9D41B3F8F365E4C34F9926EF((RuntimeArray*)L_2, L_3, NULL);
((CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_StaticFields*)il2cpp_codegen_static_fields_for(CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_il2cpp_TypeInfo_var))->___AsciiToLower_1 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&((CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_StaticFields*)il2cpp_codegen_static_fields_for(CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_il2cpp_TypeInfo_var))->___AsciiToLower_1), (void*)L_2);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Object System.Net.WebRequest::get_InternalSyncObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WebRequest_get_InternalSyncObject_mCCA701B3B01048CC2F26150D9E84D25CD194DFCF (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var);
RuntimeObject* L_0 = ((WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_StaticFields*)il2cpp_codegen_static_fields_for(WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var))->___s_InternalSyncObject_2;
if (L_0)
{
goto IL_001a;
}
}
{
RuntimeObject* L_1 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
NullCheck(L_1);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_1, NULL);
V_0 = L_1;
il2cpp_codegen_runtime_class_init_inline(WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var);
RuntimeObject* L_2 = V_0;
RuntimeObject* L_3;
L_3 = Interlocked_CompareExchange_mE9CAF0B3E78E95BA138B5623615D3C0242581977((&((WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_StaticFields*)il2cpp_codegen_static_fields_for(WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var))->___s_InternalSyncObject_2), L_2, NULL, NULL);
}
IL_001a:
{
il2cpp_codegen_runtime_class_init_inline(WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var);
RuntimeObject* L_4 = ((WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_StaticFields*)il2cpp_codegen_static_fields_for(WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var))->___s_InternalSyncObject_2;
return L_4;
}
}
// System.Net.WebRequest System.Net.WebRequest::Create(System.Uri,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* WebRequest_Create_m9DD92CB71F55DA62C44CDCB1797D1B4241E753DC (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___requestUri0, bool ___useUriBase1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IWebRequestCreate_t5D7AD1E61E488459300CF994DF01218434C6D930_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebRequestPrefixElement_tBE0FDE8DE0352095DECA0964655D25E05E435C35_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
WebRequestPrefixElement_tBE0FDE8DE0352095DECA0964655D25E05E435C35* V_1 = NULL;
bool V_2 = false;
int32_t V_3 = 0;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* V_4 = NULL;
int32_t V_5 = 0;
{
bool L_0;
L_0 = Logging_get_On_mE613A75366C51B02DEC967952C3C0DD852156B02(NULL);
V_1 = (WebRequestPrefixElement_tBE0FDE8DE0352095DECA0964655D25E05E435C35*)NULL;
V_2 = (bool)0;
bool L_1 = ___useUriBase1;
if (L_1)
{
goto IL_0016;
}
}
{
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_2 = ___requestUri0;
NullCheck(L_2);
String_t* L_3;
L_3 = Uri_get_AbsoluteUri_m080934F4F2E2160EBEABDF00F8B6D59888EA63AE(L_2, NULL);
V_0 = L_3;
goto IL_0027;
}
IL_0016:
{
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_4 = ___requestUri0;
NullCheck(L_4);
String_t* L_5;
L_5 = Uri_get_Scheme_m29106D5109538220B22FC49DE7B44040E51B0F6F(L_4, NULL);
String_t* L_6;
L_6 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_5, _stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D, NULL);
V_0 = L_6;
}
IL_0027:
{
String_t* L_7 = V_0;
NullCheck(L_7);
int32_t L_8;
L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL);
V_3 = L_8;
il2cpp_codegen_runtime_class_init_inline(WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_9;
L_9 = WebRequest_get_PrefixList_m233C839E7F75B2777B26A693A2DAD1AACC7B915D(NULL);
V_4 = L_9;
V_5 = 0;
goto IL_007d;
}
IL_003a:
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_10 = V_4;
int32_t L_11 = V_5;
NullCheck(L_10);
RuntimeObject* L_12;
L_12 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_10, L_11);
V_1 = ((WebRequestPrefixElement_tBE0FDE8DE0352095DECA0964655D25E05E435C35*)CastclassClass((RuntimeObject*)L_12, WebRequestPrefixElement_tBE0FDE8DE0352095DECA0964655D25E05E435C35_il2cpp_TypeInfo_var));
int32_t L_13 = V_3;
WebRequestPrefixElement_tBE0FDE8DE0352095DECA0964655D25E05E435C35* L_14 = V_1;
NullCheck(L_14);
String_t* L_15 = L_14->___Prefix_0;
NullCheck(L_15);
int32_t L_16;
L_16 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_15, NULL);
if ((((int32_t)L_13) < ((int32_t)L_16)))
{
goto IL_0077;
}
}
{
WebRequestPrefixElement_tBE0FDE8DE0352095DECA0964655D25E05E435C35* L_17 = V_1;
NullCheck(L_17);
String_t* L_18 = L_17->___Prefix_0;
String_t* L_19 = V_0;
WebRequestPrefixElement_tBE0FDE8DE0352095DECA0964655D25E05E435C35* L_20 = V_1;
NullCheck(L_20);
String_t* L_21 = L_20->___Prefix_0;
NullCheck(L_21);
int32_t L_22;
L_22 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_21, NULL);
int32_t L_23;
L_23 = String_Compare_mC0521D93E3608D6A004D12B1921058A021987CAA(L_18, 0, L_19, 0, L_22, 5, NULL);
if (L_23)
{
goto IL_0077;
}
}
{
V_2 = (bool)1;
goto IL_0088;
}
IL_0077:
{
int32_t L_24 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add(L_24, 1));
}
IL_007d:
{
int32_t L_25 = V_5;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_26 = V_4;
NullCheck(L_26);
int32_t L_27;
L_27 = VirtualFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_26);
if ((((int32_t)L_25) < ((int32_t)L_27)))
{
goto IL_003a;
}
}
IL_0088:
{
bool L_28 = V_2;
if (!L_28)
{
goto IL_009e;
}
}
{
WebRequestPrefixElement_tBE0FDE8DE0352095DECA0964655D25E05E435C35* L_29 = V_1;
NullCheck(L_29);
RuntimeObject* L_30;
L_30 = WebRequestPrefixElement_get_Creator_mA4054182FA19EA0B452693C7F747122DC0A4A9ED(L_29, NULL);
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_31 = ___requestUri0;
NullCheck(L_30);
WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* L_32;
L_32 = InterfaceFuncInvoker1< WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B*, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* >::Invoke(0 /* System.Net.WebRequest System.Net.IWebRequestCreate::Create(System.Uri) */, IWebRequestCreate_t5D7AD1E61E488459300CF994DF01218434C6D930_il2cpp_TypeInfo_var, L_30, L_31);
bool L_33;
L_33 = Logging_get_On_mE613A75366C51B02DEC967952C3C0DD852156B02(NULL);
return L_32;
}
IL_009e:
{
bool L_34;
L_34 = Logging_get_On_mE613A75366C51B02DEC967952C3C0DD852156B02(NULL);
String_t* L_35;
L_35 = SR_GetString_m2FF076D246665572FABD5913A9945E2A694DCB4D(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB95E6F99C6E94CF20B6761C1D34626A3D301CBFE)), NULL);
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_36 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_36);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_36, L_35, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_36, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebRequest_Create_m9DD92CB71F55DA62C44CDCB1797D1B4241E753DC_RuntimeMethod_var)));
}
}
// System.Net.WebRequest System.Net.WebRequest::Create(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* WebRequest_Create_m18D598C169B53797E9B26A710442CAF2D786B04A (String_t* ___requestUriString0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___requestUriString0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_1);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9E6EE2E8A8F7BA1E32CE982DB123FA004F2495D0)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebRequest_Create_m18D598C169B53797E9B26A710442CAF2D786B04A_RuntimeMethod_var)));
}
IL_000e:
{
String_t* L_2 = ___requestUriString0;
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_3 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)il2cpp_codegen_object_new(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
NullCheck(L_3);
Uri__ctor_m6CA436E6AD2768A121FA851CBEEFA3623E849D3A(L_3, L_2, NULL);
il2cpp_codegen_runtime_class_init_inline(WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var);
WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* L_4;
L_4 = WebRequest_Create_m9DD92CB71F55DA62C44CDCB1797D1B4241E753DC(L_3, (bool)0, NULL);
return L_4;
}
}
// System.Net.WebRequest System.Net.WebRequest::Create(System.Uri)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* WebRequest_Create_mD11C7BB286D0C12A92911F717AC8D2CAF9027611 (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___requestUri0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_0 = ___requestUri0;
il2cpp_codegen_runtime_class_init_inline(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Uri_op_Equality_mB299FA02A76FD12A781BCBAD53D65B73C1768682(L_0, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, NULL);
if (!L_1)
{
goto IL_0014;
}
}
{
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE4FD92166270752CAF8CD83C4F787558916F3F4C)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebRequest_Create_mD11C7BB286D0C12A92911F717AC8D2CAF9027611_RuntimeMethod_var)));
}
IL_0014:
{
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_3 = ___requestUri0;
il2cpp_codegen_runtime_class_init_inline(WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var);
WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* L_4;
L_4 = WebRequest_Create_m9DD92CB71F55DA62C44CDCB1797D1B4241E753DC(L_3, (bool)0, NULL);
return L_4;
}
}
// System.Collections.ArrayList System.Net.WebRequest::get_PrefixList()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* WebRequest_get_PrefixList_m233C839E7F75B2777B26A693A2DAD1AACC7B915D (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
bool V_1 = false;
{
il2cpp_codegen_runtime_class_init_inline(WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = ((WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_StaticFields*)il2cpp_codegen_static_fields_for(WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var))->___s_PrefixList_1;
il2cpp_codegen_memory_barrier();
if (L_0)
{
goto IL_003a;
}
}
{
il2cpp_codegen_runtime_class_init_inline(WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var);
RuntimeObject* L_1;
L_1 = WebRequest_get_InternalSyncObject_mCCA701B3B01048CC2F26150D9E84D25CD194DFCF(NULL);
V_0 = L_1;
V_1 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0030:
{// begin finally (depth: 1)
{
bool L_2 = V_1;
if (!L_2)
{
goto IL_0039;
}
}
{
RuntimeObject* L_3 = V_0;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_3, NULL);
}
IL_0039:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
RuntimeObject* L_4 = V_0;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_4, (&V_1), NULL);
il2cpp_codegen_runtime_class_init_inline(WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_5 = ((WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_StaticFields*)il2cpp_codegen_static_fields_for(WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var))->___s_PrefixList_1;
il2cpp_codegen_memory_barrier();
if (L_5)
{
goto IL_002e_1;
}
}
{
il2cpp_codegen_runtime_class_init_inline(WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_6;
L_6 = WebRequest_PopulatePrefixList_m6E56B2280C7828A4FFFF0154681C3CD8B1B61E8B(NULL);
il2cpp_codegen_memory_barrier();
((WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_StaticFields*)il2cpp_codegen_static_fields_for(WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var))->___s_PrefixList_1 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&((WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_StaticFields*)il2cpp_codegen_static_fields_for(WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var))->___s_PrefixList_1), (void*)L_6);
}
IL_002e_1:
{
goto IL_003a;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_003a:
{
il2cpp_codegen_runtime_class_init_inline(WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_7 = ((WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_StaticFields*)il2cpp_codegen_static_fields_for(WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var))->___s_PrefixList_1;
il2cpp_codegen_memory_barrier();
return L_7;
}
}
// System.Collections.ArrayList System.Net.WebRequest::PopulatePrefixList()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* WebRequest_PopulatePrefixList_m6E56B2280C7828A4FFFF0154681C3CD8B1B61E8B (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FileWebRequestCreator_tC059E97F3753B58929F60C8531EADB9683F4111D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FtpWebRequestCreator_tC389DCEC82487414E888BDCCE1922A5A10937620_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpRequestCreator_tDA975F6F61D732123CEE4E5AF40042311D3EF7E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebRequestPrefixElement_tBE0FDE8DE0352095DECA0964655D25E05E435C35_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral58B716FF5428F7961E1403E6D969E605D0F27EAF);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8CB5CAE4A06CBA4A72564C688228877DD24B9906);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC05DD95A56B355AAD74E9CE147B236E03FF8905E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF27E4C631EBEFA337EC21BE8552E169C9DED78A2);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)il2cpp_codegen_object_new(ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var);
NullCheck(L_0);
ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80(L_0, NULL);
HttpRequestCreator_tDA975F6F61D732123CEE4E5AF40042311D3EF7E0* L_1 = (HttpRequestCreator_tDA975F6F61D732123CEE4E5AF40042311D3EF7E0*)il2cpp_codegen_object_new(HttpRequestCreator_tDA975F6F61D732123CEE4E5AF40042311D3EF7E0_il2cpp_TypeInfo_var);
NullCheck(L_1);
HttpRequestCreator__ctor_mA6D07F56561A4C93100584384CCDED5171C45F50(L_1, NULL);
V_0 = L_1;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_2 = L_0;
RuntimeObject* L_3 = V_0;
WebRequestPrefixElement_tBE0FDE8DE0352095DECA0964655D25E05E435C35* L_4 = (WebRequestPrefixElement_tBE0FDE8DE0352095DECA0964655D25E05E435C35*)il2cpp_codegen_object_new(WebRequestPrefixElement_tBE0FDE8DE0352095DECA0964655D25E05E435C35_il2cpp_TypeInfo_var);
NullCheck(L_4);
WebRequestPrefixElement__ctor_mA9BEF8159EE6A6C7092797F6E7BE68FDE06E3C4B(L_4, _stringLiteral58B716FF5428F7961E1403E6D969E605D0F27EAF, L_3, NULL);
NullCheck(L_2);
int32_t L_5;
L_5 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_2, L_4);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_6 = L_2;
RuntimeObject* L_7 = V_0;
WebRequestPrefixElement_tBE0FDE8DE0352095DECA0964655D25E05E435C35* L_8 = (WebRequestPrefixElement_tBE0FDE8DE0352095DECA0964655D25E05E435C35*)il2cpp_codegen_object_new(WebRequestPrefixElement_tBE0FDE8DE0352095DECA0964655D25E05E435C35_il2cpp_TypeInfo_var);
NullCheck(L_8);
WebRequestPrefixElement__ctor_mA9BEF8159EE6A6C7092797F6E7BE68FDE06E3C4B(L_8, _stringLiteralF27E4C631EBEFA337EC21BE8552E169C9DED78A2, L_7, NULL);
NullCheck(L_6);
int32_t L_9;
L_9 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_6, L_8);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_10 = L_6;
FileWebRequestCreator_tC059E97F3753B58929F60C8531EADB9683F4111D* L_11 = (FileWebRequestCreator_tC059E97F3753B58929F60C8531EADB9683F4111D*)il2cpp_codegen_object_new(FileWebRequestCreator_tC059E97F3753B58929F60C8531EADB9683F4111D_il2cpp_TypeInfo_var);
NullCheck(L_11);
FileWebRequestCreator__ctor_mDF264D86311EA60A56DA2B1FCE048E48F0BF6CAB(L_11, NULL);
WebRequestPrefixElement_tBE0FDE8DE0352095DECA0964655D25E05E435C35* L_12 = (WebRequestPrefixElement_tBE0FDE8DE0352095DECA0964655D25E05E435C35*)il2cpp_codegen_object_new(WebRequestPrefixElement_tBE0FDE8DE0352095DECA0964655D25E05E435C35_il2cpp_TypeInfo_var);
NullCheck(L_12);
WebRequestPrefixElement__ctor_mA9BEF8159EE6A6C7092797F6E7BE68FDE06E3C4B(L_12, _stringLiteralC05DD95A56B355AAD74E9CE147B236E03FF8905E, L_11, NULL);
NullCheck(L_10);
int32_t L_13;
L_13 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_10, L_12);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_14 = L_10;
FtpWebRequestCreator_tC389DCEC82487414E888BDCCE1922A5A10937620* L_15 = (FtpWebRequestCreator_tC389DCEC82487414E888BDCCE1922A5A10937620*)il2cpp_codegen_object_new(FtpWebRequestCreator_tC389DCEC82487414E888BDCCE1922A5A10937620_il2cpp_TypeInfo_var);
NullCheck(L_15);
FtpWebRequestCreator__ctor_m163216FA7A2018F0D581EC6AC6B83FB853DA514D(L_15, NULL);
WebRequestPrefixElement_tBE0FDE8DE0352095DECA0964655D25E05E435C35* L_16 = (WebRequestPrefixElement_tBE0FDE8DE0352095DECA0964655D25E05E435C35*)il2cpp_codegen_object_new(WebRequestPrefixElement_tBE0FDE8DE0352095DECA0964655D25E05E435C35_il2cpp_TypeInfo_var);
NullCheck(L_16);
WebRequestPrefixElement__ctor_mA9BEF8159EE6A6C7092797F6E7BE68FDE06E3C4B(L_16, _stringLiteral8CB5CAE4A06CBA4A72564C688228877DD24B9906, L_15, NULL);
NullCheck(L_14);
int32_t L_17;
L_17 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_14, L_16);
return L_14;
}
}
// System.Void System.Net.WebRequest::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebRequest__ctor_m8A7037980E4A7E78EEF420F0C38A36C10DE3D642 (WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* __this, const RuntimeMethod* method)
{
{
MarshalByRefObject__ctor_mCBAD191F9BB35587528256781970FDFEFCDBE538(__this, NULL);
__this->___m_ImpersonationLevel_5 = 4;
__this->___m_AuthenticationLevel_4 = 1;
return;
}
}
// System.Void System.Net.WebRequest::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebRequest__ctor_mFCD491607BF422AED49CB0368CFE19F2E37BE98A (WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___serializationInfo0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___streamingContext1, const RuntimeMethod* method)
{
{
MarshalByRefObject__ctor_mCBAD191F9BB35587528256781970FDFEFCDBE538(__this, NULL);
return;
}
}
// System.Void System.Net.WebRequest::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebRequest_System_Runtime_Serialization_ISerializable_GetObjectData_m84834AA790D887F6742649C7D4001AD00089102B (WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___serializationInfo0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___streamingContext1, const RuntimeMethod* method)
{
{
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___serializationInfo0;
StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___streamingContext1;
VirtualActionInvoker2< SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37*, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 >::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.WebRequest::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebRequest_GetObjectData_m1809AB7BE2251220AB0F64110CFD815EF882D3E7 (WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___serializationInfo0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___streamingContext1, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Net.WebRequest::set_CachePolicy(System.Net.Cache.RequestCachePolicy)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebRequest_set_CachePolicy_mBDD930800DB2EFD353D0090BBEC03D8DE098C90A (WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* __this, RequestCachePolicy_tF15C94C5E458478914D5EB17753294BD488B0550* ___value0, const RuntimeMethod* method)
{
{
RequestCachePolicy_tF15C94C5E458478914D5EB17753294BD488B0550* L_0 = ___value0;
WebRequest_InternalSetCachePolicy_m48EE455302BEA5A1F75E18E5D7DCF5CA8A18F076(__this, L_0, NULL);
return;
}
}
// System.Void System.Net.WebRequest::InternalSetCachePolicy(System.Net.Cache.RequestCachePolicy)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebRequest_InternalSetCachePolicy_m48EE455302BEA5A1F75E18E5D7DCF5CA8A18F076 (WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* __this, RequestCachePolicy_tF15C94C5E458478914D5EB17753294BD488B0550* ___policy0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RequestCacheProtocol_t43C1AC170194874A0C0B0D3B8BE9EABFB613DF85_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RequestCacheBinding_t18F3F4FF8D0F77E86C2C666CEE7FD48A80C042EE* L_0 = __this->___m_CacheBinding_8;
if (!L_0)
{
goto IL_005c;
}
}
{
RequestCacheBinding_t18F3F4FF8D0F77E86C2C666CEE7FD48A80C042EE* L_1 = __this->___m_CacheBinding_8;
NullCheck(L_1);
RequestCache_tE6EF47B39906B93E4777BC33B850BE7F9D4E3F9C* L_2;
L_2 = RequestCacheBinding_get_Cache_m96C4E0E7F9A2616C261B185E2BB28766929D9800_inline(L_1, NULL);
if (!L_2)
{
goto IL_005c;
}
}
{
RequestCacheBinding_t18F3F4FF8D0F77E86C2C666CEE7FD48A80C042EE* L_3 = __this->___m_CacheBinding_8;
NullCheck(L_3);
RequestCacheValidator_t21CD031336DECDDBA28550AE4353AA82CC37E301* L_4;
L_4 = RequestCacheBinding_get_Validator_m74A9BB1C0CD37CD6B536782553DBCA4E67C145FC_inline(L_3, NULL);
if (!L_4)
{
goto IL_005c;
}
}
{
RequestCacheProtocol_t43C1AC170194874A0C0B0D3B8BE9EABFB613DF85* L_5;
L_5 = WebRequest_get_CacheProtocol_m2936E9CABE538D40E6A88C1DC3B78CE9336A711B_inline(__this, NULL);
if (L_5)
{
goto IL_005c;
}
}
{
RequestCachePolicy_tF15C94C5E458478914D5EB17753294BD488B0550* L_6 = ___policy0;
if (!L_6)
{
goto IL_005c;
}
}
{
RequestCachePolicy_tF15C94C5E458478914D5EB17753294BD488B0550* L_7 = ___policy0;
NullCheck(L_7);
int32_t L_8;
L_8 = RequestCachePolicy_get_Level_m2D45A6E3059B05DED8BFD8D1EA20AEC907D920D3_inline(L_7, NULL);
if ((((int32_t)L_8) == ((int32_t)1)))
{
goto IL_005c;
}
}
{
RequestCacheBinding_t18F3F4FF8D0F77E86C2C666CEE7FD48A80C042EE* L_9 = __this->___m_CacheBinding_8;
NullCheck(L_9);
RequestCache_tE6EF47B39906B93E4777BC33B850BE7F9D4E3F9C* L_10;
L_10 = RequestCacheBinding_get_Cache_m96C4E0E7F9A2616C261B185E2BB28766929D9800_inline(L_9, NULL);
RequestCacheBinding_t18F3F4FF8D0F77E86C2C666CEE7FD48A80C042EE* L_11 = __this->___m_CacheBinding_8;
NullCheck(L_11);
RequestCacheValidator_t21CD031336DECDDBA28550AE4353AA82CC37E301* L_12;
L_12 = RequestCacheBinding_get_Validator_m74A9BB1C0CD37CD6B536782553DBCA4E67C145FC_inline(L_11, NULL);
NullCheck(L_12);
RuntimeObject* L_13;
L_13 = RequestCacheValidator_CreateValidator_mBFF46C1FCE42C817FD8596B221ADC9D880399CAD(L_12, NULL);
RequestCacheProtocol_t43C1AC170194874A0C0B0D3B8BE9EABFB613DF85* L_14 = (RequestCacheProtocol_t43C1AC170194874A0C0B0D3B8BE9EABFB613DF85*)il2cpp_codegen_object_new(RequestCacheProtocol_t43C1AC170194874A0C0B0D3B8BE9EABFB613DF85_il2cpp_TypeInfo_var);
NullCheck(L_14);
RequestCacheProtocol__ctor_m4E7F5A158A0507C5E58846CDA06B9847FF0C3D9C(L_14, L_10, L_13, NULL);
WebRequest_set_CacheProtocol_m708E1FF1630F00DF87309F698E837EA6E55428C4_inline(__this, L_14, NULL);
}
IL_005c:
{
RequestCachePolicy_tF15C94C5E458478914D5EB17753294BD488B0550* L_15 = ___policy0;
__this->___m_CachePolicy_6 = L_15;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_CachePolicy_6), (void*)L_15);
return;
}
}
// System.String System.Net.WebRequest::get_Method()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequest_get_Method_mFAE2E9E052F7031B81B2C5F05FBAF0AB1167A444 (WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* __this, const RuntimeMethod* method)
{
{
NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_0;
L_0 = ExceptionHelper_get_PropertyNotImplementedException_m5029CA867B083BAEE8D3D4577B1F571FEDDDE590(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebRequest_get_Method_mFAE2E9E052F7031B81B2C5F05FBAF0AB1167A444_RuntimeMethod_var)));
}
}
// System.Void System.Net.WebRequest::set_Method(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebRequest_set_Method_mC0B76EDF551FA04D66ABF5F52D0725787EECD31C (WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_0;
L_0 = ExceptionHelper_get_PropertyNotImplementedException_m5029CA867B083BAEE8D3D4577B1F571FEDDDE590(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebRequest_set_Method_mC0B76EDF551FA04D66ABF5F52D0725787EECD31C_RuntimeMethod_var)));
}
}
// System.Uri System.Net.WebRequest::get_RequestUri()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* WebRequest_get_RequestUri_m91BE50BB8D64C8FD5D9B31A0F707EB066A64097A (WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* __this, const RuntimeMethod* method)
{
{
NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_0;
L_0 = ExceptionHelper_get_PropertyNotImplementedException_m5029CA867B083BAEE8D3D4577B1F571FEDDDE590(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebRequest_get_RequestUri_m91BE50BB8D64C8FD5D9B31A0F707EB066A64097A_RuntimeMethod_var)));
}
}
// System.Net.WebHeaderCollection System.Net.WebRequest::get_Headers()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* WebRequest_get_Headers_m26A0D1239097F7AA805B4A8D2CF6FA5B1DC56932 (WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* __this, const RuntimeMethod* method)
{
{
NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_0;
L_0 = ExceptionHelper_get_PropertyNotImplementedException_m5029CA867B083BAEE8D3D4577B1F571FEDDDE590(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebRequest_get_Headers_m26A0D1239097F7AA805B4A8D2CF6FA5B1DC56932_RuntimeMethod_var)));
}
}
// System.Int64 System.Net.WebRequest::get_ContentLength()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t WebRequest_get_ContentLength_m1BF638AB4F757E2FAB7F765B63FD743BF0FCBF6B (WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* __this, const RuntimeMethod* method)
{
{
NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_0;
L_0 = ExceptionHelper_get_PropertyNotImplementedException_m5029CA867B083BAEE8D3D4577B1F571FEDDDE590(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebRequest_get_ContentLength_m1BF638AB4F757E2FAB7F765B63FD743BF0FCBF6B_RuntimeMethod_var)));
}
}
// System.Net.ICredentials System.Net.WebRequest::get_Credentials()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WebRequest_get_Credentials_m47790A75D2014E80AB4F83A91BEBFED52785F500 (WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* __this, const RuntimeMethod* method)
{
{
NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_0;
L_0 = ExceptionHelper_get_PropertyNotImplementedException_m5029CA867B083BAEE8D3D4577B1F571FEDDDE590(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebRequest_get_Credentials_m47790A75D2014E80AB4F83A91BEBFED52785F500_RuntimeMethod_var)));
}
}
// System.Void System.Net.WebRequest::set_Credentials(System.Net.ICredentials)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebRequest_set_Credentials_mBD3AD4311A053F6FD323344BE1A0F1B17868428B (WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_0;
L_0 = ExceptionHelper_get_PropertyNotImplementedException_m5029CA867B083BAEE8D3D4577B1F571FEDDDE590(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebRequest_set_Credentials_mBD3AD4311A053F6FD323344BE1A0F1B17868428B_RuntimeMethod_var)));
}
}
// System.Boolean System.Net.WebRequest::get_UseDefaultCredentials()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WebRequest_get_UseDefaultCredentials_m81F5CC1019777DFC87DDE33FEA663CCED0F3C0F9 (WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* __this, const RuntimeMethod* method)
{
{
NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_0;
L_0 = ExceptionHelper_get_PropertyNotImplementedException_m5029CA867B083BAEE8D3D4577B1F571FEDDDE590(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebRequest_get_UseDefaultCredentials_m81F5CC1019777DFC87DDE33FEA663CCED0F3C0F9_RuntimeMethod_var)));
}
}
// System.Net.IWebProxy System.Net.WebRequest::get_Proxy()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WebRequest_get_Proxy_m251BB31AEFFC7CFF8B760FE3AEAF2910743C092D (WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* __this, const RuntimeMethod* method)
{
{
NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_0;
L_0 = ExceptionHelper_get_PropertyNotImplementedException_m5029CA867B083BAEE8D3D4577B1F571FEDDDE590(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebRequest_get_Proxy_m251BB31AEFFC7CFF8B760FE3AEAF2910743C092D_RuntimeMethod_var)));
}
}
// System.Void System.Net.WebRequest::set_Proxy(System.Net.IWebProxy)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebRequest_set_Proxy_mFDB69D2A0469AD21FC1A918EEB5515272D45F796 (WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_0;
L_0 = ExceptionHelper_get_PropertyNotImplementedException_m5029CA867B083BAEE8D3D4577B1F571FEDDDE590(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebRequest_set_Proxy_mFDB69D2A0469AD21FC1A918EEB5515272D45F796_RuntimeMethod_var)));
}
}
// System.Int32 System.Net.WebRequest::get_Timeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t WebRequest_get_Timeout_mB2F6910163AF508879886ABE5C9824ABA6D1D81C (WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* __this, const RuntimeMethod* method)
{
{
NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_0;
L_0 = ExceptionHelper_get_PropertyNotImplementedException_m5029CA867B083BAEE8D3D4577B1F571FEDDDE590(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebRequest_get_Timeout_mB2F6910163AF508879886ABE5C9824ABA6D1D81C_RuntimeMethod_var)));
}
}
// System.Net.WebResponse System.Net.WebRequest::GetResponse()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* WebRequest_GetResponse_mF6F9D792949BD9CDA3AC8DC9635C6D31913D519B (WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* __this, const RuntimeMethod* method)
{
{
NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_0;
L_0 = ExceptionHelper_get_MethodNotImplementedException_mF8678EE4622F1BBEEC6CDD54293E4D1B40A6D251(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebRequest_GetResponse_mF6F9D792949BD9CDA3AC8DC9635C6D31913D519B_RuntimeMethod_var)));
}
}
// System.IAsyncResult System.Net.WebRequest::BeginGetResponse(System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WebRequest_BeginGetResponse_mBED5D8A0E2BDB198696F3117A2355564F6AA0299 (WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* __this, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___callback0, RuntimeObject* ___state1, const RuntimeMethod* method)
{
{
NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_0;
L_0 = ExceptionHelper_get_MethodNotImplementedException_mF8678EE4622F1BBEEC6CDD54293E4D1B40A6D251(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebRequest_BeginGetResponse_mBED5D8A0E2BDB198696F3117A2355564F6AA0299_RuntimeMethod_var)));
}
}
// System.Net.WebResponse System.Net.WebRequest::EndGetResponse(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* WebRequest_EndGetResponse_mBE7182580E7B9B64E560EDC8C7A2A68F385C4833 (WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* __this, RuntimeObject* ___asyncResult0, const RuntimeMethod* method)
{
{
NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_0;
L_0 = ExceptionHelper_get_MethodNotImplementedException_mF8678EE4622F1BBEEC6CDD54293E4D1B40A6D251(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebRequest_EndGetResponse_mBE7182580E7B9B64E560EDC8C7A2A68F385C4833_RuntimeMethod_var)));
}
}
// System.Threading.Tasks.Task`1<System.Net.WebResponse> System.Net.WebRequest::GetResponseAsync()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t5E1291839AEFBDBE3699513D40515588EE167AB0* WebRequest_GetResponseAsync_m43EB360A2947698EDE4671A9811FA0F6C52A23EC (WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecutionContext_t9D6EDFD92F0B2D391751963E2D77A8B03CB81710_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_1_tDAA6FBAB20A0B65227BD8FED28803AF2E7E5C29B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IWebProxy_t3ECD2C773539B48B18734D61E87B685A9C93076D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_Run_TisWebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682_m45DB463CCE36493A6DC9101000833CC298826277_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass79_0_U3CGetResponseAsyncU3Eb__1_mD03363C04D913541A4A1E21614CE2D60C92E2AA0_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass79_0_tA7D1A51487A16A545400DB55AE8D336EE26007F1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebRequest_U3CGetResponseAsyncU3Eb__79_0_m635D73DB9E3CEEEF92D50FC5AA0A5D0CCEA73E69_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
V_0 = (RuntimeObject*)NULL;
}
try
{// begin try (depth: 1)
RuntimeObject* L_0;
L_0 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(17 /* System.Net.IWebProxy System.Net.WebRequest::get_Proxy() */, __this);
V_0 = L_0;
goto IL_000e;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_000b;
}
throw e;
}
CATCH_000b:
{// begin catch(System.NotImplementedException)
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_000e;
}// end catch (depth: 1)
IL_000e:
{
il2cpp_codegen_runtime_class_init_inline(ExecutionContext_t9D6EDFD92F0B2D391751963E2D77A8B03CB81710_il2cpp_TypeInfo_var);
bool L_1;
L_1 = ExecutionContext_IsFlowSuppressed_mD899EB8EB2E9842281A91D2054F2AFDAA845802E(NULL);
if (!L_1)
{
goto IL_0059;
}
}
{
bool L_2;
L_2 = VirtualFuncInvoker0< bool >::Invoke(16 /* System.Boolean System.Net.WebRequest::get_UseDefaultCredentials() */, __this);
if (L_2)
{
goto IL_0030;
}
}
{
RuntimeObject* L_3;
L_3 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(14 /* System.Net.ICredentials System.Net.WebRequest::get_Credentials() */, __this);
if (L_3)
{
goto IL_0030;
}
}
{
RuntimeObject* L_4 = V_0;
if (!L_4)
{
goto IL_0059;
}
}
{
RuntimeObject* L_5 = V_0;
NullCheck(L_5);
RuntimeObject* L_6;
L_6 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2 /* System.Net.ICredentials System.Net.IWebProxy::get_Credentials() */, IWebProxy_t3ECD2C773539B48B18734D61E87B685A9C93076D_il2cpp_TypeInfo_var, L_5);
if (!L_6)
{
goto IL_0059;
}
}
IL_0030:
{
U3CU3Ec__DisplayClass79_0_tA7D1A51487A16A545400DB55AE8D336EE26007F1* L_7 = (U3CU3Ec__DisplayClass79_0_tA7D1A51487A16A545400DB55AE8D336EE26007F1*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass79_0_tA7D1A51487A16A545400DB55AE8D336EE26007F1_il2cpp_TypeInfo_var);
NullCheck(L_7);
U3CU3Ec__DisplayClass79_0__ctor_m98DEB00C10B19311D74B7AA965FD379F91FA94B1(L_7, NULL);
U3CU3Ec__DisplayClass79_0_tA7D1A51487A16A545400DB55AE8D336EE26007F1* L_8 = L_7;
NullCheck(L_8);
L_8->___U3CU3E4__this_1 = __this;
Il2CppCodeGenWriteBarrier((void**)(&L_8->___U3CU3E4__this_1), (void*)__this);
U3CU3Ec__DisplayClass79_0_tA7D1A51487A16A545400DB55AE8D336EE26007F1* L_9 = L_8;
WindowsIdentity_t18EC60B678C8A1AA9A67A89BC3BCFA1CC1E2C459* L_10;
L_10 = WebRequest_SafeCaptureIdenity_m75DF76AA29C004E643C39626ADD8A24D4C5EEDD9(__this, NULL);
NullCheck(L_9);
L_9->___currentUser_0 = L_10;
Il2CppCodeGenWriteBarrier((void**)(&L_9->___currentUser_0), (void*)L_10);
Func_1_tDAA6FBAB20A0B65227BD8FED28803AF2E7E5C29B* L_11 = (Func_1_tDAA6FBAB20A0B65227BD8FED28803AF2E7E5C29B*)il2cpp_codegen_object_new(Func_1_tDAA6FBAB20A0B65227BD8FED28803AF2E7E5C29B_il2cpp_TypeInfo_var);
NullCheck(L_11);
Func_1__ctor_mF4FCE9C7D2D1A775DE2B62D1931004049FD36CDB(L_11, L_9, (intptr_t)((void*)U3CU3Ec__DisplayClass79_0_U3CGetResponseAsyncU3Eb__1_mD03363C04D913541A4A1E21614CE2D60C92E2AA0_RuntimeMethod_var), NULL);
il2cpp_codegen_runtime_class_init_inline(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
Task_1_t5E1291839AEFBDBE3699513D40515588EE167AB0* L_12;
L_12 = Task_Run_TisWebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682_m45DB463CCE36493A6DC9101000833CC298826277(L_11, Task_Run_TisWebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682_m45DB463CCE36493A6DC9101000833CC298826277_RuntimeMethod_var);
return L_12;
}
IL_0059:
{
Func_1_tDAA6FBAB20A0B65227BD8FED28803AF2E7E5C29B* L_13 = (Func_1_tDAA6FBAB20A0B65227BD8FED28803AF2E7E5C29B*)il2cpp_codegen_object_new(Func_1_tDAA6FBAB20A0B65227BD8FED28803AF2E7E5C29B_il2cpp_TypeInfo_var);
NullCheck(L_13);
Func_1__ctor_mF4FCE9C7D2D1A775DE2B62D1931004049FD36CDB(L_13, __this, (intptr_t)((void*)WebRequest_U3CGetResponseAsyncU3Eb__79_0_m635D73DB9E3CEEEF92D50FC5AA0A5D0CCEA73E69_RuntimeMethod_var), NULL);
il2cpp_codegen_runtime_class_init_inline(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
Task_1_t5E1291839AEFBDBE3699513D40515588EE167AB0* L_14;
L_14 = Task_Run_TisWebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682_m45DB463CCE36493A6DC9101000833CC298826277(L_13, Task_Run_TisWebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682_m45DB463CCE36493A6DC9101000833CC298826277_RuntimeMethod_var);
return L_14;
}
}
// System.Security.Principal.WindowsIdentity System.Net.WebRequest::SafeCaptureIdenity()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WindowsIdentity_t18EC60B678C8A1AA9A67A89BC3BCFA1CC1E2C459* WebRequest_SafeCaptureIdenity_m75DF76AA29C004E643C39626ADD8A24D4C5EEDD9 (WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WindowsIdentity_t18EC60B678C8A1AA9A67A89BC3BCFA1CC1E2C459_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(WindowsIdentity_t18EC60B678C8A1AA9A67A89BC3BCFA1CC1E2C459_il2cpp_TypeInfo_var);
WindowsIdentity_t18EC60B678C8A1AA9A67A89BC3BCFA1CC1E2C459* L_0;
L_0 = WindowsIdentity_GetCurrent_m32EA0DA814950BFA3AB686A40649EF48BED03BDD(NULL);
return L_0;
}
}
// System.Void System.Net.WebRequest::Abort()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebRequest_Abort_mC22268D6B6812F405039FB6F34208E726EF62A56 (WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* __this, const RuntimeMethod* method)
{
{
NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_0;
L_0 = ExceptionHelper_get_MethodNotImplementedException_mF8678EE4622F1BBEEC6CDD54293E4D1B40A6D251(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebRequest_Abort_mC22268D6B6812F405039FB6F34208E726EF62A56_RuntimeMethod_var)));
}
}
// System.Net.Cache.RequestCacheProtocol System.Net.WebRequest::get_CacheProtocol()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RequestCacheProtocol_t43C1AC170194874A0C0B0D3B8BE9EABFB613DF85* WebRequest_get_CacheProtocol_m2936E9CABE538D40E6A88C1DC3B78CE9336A711B (WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* __this, const RuntimeMethod* method)
{
{
RequestCacheProtocol_t43C1AC170194874A0C0B0D3B8BE9EABFB613DF85* L_0 = __this->___m_CacheProtocol_7;
return L_0;
}
}
// System.Void System.Net.WebRequest::set_CacheProtocol(System.Net.Cache.RequestCacheProtocol)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebRequest_set_CacheProtocol_m708E1FF1630F00DF87309F698E837EA6E55428C4 (WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* __this, RequestCacheProtocol_t43C1AC170194874A0C0B0D3B8BE9EABFB613DF85* ___value0, const RuntimeMethod* method)
{
{
RequestCacheProtocol_t43C1AC170194874A0C0B0D3B8BE9EABFB613DF85* L_0 = ___value0;
__this->___m_CacheProtocol_7 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_CacheProtocol_7), (void*)L_0);
return;
}
}
// System.Net.IWebProxy System.Net.WebRequest::get_InternalDefaultWebProxy()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WebRequest_get_InternalDefaultWebProxy_m5FE1DF46DCB29A82C5AD3017F0D1BAD2A787A75C (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
bool V_1 = false;
DefaultProxySectionInternal_t660B515577A92AE03B159B75AC172E4E34466EC2* V_2 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var);
bool L_0 = ((WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_StaticFields*)il2cpp_codegen_static_fields_for(WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var))->___s_DefaultWebProxyInitialized_11;
il2cpp_codegen_memory_barrier();
if (L_0)
{
goto IL_004c;
}
}
{
il2cpp_codegen_runtime_class_init_inline(WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var);
RuntimeObject* L_1;
L_1 = WebRequest_get_InternalSyncObject_mCCA701B3B01048CC2F26150D9E84D25CD194DFCF(NULL);
V_0 = L_1;
V_1 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0042:
{// begin finally (depth: 1)
{
bool L_2 = V_1;
if (!L_2)
{
goto IL_004b;
}
}
{
RuntimeObject* L_3 = V_0;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_3, NULL);
}
IL_004b:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
RuntimeObject* L_4 = V_0;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_4, (&V_1), NULL);
il2cpp_codegen_runtime_class_init_inline(WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var);
bool L_5 = ((WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_StaticFields*)il2cpp_codegen_static_fields_for(WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var))->___s_DefaultWebProxyInitialized_11;
il2cpp_codegen_memory_barrier();
if (L_5)
{
goto IL_0040_1;
}
}
{
DefaultProxySectionInternal_t660B515577A92AE03B159B75AC172E4E34466EC2* L_6;
L_6 = DefaultProxySectionInternal_GetSection_mC347FAA709106553F94BA8097F9593383BCA22FC(NULL);
V_2 = L_6;
DefaultProxySectionInternal_t660B515577A92AE03B159B75AC172E4E34466EC2* L_7 = V_2;
if (!L_7)
{
goto IL_0038_1;
}
}
{
DefaultProxySectionInternal_t660B515577A92AE03B159B75AC172E4E34466EC2* L_8 = V_2;
NullCheck(L_8);
RuntimeObject* L_9;
L_9 = DefaultProxySectionInternal_get_WebProxy_mF4F15C1A7C6088706CA2834D70E8CD52086AFBDA_inline(L_8, NULL);
il2cpp_codegen_runtime_class_init_inline(WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var);
il2cpp_codegen_memory_barrier();
((WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_StaticFields*)il2cpp_codegen_static_fields_for(WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var))->___s_DefaultWebProxy_10 = L_9;
Il2CppCodeGenWriteBarrier((void**)(&((WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_StaticFields*)il2cpp_codegen_static_fields_for(WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var))->___s_DefaultWebProxy_10), (void*)L_9);
}
IL_0038_1:
{
il2cpp_codegen_runtime_class_init_inline(WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var);
il2cpp_codegen_memory_barrier();
((WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_StaticFields*)il2cpp_codegen_static_fields_for(WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var))->___s_DefaultWebProxyInitialized_11 = (bool)1;
}
IL_0040_1:
{
goto IL_004c;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_004c:
{
il2cpp_codegen_runtime_class_init_inline(WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var);
RuntimeObject* L_10 = ((WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_StaticFields*)il2cpp_codegen_static_fields_for(WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var))->___s_DefaultWebProxy_10;
il2cpp_codegen_memory_barrier();
return L_10;
}
}
// System.Void System.Net.WebRequest::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebRequest__cctor_mB67087F945455F2B1502CB55721CBF2ADB0A10F4 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DesignerWebRequestCreate_t75F62E4DEBF416E21EAF6FBB62E43ADB83A0753E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
Queue_t644DC21212BC432819522EDA395EB4562BE2CC47* L_0;
L_0 = TimerThread_CreateQueue_mEE7746808FCC711657A10D38DAC9FC01B93B68D8(((int32_t)100000), NULL);
((WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_StaticFields*)il2cpp_codegen_static_fields_for(WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var))->___s_DefaultTimerQueue_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_StaticFields*)il2cpp_codegen_static_fields_for(WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var))->___s_DefaultTimerQueue_3), (void*)L_0);
DesignerWebRequestCreate_t75F62E4DEBF416E21EAF6FBB62E43ADB83A0753E* L_1 = (DesignerWebRequestCreate_t75F62E4DEBF416E21EAF6FBB62E43ADB83A0753E*)il2cpp_codegen_object_new(DesignerWebRequestCreate_t75F62E4DEBF416E21EAF6FBB62E43ADB83A0753E_il2cpp_TypeInfo_var);
NullCheck(L_1);
DesignerWebRequestCreate__ctor_mBFB58FED978B03A3C53AE292C3855EDED4222C88(L_1, NULL);
((WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_StaticFields*)il2cpp_codegen_static_fields_for(WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var))->___webRequestCreate_9 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&((WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_StaticFields*)il2cpp_codegen_static_fields_for(WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var))->___webRequestCreate_9), (void*)L_1);
return;
}
}
// System.Threading.Tasks.Task`1<System.Net.WebResponse> System.Net.WebRequest::<GetResponseAsync>b__79_0()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t5E1291839AEFBDBE3699513D40515588EE167AB0* WebRequest_U3CGetResponseAsyncU3Eb__79_0_m635D73DB9E3CEEEF92D50FC5AA0A5D0CCEA73E69 (WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_tE048A673EF3350A89334B6C88EA7517D1EDF8FF3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_3_t37EC932F9834D7F9E1C44B6BC6C01F409AE93BA7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TaskFactory_1_FromAsync_m59E275F7DFF2D16C3BF4E79DFD862A2ADB4A55B2_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_1_get_Factory_m16AF14FEB63383FDA760799AF866A5241DF7BA76_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
TaskFactory_1_t1C878D0A5D747EAFF79E944B48ED5067568E4873* L_0;
L_0 = Task_1_get_Factory_m16AF14FEB63383FDA760799AF866A5241DF7BA76(Task_1_get_Factory_m16AF14FEB63383FDA760799AF866A5241DF7BA76_RuntimeMethod_var);
Func_3_t37EC932F9834D7F9E1C44B6BC6C01F409AE93BA7* L_1 = (Func_3_t37EC932F9834D7F9E1C44B6BC6C01F409AE93BA7*)il2cpp_codegen_object_new(Func_3_t37EC932F9834D7F9E1C44B6BC6C01F409AE93BA7_il2cpp_TypeInfo_var);
NullCheck(L_1);
Func_3__ctor_m324F8E477614BC2752604D3ECE61CD9A8FD3D0CA(L_1, __this, (intptr_t)((void*)GetVirtualMethodInfo(__this, 21)), NULL);
Func_2_tE048A673EF3350A89334B6C88EA7517D1EDF8FF3* L_2 = (Func_2_tE048A673EF3350A89334B6C88EA7517D1EDF8FF3*)il2cpp_codegen_object_new(Func_2_tE048A673EF3350A89334B6C88EA7517D1EDF8FF3_il2cpp_TypeInfo_var);
NullCheck(L_2);
Func_2__ctor_m94318EE271260331D61373FD793E51DFB7A1C4C0(L_2, __this, (intptr_t)((void*)GetVirtualMethodInfo(__this, 22)), NULL);
NullCheck(L_0);
Task_1_t5E1291839AEFBDBE3699513D40515588EE167AB0* L_3;
L_3 = TaskFactory_1_FromAsync_m59E275F7DFF2D16C3BF4E79DFD862A2ADB4A55B2(L_0, L_1, L_2, NULL, TaskFactory_1_FromAsync_m59E275F7DFF2D16C3BF4E79DFD862A2ADB4A55B2_RuntimeMethod_var);
return L_3;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.WebRequest System.Net.WebRequest/DesignerWebRequestCreate::Create(System.Uri)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* DesignerWebRequestCreate_Create_m759C6A157B3F3F6531844B2E2FA8018C1442AD28 (DesignerWebRequestCreate_t75F62E4DEBF416E21EAF6FBB62E43ADB83A0753E* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___uri0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_0 = ___uri0;
il2cpp_codegen_runtime_class_init_inline(WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B_il2cpp_TypeInfo_var);
WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* L_1;
L_1 = WebRequest_Create_mD11C7BB286D0C12A92911F717AC8D2CAF9027611(L_0, NULL);
return L_1;
}
}
// System.Void System.Net.WebRequest/DesignerWebRequestCreate::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DesignerWebRequestCreate__ctor_mBFB58FED978B03A3C53AE292C3855EDED4222C88 (DesignerWebRequestCreate_t75F62E4DEBF416E21EAF6FBB62E43ADB83A0753E* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Net.WebRequest/<>c__DisplayClass79_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass79_0__ctor_m98DEB00C10B19311D74B7AA965FD379F91FA94B1 (U3CU3Ec__DisplayClass79_0_tA7D1A51487A16A545400DB55AE8D336EE26007F1* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Threading.Tasks.Task`1<System.Net.WebResponse> System.Net.WebRequest/<>c__DisplayClass79_0::<GetResponseAsync>b__1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t5E1291839AEFBDBE3699513D40515588EE167AB0* U3CU3Ec__DisplayClass79_0_U3CGetResponseAsyncU3Eb__1_mD03363C04D913541A4A1E21614CE2D60C92E2AA0 (U3CU3Ec__DisplayClass79_0_tA7D1A51487A16A545400DB55AE8D336EE26007F1* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_tE048A673EF3350A89334B6C88EA7517D1EDF8FF3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_3_t37EC932F9834D7F9E1C44B6BC6C01F409AE93BA7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TaskFactory_1_FromAsync_m59E275F7DFF2D16C3BF4E79DFD862A2ADB4A55B2_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_1_get_Factory_m16AF14FEB63383FDA760799AF866A5241DF7BA76_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
WindowsIdentity_t18EC60B678C8A1AA9A67A89BC3BCFA1CC1E2C459* V_0 = NULL;
WindowsImpersonationContext_t6F4CE98646ADFCC0D04B0027FB1CC5D48ABA116F* V_1 = NULL;
Task_1_t5E1291839AEFBDBE3699513D40515588EE167AB0* V_2 = NULL;
{
WindowsIdentity_t18EC60B678C8A1AA9A67A89BC3BCFA1CC1E2C459* L_0 = __this->___currentUser_0;
V_0 = L_0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_004f:
{// begin finally (depth: 1)
{
WindowsIdentity_t18EC60B678C8A1AA9A67A89BC3BCFA1CC1E2C459* L_1 = V_0;
if (!L_1)
{
goto IL_0058;
}
}
{
WindowsIdentity_t18EC60B678C8A1AA9A67A89BC3BCFA1CC1E2C459* L_2 = V_0;
NullCheck(L_2);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_2);
}
IL_0058:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
WindowsIdentity_t18EC60B678C8A1AA9A67A89BC3BCFA1CC1E2C459* L_3 = __this->___currentUser_0;
NullCheck(L_3);
WindowsImpersonationContext_t6F4CE98646ADFCC0D04B0027FB1CC5D48ABA116F* L_4;
L_4 = VirtualFuncInvoker0< WindowsImpersonationContext_t6F4CE98646ADFCC0D04B0027FB1CC5D48ABA116F* >::Invoke(16 /* System.Security.Principal.WindowsImpersonationContext System.Security.Principal.WindowsIdentity::Impersonate() */, L_3);
V_1 = L_4;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0045_1:
{// begin finally (depth: 2)
{
WindowsImpersonationContext_t6F4CE98646ADFCC0D04B0027FB1CC5D48ABA116F* L_5 = V_1;
if (!L_5)
{
goto IL_004e_1;
}
}
{
WindowsImpersonationContext_t6F4CE98646ADFCC0D04B0027FB1CC5D48ABA116F* L_6 = V_1;
NullCheck(L_6);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_6);
}
IL_004e_1:
{
return;
}
}// end finally (depth: 2)
});
try
{// begin try (depth: 2)
TaskFactory_1_t1C878D0A5D747EAFF79E944B48ED5067568E4873* L_7;
L_7 = Task_1_get_Factory_m16AF14FEB63383FDA760799AF866A5241DF7BA76(Task_1_get_Factory_m16AF14FEB63383FDA760799AF866A5241DF7BA76_RuntimeMethod_var);
WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* L_8 = __this->___U3CU3E4__this_1;
WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* L_9 = L_8;
Func_3_t37EC932F9834D7F9E1C44B6BC6C01F409AE93BA7* L_10 = (Func_3_t37EC932F9834D7F9E1C44B6BC6C01F409AE93BA7*)il2cpp_codegen_object_new(Func_3_t37EC932F9834D7F9E1C44B6BC6C01F409AE93BA7_il2cpp_TypeInfo_var);
NullCheck(L_10);
Func_3__ctor_m324F8E477614BC2752604D3ECE61CD9A8FD3D0CA(L_10, L_9, (intptr_t)((void*)GetVirtualMethodInfo(L_9, 21)), NULL);
WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* L_11 = __this->___U3CU3E4__this_1;
WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* L_12 = L_11;
Func_2_tE048A673EF3350A89334B6C88EA7517D1EDF8FF3* L_13 = (Func_2_tE048A673EF3350A89334B6C88EA7517D1EDF8FF3*)il2cpp_codegen_object_new(Func_2_tE048A673EF3350A89334B6C88EA7517D1EDF8FF3_il2cpp_TypeInfo_var);
NullCheck(L_13);
Func_2__ctor_m94318EE271260331D61373FD793E51DFB7A1C4C0(L_13, L_12, (intptr_t)((void*)GetVirtualMethodInfo(L_12, 22)), NULL);
NullCheck(L_7);
Task_1_t5E1291839AEFBDBE3699513D40515588EE167AB0* L_14;
L_14 = TaskFactory_1_FromAsync_m59E275F7DFF2D16C3BF4E79DFD862A2ADB4A55B2(L_7, L_10, L_13, NULL, TaskFactory_1_FromAsync_m59E275F7DFF2D16C3BF4E79DFD862A2ADB4A55B2_RuntimeMethod_var);
V_2 = L_14;
goto IL_0059;
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0059:
{
Task_1_t5E1291839AEFBDBE3699513D40515588EE167AB0* L_15 = V_2;
return L_15;
}
}
#ifdef __clang__
#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.WebResponse::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebResponse__ctor_mC11AFFC628F1E49E53431A3129ADC7CEA012306B (WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* __this, const RuntimeMethod* method)
{
{
MarshalByRefObject__ctor_mCBAD191F9BB35587528256781970FDFEFCDBE538(__this, NULL);
return;
}
}
// System.Void System.Net.WebResponse::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebResponse__ctor_m845789E13F69DA82F94377A29D46186F2A43ADD1 (WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___serializationInfo0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___streamingContext1, const RuntimeMethod* method)
{
{
MarshalByRefObject__ctor_mCBAD191F9BB35587528256781970FDFEFCDBE538(__this, NULL);
return;
}
}
// System.Void System.Net.WebResponse::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebResponse_System_Runtime_Serialization_ISerializable_GetObjectData_m7251108700FDB16B091C135DC5E76053623F4FE6 (WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___serializationInfo0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___streamingContext1, const RuntimeMethod* method)
{
{
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___serializationInfo0;
StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___streamingContext1;
VirtualActionInvoker2< SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37*, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 >::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.WebResponse::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebResponse_GetObjectData_mDE55FE69900B3F6311ED36EC53D1F775E2A634CB (WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___serializationInfo0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___streamingContext1, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Net.WebResponse::Close()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebResponse_Close_mDB1366AAB8237FC3D25C47B45FC7FA18055D7ADD (WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Net.WebResponse::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebResponse_Dispose_mB68E6769F296DE95FF4BAF9A80AA9309EBB4AB4E (WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
VirtualActionInvoker1< bool >::Invoke(10 /* System.Void System.Net.WebResponse::Dispose(System.Boolean) */, __this, (bool)1);
il2cpp_codegen_runtime_class_init_inline(GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var);
GC_SuppressFinalize_m3352E2F2119EB46913B51B7AAE2F217C63C35F2A(__this, NULL);
return;
}
}
// System.Void System.Net.WebResponse::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebResponse_Dispose_mAACC90307104A5FBE9D417E8E40569C2501D5568 (WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* __this, bool ___disposing0, const RuntimeMethod* method)
{
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
bool L_0 = ___disposing0;
if (L_0)
{
goto IL_0004;
}
}
{
return;
}
IL_0004:
{
}
try
{// begin try (depth: 1)
VirtualActionInvoker0::Invoke(9 /* System.Void System.Net.WebResponse::Close() */, __this);
goto IL_0010;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_000d;
}
throw e;
}
CATCH_000d:
{// begin catch(System.Object)
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0010;
}// end catch (depth: 1)
IL_0010:
{
return;
}
}
// System.Boolean System.Net.WebResponse::get_IsFromCache()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WebResponse_get_IsFromCache_m75C60BDD5B4879863A5A93FBBB530F1DB5D0CF6A (WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___m_IsFromCache_1;
return L_0;
}
}
// System.IO.Stream System.Net.WebResponse::GetResponseStream()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* WebResponse_GetResponseStream_m90039E34DC39DA2764E4A465C47D7C8CFD553F88 (WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* __this, const RuntimeMethod* method)
{
{
NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_0;
L_0 = ExceptionHelper_get_MethodNotImplementedException_mF8678EE4622F1BBEEC6CDD54293E4D1B40A6D251(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebResponse_GetResponseStream_m90039E34DC39DA2764E4A465C47D7C8CFD553F88_RuntimeMethod_var)));
}
}
// System.Uri System.Net.WebResponse::get_ResponseUri()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* WebResponse_get_ResponseUri_mCCB7A9F1A892AA99BA86A6913ADDB511C26D403C (WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* __this, const RuntimeMethod* method)
{
{
NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_0;
L_0 = ExceptionHelper_get_PropertyNotImplementedException_m5029CA867B083BAEE8D3D4577B1F571FEDDDE590(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebResponse_get_ResponseUri_mCCB7A9F1A892AA99BA86A6913ADDB511C26D403C_RuntimeMethod_var)));
}
}
// System.Net.WebHeaderCollection System.Net.WebResponse::get_Headers()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* WebResponse_get_Headers_mEC440184E979C51FD1111A6F1A65D956C20DBFED (WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* __this, const RuntimeMethod* method)
{
{
NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_0;
L_0 = ExceptionHelper_get_PropertyNotImplementedException_m5029CA867B083BAEE8D3D4577B1F571FEDDDE590(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebResponse_get_Headers_mEC440184E979C51FD1111A6F1A65D956C20DBFED_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.Net.BufferOffsetSize::.ctor(System.Byte[],System.Int32,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BufferOffsetSize__ctor_mF73D1F45CFD84AD9AB753B1F923A762F00806BE5 (BufferOffsetSize_t46A7671E4C06281BB2D4C4AC98A6263715BDAC71* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___offset1, int32_t ___size2, bool ___copyBuffer3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
bool L_0 = ___copyBuffer3;
if (!L_0)
{
goto IL_0021;
}
}
{
int32_t L_1 = ___size2;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)L_1);
V_0 = L_2;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = ___buffer0;
int32_t L_4 = ___offset1;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = V_0;
int32_t L_6 = ___size2;
Buffer_BlockCopy_mD8CF7EC96ADA7A542CCA3F3C73510624E10197A9((RuntimeArray*)L_3, L_4, (RuntimeArray*)L_5, 0, L_6, NULL);
___offset1 = 0;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7 = V_0;
___buffer0 = L_7;
}
IL_0021:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = ___buffer0;
__this->___Buffer_0 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->___Buffer_0), (void*)L_8);
int32_t L_9 = ___offset1;
__this->___Offset_1 = L_9;
int32_t L_10 = ___size2;
__this->___Size_2 = L_10;
return;
}
}
// System.Void System.Net.BufferOffsetSize::.ctor(System.Byte[],System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BufferOffsetSize__ctor_m2C19FA733634E3D23AD53D85EA0B94E876CF6861 (BufferOffsetSize_t46A7671E4C06281BB2D4C4AC98A6263715BDAC71* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, bool ___copyBuffer1, const RuntimeMethod* method)
{
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___buffer0;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___buffer0;
NullCheck(L_1);
bool L_2 = ___copyBuffer1;
BufferOffsetSize__ctor_mF73D1F45CFD84AD9AB753B1F923A762F00806BE5(__this, L_0, 0, ((int32_t)(((RuntimeArray*)L_1)->max_length)), L_2, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* HeaderParser_Invoke_mCAC8132BC020AD64B0130E50BD0379A312245C8E_Multicast(HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* __this, String_t* ___value0, const RuntimeMethod* method)
{
il2cpp_array_size_t length = __this->___delegates_13->max_length;
Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates_13->GetAddressAtUnchecked(0));
typedef StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* (*FunctionPointerType) (HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* __this, String_t* ___value0, const RuntimeMethod* method);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* retVal = NULL;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* currentDelegate = reinterpret_cast<HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67*>(delegatesToInvoke[i]);
retVal = ((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___value0, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
return retVal;
}
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* HeaderParser_Invoke_mCAC8132BC020AD64B0130E50BD0379A312245C8E_Open(HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* __this, String_t* ___value0, const RuntimeMethod* method)
{
typedef StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* (*FunctionPointerType) (String_t*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(___value0, method);
}
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* HeaderParser_Invoke_mCAC8132BC020AD64B0130E50BD0379A312245C8E_Closed(HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* __this, String_t* ___value0, const RuntimeMethod* method)
{
typedef StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* (*FunctionPointerType) (RuntimeObject*, String_t*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___value0, method);
}
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* HeaderParser_Invoke_mCAC8132BC020AD64B0130E50BD0379A312245C8E_OpenStaticInvoker(HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* __this, String_t* ___value0, const RuntimeMethod* method)
{
return InvokerFuncInvoker1< StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*, String_t* >::Invoke(__this->___method_ptr_0, method, NULL, ___value0);
}
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* HeaderParser_Invoke_mCAC8132BC020AD64B0130E50BD0379A312245C8E_ClosedStaticInvoker(HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* __this, String_t* ___value0, const RuntimeMethod* method)
{
return InvokerFuncInvoker2< StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*, RuntimeObject*, String_t* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___value0);
}
IL2CPP_EXTERN_C StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* DelegatePInvokeWrapper_HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67 (HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* __this, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
typedef char** (DEFAULT_CALL *PInvokeFunc)(char*);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// 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_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* _returnValue_unmarshaled = NULL;
if (returnValue != NULL)
{
if (_returnValue_unmarshaled == NULL)
{
_returnValue_unmarshaled = reinterpret_cast<StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*>((StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_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<il2cpp_array_size_t>(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_m3E4BFAA908282AFA1EB023C1B84A03C222A68AAD (HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->___method_ptr_0 = il2cpp_codegen_get_virtual_call_method_pointer((RuntimeMethod*)___method1);
__this->___method_3 = ___method1;
__this->___m_target_2 = ___object0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target_2), (void*)___object0);
int methodCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___method1);
if (MethodIsStatic((RuntimeMethod*)___method1))
{
bool isOpen = methodCount == 1;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&HeaderParser_Invoke_mCAC8132BC020AD64B0130E50BD0379A312245C8E_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&HeaderParser_Invoke_mCAC8132BC020AD64B0130E50BD0379A312245C8E_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&HeaderParser_Invoke_mCAC8132BC020AD64B0130E50BD0379A312245C8E_Open;
else
__this->___invoke_impl_1 = (intptr_t)&HeaderParser_Invoke_mCAC8132BC020AD64B0130E50BD0379A312245C8E_Closed;
}
else
{
bool isOpen = methodCount == 0;
if (isOpen)
{
__this->___invoke_impl_1 = (intptr_t)&HeaderParser_Invoke_mCAC8132BC020AD64B0130E50BD0379A312245C8E_Open;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&HeaderParser_Invoke_mCAC8132BC020AD64B0130E50BD0379A312245C8E_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&HeaderParser_Invoke_mCAC8132BC020AD64B0130E50BD0379A312245C8E_Multicast;
}
// System.String[] System.Net.HeaderParser::Invoke(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* HeaderParser_Invoke_mCAC8132BC020AD64B0130E50BD0379A312245C8E (HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* __this, String_t* ___value0, const RuntimeMethod* method)
{
typedef StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* (*FunctionPointerType) (HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* __this, String_t* ___value0, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___value0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Net.HeaderInfo::.ctor(System.String,System.Boolean,System.Boolean,System.Boolean,System.Net.HeaderParser)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8 (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* __this, String_t* ___name0, bool ___requestRestricted1, bool ___responseRestricted2, bool ___multi3, HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* ___p4, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
String_t* L_0 = ___name0;
__this->___HeaderName_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___HeaderName_3), (void*)L_0);
bool L_1 = ___requestRestricted1;
__this->___IsRequestRestricted_0 = L_1;
bool L_2 = ___responseRestricted2;
__this->___IsResponseRestricted_1 = L_2;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_3 = ___p4;
__this->___Parser_2 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___Parser_2), (void*)L_3);
bool L_4 = ___multi3;
__this->___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_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* HeaderInfoTable_ParseSingleValue_m217B3A467422A5B17876254E9984F2C30E178F9A (String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_1 = L_0;
String_t* L_2 = ___value0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_2);
return L_1;
}
}
// System.String[] System.Net.HeaderInfoTable::ParseMultiValue(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* HeaderInfoTable_ParseMultiValue_mCACE161A48EB4BC9DD4519BF3EC02CC83DD6C85C (String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringCollection_t3C8ACD597B2EB7592031E5240BDDD4102223BDBE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
StringCollection_t3C8ACD597B2EB7592031E5240BDDD4102223BDBE* V_0 = NULL;
bool V_1 = false;
int32_t V_2 = 0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_3 = NULL;
String_t* V_4 = NULL;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_5 = NULL;
int32_t V_6 = 0;
{
StringCollection_t3C8ACD597B2EB7592031E5240BDDD4102223BDBE* L_0 = (StringCollection_t3C8ACD597B2EB7592031E5240BDDD4102223BDBE*)il2cpp_codegen_object_new(StringCollection_t3C8ACD597B2EB7592031E5240BDDD4102223BDBE_il2cpp_TypeInfo_var);
NullCheck(L_0);
StringCollection__ctor_m3EF93D74FEC69C5A0CD7A502539B2CEDD8D02954(L_0, 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_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_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_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_4, L_5, 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_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_8, L_9, 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_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_12 = V_3;
int32_t L_13 = V_2;
String_t* L_14;
L_14 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_12, 0, L_13, NULL);
V_4 = L_14;
StringCollection_t3C8ACD597B2EB7592031E5240BDDD4102223BDBE* L_15 = V_0;
String_t* L_16 = V_4;
NullCheck(L_16);
String_t* L_17;
L_17 = String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5(L_16, NULL);
NullCheck(L_15);
int32_t L_18;
L_18 = StringCollection_Add_m03BBFAA1D11499DA68474A73F5DB55460F0D6DAF(L_15, L_17, NULL);
V_2 = 0;
goto IL_0068;
}
IL_0059:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_19 = V_3;
int32_t L_20 = V_2;
int32_t L_21 = L_20;
V_2 = ((int32_t)il2cpp_codegen_add(L_21, 1));
String_t* L_22 = ___value0;
int32_t L_23 = V_6;
NullCheck(L_22);
Il2CppChar L_24;
L_24 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_22, L_23, NULL);
NullCheck(L_19);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(L_21), (Il2CppChar)L_24);
}
IL_0068:
{
int32_t L_25 = V_6;
V_6 = ((int32_t)il2cpp_codegen_add(L_25, 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_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_27, 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_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_30 = V_3;
int32_t L_31 = V_2;
String_t* L_32;
L_32 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_30, 0, L_31, NULL);
V_4 = L_32;
StringCollection_t3C8ACD597B2EB7592031E5240BDDD4102223BDBE* L_33 = V_0;
String_t* L_34 = V_4;
NullCheck(L_34);
String_t* L_35;
L_35 = String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5(L_34, NULL);
NullCheck(L_33);
int32_t L_36;
L_36 = StringCollection_Add_m03BBFAA1D11499DA68474A73F5DB55460F0D6DAF(L_33, L_35, NULL);
}
IL_0093:
{
StringCollection_t3C8ACD597B2EB7592031E5240BDDD4102223BDBE* L_37 = V_0;
NullCheck(L_37);
int32_t L_38;
L_38 = StringCollection_get_Count_mC6D18D20EEE559A67C72BD37ECA9C0FB93283F3F(L_37, NULL);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_39 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)L_38);
V_5 = L_39;
StringCollection_t3C8ACD597B2EB7592031E5240BDDD4102223BDBE* L_40 = V_0;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_41 = V_5;
NullCheck(L_40);
StringCollection_CopyTo_mCD7A68178A8F87AC0628B2E92CE466A27512CB05(L_40, L_41, 0, NULL);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_42 = V_5;
return L_42;
}
}
// System.Void System.Net.HeaderInfoTable::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HeaderInfoTable__cctor_mD8B50AECD3CECAAC7E93610FAE44324679088EDC (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HeaderInfoTable_ParseMultiValue_mCACE161A48EB4BC9DD4519BF3EC02CC83DD6C85C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HeaderInfoTable_ParseSingleValue_m217B3A467422A5B17876254E9984F2C30E178F9A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67_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_tD997F8A42260B297D39A543A92124AD00F04B6DF* 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))->___Empty_6;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_1 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___SingleParser_2;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_2 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_2);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_2, L_0, (bool)0, (bool)0, (bool)0, L_1, NULL);
((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___UnknownHeaderInfo_1 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___UnknownHeaderInfo_1), (void*)L_2);
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_3 = (HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67*)il2cpp_codegen_object_new(HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67_il2cpp_TypeInfo_var);
NullCheck(L_3);
HeaderParser__ctor_m3E4BFAA908282AFA1EB023C1B84A03C222A68AAD(L_3, NULL, (intptr_t)((void*)HeaderInfoTable_ParseSingleValue_m217B3A467422A5B17876254E9984F2C30E178F9A_RuntimeMethod_var), NULL);
((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___SingleParser_2 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___SingleParser_2), (void*)L_3);
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_4 = (HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67*)il2cpp_codegen_object_new(HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67_il2cpp_TypeInfo_var);
NullCheck(L_4);
HeaderParser__ctor_m3E4BFAA908282AFA1EB023C1B84A03C222A68AAD(L_4, NULL, (intptr_t)((void*)HeaderInfoTable_ParseMultiValue_mCACE161A48EB4BC9DD4519BF3EC02CC83DD6C85C_RuntimeMethod_var), NULL);
((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___MultiParser_3 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___MultiParser_3), (void*)L_4);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_5 = (HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF*)(HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF*)SZArrayNew(HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF_il2cpp_TypeInfo_var, (uint32_t)((int32_t)52));
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_6 = L_5;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_7 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___SingleParser_2;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_8 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_8);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_8, _stringLiteral6996DC0CC92C7C284749109C7F02D201312B6A5C, (bool)0, (bool)0, (bool)0, L_7, NULL);
NullCheck(L_6);
ArrayElementTypeCheck (L_6, L_8);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(0), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_8);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_9 = L_6;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_10 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___MultiParser_3;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_11 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_11);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_11, _stringLiteral47E7DF78FEB33C4D463D475ACA6A5FCA4DE8ACF8, (bool)0, (bool)0, (bool)1, L_10, NULL);
NullCheck(L_9);
ArrayElementTypeCheck (L_9, L_11);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(1), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_11);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_12 = L_9;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_13 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___MultiParser_3;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_14 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_14);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_14, _stringLiteral16D46E00A879AD1C9053ED90B4B148D721A45E92, (bool)1, (bool)0, (bool)1, L_13, NULL);
NullCheck(L_12);
ArrayElementTypeCheck (L_12, L_14);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(2), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_14);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_15 = L_12;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_16 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___MultiParser_3;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_17 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_17);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_17, _stringLiteral9D5A3AE3D2B0B5E5AF5AB489000D9B88FA11E907, (bool)0, (bool)0, (bool)1, L_16, NULL);
NullCheck(L_15);
ArrayElementTypeCheck (L_15, L_17);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(3), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_17);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_18 = L_15;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_19 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___MultiParser_3;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_20 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_20);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_20, _stringLiteralABDF52D360297C3F8D7E4851B2C8262AF0F3CE00, (bool)0, (bool)0, (bool)1, L_19, NULL);
NullCheck(L_18);
ArrayElementTypeCheck (L_18, L_20);
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(4), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_20);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_21 = L_18;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_22 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___MultiParser_3;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_23 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_23);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_23, _stringLiteral1F1F0198EC371523C2BEEAB18E73243B7B5F5D0D, (bool)0, (bool)0, (bool)1, L_22, NULL);
NullCheck(L_21);
ArrayElementTypeCheck (L_21, L_23);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(5), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_23);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_24 = L_21;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_25 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___MultiParser_3;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_26 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_26);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_26, _stringLiteral0E5584AFF0328C3E9B727CFB3887E9E710B0F53D, (bool)0, (bool)0, (bool)1, L_25, NULL);
NullCheck(L_24);
ArrayElementTypeCheck (L_24, L_26);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(6), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_26);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_27 = L_24;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_28 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___MultiParser_3;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_29 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_29);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_29, _stringLiteral015C9226A90A65B547DB1B59894F3908A8F2CC06, (bool)0, (bool)0, (bool)1, L_28, NULL);
NullCheck(L_27);
ArrayElementTypeCheck (L_27, L_29);
(L_27)->SetAt(static_cast<il2cpp_array_size_t>(7), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_29);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_30 = L_27;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_31 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___MultiParser_3;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_32 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_32);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_32, _stringLiteral67A54AB78AD61DDEB268617E3EE621D1193804DC, (bool)0, (bool)0, (bool)1, L_31, NULL);
NullCheck(L_30);
ArrayElementTypeCheck (L_30, L_32);
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(8), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_32);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_33 = L_30;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_34 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___MultiParser_3;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_35 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_35);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_35, _stringLiteralBBC4BD37A426D68F16FC03A3F4AAC387168995BC, (bool)1, (bool)0, (bool)1, L_34, NULL);
NullCheck(L_33);
ArrayElementTypeCheck (L_33, L_35);
(L_33)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)9)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_35);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_36 = L_33;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_37 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___SingleParser_2;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_38 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_38);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_38, _stringLiteral4DD4C5922A070C5C0CE53FC4868A2D61BF64A7C3, (bool)0, (bool)0, (bool)0, L_37, NULL);
NullCheck(L_36);
ArrayElementTypeCheck (L_36, L_38);
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)10)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_38);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_39 = L_36;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_40 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___SingleParser_2;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_41 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_41);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_41, _stringLiteral5B58EBE31E594BF8FA4BEA3CD075473149322B18, (bool)1, (bool)0, (bool)0, L_40, NULL);
NullCheck(L_39);
ArrayElementTypeCheck (L_39, L_41);
(L_39)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)11)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_41);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_42 = L_39;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_43 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___MultiParser_3;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_44 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_44);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_44, _stringLiteral69246FD8ECCD71895CF44BE2EB6A80E686C5A018, (bool)0, (bool)0, (bool)1, L_43, NULL);
NullCheck(L_42);
ArrayElementTypeCheck (L_42, L_44);
(L_42)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)12)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_44);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_45 = L_42;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_46 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___SingleParser_2;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_47 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_47);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_47, _stringLiteralFF1B24927A3EECD0984D30EA640A9B0CBAA6729C, (bool)0, (bool)0, (bool)0, L_46, NULL);
NullCheck(L_45);
ArrayElementTypeCheck (L_45, L_47);
(L_45)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)13)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_47);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_48 = L_45;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_49 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___SingleParser_2;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_50 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_50);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_50, _stringLiteral86E7C0314F9CA521BDA0F361B0D90037E62E63C2, (bool)1, (bool)1, (bool)0, L_49, NULL);
NullCheck(L_48);
ArrayElementTypeCheck (L_48, L_50);
(L_48)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)14)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_50);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_51 = L_48;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_52 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___MultiParser_3;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_53 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_53);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_53, _stringLiteral3EBDBD8FCA12AE01917E5179BB979BD9077F8144, (bool)0, (bool)0, (bool)1, L_52, NULL);
NullCheck(L_51);
ArrayElementTypeCheck (L_51, L_53);
(L_51)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)15)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_53);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_54 = L_51;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_55 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___MultiParser_3;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_56 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_56);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_56, _stringLiteralCC5A4102A5DDF34A7044AFF9259491C106ED8FB6, (bool)0, (bool)0, (bool)1, L_55, NULL);
NullCheck(L_54);
ArrayElementTypeCheck (L_54, L_56);
(L_54)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)16)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_56);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_57 = L_54;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_58 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___SingleParser_2;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_59 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_59);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_59, _stringLiteral935884DFDF8F8A8A6D67558F0B4C92779D175C75, (bool)0, (bool)0, (bool)0, L_58, NULL);
NullCheck(L_57);
ArrayElementTypeCheck (L_57, L_59);
(L_57)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)17)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_59);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_60 = L_57;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_61 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___SingleParser_2;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_62 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_62);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_62, _stringLiteral39CB21871F9F9FE5AE18BA5E81ED4EC6DADB8E03, (bool)1, (bool)0, (bool)0, L_61, NULL);
NullCheck(L_60);
ArrayElementTypeCheck (L_60, L_62);
(L_60)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)18)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_62);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_63 = L_60;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_64 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___SingleParser_2;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_65 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_65);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_65, _stringLiteral3015B2A3D39F343DF5439AC8F9FFEFD31A155603, (bool)0, (bool)0, (bool)0, L_64, NULL);
NullCheck(L_63);
ArrayElementTypeCheck (L_63, L_65);
(L_63)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)19)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_65);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_66 = L_63;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_67 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___MultiParser_3;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_68 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_68);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_68, _stringLiteralD83A084C77919D323023FA38BD9EC97511C0C3F1, (bool)1, (bool)0, (bool)1, L_67, NULL);
NullCheck(L_66);
ArrayElementTypeCheck (L_66, L_68);
(L_66)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)20)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_68);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_69 = L_66;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_70 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___SingleParser_2;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_71 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_71);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_71, _stringLiteral7C5B2C0D17D684D4380087821D68BB021A77AA5D, (bool)0, (bool)0, (bool)0, L_70, NULL);
NullCheck(L_69);
ArrayElementTypeCheck (L_69, L_71);
(L_69)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)21)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_71);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_72 = L_69;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_73 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___SingleParser_2;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_74 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_74);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_74, _stringLiteral783C5B36660265F9D49078CA35348CD0ABDD49DF, (bool)0, (bool)0, (bool)0, L_73, NULL);
NullCheck(L_72);
ArrayElementTypeCheck (L_72, L_74);
(L_72)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)22)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_74);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_75 = L_72;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_76 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___SingleParser_2;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_77 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_77);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_77, _stringLiteral0242F31341D314854DB5EA5749448625B0A0AAE3, (bool)1, (bool)0, (bool)0, L_76, NULL);
NullCheck(L_75);
ArrayElementTypeCheck (L_75, L_77);
(L_75)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)23)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_77);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_78 = L_75;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_79 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___MultiParser_3;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_80 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_80);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_80, _stringLiteral61896E01350C3D7139AB7C79A29A3A8ED072B0C0, (bool)0, (bool)0, (bool)1, L_79, NULL);
NullCheck(L_78);
ArrayElementTypeCheck (L_78, L_80);
(L_78)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)24)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_80);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_81 = L_78;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_82 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___SingleParser_2;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_83 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_83);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_83, _stringLiteral5C648DB5BA0DE7A010730BEEDB7FEADB7EB4A556, (bool)0, (bool)0, (bool)0, L_82, NULL);
NullCheck(L_81);
ArrayElementTypeCheck (L_81, L_83);
(L_81)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)25)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_83);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_84 = L_81;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_85 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___MultiParser_3;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_86 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_86);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_86, _stringLiteralE31FBB002AD5481E70CB59BB178B49C5B9330F0E, (bool)0, (bool)0, (bool)1, L_85, NULL);
NullCheck(L_84);
ArrayElementTypeCheck (L_84, L_86);
(L_84)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)26)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_86);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_87 = L_84;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_88 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___SingleParser_2;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_89 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_89);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_89, _stringLiteralAFECF3A5E478A812AD9761D0C14980023E407962, (bool)1, (bool)0, (bool)0, L_88, NULL);
NullCheck(L_87);
ArrayElementTypeCheck (L_87, L_89);
(L_87)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)27)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_89);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_90 = L_87;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_91 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___SingleParser_2;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_92 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_92);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_92, _stringLiteralC6370F4D10E7342974C38CE91A5C8121AA774FD8, (bool)0, (bool)0, (bool)0, L_91, NULL);
NullCheck(L_90);
ArrayElementTypeCheck (L_90, L_92);
(L_90)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)28)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_92);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_93 = L_90;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_94 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___SingleParser_2;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_95 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_95);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_95, _stringLiteral4BD4A20D743286D24CF77C38E693ECBCE8CD3A7E, (bool)0, (bool)1, (bool)0, L_94, NULL);
NullCheck(L_93);
ArrayElementTypeCheck (L_93, L_95);
(L_93)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)29)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_95);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_96 = L_93;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_97 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___SingleParser_2;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_98 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_98);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_98, _stringLiteral0DD32B18A388C5F1A6BAFD3629759260C61F767C, (bool)0, (bool)0, (bool)0, L_97, NULL);
NullCheck(L_96);
ArrayElementTypeCheck (L_96, L_98);
(L_96)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)30)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_98);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_99 = L_96;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_100 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___SingleParser_2;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_101 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_101);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_101, _stringLiteral8D28F1F930CE88A866A5AFD45B7587A776D2A2E5, (bool)0, (bool)0, (bool)0, L_100, NULL);
NullCheck(L_99);
ArrayElementTypeCheck (L_99, L_101);
(L_99)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)31)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_101);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_102 = L_99;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_103 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___SingleParser_2;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_104 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_104);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_104, _stringLiteral3D98372962A0D30238C43F12D007AFE39E995B24, (bool)0, (bool)0, (bool)0, L_103, NULL);
NullCheck(L_102);
ArrayElementTypeCheck (L_102, L_104);
(L_102)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)32)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_104);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_105 = L_102;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_106 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___MultiParser_3;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_107 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_107);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_107, _stringLiteral1C0680A8F698A8F35416CE75A2356C661641B7D9, (bool)0, (bool)0, (bool)1, L_106, NULL);
NullCheck(L_105);
ArrayElementTypeCheck (L_105, L_107);
(L_105)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)33)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_107);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_108 = L_105;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_109 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___MultiParser_3;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_110 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_110);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_110, _stringLiteralCC624D1FAF7A8A629CE51F4FE3FFB1FBA27EDF86, (bool)0, (bool)0, (bool)1, L_109, NULL);
NullCheck(L_108);
ArrayElementTypeCheck (L_108, L_110);
(L_108)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)34)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_110);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_111 = L_108;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_112 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___MultiParser_3;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_113 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_113);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_113, _stringLiteralBB1692DA8ED7544A3193330A7D73D82D06F61206, (bool)0, (bool)0, (bool)1, L_112, NULL);
NullCheck(L_111);
ArrayElementTypeCheck (L_111, L_113);
(L_111)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)35)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_113);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_114 = L_111;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_115 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___MultiParser_3;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_116 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_116);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_116, _stringLiteralF0ACB78DD0CBEFD7DD81D25C5219DDB4067ECBD2, (bool)1, (bool)0, (bool)1, L_115, NULL);
NullCheck(L_114);
ArrayElementTypeCheck (L_114, L_116);
(L_114)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)36)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_116);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_117 = L_114;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_118 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___MultiParser_3;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_119 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_119);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_119, _stringLiteralF4C926E25326963C2B7FEF2E308523C33CF6D9F0, (bool)1, (bool)0, (bool)1, L_118, NULL);
NullCheck(L_117);
ArrayElementTypeCheck (L_117, L_119);
(L_117)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)37)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_119);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_120 = L_117;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_121 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___SingleParser_2;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_122 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_122);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_122, _stringLiteral1488F649920198F59A3B53EA7C81503935DEF05E, (bool)1, (bool)0, (bool)0, L_121, NULL);
NullCheck(L_120);
ArrayElementTypeCheck (L_120, L_122);
(L_120)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)38)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_122);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_123 = L_120;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_124 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___SingleParser_2;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_125 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_125);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_125, _stringLiteral0BB9AAEC2AAAB32BFE978A4C45400CAF08F6749C, (bool)0, (bool)0, (bool)0, L_124, NULL);
NullCheck(L_123);
ArrayElementTypeCheck (L_123, L_125);
(L_123)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)39)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_125);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_126 = L_123;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_127 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___SingleParser_2;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_128 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_128);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_128, _stringLiteral0D0D0C17BC59054E43F2DF1F9E9184032FBFBF01, (bool)0, (bool)0, (bool)0, L_127, NULL);
NullCheck(L_126);
ArrayElementTypeCheck (L_126, L_128);
(L_126)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)40)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_128);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_129 = L_126;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_130 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___MultiParser_3;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_131 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_131);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_131, _stringLiteral5C5EE883BE58477D29789770C77CED0740EA2109, (bool)0, (bool)0, (bool)1, L_130, NULL);
NullCheck(L_129);
ArrayElementTypeCheck (L_129, L_131);
(L_129)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)41)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_131);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_132 = L_129;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_133 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___MultiParser_3;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_134 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_134);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_134, _stringLiteralE8258FE4B53775D781FF54E8010D50E54F753759, (bool)0, (bool)0, (bool)1, L_133, NULL);
NullCheck(L_132);
ArrayElementTypeCheck (L_132, L_134);
(L_132)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)42)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_134);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_135 = L_132;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_136 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___MultiParser_3;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_137 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_137);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_137, _stringLiteral56B55F1AE7D34548BDC41081085DD3561CB80578, (bool)0, (bool)0, (bool)1, L_136, NULL);
NullCheck(L_135);
ArrayElementTypeCheck (L_135, L_137);
(L_135)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)43)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_137);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_138 = L_135;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_139 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___MultiParser_3;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_140 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_140);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_140, _stringLiteralD287833BBB7D5D15C278205064EAFF8ECF8A16AA, (bool)0, (bool)0, (bool)1, L_139, NULL);
NullCheck(L_138);
ArrayElementTypeCheck (L_138, L_140);
(L_138)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)44)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_140);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_141 = L_138;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_142 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___MultiParser_3;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_143 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_143);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_143, _stringLiteral68ACB6B47D3431BDBD286C3153B250E20552A4AD, (bool)1, (bool)1, (bool)1, L_142, NULL);
NullCheck(L_141);
ArrayElementTypeCheck (L_141, L_143);
(L_141)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)45)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_143);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_144 = L_141;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_145 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___MultiParser_3;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_146 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_146);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_146, _stringLiteral24F45929493475FECA90729BA5EAF2D06F8722A4, (bool)0, (bool)0, (bool)1, L_145, NULL);
NullCheck(L_144);
ArrayElementTypeCheck (L_144, L_146);
(L_144)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)46)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_146);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_147 = L_144;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_148 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___SingleParser_2;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_149 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_149);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_149, _stringLiteral48C75149E263D08DBE3F3CB86DF011FA96C010AF, (bool)1, (bool)0, (bool)0, L_148, NULL);
NullCheck(L_147);
ArrayElementTypeCheck (L_147, L_149);
(L_147)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)47)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_149);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_150 = L_147;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_151 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___MultiParser_3;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_152 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_152);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_152, _stringLiteralFAE55AFF6F18607FEDBE2F4C0C6BA4D4F219D504, (bool)0, (bool)0, (bool)1, L_151, NULL);
NullCheck(L_150);
ArrayElementTypeCheck (L_150, L_152);
(L_150)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)48)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_152);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_153 = L_150;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_154 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___MultiParser_3;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_155 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_155);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_155, _stringLiteral57BD43C20A057CCCB23650CB346EACEE7B31AE72, (bool)0, (bool)0, (bool)1, L_154, NULL);
NullCheck(L_153);
ArrayElementTypeCheck (L_153, L_155);
(L_153)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)49)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_155);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_156 = L_153;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_157 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___MultiParser_3;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_158 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_158);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_158, _stringLiteral3E2494FB2D245D91FF110697DD6EA93C8AD044C7, (bool)0, (bool)0, (bool)1, L_157, NULL);
NullCheck(L_156);
ArrayElementTypeCheck (L_156, L_158);
(L_156)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)50)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_158);
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_159 = L_156;
HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* L_160 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___SingleParser_2;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_161 = (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)il2cpp_codegen_object_new(HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
NullCheck(L_161);
HeaderInfo__ctor_mB82B9D1D7C19C78B649E9107B0DB316A96120CB8(L_161, _stringLiteral837AB1353B48531677906AF6731DF5EF5ACDA3F1, (bool)0, (bool)1, (bool)1, L_160, NULL);
NullCheck(L_159);
ArrayElementTypeCheck (L_159, L_161);
(L_159)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)51)), (HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)L_161);
V_0 = L_159;
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_162 = V_0;
NullCheck(L_162);
il2cpp_codegen_runtime_class_init_inline(CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_il2cpp_TypeInfo_var);
CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C* L_163 = ((CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_StaticFields*)il2cpp_codegen_static_fields_for(CaseInsensitiveAscii_t2DFC81BE85F6E99E3D4C9C4543AE76D860681D9C_il2cpp_TypeInfo_var))->___StaticInstance_0;
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_164 = (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D*)il2cpp_codegen_object_new(Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var);
NullCheck(L_164);
Hashtable__ctor_mDE29E5ABF17000F07880AD49D21C42132A5BA7EC(L_164, ((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_162)->max_length)), 2)), L_163, NULL);
((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___HeaderHashTable_0 = L_164;
Il2CppCodeGenWriteBarrier((void**)(&((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___HeaderHashTable_0), (void*)L_164);
V_1 = 0;
goto IL_04e1;
}
IL_04c8:
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_165 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___HeaderHashTable_0;
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_166 = V_0;
int32_t L_167 = V_1;
NullCheck(L_166);
int32_t L_168 = L_167;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_169 = (L_166)->GetAt(static_cast<il2cpp_array_size_t>(L_168));
NullCheck(L_169);
String_t* L_170 = L_169->___HeaderName_3;
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_171 = V_0;
int32_t L_172 = V_1;
NullCheck(L_171);
int32_t L_173 = L_172;
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_174 = (L_171)->GetAt(static_cast<il2cpp_array_size_t>(L_173));
NullCheck(L_165);
VirtualActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(31 /* 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(L_175, 1));
}
IL_04e1:
{
int32_t L_176 = V_1;
HeaderInfoU5BU5D_tD997F8A42260B297D39A543A92124AD00F04B6DF* L_177 = V_0;
NullCheck(L_177);
if ((((int32_t)L_176) < ((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_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* HeaderInfoTable_get_Item_mE388F21B37BFA30336BB82A1585C744E69A20021 (HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F* __this, String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* V_0 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var);
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___HeaderHashTable_0;
String_t* L_1 = ___name0;
NullCheck(L_0);
RuntimeObject* L_2;
L_2 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(30 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_0, L_1);
V_0 = ((HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3*)CastclassClass((RuntimeObject*)L_2, HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3_il2cpp_TypeInfo_var));
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_3 = V_0;
if (L_3)
{
goto IL_001a;
}
}
{
il2cpp_codegen_runtime_class_init_inline(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var);
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_4 = ((HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_StaticFields*)il2cpp_codegen_static_fields_for(HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F_il2cpp_TypeInfo_var))->___UnknownHeaderInfo_1;
return L_4;
}
IL_001a:
{
HeaderInfo_t945B81ABA4E05A9C9CF75446CEE8C1A475FECFB3* L_5 = V_0;
return L_5;
}
}
// System.Void System.Net.HeaderInfoTable::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HeaderInfoTable__ctor_mED0A17850B2F6AA3A3E6BFACF257E8640A7F3F50 (HeaderInfoTable_tD651971044220ED52EACB30E89A49178FA32D91F* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.LazyAsyncResult/ThreadContext System.Net.LazyAsyncResult::get_CurrentThreadContext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ThreadContext_t4D66E3F5FE5863AF4D086D6CE7CAFF02382B7650* LazyAsyncResult_get_CurrentThreadContext_mC86876C2BE5FFCFB3CCD0B34ACAD7272E72725FD (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ThreadContext_t4D66E3F5FE5863AF4D086D6CE7CAFF02382B7650_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ThreadContext_t4D66E3F5FE5863AF4D086D6CE7CAFF02382B7650* V_0 = NULL;
{
ThreadContext_t4D66E3F5FE5863AF4D086D6CE7CAFF02382B7650* L_0 = ((LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B_il2cpp_TypeInfo_var))->___t_ThreadContext_0;
V_0 = L_0;
ThreadContext_t4D66E3F5FE5863AF4D086D6CE7CAFF02382B7650* L_1 = V_0;
if (L_1)
{
goto IL_0015;
}
}
{
ThreadContext_t4D66E3F5FE5863AF4D086D6CE7CAFF02382B7650* L_2 = (ThreadContext_t4D66E3F5FE5863AF4D086D6CE7CAFF02382B7650*)il2cpp_codegen_object_new(ThreadContext_t4D66E3F5FE5863AF4D086D6CE7CAFF02382B7650_il2cpp_TypeInfo_var);
NullCheck(L_2);
ThreadContext__ctor_mBFFE2269F22D15B6570BD909390F40F213E9DBF1(L_2, NULL);
V_0 = L_2;
ThreadContext_t4D66E3F5FE5863AF4D086D6CE7CAFF02382B7650* L_3 = V_0;
((LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B_il2cpp_TypeInfo_var))->___t_ThreadContext_0 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&((LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B_il2cpp_TypeInfo_var))->___t_ThreadContext_0), (void*)L_3);
}
IL_0015:
{
ThreadContext_t4D66E3F5FE5863AF4D086D6CE7CAFF02382B7650* 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_m62BAF64A732506AD7544741700A0333B22CADE2F (LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* __this, RuntimeObject* ___myObject0, RuntimeObject* ___myState1, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___myCallBack2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
RuntimeObject* L_0 = ___myObject0;
__this->___m_AsyncObject_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_AsyncObject_1), (void*)L_0);
RuntimeObject* L_1 = ___myState1;
__this->___m_AsyncState_2 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_AsyncState_2), (void*)L_1);
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* L_2 = ___myCallBack2;
__this->___m_AsyncCallback_3 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_AsyncCallback_3), (void*)L_2);
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_3 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
__this->___m_Result_4 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Result_4), (void*)L_3);
return;
}
}
// System.Object System.Net.LazyAsyncResult::get_AsyncObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* LazyAsyncResult_get_AsyncObject_m599FB00838F916DBE45F359D64D26717EA2DF231 (LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___m_AsyncObject_1;
return L_0;
}
}
// System.Object System.Net.LazyAsyncResult::get_AsyncState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* LazyAsyncResult_get_AsyncState_mA3C12FBA0D5D421B9E670017D1A6236CE54152D4 (LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___m_AsyncState_2;
return L_0;
}
}
// System.AsyncCallback System.Net.LazyAsyncResult::get_AsyncCallback()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* LazyAsyncResult_get_AsyncCallback_m1569A7EDFC75B1C9B33BB3869BCC4E49FF5D082A (LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* __this, const RuntimeMethod* method)
{
{
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* L_0 = __this->___m_AsyncCallback_3;
return L_0;
}
}
// System.Threading.WaitHandle System.Net.LazyAsyncResult::get_AsyncWaitHandle()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WaitHandle_t08F8DB54593B241FE32E0DD0BD3D82785D3AE3D8* LazyAsyncResult_get_AsyncWaitHandle_m1F208E301E0C68A5F50E6E20A5ECFACB303489BF (LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* V_0 = NULL;
{
__this->___m_UserEvent_7 = (bool)1;
int32_t L_0 = __this->___m_IntCompleted_5;
if (L_0)
{
goto IL_0021;
}
}
{
int32_t* L_1 = (&__this->___m_IntCompleted_5);
int32_t L_2;
L_2 = Interlocked_CompareExchange_m1B1A89142CF77793A6B396019B98265E6EE306FA(L_1, ((int32_t)-2147483648LL), 0, NULL);
}
IL_0021:
{
RuntimeObject* L_3 = __this->___m_Event_8;
V_0 = ((ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158*)CastclassSealed((RuntimeObject*)L_3, ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158_il2cpp_TypeInfo_var));
goto IL_0038;
}
IL_002f:
{
bool L_4;
L_4 = LazyAsyncResult_LazilyCreateEvent_mC82FEA0526DA66D9F1A9B03BE1858D1C181E252F(__this, (&V_0), NULL);
}
IL_0038:
{
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* L_5 = V_0;
if (!L_5)
{
goto IL_002f;
}
}
{
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* 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_mC82FEA0526DA66D9F1A9B03BE1858D1C181E252F (LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* __this, ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158** ___waitHandle0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158** L_0 = ___waitHandle0;
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* L_1 = (ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158*)il2cpp_codegen_object_new(ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158_il2cpp_TypeInfo_var);
NullCheck(L_1);
ManualResetEvent__ctor_m361CFCF6AC28BFFF5C8790DC2B5951791A1C4CEE(L_1, (bool)0, NULL);
*((RuntimeObject**)L_0) = (RuntimeObject*)L_1;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_0, (void*)(RuntimeObject*)L_1);
}
try
{// begin try (depth: 1)
{
RuntimeObject** L_2 = (&__this->___m_Event_8);
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158** L_3 = ___waitHandle0;
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* L_4 = *((ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158**)L_3);
RuntimeObject* L_5;
L_5 = Interlocked_CompareExchange_mE9CAF0B3E78E95BA138B5623615D3C0242581977(L_2, L_4, NULL, NULL);
if (L_5)
{
goto IL_002c_1;
}
}
{
bool L_6;
L_6 = LazyAsyncResult_get_InternalPeekCompleted_m4E25420F3F5315AEA52DB59D671C65A3103EF2DE(__this, NULL);
if (!L_6)
{
goto IL_0028_1;
}
}
{
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158** L_7 = ___waitHandle0;
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* L_8 = *((ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158**)L_7);
NullCheck(L_8);
bool L_9;
L_9 = EventWaitHandle_Set_mDF98D67F214714A9590DF82A1C51D3D851281E4D(L_8, NULL);
}
IL_0028_1:
{
V_0 = (bool)1;
goto IL_0059;
}
IL_002c_1:
{
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158** L_10 = ___waitHandle0;
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* L_11 = *((ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158**)L_10);
NullCheck(L_11);
VirtualActionInvoker0::Invoke(11 /* System.Void System.Threading.WaitHandle::Close() */, L_11);
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158** L_12 = ___waitHandle0;
RuntimeObject* L_13 = __this->___m_Event_8;
*((RuntimeObject**)L_12) = (RuntimeObject*)((ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158*)CastclassSealed((RuntimeObject*)L_13, ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158_il2cpp_TypeInfo_var));
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_12, (void*)(RuntimeObject*)((ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158*)CastclassSealed((RuntimeObject*)L_13, ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158_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->___m_Event_8 = NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Event_8), (void*)NULL);
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158** L_14 = ___waitHandle0;
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* L_15 = *((ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158**)L_14);
if (!L_15)
{
goto IL_0057;
}
}
{
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158** L_16 = ___waitHandle0;
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* L_17 = *((ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158**)L_16);
NullCheck(L_17);
VirtualActionInvoker0::Invoke(11 /* 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_mC82FEA0526DA66D9F1A9B03BE1858D1C181E252F_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_m94758548683594ABECCE44E74B8A6FAE5F44D688 (LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->___m_IntCompleted_5;
V_0 = L_0;
int32_t L_1 = V_0;
if (L_1)
{
goto IL_001c;
}
}
{
int32_t* L_2 = (&__this->___m_IntCompleted_5);
int32_t L_3;
L_3 = Interlocked_CompareExchange_m1B1A89142CF77793A6B396019B98265E6EE306FA(L_2, ((int32_t)-2147483648LL), 0, 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_mE0A803876FB2D312361FCA5F631535B09F6C3125 (LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->___m_IntCompleted_5;
V_0 = L_0;
int32_t L_1 = V_0;
if (L_1)
{
goto IL_001c;
}
}
{
int32_t* L_2 = (&__this->___m_IntCompleted_5);
int32_t L_3;
L_3 = Interlocked_CompareExchange_m1B1A89142CF77793A6B396019B98265E6EE306FA(L_2, ((int32_t)-2147483648LL), 0, NULL);
V_0 = L_3;
}
IL_001c:
{
int32_t L_4 = V_0;
return (bool)((!(((uint32_t)((int32_t)(L_4&((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_m4E25420F3F5315AEA52DB59D671C65A3103EF2DE (LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___m_IntCompleted_5;
return (bool)((!(((uint32_t)((int32_t)(L_0&((int32_t)2147483647LL)))) <= ((uint32_t)0)))? 1 : 0);
}
}
// System.Boolean System.Net.LazyAsyncResult::get_EndCalled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LazyAsyncResult_get_EndCalled_mB9C44CD3D27331014867DB4D1957C4E10AB888B8 (LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___m_EndCalled_6;
return L_0;
}
}
// System.Void System.Net.LazyAsyncResult::set_EndCalled(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LazyAsyncResult_set_EndCalled_m90572F07D3130B1B2E9E1AF29B697EF61E8BFECF (LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->___m_EndCalled_6 = L_0;
return;
}
}
// System.Void System.Net.LazyAsyncResult::ProtectedInvokeCallback(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LazyAsyncResult_ProtectedInvokeCallback_mAB31EFC1A9671BA58BB38F59F381EAFE9C564410 (LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* __this, RuntimeObject* ___result0, intptr_t ___userToken1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* V_0 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___result0;
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_1 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
if ((!(((RuntimeObject*)(RuntimeObject*)L_0) == ((RuntimeObject*)(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)L_1))))
{
goto IL_0013;
}
}
{
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral228835A6E22383C9BC1AAFD065E6D63FA30BF27B)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&LazyAsyncResult_ProtectedInvokeCallback_mAB31EFC1A9671BA58BB38F59F381EAFE9C564410_RuntimeMethod_var)));
}
IL_0013:
{
int32_t L_3 = __this->___m_IntCompleted_5;
if (((int32_t)(L_3&((int32_t)2147483647LL))))
{
goto IL_006b;
}
}
{
int32_t* L_4 = (&__this->___m_IntCompleted_5);
int32_t L_5;
L_5 = Interlocked_Increment_m7AC68EC482A6AFD97BCEFABA0FD45D203F3EA2E1(L_4, NULL);
if ((!(((uint32_t)((int32_t)(L_5&((int32_t)2147483647LL)))) == ((uint32_t)1))))
{
goto IL_006b;
}
}
{
RuntimeObject* L_6 = __this->___m_Result_4;
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_7 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
if ((!(((RuntimeObject*)(RuntimeObject*)L_6) == ((RuntimeObject*)(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)L_7))))
{
goto IL_0049;
}
}
{
RuntimeObject* L_8 = ___result0;
__this->___m_Result_4 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Result_4), (void*)L_8);
}
IL_0049:
{
RuntimeObject* L_9 = __this->___m_Event_8;
V_0 = ((ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158*)CastclassSealed((RuntimeObject*)L_9, ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158_il2cpp_TypeInfo_var));
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* L_10 = V_0;
if (!L_10)
{
goto IL_0064;
}
}
try
{// begin try (depth: 1)
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* L_11 = V_0;
NullCheck(L_11);
bool L_12;
L_12 = EventWaitHandle_Set_mDF98D67F214714A9590DF82A1C51D3D851281E4D(L_11, 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_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_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, L_13);
}
IL_006b:
{
return;
}
}
// System.Void System.Net.LazyAsyncResult::InvokeCallback(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LazyAsyncResult_InvokeCallback_m4A1E1A15818F5ED6E6DBAEB48104A06529A11C9A (LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* __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_mAB31EFC1A9671BA58BB38F59F381EAFE9C564410(__this, L_0, (0), NULL);
return;
}
}
// System.Void System.Net.LazyAsyncResult::InvokeCallback()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LazyAsyncResult_InvokeCallback_m1429C8FB483908BC3A0D6C754F2F27554AFE7439 (LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* __this, 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;
}
{
LazyAsyncResult_ProtectedInvokeCallback_mAB31EFC1A9671BA58BB38F59F381EAFE9C564410(__this, NULL, (0), NULL);
return;
}
}
// System.Void System.Net.LazyAsyncResult::Complete(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LazyAsyncResult_Complete_m6B165AD8AEBAB7129514C42C4A3277114E0683BC (LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* __this, intptr_t ___userToken0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LazyAsyncResult_WorkerThreadComplete_m50589CB1937E4BA7FF703482ECC24706F0E1A1BF_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WaitCallback_tFB2C7FD58D024BBC2B0333DC7A4CB63B8DEBD5D3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
ThreadContext_t4D66E3F5FE5863AF4D086D6CE7CAFF02382B7650* V_1 = NULL;
{
V_0 = (bool)0;
ThreadContext_t4D66E3F5FE5863AF4D086D6CE7CAFF02382B7650* L_0;
L_0 = LazyAsyncResult_get_CurrentThreadContext_mC86876C2BE5FFCFB3CCD0B34ACAD7272E72725FD(NULL);
V_1 = L_0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_004c:
{// begin finally (depth: 1)
{
ThreadContext_t4D66E3F5FE5863AF4D086D6CE7CAFF02382B7650* L_1 = V_1;
ThreadContext_t4D66E3F5FE5863AF4D086D6CE7CAFF02382B7650* L_2 = L_1;
NullCheck(L_2);
int32_t L_3 = L_2->___m_NestedIOCount_0;
NullCheck(L_2);
L_2->___m_NestedIOCount_0 = ((int32_t)il2cpp_codegen_subtract(L_3, 1));
bool L_4 = V_0;
if (L_4)
{
goto IL_0063;
}
}
{
VirtualActionInvoker0::Invoke(9 /* System.Void System.Net.LazyAsyncResult::Cleanup() */, __this);
}
IL_0063:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
ThreadContext_t4D66E3F5FE5863AF4D086D6CE7CAFF02382B7650* L_5 = V_1;
ThreadContext_t4D66E3F5FE5863AF4D086D6CE7CAFF02382B7650* L_6 = L_5;
NullCheck(L_6);
int32_t L_7 = L_6->___m_NestedIOCount_0;
NullCheck(L_6);
L_6->___m_NestedIOCount_0 = ((int32_t)il2cpp_codegen_add(L_7, 1));
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* L_8 = __this->___m_AsyncCallback_3;
if (!L_8)
{
goto IL_004a_1;
}
}
{
ThreadContext_t4D66E3F5FE5863AF4D086D6CE7CAFF02382B7650* L_9 = V_1;
NullCheck(L_9);
int32_t L_10 = L_9->___m_NestedIOCount_0;
if ((((int32_t)L_10) < ((int32_t)((int32_t)50))))
{
goto IL_003e_1;
}
}
{
WaitCallback_tFB2C7FD58D024BBC2B0333DC7A4CB63B8DEBD5D3* L_11 = (WaitCallback_tFB2C7FD58D024BBC2B0333DC7A4CB63B8DEBD5D3*)il2cpp_codegen_object_new(WaitCallback_tFB2C7FD58D024BBC2B0333DC7A4CB63B8DEBD5D3_il2cpp_TypeInfo_var);
NullCheck(L_11);
WaitCallback__ctor_m9730564F9A28ECB72462D05AA92CA9E43DE9B41C(L_11, __this, (intptr_t)((void*)LazyAsyncResult_WorkerThreadComplete_m50589CB1937E4BA7FF703482ECC24706F0E1A1BF_RuntimeMethod_var), NULL);
bool L_12;
L_12 = ThreadPool_QueueUserWorkItem_m71B28F18E224DDB44B711DB3D23B1226AA7547AC(L_11, NULL);
V_0 = (bool)1;
goto IL_0064;
}
IL_003e_1:
{
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* L_13 = __this->___m_AsyncCallback_3;
NullCheck(L_13);
AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_inline(L_13, __this, NULL);
}
IL_004a_1:
{
goto IL_0064;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0064:
{
return;
}
}
// System.Void System.Net.LazyAsyncResult::WorkerThreadComplete(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LazyAsyncResult_WorkerThreadComplete_m50589CB1937E4BA7FF703482ECC24706F0E1A1BF (LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* __this, RuntimeObject* ___state0, const RuntimeMethod* method)
{
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_000e:
{// begin finally (depth: 1)
VirtualActionInvoker0::Invoke(9 /* System.Void System.Net.LazyAsyncResult::Cleanup() */, __this);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* L_0 = __this->___m_AsyncCallback_3;
NullCheck(L_0);
AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_inline(L_0, __this, NULL);
goto IL_0015;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0015:
{
return;
}
}
// System.Void System.Net.LazyAsyncResult::Cleanup()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LazyAsyncResult_Cleanup_mDB648575075A8BDAE413E4FB90C35A880A238B02 (LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Object System.Net.LazyAsyncResult::InternalWaitForCompletion()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* LazyAsyncResult_InternalWaitForCompletion_mE52E38E8478ACA2C9344716035CCC46E5CA32A59 (LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0;
L_0 = LazyAsyncResult_WaitForCompletion_mA2CEEA13EF894CFD3997117924FE18FF3D782649(__this, (bool)1, NULL);
return L_0;
}
}
// System.Object System.Net.LazyAsyncResult::WaitForCompletion(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* LazyAsyncResult_WaitForCompletion_mA2CEEA13EF894CFD3997117924FE18FF3D782649 (LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* __this, bool ___snap0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* V_0 = NULL;
bool V_1 = false;
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* V_2 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
bool G_B3_0 = false;
{
V_0 = (ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158*)NULL;
V_1 = (bool)0;
bool L_0 = ___snap0;
if (L_0)
{
goto IL_000f;
}
}
{
bool L_1;
L_1 = LazyAsyncResult_get_InternalPeekCompleted_m4E25420F3F5315AEA52DB59D671C65A3103EF2DE(__this, NULL);
G_B3_0 = L_1;
goto IL_0015;
}
IL_000f:
{
bool L_2;
L_2 = LazyAsyncResult_get_IsCompleted_mE0A803876FB2D312361FCA5F631535B09F6C3125(__this, NULL);
G_B3_0 = L_2;
}
IL_0015:
{
if (G_B3_0)
{
goto IL_002f;
}
}
{
RuntimeObject* L_3 = __this->___m_Event_8;
V_0 = ((ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158*)CastclassSealed((RuntimeObject*)L_3, ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158_il2cpp_TypeInfo_var));
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* L_4 = V_0;
if (L_4)
{
goto IL_002f;
}
}
{
bool L_5;
L_5 = LazyAsyncResult_LazilyCreateEvent_mC82FEA0526DA66D9F1A9B03BE1858D1C181E252F(__this, (&V_0), NULL);
V_1 = L_5;
}
IL_002f:
{
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* L_6 = V_0;
if (!L_6)
{
goto IL_0073;
}
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0040:
{// begin finally (depth: 1)
{
bool L_7 = V_1;
if (!L_7)
{
goto IL_006c;
}
}
{
bool L_8 = __this->___m_UserEvent_7;
if (L_8)
{
goto IL_006c;
}
}
{
RuntimeObject* L_9 = __this->___m_Event_8;
V_2 = ((ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158*)CastclassSealed((RuntimeObject*)L_9, ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158_il2cpp_TypeInfo_var));
__this->___m_Event_8 = NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Event_8), (void*)NULL);
bool L_10 = __this->___m_UserEvent_7;
if (L_10)
{
goto IL_006c;
}
}
{
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* L_11 = V_2;
NullCheck(L_11);
VirtualActionInvoker0::Invoke(11 /* System.Void System.Threading.WaitHandle::Close() */, L_11);
}
IL_006c:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
try
{// begin try (depth: 2)
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* L_12 = V_0;
NullCheck(L_12);
bool L_13;
L_13 = VirtualFuncInvoker2< bool, int32_t, bool >::Invoke(8 /* System.Boolean System.Threading.WaitHandle::WaitOne(System.Int32,System.Boolean) */, L_12, (-1), (bool)0);
goto IL_0073;
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_003d_1;
}
throw e;
}
CATCH_003d_1:
{// begin catch(System.ObjectDisposedException)
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0073;
}// end catch (depth: 2)
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_006d:
{
Thread_SpinWait_m21328EAAC550A5C9822D6AFD1BCA17DBC1B5FF7E(1, NULL);
}
IL_0073:
{
RuntimeObject* L_14 = __this->___m_Result_4;
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_15 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
if ((((RuntimeObject*)(RuntimeObject*)L_14) == ((RuntimeObject*)(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)L_15)))
{
goto IL_006d;
}
}
{
RuntimeObject* L_16 = __this->___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.Void System.Net.LazyAsyncResult/ThreadContext::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadContext__ctor_mBFFE2269F22D15B6570BD909390F40F213E9DBF1 (ThreadContext_t4D66E3F5FE5863AF4D086D6CE7CAFF02382B7650* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String System.Net.NetRes::GetWebStatusString(System.String,System.Net.WebExceptionStatus)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NetRes_GetWebStatusString_m35A90AB3B319FDDFAC2A2C4AA534504806B8555B (String_t* ___Res0, int32_t ___Status1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebExceptionMapping_tDDA997889D4DC7BF308F43EE387C07295C096FA8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
{
int32_t L_0 = ___Status1;
il2cpp_codegen_runtime_class_init_inline(WebExceptionMapping_tDDA997889D4DC7BF308F43EE387C07295C096FA8_il2cpp_TypeInfo_var);
String_t* L_1;
L_1 = WebExceptionMapping_GetWebStatusString_mC6F3D28D6DCDD3E8674CBDA5CA684DF603DBCF69(L_0, NULL);
String_t* L_2;
L_2 = SR_GetString_m2FF076D246665572FABD5913A9945E2A694DCB4D(L_1, NULL);
V_1 = L_2;
String_t* L_3 = ___Res0;
String_t* L_4;
L_4 = SR_GetString_m2FF076D246665572FABD5913A9945E2A694DCB4D(L_3, NULL);
V_0 = L_4;
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_5;
L_5 = CultureInfo_get_CurrentCulture_m43D1E4E50AB1F62ADC7C1884F28F918B53871522(NULL);
String_t* L_6 = V_0;
String_t* L_7 = V_1;
String_t* L_8;
L_8 = String_Format_m75580778A544C5C8DA0F2ACEE7972A2AC944063A(L_5, L_6, L_7, NULL);
return L_8;
}
}
// System.String System.Net.NetRes::GetWebStatusString(System.Net.WebExceptionStatus)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NetRes_GetWebStatusString_mE66B48DF30D7AD1CBBA22137E2DD0736065236C1 (int32_t ___Status0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebExceptionMapping_tDDA997889D4DC7BF308F43EE387C07295C096FA8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___Status0;
il2cpp_codegen_runtime_class_init_inline(WebExceptionMapping_tDDA997889D4DC7BF308F43EE387C07295C096FA8_il2cpp_TypeInfo_var);
String_t* L_1;
L_1 = WebExceptionMapping_GetWebStatusString_mC6F3D28D6DCDD3E8674CBDA5CA684DF603DBCF69(L_0, NULL);
String_t* L_2;
L_2 = SR_GetString_m2FF076D246665572FABD5913A9945E2A694DCB4D(L_1, NULL);
return L_2;
}
}
// System.String System.Net.NetRes::GetWebStatusCodeString(System.Net.FtpStatusCode,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NetRes_GetWebStatusCodeString_m45DED2B8E8CD5BF6B252D37752578F8A4E8C6C93 (int32_t ___statusCode0, String_t* ___statusDescription1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FtpStatusCode_tB41B8C83958681A4C0AB77B4C847B1D5C9196C6E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB31954C34320CC79DE26F897C41586435B861BA6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
int32_t V_2 = 0;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
int32_t L_0 = ___statusCode0;
V_2 = L_0;
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_1;
L_1 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL);
String_t* L_2;
L_2 = Int32_ToString_m3B2730D9F5B0C1C57DCCC8B8DCFB8E5EC4E8979B((&V_2), L_1, NULL);
String_t* L_3;
L_3 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73, L_2, _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D, NULL);
V_0 = L_3;
V_1 = (String_t*)NULL;
}
try
{// begin try (depth: 1)
Il2CppFakeBox<int32_t> L_4(FtpStatusCode_tB41B8C83958681A4C0AB77B4C847B1D5C9196C6E_il2cpp_TypeInfo_var, (&___statusCode0));
String_t* L_5;
L_5 = Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)(&L_4), NULL);
String_t* L_6;
L_6 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteralB31954C34320CC79DE26F897C41586435B861BA6, L_5, NULL);
String_t* L_7;
L_7 = SR_GetString_mF713FCC09E41A8D1C0DE44EDD0932A57800A9BA3(L_6, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL);
V_1 = L_7;
goto IL_0043;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0040;
}
throw e;
}
CATCH_0040:
{// begin catch(System.Object)
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0043;
}// end catch (depth: 1)
IL_0043:
{
String_t* L_8 = V_1;
if (!L_8)
{
goto IL_005e;
}
}
{
String_t* L_9 = V_1;
NullCheck(L_9);
int32_t L_10;
L_10 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_9, NULL);
if ((((int32_t)L_10) <= ((int32_t)0)))
{
goto IL_005e;
}
}
{
String_t* L_11 = V_0;
String_t* L_12 = V_1;
String_t* L_13;
L_13 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(L_11, _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745, L_12, NULL);
V_0 = L_13;
goto IL_0077;
}
IL_005e:
{
String_t* L_14 = ___statusDescription1;
if (!L_14)
{
goto IL_0077;
}
}
{
String_t* L_15 = ___statusDescription1;
NullCheck(L_15);
int32_t L_16;
L_16 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_15, NULL);
if ((((int32_t)L_16) <= ((int32_t)0)))
{
goto IL_0077;
}
}
{
String_t* L_17 = V_0;
String_t* L_18 = ___statusDescription1;
String_t* L_19;
L_19 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(L_17, _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745, L_18, NULL);
V_0 = L_19;
}
IL_0077:
{
String_t* L_20 = V_0;
return L_20;
}
}
#ifdef __clang__
#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.TimerThread::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimerThread__cctor_mC25B3C34109193014AFAA8AE22DEB5A82AE730E4 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AutoResetEvent_t7F792F3F7AD11BEF7B411E771D98E5266A8CE7C0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LinkedList_1__ctor_mCCAB5F5D186AA57BE80E0C3B2DBA9392361B83B6_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimerThread_OnDomainUnload_m789618CB693C29737319DBD4437199D0346FAF60_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WaitHandleU5BU5D_t85D0945086BF1BF6008422B3DD937ECEC35A8108_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2* L_0 = (LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2*)il2cpp_codegen_object_new(LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2_il2cpp_TypeInfo_var);
NullCheck(L_0);
LinkedList_1__ctor_mCCAB5F5D186AA57BE80E0C3B2DBA9392361B83B6(L_0, LinkedList_1__ctor_mCCAB5F5D186AA57BE80E0C3B2DBA9392361B83B6_RuntimeMethod_var);
((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_Queues_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_Queues_0), (void*)L_0);
LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2* L_1 = (LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2*)il2cpp_codegen_object_new(LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2_il2cpp_TypeInfo_var);
NullCheck(L_1);
LinkedList_1__ctor_mCCAB5F5D186AA57BE80E0C3B2DBA9392361B83B6(L_1, LinkedList_1__ctor_mCCAB5F5D186AA57BE80E0C3B2DBA9392361B83B6_RuntimeMethod_var);
((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_NewQueues_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_NewQueues_1), (void*)L_1);
((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_ThreadState_2 = 0;
AutoResetEvent_t7F792F3F7AD11BEF7B411E771D98E5266A8CE7C0* L_2 = (AutoResetEvent_t7F792F3F7AD11BEF7B411E771D98E5266A8CE7C0*)il2cpp_codegen_object_new(AutoResetEvent_t7F792F3F7AD11BEF7B411E771D98E5266A8CE7C0_il2cpp_TypeInfo_var);
NullCheck(L_2);
AutoResetEvent__ctor_mB7C8CD30C5BE11A2C8DB79B27593CF0C5FE82ADE(L_2, (bool)0, NULL);
((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_ThreadReadyEvent_3 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_ThreadReadyEvent_3), (void*)L_2);
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* L_3 = (ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158*)il2cpp_codegen_object_new(ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158_il2cpp_TypeInfo_var);
NullCheck(L_3);
ManualResetEvent__ctor_m361CFCF6AC28BFFF5C8790DC2B5951791A1C4CEE(L_3, (bool)0, NULL);
((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_ThreadShutdownEvent_4 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_ThreadShutdownEvent_4), (void*)L_3);
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_4 = (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D*)il2cpp_codegen_object_new(Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var);
NullCheck(L_4);
Hashtable__ctor_mD7E2F1EB1BFD683186ECD6EDBE1708AF35C3A87D(L_4, NULL);
((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_QueuesCache_7 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_QueuesCache_7), (void*)L_4);
WaitHandleU5BU5D_t85D0945086BF1BF6008422B3DD937ECEC35A8108* L_5 = (WaitHandleU5BU5D_t85D0945086BF1BF6008422B3DD937ECEC35A8108*)(WaitHandleU5BU5D_t85D0945086BF1BF6008422B3DD937ECEC35A8108*)SZArrayNew(WaitHandleU5BU5D_t85D0945086BF1BF6008422B3DD937ECEC35A8108_il2cpp_TypeInfo_var, (uint32_t)2);
WaitHandleU5BU5D_t85D0945086BF1BF6008422B3DD937ECEC35A8108* L_6 = L_5;
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* L_7 = ((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_ThreadShutdownEvent_4;
NullCheck(L_6);
ArrayElementTypeCheck (L_6, L_7);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(0), (WaitHandle_t08F8DB54593B241FE32E0DD0BD3D82785D3AE3D8*)L_7);
WaitHandleU5BU5D_t85D0945086BF1BF6008422B3DD937ECEC35A8108* L_8 = L_6;
AutoResetEvent_t7F792F3F7AD11BEF7B411E771D98E5266A8CE7C0* L_9 = ((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_ThreadReadyEvent_3;
NullCheck(L_8);
ArrayElementTypeCheck (L_8, L_9);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(1), (WaitHandle_t08F8DB54593B241FE32E0DD0BD3D82785D3AE3D8*)L_9);
((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_ThreadEvents_5 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_ThreadEvents_5), (void*)L_8);
AppDomain_tFF7010567CBABAEEA7BB19835234D6485E16AD5F* L_10;
L_10 = AppDomain_get_CurrentDomain_m5085B6AF21A19506C85E0650C46BE35A18011CFE(NULL);
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* L_11 = (EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82*)il2cpp_codegen_object_new(EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82_il2cpp_TypeInfo_var);
NullCheck(L_11);
EventHandler__ctor_m95444CE8D5A6F1AFC9793866C3FE884E732DCEB2(L_11, NULL, (intptr_t)((void*)TimerThread_OnDomainUnload_m789618CB693C29737319DBD4437199D0346FAF60_RuntimeMethod_var), NULL);
NullCheck(L_10);
AppDomain_add_DomainUnload_mC24E729ABD7550A0A1F018EBF215FDF03AA1064F(L_10, L_11, NULL);
return;
}
}
// System.Net.TimerThread/Queue System.Net.TimerThread::CreateQueue(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Queue_t644DC21212BC432819522EDA395EB4562BE2CC47* TimerThread_CreateQueue_mEE7746808FCC711657A10D38DAC9FC01B93B68D8 (int32_t ___durationMilliseconds0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InfiniteTimerQueue_tFE425952008C1E3FF928211F9325D43CAA8106D5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LinkedList_1_AddLast_mC80812585536C37E00934D36C6FD07932437B27F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimerQueue_tAB38C0ABB8EDA32D28106F9D5DF595FBD20CF8FB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TimerQueue_tAB38C0ABB8EDA32D28106F9D5DF595FBD20CF8FB* V_0 = NULL;
LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2* V_1 = NULL;
bool V_2 = false;
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* V_3 = NULL;
{
int32_t L_0 = ___durationMilliseconds0;
if ((!(((uint32_t)L_0) == ((uint32_t)(-1)))))
{
goto IL_000a;
}
}
{
InfiniteTimerQueue_tFE425952008C1E3FF928211F9325D43CAA8106D5* L_1 = (InfiniteTimerQueue_tFE425952008C1E3FF928211F9325D43CAA8106D5*)il2cpp_codegen_object_new(InfiniteTimerQueue_tFE425952008C1E3FF928211F9325D43CAA8106D5_il2cpp_TypeInfo_var);
NullCheck(L_1);
InfiniteTimerQueue__ctor_mC47879DB811308BFE6D5D4613791A81CCA215501(L_1, NULL);
return L_1;
}
IL_000a:
{
int32_t L_2 = ___durationMilliseconds0;
if ((((int32_t)L_2) >= ((int32_t)0)))
{
goto IL_0019;
}
}
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_3);
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3220BBB392E3CB8CF814351BB1F94E3EE69058E8)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimerThread_CreateQueue_mEE7746808FCC711657A10D38DAC9FC01B93B68D8_RuntimeMethod_var)));
}
IL_0019:
{
il2cpp_codegen_runtime_class_init_inline(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2* L_4 = ((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_NewQueues_1;
V_1 = L_4;
V_2 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0045:
{// begin finally (depth: 1)
{
bool L_5 = V_2;
if (!L_5)
{
goto IL_004e;
}
}
{
LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2* L_6 = V_1;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_6, NULL);
}
IL_004e:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2* L_7 = V_1;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_7, (&V_2), NULL);
int32_t L_8 = ___durationMilliseconds0;
TimerQueue_tAB38C0ABB8EDA32D28106F9D5DF595FBD20CF8FB* L_9 = (TimerQueue_tAB38C0ABB8EDA32D28106F9D5DF595FBD20CF8FB*)il2cpp_codegen_object_new(TimerQueue_tAB38C0ABB8EDA32D28106F9D5DF595FBD20CF8FB_il2cpp_TypeInfo_var);
NullCheck(L_9);
TimerQueue__ctor_mCB1C60FF084C13E97E4FC8C4E56F6264649285D9(L_9, L_8, NULL);
V_0 = L_9;
TimerQueue_tAB38C0ABB8EDA32D28106F9D5DF595FBD20CF8FB* L_10 = V_0;
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_11 = (WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E*)il2cpp_codegen_object_new(WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E_il2cpp_TypeInfo_var);
NullCheck(L_11);
WeakReference__ctor_m5F9E2F970CD85965A003C0B37ABDBFAA1F5CF241(L_11, L_10, NULL);
V_3 = L_11;
il2cpp_codegen_runtime_class_init_inline(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2* L_12 = ((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_NewQueues_1;
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_13 = V_3;
NullCheck(L_12);
LinkedListNode_1_t8B8D12143248A5FB82DF08BEFD95EF4C426E67FA* L_14;
L_14 = LinkedList_1_AddLast_mC80812585536C37E00934D36C6FD07932437B27F(L_12, L_13, LinkedList_1_AddLast_mC80812585536C37E00934D36C6FD07932437B27F_RuntimeMethod_var);
goto IL_004f;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_004f:
{
TimerQueue_tAB38C0ABB8EDA32D28106F9D5DF595FBD20CF8FB* L_15 = V_0;
return L_15;
}
}
// System.Net.TimerThread/Queue System.Net.TimerThread::GetOrCreateQueue(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Queue_t644DC21212BC432819522EDA395EB4562BE2CC47* TimerThread_GetOrCreateQueue_m461C7A3FC2CFAC20EF0C9EBEEF29D3C73BFF52F2 (int32_t ___durationMilliseconds0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InfiniteTimerQueue_tFE425952008C1E3FF928211F9325D43CAA8106D5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LinkedList_1_AddLast_mC80812585536C37E00934D36C6FD07932437B27F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimerQueue_tAB38C0ABB8EDA32D28106F9D5DF595FBD20CF8FB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TimerQueue_tAB38C0ABB8EDA32D28106F9D5DF595FBD20CF8FB* V_0 = NULL;
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* V_1 = NULL;
LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2* V_2 = NULL;
bool V_3 = false;
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* V_4 = NULL;
RuntimeObject* V_5 = NULL;
DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB V_6;
memset((&V_6), 0, sizeof(V_6));
RuntimeObject* V_7 = NULL;
int32_t V_8 = 0;
{
int32_t L_0 = ___durationMilliseconds0;
if ((!(((uint32_t)L_0) == ((uint32_t)(-1)))))
{
goto IL_000a;
}
}
{
InfiniteTimerQueue_tFE425952008C1E3FF928211F9325D43CAA8106D5* L_1 = (InfiniteTimerQueue_tFE425952008C1E3FF928211F9325D43CAA8106D5*)il2cpp_codegen_object_new(InfiniteTimerQueue_tFE425952008C1E3FF928211F9325D43CAA8106D5_il2cpp_TypeInfo_var);
NullCheck(L_1);
InfiniteTimerQueue__ctor_mC47879DB811308BFE6D5D4613791A81CCA215501(L_1, NULL);
return L_1;
}
IL_000a:
{
int32_t L_2 = ___durationMilliseconds0;
if ((((int32_t)L_2) >= ((int32_t)0)))
{
goto IL_0019;
}
}
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_3);
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3220BBB392E3CB8CF814351BB1F94E3EE69058E8)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimerThread_GetOrCreateQueue_m461C7A3FC2CFAC20EF0C9EBEEF29D3C73BFF52F2_RuntimeMethod_var)));
}
IL_0019:
{
il2cpp_codegen_runtime_class_init_inline(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_4 = ((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_QueuesCache_7;
int32_t L_5 = ___durationMilliseconds0;
int32_t L_6 = L_5;
RuntimeObject* L_7 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_6);
NullCheck(L_4);
RuntimeObject* L_8;
L_8 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(30 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_4, L_7);
V_1 = ((WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E*)CastclassClass((RuntimeObject*)L_8, WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E_il2cpp_TypeInfo_var));
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_9 = V_1;
if (!L_9)
{
goto IL_0044;
}
}
{
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_10 = V_1;
NullCheck(L_10);
RuntimeObject* L_11;
L_11 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(6 /* System.Object System.WeakReference::get_Target() */, L_10);
TimerQueue_tAB38C0ABB8EDA32D28106F9D5DF595FBD20CF8FB* L_12 = ((TimerQueue_tAB38C0ABB8EDA32D28106F9D5DF595FBD20CF8FB*)CastclassClass((RuntimeObject*)L_11, TimerQueue_tAB38C0ABB8EDA32D28106F9D5DF595FBD20CF8FB_il2cpp_TypeInfo_var));
V_0 = L_12;
if (L_12)
{
goto IL_0162;
}
}
IL_0044:
{
il2cpp_codegen_runtime_class_init_inline(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2* L_13 = ((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_NewQueues_1;
V_2 = L_13;
V_3 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0158:
{// begin finally (depth: 1)
{
bool L_14 = V_3;
if (!L_14)
{
goto IL_0161;
}
}
{
LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2* L_15 = V_2;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_15, NULL);
}
IL_0161:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2* L_16 = V_2;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_16, (&V_3), NULL);
il2cpp_codegen_runtime_class_init_inline(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_17 = ((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_QueuesCache_7;
int32_t L_18 = ___durationMilliseconds0;
int32_t L_19 = L_18;
RuntimeObject* L_20 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_19);
NullCheck(L_17);
RuntimeObject* L_21;
L_21 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(30 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_17, L_20);
V_1 = ((WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E*)CastclassClass((RuntimeObject*)L_21, WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E_il2cpp_TypeInfo_var));
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_22 = V_1;
if (!L_22)
{
goto IL_007f_1;
}
}
{
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_23 = V_1;
NullCheck(L_23);
RuntimeObject* L_24;
L_24 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(6 /* System.Object System.WeakReference::get_Target() */, L_23);
TimerQueue_tAB38C0ABB8EDA32D28106F9D5DF595FBD20CF8FB* L_25 = ((TimerQueue_tAB38C0ABB8EDA32D28106F9D5DF595FBD20CF8FB*)CastclassClass((RuntimeObject*)L_24, TimerQueue_tAB38C0ABB8EDA32D28106F9D5DF595FBD20CF8FB_il2cpp_TypeInfo_var));
V_0 = L_25;
if (L_25)
{
goto IL_0156_1;
}
}
IL_007f_1:
{
int32_t L_26 = ___durationMilliseconds0;
TimerQueue_tAB38C0ABB8EDA32D28106F9D5DF595FBD20CF8FB* L_27 = (TimerQueue_tAB38C0ABB8EDA32D28106F9D5DF595FBD20CF8FB*)il2cpp_codegen_object_new(TimerQueue_tAB38C0ABB8EDA32D28106F9D5DF595FBD20CF8FB_il2cpp_TypeInfo_var);
NullCheck(L_27);
TimerQueue__ctor_mCB1C60FF084C13E97E4FC8C4E56F6264649285D9(L_27, L_26, NULL);
V_0 = L_27;
TimerQueue_tAB38C0ABB8EDA32D28106F9D5DF595FBD20CF8FB* L_28 = V_0;
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_29 = (WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E*)il2cpp_codegen_object_new(WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E_il2cpp_TypeInfo_var);
NullCheck(L_29);
WeakReference__ctor_m5F9E2F970CD85965A003C0B37ABDBFAA1F5CF241(L_29, L_28, NULL);
V_1 = L_29;
il2cpp_codegen_runtime_class_init_inline(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2* L_30 = ((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_NewQueues_1;
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_31 = V_1;
NullCheck(L_30);
LinkedListNode_1_t8B8D12143248A5FB82DF08BEFD95EF4C426E67FA* L_32;
L_32 = LinkedList_1_AddLast_mC80812585536C37E00934D36C6FD07932437B27F(L_30, L_31, LinkedList_1_AddLast_mC80812585536C37E00934D36C6FD07932437B27F_RuntimeMethod_var);
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_33 = ((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_QueuesCache_7;
int32_t L_34 = ___durationMilliseconds0;
int32_t L_35 = L_34;
RuntimeObject* L_36 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_35);
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_37 = V_1;
NullCheck(L_33);
VirtualActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(31 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_33, L_36, L_37);
int32_t L_38 = ((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_CacheScanIteration_6;
int32_t L_39 = ((int32_t)il2cpp_codegen_add(L_38, 1));
((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_CacheScanIteration_6 = L_39;
if (((int32_t)(L_39%((int32_t)32))))
{
goto IL_0156_1;
}
}
{
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_40 = (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*)il2cpp_codegen_object_new(List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var);
NullCheck(L_40);
List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8(L_40, List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_RuntimeMethod_var);
V_4 = L_40;
il2cpp_codegen_runtime_class_init_inline(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_41 = ((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_QueuesCache_7;
NullCheck(L_41);
RuntimeObject* L_42;
L_42 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(32 /* System.Collections.IDictionaryEnumerator System.Collections.Hashtable::GetEnumerator() */, L_41);
V_5 = L_42;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0113_1:
{// begin finally (depth: 2)
{
RuntimeObject* L_43 = V_5;
V_7 = ((RuntimeObject*)IsInst((RuntimeObject*)L_43, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_44 = V_7;
if (!L_44)
{
goto IL_0127_1;
}
}
{
RuntimeObject* L_45 = V_7;
NullCheck(L_45);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_45);
}
IL_0127_1:
{
return;
}
}// end finally (depth: 2)
});
try
{// begin try (depth: 2)
{
goto IL_0108_2;
}
IL_00d4_2:
{
RuntimeObject* L_46 = V_5;
NullCheck(L_46);
RuntimeObject* L_47;
L_47 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_46);
V_6 = ((*(DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB*)((DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB*)(DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB*)UnBox(L_47, DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_il2cpp_TypeInfo_var))));
RuntimeObject* L_48;
L_48 = DictionaryEntry_get_Value_m75FD18FE968AE131F28AA2CB0DF4895EBA39075E_inline((&V_6), NULL);
NullCheck(((WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E*)CastclassClass((RuntimeObject*)L_48, WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E_il2cpp_TypeInfo_var)));
RuntimeObject* L_49;
L_49 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(6 /* System.Object System.WeakReference::get_Target() */, ((WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E*)CastclassClass((RuntimeObject*)L_48, WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E_il2cpp_TypeInfo_var)));
if (L_49)
{
goto IL_0108_2;
}
}
{
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_50 = V_4;
RuntimeObject* L_51;
L_51 = DictionaryEntry_get_Key_m09845C00732E530E6FCB9042079E90D3912215FE_inline((&V_6), NULL);
NullCheck(L_50);
List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline(L_50, ((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_51, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)))), List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
}
IL_0108_2:
{
RuntimeObject* L_52 = V_5;
NullCheck(L_52);
bool L_53;
L_53 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_52);
if (L_53)
{
goto IL_00d4_2;
}
}
{
goto IL_0128_1;
}
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0128_1:
{
V_8 = 0;
goto IL_014b_1;
}
IL_012d_1:
{
il2cpp_codegen_runtime_class_init_inline(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_54 = ((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_QueuesCache_7;
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_55 = V_4;
int32_t L_56 = V_8;
NullCheck(L_55);
int32_t L_57;
L_57 = List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D(L_55, L_56, List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_RuntimeMethod_var);
int32_t L_58 = L_57;
RuntimeObject* L_59 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_58);
NullCheck(L_54);
VirtualActionInvoker1< RuntimeObject* >::Invoke(40 /* System.Void System.Collections.Hashtable::Remove(System.Object) */, L_54, L_59);
int32_t L_60 = V_8;
V_8 = ((int32_t)il2cpp_codegen_add(L_60, 1));
}
IL_014b_1:
{
int32_t L_61 = V_8;
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_62 = V_4;
NullCheck(L_62);
int32_t L_63;
L_63 = List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_inline(L_62, List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var);
if ((((int32_t)L_61) < ((int32_t)L_63)))
{
goto IL_012d_1;
}
}
IL_0156_1:
{
goto IL_0162;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0162:
{
TimerQueue_tAB38C0ABB8EDA32D28106F9D5DF595FBD20CF8FB* L_64 = V_0;
return L_64;
}
}
// System.Void System.Net.TimerThread::Prod()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimerThread_Prod_m73CCF5CF05935284BFCD40666A2BA524F75D105C (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ThreadStart_t7662D98F1793EDE90192D7304D1C3C44119328A2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimerThread_ThreadProc_m089CDAA1EF69AA667A140FC6B6DFCA8501376FD1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
AutoResetEvent_t7F792F3F7AD11BEF7B411E771D98E5266A8CE7C0* L_0 = ((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_ThreadReadyEvent_3;
NullCheck(L_0);
bool L_1;
L_1 = EventWaitHandle_Set_mDF98D67F214714A9590DF82A1C51D3D851281E4D(L_0, NULL);
int32_t L_2;
L_2 = Interlocked_CompareExchange_m1B1A89142CF77793A6B396019B98265E6EE306FA((&((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_ThreadState_2), 1, 0, NULL);
if (L_2)
{
goto IL_002f;
}
}
{
ThreadStart_t7662D98F1793EDE90192D7304D1C3C44119328A2* L_3 = (ThreadStart_t7662D98F1793EDE90192D7304D1C3C44119328A2*)il2cpp_codegen_object_new(ThreadStart_t7662D98F1793EDE90192D7304D1C3C44119328A2_il2cpp_TypeInfo_var);
NullCheck(L_3);
ThreadStart__ctor_m35CE51F76358F20E4A0C8F2963C3AE14E5FF7E71(L_3, NULL, (intptr_t)((void*)TimerThread_ThreadProc_m089CDAA1EF69AA667A140FC6B6DFCA8501376FD1_RuntimeMethod_var), NULL);
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_4 = (Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F*)il2cpp_codegen_object_new(Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F_il2cpp_TypeInfo_var);
NullCheck(L_4);
Thread__ctor_m1FA23A179DF4F5B659689D6FA40DE903086212E2(L_4, L_3, NULL);
NullCheck(L_4);
Thread_Start_m2230799AA331CA9ACEF49D5500281D0C1A9F72FA(L_4, NULL);
}
IL_002f:
{
return;
}
}
// System.Void System.Net.TimerThread::ThreadProc()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimerThread_ThreadProc_m089CDAA1EF69AA667A140FC6B6DFCA8501376FD1 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LinkedListNode_1_get_Next_m9AD84867FD812771D97DE4B3EA139B9FFF6AAD02_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LinkedListNode_1_get_Value_m70875C72E64ECAC678D5E5DC7F5407EDD711E74F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LinkedList_1_AddLast_mFC009DB4A45FE723FD7912EBCF9D2EE9E3C73F6A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LinkedList_1_Remove_m46FC492751187095D1D203309443E26B22D52473_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LinkedList_1_get_Count_m042F42A43FB095ABBEF2D06601BA8F42F1C18F02_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LinkedList_1_get_First_m5B5A0C7B81CBD5C40FA468D902307348D34EC0D4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimerQueue_tAB38C0ABB8EDA32D28106F9D5DF595FBD20CF8FB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WaitHandle_t08F8DB54593B241FE32E0DD0BD3D82785D3AE3D8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2* V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
int32_t V_3 = 0;
int32_t V_4 = 0;
bool V_5 = false;
int32_t V_6 = 0;
int32_t V_7 = 0;
int32_t V_8 = 0;
LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2* V_9 = NULL;
bool V_10 = false;
LinkedListNode_1_t8B8D12143248A5FB82DF08BEFD95EF4C426E67FA* V_11 = NULL;
LinkedListNode_1_t8B8D12143248A5FB82DF08BEFD95EF4C426E67FA* V_12 = NULL;
TimerQueue_tAB38C0ABB8EDA32D28106F9D5DF595FBD20CF8FB* V_13 = NULL;
int32_t V_14 = 0;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
int32_t G_B29_0 = 0;
{
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_0;
L_0 = Thread_get_CurrentThread_m835AD1DF1C0D10BABE1A5427CC4B357C991B25AB(NULL);
NullCheck(L_0);
Thread_set_IsBackground_m45F00BD4C46F9B8A7C46A20A170B22BABB8FBA30(L_0, (bool)1, NULL);
il2cpp_codegen_runtime_class_init_inline(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2* L_1 = ((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_Queues_0;
V_0 = L_1;
V_1 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_01cf:
{// begin finally (depth: 1)
{
bool L_2 = V_1;
if (!L_2)
{
goto IL_01d8;
}
}
{
LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2* L_3 = V_0;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_3, NULL);
}
IL_01d8:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2* L_4 = V_0;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_4, (&V_1), NULL);
il2cpp_codegen_runtime_class_init_inline(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
int32_t L_5;
L_5 = Interlocked_CompareExchange_m1B1A89142CF77793A6B396019B98265E6EE306FA((&((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_ThreadState_2), 1, 1, NULL);
if ((((int32_t)L_5) == ((int32_t)1)))
{
goto IL_002f_1;
}
}
{
goto IL_01d9;
}
IL_002f_1:
{
V_2 = (bool)1;
goto IL_01c7_1;
}
IL_0036_1:
{
}
try
{// begin try (depth: 2)
{
il2cpp_codegen_runtime_class_init_inline(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
AutoResetEvent_t7F792F3F7AD11BEF7B411E771D98E5266A8CE7C0* L_6 = ((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_ThreadReadyEvent_3;
NullCheck(L_6);
bool L_7;
L_7 = EventWaitHandle_Reset_m84719BED571BDAAEE27EE05F57295C7107A74DE6(L_6, NULL);
}
IL_0042_2:
{
il2cpp_codegen_runtime_class_init_inline(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2* L_8 = ((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_NewQueues_1;
NullCheck(L_8);
int32_t L_9;
L_9 = LinkedList_1_get_Count_m042F42A43FB095ABBEF2D06601BA8F42F1C18F02_inline(L_8, LinkedList_1_get_Count_m042F42A43FB095ABBEF2D06601BA8F42F1C18F02_RuntimeMethod_var);
if ((((int32_t)L_9) <= ((int32_t)0)))
{
goto IL_00a6_2;
}
}
{
il2cpp_codegen_runtime_class_init_inline(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2* L_10 = ((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_NewQueues_1;
V_9 = L_10;
V_10 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_009a_2:
{// begin finally (depth: 3)
{
bool L_11 = V_10;
if (!L_11)
{
goto IL_00a5_2;
}
}
{
LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2* L_12 = V_9;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_12, NULL);
}
IL_00a5_2:
{
return;
}
}// end finally (depth: 3)
});
try
{// begin try (depth: 3)
{
LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2* L_13 = V_9;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_13, (&V_10), NULL);
il2cpp_codegen_runtime_class_init_inline(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2* L_14 = ((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_NewQueues_1;
NullCheck(L_14);
LinkedListNode_1_t8B8D12143248A5FB82DF08BEFD95EF4C426E67FA* L_15;
L_15 = LinkedList_1_get_First_m5B5A0C7B81CBD5C40FA468D902307348D34EC0D4_inline(L_14, LinkedList_1_get_First_m5B5A0C7B81CBD5C40FA468D902307348D34EC0D4_RuntimeMethod_var);
V_11 = L_15;
goto IL_0094_3;
}
IL_0070_3:
{
il2cpp_codegen_runtime_class_init_inline(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2* L_16 = ((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_NewQueues_1;
LinkedListNode_1_t8B8D12143248A5FB82DF08BEFD95EF4C426E67FA* L_17 = V_11;
NullCheck(L_16);
LinkedList_1_Remove_m46FC492751187095D1D203309443E26B22D52473(L_16, L_17, LinkedList_1_Remove_m46FC492751187095D1D203309443E26B22D52473_RuntimeMethod_var);
LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2* L_18 = ((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_Queues_0;
LinkedListNode_1_t8B8D12143248A5FB82DF08BEFD95EF4C426E67FA* L_19 = V_11;
NullCheck(L_18);
LinkedList_1_AddLast_mFC009DB4A45FE723FD7912EBCF9D2EE9E3C73F6A(L_18, L_19, LinkedList_1_AddLast_mFC009DB4A45FE723FD7912EBCF9D2EE9E3C73F6A_RuntimeMethod_var);
LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2* L_20 = ((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_NewQueues_1;
NullCheck(L_20);
LinkedListNode_1_t8B8D12143248A5FB82DF08BEFD95EF4C426E67FA* L_21;
L_21 = LinkedList_1_get_First_m5B5A0C7B81CBD5C40FA468D902307348D34EC0D4_inline(L_20, LinkedList_1_get_First_m5B5A0C7B81CBD5C40FA468D902307348D34EC0D4_RuntimeMethod_var);
V_11 = L_21;
}
IL_0094_3:
{
LinkedListNode_1_t8B8D12143248A5FB82DF08BEFD95EF4C426E67FA* L_22 = V_11;
if (L_22)
{
goto IL_0070_3;
}
}
{
goto IL_00a6_2;
}
}// end try (depth: 3)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00a6_2:
{
int32_t L_23;
L_23 = Environment_get_TickCount_m3499A4943E060ECB90E790A097D9691448AD1276(NULL);
V_3 = L_23;
V_4 = 0;
V_5 = (bool)0;
il2cpp_codegen_runtime_class_init_inline(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2* L_24 = ((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_Queues_0;
NullCheck(L_24);
LinkedListNode_1_t8B8D12143248A5FB82DF08BEFD95EF4C426E67FA* L_25;
L_25 = LinkedList_1_get_First_m5B5A0C7B81CBD5C40FA468D902307348D34EC0D4_inline(L_24, LinkedList_1_get_First_m5B5A0C7B81CBD5C40FA468D902307348D34EC0D4_RuntimeMethod_var);
V_12 = L_25;
goto IL_0119_2;
}
IL_00c0_2:
{
LinkedListNode_1_t8B8D12143248A5FB82DF08BEFD95EF4C426E67FA* L_26 = V_12;
NullCheck(L_26);
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_27;
L_27 = LinkedListNode_1_get_Value_m70875C72E64ECAC678D5E5DC7F5407EDD711E74F_inline(L_26, LinkedListNode_1_get_Value_m70875C72E64ECAC678D5E5DC7F5407EDD711E74F_RuntimeMethod_var);
NullCheck(L_27);
RuntimeObject* L_28;
L_28 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(6 /* System.Object System.WeakReference::get_Target() */, L_27);
V_13 = ((TimerQueue_tAB38C0ABB8EDA32D28106F9D5DF595FBD20CF8FB*)CastclassClass((RuntimeObject*)L_28, TimerQueue_tAB38C0ABB8EDA32D28106F9D5DF595FBD20CF8FB_il2cpp_TypeInfo_var));
TimerQueue_tAB38C0ABB8EDA32D28106F9D5DF595FBD20CF8FB* L_29 = V_13;
if (L_29)
{
goto IL_00ee_2;
}
}
{
LinkedListNode_1_t8B8D12143248A5FB82DF08BEFD95EF4C426E67FA* L_30 = V_12;
NullCheck(L_30);
LinkedListNode_1_t8B8D12143248A5FB82DF08BEFD95EF4C426E67FA* L_31;
L_31 = LinkedListNode_1_get_Next_m9AD84867FD812771D97DE4B3EA139B9FFF6AAD02(L_30, LinkedListNode_1_get_Next_m9AD84867FD812771D97DE4B3EA139B9FFF6AAD02_RuntimeMethod_var);
il2cpp_codegen_runtime_class_init_inline(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
LinkedList_1_t4BE7B49064C9D529821A6D7F9ADDD6962D130DD2* L_32 = ((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_Queues_0;
LinkedListNode_1_t8B8D12143248A5FB82DF08BEFD95EF4C426E67FA* L_33 = V_12;
NullCheck(L_32);
LinkedList_1_Remove_m46FC492751187095D1D203309443E26B22D52473(L_32, L_33, LinkedList_1_Remove_m46FC492751187095D1D203309443E26B22D52473_RuntimeMethod_var);
V_12 = L_31;
goto IL_0119_2;
}
IL_00ee_2:
{
TimerQueue_tAB38C0ABB8EDA32D28106F9D5DF595FBD20CF8FB* L_34 = V_13;
NullCheck(L_34);
bool L_35;
L_35 = TimerQueue_Fire_mC3E66C373A87AF5794C3F8727B93B4FB9B15B70B(L_34, (&V_14), NULL);
if (!L_35)
{
goto IL_0110_2;
}
}
{
bool L_36 = V_5;
if (!L_36)
{
goto IL_0109_2;
}
}
{
int32_t L_37 = V_3;
int32_t L_38 = V_4;
int32_t L_39 = V_14;
il2cpp_codegen_runtime_class_init_inline(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
bool L_40;
L_40 = TimerThread_IsTickBetween_m952A581DFA7C61EC0D553E7DFB9A4FFDE1685BCE(L_37, L_38, L_39, NULL);
if (!L_40)
{
goto IL_0110_2;
}
}
IL_0109_2:
{
int32_t L_41 = V_14;
V_4 = L_41;
V_5 = (bool)1;
}
IL_0110_2:
{
LinkedListNode_1_t8B8D12143248A5FB82DF08BEFD95EF4C426E67FA* L_42 = V_12;
NullCheck(L_42);
LinkedListNode_1_t8B8D12143248A5FB82DF08BEFD95EF4C426E67FA* L_43;
L_43 = LinkedListNode_1_get_Next_m9AD84867FD812771D97DE4B3EA139B9FFF6AAD02(L_42, LinkedListNode_1_get_Next_m9AD84867FD812771D97DE4B3EA139B9FFF6AAD02_RuntimeMethod_var);
V_12 = L_43;
}
IL_0119_2:
{
LinkedListNode_1_t8B8D12143248A5FB82DF08BEFD95EF4C426E67FA* L_44 = V_12;
if (L_44)
{
goto IL_00c0_2;
}
}
{
int32_t L_45;
L_45 = Environment_get_TickCount_m3499A4943E060ECB90E790A097D9691448AD1276(NULL);
V_6 = L_45;
bool L_46 = V_5;
if (L_46)
{
goto IL_012f_2;
}
}
{
G_B29_0 = ((int32_t)30000);
goto IL_0150_2;
}
IL_012f_2:
{
int32_t L_47 = V_3;
int32_t L_48 = V_4;
int32_t L_49 = V_6;
il2cpp_codegen_runtime_class_init_inline(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
bool L_50;
L_50 = TimerThread_IsTickBetween_m952A581DFA7C61EC0D553E7DFB9A4FFDE1685BCE(L_47, L_48, L_49, NULL);
if (L_50)
{
goto IL_013e_2;
}
}
{
G_B29_0 = 0;
goto IL_0150_2;
}
IL_013e_2:
{
int32_t L_51 = V_4;
int32_t L_52 = V_6;
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
uint32_t L_53;
L_53 = Math_Min_m1C7DD94B2E3BECC3C15A8B6899E88178DC539397(((int32_t)il2cpp_codegen_subtract(L_51, L_52)), ((int32_t)2147483632), NULL);
G_B29_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_53, ((int32_t)15)));
}
IL_0150_2:
{
V_7 = G_B29_0;
il2cpp_codegen_runtime_class_init_inline(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
WaitHandleU5BU5D_t85D0945086BF1BF6008422B3DD937ECEC35A8108* L_54 = ((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_ThreadEvents_5;
int32_t L_55 = V_7;
il2cpp_codegen_runtime_class_init_inline(WaitHandle_t08F8DB54593B241FE32E0DD0BD3D82785D3AE3D8_il2cpp_TypeInfo_var);
int32_t L_56;
L_56 = WaitHandle_WaitAny_mC3FD8A389C6FC1FD414A81164B71520518AB3B9D(L_54, L_55, (bool)0, NULL);
V_8 = L_56;
int32_t L_57 = V_8;
if (L_57)
{
goto IL_0169_2;
}
}
{
V_2 = (bool)0;
goto IL_01aa_2;
}
IL_0169_2:
{
int32_t L_58 = V_8;
if ((!(((uint32_t)L_58) == ((uint32_t)((int32_t)258)))))
{
goto IL_0042_2;
}
}
{
bool L_59 = V_5;
if (L_59)
{
goto IL_0042_2;
}
}
{
il2cpp_codegen_runtime_class_init_inline(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
int32_t L_60;
L_60 = Interlocked_CompareExchange_m1B1A89142CF77793A6B396019B98265E6EE306FA((&((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_ThreadState_2), 0, 1, NULL);
AutoResetEvent_t7F792F3F7AD11BEF7B411E771D98E5266A8CE7C0* L_61 = ((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_ThreadReadyEvent_3;
NullCheck(L_61);
bool L_62;
L_62 = VirtualFuncInvoker2< bool, int32_t, bool >::Invoke(8 /* System.Boolean System.Threading.WaitHandle::WaitOne(System.Int32,System.Boolean) */, L_61, 0, (bool)0);
if (!L_62)
{
goto IL_01a8_2;
}
}
{
il2cpp_codegen_runtime_class_init_inline(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
int32_t L_63;
L_63 = Interlocked_CompareExchange_m1B1A89142CF77793A6B396019B98265E6EE306FA((&((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_ThreadState_2), 1, 0, NULL);
if (!L_63)
{
goto IL_0042_2;
}
}
IL_01a8_2:
{
V_2 = (bool)0;
}
IL_01aa_2:
{
goto IL_01c7_1;
}
}// end try (depth: 2)
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_01ac_1;
}
throw e;
}
CATCH_01ac_1:
{// begin catch(System.Exception)
{
bool L_64;
L_64 = NclUtilities_IsFatal_m0B4EB55E9621759F8177F84710FBA8AB09074DB0(((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*)), NULL);
if (!L_64)
{
goto IL_01b5_1;
}
}
{
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimerThread_ThreadProc_m089CDAA1EF69AA667A140FC6B6DFCA8501376FD1_RuntimeMethod_var)));
}
IL_01b5_1:
{
bool L_65;
L_65 = Logging_get_On_mE613A75366C51B02DEC967952C3C0DD852156B02(NULL);
Thread_Sleep_m63B7D29DC735584F4D80373E48C91B34FF32D1A0(((int32_t)1000), NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_01c7_1;
}
}// end catch (depth: 2)
IL_01c7_1:
{
bool L_66 = V_2;
if (L_66)
{
goto IL_0036_1;
}
}
{
goto IL_01d9;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_01d9:
{
return;
}
}
// System.Void System.Net.TimerThread::StopTimerThread()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimerThread_StopTimerThread_m1E3A2BE926509E8E445BA5C00BA5B83C8283EDCE (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
int32_t L_0;
L_0 = Interlocked_Exchange_m1D23CC1BEB47E20FA336837BF97C292AE6B17629((&((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_ThreadState_2), 2, NULL);
ManualResetEvent_t63959486AA41A113A4353D0BF4A68E77EBA0A158* L_1 = ((TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_StaticFields*)il2cpp_codegen_static_fields_for(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var))->___s_ThreadShutdownEvent_4;
NullCheck(L_1);
bool L_2;
L_2 = EventWaitHandle_Set_mDF98D67F214714A9590DF82A1C51D3D851281E4D(L_1, NULL);
return;
}
}
// System.Boolean System.Net.TimerThread::IsTickBetween(System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimerThread_IsTickBetween_m952A581DFA7C61EC0D553E7DFB9A4FFDE1685BCE (int32_t ___start0, int32_t ___end1, int32_t ___comparand2, const RuntimeMethod* method)
{
{
int32_t L_0 = ___start0;
int32_t L_1 = ___comparand2;
int32_t L_2 = ___end1;
int32_t L_3 = ___comparand2;
int32_t L_4 = ___start0;
int32_t L_5 = ___end1;
return (bool)((((int32_t)((((int32_t)((((int32_t)((((int32_t)((((int32_t)L_0) > ((int32_t)L_1))? 1 : 0)) == ((int32_t)0))? 1 : 0)) == ((int32_t)((((int32_t)((((int32_t)L_2) > ((int32_t)L_3))? 1 : 0)) == ((int32_t)0))? 1 : 0)))? 1 : 0)) == ((int32_t)((((int32_t)((((int32_t)L_4) > ((int32_t)L_5))? 1 : 0)) == ((int32_t)0))? 1 : 0)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Void System.Net.TimerThread::OnDomainUnload(System.Object,System.EventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimerThread_OnDomainUnload_m789618CB693C29737319DBD4437199D0346FAF60 (RuntimeObject* ___sender0, EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* ___e1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
il2cpp_codegen_runtime_class_init_inline(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
TimerThread_StopTimerThread_m1E3A2BE926509E8E445BA5C00BA5B83C8283EDCE(NULL);
goto IL_000a;
}// 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_0007;
}
throw e;
}
CATCH_0007:
{// begin catch(System.Object)
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_000a;
}// end catch (depth: 1)
IL_000a:
{
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.TimerThread/Queue::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Queue__ctor_mD131B17E1C13BF9B3E8EBF5A909ACB274930B0A0 (Queue_t644DC21212BC432819522EDA395EB4562BE2CC47* __this, int32_t ___durationMilliseconds0, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
int32_t L_0 = ___durationMilliseconds0;
__this->___m_DurationMilliseconds_0 = L_0;
return;
}
}
// System.Int32 System.Net.TimerThread/Queue::get_Duration()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Queue_get_Duration_m1249509895EBD084C625F955B7B5A73B4E07DF0E (Queue_t644DC21212BC432819522EDA395EB4562BE2CC47* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___m_DurationMilliseconds_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.TimerThread/Timer::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Timer__ctor_m74E9AEA5FB4F7DDDD8D9089D6F9C9EF7A3A96F3E (Timer_t251C62B59B7D01C94C28C6162B45228C0276C695* __this, int32_t ___durationMilliseconds0, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
int32_t L_0 = ___durationMilliseconds0;
__this->___m_DurationMilliseconds_1 = L_0;
int32_t L_1;
L_1 = Environment_get_TickCount_m3499A4943E060ECB90E790A097D9691448AD1276(NULL);
__this->___m_StartTimeMilliseconds_0 = L_1;
return;
}
}
// System.Int32 System.Net.TimerThread/Timer::get_StartTime()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Timer_get_StartTime_m7F6B27CEC188763E8D261933D8E40E1CDC3820D4 (Timer_t251C62B59B7D01C94C28C6162B45228C0276C695* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___m_StartTimeMilliseconds_0;
return L_0;
}
}
// System.Int32 System.Net.TimerThread/Timer::get_Expiration()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Timer_get_Expiration_m3D63AB176553C0823D6CF30897DF9C1235C63DA5 (Timer_t251C62B59B7D01C94C28C6162B45228C0276C695* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___m_StartTimeMilliseconds_0;
int32_t L_1 = __this->___m_DurationMilliseconds_1;
return ((int32_t)il2cpp_codegen_add(L_0, L_1));
}
}
// System.Void System.Net.TimerThread/Timer::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Timer_Dispose_m266A7BD332741D89F4AA204ECEA9BD4784AFC79E (Timer_t251C62B59B7D01C94C28C6162B45228C0276C695* __this, const RuntimeMethod* method)
{
{
bool L_0;
L_0 = VirtualFuncInvoker0< bool >::Invoke(5 /* System.Boolean System.Net.TimerThread/Timer::Cancel() */, __this);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
void Callback_Invoke_mE5F4E02D25CB58B34E93A55CC21418F00B55C1BE_Multicast(Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835* __this, Timer_t251C62B59B7D01C94C28C6162B45228C0276C695* ___timer0, int32_t ___timeNoticed1, RuntimeObject* ___context2, const RuntimeMethod* method)
{
il2cpp_array_size_t length = __this->___delegates_13->max_length;
Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates_13->GetAddressAtUnchecked(0));
typedef void (*FunctionPointerType) (Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835* __this, Timer_t251C62B59B7D01C94C28C6162B45228C0276C695* ___timer0, int32_t ___timeNoticed1, RuntimeObject* ___context2, const RuntimeMethod* method);
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835* currentDelegate = reinterpret_cast<Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835*>(delegatesToInvoke[i]);
((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___timer0, ___timeNoticed1, ___context2, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
}
void Callback_Invoke_mE5F4E02D25CB58B34E93A55CC21418F00B55C1BE_Open(Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835* __this, Timer_t251C62B59B7D01C94C28C6162B45228C0276C695* ___timer0, int32_t ___timeNoticed1, RuntimeObject* ___context2, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (Timer_t251C62B59B7D01C94C28C6162B45228C0276C695*, int32_t, RuntimeObject*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(___timer0, ___timeNoticed1, ___context2, method);
}
void Callback_Invoke_mE5F4E02D25CB58B34E93A55CC21418F00B55C1BE_Closed(Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835* __this, Timer_t251C62B59B7D01C94C28C6162B45228C0276C695* ___timer0, int32_t ___timeNoticed1, RuntimeObject* ___context2, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, Timer_t251C62B59B7D01C94C28C6162B45228C0276C695*, int32_t, RuntimeObject*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___timer0, ___timeNoticed1, ___context2, method);
}
void Callback_Invoke_mE5F4E02D25CB58B34E93A55CC21418F00B55C1BE_OpenStaticInvoker(Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835* __this, Timer_t251C62B59B7D01C94C28C6162B45228C0276C695* ___timer0, int32_t ___timeNoticed1, RuntimeObject* ___context2, const RuntimeMethod* method)
{
InvokerActionInvoker3< Timer_t251C62B59B7D01C94C28C6162B45228C0276C695*, int32_t, RuntimeObject* >::Invoke(__this->___method_ptr_0, method, NULL, ___timer0, ___timeNoticed1, ___context2);
}
void Callback_Invoke_mE5F4E02D25CB58B34E93A55CC21418F00B55C1BE_ClosedStaticInvoker(Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835* __this, Timer_t251C62B59B7D01C94C28C6162B45228C0276C695* ___timer0, int32_t ___timeNoticed1, RuntimeObject* ___context2, const RuntimeMethod* method)
{
InvokerActionInvoker4< RuntimeObject*, Timer_t251C62B59B7D01C94C28C6162B45228C0276C695*, int32_t, RuntimeObject* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___timer0, ___timeNoticed1, ___context2);
}
void Callback_Invoke_mE5F4E02D25CB58B34E93A55CC21418F00B55C1BE_OpenVirtual(Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835* __this, Timer_t251C62B59B7D01C94C28C6162B45228C0276C695* ___timer0, int32_t ___timeNoticed1, RuntimeObject* ___context2, const RuntimeMethod* method)
{
VirtualActionInvoker2< int32_t, RuntimeObject* >::Invoke(il2cpp_codegen_method_get_slot(method), ___timer0, ___timeNoticed1, ___context2);
}
void Callback_Invoke_mE5F4E02D25CB58B34E93A55CC21418F00B55C1BE_OpenInterface(Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835* __this, Timer_t251C62B59B7D01C94C28C6162B45228C0276C695* ___timer0, int32_t ___timeNoticed1, RuntimeObject* ___context2, const RuntimeMethod* method)
{
InterfaceActionInvoker2< int32_t, RuntimeObject* >::Invoke(il2cpp_codegen_method_get_slot(method), il2cpp_codegen_method_get_declaring_type(method), ___timer0, ___timeNoticed1, ___context2);
}
void Callback_Invoke_mE5F4E02D25CB58B34E93A55CC21418F00B55C1BE_OpenGenericVirtual(Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835* __this, Timer_t251C62B59B7D01C94C28C6162B45228C0276C695* ___timer0, int32_t ___timeNoticed1, RuntimeObject* ___context2, const RuntimeMethod* method)
{
GenericVirtualActionInvoker2< int32_t, RuntimeObject* >::Invoke(method, ___timer0, ___timeNoticed1, ___context2);
}
void Callback_Invoke_mE5F4E02D25CB58B34E93A55CC21418F00B55C1BE_OpenGenericInterface(Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835* __this, Timer_t251C62B59B7D01C94C28C6162B45228C0276C695* ___timer0, int32_t ___timeNoticed1, RuntimeObject* ___context2, const RuntimeMethod* method)
{
GenericInterfaceActionInvoker2< int32_t, RuntimeObject* >::Invoke(method, ___timer0, ___timeNoticed1, ___context2);
}
// System.Void System.Net.TimerThread/Callback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Callback__ctor_mE36A85A258851A46EE477BBE1E87B5751C3CC9A9 (Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->___method_ptr_0 = il2cpp_codegen_get_virtual_call_method_pointer((RuntimeMethod*)___method1);
__this->___method_3 = ___method1;
__this->___m_target_2 = ___object0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target_2), (void*)___object0);
int methodCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___method1);
if (MethodIsStatic((RuntimeMethod*)___method1))
{
bool isOpen = methodCount == 3;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&Callback_Invoke_mE5F4E02D25CB58B34E93A55CC21418F00B55C1BE_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&Callback_Invoke_mE5F4E02D25CB58B34E93A55CC21418F00B55C1BE_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&Callback_Invoke_mE5F4E02D25CB58B34E93A55CC21418F00B55C1BE_Open;
else
__this->___invoke_impl_1 = (intptr_t)&Callback_Invoke_mE5F4E02D25CB58B34E93A55CC21418F00B55C1BE_Closed;
}
else
{
bool isOpen = methodCount == 2;
if (isOpen)
{
if (__this->___method_is_virtual_12)
{
if (il2cpp_codegen_method_is_generic_instance_method((RuntimeMethod*)___method1))
if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___method1))
__this->___invoke_impl_1 = (intptr_t)&Callback_Invoke_mE5F4E02D25CB58B34E93A55CC21418F00B55C1BE_OpenGenericInterface;
else
__this->___invoke_impl_1 = (intptr_t)&Callback_Invoke_mE5F4E02D25CB58B34E93A55CC21418F00B55C1BE_OpenGenericVirtual;
else
if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___method1))
__this->___invoke_impl_1 = (intptr_t)&Callback_Invoke_mE5F4E02D25CB58B34E93A55CC21418F00B55C1BE_OpenInterface;
else
__this->___invoke_impl_1 = (intptr_t)&Callback_Invoke_mE5F4E02D25CB58B34E93A55CC21418F00B55C1BE_OpenVirtual;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&Callback_Invoke_mE5F4E02D25CB58B34E93A55CC21418F00B55C1BE_Open;
}
}
else
{
__this->___invoke_impl_1 = (intptr_t)&Callback_Invoke_mE5F4E02D25CB58B34E93A55CC21418F00B55C1BE_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&Callback_Invoke_mE5F4E02D25CB58B34E93A55CC21418F00B55C1BE_Multicast;
}
// System.Void System.Net.TimerThread/Callback::Invoke(System.Net.TimerThread/Timer,System.Int32,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Callback_Invoke_mE5F4E02D25CB58B34E93A55CC21418F00B55C1BE (Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835* __this, Timer_t251C62B59B7D01C94C28C6162B45228C0276C695* ___timer0, int32_t ___timeNoticed1, RuntimeObject* ___context2, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835* __this, Timer_t251C62B59B7D01C94C28C6162B45228C0276C695* ___timer0, int32_t ___timeNoticed1, RuntimeObject* ___context2, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___timer0, ___timeNoticed1, ___context2, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Net.TimerThread/TimerQueue::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimerQueue__ctor_mCB1C60FF084C13E97E4FC8C4E56F6264649285D9 (TimerQueue_tAB38C0ABB8EDA32D28106F9D5DF595FBD20CF8FB* __this, int32_t ___durationMilliseconds0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimerNode_t21C7B25E858618C4613473EB473193B566380994_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___durationMilliseconds0;
Queue__ctor_mD131B17E1C13BF9B3E8EBF5A909ACB274930B0A0(__this, L_0, NULL);
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_1 = (TimerNode_t21C7B25E858618C4613473EB473193B566380994*)il2cpp_codegen_object_new(TimerNode_t21C7B25E858618C4613473EB473193B566380994_il2cpp_TypeInfo_var);
NullCheck(L_1);
TimerNode__ctor_m259A5ECB2BA964982D8CB975EE945899CB14EA6A(L_1, NULL);
__this->___m_Timers_2 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Timers_2), (void*)L_1);
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_2 = __this->___m_Timers_2;
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_3 = __this->___m_Timers_2;
NullCheck(L_2);
TimerNode_set_Next_m77F9833E3DA4B66D565A10F0409C15B6B7677AB0_inline(L_2, L_3, NULL);
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_4 = __this->___m_Timers_2;
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_5 = __this->___m_Timers_2;
NullCheck(L_4);
TimerNode_set_Prev_m3A7D7FD5A4B654793FB48D0BAF7D8E0638BB1E47_inline(L_4, L_5, NULL);
return;
}
}
// System.Net.TimerThread/Timer System.Net.TimerThread/TimerQueue::CreateTimer(System.Net.TimerThread/Callback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Timer_t251C62B59B7D01C94C28C6162B45228C0276C695* TimerQueue_CreateTimer_mBFF93FE28C899E271ECF185E708F2386AE226FD3 (TimerQueue_tAB38C0ABB8EDA32D28106F9D5DF595FBD20CF8FB* __this, Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835* ___callback0, RuntimeObject* ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimerNode_t21C7B25E858618C4613473EB473193B566380994_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TimerNode_t21C7B25E858618C4613473EB473193B566380994* V_0 = NULL;
bool V_1 = false;
TimerNode_t21C7B25E858618C4613473EB473193B566380994* V_2 = NULL;
bool V_3 = false;
{
Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835* L_0 = ___callback0;
RuntimeObject* L_1 = ___context1;
int32_t L_2;
L_2 = Queue_get_Duration_m1249509895EBD084C625F955B7B5A73B4E07DF0E_inline(__this, NULL);
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_3 = __this->___m_Timers_2;
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_4 = (TimerNode_t21C7B25E858618C4613473EB473193B566380994*)il2cpp_codegen_object_new(TimerNode_t21C7B25E858618C4613473EB473193B566380994_il2cpp_TypeInfo_var);
NullCheck(L_4);
TimerNode__ctor_mC170858DAB4706C116DA175AE8C42D6A7E23B6AA(L_4, L_0, L_1, L_2, L_3, NULL);
V_0 = L_4;
V_1 = (bool)0;
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_5 = __this->___m_Timers_2;
V_2 = L_5;
V_3 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_009b:
{// begin finally (depth: 1)
{
bool L_6 = V_3;
if (!L_6)
{
goto IL_00a4;
}
}
{
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_7 = V_2;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_7, NULL);
}
IL_00a4:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_8 = V_2;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_8, (&V_3), NULL);
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_9 = __this->___m_Timers_2;
NullCheck(L_9);
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_10;
L_10 = TimerNode_get_Next_mB0E6D37D592DC92CBED33A26B0362F00959578D5_inline(L_9, NULL);
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_11 = __this->___m_Timers_2;
if ((!(((RuntimeObject*)(TimerNode_t21C7B25E858618C4613473EB473193B566380994*)L_10) == ((RuntimeObject*)(TimerNode_t21C7B25E858618C4613473EB473193B566380994*)L_11))))
{
goto IL_005f_1;
}
}
{
intptr_t L_12 = __this->___m_ThisHandle_1;
bool L_13;
L_13 = IntPtr_op_Equality_m73759B51FE326460AC87A0E386480226EF2FABED(L_12, (0), NULL);
if (!L_13)
{
goto IL_005d_1;
}
}
{
GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC L_14;
L_14 = GCHandle_Alloc_m74B02418DDB89BF52FA0F7412D14E6D19E1949C6(__this, NULL);
intptr_t L_15;
L_15 = GCHandle_op_Explicit_m67A1C3E8BC6C8163C5775AE62A514000D00CD9B6_inline(L_14, NULL);
__this->___m_ThisHandle_1 = L_15;
}
IL_005d_1:
{
V_1 = (bool)1;
}
IL_005f_1:
{
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_16 = V_0;
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_17 = __this->___m_Timers_2;
NullCheck(L_16);
TimerNode_set_Next_m77F9833E3DA4B66D565A10F0409C15B6B7677AB0_inline(L_16, L_17, NULL);
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_18 = V_0;
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_19 = __this->___m_Timers_2;
NullCheck(L_19);
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_20;
L_20 = TimerNode_get_Prev_m358430B0F3DD4E039E38962A04118F937E6F5E4D_inline(L_19, NULL);
NullCheck(L_18);
TimerNode_set_Prev_m3A7D7FD5A4B654793FB48D0BAF7D8E0638BB1E47_inline(L_18, L_20, NULL);
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_21 = __this->___m_Timers_2;
NullCheck(L_21);
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_22;
L_22 = TimerNode_get_Prev_m358430B0F3DD4E039E38962A04118F937E6F5E4D_inline(L_21, NULL);
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_23 = V_0;
NullCheck(L_22);
TimerNode_set_Next_m77F9833E3DA4B66D565A10F0409C15B6B7677AB0_inline(L_22, L_23, NULL);
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_24 = __this->___m_Timers_2;
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_25 = V_0;
NullCheck(L_24);
TimerNode_set_Prev_m3A7D7FD5A4B654793FB48D0BAF7D8E0638BB1E47_inline(L_24, L_25, NULL);
goto IL_00a5;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00a5:
{
bool L_26 = V_1;
if (!L_26)
{
goto IL_00ad;
}
}
{
il2cpp_codegen_runtime_class_init_inline(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
TimerThread_Prod_m73CCF5CF05935284BFCD40666A2BA524F75D105C(NULL);
}
IL_00ad:
{
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_27 = V_0;
return L_27;
}
}
// System.Boolean System.Net.TimerThread/TimerQueue::Fire(System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimerQueue_Fire_mC3E66C373A87AF5794C3F8727B93B4FB9B15B70B (TimerQueue_tAB38C0ABB8EDA32D28106F9D5DF595FBD20CF8FB* __this, int32_t* ___nextExpiration0, 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;
}
TimerNode_t21C7B25E858618C4613473EB473193B566380994* V_0 = NULL;
TimerNode_t21C7B25E858618C4613473EB473193B566380994* V_1 = NULL;
bool V_2 = false;
GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC V_3;
memset((&V_3), 0, sizeof(V_3));
bool V_4 = false;
IL_0000:
{
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_0 = __this->___m_Timers_2;
NullCheck(L_0);
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_1;
L_1 = TimerNode_get_Next_mB0E6D37D592DC92CBED33A26B0362F00959578D5_inline(L_0, NULL);
V_0 = L_1;
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_2 = V_0;
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_3 = __this->___m_Timers_2;
if ((!(((RuntimeObject*)(TimerNode_t21C7B25E858618C4613473EB473193B566380994*)L_2) == ((RuntimeObject*)(TimerNode_t21C7B25E858618C4613473EB473193B566380994*)L_3))))
{
goto IL_007f;
}
}
{
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_4 = __this->___m_Timers_2;
V_1 = L_4;
V_2 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0075:
{// begin finally (depth: 1)
{
bool L_5 = V_2;
if (!L_5)
{
goto IL_007e;
}
}
{
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_6 = V_1;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_6, NULL);
}
IL_007e:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_7 = V_1;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_7, (&V_2), NULL);
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_8 = __this->___m_Timers_2;
NullCheck(L_8);
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_9;
L_9 = TimerNode_get_Next_mB0E6D37D592DC92CBED33A26B0362F00959578D5_inline(L_8, NULL);
V_0 = L_9;
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_10 = V_0;
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_11 = __this->___m_Timers_2;
if ((!(((RuntimeObject*)(TimerNode_t21C7B25E858618C4613473EB473193B566380994*)L_10) == ((RuntimeObject*)(TimerNode_t21C7B25E858618C4613473EB473193B566380994*)L_11))))
{
goto IL_0073_1;
}
}
{
intptr_t L_12 = __this->___m_ThisHandle_1;
bool L_13;
L_13 = IntPtr_op_Inequality_m2F715312CBFCE7E1A81D0689F68B97218E37E5D1(L_12, (0), NULL);
if (!L_13)
{
goto IL_006b_1;
}
}
{
intptr_t L_14 = __this->___m_ThisHandle_1;
GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC L_15;
L_15 = GCHandle_op_Explicit_m500B99BF54D923E624C5235A4B370A37C8B7050C(L_14, NULL);
V_3 = L_15;
GCHandle_Free_m1320A260E487EB1EA6D95F9E54BFFCB5A4EF83A3((&V_3), NULL);
__this->___m_ThisHandle_1 = (0);
}
IL_006b_1:
{
int32_t* L_16 = ___nextExpiration0;
*((int32_t*)L_16) = (int32_t)0;
V_4 = (bool)0;
goto IL_0094;
}
IL_0073_1:
{
goto IL_007f;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_007f:
{
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_17 = V_0;
NullCheck(L_17);
bool L_18;
L_18 = TimerNode_Fire_mAB8C15270DBD595C98435414C10C82426BBB43F1(L_17, NULL);
if (L_18)
{
goto IL_0000;
}
}
{
int32_t* L_19 = ___nextExpiration0;
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_20 = V_0;
NullCheck(L_20);
int32_t L_21;
L_21 = Timer_get_Expiration_m3D63AB176553C0823D6CF30897DF9C1235C63DA5(L_20, NULL);
*((int32_t*)L_19) = (int32_t)L_21;
return (bool)1;
}
IL_0094:
{
bool L_22 = V_4;
return L_22;
}
}
#ifdef __clang__
#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.TimerThread/InfiniteTimerQueue::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InfiniteTimerQueue__ctor_mC47879DB811308BFE6D5D4613791A81CCA215501 (InfiniteTimerQueue_tFE425952008C1E3FF928211F9325D43CAA8106D5* __this, const RuntimeMethod* method)
{
{
Queue__ctor_mD131B17E1C13BF9B3E8EBF5A909ACB274930B0A0(__this, (-1), NULL);
return;
}
}
// System.Net.TimerThread/Timer System.Net.TimerThread/InfiniteTimerQueue::CreateTimer(System.Net.TimerThread/Callback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Timer_t251C62B59B7D01C94C28C6162B45228C0276C695* InfiniteTimerQueue_CreateTimer_mD9AB0B0C188C3B7D95FB9ACD0D5E62EE798763CE (InfiniteTimerQueue_tFE425952008C1E3FF928211F9325D43CAA8106D5* __this, Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835* ___callback0, RuntimeObject* ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InfiniteTimer_tDF656910621727F5F5BCBEA8B9FBE9398C783159_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
InfiniteTimer_tDF656910621727F5F5BCBEA8B9FBE9398C783159* L_0 = (InfiniteTimer_tDF656910621727F5F5BCBEA8B9FBE9398C783159*)il2cpp_codegen_object_new(InfiniteTimer_tDF656910621727F5F5BCBEA8B9FBE9398C783159_il2cpp_TypeInfo_var);
NullCheck(L_0);
InfiniteTimer__ctor_mE68D9F3FAA233B2BD5DCF61989ACFB5704F99B06(L_0, 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.Net.TimerThread/TimerNode::.ctor(System.Net.TimerThread/Callback,System.Object,System.Int32,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimerNode__ctor_mC170858DAB4706C116DA175AE8C42D6A7E23B6AA (TimerNode_t21C7B25E858618C4613473EB473193B566380994* __this, Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835* ___callback0, RuntimeObject* ___context1, int32_t ___durationMilliseconds2, RuntimeObject* ___queueLock3, const RuntimeMethod* method)
{
{
int32_t L_0 = ___durationMilliseconds2;
Timer__ctor_m74E9AEA5FB4F7DDDD8D9089D6F9C9EF7A3A96F3E(__this, L_0, NULL);
Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835* L_1 = ___callback0;
if (!L_1)
{
goto IL_0018;
}
}
{
Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835* L_2 = ___callback0;
__this->___m_Callback_3 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Callback_3), (void*)L_2);
RuntimeObject* L_3 = ___context1;
__this->___m_Context_4 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Context_4), (void*)L_3);
}
IL_0018:
{
__this->___m_TimerState_2 = 0;
RuntimeObject* L_4 = ___queueLock3;
__this->___m_QueueLock_5 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_QueueLock_5), (void*)L_4);
return;
}
}
// System.Void System.Net.TimerThread/TimerNode::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimerNode__ctor_m259A5ECB2BA964982D8CB975EE945899CB14EA6A (TimerNode_t21C7B25E858618C4613473EB473193B566380994* __this, const RuntimeMethod* method)
{
{
Timer__ctor_m74E9AEA5FB4F7DDDD8D9089D6F9C9EF7A3A96F3E(__this, 0, NULL);
__this->___m_TimerState_2 = 3;
return;
}
}
// System.Boolean System.Net.TimerThread/TimerNode::get_HasExpired()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimerNode_get_HasExpired_m722335E8E4DFD0845A102D4219111E4675AAF0DE (TimerNode_t21C7B25E858618C4613473EB473193B566380994* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___m_TimerState_2;
return (bool)((((int32_t)L_0) == ((int32_t)1))? 1 : 0);
}
}
// System.Net.TimerThread/TimerNode System.Net.TimerThread/TimerNode::get_Next()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimerNode_t21C7B25E858618C4613473EB473193B566380994* TimerNode_get_Next_mB0E6D37D592DC92CBED33A26B0362F00959578D5 (TimerNode_t21C7B25E858618C4613473EB473193B566380994* __this, const RuntimeMethod* method)
{
{
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_0 = __this->___next_6;
return L_0;
}
}
// System.Void System.Net.TimerThread/TimerNode::set_Next(System.Net.TimerThread/TimerNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimerNode_set_Next_m77F9833E3DA4B66D565A10F0409C15B6B7677AB0 (TimerNode_t21C7B25E858618C4613473EB473193B566380994* __this, TimerNode_t21C7B25E858618C4613473EB473193B566380994* ___value0, const RuntimeMethod* method)
{
{
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_0 = ___value0;
__this->___next_6 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___next_6), (void*)L_0);
return;
}
}
// System.Net.TimerThread/TimerNode System.Net.TimerThread/TimerNode::get_Prev()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimerNode_t21C7B25E858618C4613473EB473193B566380994* TimerNode_get_Prev_m358430B0F3DD4E039E38962A04118F937E6F5E4D (TimerNode_t21C7B25E858618C4613473EB473193B566380994* __this, const RuntimeMethod* method)
{
{
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_0 = __this->___prev_7;
return L_0;
}
}
// System.Void System.Net.TimerThread/TimerNode::set_Prev(System.Net.TimerThread/TimerNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimerNode_set_Prev_m3A7D7FD5A4B654793FB48D0BAF7D8E0638BB1E47 (TimerNode_t21C7B25E858618C4613473EB473193B566380994* __this, TimerNode_t21C7B25E858618C4613473EB473193B566380994* ___value0, const RuntimeMethod* method)
{
{
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_0 = ___value0;
__this->___prev_7 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___prev_7), (void*)L_0);
return;
}
}
// System.Boolean System.Net.TimerThread/TimerNode::Cancel()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimerNode_Cancel_m6CAF1FDE8F05519F86383C25195AC922D5056489 (TimerNode_t21C7B25E858618C4613473EB473193B566380994* __this, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
{
int32_t L_0 = __this->___m_TimerState_2;
if (L_0)
{
goto IL_0076;
}
}
{
RuntimeObject* L_1 = __this->___m_QueueLock_5;
V_0 = L_1;
V_1 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_006c:
{// begin finally (depth: 1)
{
bool L_2 = V_1;
if (!L_2)
{
goto IL_0075;
}
}
{
RuntimeObject* L_3 = V_0;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_3, NULL);
}
IL_0075:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
RuntimeObject* L_4 = V_0;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_4, (&V_1), NULL);
int32_t L_5 = __this->___m_TimerState_2;
if (L_5)
{
goto IL_006a_1;
}
}
{
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_6;
L_6 = TimerNode_get_Next_mB0E6D37D592DC92CBED33A26B0362F00959578D5_inline(__this, NULL);
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_7;
L_7 = TimerNode_get_Prev_m358430B0F3DD4E039E38962A04118F937E6F5E4D_inline(__this, NULL);
NullCheck(L_6);
TimerNode_set_Prev_m3A7D7FD5A4B654793FB48D0BAF7D8E0638BB1E47_inline(L_6, L_7, NULL);
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_8;
L_8 = TimerNode_get_Prev_m358430B0F3DD4E039E38962A04118F937E6F5E4D_inline(__this, NULL);
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_9;
L_9 = TimerNode_get_Next_mB0E6D37D592DC92CBED33A26B0362F00959578D5_inline(__this, NULL);
NullCheck(L_8);
TimerNode_set_Next_m77F9833E3DA4B66D565A10F0409C15B6B7677AB0_inline(L_8, L_9, NULL);
TimerNode_set_Next_m77F9833E3DA4B66D565A10F0409C15B6B7677AB0_inline(__this, (TimerNode_t21C7B25E858618C4613473EB473193B566380994*)NULL, NULL);
TimerNode_set_Prev_m3A7D7FD5A4B654793FB48D0BAF7D8E0638BB1E47_inline(__this, (TimerNode_t21C7B25E858618C4613473EB473193B566380994*)NULL, NULL);
__this->___m_Callback_3 = (Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Callback_3), (void*)(Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835*)NULL);
__this->___m_Context_4 = NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Context_4), (void*)NULL);
__this->___m_TimerState_2 = 2;
V_2 = (bool)1;
goto IL_0078;
}
IL_006a_1:
{
goto IL_0076;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0076:
{
return (bool)0;
}
IL_0078:
{
bool L_10 = V_2;
return L_10;
}
}
// System.Boolean System.Net.TimerThread/TimerNode::Fire()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimerNode_Fire_mAB8C15270DBD595C98435414C10C82426BBB43F1 (TimerNode_t21C7B25E858618C4613473EB473193B566380994* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
bool V_1 = false;
RuntimeObject* V_2 = NULL;
bool V_3 = false;
RuntimeObject* V_4 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
int32_t L_0 = __this->___m_TimerState_2;
if (!L_0)
{
goto IL_000a;
}
}
{
return (bool)1;
}
IL_000a:
{
int32_t L_1;
L_1 = Environment_get_TickCount_m3499A4943E060ECB90E790A097D9691448AD1276(NULL);
V_0 = L_1;
int32_t L_2;
L_2 = Timer_get_StartTime_m7F6B27CEC188763E8D261933D8E40E1CDC3820D4_inline(__this, NULL);
int32_t L_3;
L_3 = Timer_get_Expiration_m3D63AB176553C0823D6CF30897DF9C1235C63DA5(__this, NULL);
int32_t L_4 = V_0;
il2cpp_codegen_runtime_class_init_inline(TimerThread_t8F1B2DF0AFA78CFF64E422703AF4D91B72D24E29_il2cpp_TypeInfo_var);
bool L_5;
L_5 = TimerThread_IsTickBetween_m952A581DFA7C61EC0D553E7DFB9A4FFDE1685BCE(L_2, L_3, L_4, NULL);
if (!L_5)
{
goto IL_0026;
}
}
{
return (bool)0;
}
IL_0026:
{
V_1 = (bool)0;
RuntimeObject* L_6 = __this->___m_QueueLock_5;
V_2 = L_6;
V_3 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0084:
{// begin finally (depth: 1)
{
bool L_7 = V_3;
if (!L_7)
{
goto IL_008d;
}
}
{
RuntimeObject* L_8 = V_2;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_8, NULL);
}
IL_008d:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
RuntimeObject* L_9 = V_2;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_9, (&V_3), NULL);
int32_t L_10 = __this->___m_TimerState_2;
if (L_10)
{
goto IL_0082_1;
}
}
{
__this->___m_TimerState_2 = 1;
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_11;
L_11 = TimerNode_get_Next_mB0E6D37D592DC92CBED33A26B0362F00959578D5_inline(__this, NULL);
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_12;
L_12 = TimerNode_get_Prev_m358430B0F3DD4E039E38962A04118F937E6F5E4D_inline(__this, NULL);
NullCheck(L_11);
TimerNode_set_Prev_m3A7D7FD5A4B654793FB48D0BAF7D8E0638BB1E47_inline(L_11, L_12, NULL);
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_13;
L_13 = TimerNode_get_Prev_m358430B0F3DD4E039E38962A04118F937E6F5E4D_inline(__this, NULL);
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_14;
L_14 = TimerNode_get_Next_mB0E6D37D592DC92CBED33A26B0362F00959578D5_inline(__this, NULL);
NullCheck(L_13);
TimerNode_set_Next_m77F9833E3DA4B66D565A10F0409C15B6B7677AB0_inline(L_13, L_14, NULL);
TimerNode_set_Next_m77F9833E3DA4B66D565A10F0409C15B6B7677AB0_inline(__this, (TimerNode_t21C7B25E858618C4613473EB473193B566380994*)NULL, NULL);
TimerNode_set_Prev_m3A7D7FD5A4B654793FB48D0BAF7D8E0638BB1E47_inline(__this, (TimerNode_t21C7B25E858618C4613473EB473193B566380994*)NULL, NULL);
Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835* L_15 = __this->___m_Callback_3;
V_1 = (bool)((!(((RuntimeObject*)(Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835*)L_15) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
}
IL_0082_1:
{
goto IL_008e;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_008e:
{
bool L_16 = V_1;
if (!L_16)
{
goto IL_00c9;
}
}
try
{// begin try (depth: 1)
Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835* L_17 = __this->___m_Callback_3;
RuntimeObject* L_18 = __this->___m_Context_4;
V_4 = L_18;
__this->___m_Callback_3 = (Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Callback_3), (void*)(Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835*)NULL);
__this->___m_Context_4 = NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Context_4), (void*)NULL);
int32_t L_19 = V_0;
RuntimeObject* L_20 = V_4;
NullCheck(L_17);
Callback_Invoke_mE5F4E02D25CB58B34E93A55CC21418F00B55C1BE_inline(L_17, __this, L_19, L_20, NULL);
goto IL_00c9;
}// 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_00b8;
}
throw e;
}
CATCH_00b8:
{// begin catch(System.Exception)
{
bool L_21;
L_21 = NclUtilities_IsFatal_m0B4EB55E9621759F8177F84710FBA8AB09074DB0(((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*)), NULL);
if (!L_21)
{
goto IL_00c1;
}
}
{
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimerNode_Fire_mAB8C15270DBD595C98435414C10C82426BBB43F1_RuntimeMethod_var)));
}
IL_00c1:
{
bool L_22;
L_22 = Logging_get_On_mE613A75366C51B02DEC967952C3C0DD852156B02(NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_00c9;
}
}// end catch (depth: 1)
IL_00c9:
{
return (bool)1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#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.TimerThread/InfiniteTimer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InfiniteTimer__ctor_mE68D9F3FAA233B2BD5DCF61989ACFB5704F99B06 (InfiniteTimer_tDF656910621727F5F5BCBEA8B9FBE9398C783159* __this, const RuntimeMethod* method)
{
{
Timer__ctor_m74E9AEA5FB4F7DDDD8D9089D6F9C9EF7A3A96F3E(__this, (-1), NULL);
return;
}
}
// System.Boolean System.Net.TimerThread/InfiniteTimer::get_HasExpired()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InfiniteTimer_get_HasExpired_mD5C805AEEF2E3E01A82071B9B2BF63A8FCE65DC7 (InfiniteTimer_tDF656910621727F5F5BCBEA8B9FBE9398C783159* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Boolean System.Net.TimerThread/InfiniteTimer::Cancel()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InfiniteTimer_Cancel_m71E42D64FE85DB414ACA7D8C5E9CBC8D5AF61714 (InfiniteTimer_tDF656910621727F5F5BCBEA8B9FBE9398C783159* __this, const RuntimeMethod* method)
{
{
int32_t* L_0 = (&__this->___cancelled_2);
int32_t L_1;
L_1 = Interlocked_Exchange_m1D23CC1BEB47E20FA336837BF97C292AE6B17629(L_0, 1, NULL);
return (bool)((((int32_t)L_1) == ((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
#ifdef __clang__
#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.Cookie::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cookie__ctor_m3140A4DBF15D0D649321FEBD9D53EF22F39E4905 (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_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))->___Empty_6;
__this->___m_comment_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_comment_4), (void*)L_0);
__this->___m_cookieVariant_6 = 1;
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
__this->___m_domain_8 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_domain_8), (void*)L_1);
__this->___m_domain_implicit_9 = (bool)1;
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_2 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32;
__this->___m_expires_10 = L_2;
String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
__this->___m_name_11 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_name_11), (void*)L_3);
String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
__this->___m_path_12 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_path_12), (void*)L_4);
__this->___m_path_implicit_13 = (bool)1;
String_t* L_5 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
__this->___m_port_14 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_port_14), (void*)L_5);
__this->___m_port_implicit_15 = (bool)1;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_6;
L_6 = DateTime_get_Now_mC336498972C48439ADCD5C50D35FAE0F2A48B0F0(NULL);
__this->___m_timeStamp_19 = L_6;
String_t* L_7 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
__this->___m_value_20 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_value_20), (void*)L_7);
String_t* L_8 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
__this->___m_domainKey_22 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_domainKey_22), (void*)L_8);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.String System.Net.Cookie::get_Comment()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Cookie_get_Comment_m51FBB45D81565655A5241B5DDD813BC3EC42B592 (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___m_comment_4;
return L_0;
}
}
// System.Void System.Net.Cookie::set_Comment(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cookie_set_Comment_m9DD420CD69AEF47A1D333E6F9DD80B3414EB1336 (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___value0;
if (L_0)
{
goto IL_000a;
}
}
{
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
___value0 = L_1;
}
IL_000a:
{
String_t* L_2 = ___value0;
__this->___m_comment_4 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_comment_4), (void*)L_2);
return;
}
}
// System.Void System.Net.Cookie::set_CommentUri(System.Uri)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cookie_set_CommentUri_mFC039B7C597CD8B07340BE1EC80645CA822365EB (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___value0, const RuntimeMethod* method)
{
{
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_0 = ___value0;
__this->___m_commentUri_5 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_commentUri_5), (void*)L_0);
return;
}
}
// System.Void System.Net.Cookie::set_HttpOnly(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cookie_set_HttpOnly_mBD64593F68CA7D9EC5D04AFE5F4F973B1D4AE541 (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->___m_httpOnly_18 = L_0;
return;
}
}
// System.Void System.Net.Cookie::set_Discard(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cookie_set_Discard_m9E0EF24EBC58C5A3000E508D5FC7867484BE77C0 (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->___m_discard_7 = L_0;
return;
}
}
// System.String System.Net.Cookie::get_Domain()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Cookie_get_Domain_m4965D8397859F47975FD7E3C31E259B4979AF69A (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___m_domain_8;
return L_0;
}
}
// System.Void System.Net.Cookie::set_Domain(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cookie_set_Domain_m43C02F2CA6265AA63E8262F4A326E4238F1C4125 (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* G_B2_0 = NULL;
Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* G_B1_0 = NULL;
String_t* G_B3_0 = NULL;
Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* G_B3_1 = NULL;
{
String_t* L_0 = ___value0;
G_B1_0 = __this;
if (!L_0)
{
G_B2_0 = __this;
goto IL_0007;
}
}
{
String_t* L_1 = ___value0;
G_B3_0 = L_1;
G_B3_1 = G_B1_0;
goto IL_000c;
}
IL_0007:
{
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
G_B3_0 = L_2;
G_B3_1 = G_B2_0;
}
IL_000c:
{
NullCheck(G_B3_1);
G_B3_1->___m_domain_8 = G_B3_0;
Il2CppCodeGenWriteBarrier((void**)(&G_B3_1->___m_domain_8), (void*)G_B3_0);
__this->___m_domain_implicit_9 = (bool)0;
String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
__this->___m_domainKey_22 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_domainKey_22), (void*)L_3);
return;
}
}
// System.String System.Net.Cookie::get__Domain()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Cookie_get__Domain_m8957AD2A8BF7C19270B62A6BF2C88E1E11347750 (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3EC6EE6DD2256DD3B8C906507025EE48AE0432AC);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677);
s_Il2CppMethodInitialized = true;
}
String_t* G_B5_0 = NULL;
String_t* G_B4_0 = NULL;
String_t* G_B6_0 = NULL;
String_t* G_B6_1 = NULL;
String_t* G_B8_0 = NULL;
String_t* G_B8_1 = NULL;
String_t* G_B8_2 = NULL;
String_t* G_B7_0 = NULL;
String_t* G_B7_1 = NULL;
String_t* G_B7_2 = NULL;
String_t* G_B9_0 = NULL;
String_t* G_B9_1 = NULL;
String_t* G_B9_2 = NULL;
String_t* G_B9_3 = NULL;
{
bool L_0;
L_0 = Cookie_get_Plain_m177DD473B1A9B7CD6E80E91862BFA3F9ED142453(__this, NULL);
if (L_0)
{
goto IL_0056;
}
}
{
bool L_1 = __this->___m_domain_implicit_9;
if (L_1)
{
goto IL_0056;
}
}
{
String_t* L_2 = __this->___m_domain_8;
NullCheck(L_2);
int32_t L_3;
L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL);
if (!L_3)
{
goto IL_0056;
}
}
{
bool L_4 = __this->___IsQuotedDomain_24;
G_B4_0 = _stringLiteral3EC6EE6DD2256DD3B8C906507025EE48AE0432AC;
if (L_4)
{
G_B5_0 = _stringLiteral3EC6EE6DD2256DD3B8C906507025EE48AE0432AC;
goto IL_0031;
}
}
{
String_t* L_5 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
G_B6_0 = L_5;
G_B6_1 = G_B4_0;
goto IL_0036;
}
IL_0031:
{
G_B6_0 = _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677;
G_B6_1 = G_B5_0;
}
IL_0036:
{
String_t* L_6 = __this->___m_domain_8;
bool L_7 = __this->___IsQuotedDomain_24;
G_B7_0 = L_6;
G_B7_1 = G_B6_0;
G_B7_2 = G_B6_1;
if (L_7)
{
G_B8_0 = L_6;
G_B8_1 = G_B6_0;
G_B8_2 = G_B6_1;
goto IL_004b;
}
}
{
String_t* L_8 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
G_B9_0 = L_8;
G_B9_1 = G_B7_0;
G_B9_2 = G_B7_1;
G_B9_3 = G_B7_2;
goto IL_0050;
}
IL_004b:
{
G_B9_0 = _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677;
G_B9_1 = G_B8_0;
G_B9_2 = G_B8_1;
G_B9_3 = G_B8_2;
}
IL_0050:
{
String_t* L_9;
L_9 = String_Concat_mF8B69BE42B5C5ABCAD3C176FBBE3010E0815D65D(G_B9_3, G_B9_2, G_B9_1, G_B9_0, NULL);
return L_9;
}
IL_0056:
{
String_t* L_10 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_10;
}
}
// System.Boolean System.Net.Cookie::get_Expired()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cookie_get_Expired_m61AE9BC48CF91C4831984BAD0ABA77357FF40215 (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = __this->___m_expires_10;
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32;
bool L_2;
L_2 = DateTime_op_Inequality_mC39C15A648628974D533B4E2D4EDBD091EA3E1B7(L_0, L_1, NULL);
if (!L_2)
{
goto IL_0028;
}
}
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_3 = (&__this->___m_expires_10);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_4;
L_4 = DateTime_ToLocalTime_mD87626169251A26AF699DAE90A1C31190AD30B94(L_3, NULL);
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_5;
L_5 = DateTime_get_Now_mC336498972C48439ADCD5C50D35FAE0F2A48B0F0(NULL);
bool L_6;
L_6 = DateTime_op_LessThanOrEqual_m458241757285ECEABEDA1F8105546FBFCD9ECB80(L_4, L_5, NULL);
return L_6;
}
IL_0028:
{
return (bool)0;
}
}
// System.Void System.Net.Cookie::set_Expires(System.DateTime)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cookie_set_Expires_m4B58B8276A8D57BD0B37F05484A4292B96258D1D (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___value0, const RuntimeMethod* method)
{
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___value0;
__this->___m_expires_10 = L_0;
return;
}
}
// System.String System.Net.Cookie::get_Name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Cookie_get_Name_m8DE46D0C6ABF6E6B2D7B82E9A0AFCA04189FD6C1 (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___m_name_11;
return L_0;
}
}
// System.Boolean System.Net.Cookie::InternalSetName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cookie_InternalSetName_m97FFD3EEC5CD4232F2C95A8328F977EAD456E27A (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidationHelper_tA6AE681FCDFA9BE8E3EF31C28A624AADF973A25C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___value0;
il2cpp_codegen_runtime_class_init_inline(ValidationHelper_tA6AE681FCDFA9BE8E3EF31C28A624AADF973A25C_il2cpp_TypeInfo_var);
bool L_1;
L_1 = ValidationHelper_IsBlankString_mEE97DDAD061D54175C26B9E51E891C4F346E33B6(L_0, NULL);
if (L_1)
{
goto IL_0021;
}
}
{
String_t* L_2 = ___value0;
NullCheck(L_2);
Il2CppChar L_3;
L_3 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_2, 0, NULL);
if ((((int32_t)L_3) == ((int32_t)((int32_t)36))))
{
goto IL_0021;
}
}
{
String_t* L_4 = ___value0;
il2cpp_codegen_runtime_class_init_inline(Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_il2cpp_TypeInfo_var);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_5 = ((Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_StaticFields*)il2cpp_codegen_static_fields_for(Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_il2cpp_TypeInfo_var))->___Reserved2Name_1;
NullCheck(L_4);
int32_t L_6;
L_6 = String_IndexOfAny_mC7AA4AE42B38667BDB9B214AA6230F322306CFF6(L_4, L_5, NULL);
if ((((int32_t)L_6) == ((int32_t)(-1))))
{
goto IL_002e;
}
}
IL_0021:
{
String_t* L_7 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
__this->___m_name_11 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_name_11), (void*)L_7);
return (bool)0;
}
IL_002e:
{
String_t* L_8 = ___value0;
__this->___m_name_11 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_name_11), (void*)L_8);
return (bool)1;
}
}
// System.String System.Net.Cookie::get_Path()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Cookie_get_Path_m805DD94569337D3ADA27B977CE95D672C344E448 (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___m_path_12;
return L_0;
}
}
// System.Void System.Net.Cookie::set_Path(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cookie_set_Path_m2EC9F932D33A328A522976DDC2423AC1B62F3D5E (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* G_B2_0 = NULL;
Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* G_B1_0 = NULL;
String_t* G_B3_0 = NULL;
Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* G_B3_1 = NULL;
{
String_t* L_0 = ___value0;
G_B1_0 = __this;
if (!L_0)
{
G_B2_0 = __this;
goto IL_0007;
}
}
{
String_t* L_1 = ___value0;
G_B3_0 = L_1;
G_B3_1 = G_B1_0;
goto IL_000c;
}
IL_0007:
{
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
G_B3_0 = L_2;
G_B3_1 = G_B2_0;
}
IL_000c:
{
NullCheck(G_B3_1);
G_B3_1->___m_path_12 = G_B3_0;
Il2CppCodeGenWriteBarrier((void**)(&G_B3_1->___m_path_12), (void*)G_B3_0);
__this->___m_path_implicit_13 = (bool)0;
return;
}
}
// System.String System.Net.Cookie::get__Path()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Cookie_get__Path_mD7C431ED16B7443C45A872E061E389E16768CBE0 (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6B50EFF68A6BF17B8DE03339A4359AF08F480AAF);
s_Il2CppMethodInitialized = true;
}
{
bool L_0;
L_0 = Cookie_get_Plain_m177DD473B1A9B7CD6E80E91862BFA3F9ED142453(__this, NULL);
if (L_0)
{
goto IL_002e;
}
}
{
bool L_1 = __this->___m_path_implicit_13;
if (L_1)
{
goto IL_002e;
}
}
{
String_t* L_2 = __this->___m_path_12;
NullCheck(L_2);
int32_t L_3;
L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL);
if (!L_3)
{
goto IL_002e;
}
}
{
String_t* L_4 = __this->___m_path_12;
String_t* L_5;
L_5 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteral6B50EFF68A6BF17B8DE03339A4359AF08F480AAF, L_4, NULL);
return L_5;
}
IL_002e:
{
String_t* L_6 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_6;
}
}
// System.Boolean System.Net.Cookie::get_Plain()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cookie_get_Plain_m177DD473B1A9B7CD6E80E91862BFA3F9ED142453 (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = Cookie_get_Variant_m12BD01DEE266FDACF399BF3ADA69A827319B1511_inline(__this, NULL);
return (bool)((((int32_t)L_0) == ((int32_t)1))? 1 : 0);
}
}
// System.Boolean System.Net.Cookie::IsDomainEqualToHost(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cookie_IsDomainEqualToHost_m3CE9C1502DEB31D44100BA130C5A277CF8548681 (String_t* ___domain0, String_t* ___host1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___host1;
NullCheck(L_0);
int32_t L_1;
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL);
String_t* L_2 = ___domain0;
NullCheck(L_2);
int32_t L_3;
L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL);
if ((!(((uint32_t)((int32_t)il2cpp_codegen_add(L_1, 1))) == ((uint32_t)L_3))))
{
goto IL_0024;
}
}
{
String_t* L_4 = ___host1;
String_t* L_5 = ___domain0;
String_t* L_6 = ___host1;
NullCheck(L_6);
int32_t L_7;
L_7 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_6, NULL);
int32_t L_8;
L_8 = String_Compare_mC0521D93E3608D6A004D12B1921058A021987CAA(L_4, 0, L_5, 1, L_7, 5, NULL);
if (L_8)
{
goto IL_0024;
}
}
{
return (bool)1;
}
IL_0024:
{
return (bool)0;
}
}
// System.Boolean System.Net.Cookie::VerifySetDefaults(System.Net.CookieVariant,System.Uri,System.Boolean,System.String,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cookie_VerifySetDefaults_m5E440E1D11681168E64C83CA3ADB81B80603246C (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, int32_t ___variant0, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___uri1, bool ___isLocalDomain2, String_t* ___localDomain3, bool ___set_default4, bool ___isThrow5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
int32_t V_1 = 0;
String_t* V_2 = NULL;
bool V_3 = false;
String_t* V_4 = NULL;
int32_t V_5 = 0;
int32_t V_6 = 0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_7 = NULL;
int32_t V_8 = 0;
int32_t G_B14_0 = 0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B14_1 = NULL;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B14_2 = NULL;
String_t* G_B14_3 = NULL;
int32_t G_B13_0 = 0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B13_1 = NULL;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B13_2 = NULL;
String_t* G_B13_3 = NULL;
String_t* G_B15_0 = NULL;
int32_t G_B15_1 = 0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B15_2 = NULL;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B15_3 = NULL;
String_t* G_B15_4 = NULL;
int32_t G_B25_0 = 0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B25_1 = NULL;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B25_2 = NULL;
String_t* G_B25_3 = NULL;
int32_t G_B24_0 = 0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B24_1 = NULL;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B24_2 = NULL;
String_t* G_B24_3 = NULL;
String_t* G_B26_0 = NULL;
int32_t G_B26_1 = 0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B26_2 = NULL;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B26_3 = NULL;
String_t* G_B26_4 = NULL;
int32_t G_B52_0 = 0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B52_1 = NULL;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B52_2 = NULL;
String_t* G_B52_3 = NULL;
int32_t G_B51_0 = 0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B51_1 = NULL;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B51_2 = NULL;
String_t* G_B51_3 = NULL;
String_t* G_B53_0 = NULL;
int32_t G_B53_1 = 0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B53_2 = NULL;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* G_B53_3 = NULL;
String_t* G_B53_4 = NULL;
{
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_0 = ___uri1;
NullCheck(L_0);
String_t* L_1;
L_1 = Uri_get_Host_m2C0E258C7DFF7A340049BE9BC08FF45E90988D8C(L_0, NULL);
V_0 = L_1;
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_2 = ___uri1;
NullCheck(L_2);
int32_t L_3;
L_3 = Uri_get_Port_m7A1413AC9D9A2FC5DC8A7F89DF4A01ACA0241A02(L_2, NULL);
V_1 = L_3;
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_4 = ___uri1;
NullCheck(L_4);
String_t* L_5;
L_5 = Uri_get_AbsolutePath_mABB93DD30D4C0F11948DE5C117650B1C3A9925CA(L_4, NULL);
V_2 = L_5;
V_3 = (bool)1;
bool L_6 = ___set_default4;
if (!L_6)
{
goto IL_003e;
}
}
{
int32_t L_7;
L_7 = Cookie_get_Version_m504ECB98B28863D90067A67125E9636888232C5B_inline(__this, NULL);
if (L_7)
{
goto IL_0028;
}
}
{
___variant0 = 1;
goto IL_0037;
}
IL_0028:
{
int32_t L_8;
L_8 = Cookie_get_Version_m504ECB98B28863D90067A67125E9636888232C5B_inline(__this, NULL);
if ((!(((uint32_t)L_8) == ((uint32_t)1))))
{
goto IL_0037;
}
}
{
int32_t L_9 = ___variant0;
if (L_9)
{
goto IL_0037;
}
}
{
___variant0 = 2;
}
IL_0037:
{
int32_t L_10 = ___variant0;
__this->___m_cookieVariant_6 = L_10;
}
IL_003e:
{
String_t* L_11 = __this->___m_name_11;
if (!L_11)
{
goto IL_0076;
}
}
{
String_t* L_12 = __this->___m_name_11;
NullCheck(L_12);
int32_t L_13;
L_13 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_12, NULL);
if (!L_13)
{
goto IL_0076;
}
}
{
String_t* L_14 = __this->___m_name_11;
NullCheck(L_14);
Il2CppChar L_15;
L_15 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_14, 0, NULL);
if ((((int32_t)L_15) == ((int32_t)((int32_t)36))))
{
goto IL_0076;
}
}
{
String_t* L_16 = __this->___m_name_11;
il2cpp_codegen_runtime_class_init_inline(Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_il2cpp_TypeInfo_var);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_17 = ((Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_StaticFields*)il2cpp_codegen_static_fields_for(Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_il2cpp_TypeInfo_var))->___Reserved2Name_1;
NullCheck(L_16);
int32_t L_18;
L_18 = String_IndexOfAny_mC7AA4AE42B38667BDB9B214AA6230F322306CFF6(L_16, L_17, NULL);
if ((((int32_t)L_18) == ((int32_t)(-1))))
{
goto IL_00b2;
}
}
IL_0076:
{
bool L_19 = ___isThrow5;
if (!L_19)
{
goto IL_00b0;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_20 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_21 = L_20;
NullCheck(L_21);
ArrayElementTypeCheck (L_21, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5BB3788A197C26B8310159EC9A81635814ABB05B)));
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5BB3788A197C26B8310159EC9A81635814ABB05B)));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_22 = L_21;
String_t* L_23 = __this->___m_name_11;
G_B13_0 = 1;
G_B13_1 = L_22;
G_B13_2 = L_22;
G_B13_3 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCA80D97E823D02887E6B0876376D067564152C0B));
if (!L_23)
{
G_B14_0 = 1;
G_B14_1 = L_22;
G_B14_2 = L_22;
G_B14_3 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCA80D97E823D02887E6B0876376D067564152C0B));
goto IL_009f;
}
}
{
String_t* L_24 = __this->___m_name_11;
G_B15_0 = L_24;
G_B15_1 = G_B13_0;
G_B15_2 = G_B13_1;
G_B15_3 = G_B13_2;
G_B15_4 = G_B13_3;
goto IL_00a4;
}
IL_009f:
{
G_B15_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD64DE515DE159C401BB82652225D6BE22CDAD7A1));
G_B15_1 = G_B14_0;
G_B15_2 = G_B14_1;
G_B15_3 = G_B14_2;
G_B15_4 = G_B14_3;
}
IL_00a4:
{
NullCheck(G_B15_2);
ArrayElementTypeCheck (G_B15_2, G_B15_0);
(G_B15_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B15_1), (RuntimeObject*)G_B15_0);
String_t* L_25;
L_25 = SR_GetString_mF713FCC09E41A8D1C0DE44EDD0932A57800A9BA3(G_B15_4, G_B15_3, NULL);
CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F* L_26 = (CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F_il2cpp_TypeInfo_var)));
NullCheck(L_26);
CookieException__ctor_m0E120836351D3B4DFA0E6542D805CB96A941EEB1(L_26, L_25, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_26, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Cookie_VerifySetDefaults_m5E440E1D11681168E64C83CA3ADB81B80603246C_RuntimeMethod_var)));
}
IL_00b0:
{
return (bool)0;
}
IL_00b2:
{
String_t* L_27 = __this->___m_value_20;
if (!L_27)
{
goto IL_0107;
}
}
{
String_t* L_28 = __this->___m_value_20;
NullCheck(L_28);
int32_t L_29;
L_29 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_28, NULL);
if ((((int32_t)L_29) <= ((int32_t)2)))
{
goto IL_00f4;
}
}
{
String_t* L_30 = __this->___m_value_20;
NullCheck(L_30);
Il2CppChar L_31;
L_31 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_30, 0, NULL);
if ((!(((uint32_t)L_31) == ((uint32_t)((int32_t)34)))))
{
goto IL_00f4;
}
}
{
String_t* L_32 = __this->___m_value_20;
String_t* L_33 = __this->___m_value_20;
NullCheck(L_33);
int32_t L_34;
L_34 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_33, NULL);
NullCheck(L_32);
Il2CppChar L_35;
L_35 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_32, ((int32_t)il2cpp_codegen_subtract(L_34, 1)), NULL);
if ((((int32_t)L_35) == ((int32_t)((int32_t)34))))
{
goto IL_0143;
}
}
IL_00f4:
{
String_t* L_36 = __this->___m_value_20;
il2cpp_codegen_runtime_class_init_inline(Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_il2cpp_TypeInfo_var);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_37 = ((Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_StaticFields*)il2cpp_codegen_static_fields_for(Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_il2cpp_TypeInfo_var))->___Reserved2Value_2;
NullCheck(L_36);
int32_t L_38;
L_38 = String_IndexOfAny_mC7AA4AE42B38667BDB9B214AA6230F322306CFF6(L_36, L_37, NULL);
if ((((int32_t)L_38) == ((int32_t)(-1))))
{
goto IL_0143;
}
}
IL_0107:
{
bool L_39 = ___isThrow5;
if (!L_39)
{
goto IL_0141;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_40 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_41 = L_40;
NullCheck(L_41);
ArrayElementTypeCheck (L_41, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral86FADB31129B6F40C720A97600D69389EA3567E3)));
(L_41)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral86FADB31129B6F40C720A97600D69389EA3567E3)));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_42 = L_41;
String_t* L_43 = __this->___m_value_20;
G_B24_0 = 1;
G_B24_1 = L_42;
G_B24_2 = L_42;
G_B24_3 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCA80D97E823D02887E6B0876376D067564152C0B));
if (!L_43)
{
G_B25_0 = 1;
G_B25_1 = L_42;
G_B25_2 = L_42;
G_B25_3 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCA80D97E823D02887E6B0876376D067564152C0B));
goto IL_0130;
}
}
{
String_t* L_44 = __this->___m_value_20;
G_B26_0 = L_44;
G_B26_1 = G_B24_0;
G_B26_2 = G_B24_1;
G_B26_3 = G_B24_2;
G_B26_4 = G_B24_3;
goto IL_0135;
}
IL_0130:
{
G_B26_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD64DE515DE159C401BB82652225D6BE22CDAD7A1));
G_B26_1 = G_B25_0;
G_B26_2 = G_B25_1;
G_B26_3 = G_B25_2;
G_B26_4 = G_B25_3;
}
IL_0135:
{
NullCheck(G_B26_2);
ArrayElementTypeCheck (G_B26_2, G_B26_0);
(G_B26_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B26_1), (RuntimeObject*)G_B26_0);
String_t* L_45;
L_45 = SR_GetString_mF713FCC09E41A8D1C0DE44EDD0932A57800A9BA3(G_B26_4, G_B26_3, NULL);
CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F* L_46 = (CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F_il2cpp_TypeInfo_var)));
NullCheck(L_46);
CookieException__ctor_m0E120836351D3B4DFA0E6542D805CB96A941EEB1(L_46, L_45, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_46, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Cookie_VerifySetDefaults_m5E440E1D11681168E64C83CA3ADB81B80603246C_RuntimeMethod_var)));
}
IL_0141:
{
return (bool)0;
}
IL_0143:
{
String_t* L_47;
L_47 = Cookie_get_Comment_m51FBB45D81565655A5241B5DDD813BC3EC42B592_inline(__this, NULL);
if (!L_47)
{
goto IL_01c5;
}
}
{
String_t* L_48;
L_48 = Cookie_get_Comment_m51FBB45D81565655A5241B5DDD813BC3EC42B592_inline(__this, NULL);
NullCheck(L_48);
int32_t L_49;
L_49 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_48, NULL);
if ((((int32_t)L_49) <= ((int32_t)2)))
{
goto IL_0185;
}
}
{
String_t* L_50;
L_50 = Cookie_get_Comment_m51FBB45D81565655A5241B5DDD813BC3EC42B592_inline(__this, NULL);
NullCheck(L_50);
Il2CppChar L_51;
L_51 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_50, 0, NULL);
if ((!(((uint32_t)L_51) == ((uint32_t)((int32_t)34)))))
{
goto IL_0185;
}
}
{
String_t* L_52;
L_52 = Cookie_get_Comment_m51FBB45D81565655A5241B5DDD813BC3EC42B592_inline(__this, NULL);
String_t* L_53;
L_53 = Cookie_get_Comment_m51FBB45D81565655A5241B5DDD813BC3EC42B592_inline(__this, NULL);
NullCheck(L_53);
int32_t L_54;
L_54 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_53, NULL);
NullCheck(L_52);
Il2CppChar L_55;
L_55 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_52, ((int32_t)il2cpp_codegen_subtract(L_54, 1)), NULL);
if ((((int32_t)L_55) == ((int32_t)((int32_t)34))))
{
goto IL_01c5;
}
}
IL_0185:
{
String_t* L_56;
L_56 = Cookie_get_Comment_m51FBB45D81565655A5241B5DDD813BC3EC42B592_inline(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_il2cpp_TypeInfo_var);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_57 = ((Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_StaticFields*)il2cpp_codegen_static_fields_for(Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_il2cpp_TypeInfo_var))->___Reserved2Value_2;
NullCheck(L_56);
int32_t L_58;
L_58 = String_IndexOfAny_mC7AA4AE42B38667BDB9B214AA6230F322306CFF6(L_56, L_57, NULL);
if ((((int32_t)L_58) == ((int32_t)(-1))))
{
goto IL_01c5;
}
}
{
bool L_59 = ___isThrow5;
if (!L_59)
{
goto IL_01c3;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_60 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_61 = L_60;
NullCheck(L_61);
ArrayElementTypeCheck (L_61, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3EBF7CFEC7929F196835D5D12FBBE2F845BF2A5F)));
(L_61)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3EBF7CFEC7929F196835D5D12FBBE2F845BF2A5F)));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_62 = L_61;
String_t* L_63;
L_63 = Cookie_get_Comment_m51FBB45D81565655A5241B5DDD813BC3EC42B592_inline(__this, NULL);
NullCheck(L_62);
ArrayElementTypeCheck (L_62, L_63);
(L_62)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_63);
String_t* L_64;
L_64 = SR_GetString_mF713FCC09E41A8D1C0DE44EDD0932A57800A9BA3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCA80D97E823D02887E6B0876376D067564152C0B)), L_62, NULL);
CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F* L_65 = (CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F_il2cpp_TypeInfo_var)));
NullCheck(L_65);
CookieException__ctor_m0E120836351D3B4DFA0E6542D805CB96A941EEB1(L_65, L_64, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_65, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Cookie_VerifySetDefaults_m5E440E1D11681168E64C83CA3ADB81B80603246C_RuntimeMethod_var)));
}
IL_01c3:
{
return (bool)0;
}
IL_01c5:
{
String_t* L_66;
L_66 = Cookie_get_Path_m805DD94569337D3ADA27B977CE95D672C344E448_inline(__this, NULL);
if (!L_66)
{
goto IL_0247;
}
}
{
String_t* L_67;
L_67 = Cookie_get_Path_m805DD94569337D3ADA27B977CE95D672C344E448_inline(__this, NULL);
NullCheck(L_67);
int32_t L_68;
L_68 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_67, NULL);
if ((((int32_t)L_68) <= ((int32_t)2)))
{
goto IL_0207;
}
}
{
String_t* L_69;
L_69 = Cookie_get_Path_m805DD94569337D3ADA27B977CE95D672C344E448_inline(__this, NULL);
NullCheck(L_69);
Il2CppChar L_70;
L_70 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_69, 0, NULL);
if ((!(((uint32_t)L_70) == ((uint32_t)((int32_t)34)))))
{
goto IL_0207;
}
}
{
String_t* L_71;
L_71 = Cookie_get_Path_m805DD94569337D3ADA27B977CE95D672C344E448_inline(__this, NULL);
String_t* L_72;
L_72 = Cookie_get_Path_m805DD94569337D3ADA27B977CE95D672C344E448_inline(__this, NULL);
NullCheck(L_72);
int32_t L_73;
L_73 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_72, NULL);
NullCheck(L_71);
Il2CppChar L_74;
L_74 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_71, ((int32_t)il2cpp_codegen_subtract(L_73, 1)), NULL);
if ((((int32_t)L_74) == ((int32_t)((int32_t)34))))
{
goto IL_0247;
}
}
IL_0207:
{
String_t* L_75;
L_75 = Cookie_get_Path_m805DD94569337D3ADA27B977CE95D672C344E448_inline(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_il2cpp_TypeInfo_var);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_76 = ((Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_StaticFields*)il2cpp_codegen_static_fields_for(Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_il2cpp_TypeInfo_var))->___Reserved2Value_2;
NullCheck(L_75);
int32_t L_77;
L_77 = String_IndexOfAny_mC7AA4AE42B38667BDB9B214AA6230F322306CFF6(L_75, L_76, NULL);
if ((((int32_t)L_77) == ((int32_t)(-1))))
{
goto IL_0247;
}
}
{
bool L_78 = ___isThrow5;
if (!L_78)
{
goto IL_0245;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_79 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_80 = L_79;
NullCheck(L_80);
ArrayElementTypeCheck (L_80, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE366688218C4FC506EA8269E62224B37209508EB)));
(L_80)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE366688218C4FC506EA8269E62224B37209508EB)));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_81 = L_80;
String_t* L_82;
L_82 = Cookie_get_Path_m805DD94569337D3ADA27B977CE95D672C344E448_inline(__this, NULL);
NullCheck(L_81);
ArrayElementTypeCheck (L_81, L_82);
(L_81)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_82);
String_t* L_83;
L_83 = SR_GetString_mF713FCC09E41A8D1C0DE44EDD0932A57800A9BA3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCA80D97E823D02887E6B0876376D067564152C0B)), L_81, NULL);
CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F* L_84 = (CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F_il2cpp_TypeInfo_var)));
NullCheck(L_84);
CookieException__ctor_m0E120836351D3B4DFA0E6542D805CB96A941EEB1(L_84, L_83, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_84, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Cookie_VerifySetDefaults_m5E440E1D11681168E64C83CA3ADB81B80603246C_RuntimeMethod_var)));
}
IL_0245:
{
return (bool)0;
}
IL_0247:
{
bool L_85 = ___set_default4;
if (!L_85)
{
goto IL_025f;
}
}
{
bool L_86 = __this->___m_domain_implicit_9;
if (!L_86)
{
goto IL_025f;
}
}
{
String_t* L_87 = V_0;
__this->___m_domain_8 = L_87;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_domain_8), (void*)L_87);
goto IL_0414;
}
IL_025f:
{
bool L_88 = __this->___m_domain_implicit_9;
if (L_88)
{
goto IL_03d3;
}
}
{
String_t* L_89 = __this->___m_domain_8;
V_4 = L_89;
String_t* L_90 = V_4;
il2cpp_codegen_runtime_class_init_inline(Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_il2cpp_TypeInfo_var);
bool L_91;
L_91 = Cookie_DomainCharsTest_mE423C477EE07BA0676C5571B03FD4153030B2EE9(L_90, NULL);
if (L_91)
{
goto IL_02af;
}
}
{
bool L_92 = ___isThrow5;
if (!L_92)
{
goto IL_02ad;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_93 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_94 = L_93;
NullCheck(L_94);
ArrayElementTypeCheck (L_94, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1A0A3CA99318DA5D044663BE79A6F30B963858AF)));
(L_94)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1A0A3CA99318DA5D044663BE79A6F30B963858AF)));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_95 = L_94;
String_t* L_96 = V_4;
G_B51_0 = 1;
G_B51_1 = L_95;
G_B51_2 = L_95;
G_B51_3 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCA80D97E823D02887E6B0876376D067564152C0B));
if (!L_96)
{
G_B52_0 = 1;
G_B52_1 = L_95;
G_B52_2 = L_95;
G_B52_3 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCA80D97E823D02887E6B0876376D067564152C0B));
goto IL_029c;
}
}
{
String_t* L_97 = V_4;
G_B53_0 = L_97;
G_B53_1 = G_B51_0;
G_B53_2 = G_B51_1;
G_B53_3 = G_B51_2;
G_B53_4 = G_B51_3;
goto IL_02a1;
}
IL_029c:
{
G_B53_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD64DE515DE159C401BB82652225D6BE22CDAD7A1));
G_B53_1 = G_B52_0;
G_B53_2 = G_B52_1;
G_B53_3 = G_B52_2;
G_B53_4 = G_B52_3;
}
IL_02a1:
{
NullCheck(G_B53_2);
ArrayElementTypeCheck (G_B53_2, G_B53_0);
(G_B53_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B53_1), (RuntimeObject*)G_B53_0);
String_t* L_98;
L_98 = SR_GetString_mF713FCC09E41A8D1C0DE44EDD0932A57800A9BA3(G_B53_4, G_B53_3, NULL);
CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F* L_99 = (CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F_il2cpp_TypeInfo_var)));
NullCheck(L_99);
CookieException__ctor_m0E120836351D3B4DFA0E6542D805CB96A941EEB1(L_99, L_98, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_99, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Cookie_VerifySetDefaults_m5E440E1D11681168E64C83CA3ADB81B80603246C_RuntimeMethod_var)));
}
IL_02ad:
{
return (bool)0;
}
IL_02af:
{
String_t* L_100 = V_4;
NullCheck(L_100);
Il2CppChar L_101;
L_101 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_100, 0, NULL);
if ((((int32_t)L_101) == ((int32_t)((int32_t)46))))
{
goto IL_02fe;
}
}
{
int32_t L_102 = ___variant0;
if ((((int32_t)L_102) == ((int32_t)3)))
{
goto IL_02f0;
}
}
{
int32_t L_103 = ___variant0;
if ((((int32_t)L_103) == ((int32_t)1)))
{
goto IL_02f0;
}
}
{
bool L_104 = ___isThrow5;
if (!L_104)
{
goto IL_02ee;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_105 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_106 = L_105;
NullCheck(L_106);
ArrayElementTypeCheck (L_106, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1A0A3CA99318DA5D044663BE79A6F30B963858AF)));
(L_106)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1A0A3CA99318DA5D044663BE79A6F30B963858AF)));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_107 = L_106;
String_t* L_108 = __this->___m_domain_8;
NullCheck(L_107);
ArrayElementTypeCheck (L_107, L_108);
(L_107)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_108);
String_t* L_109;
L_109 = SR_GetString_mF713FCC09E41A8D1C0DE44EDD0932A57800A9BA3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCA80D97E823D02887E6B0876376D067564152C0B)), L_107, NULL);
CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F* L_110 = (CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F_il2cpp_TypeInfo_var)));
NullCheck(L_110);
CookieException__ctor_m0E120836351D3B4DFA0E6542D805CB96A941EEB1(L_110, L_109, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_110, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Cookie_VerifySetDefaults_m5E440E1D11681168E64C83CA3ADB81B80603246C_RuntimeMethod_var)));
}
IL_02ee:
{
return (bool)0;
}
IL_02f0:
{
String_t* L_111 = V_4;
String_t* L_112;
L_112 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D, L_111, NULL);
V_4 = L_112;
}
IL_02fe:
{
String_t* L_113 = V_0;
NullCheck(L_113);
int32_t L_114;
L_114 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_113, ((int32_t)46), NULL);
V_5 = L_114;
bool L_115 = ___isLocalDomain2;
if (!L_115)
{
goto IL_031e;
}
}
{
String_t* L_116 = ___localDomain3;
String_t* L_117 = V_4;
int32_t L_118;
L_118 = String_Compare_mC553A80AD870F5777F0E8B5E705B0205396B9D3E(L_116, L_117, 5, NULL);
if (L_118)
{
goto IL_031e;
}
}
{
V_3 = (bool)1;
goto IL_03bc;
}
IL_031e:
{
String_t* L_119 = V_4;
String_t* L_120 = V_4;
NullCheck(L_120);
int32_t L_121;
L_121 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_120, NULL);
NullCheck(L_119);
int32_t L_122;
L_122 = String_IndexOf_mFD81FEE71234D44F45A4924CD51AD6169C722ACB(L_119, ((int32_t)46), 1, ((int32_t)il2cpp_codegen_subtract(L_121, 2)), NULL);
if ((!(((uint32_t)L_122) == ((uint32_t)(-1)))))
{
goto IL_0342;
}
}
{
String_t* L_123 = V_4;
String_t* L_124 = V_0;
il2cpp_codegen_runtime_class_init_inline(Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_il2cpp_TypeInfo_var);
bool L_125;
L_125 = Cookie_IsDomainEqualToHost_m3CE9C1502DEB31D44100BA130C5A277CF8548681(L_123, L_124, NULL);
if (L_125)
{
goto IL_03bc;
}
}
{
V_3 = (bool)0;
goto IL_03bc;
}
IL_0342:
{
int32_t L_126 = ___variant0;
if ((!(((uint32_t)L_126) == ((uint32_t)1))))
{
goto IL_0384;
}
}
{
String_t* L_127 = V_4;
String_t* L_128 = V_0;
il2cpp_codegen_runtime_class_init_inline(Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_il2cpp_TypeInfo_var);
bool L_129;
L_129 = Cookie_IsDomainEqualToHost_m3CE9C1502DEB31D44100BA130C5A277CF8548681(L_127, L_128, NULL);
if (L_129)
{
goto IL_03bc;
}
}
{
String_t* L_130 = V_0;
NullCheck(L_130);
int32_t L_131;
L_131 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_130, NULL);
String_t* L_132 = V_4;
NullCheck(L_132);
int32_t L_133;
L_133 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_132, NULL);
if ((((int32_t)L_131) <= ((int32_t)L_133)))
{
goto IL_0380;
}
}
{
String_t* L_134 = V_0;
String_t* L_135 = V_0;
NullCheck(L_135);
int32_t L_136;
L_136 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_135, NULL);
String_t* L_137 = V_4;
NullCheck(L_137);
int32_t L_138;
L_138 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_137, NULL);
String_t* L_139 = V_4;
String_t* L_140 = V_4;
NullCheck(L_140);
int32_t L_141;
L_141 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_140, NULL);
int32_t L_142;
L_142 = String_Compare_mC0521D93E3608D6A004D12B1921058A021987CAA(L_134, ((int32_t)il2cpp_codegen_subtract(L_136, L_138)), L_139, 0, L_141, 5, NULL);
if (!L_142)
{
goto IL_03bc;
}
}
IL_0380:
{
V_3 = (bool)0;
goto IL_03bc;
}
IL_0384:
{
int32_t L_143 = V_5;
if ((((int32_t)L_143) == ((int32_t)(-1))))
{
goto IL_03b0;
}
}
{
String_t* L_144 = V_4;
NullCheck(L_144);
int32_t L_145;
L_145 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_144, NULL);
String_t* L_146 = V_0;
NullCheck(L_146);
int32_t L_147;
L_147 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_146, NULL);
int32_t L_148 = V_5;
if ((!(((uint32_t)L_145) == ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_147, L_148))))))
{
goto IL_03b0;
}
}
{
String_t* L_149 = V_0;
int32_t L_150 = V_5;
String_t* L_151 = V_4;
String_t* L_152 = V_4;
NullCheck(L_152);
int32_t L_153;
L_153 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_152, NULL);
int32_t L_154;
L_154 = String_Compare_mC0521D93E3608D6A004D12B1921058A021987CAA(L_149, L_150, L_151, 0, L_153, 5, NULL);
if (!L_154)
{
goto IL_03bc;
}
}
IL_03b0:
{
String_t* L_155 = V_4;
String_t* L_156 = V_0;
il2cpp_codegen_runtime_class_init_inline(Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_il2cpp_TypeInfo_var);
bool L_157;
L_157 = Cookie_IsDomainEqualToHost_m3CE9C1502DEB31D44100BA130C5A277CF8548681(L_155, L_156, NULL);
if (L_157)
{
goto IL_03bc;
}
}
{
V_3 = (bool)0;
}
IL_03bc:
{
bool L_158 = V_3;
if (!L_158)
{
goto IL_03e4;
}
}
{
String_t* L_159 = V_4;
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_160;
L_160 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
NullCheck(L_159);
String_t* L_161;
L_161 = String_ToLower_mD22E5D18F36015484078F5BA0F1687DA95904D1E(L_159, L_160, NULL);
__this->___m_domainKey_22 = L_161;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_domainKey_22), (void*)L_161);
goto IL_03e4;
}
IL_03d3:
{
String_t* L_162 = V_0;
String_t* L_163 = __this->___m_domain_8;
int32_t L_164;
L_164 = String_Compare_mC553A80AD870F5777F0E8B5E705B0205396B9D3E(L_162, L_163, 5, NULL);
if (!L_164)
{
goto IL_03e4;
}
}
{
V_3 = (bool)0;
}
IL_03e4:
{
bool L_165 = V_3;
if (L_165)
{
goto IL_0414;
}
}
{
bool L_166 = ___isThrow5;
if (!L_166)
{
goto IL_0412;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_167 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_168 = L_167;
NullCheck(L_168);
ArrayElementTypeCheck (L_168, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1A0A3CA99318DA5D044663BE79A6F30B963858AF)));
(L_168)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1A0A3CA99318DA5D044663BE79A6F30B963858AF)));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_169 = L_168;
String_t* L_170 = __this->___m_domain_8;
NullCheck(L_169);
ArrayElementTypeCheck (L_169, L_170);
(L_169)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_170);
String_t* L_171;
L_171 = SR_GetString_mF713FCC09E41A8D1C0DE44EDD0932A57800A9BA3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCA80D97E823D02887E6B0876376D067564152C0B)), L_169, NULL);
CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F* L_172 = (CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F_il2cpp_TypeInfo_var)));
NullCheck(L_172);
CookieException__ctor_m0E120836351D3B4DFA0E6542D805CB96A941EEB1(L_172, L_171, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_172, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Cookie_VerifySetDefaults_m5E440E1D11681168E64C83CA3ADB81B80603246C_RuntimeMethod_var)));
}
IL_0412:
{
return (bool)0;
}
IL_0414:
{
bool L_173 = ___set_default4;
if (!L_173)
{
goto IL_0478;
}
}
{
bool L_174 = __this->___m_path_implicit_13;
if (!L_174)
{
goto IL_0478;
}
}
{
int32_t L_175 = __this->___m_cookieVariant_6;
V_6 = L_175;
int32_t L_176 = V_6;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_176, 1)))
{
case 0:
{
goto IL_043f;
}
case 1:
{
goto IL_0448;
}
case 2:
{
goto IL_045f;
}
}
}
{
goto IL_045f;
}
IL_043f:
{
String_t* L_177 = V_2;
__this->___m_path_12 = L_177;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_path_12), (void*)L_177);
goto IL_04b8;
}
IL_0448:
{
String_t* L_178 = V_2;
String_t* L_179 = V_2;
NullCheck(L_179);
int32_t L_180;
L_180 = String_LastIndexOf_m6BB3E7E1B48702D4C715FA423F8A822C053B290E(L_179, ((int32_t)47), NULL);
NullCheck(L_178);
String_t* L_181;
L_181 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_178, 0, L_180, NULL);
__this->___m_path_12 = L_181;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_path_12), (void*)L_181);
goto IL_04b8;
}
IL_045f:
{
String_t* L_182 = V_2;
String_t* L_183 = V_2;
NullCheck(L_183);
int32_t L_184;
L_184 = String_LastIndexOf_m6BB3E7E1B48702D4C715FA423F8A822C053B290E(L_183, ((int32_t)47), NULL);
NullCheck(L_182);
String_t* L_185;
L_185 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_182, 0, ((int32_t)il2cpp_codegen_add(L_184, 1)), NULL);
__this->___m_path_12 = L_185;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_path_12), (void*)L_185);
goto IL_04b8;
}
IL_0478:
{
String_t* L_186 = V_2;
String_t* L_187 = __this->___m_path_12;
String_t* L_188;
L_188 = CookieParser_CheckQuoted_m27BD4DA2D4E5EB47F4320778921B598C45C650B0(L_187, NULL);
NullCheck(L_186);
bool L_189;
L_189 = String_StartsWith_mF75DBA1EB709811E711B44E26FF919C88A8E65C0(L_186, L_188, NULL);
if (L_189)
{
goto IL_04b8;
}
}
{
bool L_190 = ___isThrow5;
if (!L_190)
{
goto IL_04b6;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_191 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_192 = L_191;
NullCheck(L_192);
ArrayElementTypeCheck (L_192, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE366688218C4FC506EA8269E62224B37209508EB)));
(L_192)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE366688218C4FC506EA8269E62224B37209508EB)));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_193 = L_192;
String_t* L_194 = __this->___m_path_12;
NullCheck(L_193);
ArrayElementTypeCheck (L_193, L_194);
(L_193)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_194);
String_t* L_195;
L_195 = SR_GetString_mF713FCC09E41A8D1C0DE44EDD0932A57800A9BA3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCA80D97E823D02887E6B0876376D067564152C0B)), L_193, NULL);
CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F* L_196 = (CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F_il2cpp_TypeInfo_var)));
NullCheck(L_196);
CookieException__ctor_m0E120836351D3B4DFA0E6542D805CB96A941EEB1(L_196, L_195, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_196, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Cookie_VerifySetDefaults_m5E440E1D11681168E64C83CA3ADB81B80603246C_RuntimeMethod_var)));
}
IL_04b6:
{
return (bool)0;
}
IL_04b8:
{
bool L_197 = ___set_default4;
if (!L_197)
{
goto IL_04e1;
}
}
{
bool L_198 = __this->___m_port_implicit_15;
if (L_198)
{
goto IL_04e1;
}
}
{
String_t* L_199 = __this->___m_port_14;
NullCheck(L_199);
int32_t L_200;
L_200 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_199, NULL);
if (L_200)
{
goto IL_04e1;
}
}
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_201 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)1);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_202 = L_201;
int32_t L_203 = V_1;
NullCheck(L_202);
(L_202)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)L_203);
__this->___m_port_list_16 = L_202;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_port_list_16), (void*)L_202);
}
IL_04e1:
{
bool L_204 = __this->___m_port_implicit_15;
if (L_204)
{
goto IL_0542;
}
}
{
V_3 = (bool)0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_205 = __this->___m_port_list_16;
V_7 = L_205;
V_8 = 0;
goto IL_050a;
}
IL_04f8:
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_206 = V_7;
int32_t L_207 = V_8;
NullCheck(L_206);
int32_t L_208 = L_207;
int32_t L_209 = (L_206)->GetAt(static_cast<il2cpp_array_size_t>(L_208));
int32_t L_210 = V_1;
if ((!(((uint32_t)L_209) == ((uint32_t)L_210))))
{
goto IL_0504;
}
}
{
V_3 = (bool)1;
goto IL_0512;
}
IL_0504:
{
int32_t L_211 = V_8;
V_8 = ((int32_t)il2cpp_codegen_add(L_211, 1));
}
IL_050a:
{
int32_t L_212 = V_8;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_213 = V_7;
NullCheck(L_213);
if ((((int32_t)L_212) < ((int32_t)((int32_t)(((RuntimeArray*)L_213)->max_length)))))
{
goto IL_04f8;
}
}
IL_0512:
{
bool L_214 = V_3;
if (L_214)
{
goto IL_0542;
}
}
{
bool L_215 = ___isThrow5;
if (!L_215)
{
goto IL_0540;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_216 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_217 = L_216;
NullCheck(L_217);
ArrayElementTypeCheck (L_217, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC98D2B8D58BCA5B86E2100FBE8FE46701D193B8F)));
(L_217)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC98D2B8D58BCA5B86E2100FBE8FE46701D193B8F)));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_218 = L_217;
String_t* L_219 = __this->___m_port_14;
NullCheck(L_218);
ArrayElementTypeCheck (L_218, L_219);
(L_218)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_219);
String_t* L_220;
L_220 = SR_GetString_mF713FCC09E41A8D1C0DE44EDD0932A57800A9BA3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCA80D97E823D02887E6B0876376D067564152C0B)), L_218, NULL);
CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F* L_221 = (CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F_il2cpp_TypeInfo_var)));
NullCheck(L_221);
CookieException__ctor_m0E120836351D3B4DFA0E6542D805CB96A941EEB1(L_221, L_220, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_221, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Cookie_VerifySetDefaults_m5E440E1D11681168E64C83CA3ADB81B80603246C_RuntimeMethod_var)));
}
IL_0540:
{
return (bool)0;
}
IL_0542:
{
return (bool)1;
}
}
// System.Boolean System.Net.Cookie::DomainCharsTest(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cookie_DomainCharsTest_mE423C477EE07BA0676C5571B03FD4153030B2EE9 (String_t* ___name0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Il2CppChar V_1 = 0x0;
{
String_t* L_0 = ___name0;
if (!L_0)
{
goto IL_000b;
}
}
{
String_t* L_1 = ___name0;
NullCheck(L_1);
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL);
if (L_2)
{
goto IL_000d;
}
}
IL_000b:
{
return (bool)0;
}
IL_000d:
{
V_0 = 0;
goto IL_004c;
}
IL_0011:
{
String_t* L_3 = ___name0;
int32_t L_4 = V_0;
NullCheck(L_3);
Il2CppChar L_5;
L_5 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_3, L_4, NULL);
V_1 = L_5;
Il2CppChar L_6 = V_1;
if ((((int32_t)L_6) < ((int32_t)((int32_t)48))))
{
goto IL_0023;
}
}
{
Il2CppChar L_7 = V_1;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)57))))
{
goto IL_0048;
}
}
IL_0023:
{
Il2CppChar L_8 = V_1;
if ((((int32_t)L_8) == ((int32_t)((int32_t)46))))
{
goto IL_0048;
}
}
{
Il2CppChar L_9 = V_1;
if ((((int32_t)L_9) == ((int32_t)((int32_t)45))))
{
goto IL_0048;
}
}
{
Il2CppChar L_10 = V_1;
if ((((int32_t)L_10) < ((int32_t)((int32_t)97))))
{
goto IL_0037;
}
}
{
Il2CppChar L_11 = V_1;
if ((((int32_t)L_11) <= ((int32_t)((int32_t)122))))
{
goto IL_0048;
}
}
IL_0037:
{
Il2CppChar L_12 = V_1;
if ((((int32_t)L_12) < ((int32_t)((int32_t)65))))
{
goto IL_0041;
}
}
{
Il2CppChar L_13 = V_1;
if ((((int32_t)L_13) <= ((int32_t)((int32_t)90))))
{
goto IL_0048;
}
}
IL_0041:
{
Il2CppChar L_14 = V_1;
if ((((int32_t)L_14) == ((int32_t)((int32_t)95))))
{
goto IL_0048;
}
}
{
return (bool)0;
}
IL_0048:
{
int32_t L_15 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_15, 1));
}
IL_004c:
{
int32_t L_16 = V_0;
String_t* L_17 = ___name0;
NullCheck(L_17);
int32_t L_18;
L_18 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_17, NULL);
if ((((int32_t)L_16) < ((int32_t)L_18)))
{
goto IL_0011;
}
}
{
return (bool)1;
}
}
// System.Void System.Net.Cookie::set_Port(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cookie_set_Port_mBF4BE6DCE6A229EE32A361BD8571CCB213AACB1B (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_ToArray_m65479FB75A5FE539EA1A0D6681172717D23CEAAA_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_0 = NULL;
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* V_1 = NULL;
int32_t V_2 = 0;
int32_t V_3 = 0;
{
__this->___m_port_implicit_15 = (bool)0;
String_t* L_0 = ___value0;
if (!L_0)
{
goto IL_0012;
}
}
{
String_t* L_1 = ___value0;
NullCheck(L_1);
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL);
if (L_2)
{
goto IL_001e;
}
}
IL_0012:
{
String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
__this->___m_port_14 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_port_14), (void*)L_3);
return;
}
IL_001e:
{
String_t* L_4 = ___value0;
NullCheck(L_4);
Il2CppChar L_5;
L_5 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_4, 0, NULL);
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)34)))))
{
goto IL_003b;
}
}
{
String_t* L_6 = ___value0;
String_t* L_7 = ___value0;
NullCheck(L_7);
int32_t L_8;
L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL);
NullCheck(L_6);
Il2CppChar L_9;
L_9 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_6, ((int32_t)il2cpp_codegen_subtract(L_8, 1)), NULL);
if ((((int32_t)L_9) == ((int32_t)((int32_t)34))))
{
goto IL_005d;
}
}
IL_003b:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_10 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_11 = L_10;
NullCheck(L_11);
ArrayElementTypeCheck (L_11, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC98D2B8D58BCA5B86E2100FBE8FE46701D193B8F)));
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC98D2B8D58BCA5B86E2100FBE8FE46701D193B8F)));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_12 = L_11;
String_t* L_13 = ___value0;
NullCheck(L_12);
ArrayElementTypeCheck (L_12, L_13);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_13);
String_t* L_14;
L_14 = SR_GetString_mF713FCC09E41A8D1C0DE44EDD0932A57800A9BA3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCA80D97E823D02887E6B0876376D067564152C0B)), L_12, NULL);
CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F* L_15 = (CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F_il2cpp_TypeInfo_var)));
NullCheck(L_15);
CookieException__ctor_m0E120836351D3B4DFA0E6542D805CB96A941EEB1(L_15, L_14, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Cookie_set_Port_mBF4BE6DCE6A229EE32A361BD8571CCB213AACB1B_RuntimeMethod_var)));
}
IL_005d:
{
String_t* L_16 = ___value0;
il2cpp_codegen_runtime_class_init_inline(Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_il2cpp_TypeInfo_var);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_17 = ((Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_StaticFields*)il2cpp_codegen_static_fields_for(Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_il2cpp_TypeInfo_var))->___PortSplitDelimiters_0;
NullCheck(L_16);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_18;
L_18 = String_Split_m101D35FEC86371D2BB4E3480F6F896880093B2E9(L_16, L_17, NULL);
V_0 = L_18;
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_19 = (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*)il2cpp_codegen_object_new(List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var);
NullCheck(L_19);
List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8(L_19, List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_RuntimeMethod_var);
V_1 = L_19;
V_3 = 0;
goto IL_00e9;
}
IL_0073:
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_20 = V_0;
int32_t L_21 = V_3;
NullCheck(L_20);
int32_t L_22 = L_21;
String_t* L_23 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
String_t* L_24 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
bool L_25;
L_25 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_23, L_24, NULL);
if (!L_25)
{
goto IL_00e5;
}
}
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_26 = V_0;
int32_t L_27 = V_3;
NullCheck(L_26);
int32_t L_28 = L_27;
String_t* L_29 = (L_26)->GetAt(static_cast<il2cpp_array_size_t>(L_28));
bool L_30;
L_30 = Int32_TryParse_mFC6BFCB86964E2BCA4052155B10983837A695EA4(L_29, (&V_2), NULL);
if (L_30)
{
goto IL_00b0;
}
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_31 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_32 = L_31;
NullCheck(L_32);
ArrayElementTypeCheck (L_32, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC98D2B8D58BCA5B86E2100FBE8FE46701D193B8F)));
(L_32)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC98D2B8D58BCA5B86E2100FBE8FE46701D193B8F)));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_33 = L_32;
String_t* L_34 = ___value0;
NullCheck(L_33);
ArrayElementTypeCheck (L_33, L_34);
(L_33)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_34);
String_t* L_35;
L_35 = SR_GetString_mF713FCC09E41A8D1C0DE44EDD0932A57800A9BA3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCA80D97E823D02887E6B0876376D067564152C0B)), L_33, NULL);
CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F* L_36 = (CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F_il2cpp_TypeInfo_var)));
NullCheck(L_36);
CookieException__ctor_m0E120836351D3B4DFA0E6542D805CB96A941EEB1(L_36, L_35, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_36, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Cookie_set_Port_mBF4BE6DCE6A229EE32A361BD8571CCB213AACB1B_RuntimeMethod_var)));
}
IL_00b0:
{
int32_t L_37 = V_2;
if ((((int32_t)L_37) < ((int32_t)0)))
{
goto IL_00bc;
}
}
{
int32_t L_38 = V_2;
if ((((int32_t)L_38) <= ((int32_t)((int32_t)65535))))
{
goto IL_00de;
}
}
IL_00bc:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_39 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_40 = L_39;
NullCheck(L_40);
ArrayElementTypeCheck (L_40, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC98D2B8D58BCA5B86E2100FBE8FE46701D193B8F)));
(L_40)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC98D2B8D58BCA5B86E2100FBE8FE46701D193B8F)));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_41 = L_40;
String_t* L_42 = ___value0;
NullCheck(L_41);
ArrayElementTypeCheck (L_41, L_42);
(L_41)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_42);
String_t* L_43;
L_43 = SR_GetString_mF713FCC09E41A8D1C0DE44EDD0932A57800A9BA3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCA80D97E823D02887E6B0876376D067564152C0B)), L_41, NULL);
CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F* L_44 = (CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CookieException_t6284EB50036801672CA54BCB5BA3E6F57B6A6B9F_il2cpp_TypeInfo_var)));
NullCheck(L_44);
CookieException__ctor_m0E120836351D3B4DFA0E6542D805CB96A941EEB1(L_44, L_43, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_44, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Cookie_set_Port_mBF4BE6DCE6A229EE32A361BD8571CCB213AACB1B_RuntimeMethod_var)));
}
IL_00de:
{
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_45 = V_1;
int32_t L_46 = V_2;
NullCheck(L_45);
List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline(L_45, L_46, List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
}
IL_00e5:
{
int32_t L_47 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_47, 1));
}
IL_00e9:
{
int32_t L_48 = V_3;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_49 = V_0;
NullCheck(L_49);
if ((((int32_t)L_48) < ((int32_t)((int32_t)(((RuntimeArray*)L_49)->max_length)))))
{
goto IL_0073;
}
}
{
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_50 = V_1;
NullCheck(L_50);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_51;
L_51 = List_1_ToArray_m65479FB75A5FE539EA1A0D6681172717D23CEAAA(L_50, List_1_ToArray_m65479FB75A5FE539EA1A0D6681172717D23CEAAA_RuntimeMethod_var);
__this->___m_port_list_16 = L_51;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_port_list_16), (void*)L_51);
String_t* L_52 = ___value0;
__this->___m_port_14 = L_52;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_port_14), (void*)L_52);
__this->___m_version_21 = 1;
__this->___m_cookieVariant_6 = 3;
return;
}
}
// System.Int32[] System.Net.Cookie::get_PortList()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* Cookie_get_PortList_m6CD4AE81E64F96345FA5F7DFA5A08B3D26585272 (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method)
{
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->___m_port_list_16;
return L_0;
}
}
// System.String System.Net.Cookie::get__Port()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Cookie_get__Port_mAFC419B810D0D3BA8AA96A4934AD074E9603558D (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1FA13CA565DC9B5105D70A528D26A6FC7A57049E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC314CFCCFC2227C58A275C19171300597A034F25);
s_Il2CppMethodInitialized = true;
}
String_t* G_B3_0 = NULL;
String_t* G_B2_0 = NULL;
String_t* G_B4_0 = NULL;
String_t* G_B4_1 = NULL;
{
bool L_0 = __this->___m_port_implicit_15;
if (L_0)
{
goto IL_0037;
}
}
{
String_t* L_1 = __this->___m_port_14;
NullCheck(L_1);
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL);
G_B2_0 = _stringLiteralC314CFCCFC2227C58A275C19171300597A034F25;
if (!L_2)
{
G_B3_0 = _stringLiteralC314CFCCFC2227C58A275C19171300597A034F25;
goto IL_002c;
}
}
{
String_t* L_3 = __this->___m_port_14;
String_t* L_4;
L_4 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteral1FA13CA565DC9B5105D70A528D26A6FC7A57049E, L_3, NULL);
G_B4_0 = L_4;
G_B4_1 = G_B2_0;
goto IL_0031;
}
IL_002c:
{
String_t* L_5 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
G_B4_0 = L_5;
G_B4_1 = G_B3_0;
}
IL_0031:
{
String_t* L_6;
L_6 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(G_B4_1, G_B4_0, NULL);
return L_6;
}
IL_0037:
{
String_t* L_7 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_7;
}
}
// System.Boolean System.Net.Cookie::get_Secure()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cookie_get_Secure_mC66DA9E446CDBF94707FC0BB3986368C5BE3FC40 (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___m_secure_17;
return L_0;
}
}
// System.Void System.Net.Cookie::set_Secure(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cookie_set_Secure_mCC65037E43CF517C5636B395936B938E1762B467 (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->___m_secure_17 = L_0;
return;
}
}
// System.String System.Net.Cookie::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Cookie_get_Value_m2FA4FCF7BE3B02C07D7AF1942C135FF3CE2654F8 (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___m_value_20;
return L_0;
}
}
// System.Void System.Net.Cookie::set_Value(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cookie_set_Value_m5532B3DAB33D22EF13BBD7A73D4C9B5C2F78BC4C (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* G_B2_0 = NULL;
Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* G_B1_0 = NULL;
String_t* G_B3_0 = NULL;
Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* G_B3_1 = NULL;
{
String_t* L_0 = ___value0;
G_B1_0 = __this;
if (!L_0)
{
G_B2_0 = __this;
goto IL_0007;
}
}
{
String_t* L_1 = ___value0;
G_B3_0 = L_1;
G_B3_1 = G_B1_0;
goto IL_000c;
}
IL_0007:
{
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
G_B3_0 = L_2;
G_B3_1 = G_B2_0;
}
IL_000c:
{
NullCheck(G_B3_1);
G_B3_1->___m_value_20 = G_B3_0;
Il2CppCodeGenWriteBarrier((void**)(&G_B3_1->___m_value_20), (void*)G_B3_0);
return;
}
}
// System.Net.CookieVariant System.Net.Cookie::get_Variant()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Cookie_get_Variant_m12BD01DEE266FDACF399BF3ADA69A827319B1511 (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___m_cookieVariant_6;
return L_0;
}
}
// System.String System.Net.Cookie::get_DomainKey()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Cookie_get_DomainKey_mFA3136D76EB6D9860FFB594DE41DE00179A9C9C1 (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___m_domain_implicit_9;
if (L_0)
{
goto IL_000f;
}
}
{
String_t* L_1 = __this->___m_domainKey_22;
return L_1;
}
IL_000f:
{
String_t* L_2;
L_2 = Cookie_get_Domain_m4965D8397859F47975FD7E3C31E259B4979AF69A_inline(__this, NULL);
return L_2;
}
}
// System.Int32 System.Net.Cookie::get_Version()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Cookie_get_Version_m504ECB98B28863D90067A67125E9636888232C5B (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___m_version_21;
return L_0;
}
}
// System.Void System.Net.Cookie::set_Version(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cookie_set_Version_m0610EA591E212AAD844B4742FC4204E3D0099AE9 (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_000f;
}
}
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_1);
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Cookie_set_Version_m0610EA591E212AAD844B4742FC4204E3D0099AE9_RuntimeMethod_var)));
}
IL_000f:
{
int32_t L_2 = ___value0;
__this->___m_version_21 = L_2;
int32_t L_3 = ___value0;
if ((((int32_t)L_3) <= ((int32_t)0)))
{
goto IL_002a;
}
}
{
int32_t L_4 = __this->___m_cookieVariant_6;
if ((((int32_t)L_4) >= ((int32_t)2)))
{
goto IL_002a;
}
}
{
__this->___m_cookieVariant_6 = 2;
}
IL_002a:
{
return;
}
}
// System.String System.Net.Cookie::get__Version()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Cookie_get__Version_m270926E18A41C5CA0E3C2251BEFF3EA14152FA54 (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4C22725C9E6B4F7CBB255320C6F9A96FCE950DFC);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677);
s_Il2CppMethodInitialized = true;
}
String_t* G_B3_0 = NULL;
String_t* G_B2_0 = NULL;
String_t* G_B4_0 = NULL;
String_t* G_B4_1 = NULL;
String_t* G_B6_0 = NULL;
String_t* G_B6_1 = NULL;
String_t* G_B6_2 = NULL;
String_t* G_B5_0 = NULL;
String_t* G_B5_1 = NULL;
String_t* G_B5_2 = NULL;
String_t* G_B7_0 = NULL;
String_t* G_B7_1 = NULL;
String_t* G_B7_2 = NULL;
String_t* G_B7_3 = NULL;
{
int32_t L_0;
L_0 = Cookie_get_Version_m504ECB98B28863D90067A67125E9636888232C5B_inline(__this, NULL);
if (!L_0)
{
goto IL_004b;
}
}
{
bool L_1 = __this->___IsQuotedVersion_23;
G_B2_0 = _stringLiteral4C22725C9E6B4F7CBB255320C6F9A96FCE950DFC;
if (L_1)
{
G_B3_0 = _stringLiteral4C22725C9E6B4F7CBB255320C6F9A96FCE950DFC;
goto IL_001c;
}
}
{
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
G_B4_0 = L_2;
G_B4_1 = G_B2_0;
goto IL_0021;
}
IL_001c:
{
G_B4_0 = _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677;
G_B4_1 = G_B3_0;
}
IL_0021:
{
int32_t* L_3 = (&__this->___m_version_21);
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_4;
L_4 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL);
String_t* L_5;
L_5 = Int32_ToString_m3B2730D9F5B0C1C57DCCC8B8DCFB8E5EC4E8979B(L_3, L_4, NULL);
bool L_6 = __this->___IsQuotedVersion_23;
G_B5_0 = L_5;
G_B5_1 = G_B4_0;
G_B5_2 = G_B4_1;
if (L_6)
{
G_B6_0 = L_5;
G_B6_1 = G_B4_0;
G_B6_2 = G_B4_1;
goto IL_0040;
}
}
{
String_t* L_7 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
G_B7_0 = L_7;
G_B7_1 = G_B5_0;
G_B7_2 = G_B5_1;
G_B7_3 = G_B5_2;
goto IL_0045;
}
IL_0040:
{
G_B7_0 = _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677;
G_B7_1 = G_B6_0;
G_B7_2 = G_B6_1;
G_B7_3 = G_B6_2;
}
IL_0045:
{
String_t* L_8;
L_8 = String_Concat_mF8B69BE42B5C5ABCAD3C176FBBE3010E0815D65D(G_B7_3, G_B7_2, G_B7_1, G_B7_0, NULL);
return L_8;
}
IL_004b:
{
String_t* L_9 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_9;
}
}
// System.Collections.IComparer System.Net.Cookie::GetComparer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Cookie_GetComparer_mFA19780A633FC62C6C1B11DED35FC7712546D396 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_il2cpp_TypeInfo_var);
Comparer_t142F6C5E53FD6C38EFE484B87752469CEEEFD7AD* L_0 = ((Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_StaticFields*)il2cpp_codegen_static_fields_for(Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_il2cpp_TypeInfo_var))->___staticComparer_3;
return L_0;
}
}
// System.Boolean System.Net.Cookie::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cookie_Equals_mC107205C12870AB31E46A7DA9419D7A10F0F349F (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, RuntimeObject* ___comparand0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* V_0 = NULL;
{
RuntimeObject* L_0 = ___comparand0;
if (((Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3*)IsInstSealed((RuntimeObject*)L_0, Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_il2cpp_TypeInfo_var)))
{
goto IL_000a;
}
}
{
return (bool)0;
}
IL_000a:
{
RuntimeObject* L_1 = ___comparand0;
V_0 = ((Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3*)CastclassSealed((RuntimeObject*)L_1, Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_il2cpp_TypeInfo_var));
String_t* L_2;
L_2 = Cookie_get_Name_m8DE46D0C6ABF6E6B2D7B82E9A0AFCA04189FD6C1_inline(__this, NULL);
Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* L_3 = V_0;
NullCheck(L_3);
String_t* L_4;
L_4 = Cookie_get_Name_m8DE46D0C6ABF6E6B2D7B82E9A0AFCA04189FD6C1_inline(L_3, NULL);
int32_t L_5;
L_5 = String_Compare_mC553A80AD870F5777F0E8B5E705B0205396B9D3E(L_2, L_4, 5, NULL);
if (L_5)
{
goto IL_0070;
}
}
{
String_t* L_6;
L_6 = Cookie_get_Value_m2FA4FCF7BE3B02C07D7AF1942C135FF3CE2654F8_inline(__this, NULL);
Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* L_7 = V_0;
NullCheck(L_7);
String_t* L_8;
L_8 = Cookie_get_Value_m2FA4FCF7BE3B02C07D7AF1942C135FF3CE2654F8_inline(L_7, NULL);
int32_t L_9;
L_9 = String_Compare_mC553A80AD870F5777F0E8B5E705B0205396B9D3E(L_6, L_8, 4, NULL);
if (L_9)
{
goto IL_0070;
}
}
{
String_t* L_10;
L_10 = Cookie_get_Path_m805DD94569337D3ADA27B977CE95D672C344E448_inline(__this, NULL);
Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* L_11 = V_0;
NullCheck(L_11);
String_t* L_12;
L_12 = Cookie_get_Path_m805DD94569337D3ADA27B977CE95D672C344E448_inline(L_11, NULL);
int32_t L_13;
L_13 = String_Compare_mC553A80AD870F5777F0E8B5E705B0205396B9D3E(L_10, L_12, 4, NULL);
if (L_13)
{
goto IL_0070;
}
}
{
String_t* L_14;
L_14 = Cookie_get_Domain_m4965D8397859F47975FD7E3C31E259B4979AF69A_inline(__this, NULL);
Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* L_15 = V_0;
NullCheck(L_15);
String_t* L_16;
L_16 = Cookie_get_Domain_m4965D8397859F47975FD7E3C31E259B4979AF69A_inline(L_15, NULL);
int32_t L_17;
L_17 = String_Compare_mC553A80AD870F5777F0E8B5E705B0205396B9D3E(L_14, L_16, 5, NULL);
if (L_17)
{
goto IL_0070;
}
}
{
int32_t L_18;
L_18 = Cookie_get_Version_m504ECB98B28863D90067A67125E9636888232C5B_inline(__this, NULL);
Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* L_19 = V_0;
NullCheck(L_19);
int32_t L_20;
L_20 = Cookie_get_Version_m504ECB98B28863D90067A67125E9636888232C5B_inline(L_19, NULL);
return (bool)((((int32_t)L_18) == ((int32_t)L_20))? 1 : 0);
}
IL_0070:
{
return (bool)0;
}
}
// System.Int32 System.Net.Cookie::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Cookie_GetHashCode_m3105678D015466147809357A7E838789ACF08400 (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1FA13CA565DC9B5105D70A528D26A6FC7A57049E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral951CCB49640C8F9E81FB4E0D82730321F4E15BB3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF712C5F62331F2870DB319ED66CDF53B831F3CA1);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)((int32_t)9));
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_1 = L_0;
String_t* L_2;
L_2 = Cookie_get_Name_m8DE46D0C6ABF6E6B2D7B82E9A0AFCA04189FD6C1_inline(__this, NULL);
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_2);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_3 = L_1;
NullCheck(L_3);
ArrayElementTypeCheck (L_3, _stringLiteral1FA13CA565DC9B5105D70A528D26A6FC7A57049E);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral1FA13CA565DC9B5105D70A528D26A6FC7A57049E);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_4 = L_3;
String_t* L_5;
L_5 = Cookie_get_Value_m2FA4FCF7BE3B02C07D7AF1942C135FF3CE2654F8_inline(__this, NULL);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_5);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_5);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_6 = L_4;
NullCheck(L_6);
ArrayElementTypeCheck (L_6, _stringLiteral951CCB49640C8F9E81FB4E0D82730321F4E15BB3);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral951CCB49640C8F9E81FB4E0D82730321F4E15BB3);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_7 = L_6;
String_t* L_8;
L_8 = Cookie_get_Path_m805DD94569337D3ADA27B977CE95D672C344E448_inline(__this, NULL);
NullCheck(L_7);
ArrayElementTypeCheck (L_7, L_8);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)L_8);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_9 = L_7;
NullCheck(L_9);
ArrayElementTypeCheck (L_9, _stringLiteralF712C5F62331F2870DB319ED66CDF53B831F3CA1);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteralF712C5F62331F2870DB319ED66CDF53B831F3CA1);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_10 = L_9;
String_t* L_11;
L_11 = Cookie_get_Domain_m4965D8397859F47975FD7E3C31E259B4979AF69A_inline(__this, NULL);
NullCheck(L_10);
ArrayElementTypeCheck (L_10, L_11);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)L_11);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_12 = L_10;
NullCheck(L_12);
ArrayElementTypeCheck (L_12, _stringLiteralF712C5F62331F2870DB319ED66CDF53B831F3CA1);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(7), (String_t*)_stringLiteralF712C5F62331F2870DB319ED66CDF53B831F3CA1);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_13 = L_12;
int32_t L_14;
L_14 = Cookie_get_Version_m504ECB98B28863D90067A67125E9636888232C5B_inline(__this, NULL);
V_0 = L_14;
String_t* L_15;
L_15 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5((&V_0), NULL);
NullCheck(L_13);
ArrayElementTypeCheck (L_13, L_15);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(8), (String_t*)L_15);
String_t* L_16;
L_16 = String_Concat_m6B0734B65813C8EA093D78E5C2D16534EB6FE8C0(L_13, NULL);
NullCheck(L_16);
int32_t L_17;
L_17 = VirtualFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_16);
return L_17;
}
}
// System.String System.Net.Cookie::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Cookie_ToString_m006CFACD30904A14E95E554C61B8E51BFE710ABC (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1FA13CA565DC9B5105D70A528D26A6FC7A57049E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF712C5F62331F2870DB319ED66CDF53B831F3CA1);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
String_t* V_2 = NULL;
String_t* V_3 = NULL;
String_t* V_4 = NULL;
int32_t G_B2_0 = 0;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B2_1 = NULL;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B2_2 = NULL;
int32_t G_B1_0 = 0;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B1_1 = NULL;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B1_2 = NULL;
String_t* G_B3_0 = NULL;
int32_t G_B3_1 = 0;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B3_2 = NULL;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B3_3 = NULL;
int32_t G_B5_0 = 0;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B5_1 = NULL;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B5_2 = NULL;
int32_t G_B4_0 = 0;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B4_1 = NULL;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B4_2 = NULL;
String_t* G_B6_0 = NULL;
int32_t G_B6_1 = 0;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B6_2 = NULL;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B6_3 = NULL;
int32_t G_B8_0 = 0;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B8_1 = NULL;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B8_2 = NULL;
int32_t G_B7_0 = 0;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B7_1 = NULL;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B7_2 = NULL;
String_t* G_B9_0 = NULL;
int32_t G_B9_1 = 0;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B9_2 = NULL;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B9_3 = NULL;
int32_t G_B11_0 = 0;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B11_1 = NULL;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B11_2 = NULL;
int32_t G_B10_0 = 0;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B10_1 = NULL;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B10_2 = NULL;
String_t* G_B12_0 = NULL;
int32_t G_B12_1 = 0;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B12_2 = NULL;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B12_3 = NULL;
{
String_t* L_0;
L_0 = Cookie_get__Domain_m8957AD2A8BF7C19270B62A6BF2C88E1E11347750(__this, NULL);
V_0 = L_0;
String_t* L_1;
L_1 = Cookie_get__Path_mD7C431ED16B7443C45A872E061E389E16768CBE0(__this, NULL);
V_1 = L_1;
String_t* L_2;
L_2 = Cookie_get__Port_mAFC419B810D0D3BA8AA96A4934AD074E9603558D(__this, NULL);
V_2 = L_2;
String_t* L_3;
L_3 = Cookie_get__Version_m270926E18A41C5CA0E3C2251BEFF3EA14152FA54(__this, NULL);
V_3 = L_3;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_4 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)7);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_5 = L_4;
String_t* L_6 = V_3;
NullCheck(L_6);
int32_t L_7;
L_7 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_6, NULL);
G_B1_0 = 0;
G_B1_1 = L_5;
G_B1_2 = L_5;
if (!L_7)
{
G_B2_0 = 0;
G_B2_1 = L_5;
G_B2_2 = L_5;
goto IL_0039;
}
}
{
String_t* L_8 = V_3;
String_t* L_9;
L_9 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_8, _stringLiteralF712C5F62331F2870DB319ED66CDF53B831F3CA1, NULL);
G_B3_0 = L_9;
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
G_B3_3 = G_B1_2;
goto IL_003e;
}
IL_0039:
{
String_t* L_10 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
G_B3_0 = L_10;
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
G_B3_3 = G_B2_2;
}
IL_003e:
{
NullCheck(G_B3_2);
ArrayElementTypeCheck (G_B3_2, G_B3_0);
(G_B3_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B3_1), (String_t*)G_B3_0);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_11 = G_B3_3;
String_t* L_12;
L_12 = Cookie_get_Name_m8DE46D0C6ABF6E6B2D7B82E9A0AFCA04189FD6C1_inline(__this, NULL);
NullCheck(L_11);
ArrayElementTypeCheck (L_11, L_12);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_12);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_13 = L_11;
NullCheck(L_13);
ArrayElementTypeCheck (L_13, _stringLiteral1FA13CA565DC9B5105D70A528D26A6FC7A57049E);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral1FA13CA565DC9B5105D70A528D26A6FC7A57049E);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_14 = L_13;
String_t* L_15;
L_15 = Cookie_get_Value_m2FA4FCF7BE3B02C07D7AF1942C135FF3CE2654F8_inline(__this, NULL);
NullCheck(L_14);
ArrayElementTypeCheck (L_14, L_15);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_15);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_16 = L_14;
String_t* L_17 = V_1;
NullCheck(L_17);
int32_t L_18;
L_18 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_17, NULL);
G_B4_0 = 4;
G_B4_1 = L_16;
G_B4_2 = L_16;
if (!L_18)
{
G_B5_0 = 4;
G_B5_1 = L_16;
G_B5_2 = L_16;
goto IL_0070;
}
}
{
String_t* L_19 = V_1;
String_t* L_20;
L_20 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteralF712C5F62331F2870DB319ED66CDF53B831F3CA1, L_19, NULL);
G_B6_0 = L_20;
G_B6_1 = G_B4_0;
G_B6_2 = G_B4_1;
G_B6_3 = G_B4_2;
goto IL_0075;
}
IL_0070:
{
String_t* L_21 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
G_B6_0 = L_21;
G_B6_1 = G_B5_0;
G_B6_2 = G_B5_1;
G_B6_3 = G_B5_2;
}
IL_0075:
{
NullCheck(G_B6_2);
ArrayElementTypeCheck (G_B6_2, G_B6_0);
(G_B6_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B6_1), (String_t*)G_B6_0);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_22 = G_B6_3;
String_t* L_23 = V_0;
NullCheck(L_23);
int32_t L_24;
L_24 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_23, NULL);
G_B7_0 = 5;
G_B7_1 = L_22;
G_B7_2 = L_22;
if (!L_24)
{
G_B8_0 = 5;
G_B8_1 = L_22;
G_B8_2 = L_22;
goto IL_008d;
}
}
{
String_t* L_25 = V_0;
String_t* L_26;
L_26 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteralF712C5F62331F2870DB319ED66CDF53B831F3CA1, L_25, NULL);
G_B9_0 = L_26;
G_B9_1 = G_B7_0;
G_B9_2 = G_B7_1;
G_B9_3 = G_B7_2;
goto IL_0092;
}
IL_008d:
{
String_t* L_27 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
G_B9_0 = L_27;
G_B9_1 = G_B8_0;
G_B9_2 = G_B8_1;
G_B9_3 = G_B8_2;
}
IL_0092:
{
NullCheck(G_B9_2);
ArrayElementTypeCheck (G_B9_2, G_B9_0);
(G_B9_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B9_1), (String_t*)G_B9_0);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_28 = G_B9_3;
String_t* L_29 = V_2;
NullCheck(L_29);
int32_t L_30;
L_30 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_29, NULL);
G_B10_0 = 6;
G_B10_1 = L_28;
G_B10_2 = L_28;
if (!L_30)
{
G_B11_0 = 6;
G_B11_1 = L_28;
G_B11_2 = L_28;
goto IL_00aa;
}
}
{
String_t* L_31 = V_2;
String_t* L_32;
L_32 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteralF712C5F62331F2870DB319ED66CDF53B831F3CA1, L_31, NULL);
G_B12_0 = L_32;
G_B12_1 = G_B10_0;
G_B12_2 = G_B10_1;
G_B12_3 = G_B10_2;
goto IL_00af;
}
IL_00aa:
{
String_t* L_33 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
G_B12_0 = L_33;
G_B12_1 = G_B11_0;
G_B12_2 = G_B11_1;
G_B12_3 = G_B11_2;
}
IL_00af:
{
NullCheck(G_B12_2);
ArrayElementTypeCheck (G_B12_2, G_B12_0);
(G_B12_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B12_1), (String_t*)G_B12_0);
String_t* L_34;
L_34 = String_Concat_m6B0734B65813C8EA093D78E5C2D16534EB6FE8C0(G_B12_3, NULL);
V_4 = L_34;
String_t* L_35 = V_4;
bool L_36;
L_36 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_35, _stringLiteral1FA13CA565DC9B5105D70A528D26A6FC7A57049E, NULL);
if (!L_36)
{
goto IL_00cb;
}
}
{
String_t* L_37 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_37;
}
IL_00cb:
{
String_t* L_38 = V_4;
return L_38;
}
}
// System.Void System.Net.Cookie::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cookie__cctor_m22FE8B9F624B4E9EC5A6AB1BB1C1E1A116D89011 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_t142F6C5E53FD6C38EFE484B87752469CEEEFD7AD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____9F58F1261D211553DE8FBC1AFA477C84EA3974B9BFF38223D771D0CDA787E15A_11_FieldInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____DFA7289CF8D8029ACEE90F30530C6926950E8DD20285772458F271AFD015BAD5_14_FieldInfo_var);
s_Il2CppMethodInitialized = true;
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)3);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = L_0;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_2 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____9F58F1261D211553DE8FBC1AFA477C84EA3974B9BFF38223D771D0CDA787E15A_11_FieldInfo_var) };
RuntimeHelpers_InitializeArray_mE10C3436BA703E4D9D41B3F8F365E4C34F9926EF((RuntimeArray*)L_1, L_2, NULL);
((Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_StaticFields*)il2cpp_codegen_static_fields_for(Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_il2cpp_TypeInfo_var))->___PortSplitDelimiters_0 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&((Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_StaticFields*)il2cpp_codegen_static_fields_for(Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_il2cpp_TypeInfo_var))->___PortSplitDelimiters_0), (void*)L_1);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)7);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_4 = L_3;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_5 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____DFA7289CF8D8029ACEE90F30530C6926950E8DD20285772458F271AFD015BAD5_14_FieldInfo_var) };
RuntimeHelpers_InitializeArray_mE10C3436BA703E4D9D41B3F8F365E4C34F9926EF((RuntimeArray*)L_4, L_5, NULL);
((Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_StaticFields*)il2cpp_codegen_static_fields_for(Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_il2cpp_TypeInfo_var))->___Reserved2Name_1 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&((Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_StaticFields*)il2cpp_codegen_static_fields_for(Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_il2cpp_TypeInfo_var))->___Reserved2Name_1), (void*)L_4);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)2);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_7 = L_6;
NullCheck(L_7);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)59));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_8 = L_7;
NullCheck(L_8);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(1), (Il2CppChar)((int32_t)44));
((Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_StaticFields*)il2cpp_codegen_static_fields_for(Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_il2cpp_TypeInfo_var))->___Reserved2Value_2 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&((Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_StaticFields*)il2cpp_codegen_static_fields_for(Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_il2cpp_TypeInfo_var))->___Reserved2Value_2), (void*)L_8);
Comparer_t142F6C5E53FD6C38EFE484B87752469CEEEFD7AD* L_9 = (Comparer_t142F6C5E53FD6C38EFE484B87752469CEEEFD7AD*)il2cpp_codegen_object_new(Comparer_t142F6C5E53FD6C38EFE484B87752469CEEEFD7AD_il2cpp_TypeInfo_var);
NullCheck(L_9);
Comparer__ctor_mEF67BBC47130D32EC011BCE7C838625DF32885F1(L_9, NULL);
((Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_StaticFields*)il2cpp_codegen_static_fields_for(Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_il2cpp_TypeInfo_var))->___staticComparer_3 = L_9;
Il2CppCodeGenWriteBarrier((void**)(&((Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_StaticFields*)il2cpp_codegen_static_fields_for(Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3_il2cpp_TypeInfo_var))->___staticComparer_3), (void*)L_9);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* IPEndPoint_get_Address_m72F783CB76E10E9DBDF680CCC1DAAED201BABB1C_inline (IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB* __this, const RuntimeMethod* method)
{
{
IPAddress_t2F4486449B0D73FF2D3B36A9FE5E9C3F63116484* L_0 = __this->____address_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* FtpWebRequest_get_MethodInfo_m1916AEF829D24CCE147215A4CC8B5D12E35370EB_inline (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method)
{
{
FtpMethodInfo_t472E9EFDBE8FDE2D3788CACB1A1B8CFB5A23474E* L_0 = __this->____methodInfo_15;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* NetworkStreamWrapper_get_NetworkStream_m65DC14637198CEE4E9F9543EA3AC07168BA06488_inline (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = __this->____networkStream_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void NetworkStreamWrapper_set_NetworkStream_m66A3B0C65E4DD88A79296C88CE4DC5912ED997A7_inline (NetworkStreamWrapper_tE8C6B35509D3406DFB51F2D36E52CF6C5EFAB029* __this, NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* ___value0, const RuntimeMethod* method)
{
{
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_0 = ___value0;
__this->____networkStream_5 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____networkStream_5), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool FtpWebRequest_get_EnableSsl_mE30506F987A04EB9771FD530066BC18A9F2A7ED8_inline (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->____enableSsl_33;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____stringLength_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool FtpWebRequest_get_UseBinary_mF3DE86086AD5AD72D92B04325590EA25E2597591_inline (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->____binary_26;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool FtpWebRequest_get_UsePassive_m3934FCB6A521CBDC77018736E820BAA8978135BC_inline (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->____passive_25;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t FtpWebRequest_get_ContentOffset_mA4ECBD88A0B0834C16BF00D976B20AF95D87701B_inline (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method)
{
{
int64_t L_0 = __this->____contentOffset_23;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* FtpWebRequest_get_RenameTo_m582E665F04E3524E6E4F872D30E4DD30955760E5_inline (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->____renameTo_16;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t IPEndPoint_get_Port_mFBE1AF1C9CC7E68A46BF46AD3869CC9DC01CF429_inline (IPEndPoint_t2F09CBA7A808B67724B4E2954EEDC46D910F4ECB* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____port_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Socket_get_AddressFamily_m42C390D31345314080EC35356ACFBBFF7E1123E5_inline (Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___addressFamily_16;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Socket_get_SocketType_mAFBEF108992F069AF0B8AD26D47EBBEADB8D2661_inline (Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___socketType_17;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Socket_get_ProtocolType_m364A0E823BF3EA78DAFC1ED3A6B39658FB6A23BB_inline (Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___protocolType_18;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* WebException_get_Response_m808BF96464DDCE6C66D633355101C69800A5A7E7_inline (WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* __this, const RuntimeMethod* method)
{
{
WebResponse_t7CDE1F20895C8D5AD392425F9AD4BE8E8696B682* L_0 = __this->___m_Response_19;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t FtpWebResponse_get_StatusCode_m874357CEF43E1D988350EE6229F996F0F41DB795_inline (FtpWebResponse_tE2B0475BCFAB94A6EBFECC2C1D5AF43A52C17A77* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____statusCode_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool FtpWebRequest_get_Aborted_mD54BB6D8935C6139F80371D631FA815961BAEA1D_inline (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->____aborted_28;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* CredentialCache_get_DefaultNetworkCredentials_m5C67A21E1BD70EE41FA927D7603622FBA7F10BA6_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SystemNetworkCredential_tFBEE5F9E93DECB97C8622974DD2F2EBCB0CBD4FF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(SystemNetworkCredential_tFBEE5F9E93DECB97C8622974DD2F2EBCB0CBD4FF_il2cpp_TypeInfo_var);
SystemNetworkCredential_tFBEE5F9E93DECB97C8622974DD2F2EBCB0CBD4FF* L_0 = ((SystemNetworkCredential_tFBEE5F9E93DECB97C8622974DD2F2EBCB0CBD4FF_StaticFields*)il2cpp_codegen_static_fields_for(SystemNetworkCredential_tFBEE5F9E93DECB97C8622974DD2F2EBCB0CBD4FF_il2cpp_TypeInfo_var))->___defaultCredential_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool LazyAsyncResult_get_EndCalled_mB9C44CD3D27331014867DB4D1957C4E10AB888B8_inline (LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___m_EndCalled_6;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void LazyAsyncResult_set_EndCalled_m90572F07D3130B1B2E9E1AF29B697EF61E8BFECF_inline (LazyAsyncResult_t60F482D5C9A613C3ED0567BEC367D54A5459716B* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->___m_EndCalled_6 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t FtpWebRequest_get_RemainingTimeout_m22F8B622745C3B79728C7378C623523DB932FB0D_inline (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____remainingTimeout_21;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Exception_t* Exception_get_InnerException_m0C1BDB339C786BA4DA7D2C1AD214571CFBBB1410_inline (Exception_t* __this, const RuntimeMethod* method)
{
{
Exception_t* L_0 = __this->____innerException_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool CommandStream_get_RecoverableFailure_m0FF23E84547D7F7E7C4EA8C56443F4C18AEA5641_inline (CommandStream_tE12108C15BBCC8F52FB53DC1EE3EDB2537E4F123* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->____recoverableFailure_8;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t WebException_get_Status_m9B08D3B07C3D75A6783EADB1215EB54E2D3B9822_inline (WebException_t106BE934ACC529D73F9EA01B0545487E8F6582C8* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___m_Status_18;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t FtpWebRequest_get_ReadWriteTimeout_mB6F0DF85418ED4107E9AA448C46B289C3C36CECF_inline (FtpWebRequest_t9D2BE7BE1D0B56708DF62FB00D39571DF7B924A9* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____readWriteTimeout_40;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t FtpControlStream_get_ContentLength_mE520E47DE78B6FD130907992A13C5CE778286DC7_inline (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, const RuntimeMethod* method)
{
{
int64_t L_0 = __this->____contentLength_29;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* FtpControlStream_get_ResponseUri_mC488459D89E1783FDC6DCA0DFB2EEC465BE165F0_inline (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, const RuntimeMethod* method)
{
{
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_0 = __this->____responseUri_35;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D FtpControlStream_get_LastModified_m2C2AE6C823CB3CE01A1E62FF588781F535177258_inline (FtpControlStream_tEB060EF4E06E99909915AE726E1C3098C4F6E888* __this, const RuntimeMethod* method)
{
{
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = __this->____lastModified_30;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline (ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C* __this, const RuntimeMethod* method)
{
{
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_0 = __this->___m_configuredTaskAwaiter_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* TcpClient_get_Client_m38B7DCD73EB42C6BBE6340B5E4C0A8432C1140C0_inline (TcpClient_t753B702EE06B59897564F75CEBFB6C8AFF10BD58* __this, const RuntimeMethod* method)
{
{
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_0 = __this->___m_ClientSocket_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* IPHostEntry_get_HostName_m04050E3890C11BC5CB02BF48FBDD8AB4938FC390_inline (IPHostEntry_tAAAEB0F40DB9F28BE601B5FE7DA1D76191C94490* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___hostName_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D* IPHostEntry_get_AddressList_m9D14D52EFB41C53C9C4A36D438E1333A99B7AA71_inline (IPHostEntry_tAAAEB0F40DB9F28BE601B5FE7DA1D76191C94490* __this, const RuntimeMethod* method)
{
{
IPAddressU5BU5D_t3AEDF3B94746C9023A4549F878AA47F702C9CD0D* L_0 = __this->___addressList_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void WebRequestPrefixElement_set_Creator_mD7ECF1CF1BD68AC660ED2E3EE27582CF3903CCCE_inline (WebRequestPrefixElement_tBE0FDE8DE0352095DECA0964655D25E05E435C35* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->___creator_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___creator_1), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* NetworkCredential_InternalGetUserName_m3C611F91EF4D0D363D0F727ED93B5BB71057BAA9_inline (NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___m_userName_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* NetworkCredential_InternalGetDomain_m23031ACE871266F13428419D081B8F0B76388D82_inline (NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___m_domain_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SocketAddress_get_Size_mBBA7758844EE6209A287989E0DBAE534C9A21A11_inline (SocketAddress_tAB4BC630E51E2241E607F4070DA1AEE00B442A03* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___m_Size_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* HeaderParser_Invoke_mCAC8132BC020AD64B0130E50BD0379A312245C8E_inline (HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* __this, String_t* ___value0, const RuntimeMethod* method)
{
typedef StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* (*FunctionPointerType) (HeaderParser_t9BD3B896027A047C0DA68DC732ABC1B9A660AB67* __this, String_t* ___value0, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___value0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RequestCache_tE6EF47B39906B93E4777BC33B850BE7F9D4E3F9C* RequestCacheBinding_get_Cache_m96C4E0E7F9A2616C261B185E2BB28766929D9800_inline (RequestCacheBinding_t18F3F4FF8D0F77E86C2C666CEE7FD48A80C042EE* __this, const RuntimeMethod* method)
{
{
RequestCache_tE6EF47B39906B93E4777BC33B850BE7F9D4E3F9C* L_0 = __this->___m_RequestCache_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RequestCacheValidator_t21CD031336DECDDBA28550AE4353AA82CC37E301* RequestCacheBinding_get_Validator_m74A9BB1C0CD37CD6B536782553DBCA4E67C145FC_inline (RequestCacheBinding_t18F3F4FF8D0F77E86C2C666CEE7FD48A80C042EE* __this, const RuntimeMethod* method)
{
{
RequestCacheValidator_t21CD031336DECDDBA28550AE4353AA82CC37E301* L_0 = __this->___m_CacheValidator_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RequestCacheProtocol_t43C1AC170194874A0C0B0D3B8BE9EABFB613DF85* WebRequest_get_CacheProtocol_m2936E9CABE538D40E6A88C1DC3B78CE9336A711B_inline (WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* __this, const RuntimeMethod* method)
{
{
RequestCacheProtocol_t43C1AC170194874A0C0B0D3B8BE9EABFB613DF85* L_0 = __this->___m_CacheProtocol_7;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RequestCachePolicy_get_Level_m2D45A6E3059B05DED8BFD8D1EA20AEC907D920D3_inline (RequestCachePolicy_tF15C94C5E458478914D5EB17753294BD488B0550* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___m_Level_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void WebRequest_set_CacheProtocol_m708E1FF1630F00DF87309F698E837EA6E55428C4_inline (WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* __this, RequestCacheProtocol_t43C1AC170194874A0C0B0D3B8BE9EABFB613DF85* ___value0, const RuntimeMethod* method)
{
{
RequestCacheProtocol_t43C1AC170194874A0C0B0D3B8BE9EABFB613DF85* L_0 = ___value0;
__this->___m_CacheProtocol_7 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_CacheProtocol_7), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* DefaultProxySectionInternal_get_WebProxy_mF4F15C1A7C6088706CA2834D70E8CD52086AFBDA_inline (DefaultProxySectionInternal_t660B515577A92AE03B159B75AC172E4E34466EC2* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___webProxy_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_inline (AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* __this, RuntimeObject* ___ar0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* __this, RuntimeObject* ___ar0, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___ar0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* DictionaryEntry_get_Value_m75FD18FE968AE131F28AA2CB0DF4895EBA39075E_inline (DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->____value_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* DictionaryEntry_get_Key_m09845C00732E530E6FCB9042079E90D3912215FE_inline (DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->____key_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TimerNode_set_Next_m77F9833E3DA4B66D565A10F0409C15B6B7677AB0_inline (TimerNode_t21C7B25E858618C4613473EB473193B566380994* __this, TimerNode_t21C7B25E858618C4613473EB473193B566380994* ___value0, const RuntimeMethod* method)
{
{
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_0 = ___value0;
__this->___next_6 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___next_6), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TimerNode_set_Prev_m3A7D7FD5A4B654793FB48D0BAF7D8E0638BB1E47_inline (TimerNode_t21C7B25E858618C4613473EB473193B566380994* __this, TimerNode_t21C7B25E858618C4613473EB473193B566380994* ___value0, const RuntimeMethod* method)
{
{
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_0 = ___value0;
__this->___prev_7 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___prev_7), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Queue_get_Duration_m1249509895EBD084C625F955B7B5A73B4E07DF0E_inline (Queue_t644DC21212BC432819522EDA395EB4562BE2CC47* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___m_DurationMilliseconds_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TimerNode_t21C7B25E858618C4613473EB473193B566380994* TimerNode_get_Next_mB0E6D37D592DC92CBED33A26B0362F00959578D5_inline (TimerNode_t21C7B25E858618C4613473EB473193B566380994* __this, const RuntimeMethod* method)
{
{
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_0 = __this->___next_6;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t GCHandle_op_Explicit_m67A1C3E8BC6C8163C5775AE62A514000D00CD9B6_inline (GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC ___value0, const RuntimeMethod* method)
{
{
GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC L_0 = ___value0;
intptr_t L_1 = L_0.___handle_0;
return L_1;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TimerNode_t21C7B25E858618C4613473EB473193B566380994* TimerNode_get_Prev_m358430B0F3DD4E039E38962A04118F937E6F5E4D_inline (TimerNode_t21C7B25E858618C4613473EB473193B566380994* __this, const RuntimeMethod* method)
{
{
TimerNode_t21C7B25E858618C4613473EB473193B566380994* L_0 = __this->___prev_7;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Timer_get_StartTime_m7F6B27CEC188763E8D261933D8E40E1CDC3820D4_inline (Timer_t251C62B59B7D01C94C28C6162B45228C0276C695* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___m_StartTimeMilliseconds_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Callback_Invoke_mE5F4E02D25CB58B34E93A55CC21418F00B55C1BE_inline (Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835* __this, Timer_t251C62B59B7D01C94C28C6162B45228C0276C695* ___timer0, int32_t ___timeNoticed1, RuntimeObject* ___context2, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (Callback_tA82FB058E98BD8625CF1B4DC6D63600B1B129835* __this, Timer_t251C62B59B7D01C94C28C6162B45228C0276C695* ___timer0, int32_t ___timeNoticed1, RuntimeObject* ___context2, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___timer0, ___timeNoticed1, ___context2, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Cookie_get_Variant_m12BD01DEE266FDACF399BF3ADA69A827319B1511_inline (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___m_cookieVariant_6;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Cookie_get_Version_m504ECB98B28863D90067A67125E9636888232C5B_inline (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___m_version_21;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Cookie_get_Comment_m51FBB45D81565655A5241B5DDD813BC3EC42B592_inline (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___m_comment_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Cookie_get_Path_m805DD94569337D3ADA27B977CE95D672C344E448_inline (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___m_path_12;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Cookie_get_Domain_m4965D8397859F47975FD7E3C31E259B4979AF69A_inline (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___m_domain_8;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Cookie_get_Name_m8DE46D0C6ABF6E6B2D7B82E9A0AFCA04189FD6C1_inline (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___m_name_11;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Cookie_get_Value_m2FA4FCF7BE3B02C07D7AF1942C135FF3CE2654F8_inline (Cookie_tEF33ED5B8CFD858C3338D220C2980BD50F6ADBC3* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___m_value_20;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m89F7B056854DF715AA3E2B78EB84D5FA3878E474_gshared_inline (const RuntimeMethod* method)
{
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 0));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ((EmptyArray_1_t7187E746F328254739F076CFBCAABB28D4B4554C_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 0)))->___Value_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = V_0;
int32_t L_7 = V_1;
RuntimeObject* L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (RuntimeObject*)L_8);
return;
}
IL_0034:
{
RuntimeObject* L_9 = ___item0;
(( void (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->____current_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 MemoryExtensions_AsSpan_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m107A36BC03551DA3FFD8816519D6F675279D5FB6_gshared_inline (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___array0, int32_t ___start1, 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;
}
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_0;
memset((&V_0), 0, sizeof(V_0));
uint8_t V_1 = 0x0;
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___array0;
if (L_0)
{
goto IL_0015;
}
}
{
int32_t L_1 = ___start1;
if (!L_1)
{
goto IL_000b;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m272CE1B3040BA89B2C478E2CF629670574F30353(NULL);
}
IL_000b:
{
il2cpp_codegen_initobj((&V_0), sizeof(Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305));
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_2 = V_0;
return L_2;
}
IL_0015:
{
il2cpp_codegen_initobj((&V_1), sizeof(uint8_t));
goto IL_0041;
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ___array0;
NullCheck((RuntimeObject*)L_4);
Type_t* L_5;
L_5 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3((RuntimeObject*)L_4, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_6 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 1)) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_7;
L_7 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_6, NULL);
bool L_8;
L_8 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_5, L_7, NULL);
if (!L_8)
{
goto IL_0041;
}
}
{
ThrowHelper_ThrowArrayTypeMismatchException_mDF51E7FDFA74ADCDDB1E43CFC4A3A3083692B010(NULL);
}
IL_0041:
{
int32_t L_9 = ___start1;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = ___array0;
NullCheck(L_10);
if ((!(((uint32_t)L_9) > ((uint32_t)((int32_t)(((RuntimeArray*)L_10)->max_length))))))
{
goto IL_004c;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m272CE1B3040BA89B2C478E2CF629670574F30353(NULL);
}
IL_004c:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = ___array0;
NullCheck((RuntimeArray*)L_11);
uint8_t* L_12;
L_12 = Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline((RuntimeArray*)L_11, NULL);
uint8_t* L_13;
L_13 = il2cpp_unsafe_as_ref<uint8_t>(L_12);
int32_t L_14 = ___start1;
uint8_t* L_15;
L_15 = il2cpp_unsafe_add<uint8_t,int32_t>(L_13, L_14);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_16 = ___array0;
NullCheck(L_16);
int32_t L_17 = ___start1;
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_18;
memset((&L_18), 0, sizeof(L_18));
Span_1__ctor_m947BF95D54571BF3897F96822B7A8FDA5853497B_inline((&L_18), L_15, ((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_16)->max_length)), L_17)), /*hidden argument*/il2cpp_rgctx_method(method->rgctx_data, 3));
return L_18;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_gshared_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___item0, const RuntimeMethod* method)
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_6 = V_0;
int32_t L_7 = V_1;
int32_t L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (int32_t)L_8);
return;
}
IL_0034:
{
int32_t L_9 = ___item0;
(( void (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_gshared_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t LinkedList_1_get_Count_mBFF1AE23B10EDF501026201C0427AA5820AECD82_gshared_inline (LinkedList_1_t49DC5CF34D4D642E6417F1245CDEC26A32F60C76* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->___count_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR LinkedListNode_1_t293BB098D459DDAE6A26977D0731A997186D1D4C* LinkedList_1_get_First_mF743AE65DDD0324290E33D3F433F37AC83216E18_gshared_inline (LinkedList_1_t49DC5CF34D4D642E6417F1245CDEC26A32F60C76* __this, const RuntimeMethod* method)
{
{
LinkedListNode_1_t293BB098D459DDAE6A26977D0731A997186D1D4C* L_0 = (LinkedListNode_1_t293BB098D459DDAE6A26977D0731A997186D1D4C*)__this->___head_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* LinkedListNode_1_get_Value_m8F67264DC98EF442B34CE4947044BCE18BF26053_gshared_inline (LinkedListNode_1_t293BB098D459DDAE6A26977D0731A997186D1D4C* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->___item_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint8_t* Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline (RuntimeArray* __this, const RuntimeMethod* method)
{
{
RawData_t37CAF2D3F74B7723974ED7CEEE9B297D8FA64ED0* L_0;
L_0 = il2cpp_unsafe_as<RawData_t37CAF2D3F74B7723974ED7CEEE9B297D8FA64ED0*>(__this);
NullCheck(L_0);
uint8_t* L_1 = (&L_0->___Data_2);
return L_1;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_m947BF95D54571BF3897F96822B7A8FDA5853497B_gshared_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, uint8_t* ___ptr0, int32_t ___length1, const RuntimeMethod* method)
{
{
uint8_t* L_0 = ___ptr0;
ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC L_1;
memset((&L_1), 0, sizeof(L_1));
il2cpp_codegen_by_reference_constructor((Il2CppByReference*)(&L_1), L_0);
__this->____pointer_0 = L_1;
int32_t L_2 = ___length1;
__this->____length_1 = L_2;
return;
}
}