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

33541 行
2.0 MiB

#include "pch-cpp.hpp"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <limits>
#include <stdint.h>
#include "icalls/mscorlib/Mono.Unity/UnityTls.h"
#include "icalls/System/Microsoft.Win32/NativeMethods.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, 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, typename T3>
struct VirtualFuncInvoker3
{
typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4>
struct VirtualFuncInvoker4
{
typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8>
struct VirtualFuncInvoker8
{
typedef R (*Func)(void*, T1, T2, T3, T4, T5, T6, T7, T8, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6, T7 p7, T8 p8)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, p6, p7, p8, invokeData.method);
}
};
struct InterfaceActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R>
struct InterfaceFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1, 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 R, typename T1, typename T2, typename T3, typename T4>
struct InterfaceFuncInvoker4
{
typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
}
};
template <typename T1>
struct InvokerActionInvoker1;
template <typename T1>
struct InvokerActionInvoker1<T1*>
{
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1)
{
void* params[1] = { p1 };
method->invoker_method(methodPtr, method, obj, params, NULL);
}
};
template <typename T1, typename T2>
struct InvokerActionInvoker2;
template <typename T1, typename T2>
struct InvokerActionInvoker2<T1*, T2>
{
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2 p2)
{
void* params[2] = { p1, &p2 };
method->invoker_method(methodPtr, method, obj, params, NULL);
}
};
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>
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>
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 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 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 T1, typename T2, typename T3, typename T4, typename T5>
struct InvokerActionInvoker5;
template <typename T1, typename T2, typename T3, typename T4, typename T5>
struct InvokerActionInvoker5<T1*, T2*, T3*, T4*, T5>
{
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3* p3, T4* p4, T5 p5)
{
void* params[5] = { p1, p2, p3, p4, &p5 };
method->invoker_method(methodPtr, method, obj, params, NULL);
}
};
template <typename T1, typename T2, typename T3, typename T4, typename T5>
struct InvokerActionInvoker5<T1*, T2*, T3*, T4, T5*>
{
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3* p3, T4 p4, T5* p5)
{
void* params[5] = { p1, p2, p3, &p4, p5 };
method->invoker_method(methodPtr, method, obj, params, NULL);
}
};
template <typename T1, typename T2, typename T3, typename T4, typename T5>
struct InvokerActionInvoker5<T1*, T2*, T3*, T4*, T5*>
{
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3* p3, T4* p4, T5* p5)
{
void* params[5] = { p1, p2, p3, p4, p5 };
method->invoker_method(methodPtr, method, obj, params, NULL);
}
};
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9>
struct InvokerActionInvoker9;
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9>
struct InvokerActionInvoker9<T1*, T2*, T3*, T4, T5*, T6, T7*, T8*, T9*>
{
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3* p3, T4 p4, T5* p5, T6 p6, T7* p7, T8* p8, T9* p9)
{
void* params[9] = { p1, p2, p3, &p4, p5, &p6, p7, p8, p9 };
method->invoker_method(methodPtr, method, obj, params, NULL);
}
};
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9, typename T10>
struct InvokerActionInvoker10;
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9, typename T10>
struct InvokerActionInvoker10<T1*, T2*, T3*, T4*, T5, T6*, T7, T8*, T9*, T10*>
{
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3* p3, T4* p4, T5 p5, T6* p6, T7 p7, T8* p8, T9* p9, T10* p10)
{
void* params[10] = { p1, p2, p3, p4, &p5, p6, &p7, p8, p9, p10 };
method->invoker_method(methodPtr, method, obj, params, NULL);
}
};
template <typename R>
struct InvokerFuncInvoker0
{
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj)
{
R ret;
method->invoker_method(methodPtr, method, obj, NULL, &ret);
return ret;
}
};
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;
}
};
template <typename R, typename T1, typename T2, typename T3>
struct InvokerFuncInvoker3;
template <typename R, typename T1, typename T2, typename T3>
struct InvokerFuncInvoker3<R, T1, T2, T3*>
{
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1 p1, T2 p2, T3* p3)
{
R ret;
void* params[3] = { &p1, &p2, p3 };
method->invoker_method(methodPtr, method, obj, params, &ret);
return ret;
}
};
template <typename R, typename T1, typename T2, typename T3>
struct InvokerFuncInvoker3<R, T1*, T2, T3*>
{
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2 p2, T3* p3)
{
R ret;
void* params[3] = { p1, &p2, p3 };
method->invoker_method(methodPtr, method, obj, params, &ret);
return ret;
}
};
template <typename R, typename T1, typename T2, typename T3>
struct InvokerFuncInvoker3<R, T1*, T2*, T3*>
{
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3* p3)
{
R ret;
void* params[3] = { p1, p2, p3 };
method->invoker_method(methodPtr, method, obj, params, &ret);
return ret;
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4>
struct InvokerFuncInvoker4;
template <typename R, typename T1, typename T2, typename T3, typename T4>
struct InvokerFuncInvoker4<R, T1*, T2, T3, T4*>
{
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2 p2, T3 p3, T4* p4)
{
R ret;
void* params[4] = { p1, &p2, &p3, p4 };
method->invoker_method(methodPtr, method, obj, params, &ret);
return ret;
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4>
struct InvokerFuncInvoker4<R, T1, T2*, T3, T4*>
{
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1 p1, T2* p2, T3 p3, T4* p4)
{
R ret;
void* params[4] = { &p1, p2, &p3, p4 };
method->invoker_method(methodPtr, method, obj, params, &ret);
return ret;
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4>
struct InvokerFuncInvoker4<R, T1*, T2*, T3, T4*>
{
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3 p3, T4* p4)
{
R ret;
void* params[4] = { p1, p2, &p3, p4 };
method->invoker_method(methodPtr, method, obj, params, &ret);
return ret;
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5>
struct InvokerFuncInvoker5;
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5>
struct InvokerFuncInvoker5<R, T1, T2, T3, T4, T5*>
{
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5* p5)
{
R ret;
void* params[5] = { &p1, &p2, &p3, &p4, p5 };
method->invoker_method(methodPtr, method, obj, params, &ret);
return ret;
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5>
struct InvokerFuncInvoker5<R, T1, T2, T3*, T4, T5*>
{
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1 p1, T2 p2, T3* p3, T4 p4, T5* p5)
{
R ret;
void* params[5] = { &p1, &p2, p3, &p4, p5 };
method->invoker_method(methodPtr, method, obj, params, &ret);
return ret;
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5>
struct InvokerFuncInvoker5<R, T1*, T2*, T3, T4, T5*>
{
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3 p3, T4 p4, T5* p5)
{
R ret;
void* params[5] = { p1, p2, &p3, &p4, p5 };
method->invoker_method(methodPtr, method, obj, params, &ret);
return ret;
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5>
struct InvokerFuncInvoker5<R, T1*, T2, T3*, T4, T5*>
{
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2 p2, T3* p3, T4 p4, T5* p5)
{
R ret;
void* params[5] = { p1, &p2, p3, &p4, p5 };
method->invoker_method(methodPtr, method, obj, params, &ret);
return ret;
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5>
struct InvokerFuncInvoker5<R, T1*, T2*, T3*, T4, T5*>
{
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3* p3, T4 p4, T5* p5)
{
R ret;
void* params[5] = { p1, p2, p3, &p4, p5 };
method->invoker_method(methodPtr, method, obj, params, &ret);
return ret;
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
struct InvokerFuncInvoker6;
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
struct InvokerFuncInvoker6<R, T1*, T2, T3, T4, T5, T6*>
{
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2 p2, T3 p3, T4 p4, T5 p5, T6* p6)
{
R ret;
void* params[6] = { p1, &p2, &p3, &p4, &p5, p6 };
method->invoker_method(methodPtr, method, obj, params, &ret);
return ret;
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
struct InvokerFuncInvoker6<R, T1*, T2, T3, T4*, T5, T6*>
{
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2 p2, T3 p3, T4* p4, T5 p5, T6* p6)
{
R ret;
void* params[6] = { p1, &p2, &p3, p4, &p5, p6 };
method->invoker_method(methodPtr, method, obj, params, &ret);
return ret;
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
struct InvokerFuncInvoker6<R, T1*, T2*, T3, T4*, T5, T6*>
{
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3 p3, T4* p4, T5 p5, T6* p6)
{
R ret;
void* params[6] = { p1, p2, &p3, p4, &p5, p6 };
method->invoker_method(methodPtr, method, obj, params, &ret);
return ret;
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
struct InvokerFuncInvoker6<R, T1, T2*, T3, T4*, T5*, T6*>
{
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1 p1, T2* p2, T3 p3, T4* p4, T5* p5, T6* p6)
{
R ret;
void* params[6] = { &p1, p2, &p3, p4, p5, p6 };
method->invoker_method(methodPtr, method, obj, params, &ret);
return ret;
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7>
struct InvokerFuncInvoker7;
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7>
struct InvokerFuncInvoker7<R, T1, T2, T3*, T4, T5*, T6*, T7*>
{
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1 p1, T2 p2, T3* p3, T4 p4, T5* p5, T6* p6, T7* p7)
{
R ret;
void* params[7] = { &p1, &p2, p3, &p4, p5, p6, p7 };
method->invoker_method(methodPtr, method, obj, params, &ret);
return ret;
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7>
struct InvokerFuncInvoker7<R, T1*, T2, T3*, T4, T5*, T6*, T7*>
{
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2 p2, T3* p3, T4 p4, T5* p5, T6* p6, T7* p7)
{
R ret;
void* params[7] = { p1, &p2, p3, &p4, p5, p6, p7 };
method->invoker_method(methodPtr, method, obj, params, &ret);
return ret;
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8>
struct InvokerFuncInvoker8;
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8>
struct InvokerFuncInvoker8<R, T1*, T2, T3, T4*, T5, T6*, T7*, T8*>
{
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2 p2, T3 p3, T4* p4, T5 p5, T6* p6, T7* p7, T8* p8)
{
R ret;
void* params[8] = { p1, &p2, &p3, p4, &p5, p6, p7, p8 };
method->invoker_method(methodPtr, method, obj, params, &ret);
return ret;
}
};
// System.Action`1<System.Object>
struct Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87;
// System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>
struct ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF;
// System.Collections.Concurrent.ConcurrentDictionary`2<System.String,System.String>
struct ConcurrentDictionary_2_tE0296B741D9F887264D805ED46C4249B8F5EFC9C;
// System.Collections.Concurrent.ConcurrentDictionary`2<System.Net.ServicePointManager/SPKey,System.Net.ServicePoint>
struct ConcurrentDictionary_2_tA479A4D42D40E0772A26F55B2BB647B6B7B8BDD6;
// System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Net.HttpWebRequest,Mono.Http.NtlmSession>
struct ConditionalWeakTable_2_t8C60960CD7830601390A47E0673223EC1560C638;
// System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>
struct ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605;
// System.Runtime.CompilerServices.ConditionalWeakTable`2/CreateValueCallback<System.Net.HttpWebRequest,Mono.Http.NtlmSession>
struct CreateValueCallback_t32241614308DD3BEEEAC77EFA55E573B54A5D1D2;
// System.Runtime.CompilerServices.ConditionalWeakTable`2/CreateValueCallback<System.Object,System.Object>
struct CreateValueCallback_t85D075DDCAD202B428EC47723590605681FE2BD1;
// System.Collections.Generic.Dictionary`2<System.Guid,Mono.Net.Security.MobileTlsProvider>
struct Dictionary_2_tAF53376D9E207F701196CFA12420D116F00604AC;
// System.Collections.Generic.Dictionary`2<System.Guid,System.Object>
struct Dictionary_2_t9283A2526EFCCE82F0B8EBAF55887B5456F4480A;
// 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.Object,System.Object>
struct Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA;
// System.Collections.Generic.Dictionary`2<System.String,System.Tuple`2<System.Guid,System.String>>
struct Dictionary_2_t6D341191E2021065DBEDA3500D49AB6A7791A7D7;
// System.Collections.Generic.Dictionary`2<System.String,System.String>
struct Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83;
// System.EventHandler`1<System.Net.Sockets.SocketAsyncEventArgs>
struct EventHandler_1_t5D3FC4609BD8133ED1226D6D49A1D8076B16A9ED;
// System.Func`1<System.Int32>
struct Func_1_tC288CCB64EFD1F5FD49C3F8DE91FE62905E44BCD;
// System.Func`1<System.Threading.Tasks.Task/ContingentProperties>
struct Func_1_tD59A12717D79BFB403BF973694B1BE5B85474BD1;
// System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>
struct Func_2_tF42287527472FA89789873F068A87C60A00EC7D3;
// System.Func`2<System.Collections.Generic.KeyValuePair`2<System.String,System.String>,System.String>
struct Func_2_t0FD9221539E762B3867B2E3B6D6B3F90C6483088;
// System.Func`2<System.IO.Stream,System.Threading.Tasks.Task>
struct Func_2_t378757FF082427448349A80CC63683B50DA787D3;
// System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct IEnumerable_1_t60509816D8966320E2A9660FC756B6C440ADFC50;
// System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.String,System.String>>
struct IEnumerable_1_t3C6913E067AB1171D9894C79A396D8A8E90E311B;
// System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.String,System.String>>
struct IEnumerator_1_t174BFB804F1D416642CD11B72858B43316D8B26D;
// System.Collections.Generic.IEqualityComparer`1<System.Guid>
struct IEqualityComparer_1_t0706C8CEAD5235F761D9A8DB3AC57BA61E96F1C9;
// System.Collections.Generic.IEqualityComparer`1<System.Object>
struct IEqualityComparer_1_t2CA7720C7ADCCDECD3B02E45878B4478619D5347;
// System.Collections.Generic.IEqualityComparer`1<System.String>
struct IEqualityComparer_1_tAE94C8F24AD5B94D4EE85CA9FC59E3409D41CAF7;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.Guid,Mono.Net.Security.MobileTlsProvider>
struct KeyCollection_tAD322F2CF444DE3805082CA13464622837E06D7F;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.Tuple`2<System.Guid,System.String>>
struct KeyCollection_t9420BDECF8BA68DB4504D118BBB93F856E4D657A;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.String>
struct KeyCollection_t2EDD317F5771E575ACB63527B5AFB71291040342;
// System.Collections.Generic.List`1<System.Object>
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D;
// System.Collections.Generic.List`1<System.Security.Cryptography.X509Certificates.X509CertificateImpl>
struct List_1_tD4F904CB63AD4CA50117201EDE2856DC5320DADC;
// System.Collections.Generic.List`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>
struct List_1_t14F08D1F5A2E0F276F976F81CC13B7CB7EDABE33;
// System.Collections.Generic.List`1<System.Security.Cryptography.X509Certificates.X509Extension>
struct List_1_t03551104C97124C9D83186EEB3F066B8BFFD87E3;
// System.Predicate`1<System.Object>
struct Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12;
// System.Predicate`1<System.Threading.Tasks.Task>
struct Predicate_1_t7F48518B008C1472339EEEBABA3DE203FE1F26ED;
// System.Collections.Generic.Stack`1<System.Security.Cryptography.DerSequenceReader>
struct Stack_1_t11FC055BC8A112A4D3474F6FA0DCAC26D397C08C;
// System.Collections.Generic.Stack`1<System.Object>
struct Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5;
// System.Collections.Concurrent.ConcurrentDictionary`2/Tables<System.String,System.String>
struct Tables_t411BA506B39C4694DD5A87F1D6776FF28F32E77C;
// System.Threading.Tasks.TaskFactory`1<System.Nullable`1<System.Int32>>
struct TaskFactory_1_tAE919A7BAE255B9F6EF5F440E30D3AF6A9C9322E;
// System.Threading.Tasks.TaskFactory`1<Mono.Net.Security.AsyncProtocolResult>
struct TaskFactory_1_tAB32983F69E1CF7B3FCBBDEEB8F535445D5F2372;
// System.Threading.Tasks.TaskFactory`1<System.Int32>
struct TaskFactory_1_t0BEF06D58E44525B9135AB0B22D016856EE69FF3;
// System.Threading.Tasks.TaskFactory`1<System.IO.Stream>
struct TaskFactory_1_tA522288A50DBBA4F2B2C1B7903E790568AC5E651;
// System.Net.Sockets.Socket/TaskSocketAsyncEventArgs`1<System.Net.Sockets.Socket>
struct TaskSocketAsyncEventArgs_1_tEB937620E5B15D91E5BFEFFA707CF800930F8401;
// System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>
struct Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7;
// System.Threading.Tasks.Task`1<Mono.Net.Security.AsyncProtocolResult>
struct Task_1_t7B91A92D06E8BCB69911B6822DD99220DDB735EE;
// 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.IO.Stream>
struct Task_1_t06484715029D51A4420723456D165BAC63798F8D;
// System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>
struct Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17;
// System.Tuple`2<System.Guid,System.Object>
struct Tuple_2_t6C77F219737155994A9494DA020666D1BC9953C2;
// System.Tuple`2<System.Guid,System.String>
struct Tuple_2_t8A67FBD80CECF93E77E04F75D4B379CC242F7DA5;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Guid,Mono.Net.Security.MobileTlsProvider>
struct ValueCollection_t4905E0B953934CF20B27904D794BF135430ADF63;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.Tuple`2<System.Guid,System.String>>
struct ValueCollection_tAB178C3A4988CC8138AF8611EAF9D49392BE1D1B;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.String>
struct ValueCollection_t238D0D2427C6B841A01F522A41540165A2C4AE76;
// System.WeakReference`1<System.Object>
struct WeakReference_1_tED795563AD26F795CED3BBCD488AB1694E385BCE;
// System.WeakReference`1<System.Net.Security.SslStream>
struct WeakReference_1_t0E5A403EFE44DFDF760845211C10561ED81417A3;
// System.Collections.Generic.Dictionary`2/Entry<System.Guid,Mono.Net.Security.MobileTlsProvider>[]
struct EntryU5BU5D_t0EB0628921B2593669E27E058019DFFC47A3D0A6;
// System.Collections.Generic.Dictionary`2/Entry<System.String,System.Tuple`2<System.Guid,System.String>>[]
struct EntryU5BU5D_tEEED27980D01DFDFBAB0EF8900602F197431182B;
// System.Collections.Generic.Dictionary`2/Entry<System.String,System.String>[]
struct EntryU5BU5D_t1AF33AD0B7330843448956EC4277517081658AE7;
// System.Collections.Generic.KeyValuePair`2<System.String,System.String>[]
struct KeyValuePair_2U5BU5D_tEA2EBC56D51C33037B041DD38F518261CEE2C84C;
// System.Byte[]
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
// System.Char[]
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
// Mono.Security.Interface.CipherSuiteCode[]
struct CipherSuiteCodeU5BU5D_t61EC0E6F53394985FFC36DEB587C70F4EE26D435;
// System.Delegate[]
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
// System.Security.Cryptography.DerSequenceReader[]
struct DerSequenceReaderU5BU5D_t12C08A36002C158FD7DEF347C8690C958BC4ECEA;
// System.Runtime.CompilerServices.Ephemeron[]
struct EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8;
// System.Int32[]
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
// System.IntPtr[]
struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
// System.Security.Cryptography.KeySizes[]
struct KeySizesU5BU5D_tDD87467B9CB683380B5DC92193576A3136DFAE03;
// System.Object[]
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
// System.String[]
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
// System.Type[]
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
// System.Security.Cryptography.X509Certificates.X509ChainStatus[]
struct X509ChainStatusU5BU5D_tA4CB502E13E6D62B9C824B15F3193FE7EC889299;
// System.Security.Cryptography.X509Certificates.X509Extension[]
struct X509ExtensionU5BU5D_t6CB6866A33687382EC1D848C41F2687E57166403;
// Mono.Security.ASN1
struct ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F;
// System.Action
struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07;
// Mono.Security.Interface.Alert
struct Alert_t901529B47B3E318E68713A3E328935BC768B23F3;
// System.ArgumentException
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263;
// System.ArgumentNullException
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129;
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F;
// System.Collections.ArrayList
struct ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A;
// System.Security.Cryptography.AsnEncodedData
struct AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8;
// System.Security.Cryptography.AsymmetricAlgorithm
struct AsymmetricAlgorithm_t5E7E9D26CE0EDCAABD84F616A44E476473BA2AF8;
// System.AsyncCallback
struct AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C;
// Mono.Net.Security.AsyncHandshakeRequest
struct AsyncHandshakeRequest_tC7CB006B95B7B6CFF6AABA2C04637A7CEEE8E9FD;
// Mono.Net.Security.AsyncProtocolRequest
struct AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86;
// Mono.Net.Security.AsyncProtocolResult
struct AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05;
// Mono.Net.Security.AsyncReadOrWriteRequest
struct AsyncReadOrWriteRequest_tEE5EFA76D488CBB46DBCA56E9914A0E5BF6D4680;
// Mono.Net.Security.AsyncReadRequest
struct AsyncReadRequest_t0DF29D88C5908BB80A3B6B6D6B3BC9BC23292BB1;
// Mono.Net.Security.AsyncWriteRequest
struct AsyncWriteRequest_t43F45610B0F7E69C3DD0DB5EFCA2E9306D4C95A3;
// System.Attribute
struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA;
// System.Net.Security.AuthenticatedStream
struct AuthenticatedStream_t8DCF41E151F705E2494FC7836F5E2EF7C539FA39;
// System.Security.Authentication.AuthenticationException
struct AuthenticationException_tACF49ABE65B7CEABB69DE78FA8AE8B1771CDF6A8;
// Mono.Security.Authenticode.AuthenticodeDeformatter
struct AuthenticodeDeformatter_tFD4A7B915DB17925F5BD1F9FA169DCF7C2CC81D2;
// System.Net.Authorization
struct Authorization_t7F109103AF7366A418844BF604458413434F60D4;
// System.Net.BindIPEndPoint
struct BindIPEndPoint_tCB0143A2E17188ED6D562FEA72A18CC9F2448BDD;
// System.Reflection.Binder
struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235;
// Mono.Net.Security.BufferOffsetSize
struct BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE;
// Mono.Net.Security.BufferOffsetSize2
struct BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629;
// System.Threading.CancellationTokenSource
struct CancellationTokenSource_tAAE1E0033BCFC233801F8CB4CED5C852B350CB7B;
// Mono.Net.Security.ChainValidationHelper
struct ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755;
// System.Globalization.CodePageDataItem
struct CodePageDataItem_t52460FA30AE37F4F26ACB81055E58002262F19F2;
// System.Collections.CollectionBase
struct CollectionBase_t44F966CC555C87F2815D668FB4586526E1C2383F;
// System.Threading.ContextCallback
struct ContextCallback_tE8AFBDBFCC040FDA8DA8C1EEFE9BD66B16BDA007;
// System.Net.CookieContainer
struct CookieContainer_t54CCEBC3470E5D0699BB17928C171D7AFCA7614E;
// System.Security.Cryptography.CryptographicException
struct CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F;
// System.CultureAwareComparer
struct CultureAwareComparer_t5822A6535A6EB4C448D1B7736067D1188BAEE8CD;
// System.Globalization.DateTimeFormatInfo
struct DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A;
// System.Text.DecoderFallback
struct DecoderFallback_t7324102215E4ED41EC065C02EB501CB0BC23CD90;
// System.Delegate
struct Delegate_t;
// System.DelegateData
struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
// System.Security.Cryptography.DerSequenceReader
struct DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A;
// System.Text.EncoderFallback
struct EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293;
// System.Text.Encoding
struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095;
// System.Net.EndPoint
struct EndPoint_t6233F4E2EB9F0F2D36E187F12BE050E6D8B73564;
// System.Exception
struct Exception_t;
// System.Runtime.ExceptionServices.ExceptionDispatchInfo
struct ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757;
// System.Threading.ExecutionContext
struct ExecutionContext_t9D6EDFD92F0B2D391751963E2D77A8B03CB81710;
// System.Net.HttpContinueDelegate
struct HttpContinueDelegate_t174E5B124FF75DBAC627C6E41A0802A802EAE6D9;
// System.Net.HttpWebRequest
struct HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9;
// System.Net.HttpWebResponse
struct HttpWebResponse_tF287E6CE296D3B6912CDEFEDE8FBF5A27D70AE0A;
// System.Runtime.CompilerServices.IAsyncStateMachine
struct IAsyncStateMachine_t0680C7F905C553076B552D5A1A6E39E2F0F36AA2;
// System.Net.ICertificatePolicy
struct ICertificatePolicy_t520F2D7BB74545D086C9D6A71E98B5DE3AD9052B;
// Mono.Security.Interface.ICertificateValidator
struct ICertificateValidator_t8ECF48A37EC708C8A16305F9B6B44C50676AA854;
// System.Net.ICredentials
struct ICredentials_t8FDA6AF64B852DA0631D4BE66962B20E51E230F0;
// System.Collections.IDictionary
struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
// System.Collections.IEnumerator
struct IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA;
// System.IFormatProvider
struct IFormatProvider_tC202922D43BFF3525109ABF3FB79625F5646AB52;
// System.IOAsyncCallback
struct IOAsyncCallback_tDBBA8BBDA6B203613680E77BD4AD6320A1268388;
// System.IO.IOException
struct IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910;
// System.Net.IPHostEntry
struct IPHostEntry_tAAAEB0F40DB9F28BE601B5FE7DA1D76191C94490;
// Mono.ISystemCertificateProvider
struct ISystemCertificateProvider_tD96B63AE8138FB217E95424DDE8330800003146D;
// Mono.ISystemDependencyProvider
struct ISystemDependencyProvider_t67FD40AAF1EB33AF5C2CF8AF28881178203ADCFC;
// System.Net.IWebProxy
struct IWebProxy_t3ECD2C773539B48B18734D61E87B685A9C93076D;
// System.InvalidOperationException
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB;
// System.Net.Security.LocalCertSelectionCallback
struct LocalCertSelectionCallback_t3AB79A8AA642074A3EF886118963EEA3CCABABE2;
// System.Net.Security.LocalCertificateSelectionCallback
struct LocalCertificateSelectionCallback_t71A03329606A5610ECC62BFBE6327C1EF9195859;
// System.Reflection.MemberFilter
struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553;
// Mono.Security.Protocol.Ntlm.MessageBase
struct MessageBase_t173306F2152A17C53A4CD23954A751EE471BD708;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// Mono.Net.Security.MobileAuthenticatedStream
struct MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E;
// Mono.Net.Security.MobileTlsContext
struct MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476;
// Mono.Net.Security.MobileTlsProvider
struct MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017;
// Mono.Security.Interface.MonoLocalCertificateSelectionCallback
struct MonoLocalCertificateSelectionCallback_t34F7772BA5ECE38E6CBD4C311F579DD1D4724DE3;
// Mono.Util.MonoPInvokeCallbackAttribute
struct MonoPInvokeCallbackAttribute_t19B253264BDE6F6CA02B9A7AE568D357B089EFA4;
// Mono.Security.Interface.MonoRemoteCertificateValidationCallback
struct MonoRemoteCertificateValidationCallback_t1A389B61998873F6B9A2EE7A11C36333A8AECCA0;
// Mono.Net.Security.MonoSslAuthenticationOptions
struct MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611;
// Mono.Net.Security.MonoSslClientAuthenticationOptions
struct MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F;
// Mono.Security.Interface.MonoTlsConnectionInfo
struct MonoTlsConnectionInfo_t3286AE494AEF3E62C9BE40FAC497849DFA193964;
// Mono.Security.Interface.MonoTlsProvider
struct MonoTlsProvider_t39C898CDC9458EEAD7C019B4B23701EAF9E24F7E;
// Mono.Security.Interface.MonoTlsSettings
struct MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0;
// Mono.Net.Security.MonoTlsStream
struct MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206;
// System.Net.NetworkCredential
struct NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313;
// System.Net.Sockets.NetworkStream
struct NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0;
// System.NotSupportedException
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A;
// Mono.Http.NtlmClient
struct NtlmClient_t44BA8DF60B38A19EB7987B3BC2FB8D0B8A1EB0E6;
// Mono.Http.NtlmSession
struct NtlmSession_tFCA9C8C98B2241BFE552477E3F60F419C51F30AB;
// System.Globalization.NumberFormatInfo
struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472;
// System.ObjectDisposedException
struct ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB;
// System.Security.Cryptography.Oid
struct Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287;
// System.Security.Cryptography.OidCollection
struct OidCollection_tAAFE5AD288B6365182B7C9D4D66D0DA9A56712B3;
// System.OrdinalCaseSensitiveComparer
struct OrdinalCaseSensitiveComparer_t581CA7CB51DCF00B6012A697A4B4B3067144521A;
// System.OrdinalIgnoreCaseComparer
struct OrdinalIgnoreCaseComparer_t8BAE11990A4C855D3BCBBFB42F4EF8D45088FBB0;
// System.Security.Cryptography.X509Certificates.PublicKey
struct PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405;
// System.Net.Security.RemoteCertificateValidationCallback
struct RemoteCertificateValidationCallback_t2F4C5801F96B2C2BF934511796C5BFEAEBF01955;
// System.Net.Cache.RequestCacheBinding
struct RequestCacheBinding_t18F3F4FF8D0F77E86C2C666CEE7FD48A80C042EE;
// System.Net.Cache.RequestCachePolicy
struct RequestCachePolicy_tF15C94C5E458478914D5EB17753294BD488B0550;
// System.Net.Cache.RequestCacheProtocol
struct RequestCacheProtocol_t43C1AC170194874A0C0B0D3B8BE9EABFB613DF85;
// System.Runtime.InteropServices.SafeHandle
struct SafeHandle_tC1A4DA80DA89B867CC011B707A07275230321BF7;
// Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid
struct SafeHandleZeroOrMinusOneIsInvalid_tC152552D137451170B3B1A304227B0ECADB65629;
// Microsoft.Win32.SafeHandles.SafePasswordHandle
struct SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463;
// Microsoft.Win32.SafeHandles.SafeProcessHandle
struct SafeProcessHandle_tA260D4420C5F481A5DA030FFB19D038BBF8A63CB;
// 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.Net.Security.ServerCertSelectionCallback
struct ServerCertSelectionCallback_t653386CAEAE0236FCF61A92963AB1646BB23C654;
// System.Net.ServerCertValidationCallback
struct ServerCertValidationCallback_tC7A568060163FC6810AF9817F26F986C78CFC27F;
// System.Net.ServicePoint
struct ServicePoint_t5DB5939994CAA6A0DF221C5F58D59D1A6131CE29;
// System.Net.ServicePointScheduler
struct ServicePointScheduler_tE33BD33FDCDF4D1850C1753110E79DDC11C27AB9;
// System.Net.Sockets.Socket
struct Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E;
// System.Net.Security.SslClientAuthenticationOptions
struct SslClientAuthenticationOptions_tA5277DAACAFB33887D2513D9399C5154B0D5CBC9;
// 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.StringComparer
struct StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06;
// Mono.SystemCertificateProvider
struct SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD;
// Mono.SystemDependencyProvider
struct SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261;
// System.Threading.Tasks.Task
struct Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572;
// System.Threading.Tasks.TaskFactory
struct TaskFactory_tF781BD37BE23917412AD83424D1497C7C1509DF0;
// System.Threading.Tasks.TaskScheduler
struct TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E;
// Mono.Security.Interface.TlsException
struct TlsException_tC2DD153B101F6116975F36613D7F7C009C5664E3;
// System.Type
struct Type_t;
// Mono.Security.Protocol.Ntlm.Type1Message
struct Type1Message_t870960FCE9832270C947CFFD3DC8CE62DC3E8974;
// Mono.Security.Protocol.Ntlm.Type2Message
struct Type2Message_t2B675F8672CFEC6E19474A238FA02DCEDB0209BE;
// Mono.Security.Protocol.Ntlm.Type3Message
struct Type3Message_t17A486915FD96CAECE87CB2AE1825043A364AF66;
// Mono.Unity.UnityTlsContext
struct UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C;
// Mono.Unity.UnityTlsProvider
struct UnityTlsProvider_t5B2A843E65B77E7B2B9F2467DB0B6117505929D1;
// Mono.Unity.UnityTlsStream
struct UnityTlsStream_tF1D4B34A71A716396F78FDAF2C35F812E09A4FDE;
// System.Uri
struct Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E;
// System.UriParser
struct UriParser_t920B0868286118827C08B08A15A9456AF6C19D81;
// Mono.Security.Interface.ValidationResult
struct ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5;
// System.Version
struct Version_tE426DB5655D0F22920AE16A2AA9AB7781B8255A7;
// System.Void
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
// System.Net.WebCompletionSource
struct WebCompletionSource_tA2A9E04ED689218A1B2FAFCFD8F358CE4CBD30C5;
// System.Net.WebConnectionTunnel
struct WebConnectionTunnel_tA394C00C106FAA694D0D5B7A5B03B3B52328DC0F;
// System.Net.WebHeaderCollection
struct WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8;
// System.Net.WebOperation
struct WebOperation_t32CC0FAFF5B575DB5E11E5C50A7D7542A70D74C9;
// System.Net.WebRequest
struct WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B;
// System.Net.WebRequestStream
struct WebRequestStream_t731AE4852452BAA73C240BDC7DCBA42ADAD2BAAB;
// System.Security.Cryptography.X509Certificates.X500DistinguishedName
struct X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6;
// Mono.Security.X509.X509Certificate
struct X509Certificate_t9ECDEAA7F2B56A899145F284A13F4D0042481356;
// System.Security.Cryptography.X509Certificates.X509Certificate
struct X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4;
// System.Security.Cryptography.X509Certificates.X509Certificate2
struct X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D;
// System.Security.Cryptography.X509Certificates.X509Certificate2Collection
struct X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB;
// System.Security.Cryptography.X509Certificates.X509Certificate2Impl
struct X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25;
// System.Security.Cryptography.X509Certificates.X509Certificate2ImplMono
struct X509Certificate2ImplMono_t4566261D31F143C8CD222DB687625E5246BFD240;
// Mono.Security.X509.X509CertificateCollection
struct X509CertificateCollection_t4FCE6AFCD042978CC0A24627945F864BB3188FC4;
// System.Security.Cryptography.X509Certificates.X509CertificateCollection
struct X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE;
// System.Security.Cryptography.X509Certificates.X509CertificateImpl
struct X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF;
// System.Security.Cryptography.X509Certificates.X509CertificateImplCollection
struct X509CertificateImplCollection_t9F73F6038DB8173EAFCD920EF434BF5B68FFB098;
// Mono.Security.X509.X509Chain
struct X509Chain_t5B2B343190D10F0CBE48EF822C92F1486E321E21;
// System.Security.Cryptography.X509Certificates.X509Chain
struct X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5;
// System.Security.Cryptography.X509Certificates.X509ChainElement
struct X509ChainElement_t95FFAD3F504A1CA731ECCBA88C5CB3B0EE28786D;
// System.Security.Cryptography.X509Certificates.X509ChainElementCollection
struct X509ChainElementCollection_t543DE35924C12A624ADA5111F7F47C1F9F99E70D;
// System.Security.Cryptography.X509Certificates.X509ChainImpl
struct X509ChainImpl_tBA1BF154DB9DC321EE068BBC53C7CF43CAA2621F;
// Mono.Unity.X509ChainImplUnityTls
struct X509ChainImplUnityTls_t37736839B9CDAD02F5F02693121A4C18C0020B40;
// System.Security.Cryptography.X509Certificates.X509ChainPolicy
struct X509ChainPolicy_t34F49B4067492A1E5F91DD91FA7C934B68D880EC;
// System.Security.Cryptography.X509Certificates.X509Extension
struct X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5;
// System.Security.Cryptography.X509Certificates.X509ExtensionCollection
struct X509ExtensionCollection_t03E0B5DD255DCFF3FE91FE55C5127BC834ABF4D0;
// Mono.X509PalImpl
struct X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86;
// Mono.X509PalImplMono
struct X509PalImplMono_t2D1688733B64BBD2C1A1038CEC75A9097611B8B2;
// Mono.Net.Security.Private.CallbackHelpers/<>c__DisplayClass0_0
struct U3CU3Ec__DisplayClass0_0_t60EE7521AABF25B40FF0091B73416ECA2A8A8A92;
// Mono.Net.Security.Private.CallbackHelpers/<>c__DisplayClass6_0
struct U3CU3Ec__DisplayClass6_0_t48F0A5835CC00CD6BF0EE74C6CDFF12987FC3DB2;
// Internal.Cryptography.Pal.CertificateData/<ReadReverseRdns>d__21
struct U3CReadReverseRdnsU3Ed__21_t6DC5309953340D6F3CAF345220E2D0AAD878D3DE;
// Internal.Cryptography.Pal.CertificateData/AlgorithmIdentifier
struct AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8;
// Mono.Net.Security.ChainValidationHelper/<>c__DisplayClass11_0
struct U3CU3Ec__DisplayClass11_0_tAA6FF214AE681D87C566414EF7C30A3CEA0C9211;
// Mono.Net.Security.MobileAuthenticatedStream/<>c__DisplayClass66_0
struct U3CU3Ec__DisplayClass66_0_t892C285932134E13248FD210209881BF6B5831DB;
// Mono.Http.NtlmClient/<>c
struct U3CU3Ec_t23EC3A439D27907A8B20604CC3FBC3DEA329D4BB;
// Internal.Cryptography.OidLookup/<>c
struct U3CU3Ec_t90F8CB10B454B45A81BE65AA841DD85FE08EA21A;
// System.Net.ServicePointManager/SPKey
struct SPKey_t3FD8B8DF5F452D3E34F29B5EC1AEC33370B1A6E5;
// 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/Queue
struct Queue_t644DC21212BC432819522EDA395EB4562BE2CC47;
// Mono.Unity.UnityTls/unitytls_interface_struct
struct unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED;
// Mono.Unity.UnityTls/unitytls_key
struct unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8;
// Mono.Unity.UnityTls/unitytls_tlsctx
struct unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE;
// Mono.Unity.UnityTls/unitytls_tlsctx_callbacks
struct unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568;
// Mono.Unity.UnityTls/unitytls_tlsctx_certificate_callback
struct unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C;
// Mono.Unity.UnityTls/unitytls_tlsctx_read_callback
struct unitytls_tlsctx_read_callback_tDBE877327789CABE940C2A724EC9A5D142318851;
// Mono.Unity.UnityTls/unitytls_tlsctx_trace_callback
struct unitytls_tlsctx_trace_callback_tAC1169E423F6EBDA60CDD5D33E1795A8811E0BE6;
// Mono.Unity.UnityTls/unitytls_tlsctx_write_callback
struct unitytls_tlsctx_write_callback_t5D4B64AD846D04E819A49689F7EAA47365636611;
// Mono.Unity.UnityTls/unitytls_tlsctx_x509verify_callback
struct unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D;
// Mono.Unity.UnityTls/unitytls_x509list
struct unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6;
// Mono.Unity.UnityTls/unitytls_x509verify_callback
struct unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09;
// System.Uri/UriInfo
struct UriInfo_t5F91F77A93545DDDA6BB24A609BAF5E232CC1A09;
// System.Net.WebRequest/DesignerWebRequestCreate
struct DesignerWebRequestCreate_t75F62E4DEBF416E21EAF6FBB62E43ADB83A0753E;
// System.Security.Cryptography.X509Certificates.X509CertificateCollection/X509CertificateEnumerator
struct X509CertificateEnumerator_t6629E2BB0FB5D92B2EB502312B764686BAFDF0D9;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_errorstate_create_t
struct unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_errorstate_raise_error_t
struct unitytls_errorstate_raise_error_t_t8C20FC78CA5BBEE0248CC09D1C1AF25BCB3835CF;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_free_t
struct unitytls_key_free_t_tDB8665140BAF30447F3650D323078C193566FF72;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_get_ref_t
struct unitytls_key_get_ref_t_t8335968B19449FE0ED92E67AE9B6D95915684209;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_parse_der_t
struct unitytls_key_parse_der_t_tC218AEF9253FA105762F39041F696A06C52D3F10;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_parse_pem_t
struct unitytls_key_parse_pem_t_tE945670C6CB28BBF4670D2E8E904B7D8A2AB277B;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_random_generate_bytes_t
struct unitytls_random_generate_bytes_t_t6E7011EF958B0948582F8D1D213B454A5A962569;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_create_client_t
struct unitytls_tlsctx_create_client_t_t49D8F69D4152410A346CB3560B121DCC44AAC4EC;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_create_server_t
struct unitytls_tlsctx_create_server_t_t1068941B319B893D3FFBE53FE061676FF1CC3803;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_free_t
struct unitytls_tlsctx_free_t_tFBF7BB64D2E1C183718FB5809ABF0051395FD8F0;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_get_ciphersuite_t
struct unitytls_tlsctx_get_ciphersuite_t_t7317543D399259616648B1AA19447C4B63F70EF2;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_get_protocol_t
struct unitytls_tlsctx_get_protocol_t_t04E3B73C1D77379F7C7388ED4934189365326F3C;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_notify_close_t
struct unitytls_tlsctx_notify_close_t_t717D19846262E3DF5D1A69C5E136912E7A54B253;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_process_handshake_t
struct unitytls_tlsctx_process_handshake_t_t8D94F5FAD00CD61BF950829866C0C6E29D202606;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_read_t
struct unitytls_tlsctx_read_t_t3E3C711F7A47E704ABDF0DF0B7515E7306EB7C95;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_server_require_client_authentication_t
struct unitytls_tlsctx_server_require_client_authentication_t_t2AC04245D1F40738C5FB87B0DEE80761E243F0BE;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_certificate_callback_t
struct unitytls_tlsctx_set_certificate_callback_t_t2B54F7228DFC11BF14DCF2201BDD90CF0EF92D41;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_supported_ciphersuites_t
struct unitytls_tlsctx_set_supported_ciphersuites_t_t007E8706D364DE695F1DBF28358058A1E73DF544;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_trace_callback_t
struct unitytls_tlsctx_set_trace_callback_t_t3C615EACADC2CB1CDA8362B3F775071976E7CF7C;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_x509verify_callback_t
struct unitytls_tlsctx_set_x509verify_callback_t_t032FE980BEDD0D201CAF1EE653ABE303CDBCA7C9;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_write_t
struct unitytls_tlsctx_write_t_t976A41600B61F9C8DF022296B67316FFA53EB386;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509_export_der_t
struct unitytls_x509_export_der_t_tB784597940DE501BB5FEFA3EA528634559A16749;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_append_der_t
struct unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_append_t
struct unitytls_x509list_append_t_tC84B9CA7C15F5D1DE98386670A80D5F98559D98E;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_create_t
struct unitytls_x509list_create_t_t8873365FFB1556CE6B643700DB0C30E391B758D6;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_free_t
struct unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_get_ref_t
struct unitytls_x509list_get_ref_t_t264CEEF7B8D1F10FD95E1BC78BB48BCA11E305EA;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_get_x509_t
struct unitytls_x509list_get_x509_t_t428DCD367D50DCDD5ECE6DCFEB8967C5F7C3DFE8;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509verify_default_ca_t
struct unitytls_x509verify_default_ca_t_tED88B7ABC8408A22DB51B1F57D5FC65BDD2EC809;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509verify_explicit_ca_t
struct unitytls_x509verify_explicit_ca_t_t1B3D98BF01F059A3C2ADE87EFDDA03C557A3D08D;
IL2CPP_EXTERN_C RuntimeClass* ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_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* AsyncHandshakeRequest_tC7CB006B95B7B6CFF6AABA2C04637A7CEEE8E9FD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AsyncReadRequest_t0DF29D88C5908BB80A3B6B6D6B3BC9BC23292BB1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AsyncTaskMethodBuilder_1_t7BA09CA1BB279AA706D98A618EE11038FD1985F7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AsyncTaskMethodBuilder_1_t923DC16ADFF754593B125800F38ED37C920B14C1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AsyncTaskMethodBuilder_1_tB85AB2AF366A9742C159DD6FBD3FE38EDD13543B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AsyncWriteRequest_t43F45610B0F7E69C3DD0DB5EFCA2E9306D4C95A3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AuthenticationException_tACF49ABE65B7CEABB69DE78FA8AE8B1771CDF6A8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AuthenticodeDeformatter_tFD4A7B915DB17925F5BD1F9FA169DCF7C2CC81D2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Authorization_t7F109103AF7366A418844BF604458413434F60D4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ConcurrentDictionary_2_tE0296B741D9F887264D805ED46C4249B8F5EFC9C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ConditionalWeakTable_2_t8C60960CD7830601390A47E0673223EC1560C638_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CreateValueCallback_t32241614308DD3BEEEAC77EFA55E573B54A5D1D2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DefaultCertificatePolicy_t050382C833F241986F8386E6FC9E00FEC999A53A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DependencyInjector_tB5CBF00D172A8E073EBC53D983F229EF86399C9F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t6D341191E2021065DBEDA3500D49AB6A7791A7D7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tAF53376D9E207F701196CFA12420D116F00604AC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_1_tC288CCB64EFD1F5FD49C3F8DE91FE62905E44BCD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_2_t0FD9221539E762B3867B2E3B6D6B3F90C6483088_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICertificatePolicy_t520F2D7BB74545D086C9D6A71E98B5DE3AD9052B_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* IEnumerable_1_t3C6913E067AB1171D9894C79A396D8A8E90E311B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_t174BFB804F1D416642CD11B72858B43316D8B26D_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* Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IntPtr_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t03551104C97124C9D83186EEB3F066B8BFFD87E3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t14F08D1F5A2E0F276F976F81CC13B7CB7EDABE33_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* LocalCertSelectionCallback_t3AB79A8AA642074A3EF886118963EEA3CCABABE2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Marshal_tD976A56A90263C3CE2B780D4B1CADADE2E70B4A7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MonoIO_t4111700E5C2D38E1B55C916719E4CB725CBE5FC7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MonoRemoteCertificateValidationCallback_t1A389B61998873F6B9A2EE7A11C36333A8AECCA0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MonoTlsConnectionInfo_t3286AE494AEF3E62C9BE40FAC497849DFA193964_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NtlmClient_t44BA8DF60B38A19EB7987B3BC2FB8D0B8A1EB0E6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NtlmSession_tFCA9C8C98B2241BFE552477E3F60F419C51F30AB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* OperationCanceledException_tC97D0B4532C15E6F0E9F9375091C9ECCA438D662_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RemoteCertificateValidationCallback_t2F4C5801F96B2C2BF934511796C5BFEAEBF01955_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SafeProcessHandle_tA260D4420C5F481A5DA030FFB19D038BBF8A63CB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SafeWaitHandle_t58F5662CD56F6462A687198A64987F8980804449_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ServerCertValidationCallback_tC7A568060163FC6810AF9817F26F986C78CFC27F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ServicePointManager_t124F9D59A0C6581AC0C21156D657A2EB3C7EE120_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SslClientAuthenticationOptions_tA5277DAACAFB33887D2513D9399C5154B0D5CBC9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Stack_1_t11FC055BC8A112A4D3474F6FA0DCAC26D397C08C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SystemCertificateValidator_tA4E6BC166E3F3CEDF8BAE495922494EE0A597D16_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TlsException_tC2DD153B101F6116975F36613D7F7C009C5664E3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Tuple_2_t8A67FBD80CECF93E77E04F75D4B379CC242F7DA5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Type1Message_t870960FCE9832270C947CFFD3DC8CE62DC3E8974_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Type2Message_t2B675F8672CFEC6E19474A238FA02DCEDB0209BE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Type3Message_t17A486915FD96CAECE87CB2AE1825043A364AF66_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CReadReverseRdnsU3Ed__21_t6DC5309953340D6F3CAF345220E2D0AAD878D3DE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass0_0_t60EE7521AABF25B40FF0091B73416ECA2A8A8A92_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass11_0_tAA6FF214AE681D87C566414EF7C30A3CEA0C9211_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass66_0_t892C285932134E13248FD210209881BF6B5831DB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass6_0_t48F0A5835CC00CD6BF0EE74C6CDFF12987FC3DB2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t23EC3A439D27907A8B20604CC3FBC3DEA329D4BB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t90F8CB10B454B45A81BE65AA841DD85FE08EA21A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UnityTlsProvider_t5B2A843E65B77E7B2B9F2467DB0B6117505929D1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UnityTlsStream_tF1D4B34A71A716396F78FDAF2C35F812E09A4FDE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UnityTls_t71011C0BD4A30AEBAA7ABCA771FA604C31970F85_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* WeakReference_1_t0E5A403EFE44DFDF760845211C10561ED81417A3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* X509Certificate2ImplMono_t4566261D31F143C8CD222DB687625E5246BFD240_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* X509ChainElementCollection_t543DE35924C12A624ADA5111F7F47C1F9F99E70D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* X509ChainImplUnityTls_t37736839B9CDAD02F5F02693121A4C18C0020B40_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* X509ChainPolicy_t34F49B4067492A1E5F91DD91FA7C934B68D880EC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* X509PalImplMono_t2D1688733B64BBD2C1A1038CEC75A9097611B8B2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_ciphersuiteU5BU5D_tCD24D3B2044FE95971675C32E93857E6DAC52120_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_error_code_tFDFCC5EE8771438D311CAB28FC8D37025E5BD6BE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_errorstate_raise_error_t_t8C20FC78CA5BBEE0248CC09D1C1AF25BCB3835CF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_key_free_t_tDB8665140BAF30447F3650D323078C193566FF72_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_key_get_ref_t_t8335968B19449FE0ED92E67AE9B6D95915684209_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_key_parse_der_t_tC218AEF9253FA105762F39041F696A06C52D3F10_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_key_parse_pem_t_tE945670C6CB28BBF4670D2E8E904B7D8A2AB277B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_random_generate_bytes_t_t6E7011EF958B0948582F8D1D213B454A5A962569_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_tlsctx_create_client_t_t49D8F69D4152410A346CB3560B121DCC44AAC4EC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_tlsctx_create_server_t_t1068941B319B893D3FFBE53FE061676FF1CC3803_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_tlsctx_free_t_tFBF7BB64D2E1C183718FB5809ABF0051395FD8F0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_tlsctx_get_ciphersuite_t_t7317543D399259616648B1AA19447C4B63F70EF2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_tlsctx_get_protocol_t_t04E3B73C1D77379F7C7388ED4934189365326F3C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_tlsctx_notify_close_t_t717D19846262E3DF5D1A69C5E136912E7A54B253_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_tlsctx_process_handshake_t_t8D94F5FAD00CD61BF950829866C0C6E29D202606_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_tlsctx_read_callback_tDBE877327789CABE940C2A724EC9A5D142318851_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_tlsctx_read_t_t3E3C711F7A47E704ABDF0DF0B7515E7306EB7C95_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_tlsctx_server_require_client_authentication_t_t2AC04245D1F40738C5FB87B0DEE80761E243F0BE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_tlsctx_set_certificate_callback_t_t2B54F7228DFC11BF14DCF2201BDD90CF0EF92D41_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_tlsctx_set_supported_ciphersuites_t_t007E8706D364DE695F1DBF28358058A1E73DF544_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_tlsctx_set_trace_callback_t_t3C615EACADC2CB1CDA8362B3F775071976E7CF7C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_tlsctx_set_x509verify_callback_t_t032FE980BEDD0D201CAF1EE653ABE303CDBCA7C9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_tlsctx_write_callback_t5D4B64AD846D04E819A49689F7EAA47365636611_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_tlsctx_write_t_t976A41600B61F9C8DF022296B67316FFA53EB386_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_x509_export_der_t_tB784597940DE501BB5FEFA3EA528634559A16749_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_x509list_append_t_tC84B9CA7C15F5D1DE98386670A80D5F98559D98E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_x509list_create_t_t8873365FFB1556CE6B643700DB0C30E391B758D6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_x509list_get_ref_t_t264CEEF7B8D1F10FD95E1BC78BB48BCA11E305EA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_x509list_get_x509_t_t428DCD367D50DCDD5ECE6DCFEB8967C5F7C3DFE8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_x509verify_default_ca_t_tED88B7ABC8408A22DB51B1F57D5FC65BDD2EC809_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_x509verify_explicit_ca_t_t1B3D98BF01F059A3C2ADE87EFDDA03C557A3D08D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* unitytls_x509verify_result_tBD0B93AE208F14C2C6CD925F0702A269BFE66FF0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____27625E383C3A91E8B65BC745FF5D4048C82B883CCD293B07DED697BF82733811_4_FieldInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral00045BEB4E25927218B1459FF5C9438A7C8C07B7;
IL2CPP_EXTERN_C String_t* _stringLiteral0014DFE8C905DAF0C4F40106193E910B41B1CC70;
IL2CPP_EXTERN_C String_t* _stringLiteral007F27F385EDD0B09DC7169A6261215298BE7C86;
IL2CPP_EXTERN_C String_t* _stringLiteral02944E23D08CDA7A142EFEB879C7186358A22CCA;
IL2CPP_EXTERN_C String_t* _stringLiteral030EB2813F0D487BCDA7E02E29C397E3B9BCEC74;
IL2CPP_EXTERN_C String_t* _stringLiteral04E73520EF5FFFB55D772FE19B08EC1B2E552C4B;
IL2CPP_EXTERN_C String_t* _stringLiteral05F1E86F31848B408778C13CA7EE991CD28933F7;
IL2CPP_EXTERN_C String_t* _stringLiteral0736DDED94EE74582C145D96F24E40A314A48CB1;
IL2CPP_EXTERN_C String_t* _stringLiteral08BBB8048FA133B2E30EBC4A223440CBE46C54BA;
IL2CPP_EXTERN_C String_t* _stringLiteral09684B67A5909FD48E1F14A8AF8DDD483C620B10;
IL2CPP_EXTERN_C String_t* _stringLiteral0AB71622FD1CF7F312E55FFA2BC47C3A1006DC45;
IL2CPP_EXTERN_C String_t* _stringLiteral0B31027F164515A1950B5D7471AE7856BE543763;
IL2CPP_EXTERN_C String_t* _stringLiteral0B491B08D7F3147A54D3A6892A54AE8DC9C9106F;
IL2CPP_EXTERN_C String_t* _stringLiteral0C3A626239DC9A1E8F6C7E32633CFA7AAC722F6C;
IL2CPP_EXTERN_C String_t* _stringLiteral0CBADE8543F92DF670C549BE1A3C836260EAD8FD;
IL2CPP_EXTERN_C String_t* _stringLiteral0E0E07FBC53FA8C48B097E23C1F51253713BFE1D;
IL2CPP_EXTERN_C String_t* _stringLiteral0F97BFE601FEB0350627EDDE59CF51E33AD503FA;
IL2CPP_EXTERN_C String_t* _stringLiteral0FE54C445DB351A3F32FB1C63B8B9C71D295C2B8;
IL2CPP_EXTERN_C String_t* _stringLiteral11439E7E9FE68D660C82AB5B4FF92D4C120BBBEE;
IL2CPP_EXTERN_C String_t* _stringLiteral14766905080A42A4E1B372AB68C4494ECC1FEE82;
IL2CPP_EXTERN_C String_t* _stringLiteral14D13302CA125B23FDC663B73325C42B8DA4C1EB;
IL2CPP_EXTERN_C String_t* _stringLiteral1516A3BA846D0F80661C2EF149A49C5DBB511D1D;
IL2CPP_EXTERN_C String_t* _stringLiteral17E5BE9B221C767EF04A364F24B81309DAE38512;
IL2CPP_EXTERN_C String_t* _stringLiteral19088A5D4151B71A0151316584575959251E5B35;
IL2CPP_EXTERN_C String_t* _stringLiteral19C13A0A72C74FF6837E5A8AD17C567B3988784D;
IL2CPP_EXTERN_C String_t* _stringLiteral1A7FC08E8EB016BAD5A8A8D7B3447DAD63E867BC;
IL2CPP_EXTERN_C String_t* _stringLiteral1ACB8FAF8504B2F74910751862578633C09282F3;
IL2CPP_EXTERN_C String_t* _stringLiteral1B96C2A6037883D67ADDA00441FF5DC311D9F8DF;
IL2CPP_EXTERN_C String_t* _stringLiteral1C2685EEE425882510DB5AA417848E03F4698356;
IL2CPP_EXTERN_C String_t* _stringLiteral1E1EF2D79496D79BD97AF1CFADBB50547D20706F;
IL2CPP_EXTERN_C String_t* _stringLiteral1E975408BDC3CEEA3B3BBEDC11D8AE5E1FFE9B0B;
IL2CPP_EXTERN_C String_t* _stringLiteral1EC47CDC551021DF3F33288308AB1FEBAD868FBF;
IL2CPP_EXTERN_C String_t* _stringLiteral1F68D0B7D234D04291DCFDFD64A5ADCD6305AF31;
IL2CPP_EXTERN_C String_t* _stringLiteral2089EB1FB499380F28C9CAB508E60FD5ED128160;
IL2CPP_EXTERN_C String_t* _stringLiteral20BBF77FD0D497807457F8ECCF59F13F5879AFD3;
IL2CPP_EXTERN_C String_t* _stringLiteral20E48A71B5C1AFE9893FE8F7BDFD9A446A9EB0F3;
IL2CPP_EXTERN_C String_t* _stringLiteral216E3D25BB7EDE5236107BA6C65F6706B5BD2D23;
IL2CPP_EXTERN_C String_t* _stringLiteral21A3BA98CA9A7E573D0A549E82022237715538AD;
IL2CPP_EXTERN_C String_t* _stringLiteral244C3A134C2AC035AB58EF188A0D0B4BA1CEFA31;
IL2CPP_EXTERN_C String_t* _stringLiteral25118FE7F36A19FBB74A9C6C22FCB9831E89F823;
IL2CPP_EXTERN_C String_t* _stringLiteral265AC4FA61CDF45D97068B014131FBA64D57252D;
IL2CPP_EXTERN_C String_t* _stringLiteral26E994D822B48484B04399E5FFCFF2F3C1D25743;
IL2CPP_EXTERN_C String_t* _stringLiteral2732350C7BFD8452F3987362472250BF67055FE1;
IL2CPP_EXTERN_C String_t* _stringLiteral281BB5D0C04BC40D275D9DCE38ABB73950A5F20C;
IL2CPP_EXTERN_C String_t* _stringLiteral2A27431C50DA31999C476953B5F8684B03951E68;
IL2CPP_EXTERN_C String_t* _stringLiteral2A7F604AA53E605CA5A4D06ADF4F5C4B6FCBD8E8;
IL2CPP_EXTERN_C String_t* _stringLiteral2A9A5AB04CCC916E2271E013ECB39F5CC0DED339;
IL2CPP_EXTERN_C String_t* _stringLiteral2CA13BAB783CC232179C6E6EFC7394ED66F915CF;
IL2CPP_EXTERN_C String_t* _stringLiteral2F395A8D1CC82D12EB0DFF52CAD1AD2C5FEFABF5;
IL2CPP_EXTERN_C String_t* _stringLiteral2FDCE7F577695853459152469012B0121731CD52;
IL2CPP_EXTERN_C String_t* _stringLiteral31B7F7137140DD116C1A537306889714F783E01B;
IL2CPP_EXTERN_C String_t* _stringLiteral3285395F26EAFB3C5922F02E5C730A604CE54FFD;
IL2CPP_EXTERN_C String_t* _stringLiteral33E5E507E0804AC2782DF407510BD2DFE93B374F;
IL2CPP_EXTERN_C String_t* _stringLiteral3408DA21479B5C8D772A61839620083833F3AD8C;
IL2CPP_EXTERN_C String_t* _stringLiteral34FB5CB376E6DAB81256B94CF3DFEAFB18188A7B;
IL2CPP_EXTERN_C String_t* _stringLiteral3556155D25CE64C710CC61A8C9D361B08530D364;
IL2CPP_EXTERN_C String_t* _stringLiteral3765CC954D2E20DA444F70D543294F5BEDD2FEC2;
IL2CPP_EXTERN_C String_t* _stringLiteral382BEC7D7127CB45C3FFC27D47784E36DF741510;
IL2CPP_EXTERN_C String_t* _stringLiteral386C2FE8E26B914AB24092E9E7FBA3B7840238C4;
IL2CPP_EXTERN_C String_t* _stringLiteral389391FB0E9D9B4AB5FDCD8B460E3E0816E41899;
IL2CPP_EXTERN_C String_t* _stringLiteral38A29F0742E6F746BEAE82B7874F2F4A23D91741;
IL2CPP_EXTERN_C String_t* _stringLiteral3A22B1A23BFA90B6648AA767270477E8532F4379;
IL2CPP_EXTERN_C String_t* _stringLiteral3BB5322B02815376D2BC2E8BD2E9EF61131FBD38;
IL2CPP_EXTERN_C String_t* _stringLiteral3D33D0610C7091655B30CCDF62ABD943C3D6E36B;
IL2CPP_EXTERN_C String_t* _stringLiteral3D65682F00D08C168B4505CC6CE8D8859E155B56;
IL2CPP_EXTERN_C String_t* _stringLiteral3DA9626F5C461D11E11D72ED1FD408E9CD0ECFBE;
IL2CPP_EXTERN_C String_t* _stringLiteral3DCC6243286938BE75C3FA773B9BA71160A2E869;
IL2CPP_EXTERN_C String_t* _stringLiteral3EAA68C8D87597E134D7A29B5BDC92EB6EFB97DB;
IL2CPP_EXTERN_C String_t* _stringLiteral3EABD487498F0EB91EB77895338816266FA44C98;
IL2CPP_EXTERN_C String_t* _stringLiteral3EE5A4671A4E5AEBD31CA5F013A7773DC18ED22B;
IL2CPP_EXTERN_C String_t* _stringLiteral3F83BE0D6326B760AD76E78EDEB68B73ED006B6D;
IL2CPP_EXTERN_C String_t* _stringLiteral3FD577241CDFEB5901AE2F75AC3F8BE590E39584;
IL2CPP_EXTERN_C String_t* _stringLiteral4066F19F3D1AA536AF01D9BF934B884A451C566F;
IL2CPP_EXTERN_C String_t* _stringLiteral412993E49B10AEBEAAF97A839FB0FFFFBE635604;
IL2CPP_EXTERN_C String_t* _stringLiteral416683232C98B46D3CB67F7E22FF1BE125144CB7;
IL2CPP_EXTERN_C String_t* _stringLiteral41E7279CDDF2F76722910916CF4C0A8EC64DAE48;
IL2CPP_EXTERN_C String_t* _stringLiteral42F629CC32087815BDEE088698E50CE910A82D86;
IL2CPP_EXTERN_C String_t* _stringLiteral445664209AA29094CB865FC6A362314895601FF5;
IL2CPP_EXTERN_C String_t* _stringLiteral453A07B8CC155ECBEB68D277EC848642FFB5F3B6;
IL2CPP_EXTERN_C String_t* _stringLiteral473BE997FD82CA373BC40BEC46E737A81D8B16EA;
IL2CPP_EXTERN_C String_t* _stringLiteral4B955887CF5EB7352CC8F12E4ABBE8B4529E5A5E;
IL2CPP_EXTERN_C String_t* _stringLiteral4BD64CDDC726EEC9781AF7725F934C659848D974;
IL2CPP_EXTERN_C String_t* _stringLiteral4E3A2985070688B84499878DDC605069EC40E608;
IL2CPP_EXTERN_C String_t* _stringLiteral509757CFB3D9A8616DB7B4FB514DBF839548AC88;
IL2CPP_EXTERN_C String_t* _stringLiteral50ED994EAB5E4B5A327FC8D974EAB06E7CFA83A4;
IL2CPP_EXTERN_C String_t* _stringLiteral51D435CC029DAE95C5F975414FAEBF4DA90B66F8;
IL2CPP_EXTERN_C String_t* _stringLiteral524A02B897BABED5C30469E21902671642FCF6DC;
IL2CPP_EXTERN_C String_t* _stringLiteral5358AE34B230161B494D278AB432CAF567BF87B4;
IL2CPP_EXTERN_C String_t* _stringLiteral53B85B740DDFDFB7BB24AB3B12A0E6CC2C75D9FB;
IL2CPP_EXTERN_C String_t* _stringLiteral544DC80A2A82A08B6321F56F8987CB7E5DEED1C4;
IL2CPP_EXTERN_C String_t* _stringLiteral56F16046057CAF41056CD1EFA40C61820CF96523;
IL2CPP_EXTERN_C String_t* _stringLiteral579A50C67ADB00AC3925859C23590322B2D0BE9D;
IL2CPP_EXTERN_C String_t* _stringLiteral57C2411D7466EB3172B6ADBF471154844F8FEA55;
IL2CPP_EXTERN_C String_t* _stringLiteral59035792B7DAA31AEB540EB87E38CA344825D295;
IL2CPP_EXTERN_C String_t* _stringLiteral592F7E5A43A277121C24F9F2BF94CB1EB74C61B7;
IL2CPP_EXTERN_C String_t* _stringLiteral5A4E411F65E7CA15BA995630065445903EBE9E78;
IL2CPP_EXTERN_C String_t* _stringLiteral5A9C691CB5E91EAE05201517784BF116F1BCF52A;
IL2CPP_EXTERN_C String_t* _stringLiteral5B0AF7CA322B18CA0314E932B2A0B25258ABD0B0;
IL2CPP_EXTERN_C String_t* _stringLiteral5BF96667530EA67F66934684E21D80177D05462F;
IL2CPP_EXTERN_C String_t* _stringLiteral5CDBAC457EFE37BD1A4DE9D7CA08E257E79A06E8;
IL2CPP_EXTERN_C String_t* _stringLiteral5D6AC9E7FE8C6C89E816E586AFA7AB9FDD4896C3;
IL2CPP_EXTERN_C String_t* _stringLiteral5DD947811BAB9B7A838C495330E7196D53D30F9F;
IL2CPP_EXTERN_C String_t* _stringLiteral5EDC47BC71D706BB11343CC890323569C143CD50;
IL2CPP_EXTERN_C String_t* _stringLiteral601B54E50ECF5E2BD749C0D51900EE6CA8F3B70B;
IL2CPP_EXTERN_C String_t* _stringLiteral60DF8EB4AC4B801DC8E976BB0E82ED8EC424AD81;
IL2CPP_EXTERN_C String_t* _stringLiteral6257195A152AE060C7619F5D9C820630ADE2B3EB;
IL2CPP_EXTERN_C String_t* _stringLiteral62C9A18CEF6E803000E9D0C74D3984F48861921F;
IL2CPP_EXTERN_C String_t* _stringLiteral63AC9DC645168B914A535F5C7342717758BEEFAF;
IL2CPP_EXTERN_C String_t* _stringLiteral63B300D626AF5DB0A4A90A4C6129D533D8A54BDB;
IL2CPP_EXTERN_C String_t* _stringLiteral64260D9444D15A6248926D7B01F965DB0406844C;
IL2CPP_EXTERN_C String_t* _stringLiteral644A35D1B18EE1C6E7BD11BFBB5703CF66AD6FD4;
IL2CPP_EXTERN_C String_t* _stringLiteral6512DA4907D56E720E64AADA736100FEFFFF5AD6;
IL2CPP_EXTERN_C String_t* _stringLiteral65C91159DE73AB664AD579C104F3EE3E6A5B9308;
IL2CPP_EXTERN_C String_t* _stringLiteral65F470EB85937975B76150048296F58FD47AB5E0;
IL2CPP_EXTERN_C String_t* _stringLiteral683A95818280F9859694F418A2FD0A817678C9DB;
IL2CPP_EXTERN_C String_t* _stringLiteral69B81946A0E0509B4B1290B35F421416AF35AB7B;
IL2CPP_EXTERN_C String_t* _stringLiteral6A93428410FC7E81D002D73E0B9FA5E4665FAEF0;
IL2CPP_EXTERN_C String_t* _stringLiteral6B188360294349CD1D94164DB9AE487200C503EE;
IL2CPP_EXTERN_C String_t* _stringLiteral6B4F856E69D6E5B45A94AEE42FC8722881CEB575;
IL2CPP_EXTERN_C String_t* _stringLiteral6C0E8D5689BB9C238931C0AE7E15A835AFAD3488;
IL2CPP_EXTERN_C String_t* _stringLiteral6CB05FD18E12F98F81A204339D25DD82BC993FDD;
IL2CPP_EXTERN_C String_t* _stringLiteral6F23583CEF03BB7DDB3E4BEFF341EA1FC85AB4D8;
IL2CPP_EXTERN_C String_t* _stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044;
IL2CPP_EXTERN_C String_t* _stringLiteral72E174820ED7A45081DDFEACF656A904E9EB0E4A;
IL2CPP_EXTERN_C String_t* _stringLiteral738F291E53E97C08DAE378C71EF70A60E31AE900;
IL2CPP_EXTERN_C String_t* _stringLiteral738FCA547BF0642A101D0089A576E9185DF009D0;
IL2CPP_EXTERN_C String_t* _stringLiteral73FA04677D2EC5BD9AE931264820FA6E454A3008;
IL2CPP_EXTERN_C String_t* _stringLiteral7453478D5DA9E53E5ECCD0865A2CD6927BAD940B;
IL2CPP_EXTERN_C String_t* _stringLiteral74FBF85A38655E8FFFC7E9F6E56CCA07CB1D3C85;
IL2CPP_EXTERN_C String_t* _stringLiteral75083ED9D1F97E099BDA7A17460E86EAF92CDE8A;
IL2CPP_EXTERN_C String_t* _stringLiteral7577A0557AF7D69E0C49481F373E7858B5780565;
IL2CPP_EXTERN_C String_t* _stringLiteral75A224C696F223AD77F7C80741DBF005DA84E826;
IL2CPP_EXTERN_C String_t* _stringLiteral78F909443A7FA37B76058CC361DFD4807A228095;
IL2CPP_EXTERN_C String_t* _stringLiteral79286C46F128302EE9B397D1B2EE804CA3E182BA;
IL2CPP_EXTERN_C String_t* _stringLiteral7931519DFF1BB20E46AE397FD6DB8CD6EEC7ED0C;
IL2CPP_EXTERN_C String_t* _stringLiteral7B18F301A198B83778B5E546729B0539A0D4E758;
IL2CPP_EXTERN_C String_t* _stringLiteral7D552BA8BBFFCD85EFDE066E4246951389138C69;
IL2CPP_EXTERN_C String_t* _stringLiteral7E42A1729FA8C9C1BEE7E611CBFC7146A05A416A;
IL2CPP_EXTERN_C String_t* _stringLiteral7E70AF961A2F88ADB9DB7B9C3B5F25A532C1570A;
IL2CPP_EXTERN_C String_t* _stringLiteral7E96087CB3CFB8FA010625C93BB4A5CF8279FF69;
IL2CPP_EXTERN_C String_t* _stringLiteral7FF246983A3B2CEAEA57814A7B884A9ADE68F563;
IL2CPP_EXTERN_C String_t* _stringLiteral80A61DF74E3132BFF8AB81A0843B4B50F8BD99B3;
IL2CPP_EXTERN_C String_t* _stringLiteral80DE72AF3DA47DC4163DB5C56EE2FD8047DB03C9;
IL2CPP_EXTERN_C String_t* _stringLiteral80F21D50E32EC9084847997A0C258C6A529DAC47;
IL2CPP_EXTERN_C String_t* _stringLiteral81EB86A368F960F3D9C1CECA4B8419FF90C9C1EF;
IL2CPP_EXTERN_C String_t* _stringLiteral830B64B4254C502C612E53C83DBEE6238E710499;
IL2CPP_EXTERN_C String_t* _stringLiteral83344570C78814D060F98E8A28B9C1804B6D79F6;
IL2CPP_EXTERN_C String_t* _stringLiteral83516AD985761BA568B2C46FFF23091999ACF73B;
IL2CPP_EXTERN_C String_t* _stringLiteral85ED0BE3A863D3289C6B8C92A26E016A40E584F4;
IL2CPP_EXTERN_C String_t* _stringLiteral86001CD74A28E54C60CCF93185B74839F950F1BC;
IL2CPP_EXTERN_C String_t* _stringLiteral878072FBC1088181F5220043BFE9213B286E31DB;
IL2CPP_EXTERN_C String_t* _stringLiteral87A99411D29E97529AE9D79528DC96F17B0536F8;
IL2CPP_EXTERN_C String_t* _stringLiteral88B2EBB8B15244DE5EB3E8CCA28A8967EA0B6854;
IL2CPP_EXTERN_C String_t* _stringLiteral89487254CCF55296ACC80B8660A14ADE141E6868;
IL2CPP_EXTERN_C String_t* _stringLiteral89D230C85EF9835442B3F52D83B0085CD933180D;
IL2CPP_EXTERN_C String_t* _stringLiteral8AF48F97A7F14735DCDB53B32826187263442ABD;
IL2CPP_EXTERN_C String_t* _stringLiteral8B3CFB4B560123030AE265CBD62C0BE39E1D8EC6;
IL2CPP_EXTERN_C String_t* _stringLiteral8CED49C9B8AAF560AF77252A715370DDD5C425C1;
IL2CPP_EXTERN_C String_t* _stringLiteral8E264486DFD68F8D2AC59C629355E7337C6392BF;
IL2CPP_EXTERN_C String_t* _stringLiteral8EA411EEA0231AA0906165194C210EF69B075891;
IL2CPP_EXTERN_C String_t* _stringLiteral8EFCA599026E32CC66A6CF4B93F8B27E3A7A5AA8;
IL2CPP_EXTERN_C String_t* _stringLiteral8FA9CB51CDB9C5AF33B0C761DB639980514F4D72;
IL2CPP_EXTERN_C String_t* _stringLiteral8FD38829970030D94E5815DAB6ED73CBC728EBBF;
IL2CPP_EXTERN_C String_t* _stringLiteral93954AC54959BCD46464E8152F221687F3B0E3B7;
IL2CPP_EXTERN_C String_t* _stringLiteral93FC6FFF4C29A68E46A03C6F1D4BA69847491E8A;
IL2CPP_EXTERN_C String_t* _stringLiteral94227CA8EB4252C21E39FE8CCB2B65A6D01D3CF1;
IL2CPP_EXTERN_C String_t* _stringLiteral94F80C8383908313363D09271B7A1CEBC9C5466A;
IL2CPP_EXTERN_C String_t* _stringLiteral95419FAFDA01DE5BD36BADABAFA89CAC156E74D5;
IL2CPP_EXTERN_C String_t* _stringLiteral955BE7C27EA4C75663C95CF8283AD7A667995A2C;
IL2CPP_EXTERN_C String_t* _stringLiteral95966C03C6021E7E73AE465202AEF101F94D0CC5;
IL2CPP_EXTERN_C String_t* _stringLiteral963C37A58017767387FAD1CB7CBC89AB1B6144B7;
IL2CPP_EXTERN_C String_t* _stringLiteral96DDBF9A4A89732F34FC5A0EF7DBBB4E91C5BCC8;
IL2CPP_EXTERN_C String_t* _stringLiteral981AE4478E71C4EC026A30E7892E7C4381F95DB9;
IL2CPP_EXTERN_C String_t* _stringLiteral99C134A36D015746C32203B98CC495F87311D9DC;
IL2CPP_EXTERN_C String_t* _stringLiteral99C165894B2900048144F5DEF682937FE73CA541;
IL2CPP_EXTERN_C String_t* _stringLiteral9A12021E1E1850DBED762F93F651DB311B213542;
IL2CPP_EXTERN_C String_t* _stringLiteral9B011A2F05732EE2D8F05125670B35D80E4C0155;
IL2CPP_EXTERN_C String_t* _stringLiteral9B1F0AA63B2AB43512920221BD667C8CF844E7A5;
IL2CPP_EXTERN_C String_t* _stringLiteral9B6EDF60999707E0620839BD57BDCF5CA110596D;
IL2CPP_EXTERN_C String_t* _stringLiteral9C1177F1B6AEF3E501867F06DEB3134EDB70A458;
IL2CPP_EXTERN_C String_t* _stringLiteral9CD944CC2F94D393A85A2E0420941DCD6622DA70;
IL2CPP_EXTERN_C String_t* _stringLiteral9CDD95D71909AF4B1F39B564CDB7A29DC63A726A;
IL2CPP_EXTERN_C String_t* _stringLiteral9DCDEB81D27AF40B44A13DCB81A492E5686F0CA0;
IL2CPP_EXTERN_C String_t* _stringLiteral9E1FB4D86910BF7A7E7519E39C812966ABC68478;
IL2CPP_EXTERN_C String_t* _stringLiteral9E6BA185CF46C7496C8977196B608B151E6CA640;
IL2CPP_EXTERN_C String_t* _stringLiteral9E8F608B8995201B1FE660472A1ABC54D5D5B4E1;
IL2CPP_EXTERN_C String_t* _stringLiteral9F1213AA6EEF9116A55D707F375372E7AE4811E0;
IL2CPP_EXTERN_C String_t* _stringLiteral9F9806FFE6F4A87C47B8928195094F3727EF549C;
IL2CPP_EXTERN_C String_t* _stringLiteralA006FCB4201934135FE5378132B66888869CBF16;
IL2CPP_EXTERN_C String_t* _stringLiteralA0D2489FF811A7C30B58640074CA473EA7DB5472;
IL2CPP_EXTERN_C String_t* _stringLiteralA101A7F7136CB2500108D59D8CC97297A1A72750;
IL2CPP_EXTERN_C String_t* _stringLiteralA14367A21EF902F577F1C84CE88AD05DD6E68FBA;
IL2CPP_EXTERN_C String_t* _stringLiteralA25B69026A70D534621843E13AD9FBEBC01B0B2E;
IL2CPP_EXTERN_C String_t* _stringLiteralA25F6BDE622F13BBCD87A785C8019A938EF75A7B;
IL2CPP_EXTERN_C String_t* _stringLiteralA38630C0DCBBD9CA5D185BABA4B13A9BA8E4480D;
IL2CPP_EXTERN_C String_t* _stringLiteralA3BFC0737E4F6504E6E8C5B00F9FB2F64D65E1A7;
IL2CPP_EXTERN_C String_t* _stringLiteralA415C20DA6103839E3CDCE27E20D4269A64EFB98;
IL2CPP_EXTERN_C String_t* _stringLiteralA49C6C2328B9D2556E2655623DAC4AA452304C19;
IL2CPP_EXTERN_C String_t* _stringLiteralA5421735C67AC5A0AE793A21C6A026FDFEAD5209;
IL2CPP_EXTERN_C String_t* _stringLiteralA6A5FD7DF379E08BFFCC99E567489352CB086B03;
IL2CPP_EXTERN_C String_t* _stringLiteralA716B75B12303C269B7D64B627143962C1A30F9E;
IL2CPP_EXTERN_C String_t* _stringLiteralA769D26CEBDB76B20A90DFECE81C1D6E4E458A71;
IL2CPP_EXTERN_C String_t* _stringLiteralA8BCDFB664ED95346DE4342A8E251772B519ECDB;
IL2CPP_EXTERN_C String_t* _stringLiteralA93F7F2221973BB3366690843F10B64F2A3A5C02;
IL2CPP_EXTERN_C String_t* _stringLiteralABB3D627F0FA0B19A6B77765161EF2F6E7AA3A59;
IL2CPP_EXTERN_C String_t* _stringLiteralACA7E3D2770ADAB061CBEB4B68128A012D6BA80C;
IL2CPP_EXTERN_C String_t* _stringLiteralAD564320503E7A0D649F4CBE2035ACC42705FBAE;
IL2CPP_EXTERN_C String_t* _stringLiteralADCFCCDEF80C922C16E80229971100719F7C12E5;
IL2CPP_EXTERN_C String_t* _stringLiteralB16364632FFDA7CF8AB0EF198C603812CB7ECD94;
IL2CPP_EXTERN_C String_t* _stringLiteralB3B6FD28E314D30A8A29C4DF4D44104A679F811C;
IL2CPP_EXTERN_C String_t* _stringLiteralB63C27A619AD7A36C4B3F3ECF3FA384C6EE13052;
IL2CPP_EXTERN_C String_t* _stringLiteralB6DC6AD5CFE944143BCE7F7E2BBD5EDA70CBE240;
IL2CPP_EXTERN_C String_t* _stringLiteralB6E35CED78A0E6625B93CA9B8499E4DDD649FE3C;
IL2CPP_EXTERN_C String_t* _stringLiteralB7D90C051B218C0AF42D51C1E100BC7A5F701C0A;
IL2CPP_EXTERN_C String_t* _stringLiteralB8B4C2979DAB09B7114DAEEEAB285DFD7F257D8E;
IL2CPP_EXTERN_C String_t* _stringLiteralB9E1478B8D72599051CCFC890ADE5E685453A124;
IL2CPP_EXTERN_C String_t* _stringLiteralBAA19DCB8FB67475CB93C514ACB7AA3B13E9E06A;
IL2CPP_EXTERN_C String_t* _stringLiteralBAB981D485EEF22571BF72AA511ECA047EB88F74;
IL2CPP_EXTERN_C String_t* _stringLiteralBCBD089553BED56941C157C4F715B4365F724D7C;
IL2CPP_EXTERN_C String_t* _stringLiteralBCC8E2572E2A53F52B9C6C9EC8B7EA53D7B1F22C;
IL2CPP_EXTERN_C String_t* _stringLiteralBD644D3A09E6018C0DD586854D34E1CD3EE727A0;
IL2CPP_EXTERN_C String_t* _stringLiteralBDA8B3692203ECDF4D2439E4D8DF89379BFCF2F6;
IL2CPP_EXTERN_C String_t* _stringLiteralBE3201E1F2B98FDF236B089A5FE0DD87DC6B433E;
IL2CPP_EXTERN_C String_t* _stringLiteralBED4027F29BEC5EF843DEDD9DB6073C6DA60B8B4;
IL2CPP_EXTERN_C String_t* _stringLiteralBF86C9E9E7FE0EF09A2EAE8066CDC31F859254CC;
IL2CPP_EXTERN_C String_t* _stringLiteralC0B0DC6F895955119EDF68C6ED7ED1FC309616DB;
IL2CPP_EXTERN_C String_t* _stringLiteralC1571324F1F4735227CE92635630CCF0F3AE9C0A;
IL2CPP_EXTERN_C String_t* _stringLiteralC21CF5E29D28F583337ED42C9E463D36BC9B2B1D;
IL2CPP_EXTERN_C String_t* _stringLiteralC263EA29ADF3548CFEBC57B532EED28451A56C10;
IL2CPP_EXTERN_C String_t* _stringLiteralC2F13D6423712EE49184F09B7A5C47EEF28ADBE2;
IL2CPP_EXTERN_C String_t* _stringLiteralC318857CEA813401776D821FAFDCC824179B3825;
IL2CPP_EXTERN_C String_t* _stringLiteralC427ED0956E3EE3E9348F8D4B17DCD3E200409B6;
IL2CPP_EXTERN_C String_t* _stringLiteralC470D48C046CBFF46DA268680C29701BDFF88855;
IL2CPP_EXTERN_C String_t* _stringLiteralC4C7159B2B59DD672703F9437C8EA6C62A48D94E;
IL2CPP_EXTERN_C String_t* _stringLiteralC55AFFA4599D7E7F1FE45BF21D72FD8E0E12E4B1;
IL2CPP_EXTERN_C String_t* _stringLiteralC59D838ACD5CFFE86405FDCA41DB2E9A2B39411F;
IL2CPP_EXTERN_C String_t* _stringLiteralC60A77342DF8944C671161996BE22C72F72D36FA;
IL2CPP_EXTERN_C String_t* _stringLiteralC8F17C66DC1FF69C1D90B27C99118E5EBE60A360;
IL2CPP_EXTERN_C String_t* _stringLiteralCBCF9A0C616BF28F37201490894BD1EAEE790999;
IL2CPP_EXTERN_C String_t* _stringLiteralCE94536476505A36236FABE90390E761134DDFFD;
IL2CPP_EXTERN_C String_t* _stringLiteralCEE4BEC9969079A1DA2F65E0F044E4FF1AF5EEAE;
IL2CPP_EXTERN_C String_t* _stringLiteralCF0CD765ACF4809502136C53ACFA60970F9AF5C0;
IL2CPP_EXTERN_C String_t* _stringLiteralCFE25B37C16B0E4BB7D218D140551332C7027A1D;
IL2CPP_EXTERN_C String_t* _stringLiteralD252B930E829E7C8274E97CAA92250DE3E9543A8;
IL2CPP_EXTERN_C String_t* _stringLiteralD327CE3F4A3F4BF8B816397FA3D8E73D1C03FD9D;
IL2CPP_EXTERN_C String_t* _stringLiteralD3D092DD26E70F30FC80E8E212B50455A8FC29C9;
IL2CPP_EXTERN_C String_t* _stringLiteralD3F492F1F5769A36FDE4FDBAA2F03E4968A9C49A;
IL2CPP_EXTERN_C String_t* _stringLiteralD431DA333CF96CF017F2C2FE0CE09A07D97C41C8;
IL2CPP_EXTERN_C String_t* _stringLiteralD69F7F14121D9831D0233F82A9ED4A0C4C56465D;
IL2CPP_EXTERN_C String_t* _stringLiteralD6B6F166EEBDD3A19884A00499B2FCD3C38F7484;
IL2CPP_EXTERN_C String_t* _stringLiteralD70198B10EEFC90F99D7EBB385D9248637B26338;
IL2CPP_EXTERN_C String_t* _stringLiteralD75745EF86B18A96BC82747BF47AF777104AB154;
IL2CPP_EXTERN_C String_t* _stringLiteralD8AD3A16EDECAF102552ACA3539896F350AE4D44;
IL2CPP_EXTERN_C String_t* _stringLiteralD92669B082D6B6E83DA626B0B5FDFBF31D83A73A;
IL2CPP_EXTERN_C String_t* _stringLiteralDA2D66EF3F464A2B4BB53FA80F38DAD712C178D8;
IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
IL2CPP_EXTERN_C String_t* _stringLiteralDABBB9C036193D85D6C01708C64DD345BCE1FCC4;
IL2CPP_EXTERN_C String_t* _stringLiteralDAC8159E4A2EFDD9F6B375FC8448887EB86937BF;
IL2CPP_EXTERN_C String_t* _stringLiteralDB925358D5360EC3B447E16BA22A78C2E94D0908;
IL2CPP_EXTERN_C String_t* _stringLiteralDBA5EDA16E5D0372F9D343F11F90A8253F0F9CB9;
IL2CPP_EXTERN_C String_t* _stringLiteralDD381BE73F585C3796C220566E891E458F9D6290;
IL2CPP_EXTERN_C String_t* _stringLiteralDD5A04FDCE8EDE26B5E78DE17CAB2D9DB4D10C73;
IL2CPP_EXTERN_C String_t* _stringLiteralDD93AF8A205AE54D6AE755FEEBC6B6221D3251CA;
IL2CPP_EXTERN_C String_t* _stringLiteralDEB31152738116748FADCEF38CE0C9964DACCF2F;
IL2CPP_EXTERN_C String_t* _stringLiteralE129A07A01337A4B1F0247362EC7A3B4D3FE591E;
IL2CPP_EXTERN_C String_t* _stringLiteralE2554AA2E0C9DC24A5C7C498FC582750C82FEF05;
IL2CPP_EXTERN_C String_t* _stringLiteralE3EFD851D23D6F66E867490CB66E3B93EF575B79;
IL2CPP_EXTERN_C String_t* _stringLiteralE42A78F4045E63D3B642E862453E42AE79C3FC17;
IL2CPP_EXTERN_C String_t* _stringLiteralE53FA8AE3620EED75A6DF3DDD631B0AB54CF04A5;
IL2CPP_EXTERN_C String_t* _stringLiteralE64E6B72E9C44522A1D99B5C6A7F27EF33B44410;
IL2CPP_EXTERN_C String_t* _stringLiteralE7186871969A06ABE5BB047D2E72B5A0B291F3EF;
IL2CPP_EXTERN_C String_t* _stringLiteralE73638B205B1B37DAA16B344C18E6BAE6D8CF40C;
IL2CPP_EXTERN_C String_t* _stringLiteralE7F2002E39D5228A8496A82B1F7CAC32E1BD0715;
IL2CPP_EXTERN_C String_t* _stringLiteralE8A4ACA3B771E998E244F1DFCF466F4D3EB34155;
IL2CPP_EXTERN_C String_t* _stringLiteralE8E818AEC263D1C5686A049C4AA3550BA6CF3B7D;
IL2CPP_EXTERN_C String_t* _stringLiteralE92283747E37A297B07C2D57B4A8BC7A97D44A74;
IL2CPP_EXTERN_C String_t* _stringLiteralEA06B3E59B845A76D30379B50102FA66B2FF7906;
IL2CPP_EXTERN_C String_t* _stringLiteralEB2CD4C6704ED17A9EC3675F0D53B6B9EC56DDAE;
IL2CPP_EXTERN_C String_t* _stringLiteralEBB621ED7B9025FA2DDD168BF1DEBFF75375C3FB;
IL2CPP_EXTERN_C String_t* _stringLiteralEC24456BF1D0B9CE18660F74F513161368E6B88A;
IL2CPP_EXTERN_C String_t* _stringLiteralEC7F5B374B6E8F9D588D6C7692D3C4E95482D2C6;
IL2CPP_EXTERN_C String_t* _stringLiteralECD0CDD4784B69BF36F1B46C5AAD76D53F683F13;
IL2CPP_EXTERN_C String_t* _stringLiteralEDDFDA94752EB5111EC566E5CAF709B7133C43DA;
IL2CPP_EXTERN_C String_t* _stringLiteralF18941F7C54072D082B07A98569E8B87706644BB;
IL2CPP_EXTERN_C String_t* _stringLiteralF24BCEBD3BF54143DC34399B1E3AD4F93496E764;
IL2CPP_EXTERN_C String_t* _stringLiteralF36146B1871734889391881FED19110261D6A78A;
IL2CPP_EXTERN_C String_t* _stringLiteralF4765352B67DACFC92B948B6D33BEDE083E987BD;
IL2CPP_EXTERN_C String_t* _stringLiteralF5D0F53B08BEAB124F7E82CD857F0C2F2C0DBCC6;
IL2CPP_EXTERN_C String_t* _stringLiteralF6493B5A7C367827A5C3A31F49B5FCEF486E5576;
IL2CPP_EXTERN_C String_t* _stringLiteralF7206E5C537FD9B72E819BCFEA68CF7EECE59AB9;
IL2CPP_EXTERN_C String_t* _stringLiteralF7D020703E62098E5DD2FE3D03E68208A57F8E13;
IL2CPP_EXTERN_C String_t* _stringLiteralFA254D4D1C509C2DFAEF4A34A32CEC0963B5152D;
IL2CPP_EXTERN_C String_t* _stringLiteralFA6ECB2662838F2CC877B5BA9190C32197DE555C;
IL2CPP_EXTERN_C String_t* _stringLiteralFBEE240C366010135208AF44B014EF5A1569B7B4;
IL2CPP_EXTERN_C String_t* _stringLiteralFEBD4C8F55D7CC1B6E65FF051696B9E0B128A9EA;
IL2CPP_EXTERN_C const RuntimeMethod* Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m89F7B056854DF715AA3E2B78EB84D5FA3878E474_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisString_t_m9107AABCE77608D1D21B9ECB6DA42D0D4334AF32_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t150EB7231CA854AE162139EF92711A3C957F9591_TisU3CStartOperationU3Ed__57_tCA8E70BCBB1E41B299D65B4CF483D4CBF7A11368_m6FA771B043A065863142F7FABDD4493F8D4938B1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CCreateStreamU3Ed__18_tB6902486B51A9F1F578114D893BEC030E9A29950_m2C4C2ABA5E186B9B02DDA2BD8C664792E8BE6B55_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CStartOperationU3Ed__23_t9FFB39587AAED5C56B39C31D1D2C91BF10B7D2A8_m630A9D5428BCB94BCD95201FE4341800E453300F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80_TisU3CInnerReadU3Ed__25_t05729A3E67E2FF3B23435B02B158BDB2F3C7C84E_m1375ABD6CBB63DE8EF7F17F9B050D81DDE993851_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80_TisU3CInnerReadU3Ed__66_tDA84F0E1193C16C54FE1735B4B5F77FB65A68982_mEFE76303231143D18FCD18D893491185D26C7316_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_Create_m7C55888A44224AB0957E19F73B82D5140ED3ADE7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_Create_m8F2B08988F5CA71F7523FD4A0CB127CCCB218B93_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_Create_mD6BC27D1E6350ECB9B61238E38D4C15C8CE96802_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_Create_mE41F34163E40A97FB25427519FBDB7692F06D192_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_SetException_m76968B53E22BA2AD3C6102934BDC2C9013F74A95_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_SetException_m791D3E146542C1B15641A6BB0A5561C44338382C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_SetException_mB7C693CAA9243017E03D801A487E0EA9B6AAD575_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_SetException_mE94B9EBB0129A46F72DB88FA5170082850D5B4BE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_SetResult_m03C6502C8E7CD8CC5C2DEBF334C70F640D9D6272_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_SetResult_m7814370659E8E3550E3A679C1F2F516592198487_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_SetResult_mC456CDE030D0195F4C7D57C9CF7CC83EB532D6EA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_SetResult_mC4BAC830514CDB105730FF11F7744A4424A4009B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_SetStateMachine_m202DAC650B3B8EFE6A02ED46F243B399A3308879_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_SetStateMachine_m5D949F9E15BCE9A631DDF030D35D8DD10C0C6417_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_SetStateMachine_mC7F04B94429D5A3763256D073981D5A2F01FFE65_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_SetStateMachine_mFA173982D2C309A46F4285F60DC4FE0DC659F32C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_Start_TisU3CCreateStreamU3Ed__18_tB6902486B51A9F1F578114D893BEC030E9A29950_m80E53DFAEED43CB3C15DE84616EC79C8AD6F11BA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__25_t05729A3E67E2FF3B23435B02B158BDB2F3C7C84E_mE716BD9AA000EF73BFAB4F1FFD98494E9E32FA5C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__66_tDA84F0E1193C16C54FE1735B4B5F77FB65A68982_mA1B2B31EDE3E7E33BB18EC9F5ABB74DDD721A57A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__23_t9FFB39587AAED5C56B39C31D1D2C91BF10B7D2A8_m674D6C69CCA292AD5498A90ECFFA86F4F8D8D16D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__57_tCA8E70BCBB1E41B299D65B4CF483D4CBF7A11368_m08731DA0A532E6B6ED3E6943D1C4AC199CDE578A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_get_Task_m2DCDBC59910811D107353C5752AD58B28C2D97FE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_get_Task_m31AF486E97F1AC7E585EB822848E8069F7840E35_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_get_Task_mA3EE3DEF497EE0C4BCD6BE76F8C4BCD2FBE09BA6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_get_Task_mB36BC37F05CC1BD3EDB9EC66B9BBEA7DE33F3D03_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t150EB7231CA854AE162139EF92711A3C957F9591_TisU3CProcessAuthenticationU3Ed__48_t111D22EA69719A6F3E97F02B3AD759B20CE299EB_mEBB621A17A5BB2447C0966F8DF9D3C787A3A13CD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5_TisU3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786_m40DE76AFDF3B1422DDE3F73C88263FAEE9B2AD66_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CInnerWriteU3Ed__67_tC5B5BCC77DDC7AEC5DC77B1C9D086B550402B229_m648D1A8B37E49584E67D0AEBDE27819EBA5573F8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786_m89765A85617A3D1007CBFD188056340092F4252D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_Start_TisU3CInnerWriteU3Ed__67_tC5B5BCC77DDC7AEC5DC77B1C9D086B550402B229_m82D3611019196D882B60AC9DF641B2DFA5D59D35_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_Start_TisU3CProcessAuthenticationU3Ed__48_t111D22EA69719A6F3E97F02B3AD759B20CE299EB_mF1F7C95F19A89B5CCD58DB73DE8FFADD64D527A7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_Start_TisU3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786_m73AF670DABBD2788FF72BC1EDABC58043CEC6796_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* BufferOffsetSize__ctor_mB62BB1F461998563FB6793F509FF26FB79B81955_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CertificateData_FindAltNameMatch_mE725F81D068254CD717F42AC769E934327BA6E13_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CertificateData__ctor_m623A235F902E7262CB9DA2CEB1BF5D3E64A6D23F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ChainValidationHelper_DefaultSelectionCallback_m9662623B23235E63F7081F6632A3305D3C6C0220_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ChainValidationHelper_ValidateCertificate_m859E258B2CF6F570984C618241A26AAFE2B7104D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConcurrentDictionary_2_TryAdd_m45B276C2610DC66F8D95413C7CE27896DE0D88D5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConcurrentDictionary_2_TryGetValue_m98D7AD54A8EBAAF26DB4FDC717FAFF36EE314853_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConcurrentDictionary_2__ctor_m9892FA3A284C42770614BE9E65205A8B33824A6C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConcurrentDictionary_2__ctor_m9B2EB6BD32E298BAD1B3113C83414524B6185AF9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConditionalWeakTable_2_GetValue_mDB5BC526FD14937A9C0A92365206F70F103332EF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConditionalWeakTable_2__ctor_m830E16E9DD2EA6A40AFECEC890FDE7D6C52DA3D0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaitable_1_GetAwaiter_m4FE08BCFB9AA694193BDCD5B5C12F5271A1E88F5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaitable_1_GetAwaiter_m647913E4467CF739E5F4CA80464A5FC1AC167034_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaitable_1_GetAwaiter_m7A77B1981FEC19CC7E1570EDC3F16AC5C14B4439_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaiter_GetResult_mE648AD496FFAD4F2E5CFFA8DA38B365FDD634EFD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaiter_GetResult_mECEB375417C7F900CC667E5E740988F09B2EC9A0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaiter_GetResult_mF1FF6CBD66A3F581D413793BA8C2AF58B707D9CC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaiter_get_IsCompleted_m478C1290C417B9FB5066F890D1FB7D7FC04DD3E4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaiter_get_IsCompleted_m943014E2A3A7AEEF6B38F9DA31887B07DC417131_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaiter_get_IsCompleted_mD70263ED42C8E379EE20DBC2F218C3E629B4B4D3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Debug_CheckAndThrow_m0DC4C61C1A5FA2DF49E11420953CD3032843D59F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Debug_CheckAndThrow_m47BE0492786EEE30351AF6662609556CABAB0A80_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m4F27944027EAC99C539980EA991C9468EDCB402C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m869055AE34AF218780AD2CA780B2712C00351A33_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_ContainsKey_m8C2BEADBB409B9054FD24D286B04A18C7923DD88_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m3047585A441D4101655E37CF8BD907598E2B19AF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m66783B424BFC6B42816BEE30A905C61471713077_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_mA86D965CB5F74CE8675B7995C61945BEB6E594CB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m0C61DB9EDAAE02B489F93D02207BABF3315874DF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m201D4C32BA21CBF329B875E58C2515ABC9E29894_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m768E076F1E804CE4959F4E71D3E6A9ADE2F55052_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mEA4DC2EB466B90E06833BFC64C52AC4A15AD81F1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_ToDictionary_TisKeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A_TisString_t_TisString_t_m04E92A94C241FE2E449A88C27845214EAB8E5813_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mE3117C916B22646663B0F965D7370ADEBE42898C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m96CF02EEDE6A41EEAD98756D29E96808A1FE5875_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mA29E00FEF2148BD9A58CDD8F0EB5300B3AAF0ED8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2__ctor_mC76BE8DEB14377BA47C72BDFC7D0BBD37330F36B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Key_m654BCCAE2F20CB11D8E8C2D2C886A0C8A13EB1C4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Value_m7345512A32CB4DCAA0643050B18DC8DCD71B927A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m1794A41080E7D990FC91C41044F40666784FAF5F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m2E50122C2C447172556F536670F67BD8E8DC5402_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m7A5DCD9E0FAEC1363189B45012C255D307C153FB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mBCDF2D09AD0C1E065B1745D89FE3A7D98CD33E1F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mF30FEE3E944E17EC5FB08148FF63FE253821092D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Marshal_PtrToStructure_Tisunitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED_m02DB8D53F26DC4B79E1F284A53103DEE72B961A0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MobileAuthenticatedStream_AuthenticateAsClient_mEB1237B52A4AB1FF3D7D3E52F61CE78A744973FC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MobileAuthenticatedStream_CheckThrow_m9E35E722A793A807809AD00C9756997AB7561396_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MobileAuthenticatedStream_GetInternalError_m59D75502C4CAC329B87974927FF39AF718D15BDC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MobileAuthenticatedStream_GetInvalidNestedCallException_mC7EBE64F717F86F3D399AA54CC8C60F18876725D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MobileAuthenticatedStream_InternalRead_m5989243EA8E865C58630A151F50FD9286501238A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MobileAuthenticatedStream_InternalWrite_m0B6A441B8194AAE474EECE582DA3627AB26CFB54_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MobileAuthenticatedStream_InternalWrite_mDCC759D5D81736625897B956239DBEEE8F7AE743_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MobileAuthenticatedStream_ProcessHandshake_m30F67A233EAB7CE44A6B6E8E7F4E958DD888F63F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MobileAuthenticatedStream_ProcessRead_mB8FC6C872B55E0631A80824636220F3B73270441_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MobileAuthenticatedStream_ProcessWrite_mC26A594E550853A399B5AD111CE704D06C500992_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MobileAuthenticatedStream_Seek_mC6C077D712D53180D6D3676CCAB67810A57041DE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MobileAuthenticatedStream_U3CInnerWriteU3Eb__67_0_mEC1BC0A19130E44F6E542F229CE3FFAC0CD78697_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MobileAuthenticatedStream_set_Position_mDA69F8B3575A0D6E3B11621BCB334371E80B9D56_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MobileTlsContext_SelectClientCertificate_mF12113474A7EF6BDC8F7119D418722173A4EBDC1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MonoSslClientAuthenticationOptions_get_ClientCertificateRequired_m9AE71A7C9696A450375687F64B4B8E69DEF0BD3F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MonoSslClientAuthenticationOptions_get_ServerCertificate_m7CD9CC5BF55B0C7749CDF0C813C9ACA4852B2985_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MonoTlsProviderFactory_CreateDefaultProviderImpl_m674088AF2FC01E08CEE18728A7BBACDD9A7C2182_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MonoTlsProviderFactory_InitializeInternal_mB0843306BA58C8CBDE17485CBFCE45BAD8CFA356_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MonoTlsProviderFactory_LookupProvider_m842219B5A2493A9AA3B4D1911A1D77EB2F260DD0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeMethods_DuplicateHandle_m5C21EA8CF525CF8393A163DC71A4C77790F5B706_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeMethods_DuplicateHandle_m7D1F5D03EF5254E9B4B670BDECD2EDEF7AA0B00D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m1A8E9A123DB57832E6F59440493BFC4D743DC892_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m68B7A0015046666E6BCD97D25DFA5B39694E175A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m6AFDA522FA5E17FDF9021A5880732A90EA2396F1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_Value_m733C963A26A2E37CCC7BD8D1826D4AD757701B6F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* OidLookup_ToFriendlyName_m34B7595764843A001047D30E77B0DB1987653103_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* OidLookup_ToOid_mE362E659C0A532B8D2E1638D8B50FBACFEBFCF2D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Span_1_Slice_mDC9AA64B960B9BB8357655827A8202DF83443068_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Span_1_op_Implicit_mD65020B112814C67FED9F2C3DE2B0B78D4E2A486_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Pop_mA225FBFDEBE168ED6B5F61FE26BE0928C811DAEC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Push_m832BCA0F46EB98AC526A5C83B72052B42AC95700_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1__ctor_m97F2A92FF6F7604D68938DC3EF357C66110095FA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_get_Count_mB64185B733D3D0A76BAD2E085B9F815786E4CC5D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Task_1_ConfigureAwait_m3E964062746BC63E91EA877F7B826868CA306DDE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Task_1_ConfigureAwait_m45AC1205A3F6E0F0C7EC6D5B16D13C02A01F2ECF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Task_1_ConfigureAwait_m8203F4D13209C12845066A383E5B850D0486B209_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Task_1_get_Result_mE41E789D49EA08D9BCEC87078B55D77B3EE3AD37_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Task_Run_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m591D59B3F4940619F93578654D14FDB3C9231229_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Tuple_2__ctor_m1C02D02DDF579D8A09311C682B1A7D14ABDEA604_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Tuple_2_get_Item1_m48AB3C0DC00F084E3C2CC7D285B5E77F3F45E6A5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Tuple_2_get_Item2_m3605D72E0AF663ED68EC8C8481FF5545D014EFD1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Type_GetType_m9CB153D66D389B8AE265D05E666E2B7E4EB0EF74_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CCreateStreamU3Ed__18_MoveNext_m45EE08C637B078770B0EA94A046B90250FAE66F8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CInnerReadU3Ed__25_MoveNext_mC4567E370C71DA9DA0F704C570308D106D4DDB2C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CInnerReadU3Ed__66_MoveNext_m5DFDC2139602BBC2F86D14BDA64B4A49ECDD90EB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CProcessAuthenticationU3Ed__48_MoveNext_m982934120035A46C0FB96F7DF55F7FA0822B4940_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CProcessOperationU3Ed__24_MoveNext_mA73F0FD80CE65D2E3E12390E49E3F34CFF47E98B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CReadReverseRdnsU3Ed__21_System_Collections_IEnumerator_Reset_m14F8B978364B8DDAC56367B68EEA3D7C06732564_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CStartOperationU3Ed__23_MoveNext_mDE591A3806D9523FC8D2E26ED510CEE7963F8FF2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CStartOperationU3Ed__57_MoveNext_m2CD8CDF02548ACC068670F3F670590EEC77F7853_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CAuthenticateU3Eb__1_0_mE2F40D1D8564A82A6EFFA6D78EDF09514115E79A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__10_0_m6CCA3946EAC08544EB57D764DBF2D23E12DE30A1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__10_1_m7F86444F2B083758A76759BD54D31A3538101A4E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass0_0_U3CPublicToMonoU3Eb__0_m1C478ECA2AAAF7CF24DE679072777B23441DEFC8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass11_0_U3CGetValidationCallbackU3Eb__0_m02FE972124C9B2EE3AE5CF1F1D4952D8DEF21D22_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass66_0_U3CInnerReadU3Eb__0_m3F3293E1DD48D7532F3B8D84D7C8402698D60F36_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass6_0_U3CMonoToInternalU3Eb__0_mE37EA1777B5D0BCD42B36A717CF6FC0E18CD3AE9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnityTlsContext_CertificateCallback_m5A4C050D5D49709202B72A50F33533E7C5C6B113_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnityTlsContext_CertificateCallback_mF5E626BA2545CFFA64428622678E409702C2045A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnityTlsContext_ExtractNativeKeyAndChainFromManagedCertificate_mAAD3045A2D64C314FD288C3468D41767DD47205A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnityTlsContext_ProcessHandshake_m098B5D0081E137B05DB4FB7B7F74805EF749C09D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnityTlsContext_ReadCallback_m15F3A217E44D480CAED06EB5A88503FB6259D7EC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnityTlsContext_Read_m461E85BF4B42B72297B42A6E7EE5A756A25259FD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnityTlsContext_Renegotiate_m5E5182B59BAA90319DC59CD711DDE930C39BEB75_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnityTlsContext_VerifyCallback_m75D7C072718405EBBF8A2A9C794C4DDFB2595BD0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnityTlsContext_WriteCallback_m53DD70115C97432A676F3E437E8FB42F9FC068F5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnityTlsContext_Write_m11529FF555E48CA82577431E6856FEE3E4E0FA28_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnityTlsProvider_ValidateCertificate_mE2F233ED2EDE0D248D79D8133BE8F1C9133856A6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* UnityTlsProvider_x509verify_callback_m47823254E133F7304ABFAE5A1F0D218402BC5B45_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_2__ctor_m3A39BEA90C84F8D68C34883978E96D2C2630B423_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* WeakReference_1_TryGetTarget_m97CF2B29DA093EDB154354ED332BB0D158BD52C0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* WeakReference_1__ctor_mACC91922E24718B3ABD2AAD11A8A4B69FB77D4A6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* X509PalImpl_GetCertContentType_m41DC755893135DB1ACF78832BDAB201C46AC6F99_RuntimeMethod_var;
struct AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8;;
struct AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8_marshaled_com;
struct AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8_marshaled_com;;
struct AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8_marshaled_pinvoke;
struct AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8_marshaled_pinvoke;;
struct Delegate_t_marshaled_com;
struct Delegate_t_marshaled_pinvoke;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
struct unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568;;
struct unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568_marshaled_pinvoke;
struct unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568_marshaled_pinvoke;;
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
struct CipherSuiteCodeU5BU5D_t61EC0E6F53394985FFC36DEB587C70F4EE26D435;
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
struct X509ChainStatusU5BU5D_tA4CB502E13E6D62B9C824B15F3193FE7EC889299;
struct unitytls_ciphersuiteU5BU5D_tCD24D3B2044FE95971675C32E93857E6DAC52120;
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
// <Module>
struct U3CModuleU3E_t226F1C21B52AFD0B2C0028F62D5218D07C231C4A
{
};
// System.Collections.Concurrent.ConcurrentDictionary`2<System.String,System.String>
struct ConcurrentDictionary_2_tE0296B741D9F887264D805ED46C4249B8F5EFC9C : public RuntimeObject
{
// System.Collections.Concurrent.ConcurrentDictionary`2/Tables<TKey,TValue> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Concurrent.ConcurrentDictionary`2::_tables
Tables_t411BA506B39C4694DD5A87F1D6776FF28F32E77C* ____tables_0;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Concurrent.ConcurrentDictionary`2::_comparer
RuntimeObject* ____comparer_1;
// System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2::_growLockArray
bool ____growLockArray_2;
// System.Int32 System.Collections.Concurrent.ConcurrentDictionary`2::_budget
int32_t ____budget_3;
// System.Collections.Generic.KeyValuePair`2<TKey,TValue>[] System.Collections.Concurrent.ConcurrentDictionary`2::_serializationArray
KeyValuePair_2U5BU5D_tEA2EBC56D51C33037B041DD38F518261CEE2C84C* ____serializationArray_4;
// System.Int32 System.Collections.Concurrent.ConcurrentDictionary`2::_serializationConcurrencyLevel
int32_t ____serializationConcurrencyLevel_5;
// System.Int32 System.Collections.Concurrent.ConcurrentDictionary`2::_serializationCapacity
int32_t ____serializationCapacity_6;
};
struct ConcurrentDictionary_2_tE0296B741D9F887264D805ED46C4249B8F5EFC9C_StaticFields
{
// System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2::s_isValueWriteAtomic
bool ___s_isValueWriteAtomic_7;
};
// System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Net.HttpWebRequest,Mono.Http.NtlmSession>
struct ConditionalWeakTable_2_t8C60960CD7830601390A47E0673223EC1560C638 : public RuntimeObject
{
// System.Runtime.CompilerServices.Ephemeron[] System.Runtime.CompilerServices.ConditionalWeakTable`2::data
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* ___data_4;
// System.Object System.Runtime.CompilerServices.ConditionalWeakTable`2::_lock
RuntimeObject* ____lock_5;
// System.Int32 System.Runtime.CompilerServices.ConditionalWeakTable`2::size
int32_t ___size_6;
};
// System.Collections.Generic.Dictionary`2<System.Guid,Mono.Net.Security.MobileTlsProvider>
struct Dictionary_2_tAF53376D9E207F701196CFA12420D116F00604AC : public RuntimeObject
{
// System.Int32[] System.Collections.Generic.Dictionary`2::_buckets
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_0;
// System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::_entries
EntryU5BU5D_t0EB0628921B2593669E27E058019DFFC47A3D0A6* ____entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::_count
int32_t ____count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::_freeList
int32_t ____freeList_3;
// System.Int32 System.Collections.Generic.Dictionary`2::_freeCount
int32_t ____freeCount_4;
// System.Int32 System.Collections.Generic.Dictionary`2::_version
int32_t ____version_5;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::_comparer
RuntimeObject* ____comparer_6;
// System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_keys
KeyCollection_tAD322F2CF444DE3805082CA13464622837E06D7F* ____keys_7;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_values
ValueCollection_t4905E0B953934CF20B27904D794BF135430ADF63* ____values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject* ____syncRoot_9;
};
// System.Collections.Generic.Dictionary`2<System.String,System.Tuple`2<System.Guid,System.String>>
struct Dictionary_2_t6D341191E2021065DBEDA3500D49AB6A7791A7D7 : public RuntimeObject
{
// System.Int32[] System.Collections.Generic.Dictionary`2::_buckets
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_0;
// System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::_entries
EntryU5BU5D_tEEED27980D01DFDFBAB0EF8900602F197431182B* ____entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::_count
int32_t ____count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::_freeList
int32_t ____freeList_3;
// System.Int32 System.Collections.Generic.Dictionary`2::_freeCount
int32_t ____freeCount_4;
// System.Int32 System.Collections.Generic.Dictionary`2::_version
int32_t ____version_5;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::_comparer
RuntimeObject* ____comparer_6;
// System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_keys
KeyCollection_t9420BDECF8BA68DB4504D118BBB93F856E4D657A* ____keys_7;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_values
ValueCollection_tAB178C3A4988CC8138AF8611EAF9D49392BE1D1B* ____values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject* ____syncRoot_9;
};
// System.Collections.Generic.Dictionary`2<System.String,System.String>
struct Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83 : public RuntimeObject
{
// System.Int32[] System.Collections.Generic.Dictionary`2::_buckets
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_0;
// System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::_entries
EntryU5BU5D_t1AF33AD0B7330843448956EC4277517081658AE7* ____entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::_count
int32_t ____count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::_freeList
int32_t ____freeList_3;
// System.Int32 System.Collections.Generic.Dictionary`2::_freeCount
int32_t ____freeCount_4;
// System.Int32 System.Collections.Generic.Dictionary`2::_version
int32_t ____version_5;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::_comparer
RuntimeObject* ____comparer_6;
// System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_keys
KeyCollection_t2EDD317F5771E575ACB63527B5AFB71291040342* ____keys_7;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_values
ValueCollection_t238D0D2427C6B841A01F522A41540165A2C4AE76* ____values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject* ____syncRoot_9;
};
// 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.List`1<System.Object>
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>
struct List_1_t14F08D1F5A2E0F276F976F81CC13B7CB7EDABE33 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
X509ChainStatusU5BU5D_tA4CB502E13E6D62B9C824B15F3193FE7EC889299* ____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_t14F08D1F5A2E0F276F976F81CC13B7CB7EDABE33_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
X509ChainStatusU5BU5D_tA4CB502E13E6D62B9C824B15F3193FE7EC889299* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<System.Security.Cryptography.X509Certificates.X509Extension>
struct List_1_t03551104C97124C9D83186EEB3F066B8BFFD87E3 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
X509ExtensionU5BU5D_t6CB6866A33687382EC1D848C41F2687E57166403* ____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_t03551104C97124C9D83186EEB3F066B8BFFD87E3_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
X509ExtensionU5BU5D_t6CB6866A33687382EC1D848C41F2687E57166403* ___s_emptyArray_5;
};
// System.Collections.Generic.Stack`1<System.Security.Cryptography.DerSequenceReader>
struct Stack_1_t11FC055BC8A112A4D3474F6FA0DCAC26D397C08C : public RuntimeObject
{
// T[] System.Collections.Generic.Stack`1::_array
DerSequenceReaderU5BU5D_t12C08A36002C158FD7DEF347C8690C958BC4ECEA* ____array_0;
// System.Int32 System.Collections.Generic.Stack`1::_size
int32_t ____size_1;
// System.Int32 System.Collections.Generic.Stack`1::_version
int32_t ____version_2;
// System.Object System.Collections.Generic.Stack`1::_syncRoot
RuntimeObject* ____syncRoot_3;
};
// System.Collections.Generic.Stack`1<System.Object>
struct Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5 : public RuntimeObject
{
// T[] System.Collections.Generic.Stack`1::_array
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____array_0;
// System.Int32 System.Collections.Generic.Stack`1::_size
int32_t ____size_1;
// System.Int32 System.Collections.Generic.Stack`1::_version
int32_t ____version_2;
// System.Object System.Collections.Generic.Stack`1::_syncRoot
RuntimeObject* ____syncRoot_3;
};
// Mono.Security.ASN1
struct ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F : public RuntimeObject
{
// System.Byte Mono.Security.ASN1::m_nTag
uint8_t ___m_nTag_0;
// System.Byte[] Mono.Security.ASN1::m_aValue
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___m_aValue_1;
// System.Collections.ArrayList Mono.Security.ASN1::elist
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___elist_2;
};
struct Il2CppArrayBounds;
// System.Security.Cryptography.AsnEncodedData
struct AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8 : public RuntimeObject
{
// System.Security.Cryptography.Oid System.Security.Cryptography.AsnEncodedData::_oid
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* ____oid_0;
// System.Byte[] System.Security.Cryptography.AsnEncodedData::_raw
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ____raw_1;
};
// System.Security.Cryptography.AsymmetricAlgorithm
struct AsymmetricAlgorithm_t5E7E9D26CE0EDCAABD84F616A44E476473BA2AF8 : public RuntimeObject
{
// System.Int32 System.Security.Cryptography.AsymmetricAlgorithm::KeySizeValue
int32_t ___KeySizeValue_0;
// System.Security.Cryptography.KeySizes[] System.Security.Cryptography.AsymmetricAlgorithm::LegalKeySizesValue
KeySizesU5BU5D_tDD87467B9CB683380B5DC92193576A3136DFAE03* ___LegalKeySizesValue_1;
};
// Mono.Net.Security.AsyncProtocolRequest
struct AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86 : public RuntimeObject
{
// Mono.Net.Security.MobileAuthenticatedStream Mono.Net.Security.AsyncProtocolRequest::<Parent>k__BackingField
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* ___U3CParentU3Ek__BackingField_0;
// System.Boolean Mono.Net.Security.AsyncProtocolRequest::<RunSynchronously>k__BackingField
bool ___U3CRunSynchronouslyU3Ek__BackingField_1;
// System.Int32 Mono.Net.Security.AsyncProtocolRequest::<UserResult>k__BackingField
int32_t ___U3CUserResultU3Ek__BackingField_2;
// System.Int32 Mono.Net.Security.AsyncProtocolRequest::Started
int32_t ___Started_3;
// System.Int32 Mono.Net.Security.AsyncProtocolRequest::RequestedSize
int32_t ___RequestedSize_4;
// System.Int32 Mono.Net.Security.AsyncProtocolRequest::WriteRequested
int32_t ___WriteRequested_5;
// System.Object Mono.Net.Security.AsyncProtocolRequest::locker
RuntimeObject* ___locker_6;
};
// Mono.Net.Security.AsyncProtocolResult
struct AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05 : public RuntimeObject
{
// System.Int32 Mono.Net.Security.AsyncProtocolResult::<UserResult>k__BackingField
int32_t ___U3CUserResultU3Ek__BackingField_0;
// System.Runtime.ExceptionServices.ExceptionDispatchInfo Mono.Net.Security.AsyncProtocolResult::<Error>k__BackingField
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* ___U3CErrorU3Ek__BackingField_1;
};
// System.Attribute
struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA : public RuntimeObject
{
};
// Mono.Security.Authenticode.AuthenticodeBase
struct AuthenticodeBase_t14D3C295865C85D138AF4DDCD73F6CE08AE02EAD : public RuntimeObject
{
// System.Byte[] Mono.Security.Authenticode.AuthenticodeBase::fileblock
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___fileblock_0;
// System.IO.Stream Mono.Security.Authenticode.AuthenticodeBase::fs
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___fs_1;
// System.Int32 Mono.Security.Authenticode.AuthenticodeBase::blockNo
int32_t ___blockNo_2;
// System.Int32 Mono.Security.Authenticode.AuthenticodeBase::blockLength
int32_t ___blockLength_3;
// System.Int32 Mono.Security.Authenticode.AuthenticodeBase::peOffset
int32_t ___peOffset_4;
// System.Int32 Mono.Security.Authenticode.AuthenticodeBase::dirSecurityOffset
int32_t ___dirSecurityOffset_5;
// System.Int32 Mono.Security.Authenticode.AuthenticodeBase::dirSecuritySize
int32_t ___dirSecuritySize_6;
// System.Int32 Mono.Security.Authenticode.AuthenticodeBase::coffSymbolTableOffset
int32_t ___coffSymbolTableOffset_7;
// System.Boolean Mono.Security.Authenticode.AuthenticodeBase::pe64
bool ___pe64_8;
};
// 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;
};
// Mono.Net.Security.BufferOffsetSize
struct BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE : public RuntimeObject
{
// System.Byte[] Mono.Net.Security.BufferOffsetSize::Buffer
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___Buffer_0;
// System.Int32 Mono.Net.Security.BufferOffsetSize::Offset
int32_t ___Offset_1;
// System.Int32 Mono.Net.Security.BufferOffsetSize::Size
int32_t ___Size_2;
// System.Int32 Mono.Net.Security.BufferOffsetSize::TotalBytes
int32_t ___TotalBytes_3;
// System.Boolean Mono.Net.Security.BufferOffsetSize::Complete
bool ___Complete_4;
};
// Mono.Net.Security.Private.CallbackHelpers
struct CallbackHelpers_t3BD6077890C4465FB6E93F1061E43F7B9120F6A9 : public RuntimeObject
{
};
// Mono.Unity.CertHelper
struct CertHelper_t2DBE15BC84157D30D1FE63CF5D8FD6FDFB949C24 : public RuntimeObject
{
};
// Mono.Net.Security.ChainValidationHelper
struct ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755 : public RuntimeObject
{
// System.WeakReference`1<System.Net.Security.SslStream> Mono.Net.Security.ChainValidationHelper::owner
WeakReference_1_t0E5A403EFE44DFDF760845211C10561ED81417A3* ___owner_0;
// Mono.Security.Interface.MonoTlsSettings Mono.Net.Security.ChainValidationHelper::settings
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* ___settings_1;
// Mono.Net.Security.MobileTlsProvider Mono.Net.Security.ChainValidationHelper::provider
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* ___provider_2;
// System.Net.ServerCertValidationCallback Mono.Net.Security.ChainValidationHelper::certValidationCallback
ServerCertValidationCallback_tC7A568060163FC6810AF9817F26F986C78CFC27F* ___certValidationCallback_3;
// System.Net.Security.LocalCertSelectionCallback Mono.Net.Security.ChainValidationHelper::certSelectionCallback
LocalCertSelectionCallback_t3AB79A8AA642074A3EF886118963EEA3CCABABE2* ___certSelectionCallback_4;
// Mono.Net.Security.MonoTlsStream Mono.Net.Security.ChainValidationHelper::tlsStream
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* ___tlsStream_5;
// System.Net.HttpWebRequest Mono.Net.Security.ChainValidationHelper::request
HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* ___request_6;
};
// System.Collections.CollectionBase
struct CollectionBase_t44F966CC555C87F2815D668FB4586526E1C2383F : public RuntimeObject
{
// System.Collections.ArrayList System.Collections.CollectionBase::_list
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ____list_0;
};
// System.Runtime.ConstrainedExecution.CriticalFinalizerObject
struct CriticalFinalizerObject_t1DCAB623CAEA6529A96F5F3EDE3C7048A6E313C9 : public RuntimeObject
{
};
// Mono.Unity.Debug
struct Debug_t5CE5E14A00A916F8842518C6A63AEDFCC3B7086B : public RuntimeObject
{
};
// System.Net.DefaultCertificatePolicy
struct DefaultCertificatePolicy_t050382C833F241986F8386E6FC9E00FEC999A53A : public RuntimeObject
{
};
// System.Security.Cryptography.DerSequenceReader
struct DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A : public RuntimeObject
{
// System.Byte[] System.Security.Cryptography.DerSequenceReader::_data
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ____data_3;
// System.Int32 System.Security.Cryptography.DerSequenceReader::_end
int32_t ____end_4;
// System.Int32 System.Security.Cryptography.DerSequenceReader::_position
int32_t ____position_5;
// System.Int32 System.Security.Cryptography.DerSequenceReader::<ContentLength>k__BackingField
int32_t ___U3CContentLengthU3Ek__BackingField_6;
};
struct DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A_StaticFields
{
// System.Globalization.DateTimeFormatInfo System.Security.Cryptography.DerSequenceReader::s_validityDateTimeFormatInfo
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___s_validityDateTimeFormatInfo_0;
// System.Text.Encoding System.Security.Cryptography.DerSequenceReader::s_utf8EncodingWithExceptionFallback
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___s_utf8EncodingWithExceptionFallback_1;
// System.Text.Encoding System.Security.Cryptography.DerSequenceReader::s_latin1Encoding
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___s_latin1Encoding_2;
};
// 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.Runtime.ExceptionServices.ExceptionDispatchInfo
struct ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757 : public RuntimeObject
{
// System.Exception System.Runtime.ExceptionServices.ExceptionDispatchInfo::m_Exception
Exception_t* ___m_Exception_0;
// System.Object System.Runtime.ExceptionServices.ExceptionDispatchInfo::m_stackTrace
RuntimeObject* ___m_stackTrace_1;
};
// System.IPv4AddressHelper
struct IPv4AddressHelper_tAF58A0DF50A70D2AD33BF08AD81EB860CDAB2FB4 : public RuntimeObject
{
};
// System.MarshalByRefObject
struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE : public RuntimeObject
{
// System.Object System.MarshalByRefObject::_identity
RuntimeObject* ____identity_0;
};
// Native definition for P/Invoke marshalling of System.MarshalByRefObject
struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_pinvoke
{
Il2CppIUnknown* ____identity_0;
};
// Native definition for COM marshalling of System.MarshalByRefObject
struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_com
{
Il2CppIUnknown* ____identity_0;
};
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
};
// Mono.Net.Security.MonoSslAuthenticationOptions
struct MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611 : public RuntimeObject
{
// System.Net.Security.ServerCertSelectionCallback Mono.Net.Security.MonoSslAuthenticationOptions::<ServerCertSelectionDelegate>k__BackingField
ServerCertSelectionCallback_t653386CAEAE0236FCF61A92963AB1646BB23C654* ___U3CServerCertSelectionDelegateU3Ek__BackingField_0;
};
// Mono.Security.Interface.MonoTlsProvider
struct MonoTlsProvider_t39C898CDC9458EEAD7C019B4B23701EAF9E24F7E : public RuntimeObject
{
};
// Microsoft.Win32.NativeMethods
struct NativeMethods_t1D523E8F95F7E92CDE3F6410B6CE18221EA498D8 : 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;
};
// Mono.Net.Security.NoReflectionHelper
struct NoReflectionHelper_t94303F1568498C31D0F7AD40181783F67DC4997D : public RuntimeObject
{
};
// Mono.Http.NtlmClient
struct NtlmClient_t44BA8DF60B38A19EB7987B3BC2FB8D0B8A1EB0E6 : public RuntimeObject
{
};
struct NtlmClient_t44BA8DF60B38A19EB7987B3BC2FB8D0B8A1EB0E6_StaticFields
{
// System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Net.HttpWebRequest,Mono.Http.NtlmSession> Mono.Http.NtlmClient::cache
ConditionalWeakTable_2_t8C60960CD7830601390A47E0673223EC1560C638* ___cache_0;
};
// Mono.Http.NtlmSession
struct NtlmSession_tFCA9C8C98B2241BFE552477E3F60F419C51F30AB : public RuntimeObject
{
// Mono.Security.Protocol.Ntlm.MessageBase Mono.Http.NtlmSession::message
MessageBase_t173306F2152A17C53A4CD23954A751EE471BD708* ___message_0;
};
// Internal.Cryptography.OidLookup
struct OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458 : public RuntimeObject
{
};
struct OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_StaticFields
{
// System.Collections.Concurrent.ConcurrentDictionary`2<System.String,System.String> Internal.Cryptography.OidLookup::s_lateBoundOidToFriendlyName
ConcurrentDictionary_2_tE0296B741D9F887264D805ED46C4249B8F5EFC9C* ___s_lateBoundOidToFriendlyName_0;
// System.Collections.Concurrent.ConcurrentDictionary`2<System.String,System.String> Internal.Cryptography.OidLookup::s_lateBoundFriendlyNameToOid
ConcurrentDictionary_2_tE0296B741D9F887264D805ED46C4249B8F5EFC9C* ___s_lateBoundFriendlyNameToOid_1;
// System.Collections.Generic.Dictionary`2<System.String,System.String> Internal.Cryptography.OidLookup::s_friendlyNameToOid
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* ___s_friendlyNameToOid_2;
// System.Collections.Generic.Dictionary`2<System.String,System.String> Internal.Cryptography.OidLookup::s_oidToFriendlyName
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* ___s_oidToFriendlyName_3;
// System.Collections.Generic.Dictionary`2<System.String,System.String> Internal.Cryptography.OidLookup::s_compatOids
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* ___s_compatOids_4;
};
// System.Net.ServerCertValidationCallback
struct ServerCertValidationCallback_tC7A568060163FC6810AF9817F26F986C78CFC27F : public RuntimeObject
{
// System.Net.Security.RemoteCertificateValidationCallback System.Net.ServerCertValidationCallback::m_ValidationCallback
RemoteCertificateValidationCallback_t2F4C5801F96B2C2BF934511796C5BFEAEBF01955* ___m_ValidationCallback_0;
// System.Threading.ExecutionContext System.Net.ServerCertValidationCallback::m_Context
ExecutionContext_t9D6EDFD92F0B2D391751963E2D77A8B03CB81710* ___m_Context_1;
};
// 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.StringComparer
struct StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06 : public RuntimeObject
{
};
struct StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06_StaticFields
{
// System.CultureAwareComparer System.StringComparer::s_invariantCulture
CultureAwareComparer_t5822A6535A6EB4C448D1B7736067D1188BAEE8CD* ___s_invariantCulture_0;
// System.CultureAwareComparer System.StringComparer::s_invariantCultureIgnoreCase
CultureAwareComparer_t5822A6535A6EB4C448D1B7736067D1188BAEE8CD* ___s_invariantCultureIgnoreCase_1;
// System.OrdinalCaseSensitiveComparer System.StringComparer::s_ordinal
OrdinalCaseSensitiveComparer_t581CA7CB51DCF00B6012A697A4B4B3067144521A* ___s_ordinal_2;
// System.OrdinalIgnoreCaseComparer System.StringComparer::s_ordinalIgnoreCase
OrdinalIgnoreCaseComparer_t8BAE11990A4C855D3BCBBFB42F4EF8D45088FBB0* ___s_ordinalIgnoreCase_3;
};
// Mono.SystemCertificateProvider
struct SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD : public RuntimeObject
{
};
struct SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD_StaticFields
{
// System.Int32 Mono.SystemCertificateProvider::initialized
int32_t ___initialized_0;
// Mono.X509PalImpl Mono.SystemCertificateProvider::x509pal
X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86* ___x509pal_1;
// System.Object Mono.SystemCertificateProvider::syncRoot
RuntimeObject* ___syncRoot_2;
};
// Mono.SystemDependencyProvider
struct SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261 : public RuntimeObject
{
// Mono.SystemCertificateProvider Mono.SystemDependencyProvider::<CertificateProvider>k__BackingField
SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD* ___U3CCertificateProviderU3Ek__BackingField_2;
};
struct SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261_StaticFields
{
// Mono.SystemDependencyProvider Mono.SystemDependencyProvider::instance
SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261* ___instance_0;
// System.Object Mono.SystemDependencyProvider::syncRoot
RuntimeObject* ___syncRoot_1;
};
// Mono.Unity.UnityTls
struct UnityTls_t71011C0BD4A30AEBAA7ABCA771FA604C31970F85 : public RuntimeObject
{
};
struct UnityTls_t71011C0BD4A30AEBAA7ABCA771FA604C31970F85_StaticFields
{
// Mono.Unity.UnityTls/unitytls_interface_struct Mono.Unity.UnityTls::marshalledInterface
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* ___marshalledInterface_0;
};
// Mono.Unity.UnityTlsConversions
struct UnityTlsConversions_t3991B29084849AD5549D32D78DEB714EF888A518 : public RuntimeObject
{
};
// 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.Security.Cryptography.X509Certificates.X509CertificateImpl
struct X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF : public RuntimeObject
{
};
// System.Security.Cryptography.X509Certificates.X509CertificateImplCollection
struct X509CertificateImplCollection_t9F73F6038DB8173EAFCD920EF434BF5B68FFB098 : public RuntimeObject
{
// System.Collections.Generic.List`1<System.Security.Cryptography.X509Certificates.X509CertificateImpl> System.Security.Cryptography.X509Certificates.X509CertificateImplCollection::list
List_1_tD4F904CB63AD4CA50117201EDE2856DC5320DADC* ___list_0;
};
// System.Security.Cryptography.X509Certificates.X509Chain
struct X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5 : public RuntimeObject
{
// System.Security.Cryptography.X509Certificates.X509ChainImpl System.Security.Cryptography.X509Certificates.X509Chain::impl
X509ChainImpl_tBA1BF154DB9DC321EE068BBC53C7CF43CAA2621F* ___impl_0;
};
// System.Security.Cryptography.X509Certificates.X509ChainElementCollection
struct X509ChainElementCollection_t543DE35924C12A624ADA5111F7F47C1F9F99E70D : public RuntimeObject
{
// System.Collections.ArrayList System.Security.Cryptography.X509Certificates.X509ChainElementCollection::_list
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ____list_0;
};
// System.Security.Cryptography.X509Certificates.X509ChainImpl
struct X509ChainImpl_tBA1BF154DB9DC321EE068BBC53C7CF43CAA2621F : public RuntimeObject
{
};
// Mono.X509Pal
struct X509Pal_tC50776CB34DCF71BCA719A57B913896A777343E7 : public RuntimeObject
{
};
// Mono.X509PalImpl
struct X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86 : public RuntimeObject
{
};
struct X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86_StaticFields
{
// System.Byte[] Mono.X509PalImpl::signedData
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___signedData_0;
};
// Mono.Net.Security.Private.CallbackHelpers/<>c__DisplayClass0_0
struct U3CU3Ec__DisplayClass0_0_t60EE7521AABF25B40FF0091B73416ECA2A8A8A92 : public RuntimeObject
{
// System.Net.Security.RemoteCertificateValidationCallback Mono.Net.Security.Private.CallbackHelpers/<>c__DisplayClass0_0::callback
RemoteCertificateValidationCallback_t2F4C5801F96B2C2BF934511796C5BFEAEBF01955* ___callback_0;
};
// Mono.Net.Security.Private.CallbackHelpers/<>c__DisplayClass6_0
struct U3CU3Ec__DisplayClass6_0_t48F0A5835CC00CD6BF0EE74C6CDFF12987FC3DB2 : public RuntimeObject
{
// Mono.Security.Interface.MonoLocalCertificateSelectionCallback Mono.Net.Security.Private.CallbackHelpers/<>c__DisplayClass6_0::callback
MonoLocalCertificateSelectionCallback_t34F7772BA5ECE38E6CBD4C311F579DD1D4724DE3* ___callback_0;
};
// Mono.Net.Security.ChainValidationHelper/<>c__DisplayClass11_0
struct U3CU3Ec__DisplayClass11_0_tAA6FF214AE681D87C566414EF7C30A3CEA0C9211 : public RuntimeObject
{
// Mono.Security.Interface.MonoTlsSettings Mono.Net.Security.ChainValidationHelper/<>c__DisplayClass11_0::settings
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* ___settings_0;
};
// Mono.Net.Security.MobileAuthenticatedStream/<>c__DisplayClass66_0
struct U3CU3Ec__DisplayClass66_0_t892C285932134E13248FD210209881BF6B5831DB : public RuntimeObject
{
// Mono.Net.Security.MobileAuthenticatedStream Mono.Net.Security.MobileAuthenticatedStream/<>c__DisplayClass66_0::<>4__this
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* ___U3CU3E4__this_0;
// System.Int32 Mono.Net.Security.MobileAuthenticatedStream/<>c__DisplayClass66_0::len
int32_t ___len_1;
};
// Mono.Http.NtlmClient/<>c
struct U3CU3Ec_t23EC3A439D27907A8B20604CC3FBC3DEA329D4BB : public RuntimeObject
{
};
struct U3CU3Ec_t23EC3A439D27907A8B20604CC3FBC3DEA329D4BB_StaticFields
{
// Mono.Http.NtlmClient/<>c Mono.Http.NtlmClient/<>c::<>9
U3CU3Ec_t23EC3A439D27907A8B20604CC3FBC3DEA329D4BB* ___U3CU3E9_0;
// System.Runtime.CompilerServices.ConditionalWeakTable`2/CreateValueCallback<System.Net.HttpWebRequest,Mono.Http.NtlmSession> Mono.Http.NtlmClient/<>c::<>9__1_0
CreateValueCallback_t32241614308DD3BEEEAC77EFA55E573B54A5D1D2* ___U3CU3E9__1_0_1;
};
// Internal.Cryptography.OidLookup/<>c
struct U3CU3Ec_t90F8CB10B454B45A81BE65AA841DD85FE08EA21A : public RuntimeObject
{
};
struct U3CU3Ec_t90F8CB10B454B45A81BE65AA841DD85FE08EA21A_StaticFields
{
// Internal.Cryptography.OidLookup/<>c Internal.Cryptography.OidLookup/<>c::<>9
U3CU3Ec_t90F8CB10B454B45A81BE65AA841DD85FE08EA21A* ___U3CU3E9_0;
};
// System.Security.Cryptography.X509Certificates.X509CertificateCollection/X509CertificateEnumerator
struct X509CertificateEnumerator_t6629E2BB0FB5D92B2EB502312B764686BAFDF0D9 : public RuntimeObject
{
// System.Collections.IEnumerator System.Security.Cryptography.X509Certificates.X509CertificateCollection/X509CertificateEnumerator::enumerator
RuntimeObject* ___enumerator_0;
};
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Nullable`1<System.Int32>>
struct ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5
{
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task
Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* ___m_task_0;
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_continueOnCapturedContext
bool ___m_continueOnCapturedContext_1;
};
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<Mono.Net.Security.AsyncProtocolResult>
struct ConfiguredTaskAwaiter_t150EB7231CA854AE162139EF92711A3C957F9591
{
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task
Task_1_t7B91A92D06E8BCB69911B6822DD99220DDB735EE* ___m_task_0;
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_continueOnCapturedContext
bool ___m_continueOnCapturedContext_1;
};
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>
struct ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80
{
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task
Task_1_t4C228DE57804012969575431CFF12D57C875552D* ___m_task_0;
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_continueOnCapturedContext
bool ___m_continueOnCapturedContext_1;
};
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>
struct ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2
{
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___m_task_0;
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_continueOnCapturedContext
bool ___m_continueOnCapturedContext_1;
};
// 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.Collections.Generic.List`1/Enumerator<System.Security.Cryptography.X509Certificates.X509Extension>
struct Enumerator_tEDDC2C241127BDEC411C60FAB649BDE614D0F9D9
{
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
List_1_t03551104C97124C9D83186EEB3F066B8BFFD87E3* ____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
X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* ____current_3;
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>
struct KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230
{
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject* ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject* ___value_1;
};
// System.Collections.Generic.KeyValuePair`2<System.String,System.String>
struct KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A
{
// TKey System.Collections.Generic.KeyValuePair`2::key
String_t* ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
String_t* ___value_1;
};
// System.Nullable`1<System.Boolean>
struct Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01
{
// System.Boolean System.Nullable`1::hasValue
bool ___hasValue_0;
// T System.Nullable`1::value
bool ___value_1;
};
// System.Nullable`1<System.Int32>
struct Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28
{
// System.Boolean System.Nullable`1::hasValue
bool ___hasValue_0;
// T System.Nullable`1::value
int32_t ___value_1;
};
// System.ValueTuple`2<System.Int32,System.Boolean>
struct ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942
{
// T1 System.ValueTuple`2::Item1
int32_t ___Item1_0;
// T2 System.ValueTuple`2::Item2
bool ___Item2_1;
};
// Mono.Net.Security.AsyncHandshakeRequest
struct AsyncHandshakeRequest_tC7CB006B95B7B6CFF6AABA2C04637A7CEEE8E9FD : public AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86
{
};
// 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;
};
// Mono.Net.Security.AsyncReadOrWriteRequest
struct AsyncReadOrWriteRequest_tEE5EFA76D488CBB46DBCA56E9914A0E5BF6D4680 : public AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86
{
// Mono.Net.Security.BufferOffsetSize Mono.Net.Security.AsyncReadOrWriteRequest::<UserBuffer>k__BackingField
BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* ___U3CUserBufferU3Ek__BackingField_7;
// System.Int32 Mono.Net.Security.AsyncReadOrWriteRequest::<CurrentSize>k__BackingField
int32_t ___U3CCurrentSizeU3Ek__BackingField_8;
};
// 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;
};
// Mono.Net.Security.BufferOffsetSize2
struct BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629 : public BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE
{
// System.Int32 Mono.Net.Security.BufferOffsetSize2::InitialSize
int32_t ___InitialSize_5;
};
// 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.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.Guid
struct Guid_t
{
// System.Int32 System.Guid::_a
int32_t ____a_1;
// System.Int16 System.Guid::_b
int16_t ____b_2;
// System.Int16 System.Guid::_c
int16_t ____c_3;
// System.Byte System.Guid::_d
uint8_t ____d_4;
// System.Byte System.Guid::_e
uint8_t ____e_5;
// System.Byte System.Guid::_f
uint8_t ____f_6;
// System.Byte System.Guid::_g
uint8_t ____g_7;
// System.Byte System.Guid::_h
uint8_t ____h_8;
// System.Byte System.Guid::_i
uint8_t ____i_9;
// System.Byte System.Guid::_j
uint8_t ____j_10;
// System.Byte System.Guid::_k
uint8_t ____k_11;
};
struct Guid_t_StaticFields
{
// System.Guid System.Guid::Empty
Guid_t ___Empty_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;
};
// Mono.Net.Security.MobileTlsProvider
struct MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017 : public MonoTlsProvider_t39C898CDC9458EEAD7C019B4B23701EAF9E24F7E
{
};
// Mono.Util.MonoPInvokeCallbackAttribute
struct MonoPInvokeCallbackAttribute_t19B253264BDE6F6CA02B9A7AE568D357B089EFA4 : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
{
};
// Mono.Net.Security.MonoSslClientAuthenticationOptions
struct MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F : public MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611
{
// System.Net.Security.SslClientAuthenticationOptions Mono.Net.Security.MonoSslClientAuthenticationOptions::<Options>k__BackingField
SslClientAuthenticationOptions_tA5277DAACAFB33887D2513D9399C5154B0D5CBC9* ___U3COptionsU3Ek__BackingField_1;
};
// System.OrdinalComparer
struct OrdinalComparer_tBB06915E213A5D4C8C617ED5478E8BF30C2B2170 : public StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06
{
// System.Boolean System.OrdinalComparer::_ignoreCase
bool ____ignoreCase_4;
};
// 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.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.UInt32
struct UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B
{
// System.UInt32 System.UInt32::m_value
uint32_t ___m_value_0;
};
// System.UInt64
struct UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF
{
// System.UInt64 System.UInt64::m_value
uint64_t ___m_value_0;
};
// System.Void
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
{
union
{
struct
{
};
uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
};
};
// System.Security.Cryptography.X509Certificates.X500DistinguishedName
struct X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6 : public AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8
{
// System.String System.Security.Cryptography.X509Certificates.X500DistinguishedName::name
String_t* ___name_2;
// System.Byte[] System.Security.Cryptography.X509Certificates.X500DistinguishedName::canonEncoding
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___canonEncoding_3;
};
// System.Security.Cryptography.X509Certificates.X509Certificate2Impl
struct X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25 : public X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF
{
};
// System.Security.Cryptography.X509Certificates.X509CertificateCollection
struct X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE : public CollectionBase_t44F966CC555C87F2815D668FB4586526E1C2383F
{
};
// System.Security.Cryptography.X509Certificates.X509Extension
struct X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5 : public AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8
{
// System.Boolean System.Security.Cryptography.X509Certificates.X509Extension::_critical
bool ____critical_2;
};
// Mono.X509PalImplMono
struct X509PalImplMono_t2D1688733B64BBD2C1A1038CEC75A9097611B8B2 : public X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86
{
};
// Internal.Cryptography.Pal.CertificateData/AlgorithmIdentifier
struct AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8
{
// System.String Internal.Cryptography.Pal.CertificateData/AlgorithmIdentifier::AlgorithmId
String_t* ___AlgorithmId_0;
// System.Byte[] Internal.Cryptography.Pal.CertificateData/AlgorithmIdentifier::Parameters
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___Parameters_1;
};
// Native definition for P/Invoke marshalling of Internal.Cryptography.Pal.CertificateData/AlgorithmIdentifier
struct AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8_marshaled_pinvoke
{
char* ___AlgorithmId_0;
Il2CppSafeArray/*NONE*/* ___Parameters_1;
};
// Native definition for COM marshalling of Internal.Cryptography.Pal.CertificateData/AlgorithmIdentifier
struct AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8_marshaled_com
{
Il2CppChar* ___AlgorithmId_0;
Il2CppSafeArray/*NONE*/* ___Parameters_1;
};
// 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;
};
// Mono.Unity.UnityTls/unitytls_key
struct unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8
{
union
{
struct
{
};
uint8_t unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8__padding[1];
};
};
// Mono.Unity.UnityTls/unitytls_key_ref
struct unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2
{
// System.UInt64 Mono.Unity.UnityTls/unitytls_key_ref::handle
uint64_t ___handle_0;
};
// Mono.Unity.UnityTls/unitytls_tlsctx
struct unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE
{
union
{
struct
{
};
uint8_t unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE__padding[1];
};
};
// Mono.Unity.UnityTls/unitytls_tlsctx_callbacks
struct unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568
{
// Mono.Unity.UnityTls/unitytls_tlsctx_read_callback Mono.Unity.UnityTls/unitytls_tlsctx_callbacks::read
unitytls_tlsctx_read_callback_tDBE877327789CABE940C2A724EC9A5D142318851* ___read_0;
// Mono.Unity.UnityTls/unitytls_tlsctx_write_callback Mono.Unity.UnityTls/unitytls_tlsctx_callbacks::write
unitytls_tlsctx_write_callback_t5D4B64AD846D04E819A49689F7EAA47365636611* ___write_1;
// System.Void* Mono.Unity.UnityTls/unitytls_tlsctx_callbacks::data
void* ___data_2;
};
// Native definition for P/Invoke marshalling of Mono.Unity.UnityTls/unitytls_tlsctx_callbacks
struct unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568_marshaled_pinvoke
{
Il2CppMethodPointer ___read_0;
Il2CppMethodPointer ___write_1;
void* ___data_2;
};
// Native definition for COM marshalling of Mono.Unity.UnityTls/unitytls_tlsctx_callbacks
struct unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568_marshaled_com
{
Il2CppMethodPointer ___read_0;
Il2CppMethodPointer ___write_1;
void* ___data_2;
};
// Mono.Unity.UnityTls/unitytls_x509_ref
struct unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333
{
// System.UInt64 Mono.Unity.UnityTls/unitytls_x509_ref::handle
uint64_t ___handle_0;
};
// Mono.Unity.UnityTls/unitytls_x509list
struct unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6
{
union
{
struct
{
};
uint8_t unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6__padding[1];
};
};
// Mono.Unity.UnityTls/unitytls_x509list_ref
struct unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17
{
// System.UInt64 Mono.Unity.UnityTls/unitytls_x509list_ref::handle
uint64_t ___handle_0;
};
// Mono.Unity.UnityTls/unitytls_x509name
struct unitytls_x509name_t8A1108C917795D8FE946B50769ACE51489C7BF5D
{
union
{
struct
{
};
uint8_t unitytls_x509name_t8A1108C917795D8FE946B50769ACE51489C7BF5D__padding[1];
};
};
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>
struct AsyncTaskMethodBuilder_1_t7BA09CA1BB279AA706D98A618EE11038FD1985F7
{
// System.Runtime.CompilerServices.AsyncMethodBuilderCore System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_coreState
AsyncMethodBuilderCore_tD5ABB3A2536319A3345B32A5481E37E23DD8CEDF ___m_coreState_1;
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_task
Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* ___m_task_2;
};
struct AsyncTaskMethodBuilder_1_t7BA09CA1BB279AA706D98A618EE11038FD1985F7_StaticFields
{
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::s_defaultResultTask
Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* ___s_defaultResultTask_0;
};
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<Mono.Net.Security.AsyncProtocolResult>
struct AsyncTaskMethodBuilder_1_tB85AB2AF366A9742C159DD6FBD3FE38EDD13543B
{
// System.Runtime.CompilerServices.AsyncMethodBuilderCore System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_coreState
AsyncMethodBuilderCore_tD5ABB3A2536319A3345B32A5481E37E23DD8CEDF ___m_coreState_1;
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_task
Task_1_t7B91A92D06E8BCB69911B6822DD99220DDB735EE* ___m_task_2;
};
struct AsyncTaskMethodBuilder_1_tB85AB2AF366A9742C159DD6FBD3FE38EDD13543B_StaticFields
{
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::s_defaultResultTask
Task_1_t7B91A92D06E8BCB69911B6822DD99220DDB735EE* ___s_defaultResultTask_0;
};
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>
struct AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019
{
// System.Runtime.CompilerServices.AsyncMethodBuilderCore System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_coreState
AsyncMethodBuilderCore_tD5ABB3A2536319A3345B32A5481E37E23DD8CEDF ___m_coreState_1;
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_task
Task_1_t4C228DE57804012969575431CFF12D57C875552D* ___m_task_2;
};
struct AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019_StaticFields
{
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::s_defaultResultTask
Task_1_t4C228DE57804012969575431CFF12D57C875552D* ___s_defaultResultTask_0;
};
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>
struct AsyncTaskMethodBuilder_1_tE810F083929D7952F192036D298085BD4B048AD0
{
// System.Runtime.CompilerServices.AsyncMethodBuilderCore System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_coreState
AsyncMethodBuilderCore_tD5ABB3A2536319A3345B32A5481E37E23DD8CEDF ___m_coreState_1;
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_task
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___m_task_2;
};
struct AsyncTaskMethodBuilder_1_tE810F083929D7952F192036D298085BD4B048AD0_StaticFields
{
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::s_defaultResultTask
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___s_defaultResultTask_0;
};
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.IO.Stream>
struct AsyncTaskMethodBuilder_1_t923DC16ADFF754593B125800F38ED37C920B14C1
{
// System.Runtime.CompilerServices.AsyncMethodBuilderCore System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_coreState
AsyncMethodBuilderCore_tD5ABB3A2536319A3345B32A5481E37E23DD8CEDF ___m_coreState_1;
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_task
Task_1_t06484715029D51A4420723456D165BAC63798F8D* ___m_task_2;
};
struct AsyncTaskMethodBuilder_1_t923DC16ADFF754593B125800F38ED37C920B14C1_StaticFields
{
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::s_defaultResultTask
Task_1_t06484715029D51A4420723456D165BAC63798F8D* ___s_defaultResultTask_0;
};
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>
struct AsyncTaskMethodBuilder_1_tE88892A6B2F97B5D44B7C3EE2DBEED85743412AC
{
// System.Runtime.CompilerServices.AsyncMethodBuilderCore System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_coreState
AsyncMethodBuilderCore_tD5ABB3A2536319A3345B32A5481E37E23DD8CEDF ___m_coreState_1;
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_task
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* ___m_task_2;
};
struct AsyncTaskMethodBuilder_1_tE88892A6B2F97B5D44B7C3EE2DBEED85743412AC_StaticFields
{
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::s_defaultResultTask
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* ___s_defaultResultTask_0;
};
// System.ByReference`1<System.Char>
struct ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5
{
// System.IntPtr System.ByReference`1::_value
intptr_t ____value_0;
};
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Nullable`1<System.Int32>>
struct ConfiguredTaskAwaitable_1_tEC8120422100780C8C0025D1B994C33B30C4AD71
{
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1::m_configuredTaskAwaiter
ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5 ___m_configuredTaskAwaiter_0;
};
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<Mono.Net.Security.AsyncProtocolResult>
struct ConfiguredTaskAwaitable_1_t00976D6871B3F5929DA9DD9B2BA763F0DE7AD4A0
{
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1::m_configuredTaskAwaiter
ConfiguredTaskAwaiter_t150EB7231CA854AE162139EF92711A3C957F9591 ___m_configuredTaskAwaiter_0;
};
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Int32>
struct ConfiguredTaskAwaitable_1_t5186C81524388C1718E9AC37792D8771A443417A
{
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1::m_configuredTaskAwaiter
ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80 ___m_configuredTaskAwaiter_0;
};
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Object>
struct ConfiguredTaskAwaitable_1_t97C129EA63015240E6F9E767F4A120CC9122FEF8
{
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1::m_configuredTaskAwaiter
ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2 ___m_configuredTaskAwaiter_0;
};
// System.Nullable`1<System.DateTime>
struct Nullable_1_tEADC262F7F8B8BC4CC0A003DBDD3CA7C1B63F9AC
{
// System.Boolean System.Nullable`1::hasValue
bool ___hasValue_0;
// T System.Nullable`1::value
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___value_1;
};
// System.Tuple`2<System.Guid,System.Object>
struct Tuple_2_t6C77F219737155994A9494DA020666D1BC9953C2 : public RuntimeObject
{
// T1 System.Tuple`2::m_Item1
Guid_t ___m_Item1_0;
// T2 System.Tuple`2::m_Item2
RuntimeObject* ___m_Item2_1;
};
// System.Tuple`2<System.Guid,System.String>
struct Tuple_2_t8A67FBD80CECF93E77E04F75D4B379CC242F7DA5 : public RuntimeObject
{
// T1 System.Tuple`2::m_Item1
Guid_t ___m_Item1_0;
// T2 System.Tuple`2::m_Item2
String_t* ___m_Item2_1;
};
// System.Net.Sockets.AddressFamily
struct AddressFamily_t01AA8C9FD15E4727B241F1F453D88444337C7524
{
// System.Int32 System.Net.Sockets.AddressFamily::value__
int32_t ___value___2;
};
// Mono.Security.Interface.AlertDescription
struct AlertDescription_t7E5D40312182ABCFF03E6101541486714E511480
{
// System.Byte Mono.Security.Interface.AlertDescription::value__
uint8_t ___value___2;
};
// Mono.Net.Security.AsyncOperationStatus
struct AsyncOperationStatus_t8CF406B520FD8CDAB4A1D4C0DC1D1946A06F7CBC
{
// System.Int32 Mono.Net.Security.AsyncOperationStatus::value__
int32_t ___value___2;
};
// Mono.Net.Security.AsyncReadRequest
struct AsyncReadRequest_t0DF29D88C5908BB80A3B6B6D6B3BC9BC23292BB1 : public AsyncReadOrWriteRequest_tEE5EFA76D488CBB46DBCA56E9914A0E5BF6D4680
{
};
// Mono.Net.Security.AsyncWriteRequest
struct AsyncWriteRequest_t43F45610B0F7E69C3DD0DB5EFCA2E9306D4C95A3 : public AsyncReadOrWriteRequest_tEE5EFA76D488CBB46DBCA56E9914A0E5BF6D4680
{
};
// System.Net.Security.AuthenticatedStream
struct AuthenticatedStream_t8DCF41E151F705E2494FC7836F5E2EF7C539FA39 : public Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE
{
// System.IO.Stream System.Net.Security.AuthenticatedStream::_InnerStream
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ____InnerStream_4;
// System.Boolean System.Net.Security.AuthenticatedStream::_LeaveStreamOpen
bool ____LeaveStreamOpen_5;
};
// System.Net.Security.AuthenticationLevel
struct AuthenticationLevel_tD91F6CE700057352B4F45FC290E35B9E936DECAF
{
// System.Int32 System.Net.Security.AuthenticationLevel::value__
int32_t ___value___2;
};
// Mono.Security.Authenticode.AuthenticodeDeformatter
struct AuthenticodeDeformatter_tFD4A7B915DB17925F5BD1F9FA169DCF7C2CC81D2 : public AuthenticodeBase_t14D3C295865C85D138AF4DDCD73F6CE08AE02EAD
{
// System.String Mono.Security.Authenticode.AuthenticodeDeformatter::filename
String_t* ___filename_9;
// System.Byte[] Mono.Security.Authenticode.AuthenticodeDeformatter::rawdata
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___rawdata_10;
// System.Byte[] Mono.Security.Authenticode.AuthenticodeDeformatter::hash
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___hash_11;
// Mono.Security.X509.X509CertificateCollection Mono.Security.Authenticode.AuthenticodeDeformatter::coll
X509CertificateCollection_t4FCE6AFCD042978CC0A24627945F864BB3188FC4* ___coll_12;
// Mono.Security.ASN1 Mono.Security.Authenticode.AuthenticodeDeformatter::signedHash
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* ___signedHash_13;
// System.DateTime Mono.Security.Authenticode.AuthenticodeDeformatter::timestamp
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___timestamp_14;
// Mono.Security.X509.X509Certificate Mono.Security.Authenticode.AuthenticodeDeformatter::signingCertificate
X509Certificate_t9ECDEAA7F2B56A899145F284A13F4D0042481356* ___signingCertificate_15;
// System.Int32 Mono.Security.Authenticode.AuthenticodeDeformatter::reason
int32_t ___reason_16;
// System.Boolean Mono.Security.Authenticode.AuthenticodeDeformatter::trustedRoot
bool ___trustedRoot_17;
// System.Boolean Mono.Security.Authenticode.AuthenticodeDeformatter::trustedTimestampRoot
bool ___trustedTimestampRoot_18;
// System.Byte[] Mono.Security.Authenticode.AuthenticodeDeformatter::entry
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___entry_19;
// Mono.Security.X509.X509Chain Mono.Security.Authenticode.AuthenticodeDeformatter::signerChain
X509Chain_t5B2B343190D10F0CBE48EF822C92F1486E321E21* ___signerChain_20;
// Mono.Security.X509.X509Chain Mono.Security.Authenticode.AuthenticodeDeformatter::timestampChain
X509Chain_t5B2B343190D10F0CBE48EF822C92F1486E321E21* ___timestampChain_21;
};
// System.Reflection.BindingFlags
struct BindingFlags_t5DC2835E4AE9C1862B3AD172EF35B6A5F4F1812C
{
// System.Int32 System.Reflection.BindingFlags::value__
int32_t ___value___2;
};
// Internal.Cryptography.Pal.CertificateData
struct CertificateData_t40A99242A632202B3115D05913ED12CAA78F65B1
{
// System.Byte[] Internal.Cryptography.Pal.CertificateData::RawData
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___RawData_0;
// System.Byte[] Internal.Cryptography.Pal.CertificateData::SubjectPublicKeyInfo
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___SubjectPublicKeyInfo_1;
// System.Int32 Internal.Cryptography.Pal.CertificateData::Version
int32_t ___Version_2;
// System.Byte[] Internal.Cryptography.Pal.CertificateData::SerialNumber
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___SerialNumber_3;
// Internal.Cryptography.Pal.CertificateData/AlgorithmIdentifier Internal.Cryptography.Pal.CertificateData::TbsSignature
AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8 ___TbsSignature_4;
// System.Security.Cryptography.X509Certificates.X500DistinguishedName Internal.Cryptography.Pal.CertificateData::Issuer
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* ___Issuer_5;
// System.DateTime Internal.Cryptography.Pal.CertificateData::NotBefore
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___NotBefore_6;
// System.DateTime Internal.Cryptography.Pal.CertificateData::NotAfter
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___NotAfter_7;
// System.Security.Cryptography.X509Certificates.X500DistinguishedName Internal.Cryptography.Pal.CertificateData::Subject
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* ___Subject_8;
// Internal.Cryptography.Pal.CertificateData/AlgorithmIdentifier Internal.Cryptography.Pal.CertificateData::PublicKeyAlgorithm
AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8 ___PublicKeyAlgorithm_9;
// System.Byte[] Internal.Cryptography.Pal.CertificateData::PublicKey
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___PublicKey_10;
// System.Byte[] Internal.Cryptography.Pal.CertificateData::IssuerUniqueId
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___IssuerUniqueId_11;
// System.Byte[] Internal.Cryptography.Pal.CertificateData::SubjectUniqueId
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___SubjectUniqueId_12;
// System.Collections.Generic.List`1<System.Security.Cryptography.X509Certificates.X509Extension> Internal.Cryptography.Pal.CertificateData::Extensions
List_1_t03551104C97124C9D83186EEB3F066B8BFFD87E3* ___Extensions_13;
// Internal.Cryptography.Pal.CertificateData/AlgorithmIdentifier Internal.Cryptography.Pal.CertificateData::SignatureAlgorithm
AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8 ___SignatureAlgorithm_14;
// System.Byte[] Internal.Cryptography.Pal.CertificateData::SignatureValue
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___SignatureValue_15;
};
// Native definition for P/Invoke marshalling of Internal.Cryptography.Pal.CertificateData
struct CertificateData_t40A99242A632202B3115D05913ED12CAA78F65B1_marshaled_pinvoke
{
Il2CppSafeArray/*NONE*/* ___RawData_0;
Il2CppSafeArray/*NONE*/* ___SubjectPublicKeyInfo_1;
int32_t ___Version_2;
Il2CppSafeArray/*NONE*/* ___SerialNumber_3;
AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8_marshaled_pinvoke ___TbsSignature_4;
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* ___Issuer_5;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___NotBefore_6;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___NotAfter_7;
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* ___Subject_8;
AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8_marshaled_pinvoke ___PublicKeyAlgorithm_9;
Il2CppSafeArray/*NONE*/* ___PublicKey_10;
Il2CppSafeArray/*NONE*/* ___IssuerUniqueId_11;
Il2CppSafeArray/*NONE*/* ___SubjectUniqueId_12;
List_1_t03551104C97124C9D83186EEB3F066B8BFFD87E3* ___Extensions_13;
AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8_marshaled_pinvoke ___SignatureAlgorithm_14;
Il2CppSafeArray/*NONE*/* ___SignatureValue_15;
};
// Native definition for COM marshalling of Internal.Cryptography.Pal.CertificateData
struct CertificateData_t40A99242A632202B3115D05913ED12CAA78F65B1_marshaled_com
{
Il2CppSafeArray/*NONE*/* ___RawData_0;
Il2CppSafeArray/*NONE*/* ___SubjectPublicKeyInfo_1;
int32_t ___Version_2;
Il2CppSafeArray/*NONE*/* ___SerialNumber_3;
AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8_marshaled_com ___TbsSignature_4;
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* ___Issuer_5;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___NotBefore_6;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___NotAfter_7;
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* ___Subject_8;
AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8_marshaled_com ___PublicKeyAlgorithm_9;
Il2CppSafeArray/*NONE*/* ___PublicKey_10;
Il2CppSafeArray/*NONE*/* ___IssuerUniqueId_11;
Il2CppSafeArray/*NONE*/* ___SubjectUniqueId_12;
List_1_t03551104C97124C9D83186EEB3F066B8BFFD87E3* ___Extensions_13;
AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8_marshaled_com ___SignatureAlgorithm_14;
Il2CppSafeArray/*NONE*/* ___SignatureValue_15;
};
// Mono.CertificateImportFlags
struct CertificateImportFlags_t01A3DAD447241A787D12C441EA621435BB10B9DB
{
// System.Int32 Mono.CertificateImportFlags::value__
int32_t ___value___2;
};
// Mono.Security.Interface.CipherSuiteCode
struct CipherSuiteCode_t6117A4432DFD9B03F46C93527A561503E94071B3
{
// System.UInt16 Mono.Security.Interface.CipherSuiteCode::value__
uint16_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.DecompressionMethods
struct DecompressionMethods_t427BA3F24A5ADDF1615651462C3C825FE8B77F02
{
// System.Int32 System.Net.DecompressionMethods::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.Net.Security.EncryptionPolicy
struct EncryptionPolicy_t5BCDD1A5A1B42E3843DBD8B55A1BECBD2A523D99
{
// System.Int32 System.Net.Security.EncryptionPolicy::value__
int32_t ___value___2;
};
// System.Exception
struct Exception_t : public RuntimeObject
{
// System.String System.Exception::_className
String_t* ____className_1;
// System.String System.Exception::_message
String_t* ____message_2;
// System.Collections.IDictionary System.Exception::_data
RuntimeObject* ____data_3;
// System.Exception System.Exception::_innerException
Exception_t* ____innerException_4;
// System.String System.Exception::_helpURL
String_t* ____helpURL_5;
// System.Object System.Exception::_stackTrace
RuntimeObject* ____stackTrace_6;
// System.String System.Exception::_stackTraceString
String_t* ____stackTraceString_7;
// System.String System.Exception::_remoteStackTraceString
String_t* ____remoteStackTraceString_8;
// System.Int32 System.Exception::_remoteStackIndex
int32_t ____remoteStackIndex_9;
// System.Object System.Exception::_dynamicMethods
RuntimeObject* ____dynamicMethods_10;
// System.Int32 System.Exception::_HResult
int32_t ____HResult_11;
// System.String System.Exception::_source
String_t* ____source_12;
// System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
// System.IntPtr[] System.Exception::native_trace_ips
IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips_15;
// System.Int32 System.Exception::caught_in_unmanaged
int32_t ___caught_in_unmanaged_16;
};
struct Exception_t_StaticFields
{
// System.Object System.Exception::s_EDILock
RuntimeObject* ___s_EDILock_0;
};
// Native definition for P/Invoke marshalling of System.Exception
struct Exception_t_marshaled_pinvoke
{
char* ____className_1;
char* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_pinvoke* ____innerException_4;
char* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
char* ____stackTraceString_7;
char* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
char* ____source_12;
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
int32_t ___caught_in_unmanaged_16;
};
// Native definition for COM marshalling of System.Exception
struct Exception_t_marshaled_com
{
Il2CppChar* ____className_1;
Il2CppChar* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_com* ____innerException_4;
Il2CppChar* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
Il2CppChar* ____stackTraceString_7;
Il2CppChar* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
Il2CppChar* ____source_12;
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
int32_t ___caught_in_unmanaged_16;
};
// System.Runtime.InteropServices.GCHandle
struct GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC
{
// System.IntPtr System.Runtime.InteropServices.GCHandle::handle
intptr_t ___handle_0;
};
// Internal.Cryptography.Pal.GeneralNameType
struct GeneralNameType_t8C783E69CD3051ACA1F7E69C6F487BFDD0F6B0D0
{
// System.Int32 Internal.Cryptography.Pal.GeneralNameType::value__
int32_t ___value___2;
};
// System.Runtime.InteropServices.HandleRef
struct HandleRef_t4B05E32B68797F702257D4E838B85A976313F08F
{
// System.Object System.Runtime.InteropServices.HandleRef::_wrapper
RuntimeObject* ____wrapper_0;
// System.IntPtr System.Runtime.InteropServices.HandleRef::_handle
intptr_t ____handle_1;
};
// System.Int32Enum
struct Int32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C
{
// System.Int32 System.Int32Enum::value__
int32_t ___value___2;
};
// System.IO.MonoIOError
struct MonoIOError_tC94D69F85D2C23B3229AE92B97381C7F9351D947
{
// System.Int32 System.IO.MonoIOError::value__
int32_t ___value___2;
};
// Mono.Security.Interface.MonoSslPolicyErrors
struct MonoSslPolicyErrors_t064CCA79859C39247FA94E7DA8DCBD327C650BB7
{
// System.Int32 Mono.Security.Interface.MonoSslPolicyErrors::value__
int32_t ___value___2;
};
// Mono.Net.Security.MonoTlsProviderFactory
struct MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624 : public RuntimeObject
{
};
struct MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_StaticFields
{
// System.Object Mono.Net.Security.MonoTlsProviderFactory::locker
RuntimeObject* ___locker_0;
// System.Boolean Mono.Net.Security.MonoTlsProviderFactory::initialized
bool ___initialized_1;
// Mono.Net.Security.MobileTlsProvider Mono.Net.Security.MonoTlsProviderFactory::defaultProvider
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* ___defaultProvider_2;
// System.Collections.Generic.Dictionary`2<System.String,System.Tuple`2<System.Guid,System.String>> Mono.Net.Security.MonoTlsProviderFactory::providerRegistration
Dictionary_2_t6D341191E2021065DBEDA3500D49AB6A7791A7D7* ___providerRegistration_3;
// System.Collections.Generic.Dictionary`2<System.Guid,Mono.Net.Security.MobileTlsProvider> Mono.Net.Security.MonoTlsProviderFactory::providerCache
Dictionary_2_tAF53376D9E207F701196CFA12420D116F00604AC* ___providerCache_4;
// System.Guid Mono.Net.Security.MonoTlsProviderFactory::UnityTlsId
Guid_t ___UnityTlsId_5;
// System.Guid Mono.Net.Security.MonoTlsProviderFactory::AppleTlsId
Guid_t ___AppleTlsId_6;
// System.Guid Mono.Net.Security.MonoTlsProviderFactory::BtlsId
Guid_t ___BtlsId_7;
};
// 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;
};
// Mono.Security.Protocol.Ntlm.NtlmAuthLevel
struct NtlmAuthLevel_t3C431C4E148AE955AC179EED26F45C7A0C6704D7
{
// System.Int32 Mono.Security.Protocol.Ntlm.NtlmAuthLevel::value__
int32_t ___value___2;
};
// Mono.Security.Protocol.Ntlm.NtlmFlags
struct NtlmFlags_tB262A4857A2DFFC30FD0FA9D32FE4B537CA4EA55
{
// System.Int32 Mono.Security.Protocol.Ntlm.NtlmFlags::value__
int32_t ___value___2;
};
// System.Globalization.NumberStyles
struct NumberStyles_t567C6CBC2A2B5B5A2C43B2855D158949984A810C
{
// System.Int32 System.Globalization.NumberStyles::value__
int32_t ___value___2;
};
// System.Security.Cryptography.OidGroup
struct OidGroup_t7B851FE5BD88C9E5CA5365670A3EAF8B70D239B0
{
// System.Int32 System.Security.Cryptography.OidGroup::value__
int32_t ___value___2;
};
// System.OrdinalIgnoreCaseComparer
struct OrdinalIgnoreCaseComparer_t8BAE11990A4C855D3BCBBFB42F4EF8D45088FBB0 : public OrdinalComparer_tBB06915E213A5D4C8C617ED5478E8BF30C2B2170
{
};
// System.Net.Sockets.ProtocolType
struct ProtocolType_t104D087F8C40460E0FE8D38659949AEA910CD20A
{
// System.Int32 System.Net.Sockets.ProtocolType::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.Runtime.InteropServices.SafeHandle
struct SafeHandle_tC1A4DA80DA89B867CC011B707A07275230321BF7 : public CriticalFinalizerObject_t1DCAB623CAEA6529A96F5F3EDE3C7048A6E313C9
{
// System.IntPtr System.Runtime.InteropServices.SafeHandle::handle
intptr_t ___handle_0;
// System.Int32 System.Runtime.InteropServices.SafeHandle::_state
int32_t ____state_1;
// System.Boolean System.Runtime.InteropServices.SafeHandle::_ownsHandle
bool ____ownsHandle_2;
// System.Boolean System.Runtime.InteropServices.SafeHandle::_fullyInitialized
bool ____fullyInitialized_3;
};
// 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.ServicePoint
struct ServicePoint_t5DB5939994CAA6A0DF221C5F58D59D1A6131CE29 : public RuntimeObject
{
// System.Uri System.Net.ServicePoint::uri
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___uri_0;
// System.DateTime System.Net.ServicePoint::lastDnsResolve
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___lastDnsResolve_1;
// System.Version System.Net.ServicePoint::protocolVersion
Version_tE426DB5655D0F22920AE16A2AA9AB7781B8255A7* ___protocolVersion_2;
// System.Net.IPHostEntry System.Net.ServicePoint::host
IPHostEntry_tAAAEB0F40DB9F28BE601B5FE7DA1D76191C94490* ___host_3;
// System.Boolean System.Net.ServicePoint::usesProxy
bool ___usesProxy_4;
// System.Boolean System.Net.ServicePoint::sendContinue
bool ___sendContinue_5;
// System.Boolean System.Net.ServicePoint::useConnect
bool ___useConnect_6;
// System.Object System.Net.ServicePoint::hostE
RuntimeObject* ___hostE_7;
// System.Boolean System.Net.ServicePoint::useNagle
bool ___useNagle_8;
// System.Net.BindIPEndPoint System.Net.ServicePoint::endPointCallback
BindIPEndPoint_tCB0143A2E17188ED6D562FEA72A18CC9F2448BDD* ___endPointCallback_9;
// System.Boolean System.Net.ServicePoint::tcp_keepalive
bool ___tcp_keepalive_10;
// System.Int32 System.Net.ServicePoint::tcp_keepalive_time
int32_t ___tcp_keepalive_time_11;
// System.Int32 System.Net.ServicePoint::tcp_keepalive_interval
int32_t ___tcp_keepalive_interval_12;
// System.Boolean System.Net.ServicePoint::disposed
bool ___disposed_13;
// System.Int32 System.Net.ServicePoint::connectionLeaseTimeout
int32_t ___connectionLeaseTimeout_14;
// System.Int32 System.Net.ServicePoint::receiveBufferSize
int32_t ___receiveBufferSize_15;
// System.Net.ServicePointManager/SPKey System.Net.ServicePoint::<Key>k__BackingField
SPKey_t3FD8B8DF5F452D3E34F29B5EC1AEC33370B1A6E5* ___U3CKeyU3Ek__BackingField_16;
// System.Net.ServicePointScheduler System.Net.ServicePoint::<Scheduler>k__BackingField
ServicePointScheduler_tE33BD33FDCDF4D1850C1753110E79DDC11C27AB9* ___U3CSchedulerU3Ek__BackingField_17;
// System.Int32 System.Net.ServicePoint::connectionLimit
int32_t ___connectionLimit_18;
// System.Int32 System.Net.ServicePoint::maxIdleTime
int32_t ___maxIdleTime_19;
// System.Object System.Net.ServicePoint::m_ServerCertificateOrBytes
RuntimeObject* ___m_ServerCertificateOrBytes_20;
// System.Object System.Net.ServicePoint::m_ClientCertificateOrBytes
RuntimeObject* ___m_ClientCertificateOrBytes_21;
};
// System.Net.Sockets.SocketType
struct SocketType_tEFAA48791CC7B43043CE5B1DE7A54F15DCFE3C52
{
// System.Int32 System.Net.Sockets.SocketType::value__
int32_t ___value___2;
};
// System.Net.Security.SslPolicyErrors
struct SslPolicyErrors_t92DF45EC5BA5BEFF38EF53C2C8488B27385EBB08
{
// System.Int32 System.Net.Security.SslPolicyErrors::value__
int32_t ___value___2;
};
// System.Security.Authentication.SslProtocols
struct SslProtocols_t21FADB874FCAEC5039AE593AA3544639C938C77E
{
// System.Int32 System.Security.Authentication.SslProtocols::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;
};
// Mono.Security.Interface.TlsProtocols
struct TlsProtocols_tCC009DAEEFCA5769448145AD24A1193CD5E8541B
{
// System.Int32 Mono.Security.Interface.TlsProtocols::value__
int32_t ___value___2;
};
// System.Security.Principal.TokenImpersonationLevel
struct TokenImpersonationLevel_t2DEE263354E7DBC241ED96A71C632A3FAB92013D
{
// System.Int32 System.Security.Principal.TokenImpersonationLevel::value__
int32_t ___value___2;
};
// Mono.Unity.UnityTlsProvider
struct UnityTlsProvider_t5B2A843E65B77E7B2B9F2467DB0B6117505929D1 : public MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017
{
};
// System.UriIdnScope
struct UriIdnScope_t001CC97A6F977E9BB7DB855CC6BA415A7F47491F
{
// System.Int32 System.UriIdnScope::value__
int32_t ___value___2;
};
// System.Net.WebExceptionStatus
struct WebExceptionStatus_t86B29EE86F8C7D20D1825C71503F0473C43B4B92
{
// System.Int32 System.Net.WebExceptionStatus::value__
int32_t ___value___2;
};
// System.Security.Cryptography.X509Certificates.X509Certificate
struct X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4 : public RuntimeObject
{
// System.Security.Cryptography.X509Certificates.X509CertificateImpl System.Security.Cryptography.X509Certificates.X509Certificate::impl
X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF* ___impl_0;
// System.Byte[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Security.Cryptography.X509Certificates.X509Certificate::lazyCertHash
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___lazyCertHash_1;
// System.Byte[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Security.Cryptography.X509Certificates.X509Certificate::lazySerialNumber
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___lazySerialNumber_2;
// System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.Security.Cryptography.X509Certificates.X509Certificate::lazyIssuer
String_t* ___lazyIssuer_3;
// System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.Security.Cryptography.X509Certificates.X509Certificate::lazySubject
String_t* ___lazySubject_4;
// System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.Security.Cryptography.X509Certificates.X509Certificate::lazyKeyAlgorithm
String_t* ___lazyKeyAlgorithm_5;
// System.Byte[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Security.Cryptography.X509Certificates.X509Certificate::lazyKeyAlgorithmParameters
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___lazyKeyAlgorithmParameters_6;
// System.Byte[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Security.Cryptography.X509Certificates.X509Certificate::lazyPublicKey
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___lazyPublicKey_7;
// System.DateTime System.Security.Cryptography.X509Certificates.X509Certificate::lazyNotBefore
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___lazyNotBefore_8;
// System.DateTime System.Security.Cryptography.X509Certificates.X509Certificate::lazyNotAfter
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___lazyNotAfter_9;
};
// Mono.Unity.X509ChainImplUnityTls
struct X509ChainImplUnityTls_t37736839B9CDAD02F5F02693121A4C18C0020B40 : public X509ChainImpl_tBA1BF154DB9DC321EE068BBC53C7CF43CAA2621F
{
// System.Security.Cryptography.X509Certificates.X509ChainElementCollection Mono.Unity.X509ChainImplUnityTls::elements
X509ChainElementCollection_t543DE35924C12A624ADA5111F7F47C1F9F99E70D* ___elements_0;
// Mono.Unity.UnityTls/unitytls_x509list_ref Mono.Unity.X509ChainImplUnityTls::nativeCertificateChain
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___nativeCertificateChain_1;
// System.Security.Cryptography.X509Certificates.X509ChainPolicy Mono.Unity.X509ChainImplUnityTls::policy
X509ChainPolicy_t34F49B4067492A1E5F91DD91FA7C934B68D880EC* ___policy_2;
// System.Collections.Generic.List`1<System.Security.Cryptography.X509Certificates.X509ChainStatus> Mono.Unity.X509ChainImplUnityTls::chainStatusList
List_1_t14F08D1F5A2E0F276F976F81CC13B7CB7EDABE33* ___chainStatusList_3;
// System.Boolean Mono.Unity.X509ChainImplUnityTls::reverseOrder
bool ___reverseOrder_4;
};
// System.Security.Cryptography.X509Certificates.X509ChainStatusFlags
struct X509ChainStatusFlags_t57C80D7C1F4C319F6D6B9FBDEA402E3023E6C769
{
// System.Int32 System.Security.Cryptography.X509Certificates.X509ChainStatusFlags::value__
int32_t ___value___2;
};
// System.Security.Cryptography.X509Certificates.X509ContentType
struct X509ContentType_tE380F75FB30CDF5184B17EBD740F547B8418B59D
{
// System.Int32 System.Security.Cryptography.X509Certificates.X509ContentType::value__
int32_t ___value___2;
};
// System.Security.Cryptography.X509Certificates.X509KeyStorageFlags
struct X509KeyStorageFlags_t57AEEE4A9DF943CEF8212B856ED6CA5DF05AEEA3
{
// System.Int32 System.Security.Cryptography.X509Certificates.X509KeyStorageFlags::value__
int32_t ___value___2;
};
// System.Security.Cryptography.X509Certificates.X509KeyUsageFlags
struct X509KeyUsageFlags_tA8507F67CB3F1DF68E2126C9D40A62CCF27065BA
{
// System.Int32 System.Security.Cryptography.X509Certificates.X509KeyUsageFlags::value__
int32_t ___value___2;
};
// System.Security.Cryptography.X509Certificates.X509NameType
struct X509NameType_t65E4E6CC085E12EADF5FDBA20B1806363CACA2D3
{
// System.Int32 System.Security.Cryptography.X509Certificates.X509NameType::value__
int32_t ___value___2;
};
// System.Security.Cryptography.X509Certificates.X509RevocationFlag
struct X509RevocationFlag_t007BADE584CC58406E19C6B8BC93366FEAB17126
{
// System.Int32 System.Security.Cryptography.X509Certificates.X509RevocationFlag::value__
int32_t ___value___2;
};
// System.Security.Cryptography.X509Certificates.X509RevocationMode
struct X509RevocationMode_t952728D003111036C0DF94B0F66FF02B7DB04E62
{
// System.Int32 System.Security.Cryptography.X509Certificates.X509RevocationMode::value__
int32_t ___value___2;
};
// System.Security.Cryptography.X509Certificates.X509VerificationFlags
struct X509VerificationFlags_tA582DCC55F39CC9E742C18B7BE953D4CC3DF8FCC
{
// System.Int32 System.Security.Cryptography.X509Certificates.X509VerificationFlags::value__
int32_t ___value___2;
};
// Internal.Cryptography.Pal.CertificateData/<ReadReverseRdns>d__21
struct U3CReadReverseRdnsU3Ed__21_t6DC5309953340D6F3CAF345220E2D0AAD878D3DE : public RuntimeObject
{
// System.Int32 Internal.Cryptography.Pal.CertificateData/<ReadReverseRdns>d__21::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Collections.Generic.KeyValuePair`2<System.String,System.String> Internal.Cryptography.Pal.CertificateData/<ReadReverseRdns>d__21::<>2__current
KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A ___U3CU3E2__current_1;
// System.Int32 Internal.Cryptography.Pal.CertificateData/<ReadReverseRdns>d__21::<>l__initialThreadId
int32_t ___U3CU3El__initialThreadId_2;
// System.Security.Cryptography.X509Certificates.X500DistinguishedName Internal.Cryptography.Pal.CertificateData/<ReadReverseRdns>d__21::name
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* ___name_3;
// System.Security.Cryptography.X509Certificates.X500DistinguishedName Internal.Cryptography.Pal.CertificateData/<ReadReverseRdns>d__21::<>3__name
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* ___U3CU3E3__name_4;
// System.Collections.Generic.Stack`1<System.Security.Cryptography.DerSequenceReader> Internal.Cryptography.Pal.CertificateData/<ReadReverseRdns>d__21::<rdnReaders>5__2
Stack_1_t11FC055BC8A112A4D3474F6FA0DCAC26D397C08C* ___U3CrdnReadersU3E5__2_5;
// System.Security.Cryptography.DerSequenceReader Internal.Cryptography.Pal.CertificateData/<ReadReverseRdns>d__21::<rdnReader>5__3
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* ___U3CrdnReaderU3E5__3_6;
};
// System.Security.Cryptography.DerSequenceReader/DerTag
struct DerTag_t2648C8403BA73716ED1F27F26CD949F8AEEF2F59
{
// System.Byte System.Security.Cryptography.DerSequenceReader/DerTag::value__
uint8_t ___value___2;
};
// System.Net.HttpWebRequest/NtlmAuthState
struct NtlmAuthState_t86300FA34030B23F6485BD85BC196D899F5737A9
{
// System.Int32 System.Net.HttpWebRequest/NtlmAuthState::value__
int32_t ___value___2;
};
// Mono.Net.Security.MobileAuthenticatedStream/Operation
struct Operation_tC35F3423442F066D3B3CB2E5FCC61CEA2D618017
{
// System.Int32 Mono.Net.Security.MobileAuthenticatedStream/Operation::value__
int32_t ___value___2;
};
// Mono.Net.Security.MobileAuthenticatedStream/OperationType
struct OperationType_t4A96C6280F60930DC499430C3937AC5E8965D2A9
{
// System.Int32 Mono.Net.Security.MobileAuthenticatedStream/OperationType::value__
int32_t ___value___2;
};
// Mono.Unity.UnityTls/unitytls_ciphersuite
struct unitytls_ciphersuite_tF2E2A5E37E9884968F53B9DF639B4008513008CE
{
// System.UInt32 Mono.Unity.UnityTls/unitytls_ciphersuite::value__
uint32_t ___value___2;
};
// Mono.Unity.UnityTls/unitytls_error_code
struct unitytls_error_code_tFDFCC5EE8771438D311CAB28FC8D37025E5BD6BE
{
// System.UInt32 Mono.Unity.UnityTls/unitytls_error_code::value__
uint32_t ___value___2;
};
// Mono.Unity.UnityTls/unitytls_protocol
struct unitytls_protocol_t08A2DE5BF736B214E28F8D60B84B2648DE327FD7
{
// System.UInt32 Mono.Unity.UnityTls/unitytls_protocol::value__
uint32_t ___value___2;
};
// Mono.Unity.UnityTls/unitytls_x509verify_result
struct unitytls_x509verify_result_tBD0B93AE208F14C2C6CD925F0702A269BFE66FF0
{
// System.UInt32 Mono.Unity.UnityTls/unitytls_x509verify_result::value__
uint32_t ___value___2;
};
// System.Uri/Flags
struct Flags_t47CF4DB4036A6A539AFA6EE39C75F772E865E897
{
// System.UInt64 System.Uri/Flags::value__
uint64_t ___value___2;
};
// System.Net.WebConnectionTunnel/NtlmAuthState
struct NtlmAuthState_t00FF6708A0532E8AF7D2B0B4C386421949AD5772
{
// System.Int32 System.Net.WebConnectionTunnel/NtlmAuthState::value__
int32_t ___value___2;
};
// System.Nullable`1<Internal.Cryptography.Pal.GeneralNameType>
struct Nullable_1_tD474435A767EA9EC7D78FDCE2CF95E400CD4B5EA
{
// System.Boolean System.Nullable`1::hasValue
bool ___hasValue_0;
// T System.Nullable`1::value
int32_t ___value_1;
};
// System.Nullable`1<System.Int32Enum>
struct Nullable_1_t163D49A1147F217B7BD43BE8ACC8A5CC6B846D14
{
// System.Boolean System.Nullable`1::hasValue
bool ___hasValue_0;
// T System.Nullable`1::value
int32_t ___value_1;
};
// System.Nullable`1<Mono.Security.Interface.MonoSslPolicyErrors>
struct Nullable_1_t732CF400959D84218642820F71E43BA47619AD00
{
// System.Boolean System.Nullable`1::hasValue
bool ___hasValue_0;
// T System.Nullable`1::value
int32_t ___value_1;
};
// System.Nullable`1<Mono.Security.Interface.TlsProtocols>
struct Nullable_1_t9A98093485034F2B86BC66B725022122E0E5B2A4
{
// System.Boolean System.Nullable`1::hasValue
bool ___hasValue_0;
// T System.Nullable`1::value
int32_t ___value_1;
};
// System.ReadOnlySpan`1<System.Char>
struct ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1
{
// System.ByReference`1<T> System.ReadOnlySpan`1::_pointer
ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 ____pointer_0;
// System.Int32 System.ReadOnlySpan`1::_length
int32_t ____length_1;
};
// System.Span`1<System.Char>
struct Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D
{
// System.ByReference`1<T> System.Span`1::_pointer
ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 ____pointer_0;
// System.Int32 System.Span`1::_length
int32_t ____length_1;
};
// System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>
struct Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7 : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572
{
// TResult System.Threading.Tasks.Task`1::m_result
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___m_result_22;
};
struct Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7_StaticFields
{
// System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_defaultFactory
TaskFactory_1_tAE919A7BAE255B9F6EF5F440E30D3AF6A9C9322E* ___s_defaultFactory_23;
};
// System.Threading.Tasks.Task`1<Mono.Net.Security.AsyncProtocolResult>
struct Task_1_t7B91A92D06E8BCB69911B6822DD99220DDB735EE : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572
{
// TResult System.Threading.Tasks.Task`1::m_result
AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05* ___m_result_22;
};
struct Task_1_t7B91A92D06E8BCB69911B6822DD99220DDB735EE_StaticFields
{
// System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_defaultFactory
TaskFactory_1_tAB32983F69E1CF7B3FCBBDEEB8F535445D5F2372* ___s_defaultFactory_23;
};
// 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.IO.Stream>
struct Task_1_t06484715029D51A4420723456D165BAC63798F8D : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572
{
// TResult System.Threading.Tasks.Task`1::m_result
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___m_result_22;
};
struct Task_1_t06484715029D51A4420723456D165BAC63798F8D_StaticFields
{
// System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_defaultFactory
TaskFactory_1_tA522288A50DBBA4F2B2C1B7903E790568AC5E651* ___s_defaultFactory_23;
};
// System.WeakReference`1<System.Net.Security.SslStream>
struct WeakReference_1_t0E5A403EFE44DFDF760845211C10561ED81417A3 : public RuntimeObject
{
// System.Runtime.InteropServices.GCHandle System.WeakReference`1::handle
GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC ___handle_0;
// System.Boolean System.WeakReference`1::trackResurrection
bool ___trackResurrection_1;
};
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder
struct AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06
{
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder::m_builder
AsyncTaskMethodBuilder_1_tE88892A6B2F97B5D44B7C3EE2DBEED85743412AC ___m_builder_1;
};
struct AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06_StaticFields
{
// System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder::s_cachedCompleted
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* ___s_cachedCompleted_0;
};
// Native definition for P/Invoke marshalling of System.Runtime.CompilerServices.AsyncTaskMethodBuilder
struct AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06_marshaled_pinvoke
{
AsyncTaskMethodBuilder_1_tE88892A6B2F97B5D44B7C3EE2DBEED85743412AC ___m_builder_1;
};
// Native definition for COM marshalling of System.Runtime.CompilerServices.AsyncTaskMethodBuilder
struct AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06_marshaled_com
{
AsyncTaskMethodBuilder_1_tE88892A6B2F97B5D44B7C3EE2DBEED85743412AC ___m_builder_1;
};
// Mono.Security.Protocol.Ntlm.MessageBase
struct MessageBase_t173306F2152A17C53A4CD23954A751EE471BD708 : public RuntimeObject
{
// System.Int32 Mono.Security.Protocol.Ntlm.MessageBase::_type
int32_t ____type_1;
// Mono.Security.Protocol.Ntlm.NtlmFlags Mono.Security.Protocol.Ntlm.MessageBase::_flags
int32_t ____flags_2;
};
struct MessageBase_t173306F2152A17C53A4CD23954A751EE471BD708_StaticFields
{
// System.Byte[] Mono.Security.Protocol.Ntlm.MessageBase::header
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___header_0;
};
// Mono.Net.Security.MobileAuthenticatedStream
struct MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E : public AuthenticatedStream_t8DCF41E151F705E2494FC7836F5E2EF7C539FA39
{
// Mono.Net.Security.MobileTlsContext Mono.Net.Security.MobileAuthenticatedStream::xobileTlsContext
MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* ___xobileTlsContext_6;
// System.Runtime.ExceptionServices.ExceptionDispatchInfo Mono.Net.Security.MobileAuthenticatedStream::lastException
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* ___lastException_7;
// Mono.Net.Security.AsyncProtocolRequest Mono.Net.Security.MobileAuthenticatedStream::asyncHandshakeRequest
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* ___asyncHandshakeRequest_8;
// Mono.Net.Security.AsyncProtocolRequest Mono.Net.Security.MobileAuthenticatedStream::asyncReadRequest
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* ___asyncReadRequest_9;
// Mono.Net.Security.AsyncProtocolRequest Mono.Net.Security.MobileAuthenticatedStream::asyncWriteRequest
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* ___asyncWriteRequest_10;
// Mono.Net.Security.BufferOffsetSize2 Mono.Net.Security.MobileAuthenticatedStream::readBuffer
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* ___readBuffer_11;
// Mono.Net.Security.BufferOffsetSize2 Mono.Net.Security.MobileAuthenticatedStream::writeBuffer
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* ___writeBuffer_12;
// System.Object Mono.Net.Security.MobileAuthenticatedStream::ioLock
RuntimeObject* ___ioLock_13;
// System.Int32 Mono.Net.Security.MobileAuthenticatedStream::closeRequested
int32_t ___closeRequested_14;
// System.Boolean Mono.Net.Security.MobileAuthenticatedStream::shutdown
bool ___shutdown_15;
// Mono.Net.Security.MobileAuthenticatedStream/Operation Mono.Net.Security.MobileAuthenticatedStream::operation
int32_t ___operation_16;
// System.Net.Security.SslStream Mono.Net.Security.MobileAuthenticatedStream::<SslStream>k__BackingField
SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* ___U3CSslStreamU3Ek__BackingField_18;
// Mono.Security.Interface.MonoTlsSettings Mono.Net.Security.MobileAuthenticatedStream::<Settings>k__BackingField
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* ___U3CSettingsU3Ek__BackingField_19;
// Mono.Net.Security.MobileTlsProvider Mono.Net.Security.MobileAuthenticatedStream::<Provider>k__BackingField
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* ___U3CProviderU3Ek__BackingField_20;
// System.String Mono.Net.Security.MobileAuthenticatedStream::<TargetHost>k__BackingField
String_t* ___U3CTargetHostU3Ek__BackingField_21;
// System.Int32 Mono.Net.Security.MobileAuthenticatedStream::ID
int32_t ___ID_23;
};
struct MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_StaticFields
{
// System.Int32 Mono.Net.Security.MobileAuthenticatedStream::uniqueNameInteger
int32_t ___uniqueNameInteger_17;
// System.Int32 Mono.Net.Security.MobileAuthenticatedStream::nextId
int32_t ___nextId_22;
};
// Mono.Net.Security.MobileTlsContext
struct MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476 : public RuntimeObject
{
// Mono.Net.Security.ChainValidationHelper Mono.Net.Security.MobileTlsContext::certificateValidator
ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755* ___certificateValidator_0;
// Mono.Net.Security.MonoSslAuthenticationOptions Mono.Net.Security.MobileTlsContext::<Options>k__BackingField
MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* ___U3COptionsU3Ek__BackingField_1;
// Mono.Net.Security.MobileAuthenticatedStream Mono.Net.Security.MobileTlsContext::<Parent>k__BackingField
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* ___U3CParentU3Ek__BackingField_2;
// System.Boolean Mono.Net.Security.MobileTlsContext::<IsServer>k__BackingField
bool ___U3CIsServerU3Ek__BackingField_3;
// System.String Mono.Net.Security.MobileTlsContext::<TargetHost>k__BackingField
String_t* ___U3CTargetHostU3Ek__BackingField_4;
// System.String Mono.Net.Security.MobileTlsContext::<ServerName>k__BackingField
String_t* ___U3CServerNameU3Ek__BackingField_5;
// System.Boolean Mono.Net.Security.MobileTlsContext::<AskForClientCertificate>k__BackingField
bool ___U3CAskForClientCertificateU3Ek__BackingField_6;
// System.Security.Authentication.SslProtocols Mono.Net.Security.MobileTlsContext::<EnabledProtocols>k__BackingField
int32_t ___U3CEnabledProtocolsU3Ek__BackingField_7;
// System.Security.Cryptography.X509Certificates.X509CertificateCollection Mono.Net.Security.MobileTlsContext::<ClientCertificates>k__BackingField
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* ___U3CClientCertificatesU3Ek__BackingField_8;
// System.Security.Cryptography.X509Certificates.X509Certificate Mono.Net.Security.MobileTlsContext::<LocalServerCertificate>k__BackingField
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___U3CLocalServerCertificateU3Ek__BackingField_9;
};
// Mono.Security.Interface.MonoTlsConnectionInfo
struct MonoTlsConnectionInfo_t3286AE494AEF3E62C9BE40FAC497849DFA193964 : public RuntimeObject
{
// Mono.Security.Interface.CipherSuiteCode Mono.Security.Interface.MonoTlsConnectionInfo::<CipherSuiteCode>k__BackingField
uint16_t ___U3CCipherSuiteCodeU3Ek__BackingField_0;
// Mono.Security.Interface.TlsProtocols Mono.Security.Interface.MonoTlsConnectionInfo::<ProtocolVersion>k__BackingField
int32_t ___U3CProtocolVersionU3Ek__BackingField_1;
// System.String Mono.Security.Interface.MonoTlsConnectionInfo::<PeerDomainName>k__BackingField
String_t* ___U3CPeerDomainNameU3Ek__BackingField_2;
};
// Mono.Net.Security.MonoTlsStream
struct MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206 : public RuntimeObject
{
// Mono.Net.Security.MobileTlsProvider Mono.Net.Security.MonoTlsStream::provider
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* ___provider_0;
// System.Net.Sockets.NetworkStream Mono.Net.Security.MonoTlsStream::networkStream
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* ___networkStream_1;
// System.Net.HttpWebRequest Mono.Net.Security.MonoTlsStream::request
HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* ___request_2;
// Mono.Security.Interface.MonoTlsSettings Mono.Net.Security.MonoTlsStream::settings
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* ___settings_3;
// System.Net.Security.SslStream Mono.Net.Security.MonoTlsStream::sslStream
SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* ___sslStream_4;
// System.Object Mono.Net.Security.MonoTlsStream::sslStreamLock
RuntimeObject* ___sslStreamLock_5;
// System.Net.WebExceptionStatus Mono.Net.Security.MonoTlsStream::status
int32_t ___status_6;
// System.Boolean Mono.Net.Security.MonoTlsStream::<CertificateValidationFailed>k__BackingField
bool ___U3CCertificateValidationFailedU3Ek__BackingField_7;
};
// 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.Security.Cryptography.Oid
struct Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287 : public RuntimeObject
{
// System.String System.Security.Cryptography.Oid::_value
String_t* ____value_0;
// System.String System.Security.Cryptography.Oid::_friendlyName
String_t* ____friendlyName_1;
// System.Security.Cryptography.OidGroup System.Security.Cryptography.Oid::_group
int32_t ____group_2;
};
// Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid
struct SafeHandleZeroOrMinusOneIsInvalid_tC152552D137451170B3B1A304227B0ECADB65629 : public SafeHandle_tC1A4DA80DA89B867CC011B707A07275230321BF7
{
};
// Microsoft.Win32.SafeHandles.SafePasswordHandle
struct SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463 : public SafeHandle_tC1A4DA80DA89B867CC011B707A07275230321BF7
{
};
// System.Net.ServicePointManager
struct ServicePointManager_t124F9D59A0C6581AC0C21156D657A2EB3C7EE120 : public RuntimeObject
{
};
struct ServicePointManager_t124F9D59A0C6581AC0C21156D657A2EB3C7EE120_StaticFields
{
// System.Collections.Concurrent.ConcurrentDictionary`2<System.Net.ServicePointManager/SPKey,System.Net.ServicePoint> System.Net.ServicePointManager::servicePoints
ConcurrentDictionary_2_tA479A4D42D40E0772A26F55B2BB647B6B7B8BDD6* ___servicePoints_0;
// System.Net.ICertificatePolicy System.Net.ServicePointManager::policy
RuntimeObject* ___policy_1;
// System.Int32 System.Net.ServicePointManager::defaultConnectionLimit
int32_t ___defaultConnectionLimit_2;
// System.Int32 System.Net.ServicePointManager::maxServicePointIdleTime
int32_t ___maxServicePointIdleTime_3;
// System.Int32 System.Net.ServicePointManager::maxServicePoints
int32_t ___maxServicePoints_4;
// System.Int32 System.Net.ServicePointManager::dnsRefreshTimeout
int32_t ___dnsRefreshTimeout_5;
// System.Boolean System.Net.ServicePointManager::_checkCRL
bool ____checkCRL_6;
// System.Net.SecurityProtocolType System.Net.ServicePointManager::_securityProtocol
int32_t ____securityProtocol_7;
// System.Boolean System.Net.ServicePointManager::expectContinue
bool ___expectContinue_8;
// System.Boolean System.Net.ServicePointManager::useNagle
bool ___useNagle_9;
// System.Net.ServerCertValidationCallback System.Net.ServicePointManager::server_cert_cb
ServerCertValidationCallback_tC7A568060163FC6810AF9817F26F986C78CFC27F* ___server_cert_cb_10;
// System.Boolean System.Net.ServicePointManager::tcp_keepalive
bool ___tcp_keepalive_11;
// System.Int32 System.Net.ServicePointManager::tcp_keepalive_time
int32_t ___tcp_keepalive_time_12;
// System.Int32 System.Net.ServicePointManager::tcp_keepalive_interval
int32_t ___tcp_keepalive_interval_13;
};
// 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.Net.Security.SslClientAuthenticationOptions
struct SslClientAuthenticationOptions_tA5277DAACAFB33887D2513D9399C5154B0D5CBC9 : public RuntimeObject
{
// System.Net.Security.EncryptionPolicy System.Net.Security.SslClientAuthenticationOptions::_encryptionPolicy
int32_t ____encryptionPolicy_0;
// System.Security.Cryptography.X509Certificates.X509RevocationMode System.Net.Security.SslClientAuthenticationOptions::_checkCertificateRevocation
int32_t ____checkCertificateRevocation_1;
// System.Security.Authentication.SslProtocols System.Net.Security.SslClientAuthenticationOptions::_enabledSslProtocols
int32_t ____enabledSslProtocols_2;
// System.Boolean System.Net.Security.SslClientAuthenticationOptions::_allowRenegotiation
bool ____allowRenegotiation_3;
// System.String System.Net.Security.SslClientAuthenticationOptions::<TargetHost>k__BackingField
String_t* ___U3CTargetHostU3Ek__BackingField_4;
// System.Security.Cryptography.X509Certificates.X509CertificateCollection System.Net.Security.SslClientAuthenticationOptions::<ClientCertificates>k__BackingField
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* ___U3CClientCertificatesU3Ek__BackingField_5;
};
// System.Net.Security.SslStream
struct SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27 : public AuthenticatedStream_t8DCF41E151F705E2494FC7836F5E2EF7C539FA39
{
// Mono.Net.Security.MobileTlsProvider System.Net.Security.SslStream::provider
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* ___provider_6;
// Mono.Security.Interface.MonoTlsSettings System.Net.Security.SslStream::settings
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* ___settings_7;
// System.Net.Security.RemoteCertificateValidationCallback System.Net.Security.SslStream::validationCallback
RemoteCertificateValidationCallback_t2F4C5801F96B2C2BF934511796C5BFEAEBF01955* ___validationCallback_8;
// System.Net.Security.LocalCertificateSelectionCallback System.Net.Security.SslStream::selectionCallback
LocalCertificateSelectionCallback_t71A03329606A5610ECC62BFBE6327C1EF9195859* ___selectionCallback_9;
// Mono.Net.Security.MobileAuthenticatedStream System.Net.Security.SslStream::impl
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* ___impl_10;
// System.Boolean System.Net.Security.SslStream::explicitSettings
bool ___explicitSettings_11;
};
// Mono.Net.Security.SystemCertificateValidator
struct SystemCertificateValidator_tA4E6BC166E3F3CEDF8BAE495922494EE0A597D16 : public RuntimeObject
{
};
struct SystemCertificateValidator_tA4E6BC166E3F3CEDF8BAE495922494EE0A597D16_StaticFields
{
// System.Boolean Mono.Net.Security.SystemCertificateValidator::is_macosx
bool ___is_macosx_0;
// System.Security.Cryptography.X509Certificates.X509KeyUsageFlags Mono.Net.Security.SystemCertificateValidator::s_flags
int32_t ___s_flags_1;
};
// System.SystemException
struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
{
};
// Mono.Security.Interface.TlsException
struct TlsException_tC2DD153B101F6116975F36613D7F7C009C5664E3 : public Exception_t
{
// Mono.Security.Interface.Alert Mono.Security.Interface.TlsException::alert
Alert_t901529B47B3E318E68713A3E328935BC768B23F3* ___alert_18;
};
// 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.Net.WebConnectionTunnel
struct WebConnectionTunnel_tA394C00C106FAA694D0D5B7A5B03B3B52328DC0F : public RuntimeObject
{
// System.Net.HttpWebRequest System.Net.WebConnectionTunnel::<Request>k__BackingField
HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* ___U3CRequestU3Ek__BackingField_0;
// System.Uri System.Net.WebConnectionTunnel::<ConnectUri>k__BackingField
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___U3CConnectUriU3Ek__BackingField_1;
// System.Net.HttpWebRequest System.Net.WebConnectionTunnel::connectRequest
HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* ___connectRequest_2;
// System.Net.WebConnectionTunnel/NtlmAuthState System.Net.WebConnectionTunnel::ntlmAuthState
int32_t ___ntlmAuthState_3;
// System.Boolean System.Net.WebConnectionTunnel::<Success>k__BackingField
bool ___U3CSuccessU3Ek__BackingField_4;
// System.Boolean System.Net.WebConnectionTunnel::<CloseConnection>k__BackingField
bool ___U3CCloseConnectionU3Ek__BackingField_5;
// System.Int32 System.Net.WebConnectionTunnel::<StatusCode>k__BackingField
int32_t ___U3CStatusCodeU3Ek__BackingField_6;
// System.String System.Net.WebConnectionTunnel::<StatusDescription>k__BackingField
String_t* ___U3CStatusDescriptionU3Ek__BackingField_7;
// System.String[] System.Net.WebConnectionTunnel::<Challenge>k__BackingField
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___U3CChallengeU3Ek__BackingField_8;
// System.Net.WebHeaderCollection System.Net.WebConnectionTunnel::<Headers>k__BackingField
WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* ___U3CHeadersU3Ek__BackingField_9;
// System.Version System.Net.WebConnectionTunnel::<ProxyVersion>k__BackingField
Version_tE426DB5655D0F22920AE16A2AA9AB7781B8255A7* ___U3CProxyVersionU3Ek__BackingField_10;
// System.Byte[] System.Net.WebConnectionTunnel::<Data>k__BackingField
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___U3CDataU3Ek__BackingField_11;
};
// 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.Cryptography.X509Certificates.X509Certificate2
struct X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D : public X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4
{
// System.Byte[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Security.Cryptography.X509Certificates.X509Certificate2::lazyRawData
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___lazyRawData_10;
// System.Security.Cryptography.Oid modreq(System.Runtime.CompilerServices.IsVolatile) System.Security.Cryptography.X509Certificates.X509Certificate2::lazySignatureAlgorithm
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* ___lazySignatureAlgorithm_11;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Security.Cryptography.X509Certificates.X509Certificate2::lazyVersion
int32_t ___lazyVersion_12;
// System.Security.Cryptography.X509Certificates.X500DistinguishedName modreq(System.Runtime.CompilerServices.IsVolatile) System.Security.Cryptography.X509Certificates.X509Certificate2::lazySubjectName
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* ___lazySubjectName_13;
// System.Security.Cryptography.X509Certificates.X500DistinguishedName modreq(System.Runtime.CompilerServices.IsVolatile) System.Security.Cryptography.X509Certificates.X509Certificate2::lazyIssuerName
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* ___lazyIssuerName_14;
// System.Security.Cryptography.X509Certificates.PublicKey modreq(System.Runtime.CompilerServices.IsVolatile) System.Security.Cryptography.X509Certificates.X509Certificate2::lazyPublicKey
PublicKey_t489DEA83CED0412BF5E066D3BC4527361DCFC405* ___lazyPublicKey_15;
// System.Security.Cryptography.AsymmetricAlgorithm modreq(System.Runtime.CompilerServices.IsVolatile) System.Security.Cryptography.X509Certificates.X509Certificate2::lazyPrivateKey
AsymmetricAlgorithm_t5E7E9D26CE0EDCAABD84F616A44E476473BA2AF8* ___lazyPrivateKey_16;
// System.Security.Cryptography.X509Certificates.X509ExtensionCollection modreq(System.Runtime.CompilerServices.IsVolatile) System.Security.Cryptography.X509Certificates.X509Certificate2::lazyExtensions
X509ExtensionCollection_t03E0B5DD255DCFF3FE91FE55C5127BC834ABF4D0* ___lazyExtensions_17;
};
// System.Security.Cryptography.X509Certificates.X509Certificate2ImplUnix
struct X509Certificate2ImplUnix_tF8DFA7FF05CC33C9010EFDCA21A827247CB8E86D : public X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25
{
// System.Boolean System.Security.Cryptography.X509Certificates.X509Certificate2ImplUnix::readCertData
bool ___readCertData_0;
// Internal.Cryptography.Pal.CertificateData System.Security.Cryptography.X509Certificates.X509Certificate2ImplUnix::certData
CertificateData_t40A99242A632202B3115D05913ED12CAA78F65B1 ___certData_1;
};
// System.Security.Cryptography.X509Certificates.X509ChainElement
struct X509ChainElement_t95FFAD3F504A1CA731ECCBA88C5CB3B0EE28786D : public RuntimeObject
{
// System.Security.Cryptography.X509Certificates.X509Certificate2 System.Security.Cryptography.X509Certificates.X509ChainElement::certificate
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* ___certificate_0;
// System.Security.Cryptography.X509Certificates.X509ChainStatus[] System.Security.Cryptography.X509Certificates.X509ChainElement::status
X509ChainStatusU5BU5D_tA4CB502E13E6D62B9C824B15F3193FE7EC889299* ___status_1;
// System.String System.Security.Cryptography.X509Certificates.X509ChainElement::info
String_t* ___info_2;
// System.Security.Cryptography.X509Certificates.X509ChainStatusFlags System.Security.Cryptography.X509Certificates.X509ChainElement::compressed_status_flags
int32_t ___compressed_status_flags_3;
};
// System.Security.Cryptography.X509Certificates.X509ChainPolicy
struct X509ChainPolicy_t34F49B4067492A1E5F91DD91FA7C934B68D880EC : public RuntimeObject
{
// System.Security.Cryptography.OidCollection System.Security.Cryptography.X509Certificates.X509ChainPolicy::apps
OidCollection_tAAFE5AD288B6365182B7C9D4D66D0DA9A56712B3* ___apps_0;
// System.Security.Cryptography.OidCollection System.Security.Cryptography.X509Certificates.X509ChainPolicy::cert
OidCollection_tAAFE5AD288B6365182B7C9D4D66D0DA9A56712B3* ___cert_1;
// System.Security.Cryptography.X509Certificates.X509CertificateCollection System.Security.Cryptography.X509Certificates.X509ChainPolicy::store
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* ___store_2;
// System.Security.Cryptography.X509Certificates.X509Certificate2Collection System.Security.Cryptography.X509Certificates.X509ChainPolicy::store2
X509Certificate2Collection_t703D5135E74BA606B564EF174E08964B9C3DADEB* ___store2_3;
// System.Security.Cryptography.X509Certificates.X509RevocationFlag System.Security.Cryptography.X509Certificates.X509ChainPolicy::rflag
int32_t ___rflag_4;
// System.Security.Cryptography.X509Certificates.X509RevocationMode System.Security.Cryptography.X509Certificates.X509ChainPolicy::mode
int32_t ___mode_5;
// System.TimeSpan System.Security.Cryptography.X509Certificates.X509ChainPolicy::timeout
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___timeout_6;
// System.Security.Cryptography.X509Certificates.X509VerificationFlags System.Security.Cryptography.X509Certificates.X509ChainPolicy::vflags
int32_t ___vflags_7;
// System.DateTime System.Security.Cryptography.X509Certificates.X509ChainPolicy::vtime
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___vtime_8;
};
// System.Security.Cryptography.X509Certificates.X509ChainStatus
struct X509ChainStatus_t5A57DDA24AA1FCA9F2B8D70B767CDDF388E4A80D
{
// System.Security.Cryptography.X509Certificates.X509ChainStatusFlags System.Security.Cryptography.X509Certificates.X509ChainStatus::status
int32_t ___status_0;
// System.String System.Security.Cryptography.X509Certificates.X509ChainStatus::info
String_t* ___info_1;
};
// Native definition for P/Invoke marshalling of System.Security.Cryptography.X509Certificates.X509ChainStatus
struct X509ChainStatus_t5A57DDA24AA1FCA9F2B8D70B767CDDF388E4A80D_marshaled_pinvoke
{
int32_t ___status_0;
char* ___info_1;
};
// Native definition for COM marshalling of System.Security.Cryptography.X509Certificates.X509ChainStatus
struct X509ChainStatus_t5A57DDA24AA1FCA9F2B8D70B767CDDF388E4A80D_marshaled_com
{
int32_t ___status_0;
Il2CppChar* ___info_1;
};
// Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25
struct U3CInnerReadU3Ed__25_t05729A3E67E2FF3B23435B02B158BDB2F3C7C84E
{
// System.Int32 Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>> Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25::<>t__builder
AsyncTaskMethodBuilder_1_t7BA09CA1BB279AA706D98A618EE11038FD1985F7 ___U3CU3Et__builder_1;
// Mono.Net.Security.AsyncProtocolRequest Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25::<>4__this
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* ___U3CU3E4__this_2;
// System.Threading.CancellationToken Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25::cancellationToken
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken_3;
// System.Nullable`1<System.Int32> Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25::<totalRead>5__2
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___U3CtotalReadU3E5__2_4;
// System.Int32 Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25::<requestedSize>5__3
int32_t ___U3CrequestedSizeU3E5__3_5;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32> Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25::<>u__1
ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80 ___U3CU3Eu__1_6;
};
// Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23
struct U3CStartOperationU3Ed__23_t9FFB39587AAED5C56B39C31D1D2C91BF10B7D2A8
{
// System.Int32 Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<Mono.Net.Security.AsyncProtocolResult> Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23::<>t__builder
AsyncTaskMethodBuilder_1_tB85AB2AF366A9742C159DD6FBD3FE38EDD13543B ___U3CU3Et__builder_1;
// Mono.Net.Security.AsyncProtocolRequest Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23::<>4__this
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* ___U3CU3E4__this_2;
// System.Threading.CancellationToken Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23::cancellationToken
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken_3;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23::<>u__1
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 ___U3CU3Eu__1_4;
};
// System.Net.HttpWebRequest/AuthorizationState
struct AuthorizationState_t79311A9A938E608B506F10F92C0789E46C8FCA32
{
// System.Net.HttpWebRequest System.Net.HttpWebRequest/AuthorizationState::request
HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* ___request_0;
// System.Boolean System.Net.HttpWebRequest/AuthorizationState::isProxy
bool ___isProxy_1;
// System.Boolean System.Net.HttpWebRequest/AuthorizationState::isCompleted
bool ___isCompleted_2;
// System.Net.HttpWebRequest/NtlmAuthState System.Net.HttpWebRequest/AuthorizationState::ntlm_auth_state
int32_t ___ntlm_auth_state_3;
};
// Native definition for P/Invoke marshalling of System.Net.HttpWebRequest/AuthorizationState
struct AuthorizationState_t79311A9A938E608B506F10F92C0789E46C8FCA32_marshaled_pinvoke
{
HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* ___request_0;
int32_t ___isProxy_1;
int32_t ___isCompleted_2;
int32_t ___ntlm_auth_state_3;
};
// Native definition for COM marshalling of System.Net.HttpWebRequest/AuthorizationState
struct AuthorizationState_t79311A9A938E608B506F10F92C0789E46C8FCA32_marshaled_com
{
HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* ___request_0;
int32_t ___isProxy_1;
int32_t ___isCompleted_2;
int32_t ___ntlm_auth_state_3;
};
// Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66
struct U3CInnerReadU3Ed__66_tDA84F0E1193C16C54FE1735B4B5F77FB65A68982
{
// System.Int32 Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32> Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66::<>t__builder
AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019 ___U3CU3Et__builder_1;
// Mono.Net.Security.MobileAuthenticatedStream Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66::<>4__this
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* ___U3CU3E4__this_2;
// System.Threading.CancellationToken Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66::cancellationToken
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken_3;
// System.Int32 Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66::requestedSize
int32_t ___requestedSize_4;
// System.Boolean Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66::sync
bool ___sync_5;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32> Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66::<>u__1
ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80 ___U3CU3Eu__1_6;
};
// Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__57
struct U3CStartOperationU3Ed__57_tCA8E70BCBB1E41B299D65B4CF483D4CBF7A11368
{
// System.Int32 Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__57::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32> Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__57::<>t__builder
AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019 ___U3CU3Et__builder_1;
// Mono.Net.Security.MobileAuthenticatedStream Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__57::<>4__this
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* ___U3CU3E4__this_2;
// Mono.Net.Security.MobileAuthenticatedStream/OperationType Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__57::type
int32_t ___type_3;
// Mono.Net.Security.AsyncProtocolRequest Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__57::asyncRequest
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* ___asyncRequest_4;
// System.Threading.CancellationToken Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__57::cancellationToken
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken_5;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<Mono.Net.Security.AsyncProtocolResult> Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__57::<>u__1
ConfiguredTaskAwaiter_t150EB7231CA854AE162139EF92711A3C957F9591 ___U3CU3Eu__1_6;
};
// Mono.Net.Security.MonoTlsStream/<CreateStream>d__18
struct U3CCreateStreamU3Ed__18_tB6902486B51A9F1F578114D893BEC030E9A29950
{
// System.Int32 Mono.Net.Security.MonoTlsStream/<CreateStream>d__18::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.IO.Stream> Mono.Net.Security.MonoTlsStream/<CreateStream>d__18::<>t__builder
AsyncTaskMethodBuilder_1_t923DC16ADFF754593B125800F38ED37C920B14C1 ___U3CU3Et__builder_1;
// Mono.Net.Security.MonoTlsStream Mono.Net.Security.MonoTlsStream/<CreateStream>d__18::<>4__this
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* ___U3CU3E4__this_2;
// System.Net.WebConnectionTunnel Mono.Net.Security.MonoTlsStream/<CreateStream>d__18::tunnel
WebConnectionTunnel_tA394C00C106FAA694D0D5B7A5B03B3B52328DC0F* ___tunnel_3;
// System.Threading.CancellationToken Mono.Net.Security.MonoTlsStream/<CreateStream>d__18::cancellationToken
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken_4;
// System.Net.Sockets.Socket Mono.Net.Security.MonoTlsStream/<CreateStream>d__18::<socket>5__2
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* ___U3CsocketU3E5__2_5;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter Mono.Net.Security.MonoTlsStream/<CreateStream>d__18::<>u__1
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 ___U3CU3Eu__1_6;
};
// Mono.Unity.UnityTls/unitytls_errorstate
struct unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902
{
// System.UInt32 Mono.Unity.UnityTls/unitytls_errorstate::magic
uint32_t ___magic_0;
// Mono.Unity.UnityTls/unitytls_error_code Mono.Unity.UnityTls/unitytls_errorstate::code
uint32_t ___code_1;
// System.UInt64 Mono.Unity.UnityTls/unitytls_errorstate::reserved
uint64_t ___reserved_2;
};
// Mono.Unity.UnityTls/unitytls_tlsctx_protocolrange
struct unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56
{
// Mono.Unity.UnityTls/unitytls_protocol Mono.Unity.UnityTls/unitytls_tlsctx_protocolrange::min
uint32_t ___min_0;
// Mono.Unity.UnityTls/unitytls_protocol Mono.Unity.UnityTls/unitytls_tlsctx_protocolrange::max
uint32_t ___max_1;
};
// System.Runtime.CompilerServices.ConditionalWeakTable`2/CreateValueCallback<System.Net.HttpWebRequest,Mono.Http.NtlmSession>
struct CreateValueCallback_t32241614308DD3BEEEAC77EFA55E573B54A5D1D2 : public MulticastDelegate_t
{
};
// System.Func`1<System.Int32>
struct Func_1_tC288CCB64EFD1F5FD49C3F8DE91FE62905E44BCD : public MulticastDelegate_t
{
};
// System.Func`2<System.Collections.Generic.KeyValuePair`2<System.String,System.String>,System.String>
struct Func_2_t0FD9221539E762B3867B2E3B6D6B3F90C6483088 : public MulticastDelegate_t
{
};
// System.Action
struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07 : public MulticastDelegate_t
{
};
// System.ArgumentException
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
// System.String System.ArgumentException::_paramName
String_t* ____paramName_18;
};
// System.Security.Authentication.AuthenticationException
struct AuthenticationException_tACF49ABE65B7CEABB69DE78FA8AE8B1771CDF6A8 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.Security.Cryptography.CryptographicException
struct CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.Net.HttpWebRequest
struct HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9 : public WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B
{
// System.Uri System.Net.HttpWebRequest::requestUri
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___requestUri_12;
// System.Uri System.Net.HttpWebRequest::actualUri
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___actualUri_13;
// System.Boolean System.Net.HttpWebRequest::hostChanged
bool ___hostChanged_14;
// System.Boolean System.Net.HttpWebRequest::allowAutoRedirect
bool ___allowAutoRedirect_15;
// System.Boolean System.Net.HttpWebRequest::allowBuffering
bool ___allowBuffering_16;
// System.Security.Cryptography.X509Certificates.X509CertificateCollection System.Net.HttpWebRequest::certificates
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* ___certificates_17;
// System.String System.Net.HttpWebRequest::connectionGroup
String_t* ___connectionGroup_18;
// System.Boolean System.Net.HttpWebRequest::haveContentLength
bool ___haveContentLength_19;
// System.Int64 System.Net.HttpWebRequest::contentLength
int64_t ___contentLength_20;
// System.Net.HttpContinueDelegate System.Net.HttpWebRequest::continueDelegate
HttpContinueDelegate_t174E5B124FF75DBAC627C6E41A0802A802EAE6D9* ___continueDelegate_21;
// System.Net.CookieContainer System.Net.HttpWebRequest::cookieContainer
CookieContainer_t54CCEBC3470E5D0699BB17928C171D7AFCA7614E* ___cookieContainer_22;
// System.Net.ICredentials System.Net.HttpWebRequest::credentials
RuntimeObject* ___credentials_23;
// System.Boolean System.Net.HttpWebRequest::haveResponse
bool ___haveResponse_24;
// System.Boolean System.Net.HttpWebRequest::requestSent
bool ___requestSent_25;
// System.Net.WebHeaderCollection System.Net.HttpWebRequest::webHeaders
WebHeaderCollection_tAF1CF77FB39D8E1EB782174E30566BAF55F71AE8* ___webHeaders_26;
// System.Boolean System.Net.HttpWebRequest::keepAlive
bool ___keepAlive_27;
// System.Int32 System.Net.HttpWebRequest::maxAutoRedirect
int32_t ___maxAutoRedirect_28;
// System.String System.Net.HttpWebRequest::mediaType
String_t* ___mediaType_29;
// System.String System.Net.HttpWebRequest::method
String_t* ___method_30;
// System.String System.Net.HttpWebRequest::initialMethod
String_t* ___initialMethod_31;
// System.Boolean System.Net.HttpWebRequest::pipelined
bool ___pipelined_32;
// System.Boolean System.Net.HttpWebRequest::preAuthenticate
bool ___preAuthenticate_33;
// System.Boolean System.Net.HttpWebRequest::usedPreAuth
bool ___usedPreAuth_34;
// System.Version System.Net.HttpWebRequest::version
Version_tE426DB5655D0F22920AE16A2AA9AB7781B8255A7* ___version_35;
// System.Boolean System.Net.HttpWebRequest::force_version
bool ___force_version_36;
// System.Version System.Net.HttpWebRequest::actualVersion
Version_tE426DB5655D0F22920AE16A2AA9AB7781B8255A7* ___actualVersion_37;
// System.Net.IWebProxy System.Net.HttpWebRequest::proxy
RuntimeObject* ___proxy_38;
// System.Boolean System.Net.HttpWebRequest::sendChunked
bool ___sendChunked_39;
// System.Net.ServicePoint System.Net.HttpWebRequest::servicePoint
ServicePoint_t5DB5939994CAA6A0DF221C5F58D59D1A6131CE29* ___servicePoint_40;
// System.Int32 System.Net.HttpWebRequest::timeout
int32_t ___timeout_41;
// System.Int32 System.Net.HttpWebRequest::continueTimeout
int32_t ___continueTimeout_42;
// System.Net.WebRequestStream System.Net.HttpWebRequest::writeStream
WebRequestStream_t731AE4852452BAA73C240BDC7DCBA42ADAD2BAAB* ___writeStream_43;
// System.Net.HttpWebResponse System.Net.HttpWebRequest::webResponse
HttpWebResponse_tF287E6CE296D3B6912CDEFEDE8FBF5A27D70AE0A* ___webResponse_44;
// System.Net.WebCompletionSource System.Net.HttpWebRequest::responseTask
WebCompletionSource_tA2A9E04ED689218A1B2FAFCFD8F358CE4CBD30C5* ___responseTask_45;
// System.Net.WebOperation System.Net.HttpWebRequest::currentOperation
WebOperation_t32CC0FAFF5B575DB5E11E5C50A7D7542A70D74C9* ___currentOperation_46;
// System.Int32 System.Net.HttpWebRequest::aborted
int32_t ___aborted_47;
// System.Boolean System.Net.HttpWebRequest::gotRequestStream
bool ___gotRequestStream_48;
// System.Int32 System.Net.HttpWebRequest::redirects
int32_t ___redirects_49;
// System.Boolean System.Net.HttpWebRequest::expectContinue
bool ___expectContinue_50;
// System.Boolean System.Net.HttpWebRequest::getResponseCalled
bool ___getResponseCalled_51;
// System.Object System.Net.HttpWebRequest::locker
RuntimeObject* ___locker_52;
// System.Boolean System.Net.HttpWebRequest::finished_reading
bool ___finished_reading_53;
// System.Net.DecompressionMethods System.Net.HttpWebRequest::auto_decomp
int32_t ___auto_decomp_54;
// System.Int32 System.Net.HttpWebRequest::readWriteTimeout
int32_t ___readWriteTimeout_58;
// Mono.Net.Security.MobileTlsProvider System.Net.HttpWebRequest::tlsProvider
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* ___tlsProvider_59;
// Mono.Security.Interface.MonoTlsSettings System.Net.HttpWebRequest::tlsSettings
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* ___tlsSettings_60;
// System.Net.ServerCertValidationCallback System.Net.HttpWebRequest::certValidationCallback
ServerCertValidationCallback_tC7A568060163FC6810AF9817F26F986C78CFC27F* ___certValidationCallback_61;
// System.Boolean System.Net.HttpWebRequest::hostHasPort
bool ___hostHasPort_62;
// System.Uri System.Net.HttpWebRequest::hostUri
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___hostUri_63;
// System.Net.HttpWebRequest/AuthorizationState System.Net.HttpWebRequest::auth_state
AuthorizationState_t79311A9A938E608B506F10F92C0789E46C8FCA32 ___auth_state_64;
// System.Net.HttpWebRequest/AuthorizationState System.Net.HttpWebRequest::proxy_auth_state
AuthorizationState_t79311A9A938E608B506F10F92C0789E46C8FCA32 ___proxy_auth_state_65;
// System.Func`2<System.IO.Stream,System.Threading.Tasks.Task> System.Net.HttpWebRequest::ResendContentFactory
Func_2_t378757FF082427448349A80CC63683B50DA787D3* ___ResendContentFactory_66;
// System.Boolean System.Net.HttpWebRequest::<ThrowOnError>k__BackingField
bool ___U3CThrowOnErrorU3Ek__BackingField_67;
// System.Boolean System.Net.HttpWebRequest::unsafe_auth_blah
bool ___unsafe_auth_blah_68;
};
struct HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9_StaticFields
{
// System.Int32 System.Net.HttpWebRequest::defaultMaxResponseHeadersLength
int32_t ___defaultMaxResponseHeadersLength_55;
// System.Int32 System.Net.HttpWebRequest::defaultMaximumErrorResponseLength
int32_t ___defaultMaximumErrorResponseLength_56;
// System.Net.Cache.RequestCachePolicy System.Net.HttpWebRequest::defaultCachePolicy
RequestCachePolicy_tF15C94C5E458478914D5EB17753294BD488B0550* ___defaultCachePolicy_57;
};
// System.IO.IOException
struct IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.InvalidOperationException
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.Net.Security.LocalCertSelectionCallback
struct LocalCertSelectionCallback_t3AB79A8AA642074A3EF886118963EEA3CCABABE2 : public MulticastDelegate_t
{
};
// Mono.Security.Interface.MonoLocalCertificateSelectionCallback
struct MonoLocalCertificateSelectionCallback_t34F7772BA5ECE38E6CBD4C311F579DD1D4724DE3 : public MulticastDelegate_t
{
};
// Mono.Security.Interface.MonoRemoteCertificateValidationCallback
struct MonoRemoteCertificateValidationCallback_t1A389B61998873F6B9A2EE7A11C36333A8AECCA0 : public MulticastDelegate_t
{
};
// Mono.Security.Interface.MonoTlsSettings
struct MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0 : public RuntimeObject
{
// Mono.Security.Interface.MonoRemoteCertificateValidationCallback Mono.Security.Interface.MonoTlsSettings::<RemoteCertificateValidationCallback>k__BackingField
MonoRemoteCertificateValidationCallback_t1A389B61998873F6B9A2EE7A11C36333A8AECCA0* ___U3CRemoteCertificateValidationCallbackU3Ek__BackingField_0;
// Mono.Security.Interface.MonoLocalCertificateSelectionCallback Mono.Security.Interface.MonoTlsSettings::<ClientCertificateSelectionCallback>k__BackingField
MonoLocalCertificateSelectionCallback_t34F7772BA5ECE38E6CBD4C311F579DD1D4724DE3* ___U3CClientCertificateSelectionCallbackU3Ek__BackingField_1;
// System.Nullable`1<System.DateTime> Mono.Security.Interface.MonoTlsSettings::<CertificateValidationTime>k__BackingField
Nullable_1_tEADC262F7F8B8BC4CC0A003DBDD3CA7C1B63F9AC ___U3CCertificateValidationTimeU3Ek__BackingField_2;
// System.Security.Cryptography.X509Certificates.X509CertificateCollection Mono.Security.Interface.MonoTlsSettings::<TrustAnchors>k__BackingField
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* ___U3CTrustAnchorsU3Ek__BackingField_3;
// System.Object Mono.Security.Interface.MonoTlsSettings::<UserSettings>k__BackingField
RuntimeObject* ___U3CUserSettingsU3Ek__BackingField_4;
// System.String[] Mono.Security.Interface.MonoTlsSettings::<CertificateSearchPaths>k__BackingField
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___U3CCertificateSearchPathsU3Ek__BackingField_5;
// System.Boolean Mono.Security.Interface.MonoTlsSettings::<SendCloseNotify>k__BackingField
bool ___U3CSendCloseNotifyU3Ek__BackingField_6;
// System.String[] Mono.Security.Interface.MonoTlsSettings::<ClientCertificateIssuers>k__BackingField
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___U3CClientCertificateIssuersU3Ek__BackingField_7;
// System.Boolean Mono.Security.Interface.MonoTlsSettings::<DisallowUnauthenticatedCertificateRequest>k__BackingField
bool ___U3CDisallowUnauthenticatedCertificateRequestU3Ek__BackingField_8;
// System.Nullable`1<Mono.Security.Interface.TlsProtocols> Mono.Security.Interface.MonoTlsSettings::<EnabledProtocols>k__BackingField
Nullable_1_t9A98093485034F2B86BC66B725022122E0E5B2A4 ___U3CEnabledProtocolsU3Ek__BackingField_9;
// Mono.Security.Interface.CipherSuiteCode[] Mono.Security.Interface.MonoTlsSettings::<EnabledCiphers>k__BackingField
CipherSuiteCodeU5BU5D_t61EC0E6F53394985FFC36DEB587C70F4EE26D435* ___U3CEnabledCiphersU3Ek__BackingField_10;
// System.Boolean Mono.Security.Interface.MonoTlsSettings::cloned
bool ___cloned_11;
// System.Boolean Mono.Security.Interface.MonoTlsSettings::checkCertName
bool ___checkCertName_12;
// System.Boolean Mono.Security.Interface.MonoTlsSettings::checkCertRevocationStatus
bool ___checkCertRevocationStatus_13;
// System.Nullable`1<System.Boolean> Mono.Security.Interface.MonoTlsSettings::useServicePointManagerCallback
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 ___useServicePointManagerCallback_14;
// System.Boolean Mono.Security.Interface.MonoTlsSettings::skipSystemValidators
bool ___skipSystemValidators_15;
// System.Boolean Mono.Security.Interface.MonoTlsSettings::callbackNeedsChain
bool ___callbackNeedsChain_16;
// Mono.Security.Interface.ICertificateValidator Mono.Security.Interface.MonoTlsSettings::certificateValidator
RuntimeObject* ___certificateValidator_17;
};
struct MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0_StaticFields
{
// Mono.Security.Interface.MonoTlsSettings Mono.Security.Interface.MonoTlsSettings::defaultSettings
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* ___defaultSettings_18;
};
// System.NotSupportedException
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.OperationCanceledException
struct OperationCanceledException_tC97D0B4532C15E6F0E9F9375091C9ECCA438D662 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
// System.Threading.CancellationToken System.OperationCanceledException::_cancellationToken
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ____cancellationToken_18;
};
// System.Net.Security.RemoteCertificateValidationCallback
struct RemoteCertificateValidationCallback_t2F4C5801F96B2C2BF934511796C5BFEAEBF01955 : public MulticastDelegate_t
{
};
// Microsoft.Win32.SafeHandles.SafeProcessHandle
struct SafeProcessHandle_tA260D4420C5F481A5DA030FFB19D038BBF8A63CB : public SafeHandleZeroOrMinusOneIsInvalid_tC152552D137451170B3B1A304227B0ECADB65629
{
};
struct SafeProcessHandle_tA260D4420C5F481A5DA030FFB19D038BBF8A63CB_StaticFields
{
// Microsoft.Win32.SafeHandles.SafeProcessHandle Microsoft.Win32.SafeHandles.SafeProcessHandle::InvalidHandle
SafeProcessHandle_tA260D4420C5F481A5DA030FFB19D038BBF8A63CB* ___InvalidHandle_6;
};
// Microsoft.Win32.SafeHandles.SafeWaitHandle
struct SafeWaitHandle_t58F5662CD56F6462A687198A64987F8980804449 : public SafeHandleZeroOrMinusOneIsInvalid_tC152552D137451170B3B1A304227B0ECADB65629
{
};
// System.Net.Security.ServerCertSelectionCallback
struct ServerCertSelectionCallback_t653386CAEAE0236FCF61A92963AB1646BB23C654 : public MulticastDelegate_t
{
};
// Mono.Security.Protocol.Ntlm.Type1Message
struct Type1Message_t870960FCE9832270C947CFFD3DC8CE62DC3E8974 : public MessageBase_t173306F2152A17C53A4CD23954A751EE471BD708
{
// System.String Mono.Security.Protocol.Ntlm.Type1Message::_host
String_t* ____host_3;
// System.String Mono.Security.Protocol.Ntlm.Type1Message::_domain
String_t* ____domain_4;
};
// Mono.Security.Protocol.Ntlm.Type2Message
struct Type2Message_t2B675F8672CFEC6E19474A238FA02DCEDB0209BE : public MessageBase_t173306F2152A17C53A4CD23954A751EE471BD708
{
// System.Byte[] Mono.Security.Protocol.Ntlm.Type2Message::_nonce
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ____nonce_3;
// System.String Mono.Security.Protocol.Ntlm.Type2Message::_targetName
String_t* ____targetName_4;
// System.Byte[] Mono.Security.Protocol.Ntlm.Type2Message::_targetInfo
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ____targetInfo_5;
};
// Mono.Security.Protocol.Ntlm.Type3Message
struct Type3Message_t17A486915FD96CAECE87CB2AE1825043A364AF66 : public MessageBase_t173306F2152A17C53A4CD23954A751EE471BD708
{
// Mono.Security.Protocol.Ntlm.NtlmAuthLevel Mono.Security.Protocol.Ntlm.Type3Message::_level
int32_t ____level_3;
// System.Byte[] Mono.Security.Protocol.Ntlm.Type3Message::_challenge
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ____challenge_4;
// System.String Mono.Security.Protocol.Ntlm.Type3Message::_host
String_t* ____host_5;
// System.String Mono.Security.Protocol.Ntlm.Type3Message::_domain
String_t* ____domain_6;
// System.String Mono.Security.Protocol.Ntlm.Type3Message::_username
String_t* ____username_7;
// System.String Mono.Security.Protocol.Ntlm.Type3Message::_password
String_t* ____password_8;
// Mono.Security.Protocol.Ntlm.Type2Message Mono.Security.Protocol.Ntlm.Type3Message::_type2
Type2Message_t2B675F8672CFEC6E19474A238FA02DCEDB0209BE* ____type2_9;
// System.Byte[] Mono.Security.Protocol.Ntlm.Type3Message::_lm
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ____lm_10;
// System.Byte[] Mono.Security.Protocol.Ntlm.Type3Message::_nt
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ____nt_11;
};
// Mono.Unity.UnityTlsContext
struct UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C : public MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476
{
// Mono.Unity.UnityTls/unitytls_tlsctx* Mono.Unity.UnityTlsContext::tlsContext
unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___tlsContext_10;
// Mono.Unity.UnityTls/unitytls_x509list* Mono.Unity.UnityTlsContext::requestedClientCertChain
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___requestedClientCertChain_11;
// Mono.Unity.UnityTls/unitytls_key* Mono.Unity.UnityTlsContext::requestedClientKey
unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* ___requestedClientKey_12;
// Mono.Unity.UnityTls/unitytls_tlsctx_read_callback Mono.Unity.UnityTlsContext::readCallback
unitytls_tlsctx_read_callback_tDBE877327789CABE940C2A724EC9A5D142318851* ___readCallback_13;
// Mono.Unity.UnityTls/unitytls_tlsctx_write_callback Mono.Unity.UnityTlsContext::writeCallback
unitytls_tlsctx_write_callback_t5D4B64AD846D04E819A49689F7EAA47365636611* ___writeCallback_14;
// Mono.Unity.UnityTls/unitytls_tlsctx_certificate_callback Mono.Unity.UnityTlsContext::certificateCallback
unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C* ___certificateCallback_15;
// Mono.Unity.UnityTls/unitytls_tlsctx_x509verify_callback Mono.Unity.UnityTlsContext::verifyCallback
unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D* ___verifyCallback_16;
// System.Security.Cryptography.X509Certificates.X509Certificate Mono.Unity.UnityTlsContext::localClientCertificate
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___localClientCertificate_17;
// System.Security.Cryptography.X509Certificates.X509Certificate2 Mono.Unity.UnityTlsContext::remoteCertificate
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* ___remoteCertificate_18;
// Mono.Security.Interface.MonoTlsConnectionInfo Mono.Unity.UnityTlsContext::connectioninfo
MonoTlsConnectionInfo_t3286AE494AEF3E62C9BE40FAC497849DFA193964* ___connectioninfo_19;
// System.Boolean Mono.Unity.UnityTlsContext::isAuthenticated
bool ___isAuthenticated_20;
// System.Boolean Mono.Unity.UnityTlsContext::hasContext
bool ___hasContext_21;
// System.Boolean Mono.Unity.UnityTlsContext::closedGraceful
bool ___closedGraceful_22;
// System.Byte[] Mono.Unity.UnityTlsContext::writeBuffer
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___writeBuffer_23;
// System.Byte[] Mono.Unity.UnityTlsContext::readBuffer
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___readBuffer_24;
// System.Runtime.InteropServices.GCHandle Mono.Unity.UnityTlsContext::handle
GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC ___handle_25;
// System.Exception Mono.Unity.UnityTlsContext::lastException
Exception_t* ___lastException_26;
};
// Mono.Unity.UnityTlsStream
struct UnityTlsStream_tF1D4B34A71A716396F78FDAF2C35F812E09A4FDE : public MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E
{
};
// Mono.Security.Interface.ValidationResult
struct ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5 : public RuntimeObject
{
// System.Boolean Mono.Security.Interface.ValidationResult::trusted
bool ___trusted_0;
// System.Boolean Mono.Security.Interface.ValidationResult::user_denied
bool ___user_denied_1;
// System.Int32 Mono.Security.Interface.ValidationResult::error_code
int32_t ___error_code_2;
// System.Nullable`1<Mono.Security.Interface.MonoSslPolicyErrors> Mono.Security.Interface.ValidationResult::policy_errors
Nullable_1_t732CF400959D84218642820F71E43BA47619AD00 ___policy_errors_3;
};
// System.Security.Cryptography.X509Certificates.X509Certificate2ImplMono
struct X509Certificate2ImplMono_t4566261D31F143C8CD222DB687625E5246BFD240 : public X509Certificate2ImplUnix_tF8DFA7FF05CC33C9010EFDCA21A827247CB8E86D
{
// System.Security.Cryptography.X509Certificates.X509CertificateImplCollection System.Security.Cryptography.X509Certificates.X509Certificate2ImplMono::intermediateCerts
X509CertificateImplCollection_t9F73F6038DB8173EAFCD920EF434BF5B68FFB098* ___intermediateCerts_2;
// Mono.Security.X509.X509Certificate System.Security.Cryptography.X509Certificates.X509Certificate2ImplMono::_cert
X509Certificate_t9ECDEAA7F2B56A899145F284A13F4D0042481356* ____cert_3;
};
struct X509Certificate2ImplMono_t4566261D31F143C8CD222DB687625E5246BFD240_StaticFields
{
// System.String System.Security.Cryptography.X509Certificates.X509Certificate2ImplMono::empty_error
String_t* ___empty_error_4;
// System.Byte[] System.Security.Cryptography.X509Certificates.X509Certificate2ImplMono::signedData
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___signedData_5;
};
// Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24
struct U3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786
{
// System.Int32 Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24::<>t__builder
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06 ___U3CU3Et__builder_1;
// System.Threading.CancellationToken Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24::cancellationToken
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken_2;
// Mono.Net.Security.AsyncProtocolRequest Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24::<>4__this
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* ___U3CU3E4__this_3;
// Mono.Net.Security.AsyncOperationStatus Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24::<status>5__2
int32_t ___U3CstatusU3E5__2_4;
// Mono.Net.Security.AsyncOperationStatus Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24::<newStatus>5__3
int32_t ___U3CnewStatusU3E5__3_5;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Nullable`1<System.Int32>> Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24::<>u__1
ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5 ___U3CU3Eu__1_6;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24::<>u__2
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 ___U3CU3Eu__2_7;
};
// Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67
struct U3CInnerWriteU3Ed__67_tC5B5BCC77DDC7AEC5DC77B1C9D086B550402B229
{
// System.Int32 Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67::<>t__builder
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06 ___U3CU3Et__builder_1;
// System.Threading.CancellationToken Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67::cancellationToken
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken_2;
// Mono.Net.Security.MobileAuthenticatedStream Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67::<>4__this
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* ___U3CU3E4__this_3;
// System.Boolean Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67::sync
bool ___sync_4;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67::<>u__1
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 ___U3CU3Eu__1_5;
};
// Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__48
struct U3CProcessAuthenticationU3Ed__48_t111D22EA69719A6F3E97F02B3AD759B20CE299EB
{
// System.Int32 Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__48::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__48::<>t__builder
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06 ___U3CU3Et__builder_1;
// Mono.Net.Security.MonoSslAuthenticationOptions Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__48::options
MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* ___options_2;
// Mono.Net.Security.MobileAuthenticatedStream Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__48::<>4__this
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* ___U3CU3E4__this_3;
// System.Boolean Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__48::runSynchronously
bool ___runSynchronously_4;
// System.Threading.CancellationToken Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__48::cancellationToken
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken_5;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<Mono.Net.Security.AsyncProtocolResult> Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__48::<>u__1
ConfiguredTaskAwaiter_t150EB7231CA854AE162139EF92711A3C957F9591 ___U3CU3Eu__1_6;
};
// Mono.Unity.UnityTls/unitytls_interface_struct
struct unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED : public RuntimeObject
{
// System.UInt64 Mono.Unity.UnityTls/unitytls_interface_struct::UNITYTLS_INVALID_HANDLE
uint64_t ___UNITYTLS_INVALID_HANDLE_0;
// Mono.Unity.UnityTls/unitytls_tlsctx_protocolrange Mono.Unity.UnityTls/unitytls_interface_struct::UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT
unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56 ___UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_1;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_errorstate_create_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_errorstate_create
unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B* ___unitytls_errorstate_create_2;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_errorstate_raise_error_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_errorstate_raise_error
unitytls_errorstate_raise_error_t_t8C20FC78CA5BBEE0248CC09D1C1AF25BCB3835CF* ___unitytls_errorstate_raise_error_3;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_get_ref_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_key_get_ref
unitytls_key_get_ref_t_t8335968B19449FE0ED92E67AE9B6D95915684209* ___unitytls_key_get_ref_4;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_parse_der_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_key_parse_der
unitytls_key_parse_der_t_tC218AEF9253FA105762F39041F696A06C52D3F10* ___unitytls_key_parse_der_5;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_parse_pem_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_key_parse_pem
unitytls_key_parse_pem_t_tE945670C6CB28BBF4670D2E8E904B7D8A2AB277B* ___unitytls_key_parse_pem_6;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_free_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_key_free
unitytls_key_free_t_tDB8665140BAF30447F3650D323078C193566FF72* ___unitytls_key_free_7;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509_export_der_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_x509_export_der
unitytls_x509_export_der_t_tB784597940DE501BB5FEFA3EA528634559A16749* ___unitytls_x509_export_der_8;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_get_ref_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_x509list_get_ref
unitytls_x509list_get_ref_t_t264CEEF7B8D1F10FD95E1BC78BB48BCA11E305EA* ___unitytls_x509list_get_ref_9;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_get_x509_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_x509list_get_x509
unitytls_x509list_get_x509_t_t428DCD367D50DCDD5ECE6DCFEB8967C5F7C3DFE8* ___unitytls_x509list_get_x509_10;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_create_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_x509list_create
unitytls_x509list_create_t_t8873365FFB1556CE6B643700DB0C30E391B758D6* ___unitytls_x509list_create_11;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_append_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_x509list_append
unitytls_x509list_append_t_tC84B9CA7C15F5D1DE98386670A80D5F98559D98E* ___unitytls_x509list_append_12;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_append_der_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_x509list_append_der
unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951* ___unitytls_x509list_append_der_13;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_append_der_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_x509list_append_pem
unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951* ___unitytls_x509list_append_pem_14;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_free_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_x509list_free
unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2* ___unitytls_x509list_free_15;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509verify_default_ca_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_x509verify_default_ca
unitytls_x509verify_default_ca_t_tED88B7ABC8408A22DB51B1F57D5FC65BDD2EC809* ___unitytls_x509verify_default_ca_16;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509verify_explicit_ca_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_x509verify_explicit_ca
unitytls_x509verify_explicit_ca_t_t1B3D98BF01F059A3C2ADE87EFDDA03C557A3D08D* ___unitytls_x509verify_explicit_ca_17;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_create_server_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_tlsctx_create_server
unitytls_tlsctx_create_server_t_t1068941B319B893D3FFBE53FE061676FF1CC3803* ___unitytls_tlsctx_create_server_18;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_create_client_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_tlsctx_create_client
unitytls_tlsctx_create_client_t_t49D8F69D4152410A346CB3560B121DCC44AAC4EC* ___unitytls_tlsctx_create_client_19;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_server_require_client_authentication_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_tlsctx_server_require_client_authentication
unitytls_tlsctx_server_require_client_authentication_t_t2AC04245D1F40738C5FB87B0DEE80761E243F0BE* ___unitytls_tlsctx_server_require_client_authentication_20;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_certificate_callback_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_tlsctx_set_certificate_callback
unitytls_tlsctx_set_certificate_callback_t_t2B54F7228DFC11BF14DCF2201BDD90CF0EF92D41* ___unitytls_tlsctx_set_certificate_callback_21;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_trace_callback_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_tlsctx_set_trace_callback
unitytls_tlsctx_set_trace_callback_t_t3C615EACADC2CB1CDA8362B3F775071976E7CF7C* ___unitytls_tlsctx_set_trace_callback_22;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_x509verify_callback_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_tlsctx_set_x509verify_callback
unitytls_tlsctx_set_x509verify_callback_t_t032FE980BEDD0D201CAF1EE653ABE303CDBCA7C9* ___unitytls_tlsctx_set_x509verify_callback_23;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_supported_ciphersuites_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_tlsctx_set_supported_ciphersuites
unitytls_tlsctx_set_supported_ciphersuites_t_t007E8706D364DE695F1DBF28358058A1E73DF544* ___unitytls_tlsctx_set_supported_ciphersuites_24;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_get_ciphersuite_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_tlsctx_get_ciphersuite
unitytls_tlsctx_get_ciphersuite_t_t7317543D399259616648B1AA19447C4B63F70EF2* ___unitytls_tlsctx_get_ciphersuite_25;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_get_protocol_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_tlsctx_get_protocol
unitytls_tlsctx_get_protocol_t_t04E3B73C1D77379F7C7388ED4934189365326F3C* ___unitytls_tlsctx_get_protocol_26;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_process_handshake_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_tlsctx_process_handshake
unitytls_tlsctx_process_handshake_t_t8D94F5FAD00CD61BF950829866C0C6E29D202606* ___unitytls_tlsctx_process_handshake_27;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_read_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_tlsctx_read
unitytls_tlsctx_read_t_t3E3C711F7A47E704ABDF0DF0B7515E7306EB7C95* ___unitytls_tlsctx_read_28;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_write_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_tlsctx_write
unitytls_tlsctx_write_t_t976A41600B61F9C8DF022296B67316FFA53EB386* ___unitytls_tlsctx_write_29;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_notify_close_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_tlsctx_notify_close
unitytls_tlsctx_notify_close_t_t717D19846262E3DF5D1A69C5E136912E7A54B253* ___unitytls_tlsctx_notify_close_30;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_free_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_tlsctx_free
unitytls_tlsctx_free_t_tFBF7BB64D2E1C183718FB5809ABF0051395FD8F0* ___unitytls_tlsctx_free_31;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_random_generate_bytes_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_random_generate_bytes
unitytls_random_generate_bytes_t_t6E7011EF958B0948582F8D1D213B454A5A962569* ___unitytls_random_generate_bytes_32;
};
// Native definition for P/Invoke marshalling of Mono.Unity.UnityTls/unitytls_interface_struct
struct unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED_marshaled_pinvoke
{
uint64_t ___UNITYTLS_INVALID_HANDLE_0;
unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56 ___UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_1;
Il2CppMethodPointer ___unitytls_errorstate_create_2;
Il2CppMethodPointer ___unitytls_errorstate_raise_error_3;
Il2CppMethodPointer ___unitytls_key_get_ref_4;
Il2CppMethodPointer ___unitytls_key_parse_der_5;
Il2CppMethodPointer ___unitytls_key_parse_pem_6;
Il2CppMethodPointer ___unitytls_key_free_7;
Il2CppMethodPointer ___unitytls_x509_export_der_8;
Il2CppMethodPointer ___unitytls_x509list_get_ref_9;
Il2CppMethodPointer ___unitytls_x509list_get_x509_10;
Il2CppMethodPointer ___unitytls_x509list_create_11;
Il2CppMethodPointer ___unitytls_x509list_append_12;
Il2CppMethodPointer ___unitytls_x509list_append_der_13;
Il2CppMethodPointer ___unitytls_x509list_append_pem_14;
Il2CppMethodPointer ___unitytls_x509list_free_15;
Il2CppMethodPointer ___unitytls_x509verify_default_ca_16;
Il2CppMethodPointer ___unitytls_x509verify_explicit_ca_17;
Il2CppMethodPointer ___unitytls_tlsctx_create_server_18;
Il2CppMethodPointer ___unitytls_tlsctx_create_client_19;
Il2CppMethodPointer ___unitytls_tlsctx_server_require_client_authentication_20;
Il2CppMethodPointer ___unitytls_tlsctx_set_certificate_callback_21;
Il2CppMethodPointer ___unitytls_tlsctx_set_trace_callback_22;
Il2CppMethodPointer ___unitytls_tlsctx_set_x509verify_callback_23;
Il2CppMethodPointer ___unitytls_tlsctx_set_supported_ciphersuites_24;
Il2CppMethodPointer ___unitytls_tlsctx_get_ciphersuite_25;
Il2CppMethodPointer ___unitytls_tlsctx_get_protocol_26;
Il2CppMethodPointer ___unitytls_tlsctx_process_handshake_27;
Il2CppMethodPointer ___unitytls_tlsctx_read_28;
Il2CppMethodPointer ___unitytls_tlsctx_write_29;
Il2CppMethodPointer ___unitytls_tlsctx_notify_close_30;
Il2CppMethodPointer ___unitytls_tlsctx_free_31;
Il2CppMethodPointer ___unitytls_random_generate_bytes_32;
};
// Native definition for COM marshalling of Mono.Unity.UnityTls/unitytls_interface_struct
struct unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED_marshaled_com
{
uint64_t ___UNITYTLS_INVALID_HANDLE_0;
unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56 ___UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_1;
Il2CppMethodPointer ___unitytls_errorstate_create_2;
Il2CppMethodPointer ___unitytls_errorstate_raise_error_3;
Il2CppMethodPointer ___unitytls_key_get_ref_4;
Il2CppMethodPointer ___unitytls_key_parse_der_5;
Il2CppMethodPointer ___unitytls_key_parse_pem_6;
Il2CppMethodPointer ___unitytls_key_free_7;
Il2CppMethodPointer ___unitytls_x509_export_der_8;
Il2CppMethodPointer ___unitytls_x509list_get_ref_9;
Il2CppMethodPointer ___unitytls_x509list_get_x509_10;
Il2CppMethodPointer ___unitytls_x509list_create_11;
Il2CppMethodPointer ___unitytls_x509list_append_12;
Il2CppMethodPointer ___unitytls_x509list_append_der_13;
Il2CppMethodPointer ___unitytls_x509list_append_pem_14;
Il2CppMethodPointer ___unitytls_x509list_free_15;
Il2CppMethodPointer ___unitytls_x509verify_default_ca_16;
Il2CppMethodPointer ___unitytls_x509verify_explicit_ca_17;
Il2CppMethodPointer ___unitytls_tlsctx_create_server_18;
Il2CppMethodPointer ___unitytls_tlsctx_create_client_19;
Il2CppMethodPointer ___unitytls_tlsctx_server_require_client_authentication_20;
Il2CppMethodPointer ___unitytls_tlsctx_set_certificate_callback_21;
Il2CppMethodPointer ___unitytls_tlsctx_set_trace_callback_22;
Il2CppMethodPointer ___unitytls_tlsctx_set_x509verify_callback_23;
Il2CppMethodPointer ___unitytls_tlsctx_set_supported_ciphersuites_24;
Il2CppMethodPointer ___unitytls_tlsctx_get_ciphersuite_25;
Il2CppMethodPointer ___unitytls_tlsctx_get_protocol_26;
Il2CppMethodPointer ___unitytls_tlsctx_process_handshake_27;
Il2CppMethodPointer ___unitytls_tlsctx_read_28;
Il2CppMethodPointer ___unitytls_tlsctx_write_29;
Il2CppMethodPointer ___unitytls_tlsctx_notify_close_30;
Il2CppMethodPointer ___unitytls_tlsctx_free_31;
Il2CppMethodPointer ___unitytls_random_generate_bytes_32;
};
// Mono.Unity.UnityTls/unitytls_tlsctx_certificate_callback
struct unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C : public MulticastDelegate_t
{
};
// Mono.Unity.UnityTls/unitytls_tlsctx_read_callback
struct unitytls_tlsctx_read_callback_tDBE877327789CABE940C2A724EC9A5D142318851 : public MulticastDelegate_t
{
};
// Mono.Unity.UnityTls/unitytls_tlsctx_trace_callback
struct unitytls_tlsctx_trace_callback_tAC1169E423F6EBDA60CDD5D33E1795A8811E0BE6 : public MulticastDelegate_t
{
};
// Mono.Unity.UnityTls/unitytls_tlsctx_write_callback
struct unitytls_tlsctx_write_callback_t5D4B64AD846D04E819A49689F7EAA47365636611 : public MulticastDelegate_t
{
};
// Mono.Unity.UnityTls/unitytls_tlsctx_x509verify_callback
struct unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D : public MulticastDelegate_t
{
};
// Mono.Unity.UnityTls/unitytls_x509verify_callback
struct unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09 : public MulticastDelegate_t
{
};
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_errorstate_create_t
struct unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B : public MulticastDelegate_t
{
};
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_errorstate_raise_error_t
struct unitytls_errorstate_raise_error_t_t8C20FC78CA5BBEE0248CC09D1C1AF25BCB3835CF : public MulticastDelegate_t
{
};
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_free_t
struct unitytls_key_free_t_tDB8665140BAF30447F3650D323078C193566FF72 : public MulticastDelegate_t
{
};
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_get_ref_t
struct unitytls_key_get_ref_t_t8335968B19449FE0ED92E67AE9B6D95915684209 : public MulticastDelegate_t
{
};
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_parse_der_t
struct unitytls_key_parse_der_t_tC218AEF9253FA105762F39041F696A06C52D3F10 : public MulticastDelegate_t
{
};
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_parse_pem_t
struct unitytls_key_parse_pem_t_tE945670C6CB28BBF4670D2E8E904B7D8A2AB277B : public MulticastDelegate_t
{
};
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_random_generate_bytes_t
struct unitytls_random_generate_bytes_t_t6E7011EF958B0948582F8D1D213B454A5A962569 : public MulticastDelegate_t
{
};
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_create_client_t
struct unitytls_tlsctx_create_client_t_t49D8F69D4152410A346CB3560B121DCC44AAC4EC : public MulticastDelegate_t
{
};
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_create_server_t
struct unitytls_tlsctx_create_server_t_t1068941B319B893D3FFBE53FE061676FF1CC3803 : public MulticastDelegate_t
{
};
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_free_t
struct unitytls_tlsctx_free_t_tFBF7BB64D2E1C183718FB5809ABF0051395FD8F0 : public MulticastDelegate_t
{
};
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_get_ciphersuite_t
struct unitytls_tlsctx_get_ciphersuite_t_t7317543D399259616648B1AA19447C4B63F70EF2 : public MulticastDelegate_t
{
};
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_get_protocol_t
struct unitytls_tlsctx_get_protocol_t_t04E3B73C1D77379F7C7388ED4934189365326F3C : public MulticastDelegate_t
{
};
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_notify_close_t
struct unitytls_tlsctx_notify_close_t_t717D19846262E3DF5D1A69C5E136912E7A54B253 : public MulticastDelegate_t
{
};
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_process_handshake_t
struct unitytls_tlsctx_process_handshake_t_t8D94F5FAD00CD61BF950829866C0C6E29D202606 : public MulticastDelegate_t
{
};
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_read_t
struct unitytls_tlsctx_read_t_t3E3C711F7A47E704ABDF0DF0B7515E7306EB7C95 : public MulticastDelegate_t
{
};
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_server_require_client_authentication_t
struct unitytls_tlsctx_server_require_client_authentication_t_t2AC04245D1F40738C5FB87B0DEE80761E243F0BE : public MulticastDelegate_t
{
};
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_certificate_callback_t
struct unitytls_tlsctx_set_certificate_callback_t_t2B54F7228DFC11BF14DCF2201BDD90CF0EF92D41 : public MulticastDelegate_t
{
};
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_supported_ciphersuites_t
struct unitytls_tlsctx_set_supported_ciphersuites_t_t007E8706D364DE695F1DBF28358058A1E73DF544 : public MulticastDelegate_t
{
};
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_trace_callback_t
struct unitytls_tlsctx_set_trace_callback_t_t3C615EACADC2CB1CDA8362B3F775071976E7CF7C : public MulticastDelegate_t
{
};
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_x509verify_callback_t
struct unitytls_tlsctx_set_x509verify_callback_t_t032FE980BEDD0D201CAF1EE653ABE303CDBCA7C9 : public MulticastDelegate_t
{
};
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_write_t
struct unitytls_tlsctx_write_t_t976A41600B61F9C8DF022296B67316FFA53EB386 : public MulticastDelegate_t
{
};
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509_export_der_t
struct unitytls_x509_export_der_t_tB784597940DE501BB5FEFA3EA528634559A16749 : public MulticastDelegate_t
{
};
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_append_der_t
struct unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951 : public MulticastDelegate_t
{
};
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_append_t
struct unitytls_x509list_append_t_tC84B9CA7C15F5D1DE98386670A80D5F98559D98E : public MulticastDelegate_t
{
};
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_create_t
struct unitytls_x509list_create_t_t8873365FFB1556CE6B643700DB0C30E391B758D6 : public MulticastDelegate_t
{
};
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_free_t
struct unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2 : public MulticastDelegate_t
{
};
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_get_ref_t
struct unitytls_x509list_get_ref_t_t264CEEF7B8D1F10FD95E1BC78BB48BCA11E305EA : public MulticastDelegate_t
{
};
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_get_x509_t
struct unitytls_x509list_get_x509_t_t428DCD367D50DCDD5ECE6DCFEB8967C5F7C3DFE8 : public MulticastDelegate_t
{
};
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509verify_default_ca_t
struct unitytls_x509verify_default_ca_t_tED88B7ABC8408A22DB51B1F57D5FC65BDD2EC809 : public MulticastDelegate_t
{
};
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509verify_explicit_ca_t
struct unitytls_x509verify_explicit_ca_t_t1B3D98BF01F059A3C2ADE87EFDDA03C557A3D08D : 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.ObjectDisposedException
struct ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB : public InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB
{
// System.String System.ObjectDisposedException::_objectName
String_t* ____objectName_18;
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// System.Byte[]
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031 : public RuntimeArray
{
ALIGN_FIELD (8) uint8_t m_Items[1];
inline uint8_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, uint8_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
{
m_Items[index] = value;
}
};
// System.Delegate[]
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771 : public RuntimeArray
{
ALIGN_FIELD (8) Delegate_t* m_Items[1];
inline Delegate_t* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Delegate_t** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Delegate_t* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Delegate_t* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Delegate_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// Mono.Unity.UnityTls/unitytls_ciphersuite[]
struct unitytls_ciphersuiteU5BU5D_tCD24D3B2044FE95971675C32E93857E6DAC52120 : public RuntimeArray
{
ALIGN_FIELD (8) uint32_t m_Items[1];
inline uint32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint32_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, uint32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint32_t value)
{
m_Items[index] = value;
}
};
// Mono.Security.Interface.CipherSuiteCode[]
struct CipherSuiteCodeU5BU5D_t61EC0E6F53394985FFC36DEB587C70F4EE26D435 : public RuntimeArray
{
ALIGN_FIELD (8) uint16_t m_Items[1];
inline uint16_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint16_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, uint16_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint16_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint16_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint16_t value)
{
m_Items[index] = value;
}
};
// System.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.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.Security.Cryptography.X509Certificates.X509ChainStatus[]
struct X509ChainStatusU5BU5D_tA4CB502E13E6D62B9C824B15F3193FE7EC889299 : public RuntimeArray
{
ALIGN_FIELD (8) X509ChainStatus_t5A57DDA24AA1FCA9F2B8D70B767CDDF388E4A80D m_Items[1];
inline X509ChainStatus_t5A57DDA24AA1FCA9F2B8D70B767CDDF388E4A80D GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline X509ChainStatus_t5A57DDA24AA1FCA9F2B8D70B767CDDF388E4A80D* 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, X509ChainStatus_t5A57DDA24AA1FCA9F2B8D70B767CDDF388E4A80D value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___info_1), (void*)NULL);
}
inline X509ChainStatus_t5A57DDA24AA1FCA9F2B8D70B767CDDF388E4A80D GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline X509ChainStatus_t5A57DDA24AA1FCA9F2B8D70B767CDDF388E4A80D* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, X509ChainStatus_t5A57DDA24AA1FCA9F2B8D70B767CDDF388E4A80D value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___info_1), (void*)NULL);
}
};
// 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);
}
};
IL2CPP_EXTERN_C void unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568_marshal_pinvoke(const unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568& unmarshaled, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568_marshal_pinvoke_back(const unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568_marshaled_pinvoke& marshaled, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568& unmarshaled);
IL2CPP_EXTERN_C void unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568_marshal_pinvoke_cleanup(unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8_marshal_pinvoke(const AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8& unmarshaled, AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8_marshal_pinvoke_back(const AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8_marshaled_pinvoke& marshaled, AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8& unmarshaled);
IL2CPP_EXTERN_C void AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8_marshal_pinvoke_cleanup(AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8_marshal_com(const AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8& unmarshaled, AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8_marshaled_com& marshaled);
IL2CPP_EXTERN_C void AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8_marshal_com_back(const AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8_marshaled_com& marshaled, AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8& unmarshaled);
IL2CPP_EXTERN_C void AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8_marshal_com_cleanup(AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8_marshaled_com& marshaled);
// T System.Runtime.InteropServices.Marshal::PtrToStructure<System.Object>(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Marshal_PtrToStructure_TisRuntimeObject_mE49427AE7C74A2015680C1510E65FDD0B6163C64_gshared (intptr_t ___ptr0, const RuntimeMethod* method) ;
// System.Void System.ValueTuple`2<System.Int32,System.Boolean>::.ctor(T1,T2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_2__ctor_m3A39BEA90C84F8D68C34883978E96D2C2630B423_gshared (ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942* __this, int32_t ___item10, bool ___item21, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mF30FEE3E944E17EC5FB08148FF63FE253821092D_gshared (List_1_t14F08D1F5A2E0F276F976F81CC13B7CB7EDABE33* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::Add(T)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m1794A41080E7D990FC91C41044F40666784FAF5F_gshared_inline (List_1_t14F08D1F5A2E0F276F976F81CC13B7CB7EDABE33* __this, X509ChainStatus_t5A57DDA24AA1FCA9F2B8D70B767CDDF388E4A80D ___item0, const RuntimeMethod* method) ;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::Create()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsyncTaskMethodBuilder_1_tE810F083929D7952F192036D298085BD4B048AD0 AsyncTaskMethodBuilder_1_Create_mAFCDBB3F3D94DC87243FAB2D72DD85D1EFB68441_gshared (const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::Start<Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23>(TStateMachine&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__23_t9FFB39587AAED5C56B39C31D1D2C91BF10B7D2A8_mC20ACD663209E31627ADFC71C5D256A10A497424_gshared (AsyncTaskMethodBuilder_1_tE810F083929D7952F192036D298085BD4B048AD0* __this, U3CStartOperationU3Ed__23_t9FFB39587AAED5C56B39C31D1D2C91BF10B7D2A8* ___stateMachine0, const RuntimeMethod* method) ;
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::get_Task()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* AsyncTaskMethodBuilder_1_get_Task_mEA092EC6F1324A9D694CF6056FA8583F2A2BDC89_gshared (AsyncTaskMethodBuilder_1_tE810F083929D7952F192036D298085BD4B048AD0* __this, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24>(TStateMachine&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_Start_TisU3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786_m73AF670DABBD2788FF72BC1EDABC58043CEC6796_gshared (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, U3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786* ___stateMachine0, const RuntimeMethod* method) ;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::Create()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsyncTaskMethodBuilder_1_t7BA09CA1BB279AA706D98A618EE11038FD1985F7 AsyncTaskMethodBuilder_1_Create_mD6BC27D1E6350ECB9B61238E38D4C15C8CE96802_gshared (const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::Start<Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25>(TStateMachine&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__25_t05729A3E67E2FF3B23435B02B158BDB2F3C7C84E_mE716BD9AA000EF73BFAB4F1FFD98494E9E32FA5C_gshared (AsyncTaskMethodBuilder_1_t7BA09CA1BB279AA706D98A618EE11038FD1985F7* __this, U3CInnerReadU3Ed__25_t05729A3E67E2FF3B23435B02B158BDB2F3C7C84E* ___stateMachine0, const RuntimeMethod* method) ;
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::get_Task()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* AsyncTaskMethodBuilder_1_get_Task_mB36BC37F05CC1BD3EDB9EC66B9BBEA7DE33F3D03_gshared (AsyncTaskMethodBuilder_1_t7BA09CA1BB279AA706D98A618EE11038FD1985F7* __this, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23>(TAwaiter&,TStateMachine&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CStartOperationU3Ed__23_t9FFB39587AAED5C56B39C31D1D2C91BF10B7D2A8_m27B458470664B24A4ABB5828BB7361646930EBFB_gshared (AsyncTaskMethodBuilder_1_tE810F083929D7952F192036D298085BD4B048AD0* __this, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* ___awaiter0, U3CStartOperationU3Ed__23_t9FFB39587AAED5C56B39C31D1D2C91BF10B7D2A8* ___stateMachine1, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetException(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetException_mC2F74B26F5303F9F960965220E2866D777F1A5C6_gshared (AsyncTaskMethodBuilder_1_tE810F083929D7952F192036D298085BD4B048AD0* __this, Exception_t* ___exception0, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetResult(TResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetResult_m0D83195F995F9825D7A6DCDC3835D6917C43B5A6_gshared (AsyncTaskMethodBuilder_1_tE810F083929D7952F192036D298085BD4B048AD0* __this, RuntimeObject* ___result0, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetStateMachine_m3BE54983634ABF5BE05200C7894AD0F9F20BDD65_gshared (AsyncTaskMethodBuilder_1_tE810F083929D7952F192036D298085BD4B048AD0* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) ;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<TResult> System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::ConfigureAwait(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredTaskAwaitable_1_tEC8120422100780C8C0025D1B994C33B30C4AD71 Task_1_ConfigureAwait_m3E964062746BC63E91EA877F7B826868CA306DDE_gshared (Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* __this, bool ___continueOnCapturedContext0, const RuntimeMethod* method) ;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Nullable`1<System.Int32>>::GetAwaiter()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5 ConfiguredTaskAwaitable_1_GetAwaiter_m4FE08BCFB9AA694193BDCD5B5C12F5271A1E88F5_gshared_inline (ConfiguredTaskAwaitable_1_tEC8120422100780C8C0025D1B994C33B30C4AD71* __this, const RuntimeMethod* method) ;
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Nullable`1<System.Int32>>::get_IsCompleted()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_m943014E2A3A7AEEF6B38F9DA31887B07DC417131_gshared (ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5* __this, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Nullable`1<System.Int32>>,Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24>(TAwaiter&,TStateMachine&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5_TisU3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786_m40DE76AFDF3B1422DDE3F73C88263FAEE9B2AD66_gshared (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5* ___awaiter0, U3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786* ___stateMachine1, const RuntimeMethod* method) ;
// TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Nullable`1<System.Int32>>::GetResult()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ConfiguredTaskAwaiter_GetResult_mE648AD496FFAD4F2E5CFFA8DA38B365FDD634EFD_gshared (ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5* __this, const RuntimeMethod* method) ;
// System.Boolean System.Nullable`1<System.Int32>::get_HasValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_gshared_inline (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method) ;
// T System.Nullable`1<System.Int32>::GetValueOrDefault()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_gshared_inline (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24>(TAwaiter&,TStateMachine&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786_m89765A85617A3D1007CBFD188056340092F4252D_gshared (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* ___awaiter0, U3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786* ___stateMachine1, const RuntimeMethod* method) ;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<TResult> System.Threading.Tasks.Task`1<System.Int32>::ConfigureAwait(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredTaskAwaitable_1_t5186C81524388C1718E9AC37792D8771A443417A Task_1_ConfigureAwait_m8203F4D13209C12845066A383E5B850D0486B209_gshared (Task_1_t4C228DE57804012969575431CFF12D57C875552D* __this, bool ___continueOnCapturedContext0, const RuntimeMethod* method) ;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Int32>::GetAwaiter()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80 ConfiguredTaskAwaitable_1_GetAwaiter_m7A77B1981FEC19CC7E1570EDC3F16AC5C14B4439_gshared_inline (ConfiguredTaskAwaitable_1_t5186C81524388C1718E9AC37792D8771A443417A* __this, const RuntimeMethod* method) ;
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::get_IsCompleted()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_mD70263ED42C8E379EE20DBC2F218C3E629B4B4D3_gshared (ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80* __this, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>,Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25>(TAwaiter&,TStateMachine&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80_TisU3CInnerReadU3Ed__25_t05729A3E67E2FF3B23435B02B158BDB2F3C7C84E_m1375ABD6CBB63DE8EF7F17F9B050D81DDE993851_gshared (AsyncTaskMethodBuilder_1_t7BA09CA1BB279AA706D98A618EE11038FD1985F7* __this, ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80* ___awaiter0, U3CInnerReadU3Ed__25_t05729A3E67E2FF3B23435B02B158BDB2F3C7C84E* ___stateMachine1, const RuntimeMethod* method) ;
// TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::GetResult()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConfiguredTaskAwaiter_GetResult_mF1FF6CBD66A3F581D413793BA8C2AF58B707D9CC_gshared (ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80* __this, const RuntimeMethod* method) ;
// System.Void System.Nullable`1<System.Int32>::.ctor(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_gshared (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::SetException(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetException_m76968B53E22BA2AD3C6102934BDC2C9013F74A95_gshared (AsyncTaskMethodBuilder_1_t7BA09CA1BB279AA706D98A618EE11038FD1985F7* __this, Exception_t* ___exception0, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::SetResult(TResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetResult_m7814370659E8E3550E3A679C1F2F516592198487_gshared (AsyncTaskMethodBuilder_1_t7BA09CA1BB279AA706D98A618EE11038FD1985F7* __this, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___result0, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetStateMachine_m202DAC650B3B8EFE6A02ED46F243B399A3308879_gshared (AsyncTaskMethodBuilder_1_t7BA09CA1BB279AA706D98A618EE11038FD1985F7* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) ;
// System.Void System.WeakReference`1<System.Object>::.ctor(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WeakReference_1__ctor_m932665C8861A22B177DC1ACF1EDAA87E1624B5AC_gshared (WeakReference_1_tED795563AD26F795CED3BBCD488AB1694E385BCE* __this, RuntimeObject* ___target0, const RuntimeMethod* method) ;
// System.Boolean System.Nullable`1<System.Boolean>::get_HasValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_gshared_inline (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, const RuntimeMethod* method) ;
// T System.Nullable`1<System.Boolean>::GetValueOrDefault()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_gshared_inline (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, const RuntimeMethod* method) ;
// System.Void System.Nullable`1<System.Int32Enum>::.ctor(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m5100B58428BDAD8C79F3D8576B0C2E1D4F3924EB_gshared (Nullable_1_t163D49A1147F217B7BD43BE8ACC8A5CC6B846D14* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Boolean System.WeakReference`1<System.Object>::TryGetTarget(T&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WeakReference_1_TryGetTarget_m4982797589731AB705E9C79FA4531331F40410AB_gshared (WeakReference_1_tED795563AD26F795CED3BBCD488AB1694E385BCE* __this, RuntimeObject** ___target0, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__48>(TStateMachine&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_Start_TisU3CProcessAuthenticationU3Ed__48_t111D22EA69719A6F3E97F02B3AD759B20CE299EB_mF1F7C95F19A89B5CCD58DB73DE8FFADD64D527A7_gshared (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, U3CProcessAuthenticationU3Ed__48_t111D22EA69719A6F3E97F02B3AD759B20CE299EB* ___stateMachine0, const RuntimeMethod* method) ;
// TResult System.Threading.Tasks.Task`1<System.Int32>::get_Result()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Task_1_get_Result_mE41E789D49EA08D9BCEC87078B55D77B3EE3AD37_gshared (Task_1_t4C228DE57804012969575431CFF12D57C875552D* __this, const RuntimeMethod* method) ;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::Create()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019 AsyncTaskMethodBuilder_1_Create_mE41F34163E40A97FB25427519FBDB7692F06D192_gshared (const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::Start<Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__57>(TStateMachine&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__57_tCA8E70BCBB1E41B299D65B4CF483D4CBF7A11368_m08731DA0A532E6B6ED3E6943D1C4AC199CDE578A_gshared (AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019* __this, U3CStartOperationU3Ed__57_tCA8E70BCBB1E41B299D65B4CF483D4CBF7A11368* ___stateMachine0, const RuntimeMethod* method) ;
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::get_Task()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t4C228DE57804012969575431CFF12D57C875552D* AsyncTaskMethodBuilder_1_get_Task_m2DCDBC59910811D107353C5752AD58B28C2D97FE_gshared (AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019* __this, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::Start<Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66>(TStateMachine&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__66_tDA84F0E1193C16C54FE1735B4B5F77FB65A68982_mA1B2B31EDE3E7E33BB18EC9F5ABB74DDD721A57A_gshared (AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019* __this, U3CInnerReadU3Ed__66_tDA84F0E1193C16C54FE1735B4B5F77FB65A68982* ___stateMachine0, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67>(TStateMachine&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_Start_TisU3CInnerWriteU3Ed__67_tC5B5BCC77DDC7AEC5DC77B1C9D086B550402B229_m82D3611019196D882B60AC9DF641B2DFA5D59D35_gshared (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, U3CInnerWriteU3Ed__67_tC5B5BCC77DDC7AEC5DC77B1C9D086B550402B229* ___stateMachine0, const RuntimeMethod* method) ;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<TResult> System.Threading.Tasks.Task`1<System.Object>::ConfigureAwait(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredTaskAwaitable_1_t97C129EA63015240E6F9E767F4A120CC9122FEF8 Task_1_ConfigureAwait_m9D6420C859925B7C250DED7586DD770C91632070_gshared (Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* __this, bool ___continueOnCapturedContext0, const RuntimeMethod* method) ;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Object>::GetAwaiter()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2 ConfiguredTaskAwaitable_1_GetAwaiter_m10364C3B0A904803E890B2D75674665F986BDAB2_gshared_inline (ConfiguredTaskAwaitable_1_t97C129EA63015240E6F9E767F4A120CC9122FEF8* __this, const RuntimeMethod* method) ;
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>::get_IsCompleted()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_mD6243A7544181F96816A5F81459F4B66908ADB5E_gshared (ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2* __this, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>,Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__48>(TAwaiter&,TStateMachine&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2_TisU3CProcessAuthenticationU3Ed__48_t111D22EA69719A6F3E97F02B3AD759B20CE299EB_m66DCE65CFCD2AC811B8BBFEF7607A9EAA938759A_gshared (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2* ___awaiter0, U3CProcessAuthenticationU3Ed__48_t111D22EA69719A6F3E97F02B3AD759B20CE299EB* ___stateMachine1, const RuntimeMethod* method) ;
// TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>::GetResult()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConfiguredTaskAwaiter_GetResult_m00ABE5C46A983C38086438B7A7CB2C62296B3383_gshared (ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2* __this, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>,Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__57>(TAwaiter&,TStateMachine&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2_TisU3CStartOperationU3Ed__57_tCA8E70BCBB1E41B299D65B4CF483D4CBF7A11368_m102D6B241A470A301222E8E86193235DFAD9B622_gshared (AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019* __this, ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2* ___awaiter0, U3CStartOperationU3Ed__57_tCA8E70BCBB1E41B299D65B4CF483D4CBF7A11368* ___stateMachine1, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::SetException(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetException_mB7C693CAA9243017E03D801A487E0EA9B6AAD575_gshared (AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019* __this, Exception_t* ___exception0, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::SetResult(TResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetResult_mC4BAC830514CDB105730FF11F7744A4424A4009B_gshared (AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019* __this, int32_t ___result0, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetStateMachine_mFA173982D2C309A46F4285F60DC4FE0DC659F32C_gshared (AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) ;
// System.Void System.Func`1<System.Int32>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_1__ctor_m475512287B9508E6D4721B3022635FED517234D1_gshared (Func_1_tC288CCB64EFD1F5FD49C3F8DE91FE62905E44BCD* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::Run<System.Int32>(System.Func`1<TResult>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t4C228DE57804012969575431CFF12D57C875552D* Task_Run_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m591D59B3F4940619F93578654D14FDB3C9231229_gshared (Func_1_tC288CCB64EFD1F5FD49C3F8DE91FE62905E44BCD* ___function0, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>,Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66>(TAwaiter&,TStateMachine&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80_TisU3CInnerReadU3Ed__66_tDA84F0E1193C16C54FE1735B4B5F77FB65A68982_mEFE76303231143D18FCD18D893491185D26C7316_gshared (AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019* __this, ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80* ___awaiter0, U3CInnerReadU3Ed__66_tDA84F0E1193C16C54FE1735B4B5F77FB65A68982* ___stateMachine1, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67>(TAwaiter&,TStateMachine&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CInnerWriteU3Ed__67_tC5B5BCC77DDC7AEC5DC77B1C9D086B550402B229_m648D1A8B37E49584E67D0AEBDE27819EBA5573F8_gshared (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* ___awaiter0, U3CInnerWriteU3Ed__67_tC5B5BCC77DDC7AEC5DC77B1C9D086B550402B229* ___stateMachine1, const RuntimeMethod* method) ;
// System.Int32 System.Array::IndexOf<System.Object>(T[],T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisRuntimeObject_m4202FD457BB995E8553D010D1E861B7BD2F60BB0_gshared (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___array0, RuntimeObject* ___value1, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::ContainsKey(TKey)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_mADEF13A6F00847BA930B57377C0F34719842FE6A_gshared (Dictionary_2_t9283A2526EFCCE82F0B8EBAF55887B5456F4480A* __this, Guid_t ___key0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::Add(TKey,TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_m33B42C2DBAD6AA659C75AE78EB373B8577F9710B_gshared (Dictionary_2_t9283A2526EFCCE82F0B8EBAF55887B5456F4480A* __this, Guid_t ___key0, RuntimeObject* ___value1, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::TryGetValue(TKey,TValue&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___key0, RuntimeObject** ___value1, const RuntimeMethod* method) ;
// T1 System.Tuple`2<System.Guid,System.Object>::get_Item1()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Guid_t Tuple_2_get_Item1_m9ABFF72A759CD813826F31A3A32531CE965180FD_gshared_inline (Tuple_2_t6C77F219737155994A9494DA020666D1BC9953C2* __this, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::TryGetValue(TKey,TValue&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_mE1D4EB8E35047347D05CF24CE7482F447D77EB9D_gshared (Dictionary_2_t9283A2526EFCCE82F0B8EBAF55887B5456F4480A* __this, Guid_t ___key0, RuntimeObject** ___value1, const RuntimeMethod* method) ;
// T2 System.Tuple`2<System.Guid,System.Object>::get_Item2()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Tuple_2_get_Item2_mEAAFA3873F19AF12E94171ADE890EB6D958689F6_gshared_inline (Tuple_2_t6C77F219737155994A9494DA020666D1BC9953C2* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Guid,System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m47DD6DE10DF49155FCF329CC0B0FC21C23EDA26A_gshared (Dictionary_2_t9283A2526EFCCE82F0B8EBAF55887B5456F4480A* __this, const RuntimeMethod* method) ;
// System.Void System.Tuple`2<System.Guid,System.Object>::.ctor(T1,T2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tuple_2__ctor_m95D767462FF1D742F880BEC29757912E639965DB_gshared (Tuple_2_t6C77F219737155994A9494DA020666D1BC9953C2* __this, Guid_t ___item10, RuntimeObject* ___item21, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Add(TKey,TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_m93FFFABE8FCE7FA9793F0915E2A8842C7CD0C0C1_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___key0, RuntimeObject* ___value1, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::Start<Mono.Net.Security.MonoTlsStream/<CreateStream>d__18>(TStateMachine&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_Start_TisU3CCreateStreamU3Ed__18_tB6902486B51A9F1F578114D893BEC030E9A29950_m8ADD0CA3356CF4C1C8576500859CB8BACAA08176_gshared (AsyncTaskMethodBuilder_1_tE810F083929D7952F192036D298085BD4B048AD0* __this, U3CCreateStreamU3Ed__18_tB6902486B51A9F1F578114D893BEC030E9A29950* ___stateMachine0, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.MonoTlsStream/<CreateStream>d__18>(TAwaiter&,TStateMachine&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CCreateStreamU3Ed__18_tB6902486B51A9F1F578114D893BEC030E9A29950_m270C3AFE5C216D2A2A2C74BF3D62944E9F1E21D7_gshared (AsyncTaskMethodBuilder_1_tE810F083929D7952F192036D298085BD4B048AD0* __this, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* ___awaiter0, U3CCreateStreamU3Ed__18_tB6902486B51A9F1F578114D893BEC030E9A29950* ___stateMachine1, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2/CreateValueCallback<System.Object,System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CreateValueCallback__ctor_mDBD11BE5B28EC0300CF9FE05ADB688420B83703A_gshared (CreateValueCallback_t85D075DDCAD202B428EC47723590605681FE2BD1* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// TValue System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::GetValue(TKey,System.Runtime.CompilerServices.ConditionalWeakTable`2/CreateValueCallback<TKey,TValue>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConditionalWeakTable_2_GetValue_mD02297B46B37D3AF2884B5BD1B6A74C563F0DC42_gshared (ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605* __this, RuntimeObject* ___key0, CreateValueCallback_t85D075DDCAD202B428EC47723590605681FE2BD1* ___createValueCallback1, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConditionalWeakTable_2__ctor_m853F59C8991DABC257AA9EE373CF4061CDD53E94_gshared (ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605* __this, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::TryGetValue(TKey,TValue&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_TryGetValue_mE794BBB2811B9244CF8ECB11994F70DEB6BEFDF7_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___key0, RuntimeObject** ___value1, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::TryAdd(TKey,TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_TryAdd_mA7D07DAB0E4F228BEDBEBA3BEA124A7C839B0DFC_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___key0, RuntimeObject* ___value1, const RuntimeMethod* method) ;
// System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2__ctor_m0891574E19148D39C27C179BF2787093757C5F57_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2__ctor_m2D937986F9495D8AF5A1FEB1217D83A3AA3FF6D8_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mB2760A703784902BE10E873BC760166EC9693D63_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) ;
// System.Void System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_2__ctor_m60F64297108A01DFB5663C9BA121893957855907_gshared (Func_2_tF42287527472FA89789873F068A87C60A00EC7D3* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Collections.Generic.Dictionary`2<TKey,TElement> System.Linq.Enumerable::ToDictionary<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object,System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TKey>,System.Func`2<TSource,TElement>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* Enumerable_ToDictionary_TisKeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230_TisRuntimeObject_TisRuntimeObject_m933CB735237A5C5F4D8B122DC67EDAE5C869DF66_gshared (RuntimeObject* ___source0, Func_2_tF42287527472FA89789873F068A87C60A00EC7D3* ___keySelector1, Func_2_tF42287527472FA89789873F068A87C60A00EC7D3* ___elementSelector2, const RuntimeMethod* method) ;
// TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Value()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* KeyValuePair_2_get_Value_mC6BD8075F9C9DDEF7B4D731E5C38EC19103988E7_gshared_inline (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, const RuntimeMethod* method) ;
// TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Key()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* KeyValuePair_2_get_Key_mBD8EA7557C27E6956F2AF29DA3F7499B2F51A282_gshared_inline (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, 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.Boolean System.Nullable`1<System.Int32Enum>::get_HasValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mB1F55188CDD50D6D725D41F55D2F2540CD15FB20_gshared_inline (Nullable_1_t163D49A1147F217B7BD43BE8ACC8A5CC6B846D14* __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) ;
// T System.Nullable`1<System.Int32Enum>::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_get_Value_m0E81D9B6F2BA5FA17AA4366C5179CD09524FCB60_gshared (Nullable_1_t163D49A1147F217B7BD43BE8ACC8A5CC6B846D14* __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.Void System.Collections.Generic.Stack`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1__ctor_m70E8EDA96A608CE9BAB7FC8313B233AADA573BD4_gshared (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Stack`1<System.Object>::Push(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1_Push_m709DD11BC1291A905814182CF9A367DE7399A778_gshared (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, RuntimeObject* ___item0, const RuntimeMethod* method) ;
// T System.Collections.Generic.Stack`1<System.Object>::Pop()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Stack_1_Pop_m2AFF69249659372F07EE25817DBCAFE74E1CF778_gshared (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::.ctor(TKey,TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m0D5C3E0BE2D37252D3F4E0F0EA9A13C9458D4950_gshared (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, RuntimeObject* ___key0, RuntimeObject* ___value1, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.Stack`1<System.Object>::get_Count()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Stack_1_get_Count_mD08AE71D49787D30DDD9D484BCD323D646744D2E_gshared_inline (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, const RuntimeMethod* method) ;
// System.Void System.Span`1<System.Char>::.ctor(System.Void*,System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, void* ___pointer0, int32_t ___length1, const RuntimeMethod* method) ;
// System.Span`1<T> System.Span`1<System.Char>::Slice(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D Span_1_Slice_mDC9AA64B960B9BB8357655827A8202DF83443068_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, int32_t ___start0, const RuntimeMethod* method) ;
// System.Span`1<T> System.Span`1<System.Char>::Slice(System.Int32,System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, int32_t ___start0, int32_t ___length1, const RuntimeMethod* method) ;
// System.ReadOnlySpan`1<T> System.Span`1<System.Char>::op_Implicit(System.Span`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 Span_1_op_Implicit_mD65020B112814C67FED9F2C3DE2B0B78D4E2A486_gshared (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___span0, const RuntimeMethod* method) ;
// System.Void System.Span`1<System.Char>::.ctor(T&,System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_mC9BE2938B716B46BB6B9070B94DBE5CE814BC0E2_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, Il2CppChar* ___ptr0, int32_t ___length1, const RuntimeMethod* method) ;
// System.Void Mono.X509PalImplMono::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509PalImplMono__ctor_m8DEF93E123E01393942BB5A18755A221C588DD47 (X509PalImplMono_t2D1688733B64BBD2C1A1038CEC75A9097611B8B2* __this, const RuntimeMethod* method) ;
// System.Void System.Threading.Monitor::Exit(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9 (RuntimeObject* ___obj0, const RuntimeMethod* method) ;
// System.Void System.Threading.Monitor::Enter(System.Object,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4 (RuntimeObject* ___obj0, bool* ___lockTaken1, const RuntimeMethod* method) ;
// System.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) ;
// Mono.X509PalImpl Mono.SystemCertificateProvider::GetX509Pal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86* SystemCertificateProvider_GetX509Pal_m25337E8316D705CEC31B70783EFE75F0F72256D4 (const RuntimeMethod* method) ;
// System.Void Mono.SystemCertificateProvider::EnsureInitialized()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemCertificateProvider_EnsureInitialized_m5270DDA49FA6EA014CBA47A3AD13FB9A4C99B206 (const RuntimeMethod* method) ;
// Mono.X509PalImpl Mono.SystemCertificateProvider::get_X509Pal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86* SystemCertificateProvider_get_X509Pal_m0E8EA8BF5F1C65CA33C3C4E0FA723E93DFF74B97 (SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD* __this, const RuntimeMethod* method) ;
// System.Security.Cryptography.X509Certificates.X509Certificate2Impl Mono.X509PalImpl::ImportFallback(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* X509PalImpl_ImportFallback_m7BF753657B715800F1F182A3B7198578D197DAC3 (X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___data0, const RuntimeMethod* method) ;
// System.Security.Cryptography.X509Certificates.X509Certificate2Impl Mono.SystemCertificateProvider::Import(System.Byte[],Microsoft.Win32.SafeHandles.SafePasswordHandle,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags,Mono.CertificateImportFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* SystemCertificateProvider_Import_m530888F3CEA00BE89B9AF47DAFCF03E319A5AD73 (SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___data0, SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463* ___password1, int32_t ___keyStorageFlags2, int32_t ___importFlags3, const RuntimeMethod* method) ;
// System.Security.Cryptography.X509Certificates.X509Certificate2Impl Mono.X509PalImpl::ImportFallback(System.Byte[],Microsoft.Win32.SafeHandles.SafePasswordHandle,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* X509PalImpl_ImportFallback_mA21AA40BF7FE8E3E3F62ADBEBBBF415DC9BC588E (X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___data0, SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463* ___password1, int32_t ___keyStorageFlags2, const RuntimeMethod* method) ;
// System.Security.Cryptography.X509Certificates.X509Certificate2Impl Mono.SystemCertificateProvider::Import(System.Security.Cryptography.X509Certificates.X509Certificate,Mono.CertificateImportFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* SystemCertificateProvider_Import_mC81F89F5BDFCF15698FDCEFAAEF6ACE1F6CB585C (SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD* __this, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___cert0, int32_t ___importFlags1, const RuntimeMethod* method) ;
// System.Security.Cryptography.X509Certificates.X509CertificateImpl System.Security.Cryptography.X509Certificates.X509Certificate::get_Impl()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF* X509Certificate_get_Impl_m567BEB584A388821259EB9BBBB5B90B6182CC99D_inline (X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* __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 Mono.SystemDependencyProvider::Initialize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemDependencyProvider_Initialize_mC10ED912B2EC028539CA83BE2BAE4EE1E237E835 (const RuntimeMethod* method) ;
// System.Void Mono.SystemDependencyProvider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemDependencyProvider__ctor_mB851EC1408E241AB573D319D5BFCC1E95CF40343 (SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261* __this, const RuntimeMethod* method) ;
// Mono.SystemCertificateProvider Mono.SystemDependencyProvider::get_CertificateProvider()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD* SystemDependencyProvider_get_CertificateProvider_mEC19F34D14EB2B7BF5F8973DBC3BF3EAD5B1A19D_inline (SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261* __this, const RuntimeMethod* method) ;
// System.Void Mono.SystemCertificateProvider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemCertificateProvider__ctor_m28122065D2285B598B1F145BC122693E14F722AC (SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD* __this, const RuntimeMethod* method) ;
// System.Void Mono.DependencyInjector::Register(Mono.ISystemDependencyProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DependencyInjector_Register_m3444B2EA82C8E7C7113BA46020950A80A22E4AF5 (RuntimeObject* ___provider0, const RuntimeMethod* method) ;
// Mono.SystemDependencyProvider Mono.SystemDependencyProvider::get_Instance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261* SystemDependencyProvider_get_Instance_m410F141F466665CEBA34A72F26D78C77A8B66719 (const RuntimeMethod* method) ;
// Mono.X509PalImpl Mono.SystemDependencyProvider::get_X509Pal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86* SystemDependencyProvider_get_X509Pal_m4982FB6EE530F77FB076AD4D21A57BBEDCA8D961 (SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261* __this, const RuntimeMethod* method) ;
// System.Void Mono.X509PalImpl::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509PalImpl__ctor_m29605E82202DAC5123F4B35D87719454190299C0 (X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86* __this, const RuntimeMethod* method) ;
// System.Text.Encoding System.Text.Encoding::get_ASCII()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* Encoding_get_ASCII_mCC17A741582B0AB778D261452FD515EBD7297562 (const RuntimeMethod* method) ;
// System.String System.String::Format(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30 (String_t* ___format0, RuntimeObject* ___arg01, 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.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.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.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.Byte[] System.Convert::FromBase64String(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* Convert_FromBase64String_m421F8600CA5124E047E3D7C2BC1B653F67BC48A1 (String_t* ___s0, const RuntimeMethod* method) ;
// System.Byte[] Mono.X509PalImpl::PEM(System.String,System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* X509PalImpl_PEM_m21975D897B5389B6BA20C629AAFF37691DEE76A2 (String_t* ___type0, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___data1, const RuntimeMethod* method) ;
// System.Byte[] Mono.X509PalImpl::ConvertData(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* X509PalImpl_ConvertData_mD638DA0765DA08BFD8FF87884A2BFCC9883131DF (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___data0, const RuntimeMethod* method) ;
// System.Void Microsoft.Win32.SafeHandles.SafePasswordHandle::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafePasswordHandle__ctor_m7B9E2FCDE3D3062399AC53BDF31F9098442D8309 (SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463* __this, String_t* ___password0, const RuntimeMethod* method) ;
// System.Void System.Security.Cryptography.X509Certificates.X509Certificate2ImplMono::.ctor(System.Byte[],Microsoft.Win32.SafeHandles.SafePasswordHandle,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Certificate2ImplMono__ctor_m1B2FB6BBB7558184F07C2E42ECE23C70075A9B7D (X509Certificate2ImplMono_t4566261D31F143C8CD222DB687625E5246BFD240* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___rawData0, SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463* ___password1, int32_t ___keyStorageFlags2, const RuntimeMethod* method) ;
// System.Void System.ArgumentException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Void Mono.Security.ASN1::.ctor(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ASN1__ctor_m950BFCCF44A987ACBA12142624AA222200EE503E (ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___data0, const RuntimeMethod* method) ;
// System.Int32 Mono.Security.ASN1::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ASN1_get_Count_mBE45E73126FAD2694E9059CAC53B7AC9A5F60833 (ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* __this, const RuntimeMethod* method) ;
// Mono.Security.ASN1 Mono.Security.ASN1::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* ASN1_get_Item_mF105DA24F3BE9FA3697229CF99B1602B736B647F (ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Byte Mono.Security.ASN1::get_Tag()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint8_t ASN1_get_Tag_m1984CF0DDF54424E61BA3650D93CBA0DCB58F232_inline (ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* __this, const RuntimeMethod* method) ;
// System.Boolean Mono.Security.ASN1::CompareValue(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ASN1_CompareValue_m7397F4657555C6ACAF6622DE143C89E9E7593554 (ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___value0, const RuntimeMethod* method) ;
// System.Void Mono.Security.Authenticode.AuthenticodeDeformatter::.ctor(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AuthenticodeDeformatter__ctor_mE7D65775E1289E0DBB208034BE5EB40AB6469BA0 (AuthenticodeDeformatter_tFD4A7B915DB17925F5BD1F9FA169DCF7C2CC81D2* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___rawData0, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(System.Array,System.RuntimeFieldHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeHelpers_InitializeArray_mE10C3436BA703E4D9D41B3F8F365E4C34F9926EF (RuntimeArray* ___array0, RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 ___fldHandle1, const RuntimeMethod* method) ;
// System.Void System.Attribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2 (Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* __this, const RuntimeMethod* method) ;
// System.Security.Cryptography.X509Certificates.X509CertificateCollection/X509CertificateEnumerator System.Security.Cryptography.X509Certificates.X509CertificateCollection::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509CertificateEnumerator_t6629E2BB0FB5D92B2EB502312B764686BAFDF0D9* X509CertificateCollection_GetEnumerator_mBD26239EE292204789D87CA73DBA5C898C2F4F14 (X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* __this, const RuntimeMethod* method) ;
// System.Security.Cryptography.X509Certificates.X509Certificate System.Security.Cryptography.X509Certificates.X509CertificateCollection/X509CertificateEnumerator::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* X509CertificateEnumerator_get_Current_mF256C5D7194A99B5C567F6E62806C153DA8864F1 (X509CertificateEnumerator_t6629E2BB0FB5D92B2EB502312B764686BAFDF0D9* __this, const RuntimeMethod* method) ;
// System.Void Mono.Unity.CertHelper::AddCertificateToNativeChain(Mono.Unity.UnityTls/unitytls_x509list*,System.Security.Cryptography.X509Certificates.X509Certificate,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertHelper_AddCertificateToNativeChain_m04D6F01E00DF4D0C134704DF9403167E1878675A (unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___nativeCertificateChain0, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___certificate1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method) ;
// System.Boolean System.Security.Cryptography.X509Certificates.X509CertificateCollection/X509CertificateEnumerator::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool X509CertificateEnumerator_MoveNext_m2DCBF7B544E0E410B90DF3FD96B473B11A37E8DA (X509CertificateEnumerator_t6629E2BB0FB5D92B2EB502312B764686BAFDF0D9* __this, const RuntimeMethod* method) ;
// Mono.Unity.UnityTls/unitytls_interface_struct Mono.Unity.UnityTls::get_NativeInterface()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B (const RuntimeMethod* method) ;
// System.IntPtr System.IntPtr::op_Explicit(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t IntPtr_op_Explicit_mB06D1B6CFBA72B5C55FBEC1BA3BC25958AB60EB1 (int32_t ___value0, const RuntimeMethod* method) ;
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_append_der_t::Invoke(Mono.Unity.UnityTls/unitytls_x509list*,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void unitytls_x509list_append_der_t_Invoke_m3D900F0F07C8747B9F046512DAC7579D0C7CD193_inline (unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method) ;
// System.Int32 System.Security.Cryptography.X509Certificates.X509CertificateImplCollection::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t X509CertificateImplCollection_get_Count_mB81B621804D7FB640FDD4177610CEEDF0484378D (X509CertificateImplCollection_t9F73F6038DB8173EAFCD920EF434BF5B68FFB098* __this, const RuntimeMethod* method) ;
// System.Security.Cryptography.X509Certificates.X509CertificateImpl System.Security.Cryptography.X509Certificates.X509CertificateImplCollection::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF* X509CertificateImplCollection_get_Item_mA250EDFA1ACBE344A52C5CD818A6578CC07763A1 (X509CertificateImplCollection_t9F73F6038DB8173EAFCD920EF434BF5B68FFB098* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Void System.Security.Cryptography.X509Certificates.X509Certificate::.ctor(System.Security.Cryptography.X509Certificates.X509CertificateImpl)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Certificate__ctor_mC9377C026C89D0F8DBBBBBB060F786988E47FCAE (X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* __this, X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF* ___impl0, const RuntimeMethod* method) ;
// System.String System.String::Format(System.String,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m9499958F4B0BB6089C75760AB647AB3CA4D55806 (String_t* ___format0, RuntimeObject* ___arg01, RuntimeObject* ___arg12, const RuntimeMethod* method) ;
// System.Void Mono.Security.Interface.TlsException::.ctor(Mono.Security.Interface.AlertDescription,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TlsException__ctor_m4E03D70F9BCA4C0CA737720A43ABAB696CEA6209 (TlsException_tC2DD153B101F6116975F36613D7F7C009C5664E3* __this, uint8_t ___description0, String_t* ___message1, const RuntimeMethod* method) ;
// System.Void Mono.Unity.Debug::CheckAndThrow(Mono.Unity.UnityTls/unitytls_errorstate,System.String,Mono.Security.Interface.AlertDescription)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_CheckAndThrow_m0DC4C61C1A5FA2DF49E11420953CD3032843D59F (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 ___errorState0, String_t* ___context1, uint8_t ___defaultAlert2, const RuntimeMethod* method) ;
// Mono.Security.Interface.AlertDescription Mono.Unity.UnityTlsConversions::VerifyResultToAlertDescription(Mono.Unity.UnityTls/unitytls_x509verify_result,Mono.Security.Interface.AlertDescription)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t UnityTlsConversions_VerifyResultToAlertDescription_m23B95B4CEFBE8FB8329DF4A53E744F9592C40DA6 (uint32_t ___verifyResult0, uint8_t ___defaultAlert1, const RuntimeMethod* method) ;
// System.String System.String::Format(System.String,System.Object,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m76BF8F3A6AD789E38B708848A2688D400AAC250A (String_t* ___format0, RuntimeObject* ___arg01, RuntimeObject* ___arg12, RuntimeObject* ___arg23, const RuntimeMethod* method) ;
// System.IntPtr Mono.Unity.UnityTls::GetUnityTlsInterface()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t UnityTls_GetUnityTlsInterface_m47FB014BA17E899E2AE904DE3F59A84763D924F0 (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) ;
// T System.Runtime.InteropServices.Marshal::PtrToStructure<Mono.Unity.UnityTls/unitytls_interface_struct>(System.IntPtr)
inline unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* Marshal_PtrToStructure_Tisunitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED_m02DB8D53F26DC4B79E1F284A53103DEE72B961A0 (intptr_t ___ptr0, const RuntimeMethod* method)
{
return (( unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* (*) (intptr_t, const RuntimeMethod*))Marshal_PtrToStructure_TisRuntimeObject_mE49427AE7C74A2015680C1510E65FDD0B6163C64_gshared)(___ptr0, method);
}
// System.IntPtr Mono.Unity.UnityTlsContext::WriteCallback(System.Void*,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t UnityTlsContext_WriteCallback_m53DD70115C97432A676F3E437E8FB42F9FC068F5 (void* ___userData0, uint8_t* ___data1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method) ;
// System.IntPtr Mono.Unity.UnityTlsContext::ReadCallback(System.Void*,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t UnityTlsContext_ReadCallback_m15F3A217E44D480CAED06EB5A88503FB6259D7EC (void* ___userData0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method) ;
// Mono.Unity.UnityTls/unitytls_x509verify_result Mono.Unity.UnityTlsContext::VerifyCallback(System.Void*,Mono.Unity.UnityTls/unitytls_x509list_ref,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t UnityTlsContext_VerifyCallback_m75D7C072718405EBBF8A2A9C794C4DDFB2595BD0 (void* ___userData0, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method) ;
// System.Void Mono.Unity.UnityTlsContext::CertificateCallback(System.Void*,Mono.Unity.UnityTls/unitytls_tlsctx*,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_x509name*,System.IntPtr,Mono.Unity.UnityTls/unitytls_x509list_ref*,Mono.Unity.UnityTls/unitytls_key_ref*,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityTlsContext_CertificateCallback_mF5E626BA2545CFFA64428622678E409702C2045A (void* ___userData0, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_x509name_t8A1108C917795D8FE946B50769ACE51489C7BF5D* ___caList4, intptr_t ___caListLen5, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17* ___chain6, unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2* ___key7, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState8, const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.MobileTlsContext::.ctor(Mono.Net.Security.MobileAuthenticatedStream,Mono.Net.Security.MonoSslAuthenticationOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MobileTlsContext__ctor_mAB891D57AD3DD87C68B97E458DCE7C03634B6404 (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* __this, MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* ___parent0, MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* ___options1, 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) ;
// Mono.Unity.UnityTls/unitytls_errorstate Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_errorstate_create_t::Invoke()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 unitytls_errorstate_create_t_Invoke_m8B9A9835EA7C6A11E1627CA8904F3F853FB61BC0_inline (unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B* __this, const RuntimeMethod* method) ;
// Mono.Unity.UnityTls/unitytls_protocol Mono.Unity.UnityTlsConversions::GetMinProtocol(System.Security.Authentication.SslProtocols)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t UnityTlsConversions_GetMinProtocol_m0E691D4227CAB79BDC7F6E30E5CF2698D2F5813F (int32_t ___protocols0, const RuntimeMethod* method) ;
// Mono.Unity.UnityTls/unitytls_protocol Mono.Unity.UnityTlsConversions::GetMaxProtocol(System.Security.Authentication.SslProtocols)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t UnityTlsConversions_GetMaxProtocol_mC7381248C4DA2168508E3A4C5DE049BE58C7F250 (int32_t ___protocols0, const RuntimeMethod* method) ;
// System.Void Mono.Unity.UnityTls/unitytls_tlsctx_read_callback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_tlsctx_read_callback__ctor_mEAC57775C6AB86A2E9E6DDC440E27C845BFAA4C0 (unitytls_tlsctx_read_callback_tDBE877327789CABE940C2A724EC9A5D142318851* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Void Mono.Unity.UnityTls/unitytls_tlsctx_write_callback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_tlsctx_write_callback__ctor_m1A216E476EA91B415C0FD89765E6560410A7F7F5 (unitytls_tlsctx_write_callback_t5D4B64AD846D04E819A49689F7EAA47365636611* __this, RuntimeObject* ___object0, intptr_t ___method1, 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.Void* System.IntPtr::op_Explicit(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* IntPtr_op_Explicit_m693F2F9E685EE117D4AC080342B8959DAF684294 (intptr_t ___value0, const RuntimeMethod* method) ;
// System.Void Mono.Unity.UnityTlsContext::ExtractNativeKeyAndChainFromManagedCertificate(System.Security.Cryptography.X509Certificates.X509Certificate,Mono.Unity.UnityTls/unitytls_errorstate*,Mono.Unity.UnityTls/unitytls_x509list*&,Mono.Unity.UnityTls/unitytls_key*&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityTlsContext_ExtractNativeKeyAndChainFromManagedCertificate_mAAD3045A2D64C314FD288C3468D41767DD47205A (X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___cert0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6** ___nativeCertChain2, unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8** ___nativeKey3, const RuntimeMethod* method) ;
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_free_t::Invoke(Mono.Unity.UnityTls/unitytls_x509list*)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void unitytls_x509list_free_t_Invoke_m0974FBCD7B6920A4EC57BDCB080E1A7307EEEA02_inline (unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, const RuntimeMethod* method) ;
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_free_t::Invoke(Mono.Unity.UnityTls/unitytls_key*)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void unitytls_key_free_t_Invoke_m860A3C396228B7ADF9406AE78D439BDCD12FB98E_inline (unitytls_key_free_t_tDB8665140BAF30447F3650D323078C193566FF72* __this, unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* ___key0, const RuntimeMethod* method) ;
// Mono.Unity.UnityTls/unitytls_x509list_ref Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_get_ref_t::Invoke(Mono.Unity.UnityTls/unitytls_x509list*,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 unitytls_x509list_get_ref_t_Invoke_mE7C675B7847FFEF96C25AE757D34CE920AA16EC2_inline (unitytls_x509list_get_ref_t_t264CEEF7B8D1F10FD95E1BC78BB48BCA11E305EA* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method) ;
// Mono.Unity.UnityTls/unitytls_key_ref Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_get_ref_t::Invoke(Mono.Unity.UnityTls/unitytls_key*,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2 unitytls_key_get_ref_t_Invoke_mF5D3582922E868C42BCF32EB14471F8C800BB66E_inline (unitytls_key_get_ref_t_t8335968B19449FE0ED92E67AE9B6D95915684209* __this, unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* ___key0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method) ;
// Mono.Unity.UnityTls/unitytls_tlsctx* Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_create_server_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx_protocolrange,Mono.Unity.UnityTls/unitytls_tlsctx_callbacks,System.UInt64,System.UInt64,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* unitytls_tlsctx_create_server_t_Invoke_mCEB3E8CADCB316F4DF606A68182A4E5C9EC4D3B9_inline (unitytls_tlsctx_create_server_t_t1068941B319B893D3FFBE53FE061676FF1CC3803* __this, unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56 ___supportedProtocols0, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568 ___callbacks1, uint64_t ___certChain2, uint64_t ___leafCertificateKey3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method) ;
// System.Boolean Mono.Net.Security.MobileTlsContext::get_AskForClientCertificate()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MobileTlsContext_get_AskForClientCertificate_mABDEDBD5B9CA52FCAD16A9C271C73FA05218B767_inline (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* __this, const RuntimeMethod* method) ;
// Mono.Unity.UnityTls/unitytls_x509list* Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_create_t::Invoke(Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* unitytls_x509list_create_t_Invoke_m05D8719D913109E4997FF913015E66455BC3C7D3_inline (unitytls_x509list_create_t_t8873365FFB1556CE6B643700DB0C30E391B758D6* __this, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState0, const RuntimeMethod* method) ;
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_server_require_client_authentication_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx*,Mono.Unity.UnityTls/unitytls_x509list_ref,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void unitytls_tlsctx_server_require_client_authentication_t_Invoke_m0B6DAC7CA95263D1245C9B0A466AF00D073059EB_inline (unitytls_tlsctx_server_require_client_authentication_t_t2AC04245D1F40738C5FB87B0DEE80761E243F0BE* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___clientAuthCAList1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, 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) ;
// Mono.Unity.UnityTls/unitytls_tlsctx* Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_create_client_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx_protocolrange,Mono.Unity.UnityTls/unitytls_tlsctx_callbacks,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* unitytls_tlsctx_create_client_t_Invoke_m728BCBF32A45326A1AD8B1E17933372F7D9E01EE_inline (unitytls_tlsctx_create_client_t_t49D8F69D4152410A346CB3560B121DCC44AAC4EC* __this, unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56 ___supportedProtocols0, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568 ___callbacks1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method) ;
// System.Void Mono.Unity.UnityTls/unitytls_tlsctx_certificate_callback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_tlsctx_certificate_callback__ctor_m9A3F05E07D9A69B8FF419421DF8167DF9CE7E77A (unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_certificate_callback_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx*,Mono.Unity.UnityTls/unitytls_tlsctx_certificate_callback,System.Void*,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void unitytls_tlsctx_set_certificate_callback_t_Invoke_mFC277320977BC310A0EB484EE505E25B6E2C7CA3_inline (unitytls_tlsctx_set_certificate_callback_t_t2B54F7228DFC11BF14DCF2201BDD90CF0EF92D41* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C* ___cb1, void* ___userData2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method) ;
// System.Void Mono.Unity.UnityTls/unitytls_tlsctx_x509verify_callback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_tlsctx_x509verify_callback__ctor_m8583619DBB13F6EDF2A385C37DFAE8796EB89C0F (unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_x509verify_callback_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx*,Mono.Unity.UnityTls/unitytls_tlsctx_x509verify_callback,System.Void*,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void unitytls_tlsctx_set_x509verify_callback_t_Invoke_mA9AE094A7DB71B4B7B051BB3D67CB98A7F48D3CE_inline (unitytls_tlsctx_set_x509verify_callback_t_t032FE980BEDD0D201CAF1EE653ABE303CDBCA7C9* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D* ___cb1, void* ___userData2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, 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.Security.Cryptography.AsymmetricAlgorithm System.Security.Cryptography.X509Certificates.X509Certificate2::get_PrivateKey()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsymmetricAlgorithm_t5E7E9D26CE0EDCAABD84F616A44E476473BA2AF8* X509Certificate2_get_PrivateKey_mB2D1370AFF6F005B4A18A2223363C353B8D24A4A (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, const RuntimeMethod* method) ;
// System.Void System.ArgumentException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___message0, String_t* ___paramName1, const RuntimeMethod* method) ;
// System.Byte[] Mono.Security.Cryptography.PKCS8/PrivateKeyInfo::Encode(System.Security.Cryptography.AsymmetricAlgorithm)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* PrivateKeyInfo_Encode_mE4EDCBEED688E2625A19F871FABAB9A9C5D93CB5 (AsymmetricAlgorithm_t5E7E9D26CE0EDCAABD84F616A44E476473BA2AF8* ___aa0, const RuntimeMethod* method) ;
// Mono.Unity.UnityTls/unitytls_key* Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_parse_der_t::Invoke(System.Byte*,System.IntPtr,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* unitytls_key_parse_der_t_Invoke_m244086296EBDE0C0B0F072B33AAD5BA39A030DB6_inline (unitytls_key_parse_der_t_tC218AEF9253FA105762F39041F696A06C52D3F10* __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, uint8_t* ___password2, intptr_t ___passwordLen3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method) ;
// System.IntPtr Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_read_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx*,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t unitytls_tlsctx_read_t_Invoke_m0FB34952D7592128A211AA0DA5536A325494FA04_inline (unitytls_tlsctx_read_t_t3E3C711F7A47E704ABDF0DF0B7515E7306EB7C95* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method) ;
// System.Int32 System.IntPtr::op_Explicit(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IntPtr_op_Explicit_m358ACBBA288C56CC429F39D4D481669D0620B590 (intptr_t ___value0, const RuntimeMethod* method) ;
// System.Void System.ValueTuple`2<System.Int32,System.Boolean>::.ctor(T1,T2)
inline void ValueTuple_2__ctor_m3A39BEA90C84F8D68C34883978E96D2C2630B423 (ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942* __this, int32_t ___item10, bool ___item21, const RuntimeMethod* method)
{
(( void (*) (ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942*, int32_t, bool, const RuntimeMethod*))ValueTuple_2__ctor_m3A39BEA90C84F8D68C34883978E96D2C2630B423_gshared)(__this, ___item10, ___item21, method);
}
// System.IntPtr Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_write_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx*,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t unitytls_tlsctx_write_t_Invoke_mC6A06FBF8E4C5652830248B521C83865B3F2DBBC_inline (unitytls_tlsctx_write_t_t976A41600B61F9C8DF022296B67316FFA53EB386* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint8_t* ___data1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method) ;
// System.Void System.NotSupportedException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* __this, const RuntimeMethod* method) ;
// Mono.Security.Interface.MonoTlsSettings Mono.Net.Security.MobileTlsContext::get_Settings()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* MobileTlsContext_get_Settings_m68D8D1488C1778311BE2EE65F549081B0E7D362C (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* __this, const RuntimeMethod* method) ;
// System.Boolean Mono.Security.Interface.MonoTlsSettings::get_SendCloseNotify()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MonoTlsSettings_get_SendCloseNotify_m1D35BCF28142455EC9CDF16CA36A8DEF57B05625_inline (MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* __this, const RuntimeMethod* method) ;
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_notify_close_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx*,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void unitytls_tlsctx_notify_close_t_Invoke_m6E5688DDA03F313A1C470E4C30263C5B4A174138_inline (unitytls_tlsctx_notify_close_t_t717D19846262E3DF5D1A69C5E136912E7A54B253* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method) ;
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_free_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx*)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void unitytls_tlsctx_free_t_Invoke_mC5D5191740D2507A83D95B4B3E6CE4C4A9FBAFD2_inline (unitytls_tlsctx_free_t_tFBF7BB64D2E1C183718FB5809ABF0051395FD8F0* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.MobileTlsContext::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MobileTlsContext_Dispose_m020A795EE75CF99916490B91697E0EB31C5A2F94 (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* __this, bool ___disposing0, const RuntimeMethod* method) ;
// System.Void System.Security.Cryptography.X509Certificates.X509Certificate::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Certificate_Dispose_m1BAF5EFE5ED5A16CFD65A159B1E671BE7CDC63CC (X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* __this, 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) ;
// Mono.Security.Interface.CipherSuiteCode[] Mono.Security.Interface.MonoTlsSettings::get_EnabledCiphers()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR CipherSuiteCodeU5BU5D_t61EC0E6F53394985FFC36DEB587C70F4EE26D435* MonoTlsSettings_get_EnabledCiphers_m7BD72B78EF53FAF51FEEBF5B3657187EC876394A_inline (MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* __this, const RuntimeMethod* method) ;
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_supported_ciphersuites_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx*,Mono.Unity.UnityTls/unitytls_ciphersuite*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void unitytls_tlsctx_set_supported_ciphersuites_t_Invoke_m8E153461EFCEAAAF59D1E918F7C06B14358B43E2_inline (unitytls_tlsctx_set_supported_ciphersuites_t_t007E8706D364DE695F1DBF28358058A1E73DF544* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint32_t* ___supportedCiphersuites1, intptr_t ___supportedCiphersuitesLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method) ;
// Mono.Unity.UnityTls/unitytls_x509verify_result Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_process_handshake_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx*,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t unitytls_tlsctx_process_handshake_t_Invoke_mD8F2422C5C6C9FF0ADDAB17AECB998C2E225CF7A_inline (unitytls_tlsctx_process_handshake_t_t8D94F5FAD00CD61BF950829866C0C6E29D202606* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method) ;
// System.Boolean Mono.Net.Security.MobileTlsContext::get_IsServer()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MobileTlsContext_get_IsServer_m79E765F4FA8DAF1C98322134D48F6CACBEC824B7_inline (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* __this, const RuntimeMethod* method) ;
// System.Boolean Mono.Net.Security.MobileTlsContext::ValidateCertificate(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.X509Certificates.X509Chain)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MobileTlsContext_ValidateCertificate_m7A7661E339AC2252062B3F7224621C9FACFEA234 (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* __this, X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* ___leaf0, X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* ___chain1, const RuntimeMethod* method) ;
// System.Void Mono.Unity.Debug::CheckAndThrow(Mono.Unity.UnityTls/unitytls_errorstate,Mono.Unity.UnityTls/unitytls_x509verify_result,System.String,Mono.Security.Interface.AlertDescription)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_CheckAndThrow_m47BE0492786EEE30351AF6662609556CABAB0A80 (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 ___errorState0, uint32_t ___verifyResult1, String_t* ___context2, uint8_t ___defaultAlert3, const RuntimeMethod* method) ;
// Mono.Unity.UnityTls/unitytls_ciphersuite Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_get_ciphersuite_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx*,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t unitytls_tlsctx_get_ciphersuite_t_Invoke_m2DF155D62800CFFD66AC63538F69DB2275EC3FFD_inline (unitytls_tlsctx_get_ciphersuite_t_t7317543D399259616648B1AA19447C4B63F70EF2* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method) ;
// Mono.Unity.UnityTls/unitytls_protocol Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_get_protocol_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx*,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t unitytls_tlsctx_get_protocol_t_Invoke_m3D931DDD241F0B3EDA8F6F1EFA159C0669E7E3F0_inline (unitytls_tlsctx_get_protocol_t_t04E3B73C1D77379F7C7388ED4934189365326F3C* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method) ;
// System.Void Mono.Security.Interface.MonoTlsConnectionInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTlsConnectionInfo__ctor_m795EBB319F254C648313E21E85ABD2A4CBE4F93C (MonoTlsConnectionInfo_t3286AE494AEF3E62C9BE40FAC497849DFA193964* __this, const RuntimeMethod* method) ;
// System.Void Mono.Security.Interface.MonoTlsConnectionInfo::set_CipherSuiteCode(Mono.Security.Interface.CipherSuiteCode)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MonoTlsConnectionInfo_set_CipherSuiteCode_m3BC21FD10B760939C96F6FBDB39DFEADDE50CCF5_inline (MonoTlsConnectionInfo_t3286AE494AEF3E62C9BE40FAC497849DFA193964* __this, uint16_t ___value0, const RuntimeMethod* method) ;
// Mono.Security.Interface.TlsProtocols Mono.Unity.UnityTlsConversions::ConvertProtocolVersion(Mono.Unity.UnityTls/unitytls_protocol)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityTlsConversions_ConvertProtocolVersion_mB9C0E5A59CC1564EDF56D06C396461DA678CAD0B (uint32_t ___protocol0, const RuntimeMethod* method) ;
// System.Void Mono.Security.Interface.MonoTlsConnectionInfo::set_ProtocolVersion(Mono.Security.Interface.TlsProtocols)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MonoTlsConnectionInfo_set_ProtocolVersion_m166E8E558B961F343E719D333A892E597AB17404_inline (MonoTlsConnectionInfo_t3286AE494AEF3E62C9BE40FAC497849DFA193964* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.String Mono.Net.Security.MobileTlsContext::get_ServerName()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* MobileTlsContext_get_ServerName_m3CF7B9F7D249B9B2F553B5A72F439B5502229BF3_inline (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* __this, const RuntimeMethod* method) ;
// System.Void Mono.Security.Interface.MonoTlsConnectionInfo::set_PeerDomainName(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MonoTlsConnectionInfo_set_PeerDomainName_mDCAB6395BFE1BEF3ACEF680AEA6A3FA4DDEA2A97_inline (MonoTlsConnectionInfo_t3286AE494AEF3E62C9BE40FAC497849DFA193964* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.IntPtr System.IntPtr::op_Explicit(System.Void*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t IntPtr_op_Explicit_m04BEF6277775C13DD8A986812AAA3FCEC32DCCBE (void* ___value0, 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.Object System.Runtime.InteropServices.GCHandle::get_Target()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* GCHandle_get_Target_m481F9508DA5E384D33CD1F4450060DC56BBD4CD5 (GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* __this, const RuntimeMethod* method) ;
// System.IntPtr Mono.Unity.UnityTlsContext::WriteCallback(System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t UnityTlsContext_WriteCallback_m28708B36ED5744CED29D543B86A2E117DFF661BA (UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C* __this, uint8_t* ___data0, intptr_t ___bufferLen1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method) ;
// System.Void System.Runtime.InteropServices.Marshal::Copy(System.IntPtr,System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Marshal_Copy_m92700C9E60BAB2FDAF6CE02C16EFE9DCB7D6035E (intptr_t ___source0, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___destination1, int32_t ___startIndex2, int32_t ___length3, const RuntimeMethod* method) ;
// Mono.Net.Security.MobileAuthenticatedStream Mono.Net.Security.MobileTlsContext::get_Parent()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* MobileTlsContext_get_Parent_mC509F430FE5581A104C62FB3A08AE9D97DE19098_inline (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* __this, const RuntimeMethod* method) ;
// System.Boolean Mono.Net.Security.MobileAuthenticatedStream::InternalWrite(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MobileAuthenticatedStream_InternalWrite_mDCC759D5D81736625897B956239DBEEE8F7AE743 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___offset1, int32_t ___size2, const RuntimeMethod* method) ;
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_errorstate_raise_error_t::Invoke(Mono.Unity.UnityTls/unitytls_errorstate*,Mono.Unity.UnityTls/unitytls_error_code)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void unitytls_errorstate_raise_error_t_Invoke_m9B2B3433846A318340EDF0ED0E33C45030CCEA02_inline (unitytls_errorstate_raise_error_t_t8C20FC78CA5BBEE0248CC09D1C1AF25BCB3835CF* __this, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState0, uint32_t ___errorCode1, const RuntimeMethod* method) ;
// System.IntPtr Mono.Unity.UnityTlsContext::ReadCallback(System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t UnityTlsContext_ReadCallback_mE4765DDC1755E4A030F1D3B59B255072FF656ED1 (UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C* __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method) ;
// System.Int32 Mono.Net.Security.MobileAuthenticatedStream::InternalRead(System.Byte[],System.Int32,System.Int32,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MobileAuthenticatedStream_InternalRead_m90FE0F2015227506EF5E6EA18E49EEA5E3A1C319 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___offset1, int32_t ___size2, bool* ___outWantMore3, const RuntimeMethod* method) ;
// System.Void System.Runtime.InteropServices.Marshal::Copy(System.Byte[],System.Int32,System.IntPtr,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Marshal_Copy_mB1CECEA99856A7296FF33D2C9C51CC7E7150E5F8 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___source0, int32_t ___startIndex1, intptr_t ___destination2, int32_t ___length3, const RuntimeMethod* method) ;
// Mono.Unity.UnityTls/unitytls_x509verify_result Mono.Unity.UnityTlsContext::VerifyCallback(Mono.Unity.UnityTls/unitytls_x509list_ref,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t UnityTlsContext_VerifyCallback_m2498A768960C1A792A1B60A1F47D16624E543537 (UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method) ;
// System.Void Mono.Unity.X509ChainImplUnityTls::.ctor(Mono.Unity.UnityTls/unitytls_x509list_ref,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509ChainImplUnityTls__ctor_mD653A56ED8AD47C0A46DB3D89749A055D4BB1ABC (X509ChainImplUnityTls_t37736839B9CDAD02F5F02693121A4C18C0020B40* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___nativeCertificateChain0, bool ___reverseOrder1, const RuntimeMethod* method) ;
// System.Void System.Security.Cryptography.X509Certificates.X509Chain::.ctor(System.Security.Cryptography.X509Certificates.X509ChainImpl)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Chain__ctor_m6F2404400D7192FDA4CCB37DC67F18F12616000B (X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* __this, X509ChainImpl_tBA1BF154DB9DC321EE068BBC53C7CF43CAA2621F* ___impl0, const RuntimeMethod* method) ;
// System.Security.Cryptography.X509Certificates.X509ChainElementCollection System.Security.Cryptography.X509Certificates.X509Chain::get_ChainElements()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509ChainElementCollection_t543DE35924C12A624ADA5111F7F47C1F9F99E70D* X509Chain_get_ChainElements_m656A4A5EEA69BB8C4F5995DEF7C88AD9EB961AED (X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* __this, const RuntimeMethod* method) ;
// System.Security.Cryptography.X509Certificates.X509ChainElement System.Security.Cryptography.X509Certificates.X509ChainElementCollection::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509ChainElement_t95FFAD3F504A1CA731ECCBA88C5CB3B0EE28786D* X509ChainElementCollection_get_Item_mC2A5AAFBAEF74FB085685620066058ACDC71D69A (X509ChainElementCollection_t543DE35924C12A624ADA5111F7F47C1F9F99E70D* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Security.Cryptography.X509Certificates.X509Certificate2 System.Security.Cryptography.X509Certificates.X509ChainElement::get_Certificate()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* X509ChainElement_get_Certificate_m6AF210BCAD2D94C19DFEF475BDAA84E5FF4AF105_inline (X509ChainElement_t95FFAD3F504A1CA731ECCBA88C5CB3B0EE28786D* __this, const RuntimeMethod* method) ;
// System.Void Mono.Unity.UnityTlsContext::CertificateCallback(Mono.Unity.UnityTls/unitytls_tlsctx*,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_x509name*,System.IntPtr,Mono.Unity.UnityTls/unitytls_x509list_ref*,Mono.Unity.UnityTls/unitytls_key_ref*,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityTlsContext_CertificateCallback_m5A4C050D5D49709202B72A50F33533E7C5C6B113 (UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint8_t* ___cn1, intptr_t ___cnLen2, unitytls_x509name_t8A1108C917795D8FE946B50769ACE51489C7BF5D* ___caList3, intptr_t ___caListLen4, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17* ___chain5, unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2* ___key6, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState7, const RuntimeMethod* method) ;
// System.Security.Cryptography.X509Certificates.X509Certificate Mono.Net.Security.MobileTlsContext::SelectClientCertificate(System.String[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* MobileTlsContext_SelectClientCertificate_mF12113474A7EF6BDC8F7119D418722173A4EBDC1 (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* __this, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___acceptableIssuers0, const RuntimeMethod* method) ;
// Mono.Unity.UnityTls/unitytls_x509verify_result Mono.Unity.UnityTlsProvider::x509verify_callback(System.Void*,Mono.Unity.UnityTls/unitytls_x509_ref,Mono.Unity.UnityTls/unitytls_x509verify_result,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t UnityTlsProvider_x509verify_callback_m47823254E133F7304ABFAE5A1F0D218402BC5B45 (void* ___userData0, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 ___cert1, uint32_t ___result2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method) ;
// System.Void Mono.Unity.UnityTlsStream::.ctor(System.IO.Stream,System.Boolean,System.Net.Security.SslStream,Mono.Security.Interface.MonoTlsSettings,Mono.Net.Security.MobileTlsProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityTlsStream__ctor_mEE3913BCF1FE718A3C5209FC2AD90D44D312F593 (UnityTlsStream_tF1D4B34A71A716396F78FDAF2C35F812E09A4FDE* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___innerStream0, bool ___leaveInnerStreamOpen1, SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* ___owner2, MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* ___settings3, MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* ___provider4, const RuntimeMethod* method) ;
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_append_t::Invoke(Mono.Unity.UnityTls/unitytls_x509list*,Mono.Unity.UnityTls/unitytls_x509_ref,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void unitytls_x509list_append_t_Invoke_mEF1811CFAD02743F745D8A8E09E2E84D68154976_inline (unitytls_x509list_append_t_tC84B9CA7C15F5D1DE98386670A80D5F98559D98E* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 ___cert1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method) ;
// System.Security.Cryptography.X509Certificates.X509ChainImpl System.Security.Cryptography.X509Certificates.X509Chain::get_Impl()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509ChainImpl_tBA1BF154DB9DC321EE068BBC53C7CF43CAA2621F* X509Chain_get_Impl_m4B712BC99067069BCE090957082F5FE17EE237A6 (X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* __this, const RuntimeMethod* method) ;
// System.Int32 System.Collections.CollectionBase::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CollectionBase_get_Count_m2BD48A6DDD376554A7956E4B26EC27F9F1E43C72 (CollectionBase_t44F966CC555C87F2815D668FB4586526E1C2383F* __this, const RuntimeMethod* method) ;
// Mono.Unity.UnityTls/unitytls_x509list_ref Mono.Unity.X509ChainImplUnityTls::get_NativeCertificateChain()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 X509ChainImplUnityTls_get_NativeCertificateChain_mBFE146631BDB57BB66B00EBB21414AC7AFF73E72_inline (X509ChainImplUnityTls_t37736839B9CDAD02F5F02693121A4C18C0020B40* __this, const RuntimeMethod* method) ;
// Mono.Unity.UnityTls/unitytls_x509_ref Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_get_x509_t::Invoke(Mono.Unity.UnityTls/unitytls_x509list_ref,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 unitytls_x509list_get_x509_t_Invoke_m9080273A34FE768B80024B96001D5B7451A46EC0_inline (unitytls_x509list_get_x509_t_t428DCD367D50DCDD5ECE6DCFEB8967C5F7C3DFE8* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___list0, intptr_t ___index1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, 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.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.Void Mono.Unity.CertHelper::AddCertificatesToNativeChain(Mono.Unity.UnityTls/unitytls_x509list*,System.Security.Cryptography.X509Certificates.X509CertificateCollection,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertHelper_AddCertificatesToNativeChain_m6A078F5FFEA16184F19AEEDD4F9C8E00F68BDD48 (unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___nativeCertificateChain0, X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* ___certificates1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method) ;
// Mono.Security.Interface.MonoTlsSettings Mono.Net.Security.ChainValidationHelper::get_Settings()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* ChainValidationHelper_get_Settings_m94E2DC79CB696A4F54956D812983E62FEB33D22E_inline (ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755* __this, const RuntimeMethod* method) ;
// System.Security.Cryptography.X509Certificates.X509CertificateCollection Mono.Security.Interface.MonoTlsSettings::get_TrustAnchors()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* MonoTlsSettings_get_TrustAnchors_m4CA73EEBF73B4344C5334F3BC5BBFE1BC27BC7AE_inline (MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* __this, const RuntimeMethod* method) ;
// System.Void Mono.Unity.UnityTls/unitytls_x509verify_callback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_x509verify_callback__ctor_mEDC6857514FD696562638B3F1DFE959920D1EB26 (unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// Mono.Unity.UnityTls/unitytls_x509verify_result Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509verify_explicit_ca_t::Invoke(Mono.Unity.UnityTls/unitytls_x509list_ref,Mono.Unity.UnityTls/unitytls_x509list_ref,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_x509verify_callback,System.Void*,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t unitytls_x509verify_explicit_ca_t_Invoke_m4028A9AE8FD6B69DB36BAE68CC3A3362A825738B_inline (unitytls_x509verify_explicit_ca_t_t1B3D98BF01F059A3C2ADE87EFDDA03C557A3D08D* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain0, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___trustCA1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* ___cb4, void* ___userData5, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState6, const RuntimeMethod* method) ;
// Mono.Unity.UnityTls/unitytls_x509verify_result Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509verify_default_ca_t::Invoke(Mono.Unity.UnityTls/unitytls_x509list_ref,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_x509verify_callback,System.Void*,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t unitytls_x509verify_default_ca_t_Invoke_m1D112FD2010361D2DB08F08A598000ADCD0875C3_inline (unitytls_x509verify_default_ca_t_tED88B7ABC8408A22DB51B1F57D5FC65BDD2EC809* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain0, uint8_t* ___cn1, intptr_t ___cnLen2, unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* ___cb3, void* ___userData4, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState5, const RuntimeMethod* method) ;
// System.Void System.Security.Cryptography.X509Certificates.X509Chain::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Chain_Dispose_mC10F7CE7DAF0799F13C798184330C046222E305D (X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* __this, const RuntimeMethod* method) ;
// System.Net.Security.SslPolicyErrors Mono.Unity.UnityTlsConversions::VerifyResultToPolicyErrror(Mono.Unity.UnityTls/unitytls_x509verify_result)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityTlsConversions_VerifyResultToPolicyErrror_m6D9F0BBA8B599BF2133E28C4D804472CEDA5AFCF (uint32_t ___verifyResult0, const RuntimeMethod* method) ;
// System.Security.Cryptography.X509Certificates.X509ChainStatusFlags Mono.Unity.UnityTlsConversions::VerifyResultToChainStatus(Mono.Unity.UnityTls/unitytls_x509verify_result)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityTlsConversions_VerifyResultToChainStatus_m266E87DEE12D19BFD385BCCE2F5F30C527D6DB74 (uint32_t ___verifyResult0, const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.MobileTlsProvider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MobileTlsProvider__ctor_m31D6E547C8B388F136D323088D376FD54FE69B68 (MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* __this, const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.MobileAuthenticatedStream::.ctor(System.IO.Stream,System.Boolean,System.Net.Security.SslStream,Mono.Security.Interface.MonoTlsSettings,Mono.Net.Security.MobileTlsProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MobileAuthenticatedStream__ctor_mFA70F7AAAE52C6559DC554D363E5FFD4DE665CED (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___innerStream0, bool ___leaveInnerStreamOpen1, SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* ___owner2, MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* ___settings3, MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* ___provider4, const RuntimeMethod* method) ;
// System.Void Mono.Unity.UnityTlsContext::.ctor(Mono.Net.Security.MobileAuthenticatedStream,Mono.Net.Security.MonoSslAuthenticationOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityTlsContext__ctor_m4B8251E305EF5AC2CCB5D963BCB2F61D0F18408C (UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C* __this, MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* ___parent0, MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* ___options1, const RuntimeMethod* method) ;
// System.Void System.Security.Cryptography.X509Certificates.X509ChainPolicy::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509ChainPolicy__ctor_m069F83BFFF3E79ED4CEBE8CF553CC65576F8D3D9 (X509ChainPolicy_t34F49B4067492A1E5F91DD91FA7C934B68D880EC* __this, const RuntimeMethod* method) ;
// System.Void System.Security.Cryptography.X509Certificates.X509ChainImpl::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509ChainImpl__ctor_m16F671EB135FB6E7E3CF6C42715D7106E6FAAF18 (X509ChainImpl_tBA1BF154DB9DC321EE068BBC53C7CF43CAA2621F* __this, const RuntimeMethod* method) ;
// System.Void System.Security.Cryptography.X509Certificates.X509ChainImpl::ThrowIfContextInvalid()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509ChainImpl_ThrowIfContextInvalid_m85AF480D1B87D8DA3D780040385CBB88D9B173CD (X509ChainImpl_tBA1BF154DB9DC321EE068BBC53C7CF43CAA2621F* __this, const RuntimeMethod* method) ;
// System.Void System.Security.Cryptography.X509Certificates.X509ChainElementCollection::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509ChainElementCollection__ctor_mAEF26718ED02C8480A7041E3C6B66500950E013D (X509ChainElementCollection_t543DE35924C12A624ADA5111F7F47C1F9F99E70D* __this, const RuntimeMethod* method) ;
// System.IntPtr Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509_export_der_t::Invoke(Mono.Unity.UnityTls/unitytls_x509_ref,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t unitytls_x509_export_der_t_Invoke_m13DB2E205EF9ED37B75F5B763C5080E7077841AD_inline (unitytls_x509_export_der_t_tB784597940DE501BB5FEFA3EA528634559A16749* __this, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 ___cert0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method) ;
// System.Void System.Security.Cryptography.X509Certificates.X509Certificate2::.ctor(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Certificate2__ctor_m34CFFC999D3A152729A5C59DBE80AB709547DA19 (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___rawData0, const RuntimeMethod* method) ;
// System.Void System.Security.Cryptography.X509Certificates.X509ChainElementCollection::Add(System.Security.Cryptography.X509Certificates.X509Certificate2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509ChainElementCollection_Add_mA032CE8B536713B0E070C9A211B084706D04F6C8 (X509ChainElementCollection_t543DE35924C12A624ADA5111F7F47C1F9F99E70D* __this, X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* ___certificate0, const RuntimeMethod* method) ;
// System.Int32 System.Security.Cryptography.X509Certificates.X509ChainElementCollection::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t X509ChainElementCollection_get_Count_m5448D972C3009FA67B3F4E13061B6012D561B78B (X509ChainElementCollection_t543DE35924C12A624ADA5111F7F47C1F9F99E70D* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::.ctor()
inline void List_1__ctor_mF30FEE3E944E17EC5FB08148FF63FE253821092D (List_1_t14F08D1F5A2E0F276F976F81CC13B7CB7EDABE33* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t14F08D1F5A2E0F276F976F81CC13B7CB7EDABE33*, const RuntimeMethod*))List_1__ctor_mF30FEE3E944E17EC5FB08148FF63FE253821092D_gshared)(__this, method);
}
// System.Void System.Security.Cryptography.X509Certificates.X509ChainStatus::.ctor(System.Security.Cryptography.X509Certificates.X509ChainStatusFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509ChainStatus__ctor_m5AD96E11604F8DB96673677AC2FFF68EBA550859 (X509ChainStatus_t5A57DDA24AA1FCA9F2B8D70B767CDDF388E4A80D* __this, int32_t ___flag0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::Add(T)
inline void List_1_Add_m1794A41080E7D990FC91C41044F40666784FAF5F_inline (List_1_t14F08D1F5A2E0F276F976F81CC13B7CB7EDABE33* __this, X509ChainStatus_t5A57DDA24AA1FCA9F2B8D70B767CDDF388E4A80D ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t14F08D1F5A2E0F276F976F81CC13B7CB7EDABE33*, X509ChainStatus_t5A57DDA24AA1FCA9F2B8D70B767CDDF388E4A80D, const RuntimeMethod*))List_1_Add_m1794A41080E7D990FC91C41044F40666784FAF5F_gshared_inline)(__this, ___item0, method);
}
// System.Void System.Security.Cryptography.X509Certificates.X509ChainElementCollection::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509ChainElementCollection_Clear_mF0C2AE76F73C525E29E808615576C7EE11409659 (X509ChainElementCollection_t543DE35924C12A624ADA5111F7F47C1F9F99E70D* __this, const RuntimeMethod* method) ;
// System.Void System.Security.Cryptography.X509Certificates.X509ChainImpl::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509ChainImpl_Dispose_m9F8B96FFCB317F7F8C8E1ACA82061EA7404B732D (X509ChainImpl_tBA1BF154DB9DC321EE068BBC53C7CF43CAA2621F* __this, bool ___disposing0, 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 Mono.Net.Security.BufferOffsetSize::.ctor(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BufferOffsetSize__ctor_mB62BB1F461998563FB6793F509FF26FB79B81955 (BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___offset1, int32_t ___size2, const RuntimeMethod* method) ;
// System.Int32 Mono.Net.Security.BufferOffsetSize::get_Remaining()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BufferOffsetSize_get_Remaining_mB3CB4287B2AAAD7976374B914E95ABFCE71B1A4E (BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* __this, const RuntimeMethod* method) ;
// System.Void System.Array::CopyTo(System.Array,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_CopyTo_mFD42E3443AB3B850ED6F19359698E242A08E1BAB (RuntimeArray* __this, RuntimeArray* ___array0, int32_t ___index1, const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.BufferOffsetSize2::MakeRoom(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BufferOffsetSize2_MakeRoom_mCE9261D07E745C72E3032A9FDC19FA54FEF0BE28 (BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* __this, int32_t ___size0, const RuntimeMethod* method) ;
// System.Int32 Mono.Net.Security.BufferOffsetSize::get_EndOffset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BufferOffsetSize_get_EndOffset_m114650CE0C422157F8EDCD8C0F1B89C5FFE7F9C9 (BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* __this, const RuntimeMethod* method) ;
// System.Void System.Buffer::BlockCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_BlockCopy_mD8CF7EC96ADA7A542CCA3F3C73510624E10197A9 (RuntimeArray* ___src0, int32_t ___srcOffset1, RuntimeArray* ___dst2, int32_t ___dstOffset3, int32_t ___count4, const RuntimeMethod* method) ;
// System.Type System.Object::GetType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3 (RuntimeObject* __this, const RuntimeMethod* method) ;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<Mono.Net.Security.AsyncProtocolResult>::Create()
inline AsyncTaskMethodBuilder_1_tB85AB2AF366A9742C159DD6FBD3FE38EDD13543B AsyncTaskMethodBuilder_1_Create_m7C55888A44224AB0957E19F73B82D5140ED3ADE7 (const RuntimeMethod* method)
{
return (( AsyncTaskMethodBuilder_1_tB85AB2AF366A9742C159DD6FBD3FE38EDD13543B (*) (const RuntimeMethod*))AsyncTaskMethodBuilder_1_Create_mAFCDBB3F3D94DC87243FAB2D72DD85D1EFB68441_gshared)(method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<Mono.Net.Security.AsyncProtocolResult>::Start<Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23>(TStateMachine&)
inline void AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__23_t9FFB39587AAED5C56B39C31D1D2C91BF10B7D2A8_m674D6C69CCA292AD5498A90ECFFA86F4F8D8D16D (AsyncTaskMethodBuilder_1_tB85AB2AF366A9742C159DD6FBD3FE38EDD13543B* __this, U3CStartOperationU3Ed__23_t9FFB39587AAED5C56B39C31D1D2C91BF10B7D2A8* ___stateMachine0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_tB85AB2AF366A9742C159DD6FBD3FE38EDD13543B*, U3CStartOperationU3Ed__23_t9FFB39587AAED5C56B39C31D1D2C91BF10B7D2A8*, const RuntimeMethod*))AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__23_t9FFB39587AAED5C56B39C31D1D2C91BF10B7D2A8_mC20ACD663209E31627ADFC71C5D256A10A497424_gshared)(__this, ___stateMachine0, method);
}
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<Mono.Net.Security.AsyncProtocolResult>::get_Task()
inline Task_1_t7B91A92D06E8BCB69911B6822DD99220DDB735EE* AsyncTaskMethodBuilder_1_get_Task_mA3EE3DEF497EE0C4BCD6BE76F8C4BCD2FBE09BA6 (AsyncTaskMethodBuilder_1_tB85AB2AF366A9742C159DD6FBD3FE38EDD13543B* __this, const RuntimeMethod* method)
{
return (( Task_1_t7B91A92D06E8BCB69911B6822DD99220DDB735EE* (*) (AsyncTaskMethodBuilder_1_tB85AB2AF366A9742C159DD6FBD3FE38EDD13543B*, const RuntimeMethod*))AsyncTaskMethodBuilder_1_get_Task_mEA092EC6F1324A9D694CF6056FA8583F2A2BDC89_gshared)(__this, method);
}
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Create()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06 AsyncTaskMethodBuilder_Create_m84CBB9FB50A2D132B0A549652557CBE01867A82B (const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24>(TStateMachine&)
inline void AsyncTaskMethodBuilder_Start_TisU3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786_m73AF670DABBD2788FF72BC1EDABC58043CEC6796 (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, U3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786* ___stateMachine0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06*, U3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786*, const RuntimeMethod*))AsyncTaskMethodBuilder_Start_TisU3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786_m73AF670DABBD2788FF72BC1EDABC58043CEC6796_gshared)(__this, ___stateMachine0, method);
}
// System.Threading.Tasks.Task System.Runtime.CompilerServices.AsyncTaskMethodBuilder::get_Task()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* AsyncTaskMethodBuilder_get_Task_mE9125D5F8B96F26D1BA5A5347ED82669521C7F9E (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, const RuntimeMethod* method) ;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::Create()
inline AsyncTaskMethodBuilder_1_t7BA09CA1BB279AA706D98A618EE11038FD1985F7 AsyncTaskMethodBuilder_1_Create_mD6BC27D1E6350ECB9B61238E38D4C15C8CE96802 (const RuntimeMethod* method)
{
return (( AsyncTaskMethodBuilder_1_t7BA09CA1BB279AA706D98A618EE11038FD1985F7 (*) (const RuntimeMethod*))AsyncTaskMethodBuilder_1_Create_mD6BC27D1E6350ECB9B61238E38D4C15C8CE96802_gshared)(method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::Start<Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25>(TStateMachine&)
inline void AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__25_t05729A3E67E2FF3B23435B02B158BDB2F3C7C84E_mE716BD9AA000EF73BFAB4F1FFD98494E9E32FA5C (AsyncTaskMethodBuilder_1_t7BA09CA1BB279AA706D98A618EE11038FD1985F7* __this, U3CInnerReadU3Ed__25_t05729A3E67E2FF3B23435B02B158BDB2F3C7C84E* ___stateMachine0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t7BA09CA1BB279AA706D98A618EE11038FD1985F7*, U3CInnerReadU3Ed__25_t05729A3E67E2FF3B23435B02B158BDB2F3C7C84E*, const RuntimeMethod*))AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__25_t05729A3E67E2FF3B23435B02B158BDB2F3C7C84E_mE716BD9AA000EF73BFAB4F1FFD98494E9E32FA5C_gshared)(__this, ___stateMachine0, method);
}
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::get_Task()
inline Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* AsyncTaskMethodBuilder_1_get_Task_mB36BC37F05CC1BD3EDB9EC66B9BBEA7DE33F3D03 (AsyncTaskMethodBuilder_1_t7BA09CA1BB279AA706D98A618EE11038FD1985F7* __this, const RuntimeMethod* method)
{
return (( Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* (*) (AsyncTaskMethodBuilder_1_t7BA09CA1BB279AA706D98A618EE11038FD1985F7*, const RuntimeMethod*))AsyncTaskMethodBuilder_1_get_Task_mB36BC37F05CC1BD3EDB9EC66B9BBEA7DE33F3D03_gshared)(__this, method);
}
// System.String Mono.Net.Security.AsyncProtocolRequest::get_Name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AsyncProtocolRequest_get_Name_m3D5DC63A43FFCA24B1E5A9825B76BD391D790F84 (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* __this, 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.Threading.Tasks.Task Mono.Net.Security.AsyncProtocolRequest::ProcessOperation(System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* AsyncProtocolRequest_ProcessOperation_m7210D0C2351D69FF9FF798860C85FAA7F91C050F (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* __this, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken0, 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.AsyncTaskMethodBuilder`1<Mono.Net.Security.AsyncProtocolResult>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CStartOperationU3Ed__23_t9FFB39587AAED5C56B39C31D1D2C91BF10B7D2A8_m630A9D5428BCB94BCD95201FE4341800E453300F (AsyncTaskMethodBuilder_1_tB85AB2AF366A9742C159DD6FBD3FE38EDD13543B* __this, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* ___awaiter0, U3CStartOperationU3Ed__23_t9FFB39587AAED5C56B39C31D1D2C91BF10B7D2A8* ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_tB85AB2AF366A9742C159DD6FBD3FE38EDD13543B*, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618*, U3CStartOperationU3Ed__23_t9FFB39587AAED5C56B39C31D1D2C91BF10B7D2A8*, const RuntimeMethod*))AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CStartOperationU3Ed__23_t9FFB39587AAED5C56B39C31D1D2C91BF10B7D2A8_m27B458470664B24A4ABB5828BB7361646930EBFB_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.Int32 Mono.Net.Security.AsyncProtocolRequest::get_UserResult()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t AsyncProtocolRequest_get_UserResult_mA77AFFB0D9A5FD69E5EEC51CB0F80C25E31D0759_inline (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* __this, const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.AsyncProtocolResult::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncProtocolResult__ctor_m2999944493F7C75F19D5BA3811118ED10A889305 (AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05* __this, int32_t ___result0, const RuntimeMethod* method) ;
// Mono.Net.Security.MobileAuthenticatedStream Mono.Net.Security.AsyncProtocolRequest::get_Parent()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* AsyncProtocolRequest_get_Parent_m20DA5526115969E9D32B61999A044FF0618AFF92_inline (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* __this, const RuntimeMethod* method) ;
// System.Runtime.ExceptionServices.ExceptionDispatchInfo Mono.Net.Security.MobileAuthenticatedStream::SetException(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* MobileAuthenticatedStream_SetException_m490704BA8728AB01E7BA158FE545FD4D7C080448 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, Exception_t* ___e0, const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.AsyncProtocolResult::.ctor(System.Runtime.ExceptionServices.ExceptionDispatchInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncProtocolResult__ctor_m80187A7036019F9768BA1941362CB6785F10E99F (AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05* __this, ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* ___error0, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<Mono.Net.Security.AsyncProtocolResult>::SetException(System.Exception)
inline void AsyncTaskMethodBuilder_1_SetException_mE94B9EBB0129A46F72DB88FA5170082850D5B4BE (AsyncTaskMethodBuilder_1_tB85AB2AF366A9742C159DD6FBD3FE38EDD13543B* __this, Exception_t* ___exception0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_tB85AB2AF366A9742C159DD6FBD3FE38EDD13543B*, Exception_t*, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetException_mC2F74B26F5303F9F960965220E2866D777F1A5C6_gshared)(__this, ___exception0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<Mono.Net.Security.AsyncProtocolResult>::SetResult(TResult)
inline void AsyncTaskMethodBuilder_1_SetResult_mC456CDE030D0195F4C7D57C9CF7CC83EB532D6EA (AsyncTaskMethodBuilder_1_tB85AB2AF366A9742C159DD6FBD3FE38EDD13543B* __this, AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05* ___result0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_tB85AB2AF366A9742C159DD6FBD3FE38EDD13543B*, AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05*, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetResult_m0D83195F995F9825D7A6DCDC3835D6917C43B5A6_gshared)(__this, ___result0, method);
}
// System.Void Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CStartOperationU3Ed__23_MoveNext_mDE591A3806D9523FC8D2E26ED510CEE7963F8FF2 (U3CStartOperationU3Ed__23_t9FFB39587AAED5C56B39C31D1D2C91BF10B7D2A8* __this, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<Mono.Net.Security.AsyncProtocolResult>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
inline void AsyncTaskMethodBuilder_1_SetStateMachine_mC7F04B94429D5A3763256D073981D5A2F01FFE65 (AsyncTaskMethodBuilder_1_tB85AB2AF366A9742C159DD6FBD3FE38EDD13543B* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_tB85AB2AF366A9742C159DD6FBD3FE38EDD13543B*, RuntimeObject*, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetStateMachine_m3BE54983634ABF5BE05200C7894AD0F9F20BDD65_gshared)(__this, ___stateMachine0, method);
}
// System.Void Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CStartOperationU3Ed__23_SetStateMachine_mA0C8C029457FAAE036C6098FDC66C98574D0BD03 (U3CStartOperationU3Ed__23_t9FFB39587AAED5C56B39C31D1D2C91BF10B7D2A8* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) ;
// System.Void System.Threading.CancellationToken::ThrowIfCancellationRequested()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationToken_ThrowIfCancellationRequested_mB9D952DC6E96FB6E0595FC8E88D3133CDA4382C3 (CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED* __this, const RuntimeMethod* method) ;
// System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>> Mono.Net.Security.AsyncProtocolRequest::InnerRead(System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* AsyncProtocolRequest_InnerRead_mF418FD1D9403BFD08A44D00EEAF8E9F3ECD25A02 (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* __this, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken0, const RuntimeMethod* method) ;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<TResult> System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::ConfigureAwait(System.Boolean)
inline ConfiguredTaskAwaitable_1_tEC8120422100780C8C0025D1B994C33B30C4AD71 Task_1_ConfigureAwait_m3E964062746BC63E91EA877F7B826868CA306DDE (Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* __this, bool ___continueOnCapturedContext0, const RuntimeMethod* method)
{
return (( ConfiguredTaskAwaitable_1_tEC8120422100780C8C0025D1B994C33B30C4AD71 (*) (Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7*, bool, const RuntimeMethod*))Task_1_ConfigureAwait_m3E964062746BC63E91EA877F7B826868CA306DDE_gshared)(__this, ___continueOnCapturedContext0, method);
}
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Nullable`1<System.Int32>>::GetAwaiter()
inline ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5 ConfiguredTaskAwaitable_1_GetAwaiter_m4FE08BCFB9AA694193BDCD5B5C12F5271A1E88F5_inline (ConfiguredTaskAwaitable_1_tEC8120422100780C8C0025D1B994C33B30C4AD71* __this, const RuntimeMethod* method)
{
return (( ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5 (*) (ConfiguredTaskAwaitable_1_tEC8120422100780C8C0025D1B994C33B30C4AD71*, const RuntimeMethod*))ConfiguredTaskAwaitable_1_GetAwaiter_m4FE08BCFB9AA694193BDCD5B5C12F5271A1E88F5_gshared_inline)(__this, method);
}
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Nullable`1<System.Int32>>::get_IsCompleted()
inline bool ConfiguredTaskAwaiter_get_IsCompleted_m943014E2A3A7AEEF6B38F9DA31887B07DC417131 (ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5* __this, const RuntimeMethod* method)
{
return (( bool (*) (ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5*, const RuntimeMethod*))ConfiguredTaskAwaiter_get_IsCompleted_m943014E2A3A7AEEF6B38F9DA31887B07DC417131_gshared)(__this, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Nullable`1<System.Int32>>,Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5_TisU3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786_m40DE76AFDF3B1422DDE3F73C88263FAEE9B2AD66 (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5* ___awaiter0, U3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786* ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06*, ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5*, U3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786*, const RuntimeMethod*))AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5_TisU3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786_m40DE76AFDF3B1422DDE3F73C88263FAEE9B2AD66_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Nullable`1<System.Int32>>::GetResult()
inline Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ConfiguredTaskAwaiter_GetResult_mE648AD496FFAD4F2E5CFFA8DA38B365FDD634EFD (ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5* __this, const RuntimeMethod* method)
{
return (( Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 (*) (ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5*, const RuntimeMethod*))ConfiguredTaskAwaiter_GetResult_mE648AD496FFAD4F2E5CFFA8DA38B365FDD634EFD_gshared)(__this, method);
}
// System.Boolean System.Nullable`1<System.Int32>::get_HasValue()
inline bool Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*, const RuntimeMethod*))Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_gshared_inline)(__this, method);
}
// T System.Nullable`1<System.Int32>::GetValueOrDefault()
inline int32_t Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_inline (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*, const RuntimeMethod*))Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_gshared_inline)(__this, method);
}
// System.Void System.IO.IOException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IOException__ctor_mE0612A16064F93C7EBB468D6874777BD70CB50CA (IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Exception Mono.Net.Security.MobileAuthenticatedStream::GetSSPIException(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* MobileAuthenticatedStream_GetSSPIException_m04F38FF55AEEC19087840F3A722D2C225050F427 (Exception_t* ___e0, 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.Boolean Mono.Net.Security.AsyncProtocolRequest::get_RunSynchronously()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool AsyncProtocolRequest_get_RunSynchronously_m5E10561209866EE44A27D35A1F4762008063B4BF_inline (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* __this, const RuntimeMethod* method) ;
// System.Threading.Tasks.Task Mono.Net.Security.MobileAuthenticatedStream::InnerWrite(System.Boolean,System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* MobileAuthenticatedStream_InnerWrite_m137287DEDB6C2BC5E8DDDAC999787FA5A0B4B570 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, bool ___sync0, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken1, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786_m89765A85617A3D1007CBFD188056340092F4252D (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* ___awaiter0, U3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786* ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06*, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618*, U3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786*, const RuntimeMethod*))AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786_m89765A85617A3D1007CBFD188056340092F4252D_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::SetException(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_SetException_mBE41863F0571E0177A15731294087DE45E1FC10B (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, Exception_t* ___exception0, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::SetResult()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_SetResult_m76D8B84F0068257C1823B1200B00E58E0C8DDDDE (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CProcessOperationU3Ed__24_MoveNext_mA73F0FD80CE65D2E3E12390E49E3F34CFF47E98B (U3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786* __this, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_SetStateMachine_mE52B5B6B076025592A7AB462E3D26FA434AEB795 (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CProcessOperationU3Ed__24_SetStateMachine_mA9912D191EE4A99536A61DEED059DC89B765A823 (U3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) ;
// System.Threading.Tasks.Task`1<System.Int32> Mono.Net.Security.MobileAuthenticatedStream::InnerRead(System.Boolean,System.Int32,System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t4C228DE57804012969575431CFF12D57C875552D* MobileAuthenticatedStream_InnerRead_m62766E47172B5468B6934BED507A4EF4054396ED (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, bool ___sync0, int32_t ___requestedSize1, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken2, const RuntimeMethod* method) ;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<TResult> System.Threading.Tasks.Task`1<System.Int32>::ConfigureAwait(System.Boolean)
inline ConfiguredTaskAwaitable_1_t5186C81524388C1718E9AC37792D8771A443417A Task_1_ConfigureAwait_m8203F4D13209C12845066A383E5B850D0486B209 (Task_1_t4C228DE57804012969575431CFF12D57C875552D* __this, bool ___continueOnCapturedContext0, const RuntimeMethod* method)
{
return (( ConfiguredTaskAwaitable_1_t5186C81524388C1718E9AC37792D8771A443417A (*) (Task_1_t4C228DE57804012969575431CFF12D57C875552D*, bool, const RuntimeMethod*))Task_1_ConfigureAwait_m8203F4D13209C12845066A383E5B850D0486B209_gshared)(__this, ___continueOnCapturedContext0, method);
}
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Int32>::GetAwaiter()
inline ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80 ConfiguredTaskAwaitable_1_GetAwaiter_m7A77B1981FEC19CC7E1570EDC3F16AC5C14B4439_inline (ConfiguredTaskAwaitable_1_t5186C81524388C1718E9AC37792D8771A443417A* __this, const RuntimeMethod* method)
{
return (( ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80 (*) (ConfiguredTaskAwaitable_1_t5186C81524388C1718E9AC37792D8771A443417A*, const RuntimeMethod*))ConfiguredTaskAwaitable_1_GetAwaiter_m7A77B1981FEC19CC7E1570EDC3F16AC5C14B4439_gshared_inline)(__this, method);
}
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::get_IsCompleted()
inline bool ConfiguredTaskAwaiter_get_IsCompleted_mD70263ED42C8E379EE20DBC2F218C3E629B4B4D3 (ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80* __this, const RuntimeMethod* method)
{
return (( bool (*) (ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80*, const RuntimeMethod*))ConfiguredTaskAwaiter_get_IsCompleted_mD70263ED42C8E379EE20DBC2F218C3E629B4B4D3_gshared)(__this, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>,Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80_TisU3CInnerReadU3Ed__25_t05729A3E67E2FF3B23435B02B158BDB2F3C7C84E_m1375ABD6CBB63DE8EF7F17F9B050D81DDE993851 (AsyncTaskMethodBuilder_1_t7BA09CA1BB279AA706D98A618EE11038FD1985F7* __this, ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80* ___awaiter0, U3CInnerReadU3Ed__25_t05729A3E67E2FF3B23435B02B158BDB2F3C7C84E* ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t7BA09CA1BB279AA706D98A618EE11038FD1985F7*, ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80*, U3CInnerReadU3Ed__25_t05729A3E67E2FF3B23435B02B158BDB2F3C7C84E*, const RuntimeMethod*))AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80_TisU3CInnerReadU3Ed__25_t05729A3E67E2FF3B23435B02B158BDB2F3C7C84E_m1375ABD6CBB63DE8EF7F17F9B050D81DDE993851_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::GetResult()
inline int32_t ConfiguredTaskAwaiter_GetResult_mF1FF6CBD66A3F581D413793BA8C2AF58B707D9CC (ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80*, const RuntimeMethod*))ConfiguredTaskAwaiter_GetResult_mF1FF6CBD66A3F581D413793BA8C2AF58B707D9CC_gshared)(__this, method);
}
// System.Void System.Nullable`1<System.Int32>::.ctor(T)
inline void Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703 (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, int32_t ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*, int32_t, const RuntimeMethod*))Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_gshared)(__this, ___value0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::SetException(System.Exception)
inline void AsyncTaskMethodBuilder_1_SetException_m76968B53E22BA2AD3C6102934BDC2C9013F74A95 (AsyncTaskMethodBuilder_1_t7BA09CA1BB279AA706D98A618EE11038FD1985F7* __this, Exception_t* ___exception0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t7BA09CA1BB279AA706D98A618EE11038FD1985F7*, Exception_t*, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetException_m76968B53E22BA2AD3C6102934BDC2C9013F74A95_gshared)(__this, ___exception0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::SetResult(TResult)
inline void AsyncTaskMethodBuilder_1_SetResult_m7814370659E8E3550E3A679C1F2F516592198487 (AsyncTaskMethodBuilder_1_t7BA09CA1BB279AA706D98A618EE11038FD1985F7* __this, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___result0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t7BA09CA1BB279AA706D98A618EE11038FD1985F7*, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetResult_m7814370659E8E3550E3A679C1F2F516592198487_gshared)(__this, ___result0, method);
}
// System.Void Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CInnerReadU3Ed__25_MoveNext_mC4567E370C71DA9DA0F704C570308D106D4DDB2C (U3CInnerReadU3Ed__25_t05729A3E67E2FF3B23435B02B158BDB2F3C7C84E* __this, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
inline void AsyncTaskMethodBuilder_1_SetStateMachine_m202DAC650B3B8EFE6A02ED46F243B399A3308879 (AsyncTaskMethodBuilder_1_t7BA09CA1BB279AA706D98A618EE11038FD1985F7* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t7BA09CA1BB279AA706D98A618EE11038FD1985F7*, RuntimeObject*, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetStateMachine_m202DAC650B3B8EFE6A02ED46F243B399A3308879_gshared)(__this, ___stateMachine0, method);
}
// System.Void Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CInnerReadU3Ed__25_SetStateMachine_m15DB2E97371A46CBCCD53DCAE7A4FE6F5FF84DCE (U3CInnerReadU3Ed__25_t05729A3E67E2FF3B23435B02B158BDB2F3C7C84E* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.AsyncProtocolRequest::.ctor(Mono.Net.Security.MobileAuthenticatedStream,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncProtocolRequest__ctor_mDF1F675DC3E001867DFFD9B1C14CF5559BE3035A (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* __this, MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* ___parent0, bool ___sync1, const RuntimeMethod* method) ;
// Mono.Net.Security.AsyncOperationStatus Mono.Net.Security.MobileAuthenticatedStream::ProcessHandshake(Mono.Net.Security.AsyncOperationStatus,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MobileAuthenticatedStream_ProcessHandshake_m30F67A233EAB7CE44A6B6E8E7F4E958DD888F63F (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, int32_t ___status0, bool ___renegotiate1, const RuntimeMethod* method) ;
// Mono.Net.Security.BufferOffsetSize Mono.Net.Security.AsyncReadOrWriteRequest::get_UserBuffer()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* AsyncReadOrWriteRequest_get_UserBuffer_mD158BF301713ADC8899B3F3CFF7D18B76A956417_inline (AsyncReadOrWriteRequest_tEE5EFA76D488CBB46DBCA56E9914A0E5BF6D4680* __this, const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.AsyncReadOrWriteRequest::.ctor(Mono.Net.Security.MobileAuthenticatedStream,System.Boolean,System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncReadOrWriteRequest__ctor_m4DCAC7C20097985A9A4FDCB73719DD2E508CF07D (AsyncReadOrWriteRequest_tEE5EFA76D488CBB46DBCA56E9914A0E5BF6D4680* __this, MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* ___parent0, bool ___sync1, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer2, int32_t ___offset3, int32_t ___size4, const RuntimeMethod* method) ;
// System.ValueTuple`2<System.Int32,System.Boolean> Mono.Net.Security.MobileAuthenticatedStream::ProcessRead(Mono.Net.Security.BufferOffsetSize)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942 MobileAuthenticatedStream_ProcessRead_mB8FC6C872B55E0631A80824636220F3B73270441 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* ___userBuffer0, const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.AsyncProtocolRequest::set_UserResult(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void AsyncProtocolRequest_set_UserResult_mD84274B3348783A6E03B9000BB82E0737E1EC974_inline (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Int32 Mono.Net.Security.AsyncReadOrWriteRequest::get_CurrentSize()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t AsyncReadOrWriteRequest_get_CurrentSize_m4230AD05749403B840042BB7531124C6A96980E6_inline (AsyncReadOrWriteRequest_tEE5EFA76D488CBB46DBCA56E9914A0E5BF6D4680* __this, const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.AsyncReadOrWriteRequest::set_CurrentSize(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void AsyncReadOrWriteRequest_set_CurrentSize_mBCD300A1CD6FF110A3527E80711A820FEFC2F9E1_inline (AsyncReadOrWriteRequest_tEE5EFA76D488CBB46DBCA56E9914A0E5BF6D4680* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.ValueTuple`2<System.Int32,System.Boolean> Mono.Net.Security.MobileAuthenticatedStream::ProcessWrite(Mono.Net.Security.BufferOffsetSize)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942 MobileAuthenticatedStream_ProcessWrite_mC26A594E550853A399B5AD111CE704D06C500992 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* ___userBuffer0, const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.ChainValidationHelper::.ctor(System.Net.Security.SslStream,Mono.Net.Security.MobileTlsProvider,Mono.Security.Interface.MonoTlsSettings,System.Boolean,Mono.Net.Security.MonoTlsStream)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChainValidationHelper__ctor_m57CDE5571532D21835801745135CEE1ACF96A092 (ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755* __this, SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* ___owner0, MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* ___provider1, MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* ___settings2, bool ___cloneSettings3, MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* ___stream4, const RuntimeMethod* method) ;
// Mono.Security.Interface.ICertificateValidator Mono.Security.Interface.MonoTlsSettings::get_CertificateValidator()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* MonoTlsSettings_get_CertificateValidator_m2DC79DA38E7CB5E87A21E315A29F21E1D9ACF367_inline (MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* __this, const RuntimeMethod* method) ;
// Mono.Security.Interface.MonoTlsSettings Mono.Security.Interface.MonoTlsSettings::CopyDefaultSettings()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* MonoTlsSettings_CopyDefaultSettings_mE5970D083778040231805379F970AB869548029E (const RuntimeMethod* method) ;
// Mono.Security.Interface.MonoTlsSettings Mono.Security.Interface.MonoTlsSettings::CloneWithValidator(Mono.Security.Interface.ICertificateValidator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* MonoTlsSettings_CloneWithValidator_mF20535B6DE43DD45FAE2ECC6871C85C15F260D6B (MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* __this, RuntimeObject* ___validator0, const RuntimeMethod* method) ;
// Mono.Net.Security.MobileTlsProvider Mono.Net.Security.MonoTlsProviderFactory::GetProviderInternal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* MonoTlsProviderFactory_GetProviderInternal_m87C87ACEF272F007119C23121CD0D2E183785546 (const RuntimeMethod* method) ;
// System.Void System.WeakReference`1<System.Net.Security.SslStream>::.ctor(T)
inline void WeakReference_1__ctor_mACC91922E24718B3ABD2AAD11A8A4B69FB77D4A6 (WeakReference_1_t0E5A403EFE44DFDF760845211C10561ED81417A3* __this, SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* ___target0, const RuntimeMethod* method)
{
(( void (*) (WeakReference_1_t0E5A403EFE44DFDF760845211C10561ED81417A3*, SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27*, const RuntimeMethod*))WeakReference_1__ctor_m932665C8861A22B177DC1ACF1EDAA87E1624B5AC_gshared)(__this, ___target0, method);
}
// System.Net.ServerCertValidationCallback Mono.Net.Security.ChainValidationHelper::GetValidationCallback(Mono.Security.Interface.MonoTlsSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ServerCertValidationCallback_tC7A568060163FC6810AF9817F26F986C78CFC27F* ChainValidationHelper_GetValidationCallback_m48153D51B837278F4F2E6DADE32FC5460C5F7935 (MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* ___settings0, const RuntimeMethod* method) ;
// Mono.Security.Interface.MonoLocalCertificateSelectionCallback Mono.Security.Interface.MonoTlsSettings::get_ClientCertificateSelectionCallback()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MonoLocalCertificateSelectionCallback_t34F7772BA5ECE38E6CBD4C311F579DD1D4724DE3* MonoTlsSettings_get_ClientCertificateSelectionCallback_mCFE63487D867109AD1AF856ECC8BA0996C0AA605_inline (MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* __this, const RuntimeMethod* method) ;
// System.Net.Security.LocalCertSelectionCallback Mono.Net.Security.Private.CallbackHelpers::MonoToInternal(Mono.Security.Interface.MonoLocalCertificateSelectionCallback)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LocalCertSelectionCallback_t3AB79A8AA642074A3EF886118963EEA3CCABABE2* CallbackHelpers_MonoToInternal_m895AC89217D5876DB6CC95D7C656C9BA13D4D618 (MonoLocalCertificateSelectionCallback_t34F7772BA5ECE38E6CBD4C311F579DD1D4724DE3* ___callback0, const RuntimeMethod* method) ;
// System.Nullable`1<System.Boolean> Mono.Security.Interface.MonoTlsSettings::get_UseServicePointManagerCallback()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 MonoTlsSettings_get_UseServicePointManagerCallback_m11F6CF11F844ED2F6D54497CBAB18E04E6AFD754_inline (MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* __this, const RuntimeMethod* method) ;
// System.Boolean System.Nullable`1<System.Boolean>::get_HasValue()
inline bool Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_inline (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01*, const RuntimeMethod*))Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_gshared_inline)(__this, method);
}
// T System.Nullable`1<System.Boolean>::GetValueOrDefault()
inline bool Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_inline (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01*, const RuntimeMethod*))Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_gshared_inline)(__this, method);
}
// System.Net.HttpWebRequest Mono.Net.Security.MonoTlsStream::get_Request()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* MonoTlsStream_get_Request_m5F3CDE9EA1921F1A45C0FAE20DD4BA634D0D8D83_inline (MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* __this, const RuntimeMethod* method) ;
// System.Net.ServerCertValidationCallback System.Net.HttpWebRequest::get_ServerCertValidationCallback()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ServerCertValidationCallback_tC7A568060163FC6810AF9817F26F986C78CFC27F* HttpWebRequest_get_ServerCertValidationCallback_m8822E8093BBEE23482561CCB65D6AF3B7B1B464E_inline (HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* __this, const RuntimeMethod* method) ;
// System.Void System.Net.Security.LocalCertSelectionCallback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalCertSelectionCallback__ctor_mA7B36924E69A918A71649CFF95CB361E33317C38 (LocalCertSelectionCallback_t3AB79A8AA642074A3EF886118963EEA3CCABABE2* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Net.ServerCertValidationCallback System.Net.ServicePointManager::get_ServerCertValidationCallback()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ServerCertValidationCallback_tC7A568060163FC6810AF9817F26F986C78CFC27F* ServicePointManager_get_ServerCertValidationCallback_m9436D7CB2C84F88A2F878C700D5B3B34B85B911D_inline (const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.ChainValidationHelper/<>c__DisplayClass11_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass11_0__ctor_m33705296E35208F621BECF6D7957DED9C7317D78 (U3CU3Ec__DisplayClass11_0_tAA6FF214AE681D87C566414EF7C30A3CEA0C9211* __this, const RuntimeMethod* method) ;
// Mono.Security.Interface.MonoRemoteCertificateValidationCallback Mono.Security.Interface.MonoTlsSettings::get_RemoteCertificateValidationCallback()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MonoRemoteCertificateValidationCallback_t1A389B61998873F6B9A2EE7A11C36333A8AECCA0* MonoTlsSettings_get_RemoteCertificateValidationCallback_mE07825B4A75DAE2A4BB5037D504A36311814446C_inline (MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* __this, const RuntimeMethod* method) ;
// System.Void System.Net.Security.RemoteCertificateValidationCallback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemoteCertificateValidationCallback__ctor_mC5C0650D4E5D29475BDBDA5B43FEA44DB0DBF367 (RemoteCertificateValidationCallback_t2F4C5801F96B2C2BF934511796C5BFEAEBF01955* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Void System.Net.ServerCertValidationCallback::.ctor(System.Net.Security.RemoteCertificateValidationCallback)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ServerCertValidationCallback__ctor_mF3AC814542EED45987465791FE7846DE2A8B5603 (ServerCertValidationCallback_tC7A568060163FC6810AF9817F26F986C78CFC27F* __this, RemoteCertificateValidationCallback_t2F4C5801F96B2C2BF934511796C5BFEAEBF01955* ___validationCallback0, const RuntimeMethod* method) ;
// System.Security.Cryptography.X509Certificates.X509Certificate System.Security.Cryptography.X509Certificates.X509CertificateCollection::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* X509CertificateCollection_get_Item_m9EC79D4B62FB412278F92F3641969385252F6572 (X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Security.Cryptography.X509Certificates.X509Certificate System.Net.Security.LocalCertSelectionCallback::Invoke(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.Cryptography.X509Certificates.X509Certificate,System.String[])
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* LocalCertSelectionCallback_Invoke_m3AD956B5D53937117BD3E036068B49615337B5B9_inline (LocalCertSelectionCallback_t3AB79A8AA642074A3EF886118963EEA3CCABABE2* __this, String_t* ___targetHost0, X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* ___localCertificates1, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___remoteCertificate2, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___acceptableIssuers3, const RuntimeMethod* method) ;
// Mono.Security.Interface.ValidationResult Mono.Net.Security.ChainValidationHelper::ValidateChain(System.String,System.Boolean,System.Security.Cryptography.X509Certificates.X509Certificate,System.Security.Cryptography.X509Certificates.X509Chain,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Net.Security.SslPolicyErrors)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5* ChainValidationHelper_ValidateChain_m60FB1695D7C8F3A0C01C864FDFEC2EC3CF648F79 (ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755* __this, String_t* ___host0, bool ___server1, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___leaf2, X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* ___chain3, X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* ___certs4, int32_t ___errors5, const RuntimeMethod* method) ;
// System.Boolean Mono.Security.Interface.ValidationResult::get_Trusted()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ValidationResult_get_Trusted_mC74B0DA857D9879C6A7428DB31DEA8A2DCD9DFF2_inline (ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5* __this, const RuntimeMethod* method) ;
// System.Boolean Mono.Security.Interface.ValidationResult::get_UserDenied()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ValidationResult_get_UserDenied_m8714FE685A3F0214EE05C59AFE8ABC71CE614E0B_inline (ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5* __this, const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.MonoTlsStream::set_CertificateValidationFailed(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MonoTlsStream_set_CertificateValidationFailed_m225E1AA3894B292682A2BF06B886693A11DEAFEC_inline (MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* __this, bool ___value0, const RuntimeMethod* method) ;
// Mono.Security.Interface.ValidationResult Mono.Net.Security.ChainValidationHelper::ValidateChain(System.String,System.Boolean,System.Security.Cryptography.X509Certificates.X509Certificate,System.Security.Cryptography.X509Certificates.X509Chain&,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Net.Security.SslPolicyErrors)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5* ChainValidationHelper_ValidateChain_m6E88B46B65F70D52BDD9438D218D7E3BE55BB1C7 (ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755* __this, String_t* ___host0, bool ___server1, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___leaf2, X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5** ___chain3, X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* ___certs4, int32_t ___errors5, const RuntimeMethod* method) ;
// System.Net.ServicePoint System.Net.HttpWebRequest::get_ServicePoint()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ServicePoint_t5DB5939994CAA6A0DF221C5F58D59D1A6131CE29* HttpWebRequest_get_ServicePoint_m170B921D095437FC5B7FE5920F327F1AABF532D6 (HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* __this, const RuntimeMethod* method) ;
// System.Void System.Net.ServicePoint::UpdateServerCertificate(System.Security.Cryptography.X509Certificates.X509Certificate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ServicePoint_UpdateServerCertificate_mA5119A83F8A76B1098E4C0B7BEACED9F04288D10 (ServicePoint_t5DB5939994CAA6A0DF221C5F58D59D1A6131CE29* __this, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___certificate0, const RuntimeMethod* method) ;
// System.Boolean Mono.Net.Security.ChainValidationHelper::InvokeCallback(System.Security.Cryptography.X509Certificates.X509Certificate,System.Security.Cryptography.X509Certificates.X509Chain,System.Net.Security.SslPolicyErrors)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ChainValidationHelper_InvokeCallback_m1E6AABFB2535B6E22428BDDC3252CE6ADB4D78CE (ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755* __this, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___leaf0, X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* ___chain1, int32_t ___errors2, const RuntimeMethod* method) ;
// System.Void System.Nullable`1<Mono.Security.Interface.MonoSslPolicyErrors>::.ctor(T)
inline void Nullable_1__ctor_m68B7A0015046666E6BCD97D25DFA5B39694E175A (Nullable_1_t732CF400959D84218642820F71E43BA47619AD00* __this, int32_t ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_t732CF400959D84218642820F71E43BA47619AD00*, int32_t, const RuntimeMethod*))Nullable_1__ctor_m5100B58428BDAD8C79F3D8576B0C2E1D4F3924EB_gshared)(__this, ___value0, method);
}
// System.Void Mono.Security.Interface.ValidationResult::.ctor(System.Boolean,System.Boolean,System.Int32,System.Nullable`1<Mono.Security.Interface.MonoSslPolicyErrors>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationResult__ctor_m4CAB4B31530A8CD62E46F8B3FAC6A36A4E615D5D (ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5* __this, bool ___trusted0, bool ___user_denied1, int32_t ___error_code2, Nullable_1_t732CF400959D84218642820F71E43BA47619AD00 ___policy_errors3, const RuntimeMethod* method) ;
// System.Net.ICertificatePolicy System.Net.ServicePointManager::GetLegacyCertificatePolicy()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* ServicePointManager_GetLegacyCertificatePolicy_mBD5DCFD553FEEE50F78A70BAB63F95ACF21A25FC_inline (const RuntimeMethod* method) ;
// System.Boolean Mono.Net.Security.SystemCertificateValidator::NeedsChain(Mono.Security.Interface.MonoTlsSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SystemCertificateValidator_NeedsChain_mEA1D649FC72CD6D61ACECF098C7CC871AEC5A215 (MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* ___settings0, const RuntimeMethod* method) ;
// System.Boolean Mono.Security.Interface.MonoTlsSettings::get_CallbackNeedsCertificateChain()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MonoTlsSettings_get_CallbackNeedsCertificateChain_m02260798D928BDA7F6D9A2356B7CE688650BF176_inline (MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* __this, const RuntimeMethod* method) ;
// System.Net.ServicePoint System.Net.HttpWebRequest::get_ServicePointNoLock()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ServicePoint_t5DB5939994CAA6A0DF221C5F58D59D1A6131CE29* HttpWebRequest_get_ServicePointNoLock_m302BC1F3A189D46E652B79981E8D29095E5D5C61_inline (HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* __this, const RuntimeMethod* method) ;
// System.Boolean System.WeakReference`1<System.Net.Security.SslStream>::TryGetTarget(T&)
inline bool WeakReference_1_TryGetTarget_m97CF2B29DA093EDB154354ED332BB0D158BD52C0 (WeakReference_1_t0E5A403EFE44DFDF760845211C10561ED81417A3* __this, SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27** ___target0, const RuntimeMethod* method)
{
return (( bool (*) (WeakReference_1_t0E5A403EFE44DFDF760845211C10561ED81417A3*, SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27**, const RuntimeMethod*))WeakReference_1_TryGetTarget_m4982797589731AB705E9C79FA4531331F40410AB_gshared)(__this, ___target0, method);
}
// System.Boolean System.Net.ServerCertValidationCallback::Invoke(System.Object,System.Security.Cryptography.X509Certificates.X509Certificate,System.Security.Cryptography.X509Certificates.X509Chain,System.Net.Security.SslPolicyErrors)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ServerCertValidationCallback_Invoke_mDDC4DA8F50134EF50257E51B53BE36732550C7E6 (ServerCertValidationCallback_tC7A568060163FC6810AF9817F26F986C78CFC27F* __this, RuntimeObject* ___request0, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___certificate1, X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* ___chain2, int32_t ___sslPolicyErrors3, const RuntimeMethod* method) ;
// System.String System.Net.Security.SslStream::get_InternalTargetHost()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SslStream_get_InternalTargetHost_m9434AC1422D463C25B5C5313AC9BE45B095136AE (SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* __this, const RuntimeMethod* method) ;
// System.String System.Net.HttpWebRequest::get_Host()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* HttpWebRequest_get_Host_mE23F8F15207CEF1E64CF212EEA7643185207923C (HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* __this, const RuntimeMethod* method) ;
// System.Boolean Mono.Security.Interface.MonoRemoteCertificateValidationCallback::Invoke(System.String,System.Security.Cryptography.X509Certificates.X509Certificate,System.Security.Cryptography.X509Certificates.X509Chain,Mono.Security.Interface.MonoSslPolicyErrors)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MonoRemoteCertificateValidationCallback_Invoke_m8BE32AE7FE1BE89EFB6A49559431916F785D2BD9_inline (MonoRemoteCertificateValidationCallback_t1A389B61998873F6B9A2EE7A11C36333A8AECCA0* __this, String_t* ___targetHost0, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___certificate1, X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* ___chain2, int32_t ___sslPolicyErrors3, const RuntimeMethod* method) ;
// System.Void System.Net.Security.AuthenticatedStream::.ctor(System.IO.Stream,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AuthenticatedStream__ctor_m8B163146A01B938A3E87E1BED07EE07494A3E357 (AuthenticatedStream_t8DCF41E151F705E2494FC7836F5E2EF7C539FA39* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___innerStream0, bool ___leaveInnerStreamOpen1, const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.BufferOffsetSize2::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BufferOffsetSize2__ctor_m773DC687399F95F23BE42179B942303C0B52FF07 (BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* __this, int32_t ___size0, const RuntimeMethod* method) ;
// System.Void System.Runtime.ExceptionServices.ExceptionDispatchInfo::Throw()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExceptionDispatchInfo_Throw_m06F398E346AE94C1CCEB636763A8CB26511F6330 (ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* __this, const RuntimeMethod* method) ;
// System.Void System.InvalidOperationException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Void System.Security.Authentication.AuthenticationException::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AuthenticationException__ctor_m6EDDEE3840629AC06E70CDF7878F955FE1ED538A (AuthenticationException_tACF49ABE65B7CEABB69DE78FA8AE8B1771CDF6A8* __this, String_t* ___message0, Exception_t* ___innerException1, const RuntimeMethod* method) ;
// System.Void System.IO.IOException::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IOException__ctor_mFA9F39D1AF43FBC40BFA68A7BFE07852D1EF8B1B (IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910* __this, String_t* ___message0, Exception_t* ___innerException1, const RuntimeMethod* method) ;
// System.Runtime.ExceptionServices.ExceptionDispatchInfo System.Runtime.ExceptionServices.ExceptionDispatchInfo::Capture(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* ExceptionDispatchInfo_Capture_mD989ED7E69753F2E0A2076B60ACA8819F14DA93E (Exception_t* ___source0, const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.MonoSslClientAuthenticationOptions::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoSslClientAuthenticationOptions__ctor_mFF45688A74504467AD6CC5CC1F416EAB53DDDDE1 (MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* __this, const RuntimeMethod* method) ;
// System.Threading.CancellationToken System.Threading.CancellationToken::get_None()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED CancellationToken_get_None_m8C6A7AC91155BE2372CC22EA7B923073EA0D2BBB (const RuntimeMethod* method) ;
// System.Threading.Tasks.Task Mono.Net.Security.MobileAuthenticatedStream::ProcessAuthentication(System.Boolean,Mono.Net.Security.MonoSslAuthenticationOptions,System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* MobileAuthenticatedStream_ProcessAuthentication_m0449087259B996D81ED6AC7A06ED19D46FAB0AF7 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, bool ___runSynchronously0, MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* ___options1, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken2, const RuntimeMethod* method) ;
// System.Void System.Threading.Tasks.Task::Wait()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_Wait_m33955515E36BF6598FCEDA841C8C75F716DE5A4E (Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* __this, const RuntimeMethod* method) ;
// System.Exception System.Net.HttpWebRequest::FlattenException(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* HttpWebRequest_FlattenException_mF0D9565F401231C7F7C6A973F829CCB37E34C3EA (Exception_t* ___e0, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__48>(TStateMachine&)
inline void AsyncTaskMethodBuilder_Start_TisU3CProcessAuthenticationU3Ed__48_t111D22EA69719A6F3E97F02B3AD759B20CE299EB_mF1F7C95F19A89B5CCD58DB73DE8FFADD64D527A7 (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, U3CProcessAuthenticationU3Ed__48_t111D22EA69719A6F3E97F02B3AD759B20CE299EB* ___stateMachine0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06*, U3CProcessAuthenticationU3Ed__48_t111D22EA69719A6F3E97F02B3AD759B20CE299EB*, const RuntimeMethod*))AsyncTaskMethodBuilder_Start_TisU3CProcessAuthenticationU3Ed__48_t111D22EA69719A6F3E97F02B3AD759B20CE299EB_mF1F7C95F19A89B5CCD58DB73DE8FFADD64D527A7_gshared)(__this, ___stateMachine0, method);
}
// System.Void Mono.Net.Security.AsyncReadRequest::.ctor(Mono.Net.Security.MobileAuthenticatedStream,System.Boolean,System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncReadRequest__ctor_mE67D11354154F1844761E0FFB869BBF05F1AE741 (AsyncReadRequest_t0DF29D88C5908BB80A3B6B6D6B3BC9BC23292BB1* __this, MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* ___parent0, bool ___sync1, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer2, int32_t ___offset3, int32_t ___size4, const RuntimeMethod* method) ;
// System.Threading.Tasks.Task`1<System.Int32> Mono.Net.Security.MobileAuthenticatedStream::StartOperation(Mono.Net.Security.MobileAuthenticatedStream/OperationType,Mono.Net.Security.AsyncProtocolRequest,System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t4C228DE57804012969575431CFF12D57C875552D* MobileAuthenticatedStream_StartOperation_m8E632D323D991C8393DE86E4EC3E02DCA5AB31AF (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, int32_t ___type0, AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* ___asyncRequest1, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken2, const RuntimeMethod* method) ;
// TResult System.Threading.Tasks.Task`1<System.Int32>::get_Result()
inline int32_t Task_1_get_Result_mE41E789D49EA08D9BCEC87078B55D77B3EE3AD37 (Task_1_t4C228DE57804012969575431CFF12D57C875552D* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Task_1_t4C228DE57804012969575431CFF12D57C875552D*, const RuntimeMethod*))Task_1_get_Result_mE41E789D49EA08D9BCEC87078B55D77B3EE3AD37_gshared)(__this, method);
}
// System.Void Mono.Net.Security.AsyncWriteRequest::.ctor(Mono.Net.Security.MobileAuthenticatedStream,System.Boolean,System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncWriteRequest__ctor_m627E554957F61C80484B10AD0D85849C1E9A0548 (AsyncWriteRequest_t43F45610B0F7E69C3DD0DB5EFCA2E9306D4C95A3* __this, MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* ___parent0, bool ___sync1, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer2, int32_t ___offset3, int32_t ___size4, const RuntimeMethod* method) ;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::Create()
inline AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019 AsyncTaskMethodBuilder_1_Create_mE41F34163E40A97FB25427519FBDB7692F06D192 (const RuntimeMethod* method)
{
return (( AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019 (*) (const RuntimeMethod*))AsyncTaskMethodBuilder_1_Create_mE41F34163E40A97FB25427519FBDB7692F06D192_gshared)(method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::Start<Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__57>(TStateMachine&)
inline void AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__57_tCA8E70BCBB1E41B299D65B4CF483D4CBF7A11368_m08731DA0A532E6B6ED3E6943D1C4AC199CDE578A (AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019* __this, U3CStartOperationU3Ed__57_tCA8E70BCBB1E41B299D65B4CF483D4CBF7A11368* ___stateMachine0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019*, U3CStartOperationU3Ed__57_tCA8E70BCBB1E41B299D65B4CF483D4CBF7A11368*, const RuntimeMethod*))AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__57_tCA8E70BCBB1E41B299D65B4CF483D4CBF7A11368_m08731DA0A532E6B6ED3E6943D1C4AC199CDE578A_gshared)(__this, ___stateMachine0, method);
}
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::get_Task()
inline Task_1_t4C228DE57804012969575431CFF12D57C875552D* AsyncTaskMethodBuilder_1_get_Task_m2DCDBC59910811D107353C5752AD58B28C2D97FE (AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019* __this, const RuntimeMethod* method)
{
return (( Task_1_t4C228DE57804012969575431CFF12D57C875552D* (*) (AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019*, const RuntimeMethod*))AsyncTaskMethodBuilder_1_get_Task_m2DCDBC59910811D107353C5752AD58B28C2D97FE_gshared)(__this, method);
}
// System.ValueTuple`2<System.Int32,System.Boolean> Mono.Net.Security.MobileAuthenticatedStream::InternalRead(Mono.Net.Security.AsyncProtocolRequest,Mono.Net.Security.BufferOffsetSize,System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942 MobileAuthenticatedStream_InternalRead_m5989243EA8E865C58630A151F50FD9286501238A (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* ___asyncRequest0, BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* ___internalBuffer1, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer2, int32_t ___offset3, int32_t ___size4, const RuntimeMethod* method) ;
// System.Exception Mono.Net.Security.MobileAuthenticatedStream::GetIOException(System.Exception,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* MobileAuthenticatedStream_GetIOException_m80A6F9660142728B73A169E1B09AB8BE268DD517 (Exception_t* ___e0, String_t* ___message1, const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.AsyncProtocolRequest::RequestRead(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncProtocolRequest_RequestRead_mD55DC015A50E42EF2FA7DB75FE1E7E3FCFA3CFA0 (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* __this, int32_t ___size0, const RuntimeMethod* method) ;
// System.Int32 System.Math::Min(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_Min_m1F346FEDDC77AC1EC0C4EF1AC6BA59F0EC7980F8 (int32_t ___val10, int32_t ___val21, const RuntimeMethod* method) ;
// System.Exception Mono.Net.Security.MobileAuthenticatedStream::GetInternalError()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* MobileAuthenticatedStream_GetInternalError_m59D75502C4CAC329B87974927FF39AF718D15BDC (const RuntimeMethod* method) ;
// System.Boolean Mono.Net.Security.MobileAuthenticatedStream::InternalWrite(Mono.Net.Security.AsyncProtocolRequest,Mono.Net.Security.BufferOffsetSize2,System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MobileAuthenticatedStream_InternalWrite_m0B6A441B8194AAE474EECE582DA3627AB26CFB54 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* ___asyncRequest0, BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* ___internalBuffer1, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer2, int32_t ___offset3, int32_t ___size4, const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.BufferOffsetSize2::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BufferOffsetSize2_Reset_m1B80AE03ED0C2BAC447F3BDEC8F827CEE6053E7F (BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* __this, const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.BufferOffsetSize2::AppendData(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BufferOffsetSize2_AppendData_mA85DD811BF73EB8F153F9DB2668C11E907F258A5 (BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___offset1, int32_t ___size2, const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.AsyncProtocolRequest::RequestWrite()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncProtocolRequest_RequestWrite_mA6AB8ACEA16A14CD6A232DA256C417CD183EE69F (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* __this, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::Start<Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66>(TStateMachine&)
inline void AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__66_tDA84F0E1193C16C54FE1735B4B5F77FB65A68982_mA1B2B31EDE3E7E33BB18EC9F5ABB74DDD721A57A (AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019* __this, U3CInnerReadU3Ed__66_tDA84F0E1193C16C54FE1735B4B5F77FB65A68982* ___stateMachine0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019*, U3CInnerReadU3Ed__66_tDA84F0E1193C16C54FE1735B4B5F77FB65A68982*, const RuntimeMethod*))AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__66_tDA84F0E1193C16C54FE1735B4B5F77FB65A68982_mA1B2B31EDE3E7E33BB18EC9F5ABB74DDD721A57A_gshared)(__this, ___stateMachine0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67>(TStateMachine&)
inline void AsyncTaskMethodBuilder_Start_TisU3CInnerWriteU3Ed__67_tC5B5BCC77DDC7AEC5DC77B1C9D086B550402B229_m82D3611019196D882B60AC9DF641B2DFA5D59D35 (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, U3CInnerWriteU3Ed__67_tC5B5BCC77DDC7AEC5DC77B1C9D086B550402B229* ___stateMachine0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06*, U3CInnerWriteU3Ed__67_tC5B5BCC77DDC7AEC5DC77B1C9D086B550402B229*, const RuntimeMethod*))AsyncTaskMethodBuilder_Start_TisU3CInnerWriteU3Ed__67_tC5B5BCC77DDC7AEC5DC77B1C9D086B550402B229_m82D3611019196D882B60AC9DF641B2DFA5D59D35_gshared)(__this, ___stateMachine0, method);
}
// System.Void System.IO.Stream::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stream_Dispose_mCDB42F32A17541CCA6D3A5906827A401570B07A8 (Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* __this, const RuntimeMethod* method) ;
// System.Void System.Net.Security.AuthenticatedStream::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AuthenticatedStream_Dispose_m031F600EE876A06427FB0713D992FF02B9C3320F (AuthenticatedStream_t8DCF41E151F705E2494FC7836F5E2EF7C539FA39* __this, bool ___disposing0, const RuntimeMethod* method) ;
// System.Void System.ObjectDisposedException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48 (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* __this, String_t* ___objectName0, const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.MobileTlsContext::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MobileTlsContext_Dispose_m7C7D11F95AC2F7663D397D6FA4ECF82ECC7C0F9A (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* __this, const RuntimeMethod* method) ;
// System.IO.Stream System.Net.Security.AuthenticatedStream::get_InnerStream()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* AuthenticatedStream_get_InnerStream_m5BDA4857898A90C696DAD90FD61C536FC3EB10C7_inline (AuthenticatedStream_t8DCF41E151F705E2494FC7836F5E2EF7C539FA39* __this, const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.MobileAuthenticatedStream::CheckThrow(System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MobileAuthenticatedStream_CheckThrow_m9E35E722A793A807809AD00C9756997AB7561396 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, bool ___authSuccessCheck0, bool ___shutdownCheck1, const RuntimeMethod* method) ;
// System.Security.Cryptography.X509Certificates.X509Certificate Mono.Net.Security.MobileAuthenticatedStream::get_InternalLocalCertificate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* MobileAuthenticatedStream_get_InternalLocalCertificate_m2CD310D810957E8E1F819BA7AFF4E6640BFB136F (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, const RuntimeMethod* method) ;
// System.Security.Cryptography.X509Certificates.X509Certificate Mono.Net.Security.MobileTlsContext::get_LocalServerCertificate()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* MobileTlsContext_get_LocalServerCertificate_m20FDC85F1F18C42644D48872EBAF9A6247624E09_inline (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* __this, const RuntimeMethod* method) ;
// System.Net.Security.ServerCertSelectionCallback Mono.Net.Security.MonoSslAuthenticationOptions::get_ServerCertSelectionDelegate()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ServerCertSelectionCallback_t653386CAEAE0236FCF61A92963AB1646BB23C654* MonoSslAuthenticationOptions_get_ServerCertSelectionDelegate_m8F35626050A015130D823BA68862416889F75A42_inline (MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* __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.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::Concat(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.MobileAuthenticatedStream::set_TargetHost(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MobileAuthenticatedStream_set_TargetHost_m490855169728C94C8FEAD0689D2FA3E578046BB6_inline (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.AsyncHandshakeRequest::.ctor(Mono.Net.Security.MobileAuthenticatedStream,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncHandshakeRequest__ctor_m741ADA23A424389AD20579B23AE2DBE8FA00CFF7 (AsyncHandshakeRequest_tC7CB006B95B7B6CFF6AABA2C04637A7CEEE8E9FD* __this, MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* ___parent0, bool ___sync1, const RuntimeMethod* method) ;
// System.Exception Mono.Net.Security.MobileAuthenticatedStream::GetInvalidNestedCallException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* MobileAuthenticatedStream_GetInvalidNestedCallException_mC7EBE64F717F86F3D399AA54CC8C60F18876725D (const RuntimeMethod* method) ;
// System.Threading.Tasks.Task`1<Mono.Net.Security.AsyncProtocolResult> Mono.Net.Security.AsyncProtocolRequest::StartOperation(System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t7B91A92D06E8BCB69911B6822DD99220DDB735EE* AsyncProtocolRequest_StartOperation_m3BFF3E84B25BBE13881D3592FF4CAEC3736FBEDD (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* __this, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken0, const RuntimeMethod* method) ;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<TResult> System.Threading.Tasks.Task`1<Mono.Net.Security.AsyncProtocolResult>::ConfigureAwait(System.Boolean)
inline ConfiguredTaskAwaitable_1_t00976D6871B3F5929DA9DD9B2BA763F0DE7AD4A0 Task_1_ConfigureAwait_m45AC1205A3F6E0F0C7EC6D5B16D13C02A01F2ECF (Task_1_t7B91A92D06E8BCB69911B6822DD99220DDB735EE* __this, bool ___continueOnCapturedContext0, const RuntimeMethod* method)
{
return (( ConfiguredTaskAwaitable_1_t00976D6871B3F5929DA9DD9B2BA763F0DE7AD4A0 (*) (Task_1_t7B91A92D06E8BCB69911B6822DD99220DDB735EE*, bool, const RuntimeMethod*))Task_1_ConfigureAwait_m9D6420C859925B7C250DED7586DD770C91632070_gshared)(__this, ___continueOnCapturedContext0, method);
}
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<Mono.Net.Security.AsyncProtocolResult>::GetAwaiter()
inline ConfiguredTaskAwaiter_t150EB7231CA854AE162139EF92711A3C957F9591 ConfiguredTaskAwaitable_1_GetAwaiter_m647913E4467CF739E5F4CA80464A5FC1AC167034_inline (ConfiguredTaskAwaitable_1_t00976D6871B3F5929DA9DD9B2BA763F0DE7AD4A0* __this, const RuntimeMethod* method)
{
return (( ConfiguredTaskAwaiter_t150EB7231CA854AE162139EF92711A3C957F9591 (*) (ConfiguredTaskAwaitable_1_t00976D6871B3F5929DA9DD9B2BA763F0DE7AD4A0*, const RuntimeMethod*))ConfiguredTaskAwaitable_1_GetAwaiter_m10364C3B0A904803E890B2D75674665F986BDAB2_gshared_inline)(__this, method);
}
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<Mono.Net.Security.AsyncProtocolResult>::get_IsCompleted()
inline bool ConfiguredTaskAwaiter_get_IsCompleted_m478C1290C417B9FB5066F890D1FB7D7FC04DD3E4 (ConfiguredTaskAwaiter_t150EB7231CA854AE162139EF92711A3C957F9591* __this, const RuntimeMethod* method)
{
return (( bool (*) (ConfiguredTaskAwaiter_t150EB7231CA854AE162139EF92711A3C957F9591*, const RuntimeMethod*))ConfiguredTaskAwaiter_get_IsCompleted_mD6243A7544181F96816A5F81459F4B66908ADB5E_gshared)(__this, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<Mono.Net.Security.AsyncProtocolResult>,Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__48>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t150EB7231CA854AE162139EF92711A3C957F9591_TisU3CProcessAuthenticationU3Ed__48_t111D22EA69719A6F3E97F02B3AD759B20CE299EB_mEBB621A17A5BB2447C0966F8DF9D3C787A3A13CD (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, ConfiguredTaskAwaiter_t150EB7231CA854AE162139EF92711A3C957F9591* ___awaiter0, U3CProcessAuthenticationU3Ed__48_t111D22EA69719A6F3E97F02B3AD759B20CE299EB* ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06*, ConfiguredTaskAwaiter_t150EB7231CA854AE162139EF92711A3C957F9591*, U3CProcessAuthenticationU3Ed__48_t111D22EA69719A6F3E97F02B3AD759B20CE299EB*, const RuntimeMethod*))AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2_TisU3CProcessAuthenticationU3Ed__48_t111D22EA69719A6F3E97F02B3AD759B20CE299EB_m66DCE65CFCD2AC811B8BBFEF7607A9EAA938759A_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<Mono.Net.Security.AsyncProtocolResult>::GetResult()
inline AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05* ConfiguredTaskAwaiter_GetResult_mECEB375417C7F900CC667E5E740988F09B2EC9A0 (ConfiguredTaskAwaiter_t150EB7231CA854AE162139EF92711A3C957F9591* __this, const RuntimeMethod* method)
{
return (( AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05* (*) (ConfiguredTaskAwaiter_t150EB7231CA854AE162139EF92711A3C957F9591*, const RuntimeMethod*))ConfiguredTaskAwaiter_GetResult_m00ABE5C46A983C38086438B7A7CB2C62296B3383_gshared)(__this, method);
}
// System.Runtime.ExceptionServices.ExceptionDispatchInfo Mono.Net.Security.AsyncProtocolResult::get_Error()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* AsyncProtocolResult_get_Error_m2A01329BA71151C59E17E3D8812932AD02EF5C05_inline (AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05* __this, const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__48::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CProcessAuthenticationU3Ed__48_MoveNext_m982934120035A46C0FB96F7DF55F7FA0822B4940 (U3CProcessAuthenticationU3Ed__48_t111D22EA69719A6F3E97F02B3AD759B20CE299EB* __this, const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__48::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CProcessAuthenticationU3Ed__48_SetStateMachine_mC87BA3C30B7501EF0D0435E4C2C08EE79238576F (U3CProcessAuthenticationU3Ed__48_t111D22EA69719A6F3E97F02B3AD759B20CE299EB* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<Mono.Net.Security.AsyncProtocolResult>,Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__57>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t150EB7231CA854AE162139EF92711A3C957F9591_TisU3CStartOperationU3Ed__57_tCA8E70BCBB1E41B299D65B4CF483D4CBF7A11368_m6FA771B043A065863142F7FABDD4493F8D4938B1 (AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019* __this, ConfiguredTaskAwaiter_t150EB7231CA854AE162139EF92711A3C957F9591* ___awaiter0, U3CStartOperationU3Ed__57_tCA8E70BCBB1E41B299D65B4CF483D4CBF7A11368* ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019*, ConfiguredTaskAwaiter_t150EB7231CA854AE162139EF92711A3C957F9591*, U3CStartOperationU3Ed__57_tCA8E70BCBB1E41B299D65B4CF483D4CBF7A11368*, const RuntimeMethod*))AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2_TisU3CStartOperationU3Ed__57_tCA8E70BCBB1E41B299D65B4CF483D4CBF7A11368_m102D6B241A470A301222E8E86193235DFAD9B622_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// System.Int32 Mono.Net.Security.AsyncProtocolResult::get_UserResult()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t AsyncProtocolResult_get_UserResult_mEDF85928DEE138CA072E0BADB697024616981ABF_inline (AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05* __this, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::SetException(System.Exception)
inline void AsyncTaskMethodBuilder_1_SetException_mB7C693CAA9243017E03D801A487E0EA9B6AAD575 (AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019* __this, Exception_t* ___exception0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019*, Exception_t*, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetException_mB7C693CAA9243017E03D801A487E0EA9B6AAD575_gshared)(__this, ___exception0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::SetResult(TResult)
inline void AsyncTaskMethodBuilder_1_SetResult_mC4BAC830514CDB105730FF11F7744A4424A4009B (AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019* __this, int32_t ___result0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019*, int32_t, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetResult_mC4BAC830514CDB105730FF11F7744A4424A4009B_gshared)(__this, ___result0, method);
}
// System.Void Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__57::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CStartOperationU3Ed__57_MoveNext_m2CD8CDF02548ACC068670F3F670590EEC77F7853 (U3CStartOperationU3Ed__57_tCA8E70BCBB1E41B299D65B4CF483D4CBF7A11368* __this, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
inline void AsyncTaskMethodBuilder_1_SetStateMachine_mFA173982D2C309A46F4285F60DC4FE0DC659F32C (AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019*, RuntimeObject*, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetStateMachine_mFA173982D2C309A46F4285F60DC4FE0DC659F32C_gshared)(__this, ___stateMachine0, method);
}
// System.Void Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__57::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CStartOperationU3Ed__57_SetStateMachine_m1EC071633621977A0623BF79A53028A2A766BED9 (U3CStartOperationU3Ed__57_tCA8E70BCBB1E41B299D65B4CF483D4CBF7A11368* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.MobileAuthenticatedStream/<>c__DisplayClass66_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass66_0__ctor_m0649BF5458CDCAB6017C443988C36967E3000993 (U3CU3Ec__DisplayClass66_0_t892C285932134E13248FD210209881BF6B5831DB* __this, const RuntimeMethod* method) ;
// System.Void System.Func`1<System.Int32>::.ctor(System.Object,System.IntPtr)
inline void Func_1__ctor_m475512287B9508E6D4721B3022635FED517234D1 (Func_1_tC288CCB64EFD1F5FD49C3F8DE91FE62905E44BCD* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_1_tC288CCB64EFD1F5FD49C3F8DE91FE62905E44BCD*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_1__ctor_m475512287B9508E6D4721B3022635FED517234D1_gshared)(__this, ___object0, ___method1, method);
}
// System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::Run<System.Int32>(System.Func`1<TResult>)
inline Task_1_t4C228DE57804012969575431CFF12D57C875552D* Task_Run_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m591D59B3F4940619F93578654D14FDB3C9231229 (Func_1_tC288CCB64EFD1F5FD49C3F8DE91FE62905E44BCD* ___function0, const RuntimeMethod* method)
{
return (( Task_1_t4C228DE57804012969575431CFF12D57C875552D* (*) (Func_1_tC288CCB64EFD1F5FD49C3F8DE91FE62905E44BCD*, const RuntimeMethod*))Task_Run_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m591D59B3F4940619F93578654D14FDB3C9231229_gshared)(___function0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>,Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80_TisU3CInnerReadU3Ed__66_tDA84F0E1193C16C54FE1735B4B5F77FB65A68982_mEFE76303231143D18FCD18D893491185D26C7316 (AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019* __this, ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80* ___awaiter0, U3CInnerReadU3Ed__66_tDA84F0E1193C16C54FE1735B4B5F77FB65A68982* ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019*, ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80*, U3CInnerReadU3Ed__66_tDA84F0E1193C16C54FE1735B4B5F77FB65A68982*, const RuntimeMethod*))AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80_TisU3CInnerReadU3Ed__66_tDA84F0E1193C16C54FE1735B4B5F77FB65A68982_mEFE76303231143D18FCD18D893491185D26C7316_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// System.Void Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CInnerReadU3Ed__66_MoveNext_m5DFDC2139602BBC2F86D14BDA64B4A49ECDD90EB (U3CInnerReadU3Ed__66_tDA84F0E1193C16C54FE1735B4B5F77FB65A68982* __this, const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CInnerReadU3Ed__66_SetStateMachine_mBA42C0B565B5D3F43D109D2A8CC66EE8CE9BC920 (U3CInnerReadU3Ed__66_tDA84F0E1193C16C54FE1735B4B5F77FB65A68982* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) ;
// System.Void System.Action::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Threading.Tasks.Task System.Threading.Tasks.Task::Run(System.Action)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* Task_Run_mBD6EF33232D13F2183A43D0A526A220C4F0181B4 (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___action0, const RuntimeMethod* method) ;
// System.Threading.Tasks.Task System.IO.Stream::WriteAsync(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* Stream_WriteAsync_m51D91C94481BB32FE1A876A789C9705F433B133D (Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___offset1, int32_t ___count2, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CInnerWriteU3Ed__67_tC5B5BCC77DDC7AEC5DC77B1C9D086B550402B229_m648D1A8B37E49584E67D0AEBDE27819EBA5573F8 (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* __this, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* ___awaiter0, U3CInnerWriteU3Ed__67_tC5B5BCC77DDC7AEC5DC77B1C9D086B550402B229* ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06*, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618*, U3CInnerWriteU3Ed__67_tC5B5BCC77DDC7AEC5DC77B1C9D086B550402B229*, const RuntimeMethod*))AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CInnerWriteU3Ed__67_tC5B5BCC77DDC7AEC5DC77B1C9D086B550402B229_m648D1A8B37E49584E67D0AEBDE27819EBA5573F8_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// System.Void Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CInnerWriteU3Ed__67_MoveNext_mDF6F0FEA0FCAE97EEB2E5A2546446C00674CCEA3 (U3CInnerWriteU3Ed__67_tC5B5BCC77DDC7AEC5DC77B1C9D086B550402B229* __this, const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CInnerWriteU3Ed__67_SetStateMachine_m7448CF503BCD3FEC38241FB22DBA3AB4B91FF5B1 (U3CInnerWriteU3Ed__67_tC5B5BCC77DDC7AEC5DC77B1C9D086B550402B229* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.MobileTlsContext::set_LocalServerCertificate(System.Security.Cryptography.X509Certificates.X509Certificate)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MobileTlsContext_set_LocalServerCertificate_m32343DBF091AD80FA29DD8184C0C99C72FE43FEF_inline (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* __this, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___value0, const RuntimeMethod* method) ;
// System.Net.Security.SslStream Mono.Net.Security.MobileAuthenticatedStream::get_SslStream()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* MobileAuthenticatedStream_get_SslStream_mAF94411F0FF2126C8D8C1E9AABBC8CDA7EB73087_inline (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, const RuntimeMethod* method) ;
// Mono.Net.Security.MobileTlsProvider Mono.Net.Security.MobileAuthenticatedStream::get_Provider()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* MobileAuthenticatedStream_get_Provider_m9AE08411140D0CC27ADC979E0E290ECD70A47359_inline (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, const RuntimeMethod* method) ;
// Mono.Security.Interface.MonoTlsSettings Mono.Net.Security.MobileAuthenticatedStream::get_Settings()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* MobileAuthenticatedStream_get_Settings_m21B268EC66FBAF762EC443B8FC784F1251444A96_inline (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, const RuntimeMethod* method) ;
// Mono.Net.Security.ChainValidationHelper Mono.Net.Security.ChainValidationHelper::GetInternalValidator(System.Net.Security.SslStream,Mono.Net.Security.MobileTlsProvider,Mono.Security.Interface.MonoTlsSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755* ChainValidationHelper_GetInternalValidator_m9BF3791525A447EBA2283618A85A3E3C346205B7 (SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* ___owner0, MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* ___provider1, MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* ___settings2, const RuntimeMethod* method) ;
// System.String Mono.Net.Security.MobileTlsContext::get_TargetHost()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* MobileTlsContext_get_TargetHost_m82FF5791372BEF41AC5E73E368824231CC4F5528_inline (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* __this, const RuntimeMethod* method) ;
// Mono.Security.Interface.ValidationResult Mono.Net.Security.ChainValidationHelper::ValidateCertificate(System.String,System.Boolean,System.Security.Cryptography.X509Certificates.X509Certificate,System.Security.Cryptography.X509Certificates.X509Chain)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5* ChainValidationHelper_ValidateCertificate_m859E258B2CF6F570984C618241A26AAFE2B7104D (ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755* __this, String_t* ___host0, bool ___serverMode1, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___leaf2, X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* ___chain3, const RuntimeMethod* method) ;
// System.Boolean Mono.Security.Interface.MonoTlsSettings::get_DisallowUnauthenticatedCertificateRequest()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MonoTlsSettings_get_DisallowUnauthenticatedCertificateRequest_m15B7CAB13F2301D201AAD092DF2FCB49366ABDF6_inline (MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* __this, const RuntimeMethod* method) ;
// System.Security.Cryptography.X509Certificates.X509CertificateCollection Mono.Net.Security.MobileTlsContext::get_ClientCertificates()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* MobileTlsContext_get_ClientCertificates_m675A2D5E4F7FCB85B4B412A5659953184065C9EE_inline (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* __this, const RuntimeMethod* method) ;
// System.Boolean Mono.Net.Security.ChainValidationHelper::SelectClientCertificate(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.Cryptography.X509Certificates.X509Certificate,System.String[],System.Security.Cryptography.X509Certificates.X509Certificate&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ChainValidationHelper_SelectClientCertificate_m77B577FD626B93B7018F62E6843727168F7876EA (ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755* __this, String_t* ___targetHost0, X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* ___localCertificates1, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___remoteCertificate2, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___acceptableIssuers3, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4** ___clientCertificate4, const RuntimeMethod* method) ;
// System.Void System.Security.Cryptography.X509Certificates.X509Chain::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Chain_Reset_mE9CFDF83BD0B08994DEF29C30556429B2FD55860 (X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* __this, const RuntimeMethod* method) ;
// System.Void System.Security.Cryptography.X509Certificates.X509Chain::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Chain__ctor_mE938759A3C3CA007FB171DDD375312F03394D3F6 (X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* __this, const RuntimeMethod* method) ;
// System.Security.Cryptography.X509Certificates.X509ChainPolicy System.Security.Cryptography.X509Certificates.X509Chain::get_ChainPolicy()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509ChainPolicy_t34F49B4067492A1E5F91DD91FA7C934B68D880EC* X509Chain_get_ChainPolicy_m947CBD207A65DB28D0EE7909004E44CBEDF34348 (X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* __this, const RuntimeMethod* method) ;
// System.Void System.Security.Cryptography.X509Certificates.X509ChainPolicy::set_RevocationMode(System.Security.Cryptography.X509Certificates.X509RevocationMode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509ChainPolicy_set_RevocationMode_mD31CF4CA6A09443829F91980F8AC98E21D5888AE (X509ChainPolicy_t34F49B4067492A1E5F91DD91FA7C934B68D880EC* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Void System.Security.Cryptography.X509Certificates.X509ChainPolicy::set_VerificationFlags(System.Security.Cryptography.X509Certificates.X509VerificationFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509ChainPolicy_set_VerificationFlags_mA0C6910C20FCC1FB1DA1A35ED2E7429FA527A69E (X509ChainPolicy_t34F49B4067492A1E5F91DD91FA7C934B68D880EC* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Boolean System.Security.Cryptography.X509Certificates.X509Chain::Build(System.Security.Cryptography.X509Certificates.X509Certificate2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool X509Chain_Build_mF368D6BAE5925C8311B41BFBA08C5D91277C67E5 (X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* __this, X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* ___certificate0, const RuntimeMethod* method) ;
// System.String System.Security.Cryptography.X509Certificates.X509Certificate::get_Issuer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X509Certificate_get_Issuer_m1922DC6FA16712898394AF2377B6D089BA2D169E (X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* __this, const RuntimeMethod* method) ;
// System.Int32 System.Array::IndexOf<System.String>(T[],T)
inline int32_t Array_IndexOf_TisString_t_m9107AABCE77608D1D21B9ECB6DA42D0D4334AF32 (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___array0, String_t* ___value1, const RuntimeMethod* method)
{
return (( int32_t (*) (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*, String_t*, const RuntimeMethod*))Array_IndexOf_TisRuntimeObject_m4202FD457BB995E8553D010D1E861B7BD2F60BB0_gshared)(___array0, ___value1, 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.Object::Finalize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_Finalize_mC98C96301CCABFE00F1A7EF8E15DF507CACD42B2 (RuntimeObject* __this, const RuntimeMethod* method) ;
// System.Void Mono.Security.Interface.MonoTlsProvider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTlsProvider__ctor_m65BF846CE616D13609A5EFB2F42AE03A38E5CB8D (MonoTlsProvider_t39C898CDC9458EEAD7C019B4B23701EAF9E24F7E* __this, const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.MonoSslAuthenticationOptions::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoSslAuthenticationOptions__ctor_mF6A5D221635C5E1ACF430108C1A11538E9F5349C (MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* __this, const RuntimeMethod* method) ;
// System.Void System.Net.Security.SslClientAuthenticationOptions::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SslClientAuthenticationOptions__ctor_mFFA8C3E39592A8376E7C3F6AC6FB89A6B7A702CD (SslClientAuthenticationOptions_tA5277DAACAFB33887D2513D9399C5154B0D5CBC9* __this, const RuntimeMethod* method) ;
// System.Net.Security.SslClientAuthenticationOptions Mono.Net.Security.MonoSslClientAuthenticationOptions::get_Options()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR SslClientAuthenticationOptions_tA5277DAACAFB33887D2513D9399C5154B0D5CBC9* MonoSslClientAuthenticationOptions_get_Options_m67D736F913351C90F780A66F1A7C40832825D268_inline (MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* __this, const RuntimeMethod* method) ;
// System.Void System.Net.Security.SslClientAuthenticationOptions::set_CertificateRevocationCheckMode(System.Security.Cryptography.X509Certificates.X509RevocationMode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SslClientAuthenticationOptions_set_CertificateRevocationCheckMode_m5DB15346690DAC5A8F610AA8C7DEC7F2DFC29DE9 (SslClientAuthenticationOptions_tA5277DAACAFB33887D2513D9399C5154B0D5CBC9* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Void System.Net.Security.SslClientAuthenticationOptions::set_EncryptionPolicy(System.Net.Security.EncryptionPolicy)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SslClientAuthenticationOptions_set_EncryptionPolicy_m008E6F28D3C4BFEFFB32A9BEA6AEF1C2B53F1C77 (SslClientAuthenticationOptions_tA5277DAACAFB33887D2513D9399C5154B0D5CBC9* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Security.Authentication.SslProtocols System.Net.Security.SslClientAuthenticationOptions::get_EnabledSslProtocols()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SslClientAuthenticationOptions_get_EnabledSslProtocols_mEC43F31DCFB3322900792809C72AC48070A9D93B_inline (SslClientAuthenticationOptions_tA5277DAACAFB33887D2513D9399C5154B0D5CBC9* __this, const RuntimeMethod* method) ;
// System.Void System.Net.Security.SslClientAuthenticationOptions::set_EnabledSslProtocols(System.Security.Authentication.SslProtocols)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SslClientAuthenticationOptions_set_EnabledSslProtocols_mC0D304F69A5DC05292B87E00A73415BC83A632D5_inline (SslClientAuthenticationOptions_tA5277DAACAFB33887D2513D9399C5154B0D5CBC9* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.String System.Net.Security.SslClientAuthenticationOptions::get_TargetHost()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* SslClientAuthenticationOptions_get_TargetHost_mC4CF1905E7B4F8193544D4997E305406B976A797_inline (SslClientAuthenticationOptions_tA5277DAACAFB33887D2513D9399C5154B0D5CBC9* __this, const RuntimeMethod* method) ;
// System.Void System.Net.Security.SslClientAuthenticationOptions::set_TargetHost(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SslClientAuthenticationOptions_set_TargetHost_m0D8FF94F267DC51F2BDE6E1C94C2CD67783C4019_inline (SslClientAuthenticationOptions_tA5277DAACAFB33887D2513D9399C5154B0D5CBC9* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Security.Cryptography.X509Certificates.X509CertificateCollection System.Net.Security.SslClientAuthenticationOptions::get_ClientCertificates()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* SslClientAuthenticationOptions_get_ClientCertificates_mD6898001726E82ADD9E3083D78BD05DB619B313C_inline (SslClientAuthenticationOptions_tA5277DAACAFB33887D2513D9399C5154B0D5CBC9* __this, const RuntimeMethod* method) ;
// System.Void System.Net.Security.SslClientAuthenticationOptions::set_ClientCertificates(System.Security.Cryptography.X509Certificates.X509CertificateCollection)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SslClientAuthenticationOptions_set_ClientCertificates_m08B053F1C158912EEA43A4A28D37A740041CA78B_inline (SslClientAuthenticationOptions_tA5277DAACAFB33887D2513D9399C5154B0D5CBC9* __this, X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* ___value0, const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.MonoTlsProviderFactory::InitializeInternal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTlsProviderFactory_InitializeInternal_mB0843306BA58C8CBDE17485CBFCE45BAD8CFA356 (const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.MonoTlsProviderFactory::InitializeProviderRegistration()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTlsProviderFactory_InitializeProviderRegistration_mDC8AEDEE018FFC5374E746A72B55A337B675CB82 (const RuntimeMethod* method) ;
// Mono.Net.Security.MobileTlsProvider Mono.Net.Security.MonoTlsProviderFactory::CreateDefaultProviderImpl()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* MonoTlsProviderFactory_CreateDefaultProviderImpl_m674088AF2FC01E08CEE18728A7BBACDD9A7C2182 (const RuntimeMethod* method) ;
// System.Void System.NotSupportedException::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_m640434992590117168C3EF7533603F98C362FC91 (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* __this, String_t* ___message0, Exception_t* ___innerException1, 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.Boolean System.Collections.Generic.Dictionary`2<System.Guid,Mono.Net.Security.MobileTlsProvider>::ContainsKey(TKey)
inline bool Dictionary_2_ContainsKey_m8C2BEADBB409B9054FD24D286B04A18C7923DD88 (Dictionary_2_tAF53376D9E207F701196CFA12420D116F00604AC* __this, Guid_t ___key0, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_tAF53376D9E207F701196CFA12420D116F00604AC*, Guid_t, const RuntimeMethod*))Dictionary_2_ContainsKey_mADEF13A6F00847BA930B57377C0F34719842FE6A_gshared)(__this, ___key0, method);
}
// System.Void System.Collections.Generic.Dictionary`2<System.Guid,Mono.Net.Security.MobileTlsProvider>::Add(TKey,TValue)
inline void Dictionary_2_Add_m869055AE34AF218780AD2CA780B2712C00351A33 (Dictionary_2_tAF53376D9E207F701196CFA12420D116F00604AC* __this, Guid_t ___key0, MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* ___value1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_tAF53376D9E207F701196CFA12420D116F00604AC*, Guid_t, MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017*, const RuntimeMethod*))Dictionary_2_Add_m33B42C2DBAD6AA659C75AE78EB373B8577F9710B_gshared)(__this, ___key0, ___value1, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Tuple`2<System.Guid,System.String>>::TryGetValue(TKey,TValue&)
inline bool Dictionary_2_TryGetValue_m3047585A441D4101655E37CF8BD907598E2B19AF (Dictionary_2_t6D341191E2021065DBEDA3500D49AB6A7791A7D7* __this, String_t* ___key0, Tuple_2_t8A67FBD80CECF93E77E04F75D4B379CC242F7DA5** ___value1, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_t6D341191E2021065DBEDA3500D49AB6A7791A7D7*, String_t*, Tuple_2_t8A67FBD80CECF93E77E04F75D4B379CC242F7DA5**, const RuntimeMethod*))Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared)(__this, ___key0, ___value1, method);
}
// T1 System.Tuple`2<System.Guid,System.String>::get_Item1()
inline Guid_t Tuple_2_get_Item1_m48AB3C0DC00F084E3C2CC7D285B5E77F3F45E6A5_inline (Tuple_2_t8A67FBD80CECF93E77E04F75D4B379CC242F7DA5* __this, const RuntimeMethod* method)
{
return (( Guid_t (*) (Tuple_2_t8A67FBD80CECF93E77E04F75D4B379CC242F7DA5*, const RuntimeMethod*))Tuple_2_get_Item1_m9ABFF72A759CD813826F31A3A32531CE965180FD_gshared_inline)(__this, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2<System.Guid,Mono.Net.Security.MobileTlsProvider>::TryGetValue(TKey,TValue&)
inline bool Dictionary_2_TryGetValue_m66783B424BFC6B42816BEE30A905C61471713077 (Dictionary_2_tAF53376D9E207F701196CFA12420D116F00604AC* __this, Guid_t ___key0, MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017** ___value1, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_tAF53376D9E207F701196CFA12420D116F00604AC*, Guid_t, MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017**, const RuntimeMethod*))Dictionary_2_TryGetValue_mE1D4EB8E35047347D05CF24CE7482F447D77EB9D_gshared)(__this, ___key0, ___value1, method);
}
// T2 System.Tuple`2<System.Guid,System.String>::get_Item2()
inline String_t* Tuple_2_get_Item2_m3605D72E0AF663ED68EC8C8481FF5545D014EFD1_inline (Tuple_2_t8A67FBD80CECF93E77E04F75D4B379CC242F7DA5* __this, const RuntimeMethod* method)
{
return (( String_t* (*) (Tuple_2_t8A67FBD80CECF93E77E04F75D4B379CC242F7DA5*, const RuntimeMethod*))Tuple_2_get_Item2_mEAAFA3873F19AF12E94171ADE890EB6D958689F6_gshared_inline)(__this, method);
}
// System.Boolean System.Type::op_Equality(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7 (Type_t* ___left0, Type_t* ___right1, const RuntimeMethod* method) ;
// System.Object System.Activator::CreateInstance(System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Activator_CreateInstance_m2767C14E0050C13BDB2732D7223FE17A9FA0F61A (Type_t* ___type0, bool ___nonPublic1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.String,System.Tuple`2<System.Guid,System.String>>::.ctor()
inline void Dictionary_2__ctor_mEA4DC2EB466B90E06833BFC64C52AC4A15AD81F1 (Dictionary_2_t6D341191E2021065DBEDA3500D49AB6A7791A7D7* __this, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t6D341191E2021065DBEDA3500D49AB6A7791A7D7*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2<System.Guid,Mono.Net.Security.MobileTlsProvider>::.ctor()
inline void Dictionary_2__ctor_m0C61DB9EDAAE02B489F93D02207BABF3315874DF (Dictionary_2_tAF53376D9E207F701196CFA12420D116F00604AC* __this, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_tAF53376D9E207F701196CFA12420D116F00604AC*, const RuntimeMethod*))Dictionary_2__ctor_m47DD6DE10DF49155FCF329CC0B0FC21C23EDA26A_gshared)(__this, method);
}
// System.Boolean Mono.Unity.UnityTls::get_IsSupported()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityTls_get_IsSupported_m7A43EE578D088D942479C11C7A1718432ED1F048 (const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.MonoTlsProviderFactory::PopulateUnityProviders()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTlsProviderFactory_PopulateUnityProviders_m5A63191876243DF78B41ACDFA473F61C8B2243F3 (const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.MonoTlsProviderFactory::PopulateProviders()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTlsProviderFactory_PopulateProviders_mF2AB544C94407E541767C11141D5876CB079F838 (const RuntimeMethod* method) ;
// System.Void System.Tuple`2<System.Guid,System.String>::.ctor(T1,T2)
inline void Tuple_2__ctor_m1C02D02DDF579D8A09311C682B1A7D14ABDEA604 (Tuple_2_t8A67FBD80CECF93E77E04F75D4B379CC242F7DA5* __this, Guid_t ___item10, String_t* ___item21, const RuntimeMethod* method)
{
(( void (*) (Tuple_2_t8A67FBD80CECF93E77E04F75D4B379CC242F7DA5*, Guid_t, String_t*, const RuntimeMethod*))Tuple_2__ctor_m95D767462FF1D742F880BEC29757912E639965DB_gshared)(__this, ___item10, ___item21, method);
}
// System.Void System.Collections.Generic.Dictionary`2<System.String,System.Tuple`2<System.Guid,System.String>>::Add(TKey,TValue)
inline void Dictionary_2_Add_m4F27944027EAC99C539980EA991C9468EDCB402C (Dictionary_2_t6D341191E2021065DBEDA3500D49AB6A7791A7D7* __this, String_t* ___key0, Tuple_2_t8A67FBD80CECF93E77E04F75D4B379CC242F7DA5* ___value1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t6D341191E2021065DBEDA3500D49AB6A7791A7D7*, String_t*, Tuple_2_t8A67FBD80CECF93E77E04F75D4B379CC242F7DA5*, const RuntimeMethod*))Dictionary_2_Add_m93FFFABE8FCE7FA9793F0915E2A8842C7CD0C0C1_gshared)(__this, ___key0, ___value1, method);
}
// System.String System.Environment::GetEnvironmentVariable(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetEnvironmentVariable_mFA1E83F28F2E74EF3312F9D4B582FFBE38804ED8 (String_t* ___variable0, 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.Void Mono.Unity.UnityTlsProvider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityTlsProvider__ctor_m0C11027324407A76EB81EB51C37FF5C8F6F219A8 (UnityTlsProvider_t5B2A843E65B77E7B2B9F2467DB0B6117505929D1* __this, const RuntimeMethod* method) ;
// Mono.Net.Security.MobileTlsProvider Mono.Net.Security.MonoTlsProviderFactory::LookupProvider(System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* MonoTlsProviderFactory_LookupProvider_m842219B5A2493A9AA3B4D1911A1D77EB2F260DD0 (String_t* ___name0, bool ___throwOnError1, const RuntimeMethod* method) ;
// System.Void System.Guid::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Guid__ctor_mAE66BA1C43B4194F4F7991E2E30370E36CBBF830 (Guid_t* __this, String_t* ___g0, const RuntimeMethod* method) ;
// Mono.Security.Interface.MonoTlsSettings System.Net.HttpWebRequest::get_TlsSettings()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* HttpWebRequest_get_TlsSettings_mE4E8C9107E0930061977FA03EE87DECE51C503D9_inline (HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* __this, const RuntimeMethod* method) ;
// Mono.Net.Security.MobileTlsProvider System.Net.HttpWebRequest::get_TlsProvider()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* HttpWebRequest_get_TlsProvider_mF4A43E69AE84D8AEEAE9FDCEE296DB7C83301123_inline (HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* __this, const RuntimeMethod* method) ;
// Mono.Net.Security.ChainValidationHelper Mono.Net.Security.ChainValidationHelper::Create(Mono.Net.Security.MobileTlsProvider,Mono.Security.Interface.MonoTlsSettings&,Mono.Net.Security.MonoTlsStream)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755* ChainValidationHelper_Create_m3EC94F4F608DFDB125DB6B725FB2CF151AC7F7EA (MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* ___provider0, MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0** ___settings1, MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* ___stream2, const RuntimeMethod* method) ;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.IO.Stream>::Create()
inline AsyncTaskMethodBuilder_1_t923DC16ADFF754593B125800F38ED37C920B14C1 AsyncTaskMethodBuilder_1_Create_m8F2B08988F5CA71F7523FD4A0CB127CCCB218B93 (const RuntimeMethod* method)
{
return (( AsyncTaskMethodBuilder_1_t923DC16ADFF754593B125800F38ED37C920B14C1 (*) (const RuntimeMethod*))AsyncTaskMethodBuilder_1_Create_mAFCDBB3F3D94DC87243FAB2D72DD85D1EFB68441_gshared)(method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.IO.Stream>::Start<Mono.Net.Security.MonoTlsStream/<CreateStream>d__18>(TStateMachine&)
inline void AsyncTaskMethodBuilder_1_Start_TisU3CCreateStreamU3Ed__18_tB6902486B51A9F1F578114D893BEC030E9A29950_m80E53DFAEED43CB3C15DE84616EC79C8AD6F11BA (AsyncTaskMethodBuilder_1_t923DC16ADFF754593B125800F38ED37C920B14C1* __this, U3CCreateStreamU3Ed__18_tB6902486B51A9F1F578114D893BEC030E9A29950* ___stateMachine0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t923DC16ADFF754593B125800F38ED37C920B14C1*, U3CCreateStreamU3Ed__18_tB6902486B51A9F1F578114D893BEC030E9A29950*, const RuntimeMethod*))AsyncTaskMethodBuilder_1_Start_TisU3CCreateStreamU3Ed__18_tB6902486B51A9F1F578114D893BEC030E9A29950_m8ADD0CA3356CF4C1C8576500859CB8BACAA08176_gshared)(__this, ___stateMachine0, method);
}
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.IO.Stream>::get_Task()
inline Task_1_t06484715029D51A4420723456D165BAC63798F8D* AsyncTaskMethodBuilder_1_get_Task_m31AF486E97F1AC7E585EB822848E8069F7840E35 (AsyncTaskMethodBuilder_1_t923DC16ADFF754593B125800F38ED37C920B14C1* __this, const RuntimeMethod* method)
{
return (( Task_1_t06484715029D51A4420723456D165BAC63798F8D* (*) (AsyncTaskMethodBuilder_1_t923DC16ADFF754593B125800F38ED37C920B14C1*, const RuntimeMethod*))AsyncTaskMethodBuilder_1_get_Task_mEA092EC6F1324A9D694CF6056FA8583F2A2BDC89_gshared)(__this, method);
}
// System.Void Mono.Net.Security.MonoTlsStream::CloseSslStream()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTlsStream_CloseSslStream_m82584A00391A5ACA6EC81C4848BBC7F92F801278 (MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* __this, const RuntimeMethod* method) ;
// System.Net.Sockets.Socket System.Net.Sockets.NetworkStream::get_InternalSocket()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* NetworkStream_get_InternalSocket_m58624516F119DC056AC5C53B1E3D412D0394F999 (NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* __this, const RuntimeMethod* method) ;
// System.Void System.Net.Security.SslStream::.ctor(System.IO.Stream,System.Boolean,Mono.Security.Interface.MonoTlsProvider,Mono.Security.Interface.MonoTlsSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SslStream__ctor_m222C4F58E1CBA2382263444001AA70862B2EC462 (SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___innerStream0, bool ___leaveInnerStreamOpen1, MonoTlsProvider_t39C898CDC9458EEAD7C019B4B23701EAF9E24F7E* ___provider2, MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* ___settings3, const RuntimeMethod* method) ;
// System.Security.Cryptography.X509Certificates.X509CertificateCollection System.Net.HttpWebRequest::get_ClientCertificates()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* HttpWebRequest_get_ClientCertificates_mD9F70A07C623462FC910E764511471D542AB102F (HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* __this, const RuntimeMethod* method) ;
// System.Net.SecurityProtocolType System.Net.ServicePointManager::get_SecurityProtocol()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ServicePointManager_get_SecurityProtocol_m30A1F0981535D5FCD93219E4759C13136FE1DACB_inline (const RuntimeMethod* method) ;
// System.Boolean System.Net.ServicePointManager::get_CheckCertificateRevocationList()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ServicePointManager_get_CheckCertificateRevocationList_mC0CDB007A91C59573B664FAB178B756F78561534_inline (const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.IO.Stream>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.MonoTlsStream/<CreateStream>d__18>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CCreateStreamU3Ed__18_tB6902486B51A9F1F578114D893BEC030E9A29950_m2C4C2ABA5E186B9B02DDA2BD8C664792E8BE6B55 (AsyncTaskMethodBuilder_1_t923DC16ADFF754593B125800F38ED37C920B14C1* __this, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* ___awaiter0, U3CCreateStreamU3Ed__18_tB6902486B51A9F1F578114D893BEC030E9A29950* ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t923DC16ADFF754593B125800F38ED37C920B14C1*, ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618*, U3CCreateStreamU3Ed__18_tB6902486B51A9F1F578114D893BEC030E9A29950*, const RuntimeMethod*))AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CCreateStreamU3Ed__18_tB6902486B51A9F1F578114D893BEC030E9A29950_m270C3AFE5C216D2A2A2C74BF3D62944E9F1E21D7_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Net.ServicePoint::UpdateClientCertificate(System.Security.Cryptography.X509Certificates.X509Certificate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ServicePoint_UpdateClientCertificate_m1C24F73E61F345E535D184110A3625B2EAF8C6AD (ServicePoint_t5DB5939994CAA6A0DF221C5F58D59D1A6131CE29* __this, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___certificate0, const RuntimeMethod* method) ;
// System.Boolean System.Net.Sockets.Socket::get_CleanedUp()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Socket_get_CleanedUp_m8F6EDAE37C56CBC282D3EAF9D93B5726EEC85988 (Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* __this, const RuntimeMethod* method) ;
// System.Boolean Mono.Net.Security.MonoTlsStream::get_CertificateValidationFailed()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MonoTlsStream_get_CertificateValidationFailed_m28A1EF3B3EC723A5A0114B613F7BF9B6AB90555F_inline (MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* __this, const RuntimeMethod* method) ;
// System.Byte[] System.Net.WebConnectionTunnel::get_Data()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WebConnectionTunnel_get_Data_m31F4E1F83D5E2AB65A5F7128A9AD64870DEE58BA_inline (WebConnectionTunnel_tA394C00C106FAA694D0D5B7A5B03B3B52328DC0F* __this, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.IO.Stream>::SetException(System.Exception)
inline void AsyncTaskMethodBuilder_1_SetException_m791D3E146542C1B15641A6BB0A5561C44338382C (AsyncTaskMethodBuilder_1_t923DC16ADFF754593B125800F38ED37C920B14C1* __this, Exception_t* ___exception0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t923DC16ADFF754593B125800F38ED37C920B14C1*, Exception_t*, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetException_mC2F74B26F5303F9F960965220E2866D777F1A5C6_gshared)(__this, ___exception0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.IO.Stream>::SetResult(TResult)
inline void AsyncTaskMethodBuilder_1_SetResult_m03C6502C8E7CD8CC5C2DEBF334C70F640D9D6272 (AsyncTaskMethodBuilder_1_t923DC16ADFF754593B125800F38ED37C920B14C1* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___result0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t923DC16ADFF754593B125800F38ED37C920B14C1*, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE*, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetResult_m0D83195F995F9825D7A6DCDC3835D6917C43B5A6_gshared)(__this, ___result0, method);
}
// System.Void Mono.Net.Security.MonoTlsStream/<CreateStream>d__18::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CCreateStreamU3Ed__18_MoveNext_m45EE08C637B078770B0EA94A046B90250FAE66F8 (U3CCreateStreamU3Ed__18_tB6902486B51A9F1F578114D893BEC030E9A29950* __this, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.IO.Stream>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
inline void AsyncTaskMethodBuilder_1_SetStateMachine_m5D949F9E15BCE9A631DDF030D35D8DD10C0C6417 (AsyncTaskMethodBuilder_1_t923DC16ADFF754593B125800F38ED37C920B14C1* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t923DC16ADFF754593B125800F38ED37C920B14C1*, RuntimeObject*, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetStateMachine_m3BE54983634ABF5BE05200C7894AD0F9F20BDD65_gshared)(__this, ___stateMachine0, method);
}
// System.Void Mono.Net.Security.MonoTlsStream/<CreateStream>d__18::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CCreateStreamU3Ed__18_SetStateMachine_m76FB604B1174F14EEEA1F77E31AEB5680F19AB73 (U3CCreateStreamU3Ed__18_tB6902486B51A9F1F578114D893BEC030E9A29950* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) ;
// Mono.Net.Security.MobileTlsProvider Mono.Net.Security.MonoTlsProviderFactory::GetProvider()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* MonoTlsProviderFactory_GetProvider_m8CDA0A014E43C98804347DB5384F9C05BBA26FEE (const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.Private.CallbackHelpers/<>c__DisplayClass0_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass0_0__ctor_m31154BF78DAACBD45BE85524DB60A0C96A1B2A12 (U3CU3Ec__DisplayClass0_0_t60EE7521AABF25B40FF0091B73416ECA2A8A8A92* __this, const RuntimeMethod* method) ;
// System.Void Mono.Security.Interface.MonoRemoteCertificateValidationCallback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoRemoteCertificateValidationCallback__ctor_mEBD94D46C068D03E0F3A827F0875FE424C03B22A (MonoRemoteCertificateValidationCallback_t1A389B61998873F6B9A2EE7A11C36333A8AECCA0* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Void Mono.Net.Security.Private.CallbackHelpers/<>c__DisplayClass6_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass6_0__ctor_mD1E04FD28115DBD711A881B26347464C27140E23 (U3CU3Ec__DisplayClass6_0_t48F0A5835CC00CD6BF0EE74C6CDFF12987FC3DB2* __this, const RuntimeMethod* method) ;
// System.Boolean System.Net.Security.RemoteCertificateValidationCallback::Invoke(System.Object,System.Security.Cryptography.X509Certificates.X509Certificate,System.Security.Cryptography.X509Certificates.X509Chain,System.Net.Security.SslPolicyErrors)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool RemoteCertificateValidationCallback_Invoke_m5256BF7D3B9BFFFAA959191FD5117C393F670D83_inline (RemoteCertificateValidationCallback_t2F4C5801F96B2C2BF934511796C5BFEAEBF01955* __this, RuntimeObject* ___sender0, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___certificate1, X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* ___chain2, int32_t ___sslPolicyErrors3, const RuntimeMethod* method) ;
// System.Security.Cryptography.X509Certificates.X509Certificate Mono.Security.Interface.MonoLocalCertificateSelectionCallback::Invoke(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.Cryptography.X509Certificates.X509Certificate,System.String[])
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* MonoLocalCertificateSelectionCallback_Invoke_m32D010A24184A7BEEE6191B19F04E2E8AC8C3CEE_inline (MonoLocalCertificateSelectionCallback_t34F7772BA5ECE38E6CBD4C311F579DD1D4724DE3* __this, String_t* ___targetHost0, X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* ___localCertificates1, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___remoteCertificate2, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___acceptableIssuers3, 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.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.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.Void Mono.Security.Protocol.Ntlm.Type1Message::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Type1Message__ctor_mEB49FA35D05F01172DF3C164F97163C277AEF914 (Type1Message_t870960FCE9832270C947CFFD3DC8CE62DC3E8974* __this, const RuntimeMethod* method) ;
// System.Void Mono.Security.Protocol.Ntlm.Type1Message::set_Domain(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Type1Message_set_Domain_mE06516CC741E4D12787911A9F1BCE92047DBA316 (Type1Message_t870960FCE9832270C947CFFD3DC8CE62DC3E8974* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Void Mono.Security.Protocol.Ntlm.Type1Message::set_Host(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Type1Message_set_Host_mAB5F72A7D281D31E9F9EC69B7D7518762AEE6CDA (Type1Message_t870960FCE9832270C947CFFD3DC8CE62DC3E8974* __this, String_t* ___value0, const RuntimeMethod* method) ;
// Mono.Security.Protocol.Ntlm.NtlmFlags Mono.Security.Protocol.Ntlm.MessageBase::get_Flags()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t MessageBase_get_Flags_m4A5BBB1791D770EE5B78682F35F7289627B96643_inline (MessageBase_t173306F2152A17C53A4CD23954A751EE471BD708* __this, const RuntimeMethod* method) ;
// System.Void Mono.Security.Protocol.Ntlm.MessageBase::set_Flags(Mono.Security.Protocol.Ntlm.NtlmFlags)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MessageBase_set_Flags_m4BA4AA3CA1819FFDF10A8A5ABBE9A891BB31A95E_inline (MessageBase_t173306F2152A17C53A4CD23954A751EE471BD708* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Int32 Mono.Security.Protocol.Ntlm.MessageBase::get_Type()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t MessageBase_get_Type_m9A3BCA375EA72DEE93AC6814A2D042F12CE2189B_inline (MessageBase_t173306F2152A17C53A4CD23954A751EE471BD708* __this, const RuntimeMethod* method) ;
// System.Void Mono.Security.Protocol.Ntlm.Type2Message::.ctor(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Type2Message__ctor_m7A630E10D6C79B19A67A0068102655D998172E69 (Type2Message_t2B675F8672CFEC6E19474A238FA02DCEDB0209BE* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___message0, const RuntimeMethod* method) ;
// System.Void Mono.Security.Protocol.Ntlm.Type3Message::.ctor(Mono.Security.Protocol.Ntlm.Type2Message)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Type3Message__ctor_m3A46F07DA05999471A34A64EB248160225F06768 (Type3Message_t17A486915FD96CAECE87CB2AE1825043A364AF66* __this, Type2Message_t2B675F8672CFEC6E19474A238FA02DCEDB0209BE* ___type20, const RuntimeMethod* method) ;
// System.Void Mono.Security.Protocol.Ntlm.Type3Message::set_Username(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Type3Message_set_Username_mE76160F96BD8EEFF971C3E04B2AD2579080E3BF8_inline (Type3Message_t17A486915FD96CAECE87CB2AE1825043A364AF66* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Void Mono.Security.Protocol.Ntlm.Type3Message::set_Password(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Type3Message_set_Password_m04828A9F18AE9301885B4BD3C1F7F151DE63B300_inline (Type3Message_t17A486915FD96CAECE87CB2AE1825043A364AF66* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Void Mono.Security.Protocol.Ntlm.Type3Message::set_Domain(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Type3Message_set_Domain_mA29F199E40EDFDB8CBEC22F50925889A1F8510E0 (Type3Message_t17A486915FD96CAECE87CB2AE1825043A364AF66* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.String System.Convert::ToBase64String(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToBase64String_mB276B21511FB01CDE030619C81757E786F91B9F3 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___inArray0, const RuntimeMethod* method) ;
// 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) ;
// System.String System.String::Trim()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5 (String_t* __this, const RuntimeMethod* method) ;
// System.String System.String::ToLower()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToLower_m6191ABA3DC514ED47C10BDA23FD0DDCEAE7ACFBD (String_t* __this, 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.Void System.Runtime.CompilerServices.ConditionalWeakTable`2/CreateValueCallback<System.Net.HttpWebRequest,Mono.Http.NtlmSession>::.ctor(System.Object,System.IntPtr)
inline void CreateValueCallback__ctor_m184219934207027C4DAD22DA45FACF4BD5D698CE (CreateValueCallback_t32241614308DD3BEEEAC77EFA55E573B54A5D1D2* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (CreateValueCallback_t32241614308DD3BEEEAC77EFA55E573B54A5D1D2*, RuntimeObject*, intptr_t, const RuntimeMethod*))CreateValueCallback__ctor_mDBD11BE5B28EC0300CF9FE05ADB688420B83703A_gshared)(__this, ___object0, ___method1, method);
}
// TValue System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Net.HttpWebRequest,Mono.Http.NtlmSession>::GetValue(TKey,System.Runtime.CompilerServices.ConditionalWeakTable`2/CreateValueCallback<TKey,TValue>)
inline NtlmSession_tFCA9C8C98B2241BFE552477E3F60F419C51F30AB* ConditionalWeakTable_2_GetValue_mDB5BC526FD14937A9C0A92365206F70F103332EF (ConditionalWeakTable_2_t8C60960CD7830601390A47E0673223EC1560C638* __this, HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* ___key0, CreateValueCallback_t32241614308DD3BEEEAC77EFA55E573B54A5D1D2* ___createValueCallback1, const RuntimeMethod* method)
{
return (( NtlmSession_tFCA9C8C98B2241BFE552477E3F60F419C51F30AB* (*) (ConditionalWeakTable_2_t8C60960CD7830601390A47E0673223EC1560C638*, HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9*, CreateValueCallback_t32241614308DD3BEEEAC77EFA55E573B54A5D1D2*, const RuntimeMethod*))ConditionalWeakTable_2_GetValue_mD02297B46B37D3AF2884B5BD1B6A74C563F0DC42_gshared)(__this, ___key0, ___createValueCallback1, method);
}
// System.Net.Authorization Mono.Http.NtlmSession::Authenticate(System.String,System.Net.WebRequest,System.Net.ICredentials)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Authorization_t7F109103AF7366A418844BF604458413434F60D4* NtlmSession_Authenticate_m57C3EA3E259871B2300FA1B1AB9FA4AE5E9AA1FC (NtlmSession_tFCA9C8C98B2241BFE552477E3F60F419C51F30AB* __this, String_t* ___challenge0, WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* ___webRequest1, RuntimeObject* ___credentials2, const RuntimeMethod* method) ;
// System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Net.HttpWebRequest,Mono.Http.NtlmSession>::.ctor()
inline void ConditionalWeakTable_2__ctor_m830E16E9DD2EA6A40AFECEC890FDE7D6C52DA3D0 (ConditionalWeakTable_2_t8C60960CD7830601390A47E0673223EC1560C638* __this, const RuntimeMethod* method)
{
(( void (*) (ConditionalWeakTable_2_t8C60960CD7830601390A47E0673223EC1560C638*, const RuntimeMethod*))ConditionalWeakTable_2__ctor_m853F59C8991DABC257AA9EE373CF4061CDD53E94_gshared)(__this, method);
}
// System.Void Mono.Http.NtlmClient/<>c::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m8EC0DBE120D2CB08BE2ED3F5A706BCEF9716603C (U3CU3Ec_t23EC3A439D27907A8B20604CC3FBC3DEA329D4BB* __this, const RuntimeMethod* method) ;
// System.Void Mono.Http.NtlmSession::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NtlmSession__ctor_mEEEFFA1F5F08E6F04718A3008CB72006CC8BED71 (NtlmSession_tFCA9C8C98B2241BFE552477E3F60F419C51F30AB* __this, const RuntimeMethod* method) ;
// System.Boolean Internal.Cryptography.OidLookup::ShouldUseCache(System.Security.Cryptography.OidGroup)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OidLookup_ShouldUseCache_mB50BE42B791BF8314979BCF725BB50F5C1DF0461 (int32_t ___oidGroup0, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.String>::TryGetValue(TKey,TValue&)
inline bool Dictionary_2_TryGetValue_mA86D965CB5F74CE8675B7995C61945BEB6E594CB (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* __this, String_t* ___key0, String_t** ___value1, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83*, String_t*, String_t**, const RuntimeMethod*))Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared)(__this, ___key0, ___value1, method);
}
// System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2<System.String,System.String>::TryGetValue(TKey,TValue&)
inline bool ConcurrentDictionary_2_TryGetValue_m98D7AD54A8EBAAF26DB4FDC717FAFF36EE314853 (ConcurrentDictionary_2_tE0296B741D9F887264D805ED46C4249B8F5EFC9C* __this, String_t* ___key0, String_t** ___value1, const RuntimeMethod* method)
{
return (( bool (*) (ConcurrentDictionary_2_tE0296B741D9F887264D805ED46C4249B8F5EFC9C*, String_t*, String_t**, const RuntimeMethod*))ConcurrentDictionary_2_TryGetValue_mE794BBB2811B9244CF8ECB11994F70DEB6BEFDF7_gshared)(__this, ___key0, ___value1, method);
}
// System.String Internal.Cryptography.OidLookup::NativeOidToFriendlyName(System.String,System.Security.Cryptography.OidGroup,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* OidLookup_NativeOidToFriendlyName_m54826DC2A46712C51D3BBE397372E01D0BCBDB34 (String_t* ___oid0, int32_t ___oidGroup1, bool ___fallBackToAllGroups2, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2<System.String,System.String>::TryAdd(TKey,TValue)
inline bool ConcurrentDictionary_2_TryAdd_m45B276C2610DC66F8D95413C7CE27896DE0D88D5 (ConcurrentDictionary_2_tE0296B741D9F887264D805ED46C4249B8F5EFC9C* __this, String_t* ___key0, String_t* ___value1, const RuntimeMethod* method)
{
return (( bool (*) (ConcurrentDictionary_2_tE0296B741D9F887264D805ED46C4249B8F5EFC9C*, String_t*, String_t*, const RuntimeMethod*))ConcurrentDictionary_2_TryAdd_mA7D07DAB0E4F228BEDBEBA3BEA124A7C839B0DFC_gshared)(__this, ___key0, ___value1, method);
}
// System.String Internal.Cryptography.OidLookup::NativeFriendlyNameToOid(System.String,System.Security.Cryptography.OidGroup,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* OidLookup_NativeFriendlyNameToOid_m1CEF74ADB4771FEAFE0C491AC36DF806517C55AC (String_t* ___friendlyName0, int32_t ___oidGroup1, bool ___fallBackToAllGroups2, const RuntimeMethod* method) ;
// System.UInt32 <PrivateImplementationDetails>::ComputeStringHash(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t U3CPrivateImplementationDetailsU3E_ComputeStringHash_mC09A19935970846B38570D03608F0E5F25E2020C (String_t* ___s0, const RuntimeMethod* method) ;
// System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.String,System.String>::.ctor()
inline void ConcurrentDictionary_2__ctor_m9B2EB6BD32E298BAD1B3113C83414524B6185AF9 (ConcurrentDictionary_2_tE0296B741D9F887264D805ED46C4249B8F5EFC9C* __this, const RuntimeMethod* method)
{
(( void (*) (ConcurrentDictionary_2_tE0296B741D9F887264D805ED46C4249B8F5EFC9C*, const RuntimeMethod*))ConcurrentDictionary_2__ctor_m0891574E19148D39C27C179BF2787093757C5F57_gshared)(__this, method);
}
// System.StringComparer System.StringComparer::get_OrdinalIgnoreCase()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06* StringComparer_get_OrdinalIgnoreCase_m4206775241793096770A30CE686D3B342AEDDE6E_inline (const RuntimeMethod* method) ;
// System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.String,System.String>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>)
inline void ConcurrentDictionary_2__ctor_m9892FA3A284C42770614BE9E65205A8B33824A6C (ConcurrentDictionary_2_tE0296B741D9F887264D805ED46C4249B8F5EFC9C* __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
(( void (*) (ConcurrentDictionary_2_tE0296B741D9F887264D805ED46C4249B8F5EFC9C*, RuntimeObject*, const RuntimeMethod*))ConcurrentDictionary_2__ctor_m2D937986F9495D8AF5A1FEB1217D83A3AA3FF6D8_gshared)(__this, ___comparer0, method);
}
// System.Void System.Collections.Generic.Dictionary`2<System.String,System.String>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>)
inline void Dictionary_2__ctor_m201D4C32BA21CBF329B875E58C2515ABC9E29894 (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83*, RuntimeObject*, const RuntimeMethod*))Dictionary_2__ctor_mB2760A703784902BE10E873BC760166EC9693D63_gshared)(__this, ___comparer0, method);
}
// System.Void System.Collections.Generic.Dictionary`2<System.String,System.String>::Add(TKey,TValue)
inline void Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13 (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* __this, String_t* ___key0, String_t* ___value1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83*, String_t*, String_t*, const RuntimeMethod*))Dictionary_2_Add_m93FFFABE8FCE7FA9793F0915E2A8842C7CD0C0C1_gshared)(__this, ___key0, ___value1, method);
}
// System.Void System.Func`2<System.Collections.Generic.KeyValuePair`2<System.String,System.String>,System.String>::.ctor(System.Object,System.IntPtr)
inline void Func_2__ctor_m48BD5538630AB90CAACF2ADC165985AB743A6C30 (Func_2_t0FD9221539E762B3867B2E3B6D6B3F90C6483088* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_2_t0FD9221539E762B3867B2E3B6D6B3F90C6483088*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_2__ctor_m60F64297108A01DFB5663C9BA121893957855907_gshared)(__this, ___object0, ___method1, method);
}
// System.Collections.Generic.Dictionary`2<TKey,TElement> System.Linq.Enumerable::ToDictionary<System.Collections.Generic.KeyValuePair`2<System.String,System.String>,System.String,System.String>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TKey>,System.Func`2<TSource,TElement>)
inline Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* Enumerable_ToDictionary_TisKeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A_TisString_t_TisString_t_m04E92A94C241FE2E449A88C27845214EAB8E5813 (RuntimeObject* ___source0, Func_2_t0FD9221539E762B3867B2E3B6D6B3F90C6483088* ___keySelector1, Func_2_t0FD9221539E762B3867B2E3B6D6B3F90C6483088* ___elementSelector2, const RuntimeMethod* method)
{
return (( Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* (*) (RuntimeObject*, Func_2_t0FD9221539E762B3867B2E3B6D6B3F90C6483088*, Func_2_t0FD9221539E762B3867B2E3B6D6B3F90C6483088*, const RuntimeMethod*))Enumerable_ToDictionary_TisKeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230_TisRuntimeObject_TisRuntimeObject_m933CB735237A5C5F4D8B122DC67EDAE5C869DF66_gshared)(___source0, ___keySelector1, ___elementSelector2, method);
}
// System.Void System.Collections.Generic.Dictionary`2<System.String,System.String>::.ctor()
inline void Dictionary_2__ctor_m768E076F1E804CE4959F4E71D3E6A9ADE2F55052 (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* __this, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method);
}
// System.Void Internal.Cryptography.OidLookup/<>c::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m381C6259C7B5579501CBFB1E4D1DF201D5928470 (U3CU3Ec_t90F8CB10B454B45A81BE65AA841DD85FE08EA21A* __this, const RuntimeMethod* method) ;
// TValue System.Collections.Generic.KeyValuePair`2<System.String,System.String>::get_Value()
inline String_t* KeyValuePair_2_get_Value_m7345512A32CB4DCAA0643050B18DC8DCD71B927A_inline (KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A* __this, const RuntimeMethod* method)
{
return (( String_t* (*) (KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A*, const RuntimeMethod*))KeyValuePair_2_get_Value_mC6BD8075F9C9DDEF7B4D731E5C38EC19103988E7_gshared_inline)(__this, method);
}
// TKey System.Collections.Generic.KeyValuePair`2<System.String,System.String>::get_Key()
inline String_t* KeyValuePair_2_get_Key_m654BCCAE2F20CB11D8E8C2D2C886A0C8A13EB1C4_inline (KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A* __this, const RuntimeMethod* method)
{
return (( String_t* (*) (KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A*, const RuntimeMethod*))KeyValuePair_2_get_Key_mBD8EA7557C27E6956F2AF29DA3F7499B2F51A282_gshared_inline)(__this, method);
}
// System.Void System.Security.Cryptography.DerSequenceReader::.ctor(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DerSequenceReader__ctor_m899D7771F7F469E94812F8EB9BB0A75A0BE69CBD (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___data0, const RuntimeMethod* method) ;
// System.Security.Cryptography.DerSequenceReader System.Security.Cryptography.DerSequenceReader::ReadSequence()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* DerSequenceReader_ReadSequence_m97DF1A79453D57FB5DB012273F34213180921AB4 (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method) ;
// System.Byte System.Security.Cryptography.DerSequenceReader::PeekTag()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t DerSequenceReader_PeekTag_mC22E34353BE4B4C5CE3579AE64B220263C159C8B (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method) ;
// System.Int32 System.Security.Cryptography.DerSequenceReader::ReadInteger()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DerSequenceReader_ReadInteger_mEFB23332B798605A0F474C5B43C59D70543B93BC (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method) ;
// System.Void System.Security.Cryptography.CryptographicException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Void System.Security.Cryptography.CryptographicException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CryptographicException__ctor_mABCA20325469F37B8F4248FDF46EEE4548A9D88B (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* __this, const RuntimeMethod* method) ;
// System.Byte[] System.Security.Cryptography.DerSequenceReader::ReadIntegerBytes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* DerSequenceReader_ReadIntegerBytes_mBF491D99194CDD9FC70F58CF07E66B535C3F63EB (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method) ;
// System.String System.Security.Cryptography.DerSequenceReader::ReadOidAsString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DerSequenceReader_ReadOidAsString_m53E76684261C012927DE60E2A8A5A4ECC6B33198 (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method) ;
// System.Boolean System.Security.Cryptography.DerSequenceReader::get_HasData()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DerSequenceReader_get_HasData_mD6CE45854665F68A82771427FF58DDF7632D6A31 (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __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.Byte[] System.Security.Cryptography.DerSequenceReader::ReadNextEncodedValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* DerSequenceReader_ReadNextEncodedValue_mB9D376F1ED7428BFE7DE86B327E1B80E52E91CB7 (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method) ;
// System.Void System.Security.Cryptography.X509Certificates.X500DistinguishedName::.ctor(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X500DistinguishedName__ctor_mF36480D37651E6FC6662E90ED7795F9A5C1C3DD2 (X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___encodedDistinguishedName0, const RuntimeMethod* method) ;
// System.DateTime System.Security.Cryptography.DerSequenceReader::ReadX509Date()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DerSequenceReader_ReadX509Date_m4B50094324675B16BCF2F77BCB1CD6827F04A568 (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method) ;
// System.Byte[] System.Security.Cryptography.DerSequenceReader::ReadBitString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* DerSequenceReader_ReadBitString_m6519951E58B9642238778071AF7926A6948F0387 (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Security.Cryptography.X509Certificates.X509Extension>::.ctor()
inline void List_1__ctor_mBCDF2D09AD0C1E065B1745D89FE3A7D98CD33E1F (List_1_t03551104C97124C9D83186EEB3F066B8BFFD87E3* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t03551104C97124C9D83186EEB3F066B8BFFD87E3*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
}
// System.Boolean System.Security.Cryptography.DerSequenceReader::ReadBoolean()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DerSequenceReader_ReadBoolean_m568EA640EA9967B8785075997D5161FC7C6C5EBD (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method) ;
// System.Byte[] System.Security.Cryptography.DerSequenceReader::ReadOctetString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* DerSequenceReader_ReadOctetString_mDF80CEA6892B5E2BAA457C153DEBE8C411EC70FE (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method) ;
// System.Void System.Security.Cryptography.X509Certificates.X509Extension::.ctor(System.String,System.Byte[],System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Extension__ctor_m442E6EED0F68D0FA2D7D7B085BEAB11F35B9157F (X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* __this, String_t* ___oid0, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___rawData1, bool ___critical2, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Security.Cryptography.X509Certificates.X509Extension>::Add(T)
inline void List_1_Add_m2E50122C2C447172556F536670F67BD8E8DC5402_inline (List_1_t03551104C97124C9D83186EEB3F066B8BFFD87E3* __this, X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t03551104C97124C9D83186EEB3F066B8BFFD87E3*, X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method);
}
// System.Void Internal.Cryptography.Pal.CertificateData::.ctor(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertificateData__ctor_m623A235F902E7262CB9DA2CEB1BF5D3E64A6D23F (CertificateData_t40A99242A632202B3115D05913ED12CAA78F65B1* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___rawData0, const RuntimeMethod* method) ;
// System.String Internal.Cryptography.Pal.CertificateData::GetSimpleNameInfo(System.Security.Cryptography.X509Certificates.X500DistinguishedName)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CertificateData_GetSimpleNameInfo_mA631A4BFF5FA74EED7E44B2398323213F4505511 (X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* ___name0, const RuntimeMethod* method) ;
// System.Void System.Nullable`1<Internal.Cryptography.Pal.GeneralNameType>::.ctor(T)
inline void Nullable_1__ctor_m1A8E9A123DB57832E6F59440493BFC4D743DC892 (Nullable_1_tD474435A767EA9EC7D78FDCE2CF95E400CD4B5EA* __this, int32_t ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_tD474435A767EA9EC7D78FDCE2CF95E400CD4B5EA*, int32_t, const RuntimeMethod*))Nullable_1__ctor_m5100B58428BDAD8C79F3D8576B0C2E1D4F3924EB_gshared)(__this, ___value0, method);
}
// System.Boolean System.Nullable`1<Internal.Cryptography.Pal.GeneralNameType>::get_HasValue()
inline bool Nullable_1_get_HasValue_m6AFDA522FA5E17FDF9021A5880732A90EA2396F1_inline (Nullable_1_tD474435A767EA9EC7D78FDCE2CF95E400CD4B5EA* __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_tD474435A767EA9EC7D78FDCE2CF95E400CD4B5EA*, const RuntimeMethod*))Nullable_1_get_HasValue_mB1F55188CDD50D6D725D41F55D2F2540CD15FB20_gshared_inline)(__this, method);
}
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Security.Cryptography.X509Certificates.X509Extension>::GetEnumerator()
inline Enumerator_tEDDC2C241127BDEC411C60FAB649BDE614D0F9D9 List_1_GetEnumerator_m7A5DCD9E0FAEC1363189B45012C255D307C153FB (List_1_t03551104C97124C9D83186EEB3F066B8BFFD87E3* __this, const RuntimeMethod* method)
{
return (( Enumerator_tEDDC2C241127BDEC411C60FAB649BDE614D0F9D9 (*) (List_1_t03551104C97124C9D83186EEB3F066B8BFFD87E3*, const RuntimeMethod*))List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Security.Cryptography.X509Certificates.X509Extension>::Dispose()
inline void Enumerator_Dispose_mE3117C916B22646663B0F965D7370ADEBE42898C (Enumerator_tEDDC2C241127BDEC411C60FAB649BDE614D0F9D9* __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tEDDC2C241127BDEC411C60FAB649BDE614D0F9D9*, const RuntimeMethod*))Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<System.Security.Cryptography.X509Certificates.X509Extension>::get_Current()
inline X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* Enumerator_get_Current_mA29E00FEF2148BD9A58CDD8F0EB5300B3AAF0ED8_inline (Enumerator_tEDDC2C241127BDEC411C60FAB649BDE614D0F9D9* __this, const RuntimeMethod* method)
{
return (( X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* (*) (Enumerator_tEDDC2C241127BDEC411C60FAB649BDE614D0F9D9*, const RuntimeMethod*))Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline)(__this, method);
}
// System.Security.Cryptography.Oid System.Security.Cryptography.AsnEncodedData::get_Oid()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* AsnEncodedData_get_Oid_mBDB4803B2ADEE3BD40596E82FF738C2DC339BC28_inline (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, const RuntimeMethod* method) ;
// System.String System.Security.Cryptography.Oid::get_Value()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Oid_get_Value_m59D678A83ED4DE7D87FB7450C8CF4084DB506FD3_inline (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* __this, const RuntimeMethod* method) ;
// System.Byte[] System.Security.Cryptography.AsnEncodedData::get_RawData()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* AsnEncodedData_get_RawData_m629D858D7D20E72C1F46124E5032FE0D3B32AADF_inline (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, const RuntimeMethod* method) ;
// T System.Nullable`1<Internal.Cryptography.Pal.GeneralNameType>::get_Value()
inline int32_t Nullable_1_get_Value_m733C963A26A2E37CCC7BD8D1826D4AD757701B6F (Nullable_1_tD474435A767EA9EC7D78FDCE2CF95E400CD4B5EA* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Nullable_1_tD474435A767EA9EC7D78FDCE2CF95E400CD4B5EA*, const RuntimeMethod*))Nullable_1_get_Value_m0E81D9B6F2BA5FA17AA4366C5179CD09524FCB60_gshared)(__this, method);
}
// System.String Internal.Cryptography.Pal.CertificateData::FindAltNameMatch(System.Byte[],Internal.Cryptography.Pal.GeneralNameType,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CertificateData_FindAltNameMatch_mE725F81D068254CD717F42AC769E934327BA6E13 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___extensionBytes0, int32_t ___matchType1, String_t* ___otherOid2, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Security.Cryptography.X509Certificates.X509Extension>::MoveNext()
inline bool Enumerator_MoveNext_m96CF02EEDE6A41EEAD98756D29E96808A1FE5875 (Enumerator_tEDDC2C241127BDEC411C60FAB649BDE614D0F9D9* __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tEDDC2C241127BDEC411C60FAB649BDE614D0F9D9*, const RuntimeMethod*))Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared)(__this, method);
}
// System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.String,System.String>> Internal.Cryptography.Pal.CertificateData::ReadReverseRdns(System.Security.Cryptography.X509Certificates.X500DistinguishedName)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CertificateData_ReadReverseRdns_mCC9E641803F520C0B6ABE2CF0D5D087F85E921D1 (X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* ___name0, const RuntimeMethod* method) ;
// System.String Internal.Cryptography.Pal.CertificateData::GetNameInfo(System.Security.Cryptography.X509Certificates.X509NameType,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CertificateData_GetNameInfo_m8DC5068DE35A32AC641DCBA45C409D05C4CE9D72 (CertificateData_t40A99242A632202B3115D05913ED12CAA78F65B1* __this, int32_t ___nameType0, bool ___forIssuer1, const RuntimeMethod* method) ;
// System.Void System.Security.Cryptography.DerSequenceReader::SkipValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DerSequenceReader_SkipValue_m0F715CE70FF6EDD8575359FDC2E8ADBAC72FFACE (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method) ;
// System.String System.Security.Cryptography.DerSequenceReader::ReadUtf8String()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DerSequenceReader_ReadUtf8String_m695D8EC313847638A5E9FCB3B036B3AD4A73DB83 (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method) ;
// System.String System.Security.Cryptography.DerSequenceReader::ReadIA5String()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DerSequenceReader_ReadIA5String_m0C23F1CCD96F9F4BD97A43459D1839BDFD1EAB40 (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method) ;
// System.Void Internal.Cryptography.Pal.CertificateData/<ReadReverseRdns>d__21::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CReadReverseRdnsU3Ed__21__ctor_m5A6BC49C73B7B87A9A4400C6B15A6B08990A46D4 (U3CReadReverseRdnsU3Ed__21_t6DC5309953340D6F3CAF345220E2D0AAD878D3DE* __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method) ;
// System.Int32 System.Environment::get_CurrentManagedThreadId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Environment_get_CurrentManagedThreadId_mEC09D20ED666BC3277AC9D16B68AA287E5AFE1B2 (const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Stack`1<System.Security.Cryptography.DerSequenceReader>::.ctor()
inline void Stack_1__ctor_m97F2A92FF6F7604D68938DC3EF357C66110095FA (Stack_1_t11FC055BC8A112A4D3474F6FA0DCAC26D397C08C* __this, const RuntimeMethod* method)
{
(( void (*) (Stack_1_t11FC055BC8A112A4D3474F6FA0DCAC26D397C08C*, const RuntimeMethod*))Stack_1__ctor_m70E8EDA96A608CE9BAB7FC8313B233AADA573BD4_gshared)(__this, method);
}
// System.Security.Cryptography.DerSequenceReader System.Security.Cryptography.DerSequenceReader::ReadSet()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* DerSequenceReader_ReadSet_mB2770ADE8AF6F651659562AEF5B8F247619641FF (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Stack`1<System.Security.Cryptography.DerSequenceReader>::Push(T)
inline void Stack_1_Push_m832BCA0F46EB98AC526A5C83B72052B42AC95700 (Stack_1_t11FC055BC8A112A4D3474F6FA0DCAC26D397C08C* __this, DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* ___item0, const RuntimeMethod* method)
{
(( void (*) (Stack_1_t11FC055BC8A112A4D3474F6FA0DCAC26D397C08C*, DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A*, const RuntimeMethod*))Stack_1_Push_m709DD11BC1291A905814182CF9A367DE7399A778_gshared)(__this, ___item0, method);
}
// T System.Collections.Generic.Stack`1<System.Security.Cryptography.DerSequenceReader>::Pop()
inline DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* Stack_1_Pop_mA225FBFDEBE168ED6B5F61FE26BE0928C811DAEC (Stack_1_t11FC055BC8A112A4D3474F6FA0DCAC26D397C08C* __this, const RuntimeMethod* method)
{
return (( DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* (*) (Stack_1_t11FC055BC8A112A4D3474F6FA0DCAC26D397C08C*, const RuntimeMethod*))Stack_1_Pop_m2AFF69249659372F07EE25817DBCAFE74E1CF778_gshared)(__this, method);
}
// System.String System.Security.Cryptography.DerSequenceReader::ReadBMPString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DerSequenceReader_ReadBMPString_m6AD51BC4D16BF2659A5F0D197A0A2F184D36375E (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method) ;
// System.String System.Security.Cryptography.DerSequenceReader::ReadPrintableString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DerSequenceReader_ReadPrintableString_m9ED84D1BD26B7DB18C047355BD2011CAFC2E72FE (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method) ;
// System.String System.Security.Cryptography.DerSequenceReader::ReadT61String()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DerSequenceReader_ReadT61String_m30F888297CE3E176BE97EE993BA1FA945607999E (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.KeyValuePair`2<System.String,System.String>::.ctor(TKey,TValue)
inline void KeyValuePair_2__ctor_mC76BE8DEB14377BA47C72BDFC7D0BBD37330F36B (KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A* __this, String_t* ___key0, String_t* ___value1, const RuntimeMethod* method)
{
(( void (*) (KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A*, String_t*, String_t*, const RuntimeMethod*))KeyValuePair_2__ctor_m0D5C3E0BE2D37252D3F4E0F0EA9A13C9458D4950_gshared)(__this, ___key0, ___value1, method);
}
// System.Int32 System.Collections.Generic.Stack`1<System.Security.Cryptography.DerSequenceReader>::get_Count()
inline int32_t Stack_1_get_Count_mB64185B733D3D0A76BAD2E085B9F815786E4CC5D_inline (Stack_1_t11FC055BC8A112A4D3474F6FA0DCAC26D397C08C* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Stack_1_t11FC055BC8A112A4D3474F6FA0DCAC26D397C08C*, const RuntimeMethod*))Stack_1_get_Count_mD08AE71D49787D30DDD9D484BCD323D646744D2E_gshared_inline)(__this, method);
}
// System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.String,System.String>> Internal.Cryptography.Pal.CertificateData/<ReadReverseRdns>d__21::System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.String,System.String>>.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CReadReverseRdnsU3Ed__21_System_Collections_Generic_IEnumerableU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CSystem_StringU3EU3E_GetEnumerator_m19CB560BFA57F0DD069DCCA4F99AA3A67CEB5427 (U3CReadReverseRdnsU3Ed__21_t6DC5309953340D6F3CAF345220E2D0AAD878D3DE* __this, const RuntimeMethod* method) ;
// System.Void System.Runtime.InteropServices.SafeHandle::DangerousRelease()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeHandle_DangerousRelease_m30A8B4E5BEA935C8925BC2115CD0AD13B937953E (SafeHandle_tC1A4DA80DA89B867CC011B707A07275230321BF7* __this, const RuntimeMethod* method) ;
// System.Void System.Runtime.InteropServices.SafeHandle::DangerousAddRef(System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeHandle_DangerousAddRef_m9FA46208A92D8B33059B8E8712F49AE45BB5E922 (SafeHandle_tC1A4DA80DA89B867CC011B707A07275230321BF7* __this, bool* ___success0, const RuntimeMethod* method) ;
// System.IntPtr System.Runtime.InteropServices.HandleRef::get_Handle()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t HandleRef_get_Handle_m2055005E349E895499E1B3B826C89228FFAC4C17_inline (HandleRef_t4B05E32B68797F702257D4E838B85A976313F08F* __this, const RuntimeMethod* method) ;
// System.IntPtr System.Runtime.InteropServices.SafeHandle::DangerousGetHandle()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t SafeHandle_DangerousGetHandle_mE7CB3F36EE7BB2E2623EF316C4B43D1CA44B7F9C_inline (SafeHandle_tC1A4DA80DA89B867CC011B707A07275230321BF7* __this, const RuntimeMethod* method) ;
// System.Boolean System.IO.MonoIO::DuplicateHandle(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr&,System.Int32,System.Int32,System.Int32,System.IO.MonoIOError&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MonoIO_DuplicateHandle_m2BB9CDF1578D80E0FCFA1199E13EC6C1E9855E98 (intptr_t ___source_process_handle0, intptr_t ___source_handle1, intptr_t ___target_process_handle2, intptr_t* ___target_handle3, int32_t ___access4, int32_t ___inherit5, int32_t ___options6, int32_t* ___error7, const RuntimeMethod* method) ;
// System.Exception System.IO.MonoIO::GetException(System.IO.MonoIOError)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* MonoIO_GetException_m83962CC85B25CF192D37583E53A43F8FFE909F9E (int32_t ___error0, const RuntimeMethod* method) ;
// System.Void Microsoft.Win32.SafeHandles.SafeWaitHandle::.ctor(System.IntPtr,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeWaitHandle__ctor_m6CA082DF779C0BAAA7EEDE99BB2ECF1ECDB579DA (SafeWaitHandle_t58F5662CD56F6462A687198A64987F8980804449* __this, intptr_t ___existingHandle0, bool ___ownsHandle1, const RuntimeMethod* method) ;
// System.Void Microsoft.Win32.SafeHandles.SafeProcessHandle::.ctor(System.IntPtr,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeProcessHandle__ctor_mF35A5C60AA1DFE35E75F353C346E941D62DB8859 (SafeProcessHandle_tA260D4420C5F481A5DA030FFB19D038BBF8A63CB* __this, intptr_t ___existingHandle0, bool ___ownsHandle1, const RuntimeMethod* method) ;
// System.Boolean Microsoft.Win32.NativeMethods::GetExitCodeProcess(System.IntPtr,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NativeMethods_GetExitCodeProcess_mE82305F94ACE81CA86DC12C37B0129CF596CE110 (intptr_t ___processHandle0, int32_t* ___exitCode1, const RuntimeMethod* method) ;
// System.Void Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid::.ctor(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeHandleZeroOrMinusOneIsInvalid__ctor_m9BA85F78EC25654EE170CA999EC379D9A4B59B89 (SafeHandleZeroOrMinusOneIsInvalid_tC152552D137451170B3B1A304227B0ECADB65629* __this, bool ___ownsHandle0, const RuntimeMethod* method) ;
// System.Void System.Runtime.InteropServices.SafeHandle::SetHandle(System.IntPtr)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SafeHandle_SetHandle_m003D64748F9DFBA1E3C0B23798C23BA81AA21C2A_inline (SafeHandle_tC1A4DA80DA89B867CC011B707A07275230321BF7* __this, intptr_t ___handle0, const RuntimeMethod* method) ;
// System.Boolean Microsoft.Win32.NativeMethods::CloseProcess(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NativeMethods_CloseProcess_mC58317B5182D4057EB1D65C8ABD2A3AE5A6D00D4 (intptr_t ___handle0, const RuntimeMethod* method) ;
// System.Void Microsoft.Win32.SafeHandles.SafeProcessHandle::.ctor(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeProcessHandle__ctor_m347300F5032173FAA9287B4CDC692BBA71D82E95 (SafeProcessHandle_tA260D4420C5F481A5DA030FFB19D038BBF8A63CB* __this, intptr_t ___handle0, const RuntimeMethod* method) ;
// System.Boolean System.IPv4AddressHelper::ParseCanonical(System.ReadOnlySpan`1<System.Char>,System.Byte*,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPv4AddressHelper_ParseCanonical_m7BE948BF36EC5AD70DFFD320BD9EE8A343DA795E (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___name0, uint8_t* ___numbers1, int32_t ___start2, int32_t ___end3, const RuntimeMethod* method) ;
// System.Boolean System.IPv4AddressHelper::IsValidCanonical(System.Char*,System.Int32,System.Int32&,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPv4AddressHelper_IsValidCanonical_mBE62564C4A9F8F584C9FBC0E6A5D5159071BE23E (Il2CppChar* ___name0, int32_t ___start1, int32_t* ___end2, bool ___allowIPv63, bool ___notImplicitFile4, const RuntimeMethod* method) ;
// System.Int64 System.IPv4AddressHelper::ParseNonCanonical(System.Char*,System.Int32,System.Int32&,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t IPv4AddressHelper_ParseNonCanonical_m4ACD00B972D7DBEB80BC3D7A9C36BB2CEA81638E (Il2CppChar* ___name0, int32_t ___start1, int32_t* ___end2, bool ___notImplicitFile3, const RuntimeMethod* method) ;
// System.Boolean System.IPv4AddressHelper::Parse(System.String,System.Byte*,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPv4AddressHelper_Parse_m61983BF8F1D7D827BABB3BD87AE4A2CE2BA92906 (String_t* ___name0, uint8_t* ___numbers1, int32_t ___start2, int32_t ___end3, const RuntimeMethod* method) ;
// System.Void System.Span`1<System.Char>::.ctor(System.Void*,System.Int32)
inline void Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, void* ___pointer0, int32_t ___length1, const RuntimeMethod* method)
{
(( void (*) (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D*, void*, int32_t, const RuntimeMethod*))Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_gshared_inline)(__this, ___pointer0, ___length1, method);
}
// System.Span`1<T> System.Span`1<System.Char>::Slice(System.Int32)
inline Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D Span_1_Slice_mDC9AA64B960B9BB8357655827A8202DF83443068_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, int32_t ___start0, const RuntimeMethod* method)
{
return (( Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D (*) (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D*, int32_t, const RuntimeMethod*))Span_1_Slice_mDC9AA64B960B9BB8357655827A8202DF83443068_gshared_inline)(__this, ___start0, method);
}
// System.Boolean System.Byte::TryFormat(System.Span`1<System.Char>,System.Int32&,System.ReadOnlySpan`1<System.Char>,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_TryFormat_m001551267A8748E3D23C0DE0AF5FEB2BF06A463E (uint8_t* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___destination0, int32_t* ___charsWritten1, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___format2, RuntimeObject* ___provider3, const RuntimeMethod* method) ;
// System.Span`1<T> System.Span`1<System.Char>::Slice(System.Int32,System.Int32)
inline Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, int32_t ___start0, int32_t ___length1, const RuntimeMethod* method)
{
return (( Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D (*) (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D*, int32_t, int32_t, const RuntimeMethod*))Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_gshared_inline)(__this, ___start0, ___length1, method);
}
// System.ReadOnlySpan`1<T> System.Span`1<System.Char>::op_Implicit(System.Span`1<T>)
inline ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 Span_1_op_Implicit_mD65020B112814C67FED9F2C3DE2B0B78D4E2A486 (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___span0, const RuntimeMethod* method)
{
return (( ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 (*) (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D, const RuntimeMethod*))Span_1_op_Implicit_mD65020B112814C67FED9F2C3DE2B0B78D4E2A486_gshared)(___span0, method);
}
// System.String System.String::CreateString(System.ReadOnlySpan`1<System.Char>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_m1618CF9F1145C9832FC830A4BD6DD96A540012F8 (String_t* __this, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___value0, const RuntimeMethod* method) ;
// System.Int32 System.Runtime.CompilerServices.RuntimeHelpers::get_OffsetToStringData()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RuntimeHelpers_get_OffsetToStringData_mBBE58AEA702864FB006771F4600D1D99B1234460 (const RuntimeMethod* method) ;
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E (RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ___handle0, const RuntimeMethod* method) ;
// System.Void System.ThrowHelper::ThrowInvalidTypeWithPointersNotSupported(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowInvalidTypeWithPointersNotSupported_m6A58AD8706EDDB4CE9C309A6085249B6377C8CB5 (Type_t* ___targetType0, const RuntimeMethod* method) ;
// System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_m272CE1B3040BA89B2C478E2CF629670574F30353 (const RuntimeMethod* method) ;
// System.Void System.Span`1<System.Char>::.ctor(T&,System.Int32)
inline void Span_1__ctor_mC9BE2938B716B46BB6B9070B94DBE5CE814BC0E2_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, Il2CppChar* ___ptr0, int32_t ___length1, const RuntimeMethod* method)
{
(( void (*) (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D*, Il2CppChar*, int32_t, const RuntimeMethod*))Span_1__ctor_mC9BE2938B716B46BB6B9070B94DBE5CE814BC0E2_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
// Mono.X509PalImpl Mono.SystemCertificateProvider::GetX509Pal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86* SystemCertificateProvider_GetX509Pal_m25337E8316D705CEC31B70783EFE75F0F72256D4 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509PalImplMono_t2D1688733B64BBD2C1A1038CEC75A9097611B8B2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
X509PalImplMono_t2D1688733B64BBD2C1A1038CEC75A9097611B8B2* L_0 = (X509PalImplMono_t2D1688733B64BBD2C1A1038CEC75A9097611B8B2*)il2cpp_codegen_object_new(X509PalImplMono_t2D1688733B64BBD2C1A1038CEC75A9097611B8B2_il2cpp_TypeInfo_var);
NullCheck(L_0);
X509PalImplMono__ctor_m8DEF93E123E01393942BB5A18755A221C588DD47(L_0, NULL);
return L_0;
}
}
// System.Void Mono.SystemCertificateProvider::EnsureInitialized()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemCertificateProvider_EnsureInitialized_m5270DDA49FA6EA014CBA47A3AD13FB9A4C99B206 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
bool V_1 = false;
{
il2cpp_codegen_runtime_class_init_inline(SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD_il2cpp_TypeInfo_var);
RuntimeObject* L_0 = ((SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD_StaticFields*)il2cpp_codegen_static_fields_for(SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD_il2cpp_TypeInfo_var))->___syncRoot_2;
V_0 = L_0;
V_1 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_002c:
{// begin finally (depth: 1)
{
bool L_1 = V_1;
if (!L_1)
{
goto IL_0035;
}
}
{
RuntimeObject* L_2 = V_0;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_2, NULL);
}
IL_0035:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
RuntimeObject* L_3 = V_0;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_3, (&V_1), NULL);
il2cpp_codegen_runtime_class_init_inline(SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD_il2cpp_TypeInfo_var);
int32_t L_4;
L_4 = Interlocked_CompareExchange_m1B1A89142CF77793A6B396019B98265E6EE306FA((&((SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD_StaticFields*)il2cpp_codegen_static_fields_for(SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD_il2cpp_TypeInfo_var))->___initialized_0), 1, 0, NULL);
if (!L_4)
{
goto IL_0020_1;
}
}
{
goto IL_0036;
}
IL_0020_1:
{
il2cpp_codegen_runtime_class_init_inline(SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD_il2cpp_TypeInfo_var);
X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86* L_5;
L_5 = SystemCertificateProvider_GetX509Pal_m25337E8316D705CEC31B70783EFE75F0F72256D4(NULL);
((SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD_StaticFields*)il2cpp_codegen_static_fields_for(SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD_il2cpp_TypeInfo_var))->___x509pal_1 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&((SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD_StaticFields*)il2cpp_codegen_static_fields_for(SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD_il2cpp_TypeInfo_var))->___x509pal_1), (void*)L_5);
goto IL_0036;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0036:
{
return;
}
}
// Mono.X509PalImpl Mono.SystemCertificateProvider::get_X509Pal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86* SystemCertificateProvider_get_X509Pal_m0E8EA8BF5F1C65CA33C3C4E0FA723E93DFF74B97 (SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD_il2cpp_TypeInfo_var);
SystemCertificateProvider_EnsureInitialized_m5270DDA49FA6EA014CBA47A3AD13FB9A4C99B206(NULL);
X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86* L_0 = ((SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD_StaticFields*)il2cpp_codegen_static_fields_for(SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD_il2cpp_TypeInfo_var))->___x509pal_1;
return L_0;
}
}
// System.Security.Cryptography.X509Certificates.X509CertificateImpl Mono.SystemCertificateProvider::Import(System.Byte[],Mono.CertificateImportFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF* SystemCertificateProvider_Import_m3349082A12B7F5513069393B9EE77CF5264AB0FA (SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___data0, int32_t ___importFlags1, const RuntimeMethod* method)
{
X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF* V_0 = NULL;
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___data0;
if (!L_0)
{
goto IL_0007;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___data0;
NullCheck(L_1);
if ((((RuntimeArray*)L_1)->max_length))
{
goto IL_0009;
}
}
IL_0007:
{
return (X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF*)NULL;
}
IL_0009:
{
V_0 = (X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF*)NULL;
int32_t L_2 = ___importFlags1;
if (((int32_t)((int32_t)L_2&1)))
{
goto IL_0022;
}
}
{
X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86* L_3;
L_3 = SystemCertificateProvider_get_X509Pal_m0E8EA8BF5F1C65CA33C3C4E0FA723E93DFF74B97(__this, NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ___data0;
NullCheck(L_3);
X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF* L_5;
L_5 = VirtualFuncInvoker1< X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(4 /* System.Security.Cryptography.X509Certificates.X509CertificateImpl Mono.X509PalImpl::Import(System.Byte[]) */, L_3, L_4);
V_0 = L_5;
X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF* L_6 = V_0;
if (!L_6)
{
goto IL_0022;
}
}
{
X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF* L_7 = V_0;
return L_7;
}
IL_0022:
{
int32_t L_8 = ___importFlags1;
if (!((int32_t)((int32_t)L_8&2)))
{
goto IL_0029;
}
}
{
return (X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF*)NULL;
}
IL_0029:
{
X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86* L_9;
L_9 = SystemCertificateProvider_get_X509Pal_m0E8EA8BF5F1C65CA33C3C4E0FA723E93DFF74B97(__this, NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = ___data0;
NullCheck(L_9);
X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* L_11;
L_11 = X509PalImpl_ImportFallback_m7BF753657B715800F1F182A3B7198578D197DAC3(L_9, L_10, NULL);
return L_11;
}
}
// System.Security.Cryptography.X509Certificates.X509CertificateImpl Mono.SystemCertificateProvider::Mono.ISystemCertificateProvider.Import(System.Byte[],Microsoft.Win32.SafeHandles.SafePasswordHandle,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags,Mono.CertificateImportFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF* SystemCertificateProvider_Mono_ISystemCertificateProvider_Import_m4D2602C705772487B0FF370D6CB704324FDBE98F (SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___data0, SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463* ___password1, int32_t ___keyStorageFlags2, int32_t ___importFlags3, const RuntimeMethod* method)
{
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___data0;
SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463* L_1 = ___password1;
int32_t L_2 = ___keyStorageFlags2;
int32_t L_3 = ___importFlags3;
X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* L_4;
L_4 = SystemCertificateProvider_Import_m530888F3CEA00BE89B9AF47DAFCF03E319A5AD73(__this, L_0, L_1, L_2, L_3, NULL);
return L_4;
}
}
// System.Security.Cryptography.X509Certificates.X509Certificate2Impl Mono.SystemCertificateProvider::Import(System.Byte[],Microsoft.Win32.SafeHandles.SafePasswordHandle,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags,Mono.CertificateImportFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* SystemCertificateProvider_Import_m530888F3CEA00BE89B9AF47DAFCF03E319A5AD73 (SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___data0, SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463* ___password1, int32_t ___keyStorageFlags2, int32_t ___importFlags3, const RuntimeMethod* method)
{
X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* V_0 = NULL;
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___data0;
if (!L_0)
{
goto IL_0007;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___data0;
NullCheck(L_1);
if ((((RuntimeArray*)L_1)->max_length))
{
goto IL_0009;
}
}
IL_0007:
{
return (X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25*)NULL;
}
IL_0009:
{
V_0 = (X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25*)NULL;
int32_t L_2 = ___importFlags3;
if (((int32_t)((int32_t)L_2&1)))
{
goto IL_0025;
}
}
{
X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86* L_3;
L_3 = SystemCertificateProvider_get_X509Pal_m0E8EA8BF5F1C65CA33C3C4E0FA723E93DFF74B97(__this, NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ___data0;
SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463* L_5 = ___password1;
int32_t L_6 = ___keyStorageFlags2;
NullCheck(L_3);
X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* L_7;
L_7 = VirtualFuncInvoker3< X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463*, int32_t >::Invoke(5 /* System.Security.Cryptography.X509Certificates.X509Certificate2Impl Mono.X509PalImpl::Import(System.Byte[],Microsoft.Win32.SafeHandles.SafePasswordHandle,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags) */, L_3, L_4, L_5, L_6);
V_0 = L_7;
X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* L_8 = V_0;
if (!L_8)
{
goto IL_0025;
}
}
{
X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* L_9 = V_0;
return L_9;
}
IL_0025:
{
int32_t L_10 = ___importFlags3;
if (!((int32_t)((int32_t)L_10&2)))
{
goto IL_002d;
}
}
{
return (X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25*)NULL;
}
IL_002d:
{
X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86* L_11;
L_11 = SystemCertificateProvider_get_X509Pal_m0E8EA8BF5F1C65CA33C3C4E0FA723E93DFF74B97(__this, NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12 = ___data0;
SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463* L_13 = ___password1;
int32_t L_14 = ___keyStorageFlags2;
NullCheck(L_11);
X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* L_15;
L_15 = X509PalImpl_ImportFallback_mA21AA40BF7FE8E3E3F62ADBEBBBF415DC9BC588E(L_11, L_12, L_13, L_14, NULL);
return L_15;
}
}
// System.Security.Cryptography.X509Certificates.X509CertificateImpl Mono.SystemCertificateProvider::Mono.ISystemCertificateProvider.Import(System.Security.Cryptography.X509Certificates.X509Certificate,Mono.CertificateImportFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF* SystemCertificateProvider_Mono_ISystemCertificateProvider_Import_mD7F4BAB2B4498500CD48A645D674188BFC30F036 (SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD* __this, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___cert0, int32_t ___importFlags1, const RuntimeMethod* method)
{
{
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_0 = ___cert0;
int32_t L_1 = ___importFlags1;
X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* L_2;
L_2 = SystemCertificateProvider_Import_mC81F89F5BDFCF15698FDCEFAAEF6ACE1F6CB585C(__this, L_0, L_1, NULL);
return L_2;
}
}
// System.Security.Cryptography.X509Certificates.X509Certificate2Impl Mono.SystemCertificateProvider::Import(System.Security.Cryptography.X509Certificates.X509Certificate,Mono.CertificateImportFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* SystemCertificateProvider_Import_mC81F89F5BDFCF15698FDCEFAAEF6ACE1F6CB585C (SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD* __this, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___cert0, int32_t ___importFlags1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* V_0 = NULL;
{
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_0 = ___cert0;
NullCheck(L_0);
X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF* L_1;
L_1 = X509Certificate_get_Impl_m567BEB584A388821259EB9BBBB5B90B6182CC99D_inline(L_0, NULL);
if (L_1)
{
goto IL_000a;
}
}
{
return (X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25*)NULL;
}
IL_000a:
{
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_2 = ___cert0;
NullCheck(L_2);
X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF* L_3;
L_3 = X509Certificate_get_Impl_m567BEB584A388821259EB9BBBB5B90B6182CC99D_inline(L_2, NULL);
V_0 = ((X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25*)IsInstClass((RuntimeObject*)L_3, X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25_il2cpp_TypeInfo_var));
X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* L_4 = V_0;
if (!L_4)
{
goto IL_0025;
}
}
{
X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* L_5 = V_0;
NullCheck(L_5);
X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF* L_6;
L_6 = VirtualFuncInvoker0< X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF* >::Invoke(6 /* System.Security.Cryptography.X509Certificates.X509CertificateImpl System.Security.Cryptography.X509Certificates.X509CertificateImpl::Clone() */, L_5);
return ((X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25*)CastclassClass((RuntimeObject*)L_6, X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25_il2cpp_TypeInfo_var));
}
IL_0025:
{
int32_t L_7 = ___importFlags1;
if (((int32_t)((int32_t)L_7&1)))
{
goto IL_003c;
}
}
{
X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86* L_8;
L_8 = SystemCertificateProvider_get_X509Pal_m0E8EA8BF5F1C65CA33C3C4E0FA723E93DFF74B97(__this, NULL);
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_9 = ___cert0;
NullCheck(L_8);
X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* L_10;
L_10 = VirtualFuncInvoker1< X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25*, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* >::Invoke(6 /* System.Security.Cryptography.X509Certificates.X509Certificate2Impl Mono.X509PalImpl::Import(System.Security.Cryptography.X509Certificates.X509Certificate) */, L_8, L_9);
V_0 = L_10;
X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* L_11 = V_0;
if (!L_11)
{
goto IL_003c;
}
}
{
X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* L_12 = V_0;
return L_12;
}
IL_003c:
{
int32_t L_13 = ___importFlags1;
if (!((int32_t)((int32_t)L_13&2)))
{
goto IL_0043;
}
}
{
return (X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25*)NULL;
}
IL_0043:
{
X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86* L_14;
L_14 = SystemCertificateProvider_get_X509Pal_m0E8EA8BF5F1C65CA33C3C4E0FA723E93DFF74B97(__this, NULL);
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_15 = ___cert0;
NullCheck(L_15);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_16;
L_16 = VirtualFuncInvoker0< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(12 /* System.Byte[] System.Security.Cryptography.X509Certificates.X509Certificate::GetRawCertData() */, L_15);
NullCheck(L_14);
X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* L_17;
L_17 = X509PalImpl_ImportFallback_m7BF753657B715800F1F182A3B7198578D197DAC3(L_14, L_16, NULL);
return L_17;
}
}
// System.Void Mono.SystemCertificateProvider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemCertificateProvider__ctor_m28122065D2285B598B1F145BC122693E14F722AC (SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Void Mono.SystemCertificateProvider::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemCertificateProvider__cctor_m03BD266351742E571EA0605CB05A4842B1999803 (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*)&SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
NullCheck(L_0);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_0, NULL);
((SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD_StaticFields*)il2cpp_codegen_static_fields_for(SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD_il2cpp_TypeInfo_var))->___syncRoot_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD_StaticFields*)il2cpp_codegen_static_fields_for(SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD_il2cpp_TypeInfo_var))->___syncRoot_2), (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
// Mono.SystemDependencyProvider Mono.SystemDependencyProvider::get_Instance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261* SystemDependencyProvider_get_Instance_m410F141F466665CEBA34A72F26D78C77A8B66719 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261_il2cpp_TypeInfo_var);
SystemDependencyProvider_Initialize_mC10ED912B2EC028539CA83BE2BAE4EE1E237E835(NULL);
SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261* L_0 = ((SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261_StaticFields*)il2cpp_codegen_static_fields_for(SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261_il2cpp_TypeInfo_var))->___instance_0;
return L_0;
}
}
// System.Void Mono.SystemDependencyProvider::Initialize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemDependencyProvider_Initialize_mC10ED912B2EC028539CA83BE2BAE4EE1E237E835 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
bool V_1 = false;
{
il2cpp_codegen_runtime_class_init_inline(SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261_il2cpp_TypeInfo_var);
RuntimeObject* L_0 = ((SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261_StaticFields*)il2cpp_codegen_static_fields_for(SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261_il2cpp_TypeInfo_var))->___syncRoot_1;
V_0 = L_0;
V_1 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0025:
{// begin finally (depth: 1)
{
bool L_1 = V_1;
if (!L_1)
{
goto IL_002e;
}
}
{
RuntimeObject* L_2 = V_0;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_2, NULL);
}
IL_002e:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
RuntimeObject* L_3 = V_0;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_3, (&V_1), NULL);
il2cpp_codegen_runtime_class_init_inline(SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261_il2cpp_TypeInfo_var);
SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261* L_4 = ((SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261_StaticFields*)il2cpp_codegen_static_fields_for(SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261_il2cpp_TypeInfo_var))->___instance_0;
if (!L_4)
{
goto IL_0019_1;
}
}
{
goto IL_002f;
}
IL_0019_1:
{
SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261* L_5 = (SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261*)il2cpp_codegen_object_new(SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261_il2cpp_TypeInfo_var);
NullCheck(L_5);
SystemDependencyProvider__ctor_mB851EC1408E241AB573D319D5BFCC1E95CF40343(L_5, NULL);
il2cpp_codegen_runtime_class_init_inline(SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261_il2cpp_TypeInfo_var);
((SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261_StaticFields*)il2cpp_codegen_static_fields_for(SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261_il2cpp_TypeInfo_var))->___instance_0 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&((SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261_StaticFields*)il2cpp_codegen_static_fields_for(SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261_il2cpp_TypeInfo_var))->___instance_0), (void*)L_5);
goto IL_002f;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_002f:
{
return;
}
}
// Mono.ISystemCertificateProvider Mono.SystemDependencyProvider::Mono.ISystemDependencyProvider.get_CertificateProvider()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SystemDependencyProvider_Mono_ISystemDependencyProvider_get_CertificateProvider_mEEA1F11DB63C54CCFAE6EA976D5B349719FEACCF (SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261* __this, const RuntimeMethod* method)
{
{
SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD* L_0;
L_0 = SystemDependencyProvider_get_CertificateProvider_mEC19F34D14EB2B7BF5F8973DBC3BF3EAD5B1A19D_inline(__this, NULL);
return L_0;
}
}
// Mono.SystemCertificateProvider Mono.SystemDependencyProvider::get_CertificateProvider()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD* SystemDependencyProvider_get_CertificateProvider_mEC19F34D14EB2B7BF5F8973DBC3BF3EAD5B1A19D (SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261* __this, const RuntimeMethod* method)
{
{
SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD* L_0 = __this->___U3CCertificateProviderU3Ek__BackingField_2;
return L_0;
}
}
// Mono.X509PalImpl Mono.SystemDependencyProvider::get_X509Pal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86* SystemDependencyProvider_get_X509Pal_m4982FB6EE530F77FB076AD4D21A57BBEDCA8D961 (SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261* __this, const RuntimeMethod* method)
{
{
SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD* L_0;
L_0 = SystemDependencyProvider_get_CertificateProvider_mEC19F34D14EB2B7BF5F8973DBC3BF3EAD5B1A19D_inline(__this, NULL);
NullCheck(L_0);
X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86* L_1;
L_1 = SystemCertificateProvider_get_X509Pal_m0E8EA8BF5F1C65CA33C3C4E0FA723E93DFF74B97(L_0, NULL);
return L_1;
}
}
// System.Void Mono.SystemDependencyProvider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemDependencyProvider__ctor_mB851EC1408E241AB573D319D5BFCC1E95CF40343 (SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DependencyInjector_tB5CBF00D172A8E073EBC53D983F229EF86399C9F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD* L_0 = (SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD*)il2cpp_codegen_object_new(SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD_il2cpp_TypeInfo_var);
NullCheck(L_0);
SystemCertificateProvider__ctor_m28122065D2285B598B1F145BC122693E14F722AC(L_0, NULL);
__this->___U3CCertificateProviderU3Ek__BackingField_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CCertificateProviderU3Ek__BackingField_2), (void*)L_0);
il2cpp_codegen_runtime_class_init_inline(DependencyInjector_tB5CBF00D172A8E073EBC53D983F229EF86399C9F_il2cpp_TypeInfo_var);
DependencyInjector_Register_m3444B2EA82C8E7C7113BA46020950A80A22E4AF5(__this, NULL);
return;
}
}
// System.Void Mono.SystemDependencyProvider::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemDependencyProvider__cctor_mFFD9148E4D54BCAB5E5244CA21AE22F8032D4D5A (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*)&SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
NullCheck(L_0);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_0, NULL);
((SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261_StaticFields*)il2cpp_codegen_static_fields_for(SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261_il2cpp_TypeInfo_var))->___syncRoot_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261_StaticFields*)il2cpp_codegen_static_fields_for(SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261_il2cpp_TypeInfo_var))->___syncRoot_1), (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
// Mono.X509PalImpl Mono.X509Pal::get_Instance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86* X509Pal_get_Instance_mBA83FEDE77C97026665ED6DCDDBDC047CBA632C3 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261_il2cpp_TypeInfo_var);
SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261* L_0;
L_0 = SystemDependencyProvider_get_Instance_m410F141F466665CEBA34A72F26D78C77A8B66719(NULL);
NullCheck(L_0);
X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86* L_1;
L_1 = SystemDependencyProvider_get_X509Pal_m4982FB6EE530F77FB076AD4D21A57BBEDCA8D961(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.Security.Cryptography.X509Certificates.X509CertificateImpl Mono.X509PalImplMono::Import(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF* X509PalImplMono_Import_m72547BAC14066F54342B6D09539D358F6F0F045B (X509PalImplMono_t2D1688733B64BBD2C1A1038CEC75A9097611B8B2* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___data0, const RuntimeMethod* method)
{
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___data0;
X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* L_1;
L_1 = X509PalImpl_ImportFallback_m7BF753657B715800F1F182A3B7198578D197DAC3(__this, L_0, NULL);
return L_1;
}
}
// System.Security.Cryptography.X509Certificates.X509Certificate2Impl Mono.X509PalImplMono::Import(System.Byte[],Microsoft.Win32.SafeHandles.SafePasswordHandle,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* X509PalImplMono_Import_m3AC55B3BC7FEDCC4872F8D51A9229333470AA19E (X509PalImplMono_t2D1688733B64BBD2C1A1038CEC75A9097611B8B2* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___data0, SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463* ___password1, int32_t ___keyStorageFlags2, const RuntimeMethod* method)
{
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___data0;
SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463* L_1 = ___password1;
int32_t L_2 = ___keyStorageFlags2;
X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* L_3;
L_3 = X509PalImpl_ImportFallback_mA21AA40BF7FE8E3E3F62ADBEBBBF415DC9BC588E(__this, L_0, L_1, L_2, NULL);
return L_3;
}
}
// System.Security.Cryptography.X509Certificates.X509Certificate2Impl Mono.X509PalImplMono::Import(System.Security.Cryptography.X509Certificates.X509Certificate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* X509PalImplMono_Import_m152053C1A07898B4096D6E1537AFF88EE8AB9633 (X509PalImplMono_t2D1688733B64BBD2C1A1038CEC75A9097611B8B2* __this, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___cert0, const RuntimeMethod* method)
{
{
return (X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25*)NULL;
}
}
// System.Void Mono.X509PalImplMono::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509PalImplMono__ctor_m8DEF93E123E01393942BB5A18755A221C588DD47 (X509PalImplMono_t2D1688733B64BBD2C1A1038CEC75A9097611B8B2* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86_il2cpp_TypeInfo_var);
X509PalImpl__ctor_m29605E82202DAC5123F4B35D87719454190299C0(__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.Byte[] Mono.X509PalImpl::PEM(System.String,System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* X509PalImpl_PEM_m21975D897B5389B6BA20C629AAFF37691DEE76A2 (String_t* ___type0, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___data1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3A22B1A23BFA90B6648AA767270477E8532F4379);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4B955887CF5EB7352CC8F12E4ABBE8B4529E5A5E);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
int32_t V_2 = 0;
int32_t V_3 = 0;
{
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_0;
L_0 = Encoding_get_ASCII_mCC17A741582B0AB778D261452FD515EBD7297562(NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___data1;
NullCheck(L_0);
String_t* L_2;
L_2 = VirtualFuncInvoker1< String_t*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(35 /* System.String System.Text.Encoding::GetString(System.Byte[]) */, L_0, L_1);
String_t* L_3 = ___type0;
String_t* L_4;
L_4 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(_stringLiteral3A22B1A23BFA90B6648AA767270477E8532F4379, L_3, NULL);
V_0 = L_4;
String_t* L_5 = ___type0;
String_t* L_6;
L_6 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(_stringLiteral4B955887CF5EB7352CC8F12E4ABBE8B4529E5A5E, L_5, NULL);
V_1 = L_6;
String_t* L_7 = L_2;
String_t* L_8 = V_0;
NullCheck(L_7);
int32_t L_9;
L_9 = String_IndexOf_m69E9BDAFD93767C85A7FF861B453415D3B4A200F(L_7, L_8, NULL);
String_t* L_10 = V_0;
NullCheck(L_10);
int32_t L_11;
L_11 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_10, NULL);
V_2 = ((int32_t)il2cpp_codegen_add(L_9, L_11));
String_t* L_12 = L_7;
String_t* L_13 = V_1;
int32_t L_14 = V_2;
NullCheck(L_12);
int32_t L_15;
L_15 = String_IndexOf_mCBADAB35416ED6F5F733DF46CC86C23E5C9E5A56(L_12, L_13, L_14, NULL);
V_3 = L_15;
int32_t L_16 = V_2;
int32_t L_17 = V_3;
int32_t L_18 = V_2;
NullCheck(L_12);
String_t* L_19;
L_19 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_12, L_16, ((int32_t)il2cpp_codegen_subtract(L_17, L_18)), NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_20;
L_20 = Convert_FromBase64String_m421F8600CA5124E047E3D7C2BC1B653F67BC48A1(L_19, NULL);
return L_20;
}
}
// System.Byte[] Mono.X509PalImpl::ConvertData(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* X509PalImpl_ConvertData_mD638DA0765DA08BFD8FF87884A2BFCC9883131DF (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___data0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEB2CD4C6704ED17A9EC3675F0D53B6B9EC56DDAE);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___data0;
if (!L_0)
{
goto IL_0007;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___data0;
NullCheck(L_1);
if ((((RuntimeArray*)L_1)->max_length))
{
goto IL_0009;
}
}
IL_0007:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ___data0;
return L_2;
}
IL_0009:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = ___data0;
NullCheck(L_3);
int32_t L_4 = 0;
uint8_t L_5 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
if ((((int32_t)L_5) == ((int32_t)((int32_t)48))))
{
goto IL_0021;
}
}
try
{// begin try (depth: 1)
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = ___data0;
il2cpp_codegen_runtime_class_init_inline(X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86_il2cpp_TypeInfo_var);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7;
L_7 = X509PalImpl_PEM_m21975D897B5389B6BA20C629AAFF37691DEE76A2(_stringLiteralEB2CD4C6704ED17A9EC3675F0D53B6B9EC56DDAE, L_6, NULL);
V_0 = L_7;
goto IL_0023;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_001e;
}
throw e;
}
CATCH_001e:
{// begin catch(System.Object)
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0021;
}// end catch (depth: 1)
IL_0021:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = ___data0;
return L_8;
}
IL_0023:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = V_0;
return L_9;
}
}
// System.Security.Cryptography.X509Certificates.X509Certificate2Impl Mono.X509PalImpl::ImportFallback(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* X509PalImpl_ImportFallback_m7BF753657B715800F1F182A3B7198578D197DAC3 (X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___data0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Certificate2ImplMono_t4566261D31F143C8CD222DB687625E5246BFD240_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463* V_0 = NULL;
X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* V_1 = NULL;
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___data0;
il2cpp_codegen_runtime_class_init_inline(X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86_il2cpp_TypeInfo_var);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1;
L_1 = X509PalImpl_ConvertData_mD638DA0765DA08BFD8FF87884A2BFCC9883131DF(L_0, NULL);
___data0 = L_1;
SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463* L_2 = (SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463*)il2cpp_codegen_object_new(SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463_il2cpp_TypeInfo_var);
NullCheck(L_2);
SafePasswordHandle__ctor_m7B9E2FCDE3D3062399AC53BDF31F9098442D8309(L_2, (String_t*)NULL, NULL);
V_0 = L_2;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_001a:
{// begin finally (depth: 1)
{
SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463* L_3 = V_0;
if (!L_3)
{
goto IL_0023;
}
}
{
SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463* L_4 = V_0;
NullCheck(L_4);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_4);
}
IL_0023:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = ___data0;
SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463* L_6 = V_0;
X509Certificate2ImplMono_t4566261D31F143C8CD222DB687625E5246BFD240* L_7 = (X509Certificate2ImplMono_t4566261D31F143C8CD222DB687625E5246BFD240*)il2cpp_codegen_object_new(X509Certificate2ImplMono_t4566261D31F143C8CD222DB687625E5246BFD240_il2cpp_TypeInfo_var);
NullCheck(L_7);
X509Certificate2ImplMono__ctor_m1B2FB6BBB7558184F07C2E42ECE23C70075A9B7D(L_7, L_5, L_6, 0, NULL);
V_1 = L_7;
goto IL_0024;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0024:
{
X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* L_8 = V_1;
return L_8;
}
}
// System.Security.Cryptography.X509Certificates.X509Certificate2Impl Mono.X509PalImpl::ImportFallback(System.Byte[],Microsoft.Win32.SafeHandles.SafePasswordHandle,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* X509PalImpl_ImportFallback_mA21AA40BF7FE8E3E3F62ADBEBBBF415DC9BC588E (X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___data0, SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463* ___password1, int32_t ___keyStorageFlags2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Certificate2ImplMono_t4566261D31F143C8CD222DB687625E5246BFD240_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___data0;
SafePasswordHandle_t07A3BFCF046DFE44216ACE030F838C8AE2564463* L_1 = ___password1;
int32_t L_2 = ___keyStorageFlags2;
X509Certificate2ImplMono_t4566261D31F143C8CD222DB687625E5246BFD240* L_3 = (X509Certificate2ImplMono_t4566261D31F143C8CD222DB687625E5246BFD240*)il2cpp_codegen_object_new(X509Certificate2ImplMono_t4566261D31F143C8CD222DB687625E5246BFD240_il2cpp_TypeInfo_var);
NullCheck(L_3);
X509Certificate2ImplMono__ctor_m1B2FB6BBB7558184F07C2E42ECE23C70075A9B7D(L_3, L_0, L_1, L_2, NULL);
return L_3;
}
}
// System.Boolean Mono.X509PalImpl::get_SupportsLegacyBasicConstraintsExtension()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool X509PalImpl_get_SupportsLegacyBasicConstraintsExtension_mA7FF5FA4ABFF9B8A028FD3937636C6E4D7AE2F38 (X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Security.Cryptography.X509Certificates.X509ContentType Mono.X509PalImpl::GetCertContentType(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t X509PalImpl_GetCertContentType_m41DC755893135DB1ACF78832BDAB201C46AC6F99 (X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___rawData0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AuthenticodeDeformatter_tFD4A7B915DB17925F5BD1F9FA169DCF7C2CC81D2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral473BE997FD82CA373BC40BEC46E737A81D8B16EA);
s_Il2CppMethodInitialized = true;
}
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* V_0 = NULL;
int32_t V_1 = 0;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___rawData0;
if (!L_0)
{
goto IL_0007;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___rawData0;
NullCheck(L_1);
if ((((RuntimeArray*)L_1)->max_length))
{
goto IL_0012;
}
}
IL_0007:
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2F395A8D1CC82D12EB0DFF52CAD1AD2C5FEFABF5)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509PalImpl_GetCertContentType_m41DC755893135DB1ACF78832BDAB201C46AC6F99_RuntimeMethod_var)));
}
IL_0012:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = ___rawData0;
NullCheck(L_3);
int32_t L_4 = 0;
uint8_t L_5 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)48)))))
{
goto IL_00d6;
}
}
try
{// begin try (depth: 1)
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = ___rawData0;
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_7 = (ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F*)il2cpp_codegen_object_new(ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F_il2cpp_TypeInfo_var);
NullCheck(L_7);
ASN1__ctor_m950BFCCF44A987ACBA12142624AA222200EE503E(L_7, L_6, NULL);
V_0 = L_7;
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_8 = V_0;
NullCheck(L_8);
int32_t L_9;
L_9 = ASN1_get_Count_mBE45E73126FAD2694E9059CAC53B7AC9A5F60833(L_8, NULL);
if ((!(((uint32_t)L_9) == ((uint32_t)3))))
{
goto IL_0062_1;
}
}
{
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_10 = V_0;
NullCheck(L_10);
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_11;
L_11 = ASN1_get_Item_mF105DA24F3BE9FA3697229CF99B1602B736B647F(L_10, 0, NULL);
NullCheck(L_11);
uint8_t L_12;
L_12 = ASN1_get_Tag_m1984CF0DDF54424E61BA3650D93CBA0DCB58F232_inline(L_11, NULL);
if ((!(((uint32_t)L_12) == ((uint32_t)((int32_t)48)))))
{
goto IL_0062_1;
}
}
{
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_13 = V_0;
NullCheck(L_13);
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_14;
L_14 = ASN1_get_Item_mF105DA24F3BE9FA3697229CF99B1602B736B647F(L_13, 1, NULL);
NullCheck(L_14);
uint8_t L_15;
L_15 = ASN1_get_Tag_m1984CF0DDF54424E61BA3650D93CBA0DCB58F232_inline(L_14, NULL);
if ((!(((uint32_t)L_15) == ((uint32_t)((int32_t)48)))))
{
goto IL_0062_1;
}
}
{
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_16 = V_0;
NullCheck(L_16);
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_17;
L_17 = ASN1_get_Item_mF105DA24F3BE9FA3697229CF99B1602B736B647F(L_16, 2, NULL);
NullCheck(L_17);
uint8_t L_18;
L_18 = ASN1_get_Tag_m1984CF0DDF54424E61BA3650D93CBA0DCB58F232_inline(L_17, NULL);
if ((!(((uint32_t)L_18) == ((uint32_t)3))))
{
goto IL_0062_1;
}
}
{
V_1 = 1;
goto IL_0101;
}
IL_0062_1:
{
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_19 = V_0;
NullCheck(L_19);
int32_t L_20;
L_20 = ASN1_get_Count_mBE45E73126FAD2694E9059CAC53B7AC9A5F60833(L_19, NULL);
if ((!(((uint32_t)L_20) == ((uint32_t)3))))
{
goto IL_009e_1;
}
}
{
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_21 = V_0;
NullCheck(L_21);
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_22;
L_22 = ASN1_get_Item_mF105DA24F3BE9FA3697229CF99B1602B736B647F(L_21, 0, NULL);
NullCheck(L_22);
uint8_t L_23;
L_23 = ASN1_get_Tag_m1984CF0DDF54424E61BA3650D93CBA0DCB58F232_inline(L_22, NULL);
if ((!(((uint32_t)L_23) == ((uint32_t)2))))
{
goto IL_009e_1;
}
}
{
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_24 = V_0;
NullCheck(L_24);
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_25;
L_25 = ASN1_get_Item_mF105DA24F3BE9FA3697229CF99B1602B736B647F(L_24, 1, NULL);
NullCheck(L_25);
uint8_t L_26;
L_26 = ASN1_get_Tag_m1984CF0DDF54424E61BA3650D93CBA0DCB58F232_inline(L_25, NULL);
if ((!(((uint32_t)L_26) == ((uint32_t)((int32_t)48)))))
{
goto IL_009e_1;
}
}
{
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_27 = V_0;
NullCheck(L_27);
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_28;
L_28 = ASN1_get_Item_mF105DA24F3BE9FA3697229CF99B1602B736B647F(L_27, 2, NULL);
NullCheck(L_28);
uint8_t L_29;
L_29 = ASN1_get_Tag_m1984CF0DDF54424E61BA3650D93CBA0DCB58F232_inline(L_28, NULL);
if ((!(((uint32_t)L_29) == ((uint32_t)((int32_t)48)))))
{
goto IL_009e_1;
}
}
{
V_1 = 3;
goto IL_0101;
}
IL_009e_1:
{
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_30 = V_0;
NullCheck(L_30);
int32_t L_31;
L_31 = ASN1_get_Count_mBE45E73126FAD2694E9059CAC53B7AC9A5F60833(L_30, NULL);
if ((((int32_t)L_31) <= ((int32_t)0)))
{
goto IL_00cd_1;
}
}
{
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_32 = V_0;
NullCheck(L_32);
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_33;
L_33 = ASN1_get_Item_mF105DA24F3BE9FA3697229CF99B1602B736B647F(L_32, 0, NULL);
NullCheck(L_33);
uint8_t L_34;
L_34 = ASN1_get_Tag_m1984CF0DDF54424E61BA3650D93CBA0DCB58F232_inline(L_33, NULL);
if ((!(((uint32_t)L_34) == ((uint32_t)6))))
{
goto IL_00cd_1;
}
}
{
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_35 = V_0;
NullCheck(L_35);
ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* L_36;
L_36 = ASN1_get_Item_mF105DA24F3BE9FA3697229CF99B1602B736B647F(L_35, 0, NULL);
il2cpp_codegen_runtime_class_init_inline(X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86_il2cpp_TypeInfo_var);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_37 = ((X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86_StaticFields*)il2cpp_codegen_static_fields_for(X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86_il2cpp_TypeInfo_var))->___signedData_0;
NullCheck(L_36);
bool L_38;
L_38 = ASN1_CompareValue_m7397F4657555C6ACAF6622DE143C89E9E7593554(L_36, L_37, NULL);
if (!L_38)
{
goto IL_00cd_1;
}
}
{
V_1 = 5;
goto IL_0101;
}
IL_00cd_1:
{
V_1 = 0;
goto IL_0101;
}
}// 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_00d1;
}
throw e;
}
CATCH_00d1:
{// begin catch(System.Exception)
V_1 = 0;
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0101;
}// end catch (depth: 1)
IL_00d6:
{
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_39;
L_39 = Encoding_get_ASCII_mCC17A741582B0AB778D261452FD515EBD7297562(NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_40 = ___rawData0;
NullCheck(L_39);
String_t* L_41;
L_41 = VirtualFuncInvoker1< String_t*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(35 /* System.String System.Text.Encoding::GetString(System.Byte[]) */, L_39, L_40);
NullCheck(L_41);
int32_t L_42;
L_42 = String_IndexOf_m69E9BDAFD93767C85A7FF861B453415D3B4A200F(L_41, _stringLiteral473BE997FD82CA373BC40BEC46E737A81D8B16EA, NULL);
if ((((int32_t)L_42) < ((int32_t)0)))
{
goto IL_00f0;
}
}
{
return (int32_t)(1);
}
IL_00f0:
{
}
try
{// begin try (depth: 1)
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_43 = ___rawData0;
AuthenticodeDeformatter_tFD4A7B915DB17925F5BD1F9FA169DCF7C2CC81D2* L_44 = (AuthenticodeDeformatter_tFD4A7B915DB17925F5BD1F9FA169DCF7C2CC81D2*)il2cpp_codegen_object_new(AuthenticodeDeformatter_tFD4A7B915DB17925F5BD1F9FA169DCF7C2CC81D2_il2cpp_TypeInfo_var);
NullCheck(L_44);
AuthenticodeDeformatter__ctor_mE7D65775E1289E0DBB208034BE5EB40AB6469BA0(L_44, L_43, NULL);
V_1 = 6;
goto IL_0101;
}// 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_00fc;
}
throw e;
}
CATCH_00fc:
{// begin catch(System.Object)
V_1 = 0;
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0101;
}// end catch (depth: 1)
IL_0101:
{
int32_t L_45 = V_1;
return L_45;
}
}
// System.Void Mono.X509PalImpl::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509PalImpl__ctor_m29605E82202DAC5123F4B35D87719454190299C0 (X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Void Mono.X509PalImpl::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509PalImpl__cctor_mDA462E335386A1004AE32139C485AA0D6474DA27 (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*)&U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____27625E383C3A91E8B65BC745FF5D4048C82B883CCD293B07DED697BF82733811_4_FieldInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)((int32_t)9));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = L_0;
RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_2 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t56F624E1051A2E261613B6A81CA2333397F49CB3____27625E383C3A91E8B65BC745FF5D4048C82B883CCD293B07DED697BF82733811_4_FieldInfo_var) };
RuntimeHelpers_InitializeArray_mE10C3436BA703E4D9D41B3F8F365E4C34F9926EF((RuntimeArray*)L_1, L_2, NULL);
((X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86_StaticFields*)il2cpp_codegen_static_fields_for(X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86_il2cpp_TypeInfo_var))->___signedData_0 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&((X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86_StaticFields*)il2cpp_codegen_static_fields_for(X509PalImpl_tF6062DC7B58B15FE20029E03CB3642384FB80E86_il2cpp_TypeInfo_var))->___signedData_0), (void*)L_1);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Util.MonoPInvokeCallbackAttribute::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoPInvokeCallbackAttribute__ctor_m8B720CC4ADB295EF6F98ECB4B14AB5010CBC8C28 (MonoPInvokeCallbackAttribute_t19B253264BDE6F6CA02B9A7AE568D357B089EFA4* __this, Type_t* ___t0, const RuntimeMethod* method)
{
{
Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2(__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 Mono.Unity.CertHelper::AddCertificatesToNativeChain(Mono.Unity.UnityTls/unitytls_x509list*,System.Security.Cryptography.X509Certificates.X509CertificateCollection,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertHelper_AddCertificatesToNativeChain_m6A078F5FFEA16184F19AEEDD4F9C8E00F68BDD48 (unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___nativeCertificateChain0, X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* ___certificates1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
X509CertificateEnumerator_t6629E2BB0FB5D92B2EB502312B764686BAFDF0D9* V_0 = NULL;
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* V_1 = NULL;
RuntimeObject* V_2 = NULL;
{
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* L_0 = ___certificates1;
NullCheck(L_0);
X509CertificateEnumerator_t6629E2BB0FB5D92B2EB502312B764686BAFDF0D9* L_1;
L_1 = X509CertificateCollection_GetEnumerator_mBD26239EE292204789D87CA73DBA5C898C2F4F14(L_0, NULL);
V_0 = L_1;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0022:
{// begin finally (depth: 1)
{
X509CertificateEnumerator_t6629E2BB0FB5D92B2EB502312B764686BAFDF0D9* L_2 = V_0;
V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_2, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_3 = V_2;
if (!L_3)
{
goto IL_0032;
}
}
{
RuntimeObject* L_4 = V_2;
NullCheck(L_4);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_4);
}
IL_0032:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0018_1;
}
IL_0009_1:
{
X509CertificateEnumerator_t6629E2BB0FB5D92B2EB502312B764686BAFDF0D9* L_5 = V_0;
NullCheck(L_5);
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_6;
L_6 = X509CertificateEnumerator_get_Current_mF256C5D7194A99B5C567F6E62806C153DA8864F1(L_5, NULL);
V_1 = L_6;
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* L_7 = ___nativeCertificateChain0;
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_8 = V_1;
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* L_9 = ___errorState2;
CertHelper_AddCertificateToNativeChain_m04D6F01E00DF4D0C134704DF9403167E1878675A(L_7, L_8, L_9, NULL);
}
IL_0018_1:
{
X509CertificateEnumerator_t6629E2BB0FB5D92B2EB502312B764686BAFDF0D9* L_10 = V_0;
NullCheck(L_10);
bool L_11;
L_11 = X509CertificateEnumerator_MoveNext_m2DCBF7B544E0E410B90DF3FD96B473B11A37E8DA(L_10, NULL);
if (L_11)
{
goto IL_0009_1;
}
}
{
goto IL_0033;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0033:
{
return;
}
}
// System.Void Mono.Unity.CertHelper::AddCertificateToNativeChain(Mono.Unity.UnityTls/unitytls_x509list*,System.Security.Cryptography.X509Certificates.X509Certificate,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertHelper_AddCertificateToNativeChain_m04D6F01E00DF4D0C134704DF9403167E1878675A (unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___nativeCertificateChain0, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___certificate1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* V_1 = NULL;
uint8_t* V_2 = NULL;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_3 = NULL;
X509CertificateImplCollection_t9F73F6038DB8173EAFCD920EF434BF5B68FFB098* V_4 = NULL;
int32_t V_5 = 0;
{
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_0 = ___certificate1;
NullCheck(L_0);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1;
L_1 = VirtualFuncInvoker0< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(12 /* System.Byte[] System.Security.Cryptography.X509Certificates.X509Certificate::GetRawCertData() */, L_0);
V_0 = L_1;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = V_0;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = L_2;
V_3 = L_3;
if (!L_3)
{
goto IL_0011;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = V_3;
NullCheck(L_4);
if (((int32_t)(((RuntimeArray*)L_4)->max_length)))
{
goto IL_0016;
}
}
IL_0011:
{
V_2 = (uint8_t*)((uintptr_t)0);
goto IL_001f;
}
IL_0016:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = V_3;
NullCheck(L_5);
V_2 = (uint8_t*)((uintptr_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))));
}
IL_001f:
{
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_6;
L_6 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_6);
unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951* L_7 = L_6->___unitytls_x509list_append_der_13;
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* L_8 = ___nativeCertificateChain0;
uint8_t* L_9 = V_2;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = V_0;
NullCheck(L_10);
intptr_t L_11;
L_11 = IntPtr_op_Explicit_mB06D1B6CFBA72B5C55FBEC1BA3BC25958AB60EB1(((int32_t)(((RuntimeArray*)L_10)->max_length)), NULL);
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* L_12 = ___errorState2;
NullCheck(L_7);
unitytls_x509list_append_der_t_Invoke_m3D900F0F07C8747B9F046512DAC7579D0C7CD193_inline(L_7, L_8, L_9, L_11, L_12, NULL);
V_3 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL;
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_13 = ___certificate1;
NullCheck(L_13);
X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF* L_14;
L_14 = X509Certificate_get_Impl_m567BEB584A388821259EB9BBBB5B90B6182CC99D_inline(L_13, NULL);
V_1 = ((X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25*)IsInstClass((RuntimeObject*)L_14, X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25_il2cpp_TypeInfo_var));
X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* L_15 = V_1;
if (!L_15)
{
goto IL_008b;
}
}
{
X509Certificate2Impl_t9EC3180958225F2A99501C70603CE52BCD1DFD25* L_16 = V_1;
NullCheck(L_16);
X509CertificateImplCollection_t9F73F6038DB8173EAFCD920EF434BF5B68FFB098* L_17;
L_17 = VirtualFuncInvoker0< X509CertificateImplCollection_t9F73F6038DB8173EAFCD920EF434BF5B68FFB098* >::Invoke(28 /* System.Security.Cryptography.X509Certificates.X509CertificateImplCollection System.Security.Cryptography.X509Certificates.X509Certificate2Impl::get_IntermediateCertificates() */, L_16);
V_4 = L_17;
X509CertificateImplCollection_t9F73F6038DB8173EAFCD920EF434BF5B68FFB098* L_18 = V_4;
if (!L_18)
{
goto IL_008b;
}
}
{
X509CertificateImplCollection_t9F73F6038DB8173EAFCD920EF434BF5B68FFB098* L_19 = V_4;
NullCheck(L_19);
int32_t L_20;
L_20 = X509CertificateImplCollection_get_Count_mB81B621804D7FB640FDD4177610CEEDF0484378D(L_19, NULL);
if ((((int32_t)L_20) <= ((int32_t)0)))
{
goto IL_008b;
}
}
{
V_5 = 0;
goto IL_0080;
}
IL_0065:
{
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* L_21 = ___nativeCertificateChain0;
X509CertificateImplCollection_t9F73F6038DB8173EAFCD920EF434BF5B68FFB098* L_22 = V_4;
int32_t L_23 = V_5;
NullCheck(L_22);
X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF* L_24;
L_24 = X509CertificateImplCollection_get_Item_mA250EDFA1ACBE344A52C5CD818A6578CC07763A1(L_22, L_23, NULL);
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_25 = (X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4*)il2cpp_codegen_object_new(X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4_il2cpp_TypeInfo_var);
NullCheck(L_25);
X509Certificate__ctor_mC9377C026C89D0F8DBBBBBB060F786988E47FCAE(L_25, L_24, NULL);
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* L_26 = ___errorState2;
CertHelper_AddCertificateToNativeChain_m04D6F01E00DF4D0C134704DF9403167E1878675A(L_21, L_25, L_26, NULL);
int32_t L_27 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add(L_27, 1));
}
IL_0080:
{
int32_t L_28 = V_5;
X509CertificateImplCollection_t9F73F6038DB8173EAFCD920EF434BF5B68FFB098* L_29 = V_4;
NullCheck(L_29);
int32_t L_30;
L_30 = X509CertificateImplCollection_get_Count_mB81B621804D7FB640FDD4177610CEEDF0484378D(L_29, NULL);
if ((((int32_t)L_28) < ((int32_t)L_30)))
{
goto IL_0065;
}
}
IL_008b:
{
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 Mono.Unity.Debug::CheckAndThrow(Mono.Unity.UnityTls/unitytls_errorstate,System.String,Mono.Security.Interface.AlertDescription)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_CheckAndThrow_m0DC4C61C1A5FA2DF49E11420953CD3032843D59F (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 ___errorState0, String_t* ___context1, uint8_t ___defaultAlert2, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
{
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 L_0 = ___errorState0;
uint32_t L_1 = L_0.___code_1;
if (L_1)
{
goto IL_0009;
}
}
{
return;
}
IL_0009:
{
String_t* L_2 = ___context1;
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 L_3 = ___errorState0;
uint32_t L_4 = L_3.___code_1;
uint32_t L_5 = L_4;
RuntimeObject* L_6 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&unitytls_error_code_tFDFCC5EE8771438D311CAB28FC8D37025E5BD6BE_il2cpp_TypeInfo_var)), &L_5);
String_t* L_7;
L_7 = String_Format_m9499958F4B0BB6089C75760AB647AB3CA4D55806(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5DD947811BAB9B7A838C495330E7196D53D30F9F)), L_2, L_6, NULL);
V_0 = L_7;
uint8_t L_8 = ___defaultAlert2;
String_t* L_9 = V_0;
TlsException_tC2DD153B101F6116975F36613D7F7C009C5664E3* L_10 = (TlsException_tC2DD153B101F6116975F36613D7F7C009C5664E3*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TlsException_tC2DD153B101F6116975F36613D7F7C009C5664E3_il2cpp_TypeInfo_var)));
NullCheck(L_10);
TlsException__ctor_m4E03D70F9BCA4C0CA737720A43ABAB696CEA6209(L_10, L_8, L_9, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_CheckAndThrow_m0DC4C61C1A5FA2DF49E11420953CD3032843D59F_RuntimeMethod_var)));
}
}
// System.Void Mono.Unity.Debug::CheckAndThrow(Mono.Unity.UnityTls/unitytls_errorstate,Mono.Unity.UnityTls/unitytls_x509verify_result,System.String,Mono.Security.Interface.AlertDescription)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_CheckAndThrow_m47BE0492786EEE30351AF6662609556CABAB0A80 (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 ___errorState0, uint32_t ___verifyResult1, String_t* ___context2, uint8_t ___defaultAlert3, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
{
uint32_t L_0 = ___verifyResult1;
if (L_0)
{
goto IL_000c;
}
}
{
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 L_1 = ___errorState0;
String_t* L_2 = ___context2;
uint8_t L_3 = ___defaultAlert3;
Debug_CheckAndThrow_m0DC4C61C1A5FA2DF49E11420953CD3032843D59F(L_1, L_2, L_3, NULL);
return;
}
IL_000c:
{
uint32_t L_4 = ___verifyResult1;
uint8_t L_5 = ___defaultAlert3;
uint8_t L_6;
L_6 = UnityTlsConversions_VerifyResultToAlertDescription_m23B95B4CEFBE8FB8329DF4A53E744F9592C40DA6(L_4, L_5, NULL);
String_t* L_7 = ___context2;
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 L_8 = ___errorState0;
uint32_t L_9 = L_8.___code_1;
uint32_t L_10 = L_9;
RuntimeObject* L_11 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&unitytls_error_code_tFDFCC5EE8771438D311CAB28FC8D37025E5BD6BE_il2cpp_TypeInfo_var)), &L_10);
uint32_t L_12 = ___verifyResult1;
uint32_t L_13 = L_12;
RuntimeObject* L_14 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&unitytls_x509verify_result_tBD0B93AE208F14C2C6CD925F0702A269BFE66FF0_il2cpp_TypeInfo_var)), &L_13);
String_t* L_15;
L_15 = String_Format_m76BF8F3A6AD789E38B708848A2688D400AAC250A(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA101A7F7136CB2500108D59D8CC97297A1A72750)), L_7, L_11, L_14, NULL);
V_0 = L_15;
String_t* L_16 = V_0;
TlsException_tC2DD153B101F6116975F36613D7F7C009C5664E3* L_17 = (TlsException_tC2DD153B101F6116975F36613D7F7C009C5664E3*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TlsException_tC2DD153B101F6116975F36613D7F7C009C5664E3_il2cpp_TypeInfo_var)));
NullCheck(L_17);
TlsException__ctor_m4E03D70F9BCA4C0CA737720A43ABAB696CEA6209(L_17, L_6, L_16, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_CheckAndThrow_m47BE0492786EEE30351AF6662609556CABAB0A80_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.IntPtr Mono.Unity.UnityTls::GetUnityTlsInterface()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t UnityTls_GetUnityTlsInterface_m47FB014BA17E899E2AE904DE3F59A84763D924F0 (const RuntimeMethod* method)
{
typedef intptr_t (*UnityTls_GetUnityTlsInterface_m47FB014BA17E899E2AE904DE3F59A84763D924F0_ftn) ();
using namespace il2cpp::icalls;
return ((UnityTls_GetUnityTlsInterface_m47FB014BA17E899E2AE904DE3F59A84763D924F0_ftn)mscorlib::Mono::Unity::UnityTls::GetUnityTlsInterface) ();
}
// System.Boolean Mono.Unity.UnityTls::get_IsSupported()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityTls_get_IsSupported_m7A43EE578D088D942479C11C7A1718432ED1F048 (const RuntimeMethod* method)
{
{
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_0;
L_0 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
return (bool)((!(((RuntimeObject*)(unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
}
}
// Mono.Unity.UnityTls/unitytls_interface_struct Mono.Unity.UnityTls::get_NativeInterface()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B (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*)&Marshal_PtrToStructure_Tisunitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED_m02DB8D53F26DC4B79E1F284A53103DEE72B961A0_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Marshal_tD976A56A90263C3CE2B780D4B1CADADE2E70B4A7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityTls_t71011C0BD4A30AEBAA7ABCA771FA604C31970F85_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
intptr_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_0 = ((UnityTls_t71011C0BD4A30AEBAA7ABCA771FA604C31970F85_StaticFields*)il2cpp_codegen_static_fields_for(UnityTls_t71011C0BD4A30AEBAA7ABCA771FA604C31970F85_il2cpp_TypeInfo_var))->___marshalledInterface_0;
if (L_0)
{
goto IL_0027;
}
}
{
intptr_t L_1;
L_1 = UnityTls_GetUnityTlsInterface_m47FB014BA17E899E2AE904DE3F59A84763D924F0(NULL);
V_0 = L_1;
intptr_t L_2 = V_0;
bool L_3;
L_3 = IntPtr_op_Equality_m73759B51FE326460AC87A0E386480226EF2FABED(L_2, (0), NULL);
if (!L_3)
{
goto IL_001c;
}
}
{
return (unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED*)NULL;
}
IL_001c:
{
intptr_t L_4 = V_0;
il2cpp_codegen_runtime_class_init_inline(Marshal_tD976A56A90263C3CE2B780D4B1CADADE2E70B4A7_il2cpp_TypeInfo_var);
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_5;
L_5 = Marshal_PtrToStructure_Tisunitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED_m02DB8D53F26DC4B79E1F284A53103DEE72B961A0(L_4, Marshal_PtrToStructure_Tisunitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED_m02DB8D53F26DC4B79E1F284A53103DEE72B961A0_RuntimeMethod_var);
((UnityTls_t71011C0BD4A30AEBAA7ABCA771FA604C31970F85_StaticFields*)il2cpp_codegen_static_fields_for(UnityTls_t71011C0BD4A30AEBAA7ABCA771FA604C31970F85_il2cpp_TypeInfo_var))->___marshalledInterface_0 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&((UnityTls_t71011C0BD4A30AEBAA7ABCA771FA604C31970F85_StaticFields*)il2cpp_codegen_static_fields_for(UnityTls_t71011C0BD4A30AEBAA7ABCA771FA604C31970F85_il2cpp_TypeInfo_var))->___marshalledInterface_0), (void*)L_5);
}
IL_0027:
{
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_6 = ((UnityTls_t71011C0BD4A30AEBAA7ABCA771FA604C31970F85_StaticFields*)il2cpp_codegen_static_fields_for(UnityTls_t71011C0BD4A30AEBAA7ABCA771FA604C31970F85_il2cpp_TypeInfo_var))->___marshalledInterface_0;
return L_6;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#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
uint32_t unitytls_x509verify_callback_Invoke_mB53E808E78AE5BD02CECCA0BE198295ECAB83B9A_Multicast(unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* __this, void* ___userData0, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 ___cert1, uint32_t ___result2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, 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 uint32_t (*FunctionPointerType) (unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* __this, void* ___userData0, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 ___cert1, uint32_t ___result2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method);
uint32_t retVal = 0;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* currentDelegate = reinterpret_cast<unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09*>(delegatesToInvoke[i]);
retVal = ((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___userData0, ___cert1, ___result2, ___errorState3, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
return retVal;
}
uint32_t unitytls_x509verify_callback_Invoke_mB53E808E78AE5BD02CECCA0BE198295ECAB83B9A_Open(unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* __this, void* ___userData0, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 ___cert1, uint32_t ___result2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef uint32_t (*FunctionPointerType) (void*, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333, uint32_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(___userData0, ___cert1, ___result2, ___errorState3, method);
}
uint32_t unitytls_x509verify_callback_Invoke_mB53E808E78AE5BD02CECCA0BE198295ECAB83B9A_Closed(unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* __this, void* ___userData0, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 ___cert1, uint32_t ___result2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef uint32_t (*FunctionPointerType) (RuntimeObject*, void*, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333, uint32_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___userData0, ___cert1, ___result2, ___errorState3, method);
}
uint32_t unitytls_x509verify_callback_Invoke_mB53E808E78AE5BD02CECCA0BE198295ECAB83B9A_OpenStaticInvoker(unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* __this, void* ___userData0, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 ___cert1, uint32_t ___result2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
return InvokerFuncInvoker4< uint32_t, void*, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333, uint32_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, ___userData0, ___cert1, ___result2, ___errorState3);
}
uint32_t unitytls_x509verify_callback_Invoke_mB53E808E78AE5BD02CECCA0BE198295ECAB83B9A_ClosedStaticInvoker(unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* __this, void* ___userData0, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 ___cert1, uint32_t ___result2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
return InvokerFuncInvoker5< uint32_t, RuntimeObject*, void*, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333, uint32_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___userData0, ___cert1, ___result2, ___errorState3);
}
IL2CPP_EXTERN_C uint32_t DelegatePInvokeWrapper_unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09 (unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* __this, void* ___userData0, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 ___cert1, uint32_t ___result2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef uint32_t (CDECL *PInvokeFunc)(void*, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333, uint32_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Native function invocation
uint32_t returnValue = il2cppPInvokeFunc(___userData0, ___cert1, ___result2, ___errorState3);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_x509verify_callback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_x509verify_callback__ctor_mEDC6857514FD696562638B3F1DFE959920D1EB26 (unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* __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 == 4;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509verify_callback_Invoke_mB53E808E78AE5BD02CECCA0BE198295ECAB83B9A_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509verify_callback_Invoke_mB53E808E78AE5BD02CECCA0BE198295ECAB83B9A_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509verify_callback_Invoke_mB53E808E78AE5BD02CECCA0BE198295ECAB83B9A_Open;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509verify_callback_Invoke_mB53E808E78AE5BD02CECCA0BE198295ECAB83B9A_Closed;
}
else
{
bool isOpen = methodCount == 3;
if (isOpen)
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509verify_callback_Invoke_mB53E808E78AE5BD02CECCA0BE198295ECAB83B9A_Open;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509verify_callback_Invoke_mB53E808E78AE5BD02CECCA0BE198295ECAB83B9A_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&unitytls_x509verify_callback_Invoke_mB53E808E78AE5BD02CECCA0BE198295ECAB83B9A_Multicast;
}
// Mono.Unity.UnityTls/unitytls_x509verify_result Mono.Unity.UnityTls/unitytls_x509verify_callback::Invoke(System.Void*,Mono.Unity.UnityTls/unitytls_x509_ref,Mono.Unity.UnityTls/unitytls_x509verify_result,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t unitytls_x509verify_callback_Invoke_mB53E808E78AE5BD02CECCA0BE198295ECAB83B9A (unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* __this, void* ___userData0, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 ___cert1, uint32_t ___result2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef uint32_t (*FunctionPointerType) (unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* __this, void* ___userData0, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 ___cert1, uint32_t ___result2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___userData0, ___cert1, ___result2, ___errorState3, 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
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
intptr_t unitytls_tlsctx_write_callback_Invoke_mF1F1D27A9BE14950A905685370EDAE5EAB051712_Multicast(unitytls_tlsctx_write_callback_t5D4B64AD846D04E819A49689F7EAA47365636611* __this, void* ___userData0, uint8_t* ___data1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, 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 intptr_t (*FunctionPointerType) (unitytls_tlsctx_write_callback_t5D4B64AD846D04E819A49689F7EAA47365636611* __this, void* ___userData0, uint8_t* ___data1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method);
intptr_t retVal;
memset((&retVal), 0, sizeof(retVal));
for (il2cpp_array_size_t i = 0; i < length; i++)
{
unitytls_tlsctx_write_callback_t5D4B64AD846D04E819A49689F7EAA47365636611* currentDelegate = reinterpret_cast<unitytls_tlsctx_write_callback_t5D4B64AD846D04E819A49689F7EAA47365636611*>(delegatesToInvoke[i]);
retVal = ((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___userData0, ___data1, ___bufferLen2, ___errorState3, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
return retVal;
}
intptr_t unitytls_tlsctx_write_callback_Invoke_mF1F1D27A9BE14950A905685370EDAE5EAB051712_Open(unitytls_tlsctx_write_callback_t5D4B64AD846D04E819A49689F7EAA47365636611* __this, void* ___userData0, uint8_t* ___data1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef intptr_t (*FunctionPointerType) (void*, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(___userData0, ___data1, ___bufferLen2, ___errorState3, method);
}
intptr_t unitytls_tlsctx_write_callback_Invoke_mF1F1D27A9BE14950A905685370EDAE5EAB051712_Closed(unitytls_tlsctx_write_callback_t5D4B64AD846D04E819A49689F7EAA47365636611* __this, void* ___userData0, uint8_t* ___data1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef intptr_t (*FunctionPointerType) (RuntimeObject*, void*, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___userData0, ___data1, ___bufferLen2, ___errorState3, method);
}
intptr_t unitytls_tlsctx_write_callback_Invoke_mF1F1D27A9BE14950A905685370EDAE5EAB051712_OpenStaticInvoker(unitytls_tlsctx_write_callback_t5D4B64AD846D04E819A49689F7EAA47365636611* __this, void* ___userData0, uint8_t* ___data1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
return InvokerFuncInvoker4< intptr_t, void*, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, ___userData0, ___data1, ___bufferLen2, ___errorState3);
}
intptr_t unitytls_tlsctx_write_callback_Invoke_mF1F1D27A9BE14950A905685370EDAE5EAB051712_ClosedStaticInvoker(unitytls_tlsctx_write_callback_t5D4B64AD846D04E819A49689F7EAA47365636611* __this, void* ___userData0, uint8_t* ___data1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
return InvokerFuncInvoker5< intptr_t, RuntimeObject*, void*, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___userData0, ___data1, ___bufferLen2, ___errorState3);
}
IL2CPP_EXTERN_C intptr_t DelegatePInvokeWrapper_unitytls_tlsctx_write_callback_t5D4B64AD846D04E819A49689F7EAA47365636611 (unitytls_tlsctx_write_callback_t5D4B64AD846D04E819A49689F7EAA47365636611* __this, void* ___userData0, uint8_t* ___data1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef intptr_t (CDECL *PInvokeFunc)(void*, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Native function invocation
intptr_t returnValue = il2cppPInvokeFunc(___userData0, ___data1, ___bufferLen2, ___errorState3);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_tlsctx_write_callback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_tlsctx_write_callback__ctor_m1A216E476EA91B415C0FD89765E6560410A7F7F5 (unitytls_tlsctx_write_callback_t5D4B64AD846D04E819A49689F7EAA47365636611* __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 == 4;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_write_callback_Invoke_mF1F1D27A9BE14950A905685370EDAE5EAB051712_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_write_callback_Invoke_mF1F1D27A9BE14950A905685370EDAE5EAB051712_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_write_callback_Invoke_mF1F1D27A9BE14950A905685370EDAE5EAB051712_Open;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_write_callback_Invoke_mF1F1D27A9BE14950A905685370EDAE5EAB051712_Closed;
}
else
{
bool isOpen = methodCount == 3;
if (isOpen)
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_write_callback_Invoke_mF1F1D27A9BE14950A905685370EDAE5EAB051712_Open;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_write_callback_Invoke_mF1F1D27A9BE14950A905685370EDAE5EAB051712_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&unitytls_tlsctx_write_callback_Invoke_mF1F1D27A9BE14950A905685370EDAE5EAB051712_Multicast;
}
// System.IntPtr Mono.Unity.UnityTls/unitytls_tlsctx_write_callback::Invoke(System.Void*,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t unitytls_tlsctx_write_callback_Invoke_mF1F1D27A9BE14950A905685370EDAE5EAB051712 (unitytls_tlsctx_write_callback_t5D4B64AD846D04E819A49689F7EAA47365636611* __this, void* ___userData0, uint8_t* ___data1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef intptr_t (*FunctionPointerType) (unitytls_tlsctx_write_callback_t5D4B64AD846D04E819A49689F7EAA47365636611* __this, void* ___userData0, uint8_t* ___data1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___userData0, ___data1, ___bufferLen2, ___errorState3, 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
intptr_t unitytls_tlsctx_read_callback_Invoke_m0B21AFD4EACBDBEC6EEFBEB61E142051F338194B_Multicast(unitytls_tlsctx_read_callback_tDBE877327789CABE940C2A724EC9A5D142318851* __this, void* ___userData0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, 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 intptr_t (*FunctionPointerType) (unitytls_tlsctx_read_callback_tDBE877327789CABE940C2A724EC9A5D142318851* __this, void* ___userData0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method);
intptr_t retVal;
memset((&retVal), 0, sizeof(retVal));
for (il2cpp_array_size_t i = 0; i < length; i++)
{
unitytls_tlsctx_read_callback_tDBE877327789CABE940C2A724EC9A5D142318851* currentDelegate = reinterpret_cast<unitytls_tlsctx_read_callback_tDBE877327789CABE940C2A724EC9A5D142318851*>(delegatesToInvoke[i]);
retVal = ((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___userData0, ___buffer1, ___bufferLen2, ___errorState3, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
return retVal;
}
intptr_t unitytls_tlsctx_read_callback_Invoke_m0B21AFD4EACBDBEC6EEFBEB61E142051F338194B_Open(unitytls_tlsctx_read_callback_tDBE877327789CABE940C2A724EC9A5D142318851* __this, void* ___userData0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef intptr_t (*FunctionPointerType) (void*, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(___userData0, ___buffer1, ___bufferLen2, ___errorState3, method);
}
intptr_t unitytls_tlsctx_read_callback_Invoke_m0B21AFD4EACBDBEC6EEFBEB61E142051F338194B_Closed(unitytls_tlsctx_read_callback_tDBE877327789CABE940C2A724EC9A5D142318851* __this, void* ___userData0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef intptr_t (*FunctionPointerType) (RuntimeObject*, void*, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___userData0, ___buffer1, ___bufferLen2, ___errorState3, method);
}
intptr_t unitytls_tlsctx_read_callback_Invoke_m0B21AFD4EACBDBEC6EEFBEB61E142051F338194B_OpenStaticInvoker(unitytls_tlsctx_read_callback_tDBE877327789CABE940C2A724EC9A5D142318851* __this, void* ___userData0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
return InvokerFuncInvoker4< intptr_t, void*, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, ___userData0, ___buffer1, ___bufferLen2, ___errorState3);
}
intptr_t unitytls_tlsctx_read_callback_Invoke_m0B21AFD4EACBDBEC6EEFBEB61E142051F338194B_ClosedStaticInvoker(unitytls_tlsctx_read_callback_tDBE877327789CABE940C2A724EC9A5D142318851* __this, void* ___userData0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
return InvokerFuncInvoker5< intptr_t, RuntimeObject*, void*, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___userData0, ___buffer1, ___bufferLen2, ___errorState3);
}
IL2CPP_EXTERN_C intptr_t DelegatePInvokeWrapper_unitytls_tlsctx_read_callback_tDBE877327789CABE940C2A724EC9A5D142318851 (unitytls_tlsctx_read_callback_tDBE877327789CABE940C2A724EC9A5D142318851* __this, void* ___userData0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef intptr_t (CDECL *PInvokeFunc)(void*, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Native function invocation
intptr_t returnValue = il2cppPInvokeFunc(___userData0, ___buffer1, ___bufferLen2, ___errorState3);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_tlsctx_read_callback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_tlsctx_read_callback__ctor_mEAC57775C6AB86A2E9E6DDC440E27C845BFAA4C0 (unitytls_tlsctx_read_callback_tDBE877327789CABE940C2A724EC9A5D142318851* __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 == 4;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_read_callback_Invoke_m0B21AFD4EACBDBEC6EEFBEB61E142051F338194B_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_read_callback_Invoke_m0B21AFD4EACBDBEC6EEFBEB61E142051F338194B_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_read_callback_Invoke_m0B21AFD4EACBDBEC6EEFBEB61E142051F338194B_Open;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_read_callback_Invoke_m0B21AFD4EACBDBEC6EEFBEB61E142051F338194B_Closed;
}
else
{
bool isOpen = methodCount == 3;
if (isOpen)
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_read_callback_Invoke_m0B21AFD4EACBDBEC6EEFBEB61E142051F338194B_Open;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_read_callback_Invoke_m0B21AFD4EACBDBEC6EEFBEB61E142051F338194B_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&unitytls_tlsctx_read_callback_Invoke_m0B21AFD4EACBDBEC6EEFBEB61E142051F338194B_Multicast;
}
// System.IntPtr Mono.Unity.UnityTls/unitytls_tlsctx_read_callback::Invoke(System.Void*,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t unitytls_tlsctx_read_callback_Invoke_m0B21AFD4EACBDBEC6EEFBEB61E142051F338194B (unitytls_tlsctx_read_callback_tDBE877327789CABE940C2A724EC9A5D142318851* __this, void* ___userData0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef intptr_t (*FunctionPointerType) (unitytls_tlsctx_read_callback_tDBE877327789CABE940C2A724EC9A5D142318851* __this, void* ___userData0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___userData0, ___buffer1, ___bufferLen2, ___errorState3, 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
void unitytls_tlsctx_trace_callback_Invoke_m9511E6D873C0FFE4EBDA45E52CA47228A483A01F_Multicast(unitytls_tlsctx_trace_callback_tAC1169E423F6EBDA60CDD5D33E1795A8811E0BE6* __this, void* ___userData0, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx1, uint8_t* ___traceMessage2, intptr_t ___traceMessageLen3, 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) (unitytls_tlsctx_trace_callback_tAC1169E423F6EBDA60CDD5D33E1795A8811E0BE6* __this, void* ___userData0, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx1, uint8_t* ___traceMessage2, intptr_t ___traceMessageLen3, const RuntimeMethod* method);
for (il2cpp_array_size_t i = 0; i < length; i++)
{
unitytls_tlsctx_trace_callback_tAC1169E423F6EBDA60CDD5D33E1795A8811E0BE6* currentDelegate = reinterpret_cast<unitytls_tlsctx_trace_callback_tAC1169E423F6EBDA60CDD5D33E1795A8811E0BE6*>(delegatesToInvoke[i]);
((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___userData0, ___ctx1, ___traceMessage2, ___traceMessageLen3, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
}
void unitytls_tlsctx_trace_callback_Invoke_m9511E6D873C0FFE4EBDA45E52CA47228A483A01F_Open(unitytls_tlsctx_trace_callback_tAC1169E423F6EBDA60CDD5D33E1795A8811E0BE6* __this, void* ___userData0, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx1, uint8_t* ___traceMessage2, intptr_t ___traceMessageLen3, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (void*, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, uint8_t*, intptr_t, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(___userData0, ___ctx1, ___traceMessage2, ___traceMessageLen3, method);
}
void unitytls_tlsctx_trace_callback_Invoke_m9511E6D873C0FFE4EBDA45E52CA47228A483A01F_Closed(unitytls_tlsctx_trace_callback_tAC1169E423F6EBDA60CDD5D33E1795A8811E0BE6* __this, void* ___userData0, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx1, uint8_t* ___traceMessage2, intptr_t ___traceMessageLen3, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, void*, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, uint8_t*, intptr_t, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___userData0, ___ctx1, ___traceMessage2, ___traceMessageLen3, method);
}
void unitytls_tlsctx_trace_callback_Invoke_m9511E6D873C0FFE4EBDA45E52CA47228A483A01F_OpenStaticInvoker(unitytls_tlsctx_trace_callback_tAC1169E423F6EBDA60CDD5D33E1795A8811E0BE6* __this, void* ___userData0, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx1, uint8_t* ___traceMessage2, intptr_t ___traceMessageLen3, const RuntimeMethod* method)
{
InvokerActionInvoker4< void*, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, uint8_t*, intptr_t >::Invoke(__this->___method_ptr_0, method, NULL, ___userData0, ___ctx1, ___traceMessage2, ___traceMessageLen3);
}
void unitytls_tlsctx_trace_callback_Invoke_m9511E6D873C0FFE4EBDA45E52CA47228A483A01F_ClosedStaticInvoker(unitytls_tlsctx_trace_callback_tAC1169E423F6EBDA60CDD5D33E1795A8811E0BE6* __this, void* ___userData0, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx1, uint8_t* ___traceMessage2, intptr_t ___traceMessageLen3, const RuntimeMethod* method)
{
InvokerActionInvoker5< RuntimeObject*, void*, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, uint8_t*, intptr_t >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___userData0, ___ctx1, ___traceMessage2, ___traceMessageLen3);
}
IL2CPP_EXTERN_C void DelegatePInvokeWrapper_unitytls_tlsctx_trace_callback_tAC1169E423F6EBDA60CDD5D33E1795A8811E0BE6 (unitytls_tlsctx_trace_callback_tAC1169E423F6EBDA60CDD5D33E1795A8811E0BE6* __this, void* ___userData0, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx1, uint8_t* ___traceMessage2, intptr_t ___traceMessageLen3, const RuntimeMethod* method)
{
typedef void (CDECL *PInvokeFunc)(void*, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, uint8_t*, intptr_t);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Native function invocation
il2cppPInvokeFunc(___userData0, ___ctx1, ___traceMessage2, ___traceMessageLen3);
}
// System.Void Mono.Unity.UnityTls/unitytls_tlsctx_trace_callback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_tlsctx_trace_callback__ctor_mB9CC97640B55911851D544F3F85CAFB5B85B647A (unitytls_tlsctx_trace_callback_tAC1169E423F6EBDA60CDD5D33E1795A8811E0BE6* __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 == 4;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_trace_callback_Invoke_m9511E6D873C0FFE4EBDA45E52CA47228A483A01F_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_trace_callback_Invoke_m9511E6D873C0FFE4EBDA45E52CA47228A483A01F_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_trace_callback_Invoke_m9511E6D873C0FFE4EBDA45E52CA47228A483A01F_Open;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_trace_callback_Invoke_m9511E6D873C0FFE4EBDA45E52CA47228A483A01F_Closed;
}
else
{
bool isOpen = methodCount == 3;
if (isOpen)
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_trace_callback_Invoke_m9511E6D873C0FFE4EBDA45E52CA47228A483A01F_Open;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_trace_callback_Invoke_m9511E6D873C0FFE4EBDA45E52CA47228A483A01F_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&unitytls_tlsctx_trace_callback_Invoke_m9511E6D873C0FFE4EBDA45E52CA47228A483A01F_Multicast;
}
// System.Void Mono.Unity.UnityTls/unitytls_tlsctx_trace_callback::Invoke(System.Void*,Mono.Unity.UnityTls/unitytls_tlsctx*,System.Byte*,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_tlsctx_trace_callback_Invoke_m9511E6D873C0FFE4EBDA45E52CA47228A483A01F (unitytls_tlsctx_trace_callback_tAC1169E423F6EBDA60CDD5D33E1795A8811E0BE6* __this, void* ___userData0, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx1, uint8_t* ___traceMessage2, intptr_t ___traceMessageLen3, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_tlsctx_trace_callback_tAC1169E423F6EBDA60CDD5D33E1795A8811E0BE6* __this, void* ___userData0, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx1, uint8_t* ___traceMessage2, intptr_t ___traceMessageLen3, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___userData0, ___ctx1, ___traceMessage2, ___traceMessageLen3, 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
void unitytls_tlsctx_certificate_callback_Invoke_m37CB366C6D6E0A27CE4E1E4943DF2DE1F32E2BF1_Multicast(unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C* __this, void* ___userData0, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_x509name_t8A1108C917795D8FE946B50769ACE51489C7BF5D* ___caList4, intptr_t ___caListLen5, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17* ___chain6, unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2* ___key7, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState8, 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) (unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C* __this, void* ___userData0, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_x509name_t8A1108C917795D8FE946B50769ACE51489C7BF5D* ___caList4, intptr_t ___caListLen5, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17* ___chain6, unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2* ___key7, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState8, const RuntimeMethod* method);
for (il2cpp_array_size_t i = 0; i < length; i++)
{
unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C* currentDelegate = reinterpret_cast<unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C*>(delegatesToInvoke[i]);
((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___userData0, ___ctx1, ___cn2, ___cnLen3, ___caList4, ___caListLen5, ___chain6, ___key7, ___errorState8, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
}
void unitytls_tlsctx_certificate_callback_Invoke_m37CB366C6D6E0A27CE4E1E4943DF2DE1F32E2BF1_Open(unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C* __this, void* ___userData0, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_x509name_t8A1108C917795D8FE946B50769ACE51489C7BF5D* ___caList4, intptr_t ___caListLen5, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17* ___chain6, unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2* ___key7, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState8, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (void*, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, uint8_t*, intptr_t, unitytls_x509name_t8A1108C917795D8FE946B50769ACE51489C7BF5D*, intptr_t, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17*, unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(___userData0, ___ctx1, ___cn2, ___cnLen3, ___caList4, ___caListLen5, ___chain6, ___key7, ___errorState8, method);
}
void unitytls_tlsctx_certificate_callback_Invoke_m37CB366C6D6E0A27CE4E1E4943DF2DE1F32E2BF1_Closed(unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C* __this, void* ___userData0, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_x509name_t8A1108C917795D8FE946B50769ACE51489C7BF5D* ___caList4, intptr_t ___caListLen5, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17* ___chain6, unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2* ___key7, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState8, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, void*, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, uint8_t*, intptr_t, unitytls_x509name_t8A1108C917795D8FE946B50769ACE51489C7BF5D*, intptr_t, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17*, unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___userData0, ___ctx1, ___cn2, ___cnLen3, ___caList4, ___caListLen5, ___chain6, ___key7, ___errorState8, method);
}
void unitytls_tlsctx_certificate_callback_Invoke_m37CB366C6D6E0A27CE4E1E4943DF2DE1F32E2BF1_OpenStaticInvoker(unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C* __this, void* ___userData0, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_x509name_t8A1108C917795D8FE946B50769ACE51489C7BF5D* ___caList4, intptr_t ___caListLen5, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17* ___chain6, unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2* ___key7, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState8, const RuntimeMethod* method)
{
InvokerActionInvoker9< void*, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, uint8_t*, intptr_t, unitytls_x509name_t8A1108C917795D8FE946B50769ACE51489C7BF5D*, intptr_t, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17*, unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, ___userData0, ___ctx1, ___cn2, ___cnLen3, ___caList4, ___caListLen5, ___chain6, ___key7, ___errorState8);
}
void unitytls_tlsctx_certificate_callback_Invoke_m37CB366C6D6E0A27CE4E1E4943DF2DE1F32E2BF1_ClosedStaticInvoker(unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C* __this, void* ___userData0, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_x509name_t8A1108C917795D8FE946B50769ACE51489C7BF5D* ___caList4, intptr_t ___caListLen5, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17* ___chain6, unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2* ___key7, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState8, const RuntimeMethod* method)
{
InvokerActionInvoker10< RuntimeObject*, void*, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, uint8_t*, intptr_t, unitytls_x509name_t8A1108C917795D8FE946B50769ACE51489C7BF5D*, intptr_t, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17*, unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___userData0, ___ctx1, ___cn2, ___cnLen3, ___caList4, ___caListLen5, ___chain6, ___key7, ___errorState8);
}
IL2CPP_EXTERN_C void DelegatePInvokeWrapper_unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C (unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C* __this, void* ___userData0, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_x509name_t8A1108C917795D8FE946B50769ACE51489C7BF5D* ___caList4, intptr_t ___caListLen5, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17* ___chain6, unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2* ___key7, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState8, const RuntimeMethod* method)
{
typedef void (CDECL *PInvokeFunc)(void*, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, uint8_t*, intptr_t, unitytls_x509name_t8A1108C917795D8FE946B50769ACE51489C7BF5D*, intptr_t, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17*, unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Native function invocation
il2cppPInvokeFunc(___userData0, ___ctx1, ___cn2, ___cnLen3, ___caList4, ___caListLen5, ___chain6, ___key7, ___errorState8);
}
// System.Void Mono.Unity.UnityTls/unitytls_tlsctx_certificate_callback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_tlsctx_certificate_callback__ctor_m9A3F05E07D9A69B8FF419421DF8167DF9CE7E77A (unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C* __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 == 9;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_certificate_callback_Invoke_m37CB366C6D6E0A27CE4E1E4943DF2DE1F32E2BF1_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_certificate_callback_Invoke_m37CB366C6D6E0A27CE4E1E4943DF2DE1F32E2BF1_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_certificate_callback_Invoke_m37CB366C6D6E0A27CE4E1E4943DF2DE1F32E2BF1_Open;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_certificate_callback_Invoke_m37CB366C6D6E0A27CE4E1E4943DF2DE1F32E2BF1_Closed;
}
else
{
bool isOpen = methodCount == 8;
if (isOpen)
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_certificate_callback_Invoke_m37CB366C6D6E0A27CE4E1E4943DF2DE1F32E2BF1_Open;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_certificate_callback_Invoke_m37CB366C6D6E0A27CE4E1E4943DF2DE1F32E2BF1_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&unitytls_tlsctx_certificate_callback_Invoke_m37CB366C6D6E0A27CE4E1E4943DF2DE1F32E2BF1_Multicast;
}
// System.Void Mono.Unity.UnityTls/unitytls_tlsctx_certificate_callback::Invoke(System.Void*,Mono.Unity.UnityTls/unitytls_tlsctx*,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_x509name*,System.IntPtr,Mono.Unity.UnityTls/unitytls_x509list_ref*,Mono.Unity.UnityTls/unitytls_key_ref*,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_tlsctx_certificate_callback_Invoke_m37CB366C6D6E0A27CE4E1E4943DF2DE1F32E2BF1 (unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C* __this, void* ___userData0, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_x509name_t8A1108C917795D8FE946B50769ACE51489C7BF5D* ___caList4, intptr_t ___caListLen5, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17* ___chain6, unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2* ___key7, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState8, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C* __this, void* ___userData0, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_x509name_t8A1108C917795D8FE946B50769ACE51489C7BF5D* ___caList4, intptr_t ___caListLen5, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17* ___chain6, unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2* ___key7, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState8, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___userData0, ___ctx1, ___cn2, ___cnLen3, ___caList4, ___caListLen5, ___chain6, ___key7, ___errorState8, 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
uint32_t unitytls_tlsctx_x509verify_callback_Invoke_m1F7A6DA53EF61AC64F2DD9A33AF40541F97C6874_Multicast(unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D* __this, void* ___userData0, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, 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 uint32_t (*FunctionPointerType) (unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D* __this, void* ___userData0, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method);
uint32_t retVal = 0;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D* currentDelegate = reinterpret_cast<unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D*>(delegatesToInvoke[i]);
retVal = ((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___userData0, ___chain1, ___errorState2, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
return retVal;
}
uint32_t unitytls_tlsctx_x509verify_callback_Invoke_m1F7A6DA53EF61AC64F2DD9A33AF40541F97C6874_Open(unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D* __this, void* ___userData0, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method)
{
typedef uint32_t (*FunctionPointerType) (void*, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(___userData0, ___chain1, ___errorState2, method);
}
uint32_t unitytls_tlsctx_x509verify_callback_Invoke_m1F7A6DA53EF61AC64F2DD9A33AF40541F97C6874_Closed(unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D* __this, void* ___userData0, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method)
{
typedef uint32_t (*FunctionPointerType) (RuntimeObject*, void*, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___userData0, ___chain1, ___errorState2, method);
}
uint32_t unitytls_tlsctx_x509verify_callback_Invoke_m1F7A6DA53EF61AC64F2DD9A33AF40541F97C6874_OpenStaticInvoker(unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D* __this, void* ___userData0, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method)
{
return InvokerFuncInvoker3< uint32_t, void*, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, ___userData0, ___chain1, ___errorState2);
}
uint32_t unitytls_tlsctx_x509verify_callback_Invoke_m1F7A6DA53EF61AC64F2DD9A33AF40541F97C6874_ClosedStaticInvoker(unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D* __this, void* ___userData0, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method)
{
return InvokerFuncInvoker4< uint32_t, RuntimeObject*, void*, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___userData0, ___chain1, ___errorState2);
}
IL2CPP_EXTERN_C uint32_t DelegatePInvokeWrapper_unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D (unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D* __this, void* ___userData0, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method)
{
typedef uint32_t (CDECL *PInvokeFunc)(void*, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Native function invocation
uint32_t returnValue = il2cppPInvokeFunc(___userData0, ___chain1, ___errorState2);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_tlsctx_x509verify_callback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_tlsctx_x509verify_callback__ctor_m8583619DBB13F6EDF2A385C37DFAE8796EB89C0F (unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D* __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)&unitytls_tlsctx_x509verify_callback_Invoke_m1F7A6DA53EF61AC64F2DD9A33AF40541F97C6874_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_x509verify_callback_Invoke_m1F7A6DA53EF61AC64F2DD9A33AF40541F97C6874_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_x509verify_callback_Invoke_m1F7A6DA53EF61AC64F2DD9A33AF40541F97C6874_Open;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_x509verify_callback_Invoke_m1F7A6DA53EF61AC64F2DD9A33AF40541F97C6874_Closed;
}
else
{
bool isOpen = methodCount == 2;
if (isOpen)
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_x509verify_callback_Invoke_m1F7A6DA53EF61AC64F2DD9A33AF40541F97C6874_Open;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_x509verify_callback_Invoke_m1F7A6DA53EF61AC64F2DD9A33AF40541F97C6874_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&unitytls_tlsctx_x509verify_callback_Invoke_m1F7A6DA53EF61AC64F2DD9A33AF40541F97C6874_Multicast;
}
// Mono.Unity.UnityTls/unitytls_x509verify_result Mono.Unity.UnityTls/unitytls_tlsctx_x509verify_callback::Invoke(System.Void*,Mono.Unity.UnityTls/unitytls_x509list_ref,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t unitytls_tlsctx_x509verify_callback_Invoke_m1F7A6DA53EF61AC64F2DD9A33AF40541F97C6874 (unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D* __this, void* ___userData0, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method)
{
typedef uint32_t (*FunctionPointerType) (unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D* __this, void* ___userData0, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___userData0, ___chain1, ___errorState2, 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
// Conversion methods for marshalling of: Mono.Unity.UnityTls/unitytls_tlsctx_callbacks
IL2CPP_EXTERN_C void unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568_marshal_pinvoke(const unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568& unmarshaled, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568_marshaled_pinvoke& marshaled)
{
marshaled.___read_0 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___read_0));
marshaled.___write_1 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___write_1));
marshaled.___data_2 = unmarshaled.___data_2;
}
IL2CPP_EXTERN_C void unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568_marshal_pinvoke_back(const unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568_marshaled_pinvoke& marshaled, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568& unmarshaled)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_tlsctx_read_callback_tDBE877327789CABE940C2A724EC9A5D142318851_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_tlsctx_write_callback_t5D4B64AD846D04E819A49689F7EAA47365636611_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
unmarshaled.___read_0 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_read_callback_tDBE877327789CABE940C2A724EC9A5D142318851>(marshaled.___read_0, unitytls_tlsctx_read_callback_tDBE877327789CABE940C2A724EC9A5D142318851_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___read_0), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_read_callback_tDBE877327789CABE940C2A724EC9A5D142318851>(marshaled.___read_0, unitytls_tlsctx_read_callback_tDBE877327789CABE940C2A724EC9A5D142318851_il2cpp_TypeInfo_var));
unmarshaled.___write_1 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_write_callback_t5D4B64AD846D04E819A49689F7EAA47365636611>(marshaled.___write_1, unitytls_tlsctx_write_callback_t5D4B64AD846D04E819A49689F7EAA47365636611_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___write_1), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_write_callback_t5D4B64AD846D04E819A49689F7EAA47365636611>(marshaled.___write_1, unitytls_tlsctx_write_callback_t5D4B64AD846D04E819A49689F7EAA47365636611_il2cpp_TypeInfo_var));
unmarshaled.___data_2 = marshaled.___data_2;
}
// Conversion method for clean up from marshalling of: Mono.Unity.UnityTls/unitytls_tlsctx_callbacks
IL2CPP_EXTERN_C void unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568_marshal_pinvoke_cleanup(unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: Mono.Unity.UnityTls/unitytls_tlsctx_callbacks
IL2CPP_EXTERN_C void unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568_marshal_com(const unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568& unmarshaled, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568_marshaled_com& marshaled)
{
marshaled.___read_0 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___read_0));
marshaled.___write_1 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___write_1));
marshaled.___data_2 = unmarshaled.___data_2;
}
IL2CPP_EXTERN_C void unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568_marshal_com_back(const unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568_marshaled_com& marshaled, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568& unmarshaled)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_tlsctx_read_callback_tDBE877327789CABE940C2A724EC9A5D142318851_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_tlsctx_write_callback_t5D4B64AD846D04E819A49689F7EAA47365636611_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
unmarshaled.___read_0 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_read_callback_tDBE877327789CABE940C2A724EC9A5D142318851>(marshaled.___read_0, unitytls_tlsctx_read_callback_tDBE877327789CABE940C2A724EC9A5D142318851_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___read_0), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_read_callback_tDBE877327789CABE940C2A724EC9A5D142318851>(marshaled.___read_0, unitytls_tlsctx_read_callback_tDBE877327789CABE940C2A724EC9A5D142318851_il2cpp_TypeInfo_var));
unmarshaled.___write_1 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_write_callback_t5D4B64AD846D04E819A49689F7EAA47365636611>(marshaled.___write_1, unitytls_tlsctx_write_callback_t5D4B64AD846D04E819A49689F7EAA47365636611_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___write_1), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_write_callback_t5D4B64AD846D04E819A49689F7EAA47365636611>(marshaled.___write_1, unitytls_tlsctx_write_callback_t5D4B64AD846D04E819A49689F7EAA47365636611_il2cpp_TypeInfo_var));
unmarshaled.___data_2 = marshaled.___data_2;
}
// Conversion method for clean up from marshalling of: Mono.Unity.UnityTls/unitytls_tlsctx_callbacks
IL2CPP_EXTERN_C void unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568_marshal_com_cleanup(unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568_marshaled_com& marshaled)
{
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: Mono.Unity.UnityTls/unitytls_interface_struct
IL2CPP_EXTERN_C void unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED_marshal_pinvoke(const unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED& unmarshaled, unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED_marshaled_pinvoke& marshaled)
{
marshaled.___UNITYTLS_INVALID_HANDLE_0 = unmarshaled.___UNITYTLS_INVALID_HANDLE_0;
marshaled.___UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_1 = unmarshaled.___UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_1;
marshaled.___unitytls_errorstate_create_2 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_errorstate_create_2));
marshaled.___unitytls_errorstate_raise_error_3 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_errorstate_raise_error_3));
marshaled.___unitytls_key_get_ref_4 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_key_get_ref_4));
marshaled.___unitytls_key_parse_der_5 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_key_parse_der_5));
marshaled.___unitytls_key_parse_pem_6 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_key_parse_pem_6));
marshaled.___unitytls_key_free_7 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_key_free_7));
marshaled.___unitytls_x509_export_der_8 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_x509_export_der_8));
marshaled.___unitytls_x509list_get_ref_9 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_x509list_get_ref_9));
marshaled.___unitytls_x509list_get_x509_10 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_x509list_get_x509_10));
marshaled.___unitytls_x509list_create_11 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_x509list_create_11));
marshaled.___unitytls_x509list_append_12 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_x509list_append_12));
marshaled.___unitytls_x509list_append_der_13 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_x509list_append_der_13));
marshaled.___unitytls_x509list_append_pem_14 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_x509list_append_pem_14));
marshaled.___unitytls_x509list_free_15 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_x509list_free_15));
marshaled.___unitytls_x509verify_default_ca_16 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_x509verify_default_ca_16));
marshaled.___unitytls_x509verify_explicit_ca_17 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_x509verify_explicit_ca_17));
marshaled.___unitytls_tlsctx_create_server_18 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_tlsctx_create_server_18));
marshaled.___unitytls_tlsctx_create_client_19 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_tlsctx_create_client_19));
marshaled.___unitytls_tlsctx_server_require_client_authentication_20 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_tlsctx_server_require_client_authentication_20));
marshaled.___unitytls_tlsctx_set_certificate_callback_21 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_tlsctx_set_certificate_callback_21));
marshaled.___unitytls_tlsctx_set_trace_callback_22 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_tlsctx_set_trace_callback_22));
marshaled.___unitytls_tlsctx_set_x509verify_callback_23 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_tlsctx_set_x509verify_callback_23));
marshaled.___unitytls_tlsctx_set_supported_ciphersuites_24 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_tlsctx_set_supported_ciphersuites_24));
marshaled.___unitytls_tlsctx_get_ciphersuite_25 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_tlsctx_get_ciphersuite_25));
marshaled.___unitytls_tlsctx_get_protocol_26 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_tlsctx_get_protocol_26));
marshaled.___unitytls_tlsctx_process_handshake_27 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_tlsctx_process_handshake_27));
marshaled.___unitytls_tlsctx_read_28 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_tlsctx_read_28));
marshaled.___unitytls_tlsctx_write_29 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_tlsctx_write_29));
marshaled.___unitytls_tlsctx_notify_close_30 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_tlsctx_notify_close_30));
marshaled.___unitytls_tlsctx_free_31 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_tlsctx_free_31));
marshaled.___unitytls_random_generate_bytes_32 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_random_generate_bytes_32));
}
IL2CPP_EXTERN_C void unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED_marshal_pinvoke_back(const unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED_marshaled_pinvoke& marshaled, unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED& unmarshaled)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_errorstate_raise_error_t_t8C20FC78CA5BBEE0248CC09D1C1AF25BCB3835CF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_key_free_t_tDB8665140BAF30447F3650D323078C193566FF72_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_key_get_ref_t_t8335968B19449FE0ED92E67AE9B6D95915684209_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_key_parse_der_t_tC218AEF9253FA105762F39041F696A06C52D3F10_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_key_parse_pem_t_tE945670C6CB28BBF4670D2E8E904B7D8A2AB277B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_random_generate_bytes_t_t6E7011EF958B0948582F8D1D213B454A5A962569_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_tlsctx_create_client_t_t49D8F69D4152410A346CB3560B121DCC44AAC4EC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_tlsctx_create_server_t_t1068941B319B893D3FFBE53FE061676FF1CC3803_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_tlsctx_free_t_tFBF7BB64D2E1C183718FB5809ABF0051395FD8F0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_tlsctx_get_ciphersuite_t_t7317543D399259616648B1AA19447C4B63F70EF2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_tlsctx_get_protocol_t_t04E3B73C1D77379F7C7388ED4934189365326F3C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_tlsctx_notify_close_t_t717D19846262E3DF5D1A69C5E136912E7A54B253_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_tlsctx_process_handshake_t_t8D94F5FAD00CD61BF950829866C0C6E29D202606_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_tlsctx_read_t_t3E3C711F7A47E704ABDF0DF0B7515E7306EB7C95_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_tlsctx_server_require_client_authentication_t_t2AC04245D1F40738C5FB87B0DEE80761E243F0BE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_tlsctx_set_certificate_callback_t_t2B54F7228DFC11BF14DCF2201BDD90CF0EF92D41_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_tlsctx_set_supported_ciphersuites_t_t007E8706D364DE695F1DBF28358058A1E73DF544_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_tlsctx_set_trace_callback_t_t3C615EACADC2CB1CDA8362B3F775071976E7CF7C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_tlsctx_set_x509verify_callback_t_t032FE980BEDD0D201CAF1EE653ABE303CDBCA7C9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_tlsctx_write_t_t976A41600B61F9C8DF022296B67316FFA53EB386_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_x509_export_der_t_tB784597940DE501BB5FEFA3EA528634559A16749_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_x509list_append_t_tC84B9CA7C15F5D1DE98386670A80D5F98559D98E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_x509list_create_t_t8873365FFB1556CE6B643700DB0C30E391B758D6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_x509list_get_ref_t_t264CEEF7B8D1F10FD95E1BC78BB48BCA11E305EA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_x509list_get_x509_t_t428DCD367D50DCDD5ECE6DCFEB8967C5F7C3DFE8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_x509verify_default_ca_t_tED88B7ABC8408A22DB51B1F57D5FC65BDD2EC809_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_x509verify_explicit_ca_t_t1B3D98BF01F059A3C2ADE87EFDDA03C557A3D08D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
uint64_t unmarshaledUNITYTLS_INVALID_HANDLE_temp_0 = 0;
unmarshaledUNITYTLS_INVALID_HANDLE_temp_0 = marshaled.___UNITYTLS_INVALID_HANDLE_0;
unmarshaled.___UNITYTLS_INVALID_HANDLE_0 = unmarshaledUNITYTLS_INVALID_HANDLE_temp_0;
unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56 unmarshaledUNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_temp_1;
memset((&unmarshaledUNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_temp_1), 0, sizeof(unmarshaledUNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_temp_1));
unmarshaledUNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_temp_1 = marshaled.___UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_1;
unmarshaled.___UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_1 = unmarshaledUNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_temp_1;
unmarshaled.___unitytls_errorstate_create_2 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B>(marshaled.___unitytls_errorstate_create_2, unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_errorstate_create_2), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B>(marshaled.___unitytls_errorstate_create_2, unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_errorstate_raise_error_3 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_errorstate_raise_error_t_t8C20FC78CA5BBEE0248CC09D1C1AF25BCB3835CF>(marshaled.___unitytls_errorstate_raise_error_3, unitytls_errorstate_raise_error_t_t8C20FC78CA5BBEE0248CC09D1C1AF25BCB3835CF_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_errorstate_raise_error_3), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_errorstate_raise_error_t_t8C20FC78CA5BBEE0248CC09D1C1AF25BCB3835CF>(marshaled.___unitytls_errorstate_raise_error_3, unitytls_errorstate_raise_error_t_t8C20FC78CA5BBEE0248CC09D1C1AF25BCB3835CF_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_key_get_ref_4 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_key_get_ref_t_t8335968B19449FE0ED92E67AE9B6D95915684209>(marshaled.___unitytls_key_get_ref_4, unitytls_key_get_ref_t_t8335968B19449FE0ED92E67AE9B6D95915684209_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_key_get_ref_4), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_key_get_ref_t_t8335968B19449FE0ED92E67AE9B6D95915684209>(marshaled.___unitytls_key_get_ref_4, unitytls_key_get_ref_t_t8335968B19449FE0ED92E67AE9B6D95915684209_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_key_parse_der_5 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_key_parse_der_t_tC218AEF9253FA105762F39041F696A06C52D3F10>(marshaled.___unitytls_key_parse_der_5, unitytls_key_parse_der_t_tC218AEF9253FA105762F39041F696A06C52D3F10_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_key_parse_der_5), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_key_parse_der_t_tC218AEF9253FA105762F39041F696A06C52D3F10>(marshaled.___unitytls_key_parse_der_5, unitytls_key_parse_der_t_tC218AEF9253FA105762F39041F696A06C52D3F10_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_key_parse_pem_6 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_key_parse_pem_t_tE945670C6CB28BBF4670D2E8E904B7D8A2AB277B>(marshaled.___unitytls_key_parse_pem_6, unitytls_key_parse_pem_t_tE945670C6CB28BBF4670D2E8E904B7D8A2AB277B_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_key_parse_pem_6), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_key_parse_pem_t_tE945670C6CB28BBF4670D2E8E904B7D8A2AB277B>(marshaled.___unitytls_key_parse_pem_6, unitytls_key_parse_pem_t_tE945670C6CB28BBF4670D2E8E904B7D8A2AB277B_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_key_free_7 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_key_free_t_tDB8665140BAF30447F3650D323078C193566FF72>(marshaled.___unitytls_key_free_7, unitytls_key_free_t_tDB8665140BAF30447F3650D323078C193566FF72_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_key_free_7), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_key_free_t_tDB8665140BAF30447F3650D323078C193566FF72>(marshaled.___unitytls_key_free_7, unitytls_key_free_t_tDB8665140BAF30447F3650D323078C193566FF72_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_x509_export_der_8 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509_export_der_t_tB784597940DE501BB5FEFA3EA528634559A16749>(marshaled.___unitytls_x509_export_der_8, unitytls_x509_export_der_t_tB784597940DE501BB5FEFA3EA528634559A16749_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_x509_export_der_8), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509_export_der_t_tB784597940DE501BB5FEFA3EA528634559A16749>(marshaled.___unitytls_x509_export_der_8, unitytls_x509_export_der_t_tB784597940DE501BB5FEFA3EA528634559A16749_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_x509list_get_ref_9 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_get_ref_t_t264CEEF7B8D1F10FD95E1BC78BB48BCA11E305EA>(marshaled.___unitytls_x509list_get_ref_9, unitytls_x509list_get_ref_t_t264CEEF7B8D1F10FD95E1BC78BB48BCA11E305EA_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_x509list_get_ref_9), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_get_ref_t_t264CEEF7B8D1F10FD95E1BC78BB48BCA11E305EA>(marshaled.___unitytls_x509list_get_ref_9, unitytls_x509list_get_ref_t_t264CEEF7B8D1F10FD95E1BC78BB48BCA11E305EA_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_x509list_get_x509_10 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_get_x509_t_t428DCD367D50DCDD5ECE6DCFEB8967C5F7C3DFE8>(marshaled.___unitytls_x509list_get_x509_10, unitytls_x509list_get_x509_t_t428DCD367D50DCDD5ECE6DCFEB8967C5F7C3DFE8_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_x509list_get_x509_10), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_get_x509_t_t428DCD367D50DCDD5ECE6DCFEB8967C5F7C3DFE8>(marshaled.___unitytls_x509list_get_x509_10, unitytls_x509list_get_x509_t_t428DCD367D50DCDD5ECE6DCFEB8967C5F7C3DFE8_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_x509list_create_11 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_create_t_t8873365FFB1556CE6B643700DB0C30E391B758D6>(marshaled.___unitytls_x509list_create_11, unitytls_x509list_create_t_t8873365FFB1556CE6B643700DB0C30E391B758D6_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_x509list_create_11), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_create_t_t8873365FFB1556CE6B643700DB0C30E391B758D6>(marshaled.___unitytls_x509list_create_11, unitytls_x509list_create_t_t8873365FFB1556CE6B643700DB0C30E391B758D6_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_x509list_append_12 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_append_t_tC84B9CA7C15F5D1DE98386670A80D5F98559D98E>(marshaled.___unitytls_x509list_append_12, unitytls_x509list_append_t_tC84B9CA7C15F5D1DE98386670A80D5F98559D98E_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_x509list_append_12), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_append_t_tC84B9CA7C15F5D1DE98386670A80D5F98559D98E>(marshaled.___unitytls_x509list_append_12, unitytls_x509list_append_t_tC84B9CA7C15F5D1DE98386670A80D5F98559D98E_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_x509list_append_der_13 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951>(marshaled.___unitytls_x509list_append_der_13, unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_x509list_append_der_13), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951>(marshaled.___unitytls_x509list_append_der_13, unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_x509list_append_pem_14 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951>(marshaled.___unitytls_x509list_append_pem_14, unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_x509list_append_pem_14), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951>(marshaled.___unitytls_x509list_append_pem_14, unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_x509list_free_15 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2>(marshaled.___unitytls_x509list_free_15, unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_x509list_free_15), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2>(marshaled.___unitytls_x509list_free_15, unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_x509verify_default_ca_16 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509verify_default_ca_t_tED88B7ABC8408A22DB51B1F57D5FC65BDD2EC809>(marshaled.___unitytls_x509verify_default_ca_16, unitytls_x509verify_default_ca_t_tED88B7ABC8408A22DB51B1F57D5FC65BDD2EC809_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_x509verify_default_ca_16), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509verify_default_ca_t_tED88B7ABC8408A22DB51B1F57D5FC65BDD2EC809>(marshaled.___unitytls_x509verify_default_ca_16, unitytls_x509verify_default_ca_t_tED88B7ABC8408A22DB51B1F57D5FC65BDD2EC809_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_x509verify_explicit_ca_17 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509verify_explicit_ca_t_t1B3D98BF01F059A3C2ADE87EFDDA03C557A3D08D>(marshaled.___unitytls_x509verify_explicit_ca_17, unitytls_x509verify_explicit_ca_t_t1B3D98BF01F059A3C2ADE87EFDDA03C557A3D08D_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_x509verify_explicit_ca_17), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509verify_explicit_ca_t_t1B3D98BF01F059A3C2ADE87EFDDA03C557A3D08D>(marshaled.___unitytls_x509verify_explicit_ca_17, unitytls_x509verify_explicit_ca_t_t1B3D98BF01F059A3C2ADE87EFDDA03C557A3D08D_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_tlsctx_create_server_18 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_create_server_t_t1068941B319B893D3FFBE53FE061676FF1CC3803>(marshaled.___unitytls_tlsctx_create_server_18, unitytls_tlsctx_create_server_t_t1068941B319B893D3FFBE53FE061676FF1CC3803_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_tlsctx_create_server_18), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_create_server_t_t1068941B319B893D3FFBE53FE061676FF1CC3803>(marshaled.___unitytls_tlsctx_create_server_18, unitytls_tlsctx_create_server_t_t1068941B319B893D3FFBE53FE061676FF1CC3803_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_tlsctx_create_client_19 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_create_client_t_t49D8F69D4152410A346CB3560B121DCC44AAC4EC>(marshaled.___unitytls_tlsctx_create_client_19, unitytls_tlsctx_create_client_t_t49D8F69D4152410A346CB3560B121DCC44AAC4EC_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_tlsctx_create_client_19), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_create_client_t_t49D8F69D4152410A346CB3560B121DCC44AAC4EC>(marshaled.___unitytls_tlsctx_create_client_19, unitytls_tlsctx_create_client_t_t49D8F69D4152410A346CB3560B121DCC44AAC4EC_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_tlsctx_server_require_client_authentication_20 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_server_require_client_authentication_t_t2AC04245D1F40738C5FB87B0DEE80761E243F0BE>(marshaled.___unitytls_tlsctx_server_require_client_authentication_20, unitytls_tlsctx_server_require_client_authentication_t_t2AC04245D1F40738C5FB87B0DEE80761E243F0BE_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_tlsctx_server_require_client_authentication_20), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_server_require_client_authentication_t_t2AC04245D1F40738C5FB87B0DEE80761E243F0BE>(marshaled.___unitytls_tlsctx_server_require_client_authentication_20, unitytls_tlsctx_server_require_client_authentication_t_t2AC04245D1F40738C5FB87B0DEE80761E243F0BE_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_tlsctx_set_certificate_callback_21 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_set_certificate_callback_t_t2B54F7228DFC11BF14DCF2201BDD90CF0EF92D41>(marshaled.___unitytls_tlsctx_set_certificate_callback_21, unitytls_tlsctx_set_certificate_callback_t_t2B54F7228DFC11BF14DCF2201BDD90CF0EF92D41_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_tlsctx_set_certificate_callback_21), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_set_certificate_callback_t_t2B54F7228DFC11BF14DCF2201BDD90CF0EF92D41>(marshaled.___unitytls_tlsctx_set_certificate_callback_21, unitytls_tlsctx_set_certificate_callback_t_t2B54F7228DFC11BF14DCF2201BDD90CF0EF92D41_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_tlsctx_set_trace_callback_22 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_set_trace_callback_t_t3C615EACADC2CB1CDA8362B3F775071976E7CF7C>(marshaled.___unitytls_tlsctx_set_trace_callback_22, unitytls_tlsctx_set_trace_callback_t_t3C615EACADC2CB1CDA8362B3F775071976E7CF7C_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_tlsctx_set_trace_callback_22), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_set_trace_callback_t_t3C615EACADC2CB1CDA8362B3F775071976E7CF7C>(marshaled.___unitytls_tlsctx_set_trace_callback_22, unitytls_tlsctx_set_trace_callback_t_t3C615EACADC2CB1CDA8362B3F775071976E7CF7C_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_tlsctx_set_x509verify_callback_23 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_set_x509verify_callback_t_t032FE980BEDD0D201CAF1EE653ABE303CDBCA7C9>(marshaled.___unitytls_tlsctx_set_x509verify_callback_23, unitytls_tlsctx_set_x509verify_callback_t_t032FE980BEDD0D201CAF1EE653ABE303CDBCA7C9_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_tlsctx_set_x509verify_callback_23), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_set_x509verify_callback_t_t032FE980BEDD0D201CAF1EE653ABE303CDBCA7C9>(marshaled.___unitytls_tlsctx_set_x509verify_callback_23, unitytls_tlsctx_set_x509verify_callback_t_t032FE980BEDD0D201CAF1EE653ABE303CDBCA7C9_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_tlsctx_set_supported_ciphersuites_24 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_set_supported_ciphersuites_t_t007E8706D364DE695F1DBF28358058A1E73DF544>(marshaled.___unitytls_tlsctx_set_supported_ciphersuites_24, unitytls_tlsctx_set_supported_ciphersuites_t_t007E8706D364DE695F1DBF28358058A1E73DF544_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_tlsctx_set_supported_ciphersuites_24), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_set_supported_ciphersuites_t_t007E8706D364DE695F1DBF28358058A1E73DF544>(marshaled.___unitytls_tlsctx_set_supported_ciphersuites_24, unitytls_tlsctx_set_supported_ciphersuites_t_t007E8706D364DE695F1DBF28358058A1E73DF544_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_tlsctx_get_ciphersuite_25 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_get_ciphersuite_t_t7317543D399259616648B1AA19447C4B63F70EF2>(marshaled.___unitytls_tlsctx_get_ciphersuite_25, unitytls_tlsctx_get_ciphersuite_t_t7317543D399259616648B1AA19447C4B63F70EF2_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_tlsctx_get_ciphersuite_25), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_get_ciphersuite_t_t7317543D399259616648B1AA19447C4B63F70EF2>(marshaled.___unitytls_tlsctx_get_ciphersuite_25, unitytls_tlsctx_get_ciphersuite_t_t7317543D399259616648B1AA19447C4B63F70EF2_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_tlsctx_get_protocol_26 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_get_protocol_t_t04E3B73C1D77379F7C7388ED4934189365326F3C>(marshaled.___unitytls_tlsctx_get_protocol_26, unitytls_tlsctx_get_protocol_t_t04E3B73C1D77379F7C7388ED4934189365326F3C_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_tlsctx_get_protocol_26), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_get_protocol_t_t04E3B73C1D77379F7C7388ED4934189365326F3C>(marshaled.___unitytls_tlsctx_get_protocol_26, unitytls_tlsctx_get_protocol_t_t04E3B73C1D77379F7C7388ED4934189365326F3C_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_tlsctx_process_handshake_27 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_process_handshake_t_t8D94F5FAD00CD61BF950829866C0C6E29D202606>(marshaled.___unitytls_tlsctx_process_handshake_27, unitytls_tlsctx_process_handshake_t_t8D94F5FAD00CD61BF950829866C0C6E29D202606_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_tlsctx_process_handshake_27), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_process_handshake_t_t8D94F5FAD00CD61BF950829866C0C6E29D202606>(marshaled.___unitytls_tlsctx_process_handshake_27, unitytls_tlsctx_process_handshake_t_t8D94F5FAD00CD61BF950829866C0C6E29D202606_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_tlsctx_read_28 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_read_t_t3E3C711F7A47E704ABDF0DF0B7515E7306EB7C95>(marshaled.___unitytls_tlsctx_read_28, unitytls_tlsctx_read_t_t3E3C711F7A47E704ABDF0DF0B7515E7306EB7C95_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_tlsctx_read_28), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_read_t_t3E3C711F7A47E704ABDF0DF0B7515E7306EB7C95>(marshaled.___unitytls_tlsctx_read_28, unitytls_tlsctx_read_t_t3E3C711F7A47E704ABDF0DF0B7515E7306EB7C95_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_tlsctx_write_29 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_write_t_t976A41600B61F9C8DF022296B67316FFA53EB386>(marshaled.___unitytls_tlsctx_write_29, unitytls_tlsctx_write_t_t976A41600B61F9C8DF022296B67316FFA53EB386_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_tlsctx_write_29), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_write_t_t976A41600B61F9C8DF022296B67316FFA53EB386>(marshaled.___unitytls_tlsctx_write_29, unitytls_tlsctx_write_t_t976A41600B61F9C8DF022296B67316FFA53EB386_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_tlsctx_notify_close_30 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_notify_close_t_t717D19846262E3DF5D1A69C5E136912E7A54B253>(marshaled.___unitytls_tlsctx_notify_close_30, unitytls_tlsctx_notify_close_t_t717D19846262E3DF5D1A69C5E136912E7A54B253_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_tlsctx_notify_close_30), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_notify_close_t_t717D19846262E3DF5D1A69C5E136912E7A54B253>(marshaled.___unitytls_tlsctx_notify_close_30, unitytls_tlsctx_notify_close_t_t717D19846262E3DF5D1A69C5E136912E7A54B253_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_tlsctx_free_31 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_free_t_tFBF7BB64D2E1C183718FB5809ABF0051395FD8F0>(marshaled.___unitytls_tlsctx_free_31, unitytls_tlsctx_free_t_tFBF7BB64D2E1C183718FB5809ABF0051395FD8F0_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_tlsctx_free_31), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_free_t_tFBF7BB64D2E1C183718FB5809ABF0051395FD8F0>(marshaled.___unitytls_tlsctx_free_31, unitytls_tlsctx_free_t_tFBF7BB64D2E1C183718FB5809ABF0051395FD8F0_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_random_generate_bytes_32 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_random_generate_bytes_t_t6E7011EF958B0948582F8D1D213B454A5A962569>(marshaled.___unitytls_random_generate_bytes_32, unitytls_random_generate_bytes_t_t6E7011EF958B0948582F8D1D213B454A5A962569_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_random_generate_bytes_32), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_random_generate_bytes_t_t6E7011EF958B0948582F8D1D213B454A5A962569>(marshaled.___unitytls_random_generate_bytes_32, unitytls_random_generate_bytes_t_t6E7011EF958B0948582F8D1D213B454A5A962569_il2cpp_TypeInfo_var));
}
// Conversion method for clean up from marshalling of: Mono.Unity.UnityTls/unitytls_interface_struct
IL2CPP_EXTERN_C void unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED_marshal_pinvoke_cleanup(unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: Mono.Unity.UnityTls/unitytls_interface_struct
IL2CPP_EXTERN_C void unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED_marshal_com(const unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED& unmarshaled, unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED_marshaled_com& marshaled)
{
marshaled.___UNITYTLS_INVALID_HANDLE_0 = unmarshaled.___UNITYTLS_INVALID_HANDLE_0;
marshaled.___UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_1 = unmarshaled.___UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_1;
marshaled.___unitytls_errorstate_create_2 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_errorstate_create_2));
marshaled.___unitytls_errorstate_raise_error_3 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_errorstate_raise_error_3));
marshaled.___unitytls_key_get_ref_4 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_key_get_ref_4));
marshaled.___unitytls_key_parse_der_5 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_key_parse_der_5));
marshaled.___unitytls_key_parse_pem_6 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_key_parse_pem_6));
marshaled.___unitytls_key_free_7 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_key_free_7));
marshaled.___unitytls_x509_export_der_8 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_x509_export_der_8));
marshaled.___unitytls_x509list_get_ref_9 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_x509list_get_ref_9));
marshaled.___unitytls_x509list_get_x509_10 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_x509list_get_x509_10));
marshaled.___unitytls_x509list_create_11 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_x509list_create_11));
marshaled.___unitytls_x509list_append_12 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_x509list_append_12));
marshaled.___unitytls_x509list_append_der_13 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_x509list_append_der_13));
marshaled.___unitytls_x509list_append_pem_14 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_x509list_append_pem_14));
marshaled.___unitytls_x509list_free_15 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_x509list_free_15));
marshaled.___unitytls_x509verify_default_ca_16 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_x509verify_default_ca_16));
marshaled.___unitytls_x509verify_explicit_ca_17 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_x509verify_explicit_ca_17));
marshaled.___unitytls_tlsctx_create_server_18 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_tlsctx_create_server_18));
marshaled.___unitytls_tlsctx_create_client_19 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_tlsctx_create_client_19));
marshaled.___unitytls_tlsctx_server_require_client_authentication_20 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_tlsctx_server_require_client_authentication_20));
marshaled.___unitytls_tlsctx_set_certificate_callback_21 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_tlsctx_set_certificate_callback_21));
marshaled.___unitytls_tlsctx_set_trace_callback_22 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_tlsctx_set_trace_callback_22));
marshaled.___unitytls_tlsctx_set_x509verify_callback_23 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_tlsctx_set_x509verify_callback_23));
marshaled.___unitytls_tlsctx_set_supported_ciphersuites_24 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_tlsctx_set_supported_ciphersuites_24));
marshaled.___unitytls_tlsctx_get_ciphersuite_25 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_tlsctx_get_ciphersuite_25));
marshaled.___unitytls_tlsctx_get_protocol_26 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_tlsctx_get_protocol_26));
marshaled.___unitytls_tlsctx_process_handshake_27 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_tlsctx_process_handshake_27));
marshaled.___unitytls_tlsctx_read_28 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_tlsctx_read_28));
marshaled.___unitytls_tlsctx_write_29 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_tlsctx_write_29));
marshaled.___unitytls_tlsctx_notify_close_30 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_tlsctx_notify_close_30));
marshaled.___unitytls_tlsctx_free_31 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_tlsctx_free_31));
marshaled.___unitytls_random_generate_bytes_32 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.___unitytls_random_generate_bytes_32));
}
IL2CPP_EXTERN_C void unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED_marshal_com_back(const unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED_marshaled_com& marshaled, unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED& unmarshaled)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_errorstate_raise_error_t_t8C20FC78CA5BBEE0248CC09D1C1AF25BCB3835CF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_key_free_t_tDB8665140BAF30447F3650D323078C193566FF72_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_key_get_ref_t_t8335968B19449FE0ED92E67AE9B6D95915684209_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_key_parse_der_t_tC218AEF9253FA105762F39041F696A06C52D3F10_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_key_parse_pem_t_tE945670C6CB28BBF4670D2E8E904B7D8A2AB277B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_random_generate_bytes_t_t6E7011EF958B0948582F8D1D213B454A5A962569_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_tlsctx_create_client_t_t49D8F69D4152410A346CB3560B121DCC44AAC4EC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_tlsctx_create_server_t_t1068941B319B893D3FFBE53FE061676FF1CC3803_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_tlsctx_free_t_tFBF7BB64D2E1C183718FB5809ABF0051395FD8F0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_tlsctx_get_ciphersuite_t_t7317543D399259616648B1AA19447C4B63F70EF2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_tlsctx_get_protocol_t_t04E3B73C1D77379F7C7388ED4934189365326F3C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_tlsctx_notify_close_t_t717D19846262E3DF5D1A69C5E136912E7A54B253_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_tlsctx_process_handshake_t_t8D94F5FAD00CD61BF950829866C0C6E29D202606_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_tlsctx_read_t_t3E3C711F7A47E704ABDF0DF0B7515E7306EB7C95_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_tlsctx_server_require_client_authentication_t_t2AC04245D1F40738C5FB87B0DEE80761E243F0BE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_tlsctx_set_certificate_callback_t_t2B54F7228DFC11BF14DCF2201BDD90CF0EF92D41_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_tlsctx_set_supported_ciphersuites_t_t007E8706D364DE695F1DBF28358058A1E73DF544_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_tlsctx_set_trace_callback_t_t3C615EACADC2CB1CDA8362B3F775071976E7CF7C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_tlsctx_set_x509verify_callback_t_t032FE980BEDD0D201CAF1EE653ABE303CDBCA7C9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_tlsctx_write_t_t976A41600B61F9C8DF022296B67316FFA53EB386_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_x509_export_der_t_tB784597940DE501BB5FEFA3EA528634559A16749_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_x509list_append_t_tC84B9CA7C15F5D1DE98386670A80D5F98559D98E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_x509list_create_t_t8873365FFB1556CE6B643700DB0C30E391B758D6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_x509list_get_ref_t_t264CEEF7B8D1F10FD95E1BC78BB48BCA11E305EA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_x509list_get_x509_t_t428DCD367D50DCDD5ECE6DCFEB8967C5F7C3DFE8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_x509verify_default_ca_t_tED88B7ABC8408A22DB51B1F57D5FC65BDD2EC809_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_x509verify_explicit_ca_t_t1B3D98BF01F059A3C2ADE87EFDDA03C557A3D08D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
uint64_t unmarshaledUNITYTLS_INVALID_HANDLE_temp_0 = 0;
unmarshaledUNITYTLS_INVALID_HANDLE_temp_0 = marshaled.___UNITYTLS_INVALID_HANDLE_0;
unmarshaled.___UNITYTLS_INVALID_HANDLE_0 = unmarshaledUNITYTLS_INVALID_HANDLE_temp_0;
unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56 unmarshaledUNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_temp_1;
memset((&unmarshaledUNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_temp_1), 0, sizeof(unmarshaledUNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_temp_1));
unmarshaledUNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_temp_1 = marshaled.___UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_1;
unmarshaled.___UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_1 = unmarshaledUNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_temp_1;
unmarshaled.___unitytls_errorstate_create_2 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B>(marshaled.___unitytls_errorstate_create_2, unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_errorstate_create_2), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B>(marshaled.___unitytls_errorstate_create_2, unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_errorstate_raise_error_3 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_errorstate_raise_error_t_t8C20FC78CA5BBEE0248CC09D1C1AF25BCB3835CF>(marshaled.___unitytls_errorstate_raise_error_3, unitytls_errorstate_raise_error_t_t8C20FC78CA5BBEE0248CC09D1C1AF25BCB3835CF_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_errorstate_raise_error_3), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_errorstate_raise_error_t_t8C20FC78CA5BBEE0248CC09D1C1AF25BCB3835CF>(marshaled.___unitytls_errorstate_raise_error_3, unitytls_errorstate_raise_error_t_t8C20FC78CA5BBEE0248CC09D1C1AF25BCB3835CF_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_key_get_ref_4 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_key_get_ref_t_t8335968B19449FE0ED92E67AE9B6D95915684209>(marshaled.___unitytls_key_get_ref_4, unitytls_key_get_ref_t_t8335968B19449FE0ED92E67AE9B6D95915684209_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_key_get_ref_4), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_key_get_ref_t_t8335968B19449FE0ED92E67AE9B6D95915684209>(marshaled.___unitytls_key_get_ref_4, unitytls_key_get_ref_t_t8335968B19449FE0ED92E67AE9B6D95915684209_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_key_parse_der_5 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_key_parse_der_t_tC218AEF9253FA105762F39041F696A06C52D3F10>(marshaled.___unitytls_key_parse_der_5, unitytls_key_parse_der_t_tC218AEF9253FA105762F39041F696A06C52D3F10_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_key_parse_der_5), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_key_parse_der_t_tC218AEF9253FA105762F39041F696A06C52D3F10>(marshaled.___unitytls_key_parse_der_5, unitytls_key_parse_der_t_tC218AEF9253FA105762F39041F696A06C52D3F10_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_key_parse_pem_6 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_key_parse_pem_t_tE945670C6CB28BBF4670D2E8E904B7D8A2AB277B>(marshaled.___unitytls_key_parse_pem_6, unitytls_key_parse_pem_t_tE945670C6CB28BBF4670D2E8E904B7D8A2AB277B_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_key_parse_pem_6), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_key_parse_pem_t_tE945670C6CB28BBF4670D2E8E904B7D8A2AB277B>(marshaled.___unitytls_key_parse_pem_6, unitytls_key_parse_pem_t_tE945670C6CB28BBF4670D2E8E904B7D8A2AB277B_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_key_free_7 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_key_free_t_tDB8665140BAF30447F3650D323078C193566FF72>(marshaled.___unitytls_key_free_7, unitytls_key_free_t_tDB8665140BAF30447F3650D323078C193566FF72_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_key_free_7), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_key_free_t_tDB8665140BAF30447F3650D323078C193566FF72>(marshaled.___unitytls_key_free_7, unitytls_key_free_t_tDB8665140BAF30447F3650D323078C193566FF72_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_x509_export_der_8 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509_export_der_t_tB784597940DE501BB5FEFA3EA528634559A16749>(marshaled.___unitytls_x509_export_der_8, unitytls_x509_export_der_t_tB784597940DE501BB5FEFA3EA528634559A16749_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_x509_export_der_8), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509_export_der_t_tB784597940DE501BB5FEFA3EA528634559A16749>(marshaled.___unitytls_x509_export_der_8, unitytls_x509_export_der_t_tB784597940DE501BB5FEFA3EA528634559A16749_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_x509list_get_ref_9 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_get_ref_t_t264CEEF7B8D1F10FD95E1BC78BB48BCA11E305EA>(marshaled.___unitytls_x509list_get_ref_9, unitytls_x509list_get_ref_t_t264CEEF7B8D1F10FD95E1BC78BB48BCA11E305EA_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_x509list_get_ref_9), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_get_ref_t_t264CEEF7B8D1F10FD95E1BC78BB48BCA11E305EA>(marshaled.___unitytls_x509list_get_ref_9, unitytls_x509list_get_ref_t_t264CEEF7B8D1F10FD95E1BC78BB48BCA11E305EA_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_x509list_get_x509_10 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_get_x509_t_t428DCD367D50DCDD5ECE6DCFEB8967C5F7C3DFE8>(marshaled.___unitytls_x509list_get_x509_10, unitytls_x509list_get_x509_t_t428DCD367D50DCDD5ECE6DCFEB8967C5F7C3DFE8_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_x509list_get_x509_10), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_get_x509_t_t428DCD367D50DCDD5ECE6DCFEB8967C5F7C3DFE8>(marshaled.___unitytls_x509list_get_x509_10, unitytls_x509list_get_x509_t_t428DCD367D50DCDD5ECE6DCFEB8967C5F7C3DFE8_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_x509list_create_11 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_create_t_t8873365FFB1556CE6B643700DB0C30E391B758D6>(marshaled.___unitytls_x509list_create_11, unitytls_x509list_create_t_t8873365FFB1556CE6B643700DB0C30E391B758D6_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_x509list_create_11), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_create_t_t8873365FFB1556CE6B643700DB0C30E391B758D6>(marshaled.___unitytls_x509list_create_11, unitytls_x509list_create_t_t8873365FFB1556CE6B643700DB0C30E391B758D6_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_x509list_append_12 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_append_t_tC84B9CA7C15F5D1DE98386670A80D5F98559D98E>(marshaled.___unitytls_x509list_append_12, unitytls_x509list_append_t_tC84B9CA7C15F5D1DE98386670A80D5F98559D98E_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_x509list_append_12), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_append_t_tC84B9CA7C15F5D1DE98386670A80D5F98559D98E>(marshaled.___unitytls_x509list_append_12, unitytls_x509list_append_t_tC84B9CA7C15F5D1DE98386670A80D5F98559D98E_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_x509list_append_der_13 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951>(marshaled.___unitytls_x509list_append_der_13, unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_x509list_append_der_13), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951>(marshaled.___unitytls_x509list_append_der_13, unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_x509list_append_pem_14 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951>(marshaled.___unitytls_x509list_append_pem_14, unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_x509list_append_pem_14), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951>(marshaled.___unitytls_x509list_append_pem_14, unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_x509list_free_15 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2>(marshaled.___unitytls_x509list_free_15, unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_x509list_free_15), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2>(marshaled.___unitytls_x509list_free_15, unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_x509verify_default_ca_16 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509verify_default_ca_t_tED88B7ABC8408A22DB51B1F57D5FC65BDD2EC809>(marshaled.___unitytls_x509verify_default_ca_16, unitytls_x509verify_default_ca_t_tED88B7ABC8408A22DB51B1F57D5FC65BDD2EC809_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_x509verify_default_ca_16), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509verify_default_ca_t_tED88B7ABC8408A22DB51B1F57D5FC65BDD2EC809>(marshaled.___unitytls_x509verify_default_ca_16, unitytls_x509verify_default_ca_t_tED88B7ABC8408A22DB51B1F57D5FC65BDD2EC809_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_x509verify_explicit_ca_17 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509verify_explicit_ca_t_t1B3D98BF01F059A3C2ADE87EFDDA03C557A3D08D>(marshaled.___unitytls_x509verify_explicit_ca_17, unitytls_x509verify_explicit_ca_t_t1B3D98BF01F059A3C2ADE87EFDDA03C557A3D08D_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_x509verify_explicit_ca_17), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509verify_explicit_ca_t_t1B3D98BF01F059A3C2ADE87EFDDA03C557A3D08D>(marshaled.___unitytls_x509verify_explicit_ca_17, unitytls_x509verify_explicit_ca_t_t1B3D98BF01F059A3C2ADE87EFDDA03C557A3D08D_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_tlsctx_create_server_18 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_create_server_t_t1068941B319B893D3FFBE53FE061676FF1CC3803>(marshaled.___unitytls_tlsctx_create_server_18, unitytls_tlsctx_create_server_t_t1068941B319B893D3FFBE53FE061676FF1CC3803_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_tlsctx_create_server_18), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_create_server_t_t1068941B319B893D3FFBE53FE061676FF1CC3803>(marshaled.___unitytls_tlsctx_create_server_18, unitytls_tlsctx_create_server_t_t1068941B319B893D3FFBE53FE061676FF1CC3803_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_tlsctx_create_client_19 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_create_client_t_t49D8F69D4152410A346CB3560B121DCC44AAC4EC>(marshaled.___unitytls_tlsctx_create_client_19, unitytls_tlsctx_create_client_t_t49D8F69D4152410A346CB3560B121DCC44AAC4EC_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_tlsctx_create_client_19), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_create_client_t_t49D8F69D4152410A346CB3560B121DCC44AAC4EC>(marshaled.___unitytls_tlsctx_create_client_19, unitytls_tlsctx_create_client_t_t49D8F69D4152410A346CB3560B121DCC44AAC4EC_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_tlsctx_server_require_client_authentication_20 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_server_require_client_authentication_t_t2AC04245D1F40738C5FB87B0DEE80761E243F0BE>(marshaled.___unitytls_tlsctx_server_require_client_authentication_20, unitytls_tlsctx_server_require_client_authentication_t_t2AC04245D1F40738C5FB87B0DEE80761E243F0BE_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_tlsctx_server_require_client_authentication_20), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_server_require_client_authentication_t_t2AC04245D1F40738C5FB87B0DEE80761E243F0BE>(marshaled.___unitytls_tlsctx_server_require_client_authentication_20, unitytls_tlsctx_server_require_client_authentication_t_t2AC04245D1F40738C5FB87B0DEE80761E243F0BE_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_tlsctx_set_certificate_callback_21 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_set_certificate_callback_t_t2B54F7228DFC11BF14DCF2201BDD90CF0EF92D41>(marshaled.___unitytls_tlsctx_set_certificate_callback_21, unitytls_tlsctx_set_certificate_callback_t_t2B54F7228DFC11BF14DCF2201BDD90CF0EF92D41_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_tlsctx_set_certificate_callback_21), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_set_certificate_callback_t_t2B54F7228DFC11BF14DCF2201BDD90CF0EF92D41>(marshaled.___unitytls_tlsctx_set_certificate_callback_21, unitytls_tlsctx_set_certificate_callback_t_t2B54F7228DFC11BF14DCF2201BDD90CF0EF92D41_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_tlsctx_set_trace_callback_22 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_set_trace_callback_t_t3C615EACADC2CB1CDA8362B3F775071976E7CF7C>(marshaled.___unitytls_tlsctx_set_trace_callback_22, unitytls_tlsctx_set_trace_callback_t_t3C615EACADC2CB1CDA8362B3F775071976E7CF7C_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_tlsctx_set_trace_callback_22), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_set_trace_callback_t_t3C615EACADC2CB1CDA8362B3F775071976E7CF7C>(marshaled.___unitytls_tlsctx_set_trace_callback_22, unitytls_tlsctx_set_trace_callback_t_t3C615EACADC2CB1CDA8362B3F775071976E7CF7C_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_tlsctx_set_x509verify_callback_23 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_set_x509verify_callback_t_t032FE980BEDD0D201CAF1EE653ABE303CDBCA7C9>(marshaled.___unitytls_tlsctx_set_x509verify_callback_23, unitytls_tlsctx_set_x509verify_callback_t_t032FE980BEDD0D201CAF1EE653ABE303CDBCA7C9_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_tlsctx_set_x509verify_callback_23), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_set_x509verify_callback_t_t032FE980BEDD0D201CAF1EE653ABE303CDBCA7C9>(marshaled.___unitytls_tlsctx_set_x509verify_callback_23, unitytls_tlsctx_set_x509verify_callback_t_t032FE980BEDD0D201CAF1EE653ABE303CDBCA7C9_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_tlsctx_set_supported_ciphersuites_24 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_set_supported_ciphersuites_t_t007E8706D364DE695F1DBF28358058A1E73DF544>(marshaled.___unitytls_tlsctx_set_supported_ciphersuites_24, unitytls_tlsctx_set_supported_ciphersuites_t_t007E8706D364DE695F1DBF28358058A1E73DF544_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_tlsctx_set_supported_ciphersuites_24), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_set_supported_ciphersuites_t_t007E8706D364DE695F1DBF28358058A1E73DF544>(marshaled.___unitytls_tlsctx_set_supported_ciphersuites_24, unitytls_tlsctx_set_supported_ciphersuites_t_t007E8706D364DE695F1DBF28358058A1E73DF544_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_tlsctx_get_ciphersuite_25 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_get_ciphersuite_t_t7317543D399259616648B1AA19447C4B63F70EF2>(marshaled.___unitytls_tlsctx_get_ciphersuite_25, unitytls_tlsctx_get_ciphersuite_t_t7317543D399259616648B1AA19447C4B63F70EF2_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_tlsctx_get_ciphersuite_25), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_get_ciphersuite_t_t7317543D399259616648B1AA19447C4B63F70EF2>(marshaled.___unitytls_tlsctx_get_ciphersuite_25, unitytls_tlsctx_get_ciphersuite_t_t7317543D399259616648B1AA19447C4B63F70EF2_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_tlsctx_get_protocol_26 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_get_protocol_t_t04E3B73C1D77379F7C7388ED4934189365326F3C>(marshaled.___unitytls_tlsctx_get_protocol_26, unitytls_tlsctx_get_protocol_t_t04E3B73C1D77379F7C7388ED4934189365326F3C_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_tlsctx_get_protocol_26), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_get_protocol_t_t04E3B73C1D77379F7C7388ED4934189365326F3C>(marshaled.___unitytls_tlsctx_get_protocol_26, unitytls_tlsctx_get_protocol_t_t04E3B73C1D77379F7C7388ED4934189365326F3C_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_tlsctx_process_handshake_27 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_process_handshake_t_t8D94F5FAD00CD61BF950829866C0C6E29D202606>(marshaled.___unitytls_tlsctx_process_handshake_27, unitytls_tlsctx_process_handshake_t_t8D94F5FAD00CD61BF950829866C0C6E29D202606_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_tlsctx_process_handshake_27), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_process_handshake_t_t8D94F5FAD00CD61BF950829866C0C6E29D202606>(marshaled.___unitytls_tlsctx_process_handshake_27, unitytls_tlsctx_process_handshake_t_t8D94F5FAD00CD61BF950829866C0C6E29D202606_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_tlsctx_read_28 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_read_t_t3E3C711F7A47E704ABDF0DF0B7515E7306EB7C95>(marshaled.___unitytls_tlsctx_read_28, unitytls_tlsctx_read_t_t3E3C711F7A47E704ABDF0DF0B7515E7306EB7C95_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_tlsctx_read_28), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_read_t_t3E3C711F7A47E704ABDF0DF0B7515E7306EB7C95>(marshaled.___unitytls_tlsctx_read_28, unitytls_tlsctx_read_t_t3E3C711F7A47E704ABDF0DF0B7515E7306EB7C95_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_tlsctx_write_29 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_write_t_t976A41600B61F9C8DF022296B67316FFA53EB386>(marshaled.___unitytls_tlsctx_write_29, unitytls_tlsctx_write_t_t976A41600B61F9C8DF022296B67316FFA53EB386_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_tlsctx_write_29), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_write_t_t976A41600B61F9C8DF022296B67316FFA53EB386>(marshaled.___unitytls_tlsctx_write_29, unitytls_tlsctx_write_t_t976A41600B61F9C8DF022296B67316FFA53EB386_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_tlsctx_notify_close_30 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_notify_close_t_t717D19846262E3DF5D1A69C5E136912E7A54B253>(marshaled.___unitytls_tlsctx_notify_close_30, unitytls_tlsctx_notify_close_t_t717D19846262E3DF5D1A69C5E136912E7A54B253_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_tlsctx_notify_close_30), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_notify_close_t_t717D19846262E3DF5D1A69C5E136912E7A54B253>(marshaled.___unitytls_tlsctx_notify_close_30, unitytls_tlsctx_notify_close_t_t717D19846262E3DF5D1A69C5E136912E7A54B253_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_tlsctx_free_31 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_free_t_tFBF7BB64D2E1C183718FB5809ABF0051395FD8F0>(marshaled.___unitytls_tlsctx_free_31, unitytls_tlsctx_free_t_tFBF7BB64D2E1C183718FB5809ABF0051395FD8F0_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_tlsctx_free_31), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_free_t_tFBF7BB64D2E1C183718FB5809ABF0051395FD8F0>(marshaled.___unitytls_tlsctx_free_31, unitytls_tlsctx_free_t_tFBF7BB64D2E1C183718FB5809ABF0051395FD8F0_il2cpp_TypeInfo_var));
unmarshaled.___unitytls_random_generate_bytes_32 = il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_random_generate_bytes_t_t6E7011EF958B0948582F8D1D213B454A5A962569>(marshaled.___unitytls_random_generate_bytes_32, unitytls_random_generate_bytes_t_t6E7011EF958B0948582F8D1D213B454A5A962569_il2cpp_TypeInfo_var);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___unitytls_random_generate_bytes_32), (void*)il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_random_generate_bytes_t_t6E7011EF958B0948582F8D1D213B454A5A962569>(marshaled.___unitytls_random_generate_bytes_32, unitytls_random_generate_bytes_t_t6E7011EF958B0948582F8D1D213B454A5A962569_il2cpp_TypeInfo_var));
}
// Conversion method for clean up from marshalling of: Mono.Unity.UnityTls/unitytls_interface_struct
IL2CPP_EXTERN_C void unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED_marshal_com_cleanup(unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED_marshaled_com& marshaled)
{
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_interface_struct__ctor_mCBFC829FE6CEA8E6545EA7B61E756FFA2EC4A22D (unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* __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
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 unitytls_errorstate_create_t_Invoke_m8B9A9835EA7C6A11E1627CA8904F3F853FB61BC0_Multicast(unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B* __this, 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 unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 (*FunctionPointerType) (unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B* __this, const RuntimeMethod* method);
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 retVal;
memset((&retVal), 0, sizeof(retVal));
for (il2cpp_array_size_t i = 0; i < length; i++)
{
unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B* currentDelegate = reinterpret_cast<unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B*>(delegatesToInvoke[i]);
retVal = ((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
return retVal;
}
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 unitytls_errorstate_create_t_Invoke_m8B9A9835EA7C6A11E1627CA8904F3F853FB61BC0_Open(unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B* __this, const RuntimeMethod* method)
{
typedef unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 (*FunctionPointerType) (const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(method);
}
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 unitytls_errorstate_create_t_Invoke_m8B9A9835EA7C6A11E1627CA8904F3F853FB61BC0_Closed(unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B* __this, const RuntimeMethod* method)
{
typedef unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, method);
}
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 unitytls_errorstate_create_t_Invoke_m8B9A9835EA7C6A11E1627CA8904F3F853FB61BC0_OpenStaticInvoker(unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B* __this, const RuntimeMethod* method)
{
return InvokerFuncInvoker0< unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 >::Invoke(__this->___method_ptr_0, method, NULL);
}
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 unitytls_errorstate_create_t_Invoke_m8B9A9835EA7C6A11E1627CA8904F3F853FB61BC0_ClosedStaticInvoker(unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B* __this, const RuntimeMethod* method)
{
return InvokerFuncInvoker1< unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902, RuntimeObject* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2);
}
IL2CPP_EXTERN_C unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 DelegatePInvokeWrapper_unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B (unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B* __this, const RuntimeMethod* method)
{
typedef unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 (CDECL *PInvokeFunc)();
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Native function invocation
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 returnValue = il2cppPInvokeFunc();
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_errorstate_create_t::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_errorstate_create_t__ctor_m291CCEF12E6C9729662E0BBECB5D4FA6BDBA2F02 (unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B* __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 == 0;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_errorstate_create_t_Invoke_m8B9A9835EA7C6A11E1627CA8904F3F853FB61BC0_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_errorstate_create_t_Invoke_m8B9A9835EA7C6A11E1627CA8904F3F853FB61BC0_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_errorstate_create_t_Invoke_m8B9A9835EA7C6A11E1627CA8904F3F853FB61BC0_Open;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_errorstate_create_t_Invoke_m8B9A9835EA7C6A11E1627CA8904F3F853FB61BC0_Closed;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_errorstate_create_t_Invoke_m8B9A9835EA7C6A11E1627CA8904F3F853FB61BC0_Closed;
}
__this->___extra_arg_5 = (intptr_t)&unitytls_errorstate_create_t_Invoke_m8B9A9835EA7C6A11E1627CA8904F3F853FB61BC0_Multicast;
}
// Mono.Unity.UnityTls/unitytls_errorstate Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_errorstate_create_t::Invoke()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 unitytls_errorstate_create_t_Invoke_m8B9A9835EA7C6A11E1627CA8904F3F853FB61BC0 (unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B* __this, const RuntimeMethod* method)
{
typedef unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 (*FunctionPointerType) (unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B* __this, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, 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
void unitytls_errorstate_raise_error_t_Invoke_m9B2B3433846A318340EDF0ED0E33C45030CCEA02_Multicast(unitytls_errorstate_raise_error_t_t8C20FC78CA5BBEE0248CC09D1C1AF25BCB3835CF* __this, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState0, uint32_t ___errorCode1, 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) (unitytls_errorstate_raise_error_t_t8C20FC78CA5BBEE0248CC09D1C1AF25BCB3835CF* __this, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState0, uint32_t ___errorCode1, const RuntimeMethod* method);
for (il2cpp_array_size_t i = 0; i < length; i++)
{
unitytls_errorstate_raise_error_t_t8C20FC78CA5BBEE0248CC09D1C1AF25BCB3835CF* currentDelegate = reinterpret_cast<unitytls_errorstate_raise_error_t_t8C20FC78CA5BBEE0248CC09D1C1AF25BCB3835CF*>(delegatesToInvoke[i]);
((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___errorState0, ___errorCode1, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
}
void unitytls_errorstate_raise_error_t_Invoke_m9B2B3433846A318340EDF0ED0E33C45030CCEA02_Open(unitytls_errorstate_raise_error_t_t8C20FC78CA5BBEE0248CC09D1C1AF25BCB3835CF* __this, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState0, uint32_t ___errorCode1, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, uint32_t, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(___errorState0, ___errorCode1, method);
}
void unitytls_errorstate_raise_error_t_Invoke_m9B2B3433846A318340EDF0ED0E33C45030CCEA02_Closed(unitytls_errorstate_raise_error_t_t8C20FC78CA5BBEE0248CC09D1C1AF25BCB3835CF* __this, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState0, uint32_t ___errorCode1, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, uint32_t, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___errorState0, ___errorCode1, method);
}
void unitytls_errorstate_raise_error_t_Invoke_m9B2B3433846A318340EDF0ED0E33C45030CCEA02_OpenStaticInvoker(unitytls_errorstate_raise_error_t_t8C20FC78CA5BBEE0248CC09D1C1AF25BCB3835CF* __this, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState0, uint32_t ___errorCode1, const RuntimeMethod* method)
{
InvokerActionInvoker2< unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, uint32_t >::Invoke(__this->___method_ptr_0, method, NULL, ___errorState0, ___errorCode1);
}
void unitytls_errorstate_raise_error_t_Invoke_m9B2B3433846A318340EDF0ED0E33C45030CCEA02_ClosedStaticInvoker(unitytls_errorstate_raise_error_t_t8C20FC78CA5BBEE0248CC09D1C1AF25BCB3835CF* __this, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState0, uint32_t ___errorCode1, const RuntimeMethod* method)
{
InvokerActionInvoker3< RuntimeObject*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, uint32_t >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___errorState0, ___errorCode1);
}
IL2CPP_EXTERN_C void DelegatePInvokeWrapper_unitytls_errorstate_raise_error_t_t8C20FC78CA5BBEE0248CC09D1C1AF25BCB3835CF (unitytls_errorstate_raise_error_t_t8C20FC78CA5BBEE0248CC09D1C1AF25BCB3835CF* __this, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState0, uint32_t ___errorCode1, const RuntimeMethod* method)
{
typedef void (CDECL *PInvokeFunc)(unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, uint32_t);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Native function invocation
il2cppPInvokeFunc(___errorState0, ___errorCode1);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_errorstate_raise_error_t::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_errorstate_raise_error_t__ctor_mF30A64F84A8FC246DD062993A45C038B30FC6009 (unitytls_errorstate_raise_error_t_t8C20FC78CA5BBEE0248CC09D1C1AF25BCB3835CF* __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)&unitytls_errorstate_raise_error_t_Invoke_m9B2B3433846A318340EDF0ED0E33C45030CCEA02_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_errorstate_raise_error_t_Invoke_m9B2B3433846A318340EDF0ED0E33C45030CCEA02_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_errorstate_raise_error_t_Invoke_m9B2B3433846A318340EDF0ED0E33C45030CCEA02_Open;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_errorstate_raise_error_t_Invoke_m9B2B3433846A318340EDF0ED0E33C45030CCEA02_Closed;
}
else
{
bool isOpen = methodCount == 1;
if (isOpen)
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_errorstate_raise_error_t_Invoke_m9B2B3433846A318340EDF0ED0E33C45030CCEA02_Open;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_errorstate_raise_error_t_Invoke_m9B2B3433846A318340EDF0ED0E33C45030CCEA02_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&unitytls_errorstate_raise_error_t_Invoke_m9B2B3433846A318340EDF0ED0E33C45030CCEA02_Multicast;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_errorstate_raise_error_t::Invoke(Mono.Unity.UnityTls/unitytls_errorstate*,Mono.Unity.UnityTls/unitytls_error_code)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_errorstate_raise_error_t_Invoke_m9B2B3433846A318340EDF0ED0E33C45030CCEA02 (unitytls_errorstate_raise_error_t_t8C20FC78CA5BBEE0248CC09D1C1AF25BCB3835CF* __this, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState0, uint32_t ___errorCode1, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_errorstate_raise_error_t_t8C20FC78CA5BBEE0248CC09D1C1AF25BCB3835CF* __this, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState0, uint32_t ___errorCode1, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___errorState0, ___errorCode1, 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
unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2 unitytls_key_get_ref_t_Invoke_mF5D3582922E868C42BCF32EB14471F8C800BB66E_Multicast(unitytls_key_get_ref_t_t8335968B19449FE0ED92E67AE9B6D95915684209* __this, unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* ___key0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, 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 unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2 (*FunctionPointerType) (unitytls_key_get_ref_t_t8335968B19449FE0ED92E67AE9B6D95915684209* __this, unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* ___key0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method);
unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2 retVal;
memset((&retVal), 0, sizeof(retVal));
for (il2cpp_array_size_t i = 0; i < length; i++)
{
unitytls_key_get_ref_t_t8335968B19449FE0ED92E67AE9B6D95915684209* currentDelegate = reinterpret_cast<unitytls_key_get_ref_t_t8335968B19449FE0ED92E67AE9B6D95915684209*>(delegatesToInvoke[i]);
retVal = ((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___key0, ___errorState1, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
return retVal;
}
unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2 unitytls_key_get_ref_t_Invoke_mF5D3582922E868C42BCF32EB14471F8C800BB66E_Open(unitytls_key_get_ref_t_t8335968B19449FE0ED92E67AE9B6D95915684209* __this, unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* ___key0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
typedef unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2 (*FunctionPointerType) (unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(___key0, ___errorState1, method);
}
unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2 unitytls_key_get_ref_t_Invoke_mF5D3582922E868C42BCF32EB14471F8C800BB66E_Closed(unitytls_key_get_ref_t_t8335968B19449FE0ED92E67AE9B6D95915684209* __this, unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* ___key0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
typedef unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2 (*FunctionPointerType) (RuntimeObject*, unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___key0, ___errorState1, method);
}
unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2 unitytls_key_get_ref_t_Invoke_mF5D3582922E868C42BCF32EB14471F8C800BB66E_OpenStaticInvoker(unitytls_key_get_ref_t_t8335968B19449FE0ED92E67AE9B6D95915684209* __this, unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* ___key0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
return InvokerFuncInvoker2< unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2, unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, ___key0, ___errorState1);
}
unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2 unitytls_key_get_ref_t_Invoke_mF5D3582922E868C42BCF32EB14471F8C800BB66E_ClosedStaticInvoker(unitytls_key_get_ref_t_t8335968B19449FE0ED92E67AE9B6D95915684209* __this, unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* ___key0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
return InvokerFuncInvoker3< unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2, RuntimeObject*, unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___key0, ___errorState1);
}
IL2CPP_EXTERN_C unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2 DelegatePInvokeWrapper_unitytls_key_get_ref_t_t8335968B19449FE0ED92E67AE9B6D95915684209 (unitytls_key_get_ref_t_t8335968B19449FE0ED92E67AE9B6D95915684209* __this, unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* ___key0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
typedef unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2 (CDECL *PInvokeFunc)(unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Native function invocation
unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2 returnValue = il2cppPInvokeFunc(___key0, ___errorState1);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_get_ref_t::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_key_get_ref_t__ctor_mEDA7937D1EC76342E6CE92AF394E7E1A37F664B1 (unitytls_key_get_ref_t_t8335968B19449FE0ED92E67AE9B6D95915684209* __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)&unitytls_key_get_ref_t_Invoke_mF5D3582922E868C42BCF32EB14471F8C800BB66E_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_key_get_ref_t_Invoke_mF5D3582922E868C42BCF32EB14471F8C800BB66E_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_key_get_ref_t_Invoke_mF5D3582922E868C42BCF32EB14471F8C800BB66E_Open;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_key_get_ref_t_Invoke_mF5D3582922E868C42BCF32EB14471F8C800BB66E_Closed;
}
else
{
bool isOpen = methodCount == 1;
if (isOpen)
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_key_get_ref_t_Invoke_mF5D3582922E868C42BCF32EB14471F8C800BB66E_Open;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_key_get_ref_t_Invoke_mF5D3582922E868C42BCF32EB14471F8C800BB66E_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&unitytls_key_get_ref_t_Invoke_mF5D3582922E868C42BCF32EB14471F8C800BB66E_Multicast;
}
// Mono.Unity.UnityTls/unitytls_key_ref Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_get_ref_t::Invoke(Mono.Unity.UnityTls/unitytls_key*,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2 unitytls_key_get_ref_t_Invoke_mF5D3582922E868C42BCF32EB14471F8C800BB66E (unitytls_key_get_ref_t_t8335968B19449FE0ED92E67AE9B6D95915684209* __this, unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* ___key0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
typedef unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2 (*FunctionPointerType) (unitytls_key_get_ref_t_t8335968B19449FE0ED92E67AE9B6D95915684209* __this, unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* ___key0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___key0, ___errorState1, 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
unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* unitytls_key_parse_der_t_Invoke_m244086296EBDE0C0B0F072B33AAD5BA39A030DB6_Multicast(unitytls_key_parse_der_t_tC218AEF9253FA105762F39041F696A06C52D3F10* __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, uint8_t* ___password2, intptr_t ___passwordLen3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, 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 unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* (*FunctionPointerType) (unitytls_key_parse_der_t_tC218AEF9253FA105762F39041F696A06C52D3F10* __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, uint8_t* ___password2, intptr_t ___passwordLen3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method);
unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* retVal = NULL;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
unitytls_key_parse_der_t_tC218AEF9253FA105762F39041F696A06C52D3F10* currentDelegate = reinterpret_cast<unitytls_key_parse_der_t_tC218AEF9253FA105762F39041F696A06C52D3F10*>(delegatesToInvoke[i]);
retVal = ((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
return retVal;
}
unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* unitytls_key_parse_der_t_Invoke_m244086296EBDE0C0B0F072B33AAD5BA39A030DB6_Open(unitytls_key_parse_der_t_tC218AEF9253FA105762F39041F696A06C52D3F10* __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, uint8_t* ___password2, intptr_t ___passwordLen3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method)
{
typedef unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* (*FunctionPointerType) (uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4, method);
}
unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* unitytls_key_parse_der_t_Invoke_m244086296EBDE0C0B0F072B33AAD5BA39A030DB6_Closed(unitytls_key_parse_der_t_tC218AEF9253FA105762F39041F696A06C52D3F10* __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, uint8_t* ___password2, intptr_t ___passwordLen3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method)
{
typedef unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* (*FunctionPointerType) (RuntimeObject*, uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4, method);
}
unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* unitytls_key_parse_der_t_Invoke_m244086296EBDE0C0B0F072B33AAD5BA39A030DB6_OpenStaticInvoker(unitytls_key_parse_der_t_tC218AEF9253FA105762F39041F696A06C52D3F10* __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, uint8_t* ___password2, intptr_t ___passwordLen3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method)
{
return InvokerFuncInvoker5< unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8*, uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, ___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4);
}
unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* unitytls_key_parse_der_t_Invoke_m244086296EBDE0C0B0F072B33AAD5BA39A030DB6_ClosedStaticInvoker(unitytls_key_parse_der_t_tC218AEF9253FA105762F39041F696A06C52D3F10* __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, uint8_t* ___password2, intptr_t ___passwordLen3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method)
{
return InvokerFuncInvoker6< unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8*, RuntimeObject*, uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4);
}
IL2CPP_EXTERN_C unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* DelegatePInvokeWrapper_unitytls_key_parse_der_t_tC218AEF9253FA105762F39041F696A06C52D3F10 (unitytls_key_parse_der_t_tC218AEF9253FA105762F39041F696A06C52D3F10* __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, uint8_t* ___password2, intptr_t ___passwordLen3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method)
{
typedef unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* (CDECL *PInvokeFunc)(uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Native function invocation
unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* returnValue = il2cppPInvokeFunc(___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_parse_der_t::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_key_parse_der_t__ctor_m25AD8C01A87CF5F737E649F1FB9CA340A9A832A8 (unitytls_key_parse_der_t_tC218AEF9253FA105762F39041F696A06C52D3F10* __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 == 5;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_key_parse_der_t_Invoke_m244086296EBDE0C0B0F072B33AAD5BA39A030DB6_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_key_parse_der_t_Invoke_m244086296EBDE0C0B0F072B33AAD5BA39A030DB6_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_key_parse_der_t_Invoke_m244086296EBDE0C0B0F072B33AAD5BA39A030DB6_Open;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_key_parse_der_t_Invoke_m244086296EBDE0C0B0F072B33AAD5BA39A030DB6_Closed;
}
else
{
bool isOpen = methodCount == 4;
if (isOpen)
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_key_parse_der_t_Invoke_m244086296EBDE0C0B0F072B33AAD5BA39A030DB6_Open;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_key_parse_der_t_Invoke_m244086296EBDE0C0B0F072B33AAD5BA39A030DB6_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&unitytls_key_parse_der_t_Invoke_m244086296EBDE0C0B0F072B33AAD5BA39A030DB6_Multicast;
}
// Mono.Unity.UnityTls/unitytls_key* Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_parse_der_t::Invoke(System.Byte*,System.IntPtr,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* unitytls_key_parse_der_t_Invoke_m244086296EBDE0C0B0F072B33AAD5BA39A030DB6 (unitytls_key_parse_der_t_tC218AEF9253FA105762F39041F696A06C52D3F10* __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, uint8_t* ___password2, intptr_t ___passwordLen3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method)
{
typedef unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* (*FunctionPointerType) (unitytls_key_parse_der_t_tC218AEF9253FA105762F39041F696A06C52D3F10* __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, uint8_t* ___password2, intptr_t ___passwordLen3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4, 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
unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* unitytls_key_parse_pem_t_Invoke_mE842DC1436977A2982224694DB5BCC2FF8A9B331_Multicast(unitytls_key_parse_pem_t_tE945670C6CB28BBF4670D2E8E904B7D8A2AB277B* __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, uint8_t* ___password2, intptr_t ___passwordLen3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, 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 unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* (*FunctionPointerType) (unitytls_key_parse_pem_t_tE945670C6CB28BBF4670D2E8E904B7D8A2AB277B* __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, uint8_t* ___password2, intptr_t ___passwordLen3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method);
unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* retVal = NULL;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
unitytls_key_parse_pem_t_tE945670C6CB28BBF4670D2E8E904B7D8A2AB277B* currentDelegate = reinterpret_cast<unitytls_key_parse_pem_t_tE945670C6CB28BBF4670D2E8E904B7D8A2AB277B*>(delegatesToInvoke[i]);
retVal = ((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
return retVal;
}
unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* unitytls_key_parse_pem_t_Invoke_mE842DC1436977A2982224694DB5BCC2FF8A9B331_Open(unitytls_key_parse_pem_t_tE945670C6CB28BBF4670D2E8E904B7D8A2AB277B* __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, uint8_t* ___password2, intptr_t ___passwordLen3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method)
{
typedef unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* (*FunctionPointerType) (uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4, method);
}
unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* unitytls_key_parse_pem_t_Invoke_mE842DC1436977A2982224694DB5BCC2FF8A9B331_Closed(unitytls_key_parse_pem_t_tE945670C6CB28BBF4670D2E8E904B7D8A2AB277B* __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, uint8_t* ___password2, intptr_t ___passwordLen3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method)
{
typedef unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* (*FunctionPointerType) (RuntimeObject*, uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4, method);
}
unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* unitytls_key_parse_pem_t_Invoke_mE842DC1436977A2982224694DB5BCC2FF8A9B331_OpenStaticInvoker(unitytls_key_parse_pem_t_tE945670C6CB28BBF4670D2E8E904B7D8A2AB277B* __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, uint8_t* ___password2, intptr_t ___passwordLen3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method)
{
return InvokerFuncInvoker5< unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8*, uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, ___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4);
}
unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* unitytls_key_parse_pem_t_Invoke_mE842DC1436977A2982224694DB5BCC2FF8A9B331_ClosedStaticInvoker(unitytls_key_parse_pem_t_tE945670C6CB28BBF4670D2E8E904B7D8A2AB277B* __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, uint8_t* ___password2, intptr_t ___passwordLen3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method)
{
return InvokerFuncInvoker6< unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8*, RuntimeObject*, uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4);
}
IL2CPP_EXTERN_C unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* DelegatePInvokeWrapper_unitytls_key_parse_pem_t_tE945670C6CB28BBF4670D2E8E904B7D8A2AB277B (unitytls_key_parse_pem_t_tE945670C6CB28BBF4670D2E8E904B7D8A2AB277B* __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, uint8_t* ___password2, intptr_t ___passwordLen3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method)
{
typedef unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* (CDECL *PInvokeFunc)(uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Native function invocation
unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* returnValue = il2cppPInvokeFunc(___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_parse_pem_t::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_key_parse_pem_t__ctor_m8F4D69BD7B0988BF7682B3E5EA5934141BFEE440 (unitytls_key_parse_pem_t_tE945670C6CB28BBF4670D2E8E904B7D8A2AB277B* __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 == 5;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_key_parse_pem_t_Invoke_mE842DC1436977A2982224694DB5BCC2FF8A9B331_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_key_parse_pem_t_Invoke_mE842DC1436977A2982224694DB5BCC2FF8A9B331_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_key_parse_pem_t_Invoke_mE842DC1436977A2982224694DB5BCC2FF8A9B331_Open;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_key_parse_pem_t_Invoke_mE842DC1436977A2982224694DB5BCC2FF8A9B331_Closed;
}
else
{
bool isOpen = methodCount == 4;
if (isOpen)
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_key_parse_pem_t_Invoke_mE842DC1436977A2982224694DB5BCC2FF8A9B331_Open;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_key_parse_pem_t_Invoke_mE842DC1436977A2982224694DB5BCC2FF8A9B331_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&unitytls_key_parse_pem_t_Invoke_mE842DC1436977A2982224694DB5BCC2FF8A9B331_Multicast;
}
// Mono.Unity.UnityTls/unitytls_key* Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_parse_pem_t::Invoke(System.Byte*,System.IntPtr,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* unitytls_key_parse_pem_t_Invoke_mE842DC1436977A2982224694DB5BCC2FF8A9B331 (unitytls_key_parse_pem_t_tE945670C6CB28BBF4670D2E8E904B7D8A2AB277B* __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, uint8_t* ___password2, intptr_t ___passwordLen3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method)
{
typedef unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* (*FunctionPointerType) (unitytls_key_parse_pem_t_tE945670C6CB28BBF4670D2E8E904B7D8A2AB277B* __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, uint8_t* ___password2, intptr_t ___passwordLen3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4, 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
void unitytls_key_free_t_Invoke_m860A3C396228B7ADF9406AE78D439BDCD12FB98E_Multicast(unitytls_key_free_t_tDB8665140BAF30447F3650D323078C193566FF72* __this, unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* ___key0, 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) (unitytls_key_free_t_tDB8665140BAF30447F3650D323078C193566FF72* __this, unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* ___key0, const RuntimeMethod* method);
for (il2cpp_array_size_t i = 0; i < length; i++)
{
unitytls_key_free_t_tDB8665140BAF30447F3650D323078C193566FF72* currentDelegate = reinterpret_cast<unitytls_key_free_t_tDB8665140BAF30447F3650D323078C193566FF72*>(delegatesToInvoke[i]);
((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___key0, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
}
void unitytls_key_free_t_Invoke_m860A3C396228B7ADF9406AE78D439BDCD12FB98E_Open(unitytls_key_free_t_tDB8665140BAF30447F3650D323078C193566FF72* __this, unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* ___key0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(___key0, method);
}
void unitytls_key_free_t_Invoke_m860A3C396228B7ADF9406AE78D439BDCD12FB98E_Closed(unitytls_key_free_t_tDB8665140BAF30447F3650D323078C193566FF72* __this, unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* ___key0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___key0, method);
}
void unitytls_key_free_t_Invoke_m860A3C396228B7ADF9406AE78D439BDCD12FB98E_OpenStaticInvoker(unitytls_key_free_t_tDB8665140BAF30447F3650D323078C193566FF72* __this, unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* ___key0, const RuntimeMethod* method)
{
InvokerActionInvoker1< unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* >::Invoke(__this->___method_ptr_0, method, NULL, ___key0);
}
void unitytls_key_free_t_Invoke_m860A3C396228B7ADF9406AE78D439BDCD12FB98E_ClosedStaticInvoker(unitytls_key_free_t_tDB8665140BAF30447F3650D323078C193566FF72* __this, unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* ___key0, const RuntimeMethod* method)
{
InvokerActionInvoker2< RuntimeObject*, unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___key0);
}
IL2CPP_EXTERN_C void DelegatePInvokeWrapper_unitytls_key_free_t_tDB8665140BAF30447F3650D323078C193566FF72 (unitytls_key_free_t_tDB8665140BAF30447F3650D323078C193566FF72* __this, unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* ___key0, const RuntimeMethod* method)
{
typedef void (CDECL *PInvokeFunc)(unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8*);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Native function invocation
il2cppPInvokeFunc(___key0);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_free_t::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_key_free_t__ctor_m935A5571CE60C369950D58C79432FB1C50231C37 (unitytls_key_free_t_tDB8665140BAF30447F3650D323078C193566FF72* __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)&unitytls_key_free_t_Invoke_m860A3C396228B7ADF9406AE78D439BDCD12FB98E_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_key_free_t_Invoke_m860A3C396228B7ADF9406AE78D439BDCD12FB98E_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_key_free_t_Invoke_m860A3C396228B7ADF9406AE78D439BDCD12FB98E_Open;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_key_free_t_Invoke_m860A3C396228B7ADF9406AE78D439BDCD12FB98E_Closed;
}
else
{
bool isOpen = methodCount == 0;
if (isOpen)
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_key_free_t_Invoke_m860A3C396228B7ADF9406AE78D439BDCD12FB98E_Open;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_key_free_t_Invoke_m860A3C396228B7ADF9406AE78D439BDCD12FB98E_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&unitytls_key_free_t_Invoke_m860A3C396228B7ADF9406AE78D439BDCD12FB98E_Multicast;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_free_t::Invoke(Mono.Unity.UnityTls/unitytls_key*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_key_free_t_Invoke_m860A3C396228B7ADF9406AE78D439BDCD12FB98E (unitytls_key_free_t_tDB8665140BAF30447F3650D323078C193566FF72* __this, unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* ___key0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_key_free_t_tDB8665140BAF30447F3650D323078C193566FF72* __this, unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* ___key0, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___key0, 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
intptr_t unitytls_x509_export_der_t_Invoke_m13DB2E205EF9ED37B75F5B763C5080E7077841AD_Multicast(unitytls_x509_export_der_t_tB784597940DE501BB5FEFA3EA528634559A16749* __this, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 ___cert0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, 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 intptr_t (*FunctionPointerType) (unitytls_x509_export_der_t_tB784597940DE501BB5FEFA3EA528634559A16749* __this, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 ___cert0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method);
intptr_t retVal;
memset((&retVal), 0, sizeof(retVal));
for (il2cpp_array_size_t i = 0; i < length; i++)
{
unitytls_x509_export_der_t_tB784597940DE501BB5FEFA3EA528634559A16749* currentDelegate = reinterpret_cast<unitytls_x509_export_der_t_tB784597940DE501BB5FEFA3EA528634559A16749*>(delegatesToInvoke[i]);
retVal = ((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___cert0, ___buffer1, ___bufferLen2, ___errorState3, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
return retVal;
}
intptr_t unitytls_x509_export_der_t_Invoke_m13DB2E205EF9ED37B75F5B763C5080E7077841AD_Open(unitytls_x509_export_der_t_tB784597940DE501BB5FEFA3EA528634559A16749* __this, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 ___cert0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef intptr_t (*FunctionPointerType) (unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(___cert0, ___buffer1, ___bufferLen2, ___errorState3, method);
}
intptr_t unitytls_x509_export_der_t_Invoke_m13DB2E205EF9ED37B75F5B763C5080E7077841AD_Closed(unitytls_x509_export_der_t_tB784597940DE501BB5FEFA3EA528634559A16749* __this, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 ___cert0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef intptr_t (*FunctionPointerType) (RuntimeObject*, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___cert0, ___buffer1, ___bufferLen2, ___errorState3, method);
}
intptr_t unitytls_x509_export_der_t_Invoke_m13DB2E205EF9ED37B75F5B763C5080E7077841AD_OpenStaticInvoker(unitytls_x509_export_der_t_tB784597940DE501BB5FEFA3EA528634559A16749* __this, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 ___cert0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
return InvokerFuncInvoker4< intptr_t, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, ___cert0, ___buffer1, ___bufferLen2, ___errorState3);
}
intptr_t unitytls_x509_export_der_t_Invoke_m13DB2E205EF9ED37B75F5B763C5080E7077841AD_ClosedStaticInvoker(unitytls_x509_export_der_t_tB784597940DE501BB5FEFA3EA528634559A16749* __this, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 ___cert0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
return InvokerFuncInvoker5< intptr_t, RuntimeObject*, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___cert0, ___buffer1, ___bufferLen2, ___errorState3);
}
IL2CPP_EXTERN_C intptr_t DelegatePInvokeWrapper_unitytls_x509_export_der_t_tB784597940DE501BB5FEFA3EA528634559A16749 (unitytls_x509_export_der_t_tB784597940DE501BB5FEFA3EA528634559A16749* __this, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 ___cert0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef intptr_t (CDECL *PInvokeFunc)(unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Native function invocation
intptr_t returnValue = il2cppPInvokeFunc(___cert0, ___buffer1, ___bufferLen2, ___errorState3);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509_export_der_t::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_x509_export_der_t__ctor_m9BF2B0B567856AE42AB0ED274CD26ACE5FC0186B (unitytls_x509_export_der_t_tB784597940DE501BB5FEFA3EA528634559A16749* __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 == 4;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509_export_der_t_Invoke_m13DB2E205EF9ED37B75F5B763C5080E7077841AD_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509_export_der_t_Invoke_m13DB2E205EF9ED37B75F5B763C5080E7077841AD_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509_export_der_t_Invoke_m13DB2E205EF9ED37B75F5B763C5080E7077841AD_Open;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509_export_der_t_Invoke_m13DB2E205EF9ED37B75F5B763C5080E7077841AD_Closed;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509_export_der_t_Invoke_m13DB2E205EF9ED37B75F5B763C5080E7077841AD_Closed;
}
__this->___extra_arg_5 = (intptr_t)&unitytls_x509_export_der_t_Invoke_m13DB2E205EF9ED37B75F5B763C5080E7077841AD_Multicast;
}
// System.IntPtr Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509_export_der_t::Invoke(Mono.Unity.UnityTls/unitytls_x509_ref,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t unitytls_x509_export_der_t_Invoke_m13DB2E205EF9ED37B75F5B763C5080E7077841AD (unitytls_x509_export_der_t_tB784597940DE501BB5FEFA3EA528634559A16749* __this, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 ___cert0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef intptr_t (*FunctionPointerType) (unitytls_x509_export_der_t_tB784597940DE501BB5FEFA3EA528634559A16749* __this, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 ___cert0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___cert0, ___buffer1, ___bufferLen2, ___errorState3, 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
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 unitytls_x509list_get_ref_t_Invoke_mE7C675B7847FFEF96C25AE757D34CE920AA16EC2_Multicast(unitytls_x509list_get_ref_t_t264CEEF7B8D1F10FD95E1BC78BB48BCA11E305EA* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, 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 unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 (*FunctionPointerType) (unitytls_x509list_get_ref_t_t264CEEF7B8D1F10FD95E1BC78BB48BCA11E305EA* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method);
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 retVal;
memset((&retVal), 0, sizeof(retVal));
for (il2cpp_array_size_t i = 0; i < length; i++)
{
unitytls_x509list_get_ref_t_t264CEEF7B8D1F10FD95E1BC78BB48BCA11E305EA* currentDelegate = reinterpret_cast<unitytls_x509list_get_ref_t_t264CEEF7B8D1F10FD95E1BC78BB48BCA11E305EA*>(delegatesToInvoke[i]);
retVal = ((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___list0, ___errorState1, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
return retVal;
}
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 unitytls_x509list_get_ref_t_Invoke_mE7C675B7847FFEF96C25AE757D34CE920AA16EC2_Open(unitytls_x509list_get_ref_t_t264CEEF7B8D1F10FD95E1BC78BB48BCA11E305EA* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
typedef unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 (*FunctionPointerType) (unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(___list0, ___errorState1, method);
}
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 unitytls_x509list_get_ref_t_Invoke_mE7C675B7847FFEF96C25AE757D34CE920AA16EC2_Closed(unitytls_x509list_get_ref_t_t264CEEF7B8D1F10FD95E1BC78BB48BCA11E305EA* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
typedef unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 (*FunctionPointerType) (RuntimeObject*, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___list0, ___errorState1, method);
}
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 unitytls_x509list_get_ref_t_Invoke_mE7C675B7847FFEF96C25AE757D34CE920AA16EC2_OpenStaticInvoker(unitytls_x509list_get_ref_t_t264CEEF7B8D1F10FD95E1BC78BB48BCA11E305EA* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
return InvokerFuncInvoker2< unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, ___list0, ___errorState1);
}
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 unitytls_x509list_get_ref_t_Invoke_mE7C675B7847FFEF96C25AE757D34CE920AA16EC2_ClosedStaticInvoker(unitytls_x509list_get_ref_t_t264CEEF7B8D1F10FD95E1BC78BB48BCA11E305EA* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
return InvokerFuncInvoker3< unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17, RuntimeObject*, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___list0, ___errorState1);
}
IL2CPP_EXTERN_C unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 DelegatePInvokeWrapper_unitytls_x509list_get_ref_t_t264CEEF7B8D1F10FD95E1BC78BB48BCA11E305EA (unitytls_x509list_get_ref_t_t264CEEF7B8D1F10FD95E1BC78BB48BCA11E305EA* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
typedef unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 (CDECL *PInvokeFunc)(unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Native function invocation
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 returnValue = il2cppPInvokeFunc(___list0, ___errorState1);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_get_ref_t::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_x509list_get_ref_t__ctor_m6977636DC288FB0809D7C0CE8D9D31D25795F77C (unitytls_x509list_get_ref_t_t264CEEF7B8D1F10FD95E1BC78BB48BCA11E305EA* __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)&unitytls_x509list_get_ref_t_Invoke_mE7C675B7847FFEF96C25AE757D34CE920AA16EC2_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509list_get_ref_t_Invoke_mE7C675B7847FFEF96C25AE757D34CE920AA16EC2_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509list_get_ref_t_Invoke_mE7C675B7847FFEF96C25AE757D34CE920AA16EC2_Open;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509list_get_ref_t_Invoke_mE7C675B7847FFEF96C25AE757D34CE920AA16EC2_Closed;
}
else
{
bool isOpen = methodCount == 1;
if (isOpen)
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509list_get_ref_t_Invoke_mE7C675B7847FFEF96C25AE757D34CE920AA16EC2_Open;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509list_get_ref_t_Invoke_mE7C675B7847FFEF96C25AE757D34CE920AA16EC2_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&unitytls_x509list_get_ref_t_Invoke_mE7C675B7847FFEF96C25AE757D34CE920AA16EC2_Multicast;
}
// Mono.Unity.UnityTls/unitytls_x509list_ref Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_get_ref_t::Invoke(Mono.Unity.UnityTls/unitytls_x509list*,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 unitytls_x509list_get_ref_t_Invoke_mE7C675B7847FFEF96C25AE757D34CE920AA16EC2 (unitytls_x509list_get_ref_t_t264CEEF7B8D1F10FD95E1BC78BB48BCA11E305EA* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
typedef unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 (*FunctionPointerType) (unitytls_x509list_get_ref_t_t264CEEF7B8D1F10FD95E1BC78BB48BCA11E305EA* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___list0, ___errorState1, 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
unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 unitytls_x509list_get_x509_t_Invoke_m9080273A34FE768B80024B96001D5B7451A46EC0_Multicast(unitytls_x509list_get_x509_t_t428DCD367D50DCDD5ECE6DCFEB8967C5F7C3DFE8* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___list0, intptr_t ___index1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, 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 unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 (*FunctionPointerType) (unitytls_x509list_get_x509_t_t428DCD367D50DCDD5ECE6DCFEB8967C5F7C3DFE8* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___list0, intptr_t ___index1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method);
unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 retVal;
memset((&retVal), 0, sizeof(retVal));
for (il2cpp_array_size_t i = 0; i < length; i++)
{
unitytls_x509list_get_x509_t_t428DCD367D50DCDD5ECE6DCFEB8967C5F7C3DFE8* currentDelegate = reinterpret_cast<unitytls_x509list_get_x509_t_t428DCD367D50DCDD5ECE6DCFEB8967C5F7C3DFE8*>(delegatesToInvoke[i]);
retVal = ((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___list0, ___index1, ___errorState2, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
return retVal;
}
unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 unitytls_x509list_get_x509_t_Invoke_m9080273A34FE768B80024B96001D5B7451A46EC0_Open(unitytls_x509list_get_x509_t_t428DCD367D50DCDD5ECE6DCFEB8967C5F7C3DFE8* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___list0, intptr_t ___index1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method)
{
typedef unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 (*FunctionPointerType) (unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(___list0, ___index1, ___errorState2, method);
}
unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 unitytls_x509list_get_x509_t_Invoke_m9080273A34FE768B80024B96001D5B7451A46EC0_Closed(unitytls_x509list_get_x509_t_t428DCD367D50DCDD5ECE6DCFEB8967C5F7C3DFE8* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___list0, intptr_t ___index1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method)
{
typedef unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 (*FunctionPointerType) (RuntimeObject*, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___list0, ___index1, ___errorState2, method);
}
unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 unitytls_x509list_get_x509_t_Invoke_m9080273A34FE768B80024B96001D5B7451A46EC0_OpenStaticInvoker(unitytls_x509list_get_x509_t_t428DCD367D50DCDD5ECE6DCFEB8967C5F7C3DFE8* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___list0, intptr_t ___index1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method)
{
return InvokerFuncInvoker3< unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, ___list0, ___index1, ___errorState2);
}
unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 unitytls_x509list_get_x509_t_Invoke_m9080273A34FE768B80024B96001D5B7451A46EC0_ClosedStaticInvoker(unitytls_x509list_get_x509_t_t428DCD367D50DCDD5ECE6DCFEB8967C5F7C3DFE8* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___list0, intptr_t ___index1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method)
{
return InvokerFuncInvoker4< unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333, RuntimeObject*, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___list0, ___index1, ___errorState2);
}
IL2CPP_EXTERN_C unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 DelegatePInvokeWrapper_unitytls_x509list_get_x509_t_t428DCD367D50DCDD5ECE6DCFEB8967C5F7C3DFE8 (unitytls_x509list_get_x509_t_t428DCD367D50DCDD5ECE6DCFEB8967C5F7C3DFE8* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___list0, intptr_t ___index1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method)
{
typedef unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 (CDECL *PInvokeFunc)(unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Native function invocation
unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 returnValue = il2cppPInvokeFunc(___list0, ___index1, ___errorState2);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_get_x509_t::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_x509list_get_x509_t__ctor_mFF7BC99AB91FE7F9CCB586988B246F597ADF53DD (unitytls_x509list_get_x509_t_t428DCD367D50DCDD5ECE6DCFEB8967C5F7C3DFE8* __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)&unitytls_x509list_get_x509_t_Invoke_m9080273A34FE768B80024B96001D5B7451A46EC0_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509list_get_x509_t_Invoke_m9080273A34FE768B80024B96001D5B7451A46EC0_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509list_get_x509_t_Invoke_m9080273A34FE768B80024B96001D5B7451A46EC0_Open;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509list_get_x509_t_Invoke_m9080273A34FE768B80024B96001D5B7451A46EC0_Closed;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509list_get_x509_t_Invoke_m9080273A34FE768B80024B96001D5B7451A46EC0_Closed;
}
__this->___extra_arg_5 = (intptr_t)&unitytls_x509list_get_x509_t_Invoke_m9080273A34FE768B80024B96001D5B7451A46EC0_Multicast;
}
// Mono.Unity.UnityTls/unitytls_x509_ref Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_get_x509_t::Invoke(Mono.Unity.UnityTls/unitytls_x509list_ref,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 unitytls_x509list_get_x509_t_Invoke_m9080273A34FE768B80024B96001D5B7451A46EC0 (unitytls_x509list_get_x509_t_t428DCD367D50DCDD5ECE6DCFEB8967C5F7C3DFE8* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___list0, intptr_t ___index1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method)
{
typedef unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 (*FunctionPointerType) (unitytls_x509list_get_x509_t_t428DCD367D50DCDD5ECE6DCFEB8967C5F7C3DFE8* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___list0, intptr_t ___index1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___list0, ___index1, ___errorState2, 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
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* unitytls_x509list_create_t_Invoke_m05D8719D913109E4997FF913015E66455BC3C7D3_Multicast(unitytls_x509list_create_t_t8873365FFB1556CE6B643700DB0C30E391B758D6* __this, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState0, 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 unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* (*FunctionPointerType) (unitytls_x509list_create_t_t8873365FFB1556CE6B643700DB0C30E391B758D6* __this, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState0, const RuntimeMethod* method);
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* retVal = NULL;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
unitytls_x509list_create_t_t8873365FFB1556CE6B643700DB0C30E391B758D6* currentDelegate = reinterpret_cast<unitytls_x509list_create_t_t8873365FFB1556CE6B643700DB0C30E391B758D6*>(delegatesToInvoke[i]);
retVal = ((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___errorState0, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
return retVal;
}
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* unitytls_x509list_create_t_Invoke_m05D8719D913109E4997FF913015E66455BC3C7D3_Open(unitytls_x509list_create_t_t8873365FFB1556CE6B643700DB0C30E391B758D6* __this, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState0, const RuntimeMethod* method)
{
typedef unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* (*FunctionPointerType) (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(___errorState0, method);
}
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* unitytls_x509list_create_t_Invoke_m05D8719D913109E4997FF913015E66455BC3C7D3_Closed(unitytls_x509list_create_t_t8873365FFB1556CE6B643700DB0C30E391B758D6* __this, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState0, const RuntimeMethod* method)
{
typedef unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* (*FunctionPointerType) (RuntimeObject*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___errorState0, method);
}
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* unitytls_x509list_create_t_Invoke_m05D8719D913109E4997FF913015E66455BC3C7D3_OpenStaticInvoker(unitytls_x509list_create_t_t8873365FFB1556CE6B643700DB0C30E391B758D6* __this, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState0, const RuntimeMethod* method)
{
return InvokerFuncInvoker1< unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, ___errorState0);
}
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* unitytls_x509list_create_t_Invoke_m05D8719D913109E4997FF913015E66455BC3C7D3_ClosedStaticInvoker(unitytls_x509list_create_t_t8873365FFB1556CE6B643700DB0C30E391B758D6* __this, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState0, const RuntimeMethod* method)
{
return InvokerFuncInvoker2< unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6*, RuntimeObject*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___errorState0);
}
IL2CPP_EXTERN_C unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* DelegatePInvokeWrapper_unitytls_x509list_create_t_t8873365FFB1556CE6B643700DB0C30E391B758D6 (unitytls_x509list_create_t_t8873365FFB1556CE6B643700DB0C30E391B758D6* __this, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState0, const RuntimeMethod* method)
{
typedef unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* (CDECL *PInvokeFunc)(unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Native function invocation
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* returnValue = il2cppPInvokeFunc(___errorState0);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_create_t::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_x509list_create_t__ctor_m41F2B1E6C767CD3A39F4E0FAD41B678AF61A14A6 (unitytls_x509list_create_t_t8873365FFB1556CE6B643700DB0C30E391B758D6* __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)&unitytls_x509list_create_t_Invoke_m05D8719D913109E4997FF913015E66455BC3C7D3_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509list_create_t_Invoke_m05D8719D913109E4997FF913015E66455BC3C7D3_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509list_create_t_Invoke_m05D8719D913109E4997FF913015E66455BC3C7D3_Open;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509list_create_t_Invoke_m05D8719D913109E4997FF913015E66455BC3C7D3_Closed;
}
else
{
bool isOpen = methodCount == 0;
if (isOpen)
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509list_create_t_Invoke_m05D8719D913109E4997FF913015E66455BC3C7D3_Open;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509list_create_t_Invoke_m05D8719D913109E4997FF913015E66455BC3C7D3_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&unitytls_x509list_create_t_Invoke_m05D8719D913109E4997FF913015E66455BC3C7D3_Multicast;
}
// Mono.Unity.UnityTls/unitytls_x509list* Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_create_t::Invoke(Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* unitytls_x509list_create_t_Invoke_m05D8719D913109E4997FF913015E66455BC3C7D3 (unitytls_x509list_create_t_t8873365FFB1556CE6B643700DB0C30E391B758D6* __this, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState0, const RuntimeMethod* method)
{
typedef unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* (*FunctionPointerType) (unitytls_x509list_create_t_t8873365FFB1556CE6B643700DB0C30E391B758D6* __this, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState0, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___errorState0, 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
void unitytls_x509list_append_t_Invoke_mEF1811CFAD02743F745D8A8E09E2E84D68154976_Multicast(unitytls_x509list_append_t_tC84B9CA7C15F5D1DE98386670A80D5F98559D98E* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 ___cert1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, 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) (unitytls_x509list_append_t_tC84B9CA7C15F5D1DE98386670A80D5F98559D98E* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 ___cert1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method);
for (il2cpp_array_size_t i = 0; i < length; i++)
{
unitytls_x509list_append_t_tC84B9CA7C15F5D1DE98386670A80D5F98559D98E* currentDelegate = reinterpret_cast<unitytls_x509list_append_t_tC84B9CA7C15F5D1DE98386670A80D5F98559D98E*>(delegatesToInvoke[i]);
((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___list0, ___cert1, ___errorState2, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
}
void unitytls_x509list_append_t_Invoke_mEF1811CFAD02743F745D8A8E09E2E84D68154976_Open(unitytls_x509list_append_t_tC84B9CA7C15F5D1DE98386670A80D5F98559D98E* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 ___cert1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6*, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(___list0, ___cert1, ___errorState2, method);
}
void unitytls_x509list_append_t_Invoke_mEF1811CFAD02743F745D8A8E09E2E84D68154976_Closed(unitytls_x509list_append_t_tC84B9CA7C15F5D1DE98386670A80D5F98559D98E* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 ___cert1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6*, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___list0, ___cert1, ___errorState2, method);
}
void unitytls_x509list_append_t_Invoke_mEF1811CFAD02743F745D8A8E09E2E84D68154976_OpenStaticInvoker(unitytls_x509list_append_t_tC84B9CA7C15F5D1DE98386670A80D5F98559D98E* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 ___cert1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method)
{
InvokerActionInvoker3< unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6*, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, ___list0, ___cert1, ___errorState2);
}
void unitytls_x509list_append_t_Invoke_mEF1811CFAD02743F745D8A8E09E2E84D68154976_ClosedStaticInvoker(unitytls_x509list_append_t_tC84B9CA7C15F5D1DE98386670A80D5F98559D98E* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 ___cert1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method)
{
InvokerActionInvoker4< RuntimeObject*, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6*, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___list0, ___cert1, ___errorState2);
}
IL2CPP_EXTERN_C void DelegatePInvokeWrapper_unitytls_x509list_append_t_tC84B9CA7C15F5D1DE98386670A80D5F98559D98E (unitytls_x509list_append_t_tC84B9CA7C15F5D1DE98386670A80D5F98559D98E* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 ___cert1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method)
{
typedef void (CDECL *PInvokeFunc)(unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6*, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Native function invocation
il2cppPInvokeFunc(___list0, ___cert1, ___errorState2);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_append_t::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_x509list_append_t__ctor_m22FAC52BA432FBCF2048DA6236633970E4E18CB0 (unitytls_x509list_append_t_tC84B9CA7C15F5D1DE98386670A80D5F98559D98E* __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)&unitytls_x509list_append_t_Invoke_mEF1811CFAD02743F745D8A8E09E2E84D68154976_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509list_append_t_Invoke_mEF1811CFAD02743F745D8A8E09E2E84D68154976_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509list_append_t_Invoke_mEF1811CFAD02743F745D8A8E09E2E84D68154976_Open;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509list_append_t_Invoke_mEF1811CFAD02743F745D8A8E09E2E84D68154976_Closed;
}
else
{
bool isOpen = methodCount == 2;
if (isOpen)
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509list_append_t_Invoke_mEF1811CFAD02743F745D8A8E09E2E84D68154976_Open;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509list_append_t_Invoke_mEF1811CFAD02743F745D8A8E09E2E84D68154976_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&unitytls_x509list_append_t_Invoke_mEF1811CFAD02743F745D8A8E09E2E84D68154976_Multicast;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_append_t::Invoke(Mono.Unity.UnityTls/unitytls_x509list*,Mono.Unity.UnityTls/unitytls_x509_ref,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_x509list_append_t_Invoke_mEF1811CFAD02743F745D8A8E09E2E84D68154976 (unitytls_x509list_append_t_tC84B9CA7C15F5D1DE98386670A80D5F98559D98E* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 ___cert1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_x509list_append_t_tC84B9CA7C15F5D1DE98386670A80D5F98559D98E* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 ___cert1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___list0, ___cert1, ___errorState2, 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
void unitytls_x509list_append_der_t_Invoke_m3D900F0F07C8747B9F046512DAC7579D0C7CD193_Multicast(unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, 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) (unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method);
for (il2cpp_array_size_t i = 0; i < length; i++)
{
unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951* currentDelegate = reinterpret_cast<unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951*>(delegatesToInvoke[i]);
((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___list0, ___buffer1, ___bufferLen2, ___errorState3, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
}
void unitytls_x509list_append_der_t_Invoke_m3D900F0F07C8747B9F046512DAC7579D0C7CD193_Open(unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6*, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(___list0, ___buffer1, ___bufferLen2, ___errorState3, method);
}
void unitytls_x509list_append_der_t_Invoke_m3D900F0F07C8747B9F046512DAC7579D0C7CD193_Closed(unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6*, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___list0, ___buffer1, ___bufferLen2, ___errorState3, method);
}
void unitytls_x509list_append_der_t_Invoke_m3D900F0F07C8747B9F046512DAC7579D0C7CD193_OpenStaticInvoker(unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
InvokerActionInvoker4< unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6*, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, ___list0, ___buffer1, ___bufferLen2, ___errorState3);
}
void unitytls_x509list_append_der_t_Invoke_m3D900F0F07C8747B9F046512DAC7579D0C7CD193_ClosedStaticInvoker(unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
InvokerActionInvoker5< RuntimeObject*, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6*, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___list0, ___buffer1, ___bufferLen2, ___errorState3);
}
IL2CPP_EXTERN_C void DelegatePInvokeWrapper_unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951 (unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef void (CDECL *PInvokeFunc)(unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6*, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Native function invocation
il2cppPInvokeFunc(___list0, ___buffer1, ___bufferLen2, ___errorState3);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_append_der_t::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_x509list_append_der_t__ctor_mB33965F4253393C8B17E44DACA1ECDBCC17EB673 (unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951* __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 == 4;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509list_append_der_t_Invoke_m3D900F0F07C8747B9F046512DAC7579D0C7CD193_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509list_append_der_t_Invoke_m3D900F0F07C8747B9F046512DAC7579D0C7CD193_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509list_append_der_t_Invoke_m3D900F0F07C8747B9F046512DAC7579D0C7CD193_Open;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509list_append_der_t_Invoke_m3D900F0F07C8747B9F046512DAC7579D0C7CD193_Closed;
}
else
{
bool isOpen = methodCount == 3;
if (isOpen)
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509list_append_der_t_Invoke_m3D900F0F07C8747B9F046512DAC7579D0C7CD193_Open;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509list_append_der_t_Invoke_m3D900F0F07C8747B9F046512DAC7579D0C7CD193_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&unitytls_x509list_append_der_t_Invoke_m3D900F0F07C8747B9F046512DAC7579D0C7CD193_Multicast;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_append_der_t::Invoke(Mono.Unity.UnityTls/unitytls_x509list*,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_x509list_append_der_t_Invoke_m3D900F0F07C8747B9F046512DAC7579D0C7CD193 (unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___list0, ___buffer1, ___bufferLen2, ___errorState3, 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
void unitytls_x509list_free_t_Invoke_m0974FBCD7B6920A4EC57BDCB080E1A7307EEEA02_Multicast(unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, 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) (unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, const RuntimeMethod* method);
for (il2cpp_array_size_t i = 0; i < length; i++)
{
unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2* currentDelegate = reinterpret_cast<unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2*>(delegatesToInvoke[i]);
((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___list0, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
}
void unitytls_x509list_free_t_Invoke_m0974FBCD7B6920A4EC57BDCB080E1A7307EEEA02_Open(unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(___list0, method);
}
void unitytls_x509list_free_t_Invoke_m0974FBCD7B6920A4EC57BDCB080E1A7307EEEA02_Closed(unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___list0, method);
}
void unitytls_x509list_free_t_Invoke_m0974FBCD7B6920A4EC57BDCB080E1A7307EEEA02_OpenStaticInvoker(unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, const RuntimeMethod* method)
{
InvokerActionInvoker1< unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* >::Invoke(__this->___method_ptr_0, method, NULL, ___list0);
}
void unitytls_x509list_free_t_Invoke_m0974FBCD7B6920A4EC57BDCB080E1A7307EEEA02_ClosedStaticInvoker(unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, const RuntimeMethod* method)
{
InvokerActionInvoker2< RuntimeObject*, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___list0);
}
IL2CPP_EXTERN_C void DelegatePInvokeWrapper_unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2 (unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, const RuntimeMethod* method)
{
typedef void (CDECL *PInvokeFunc)(unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6*);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Native function invocation
il2cppPInvokeFunc(___list0);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_free_t::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_x509list_free_t__ctor_mA156855741A0AA67C20B87507BE55F188ECBFFD4 (unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2* __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)&unitytls_x509list_free_t_Invoke_m0974FBCD7B6920A4EC57BDCB080E1A7307EEEA02_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509list_free_t_Invoke_m0974FBCD7B6920A4EC57BDCB080E1A7307EEEA02_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509list_free_t_Invoke_m0974FBCD7B6920A4EC57BDCB080E1A7307EEEA02_Open;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509list_free_t_Invoke_m0974FBCD7B6920A4EC57BDCB080E1A7307EEEA02_Closed;
}
else
{
bool isOpen = methodCount == 0;
if (isOpen)
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509list_free_t_Invoke_m0974FBCD7B6920A4EC57BDCB080E1A7307EEEA02_Open;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509list_free_t_Invoke_m0974FBCD7B6920A4EC57BDCB080E1A7307EEEA02_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&unitytls_x509list_free_t_Invoke_m0974FBCD7B6920A4EC57BDCB080E1A7307EEEA02_Multicast;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_free_t::Invoke(Mono.Unity.UnityTls/unitytls_x509list*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_x509list_free_t_Invoke_m0974FBCD7B6920A4EC57BDCB080E1A7307EEEA02 (unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___list0, 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
uint32_t unitytls_x509verify_default_ca_t_Invoke_m1D112FD2010361D2DB08F08A598000ADCD0875C3_Multicast(unitytls_x509verify_default_ca_t_tED88B7ABC8408A22DB51B1F57D5FC65BDD2EC809* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain0, uint8_t* ___cn1, intptr_t ___cnLen2, unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* ___cb3, void* ___userData4, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState5, 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 uint32_t (*FunctionPointerType) (unitytls_x509verify_default_ca_t_tED88B7ABC8408A22DB51B1F57D5FC65BDD2EC809* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain0, uint8_t* ___cn1, intptr_t ___cnLen2, unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* ___cb3, void* ___userData4, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState5, const RuntimeMethod* method);
uint32_t retVal = 0;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
unitytls_x509verify_default_ca_t_tED88B7ABC8408A22DB51B1F57D5FC65BDD2EC809* currentDelegate = reinterpret_cast<unitytls_x509verify_default_ca_t_tED88B7ABC8408A22DB51B1F57D5FC65BDD2EC809*>(delegatesToInvoke[i]);
retVal = ((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___chain0, ___cn1, ___cnLen2, ___cb3, ___userData4, ___errorState5, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
return retVal;
}
uint32_t unitytls_x509verify_default_ca_t_Invoke_m1D112FD2010361D2DB08F08A598000ADCD0875C3_Open(unitytls_x509verify_default_ca_t_tED88B7ABC8408A22DB51B1F57D5FC65BDD2EC809* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain0, uint8_t* ___cn1, intptr_t ___cnLen2, unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* ___cb3, void* ___userData4, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState5, const RuntimeMethod* method)
{
typedef uint32_t (*FunctionPointerType) (unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17, uint8_t*, intptr_t, unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09*, void*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(___chain0, ___cn1, ___cnLen2, ___cb3, ___userData4, ___errorState5, method);
}
uint32_t unitytls_x509verify_default_ca_t_Invoke_m1D112FD2010361D2DB08F08A598000ADCD0875C3_Closed(unitytls_x509verify_default_ca_t_tED88B7ABC8408A22DB51B1F57D5FC65BDD2EC809* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain0, uint8_t* ___cn1, intptr_t ___cnLen2, unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* ___cb3, void* ___userData4, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState5, const RuntimeMethod* method)
{
typedef uint32_t (*FunctionPointerType) (RuntimeObject*, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17, uint8_t*, intptr_t, unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09*, void*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___chain0, ___cn1, ___cnLen2, ___cb3, ___userData4, ___errorState5, method);
}
uint32_t unitytls_x509verify_default_ca_t_Invoke_m1D112FD2010361D2DB08F08A598000ADCD0875C3_OpenStaticInvoker(unitytls_x509verify_default_ca_t_tED88B7ABC8408A22DB51B1F57D5FC65BDD2EC809* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain0, uint8_t* ___cn1, intptr_t ___cnLen2, unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* ___cb3, void* ___userData4, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState5, const RuntimeMethod* method)
{
return InvokerFuncInvoker6< uint32_t, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17, uint8_t*, intptr_t, unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09*, void*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, ___chain0, ___cn1, ___cnLen2, ___cb3, ___userData4, ___errorState5);
}
uint32_t unitytls_x509verify_default_ca_t_Invoke_m1D112FD2010361D2DB08F08A598000ADCD0875C3_ClosedStaticInvoker(unitytls_x509verify_default_ca_t_tED88B7ABC8408A22DB51B1F57D5FC65BDD2EC809* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain0, uint8_t* ___cn1, intptr_t ___cnLen2, unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* ___cb3, void* ___userData4, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState5, const RuntimeMethod* method)
{
return InvokerFuncInvoker7< uint32_t, RuntimeObject*, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17, uint8_t*, intptr_t, unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09*, void*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___chain0, ___cn1, ___cnLen2, ___cb3, ___userData4, ___errorState5);
}
IL2CPP_EXTERN_C uint32_t DelegatePInvokeWrapper_unitytls_x509verify_default_ca_t_tED88B7ABC8408A22DB51B1F57D5FC65BDD2EC809 (unitytls_x509verify_default_ca_t_tED88B7ABC8408A22DB51B1F57D5FC65BDD2EC809* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain0, uint8_t* ___cn1, intptr_t ___cnLen2, unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* ___cb3, void* ___userData4, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState5, const RuntimeMethod* method)
{
typedef uint32_t (CDECL *PInvokeFunc)(unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17, uint8_t*, intptr_t, Il2CppMethodPointer, void*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Marshaling of parameter '___cb3' to native representation
Il2CppMethodPointer ____cb3_marshaled = NULL;
____cb3_marshaled = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(___cb3));
// Native function invocation
uint32_t returnValue = il2cppPInvokeFunc(___chain0, ___cn1, ___cnLen2, ____cb3_marshaled, ___userData4, ___errorState5);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509verify_default_ca_t::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_x509verify_default_ca_t__ctor_m936B931A7A5A10B4A514630F84CF136A799AFA23 (unitytls_x509verify_default_ca_t_tED88B7ABC8408A22DB51B1F57D5FC65BDD2EC809* __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 == 6;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509verify_default_ca_t_Invoke_m1D112FD2010361D2DB08F08A598000ADCD0875C3_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509verify_default_ca_t_Invoke_m1D112FD2010361D2DB08F08A598000ADCD0875C3_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509verify_default_ca_t_Invoke_m1D112FD2010361D2DB08F08A598000ADCD0875C3_Open;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509verify_default_ca_t_Invoke_m1D112FD2010361D2DB08F08A598000ADCD0875C3_Closed;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509verify_default_ca_t_Invoke_m1D112FD2010361D2DB08F08A598000ADCD0875C3_Closed;
}
__this->___extra_arg_5 = (intptr_t)&unitytls_x509verify_default_ca_t_Invoke_m1D112FD2010361D2DB08F08A598000ADCD0875C3_Multicast;
}
// Mono.Unity.UnityTls/unitytls_x509verify_result Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509verify_default_ca_t::Invoke(Mono.Unity.UnityTls/unitytls_x509list_ref,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_x509verify_callback,System.Void*,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t unitytls_x509verify_default_ca_t_Invoke_m1D112FD2010361D2DB08F08A598000ADCD0875C3 (unitytls_x509verify_default_ca_t_tED88B7ABC8408A22DB51B1F57D5FC65BDD2EC809* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain0, uint8_t* ___cn1, intptr_t ___cnLen2, unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* ___cb3, void* ___userData4, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState5, const RuntimeMethod* method)
{
typedef uint32_t (*FunctionPointerType) (unitytls_x509verify_default_ca_t_tED88B7ABC8408A22DB51B1F57D5FC65BDD2EC809* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain0, uint8_t* ___cn1, intptr_t ___cnLen2, unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* ___cb3, void* ___userData4, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState5, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___chain0, ___cn1, ___cnLen2, ___cb3, ___userData4, ___errorState5, 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
uint32_t unitytls_x509verify_explicit_ca_t_Invoke_m4028A9AE8FD6B69DB36BAE68CC3A3362A825738B_Multicast(unitytls_x509verify_explicit_ca_t_t1B3D98BF01F059A3C2ADE87EFDDA03C557A3D08D* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain0, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___trustCA1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* ___cb4, void* ___userData5, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState6, 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 uint32_t (*FunctionPointerType) (unitytls_x509verify_explicit_ca_t_t1B3D98BF01F059A3C2ADE87EFDDA03C557A3D08D* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain0, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___trustCA1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* ___cb4, void* ___userData5, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState6, const RuntimeMethod* method);
uint32_t retVal = 0;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
unitytls_x509verify_explicit_ca_t_t1B3D98BF01F059A3C2ADE87EFDDA03C557A3D08D* currentDelegate = reinterpret_cast<unitytls_x509verify_explicit_ca_t_t1B3D98BF01F059A3C2ADE87EFDDA03C557A3D08D*>(delegatesToInvoke[i]);
retVal = ((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___chain0, ___trustCA1, ___cn2, ___cnLen3, ___cb4, ___userData5, ___errorState6, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
return retVal;
}
uint32_t unitytls_x509verify_explicit_ca_t_Invoke_m4028A9AE8FD6B69DB36BAE68CC3A3362A825738B_Open(unitytls_x509verify_explicit_ca_t_t1B3D98BF01F059A3C2ADE87EFDDA03C557A3D08D* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain0, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___trustCA1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* ___cb4, void* ___userData5, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState6, const RuntimeMethod* method)
{
typedef uint32_t (*FunctionPointerType) (unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17, uint8_t*, intptr_t, unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09*, void*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(___chain0, ___trustCA1, ___cn2, ___cnLen3, ___cb4, ___userData5, ___errorState6, method);
}
uint32_t unitytls_x509verify_explicit_ca_t_Invoke_m4028A9AE8FD6B69DB36BAE68CC3A3362A825738B_Closed(unitytls_x509verify_explicit_ca_t_t1B3D98BF01F059A3C2ADE87EFDDA03C557A3D08D* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain0, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___trustCA1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* ___cb4, void* ___userData5, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState6, const RuntimeMethod* method)
{
typedef uint32_t (*FunctionPointerType) (RuntimeObject*, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17, uint8_t*, intptr_t, unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09*, void*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___chain0, ___trustCA1, ___cn2, ___cnLen3, ___cb4, ___userData5, ___errorState6, method);
}
uint32_t unitytls_x509verify_explicit_ca_t_Invoke_m4028A9AE8FD6B69DB36BAE68CC3A3362A825738B_OpenStaticInvoker(unitytls_x509verify_explicit_ca_t_t1B3D98BF01F059A3C2ADE87EFDDA03C557A3D08D* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain0, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___trustCA1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* ___cb4, void* ___userData5, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState6, const RuntimeMethod* method)
{
return InvokerFuncInvoker7< uint32_t, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17, uint8_t*, intptr_t, unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09*, void*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, ___chain0, ___trustCA1, ___cn2, ___cnLen3, ___cb4, ___userData5, ___errorState6);
}
uint32_t unitytls_x509verify_explicit_ca_t_Invoke_m4028A9AE8FD6B69DB36BAE68CC3A3362A825738B_ClosedStaticInvoker(unitytls_x509verify_explicit_ca_t_t1B3D98BF01F059A3C2ADE87EFDDA03C557A3D08D* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain0, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___trustCA1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* ___cb4, void* ___userData5, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState6, const RuntimeMethod* method)
{
return InvokerFuncInvoker8< uint32_t, RuntimeObject*, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17, uint8_t*, intptr_t, unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09*, void*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___chain0, ___trustCA1, ___cn2, ___cnLen3, ___cb4, ___userData5, ___errorState6);
}
IL2CPP_EXTERN_C uint32_t DelegatePInvokeWrapper_unitytls_x509verify_explicit_ca_t_t1B3D98BF01F059A3C2ADE87EFDDA03C557A3D08D (unitytls_x509verify_explicit_ca_t_t1B3D98BF01F059A3C2ADE87EFDDA03C557A3D08D* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain0, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___trustCA1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* ___cb4, void* ___userData5, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState6, const RuntimeMethod* method)
{
typedef uint32_t (CDECL *PInvokeFunc)(unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17, uint8_t*, intptr_t, Il2CppMethodPointer, void*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Marshaling of parameter '___cb4' to native representation
Il2CppMethodPointer ____cb4_marshaled = NULL;
____cb4_marshaled = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(___cb4));
// Native function invocation
uint32_t returnValue = il2cppPInvokeFunc(___chain0, ___trustCA1, ___cn2, ___cnLen3, ____cb4_marshaled, ___userData5, ___errorState6);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509verify_explicit_ca_t::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_x509verify_explicit_ca_t__ctor_m1812F92F4C92CE54233697CE380177EBA629A1F1 (unitytls_x509verify_explicit_ca_t_t1B3D98BF01F059A3C2ADE87EFDDA03C557A3D08D* __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 == 7;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509verify_explicit_ca_t_Invoke_m4028A9AE8FD6B69DB36BAE68CC3A3362A825738B_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509verify_explicit_ca_t_Invoke_m4028A9AE8FD6B69DB36BAE68CC3A3362A825738B_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509verify_explicit_ca_t_Invoke_m4028A9AE8FD6B69DB36BAE68CC3A3362A825738B_Open;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509verify_explicit_ca_t_Invoke_m4028A9AE8FD6B69DB36BAE68CC3A3362A825738B_Closed;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_x509verify_explicit_ca_t_Invoke_m4028A9AE8FD6B69DB36BAE68CC3A3362A825738B_Closed;
}
__this->___extra_arg_5 = (intptr_t)&unitytls_x509verify_explicit_ca_t_Invoke_m4028A9AE8FD6B69DB36BAE68CC3A3362A825738B_Multicast;
}
// Mono.Unity.UnityTls/unitytls_x509verify_result Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509verify_explicit_ca_t::Invoke(Mono.Unity.UnityTls/unitytls_x509list_ref,Mono.Unity.UnityTls/unitytls_x509list_ref,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_x509verify_callback,System.Void*,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t unitytls_x509verify_explicit_ca_t_Invoke_m4028A9AE8FD6B69DB36BAE68CC3A3362A825738B (unitytls_x509verify_explicit_ca_t_t1B3D98BF01F059A3C2ADE87EFDDA03C557A3D08D* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain0, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___trustCA1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* ___cb4, void* ___userData5, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState6, const RuntimeMethod* method)
{
typedef uint32_t (*FunctionPointerType) (unitytls_x509verify_explicit_ca_t_t1B3D98BF01F059A3C2ADE87EFDDA03C557A3D08D* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain0, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___trustCA1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* ___cb4, void* ___userData5, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState6, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___chain0, ___trustCA1, ___cn2, ___cnLen3, ___cb4, ___userData5, ___errorState6, 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
unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* unitytls_tlsctx_create_server_t_Invoke_mCEB3E8CADCB316F4DF606A68182A4E5C9EC4D3B9_Multicast(unitytls_tlsctx_create_server_t_t1068941B319B893D3FFBE53FE061676FF1CC3803* __this, unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56 ___supportedProtocols0, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568 ___callbacks1, uint64_t ___certChain2, uint64_t ___leafCertificateKey3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, 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 unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* (*FunctionPointerType) (unitytls_tlsctx_create_server_t_t1068941B319B893D3FFBE53FE061676FF1CC3803* __this, unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56 ___supportedProtocols0, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568 ___callbacks1, uint64_t ___certChain2, uint64_t ___leafCertificateKey3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method);
unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* retVal = NULL;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
unitytls_tlsctx_create_server_t_t1068941B319B893D3FFBE53FE061676FF1CC3803* currentDelegate = reinterpret_cast<unitytls_tlsctx_create_server_t_t1068941B319B893D3FFBE53FE061676FF1CC3803*>(delegatesToInvoke[i]);
retVal = ((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___supportedProtocols0, ___callbacks1, ___certChain2, ___leafCertificateKey3, ___errorState4, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
return retVal;
}
unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* unitytls_tlsctx_create_server_t_Invoke_mCEB3E8CADCB316F4DF606A68182A4E5C9EC4D3B9_Open(unitytls_tlsctx_create_server_t_t1068941B319B893D3FFBE53FE061676FF1CC3803* __this, unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56 ___supportedProtocols0, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568 ___callbacks1, uint64_t ___certChain2, uint64_t ___leafCertificateKey3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method)
{
typedef unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* (*FunctionPointerType) (unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568, uint64_t, uint64_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(___supportedProtocols0, ___callbacks1, ___certChain2, ___leafCertificateKey3, ___errorState4, method);
}
unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* unitytls_tlsctx_create_server_t_Invoke_mCEB3E8CADCB316F4DF606A68182A4E5C9EC4D3B9_Closed(unitytls_tlsctx_create_server_t_t1068941B319B893D3FFBE53FE061676FF1CC3803* __this, unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56 ___supportedProtocols0, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568 ___callbacks1, uint64_t ___certChain2, uint64_t ___leafCertificateKey3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method)
{
typedef unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* (*FunctionPointerType) (RuntimeObject*, unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568, uint64_t, uint64_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___supportedProtocols0, ___callbacks1, ___certChain2, ___leafCertificateKey3, ___errorState4, method);
}
unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* unitytls_tlsctx_create_server_t_Invoke_mCEB3E8CADCB316F4DF606A68182A4E5C9EC4D3B9_OpenStaticInvoker(unitytls_tlsctx_create_server_t_t1068941B319B893D3FFBE53FE061676FF1CC3803* __this, unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56 ___supportedProtocols0, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568 ___callbacks1, uint64_t ___certChain2, uint64_t ___leafCertificateKey3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method)
{
return InvokerFuncInvoker5< unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568, uint64_t, uint64_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, ___supportedProtocols0, ___callbacks1, ___certChain2, ___leafCertificateKey3, ___errorState4);
}
unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* unitytls_tlsctx_create_server_t_Invoke_mCEB3E8CADCB316F4DF606A68182A4E5C9EC4D3B9_ClosedStaticInvoker(unitytls_tlsctx_create_server_t_t1068941B319B893D3FFBE53FE061676FF1CC3803* __this, unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56 ___supportedProtocols0, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568 ___callbacks1, uint64_t ___certChain2, uint64_t ___leafCertificateKey3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method)
{
return InvokerFuncInvoker6< unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, RuntimeObject*, unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568, uint64_t, uint64_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___supportedProtocols0, ___callbacks1, ___certChain2, ___leafCertificateKey3, ___errorState4);
}
IL2CPP_EXTERN_C unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* DelegatePInvokeWrapper_unitytls_tlsctx_create_server_t_t1068941B319B893D3FFBE53FE061676FF1CC3803 (unitytls_tlsctx_create_server_t_t1068941B319B893D3FFBE53FE061676FF1CC3803* __this, unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56 ___supportedProtocols0, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568 ___callbacks1, uint64_t ___certChain2, uint64_t ___leafCertificateKey3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method)
{
typedef unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* (CDECL *PInvokeFunc)(unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568_marshaled_pinvoke, uint64_t, uint64_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Marshaling of parameter '___callbacks1' to native representation
unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568_marshaled_pinvoke ____callbacks1_marshaled = {};
unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568_marshal_pinvoke(___callbacks1, ____callbacks1_marshaled);
// Native function invocation
unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* returnValue = il2cppPInvokeFunc(___supportedProtocols0, ____callbacks1_marshaled, ___certChain2, ___leafCertificateKey3, ___errorState4);
// Marshaling cleanup of parameter '___callbacks1' native representation
unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568_marshal_pinvoke_cleanup(____callbacks1_marshaled);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_create_server_t::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_tlsctx_create_server_t__ctor_m035F9FCC9C4B71D3BA4F1610FBCFB7E87E28EDD7 (unitytls_tlsctx_create_server_t_t1068941B319B893D3FFBE53FE061676FF1CC3803* __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 == 5;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_create_server_t_Invoke_mCEB3E8CADCB316F4DF606A68182A4E5C9EC4D3B9_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_create_server_t_Invoke_mCEB3E8CADCB316F4DF606A68182A4E5C9EC4D3B9_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_create_server_t_Invoke_mCEB3E8CADCB316F4DF606A68182A4E5C9EC4D3B9_Open;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_create_server_t_Invoke_mCEB3E8CADCB316F4DF606A68182A4E5C9EC4D3B9_Closed;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_create_server_t_Invoke_mCEB3E8CADCB316F4DF606A68182A4E5C9EC4D3B9_Closed;
}
__this->___extra_arg_5 = (intptr_t)&unitytls_tlsctx_create_server_t_Invoke_mCEB3E8CADCB316F4DF606A68182A4E5C9EC4D3B9_Multicast;
}
// Mono.Unity.UnityTls/unitytls_tlsctx* Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_create_server_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx_protocolrange,Mono.Unity.UnityTls/unitytls_tlsctx_callbacks,System.UInt64,System.UInt64,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* unitytls_tlsctx_create_server_t_Invoke_mCEB3E8CADCB316F4DF606A68182A4E5C9EC4D3B9 (unitytls_tlsctx_create_server_t_t1068941B319B893D3FFBE53FE061676FF1CC3803* __this, unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56 ___supportedProtocols0, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568 ___callbacks1, uint64_t ___certChain2, uint64_t ___leafCertificateKey3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method)
{
typedef unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* (*FunctionPointerType) (unitytls_tlsctx_create_server_t_t1068941B319B893D3FFBE53FE061676FF1CC3803* __this, unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56 ___supportedProtocols0, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568 ___callbacks1, uint64_t ___certChain2, uint64_t ___leafCertificateKey3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___supportedProtocols0, ___callbacks1, ___certChain2, ___leafCertificateKey3, ___errorState4, 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
unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* unitytls_tlsctx_create_client_t_Invoke_m728BCBF32A45326A1AD8B1E17933372F7D9E01EE_Multicast(unitytls_tlsctx_create_client_t_t49D8F69D4152410A346CB3560B121DCC44AAC4EC* __this, unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56 ___supportedProtocols0, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568 ___callbacks1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, 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 unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* (*FunctionPointerType) (unitytls_tlsctx_create_client_t_t49D8F69D4152410A346CB3560B121DCC44AAC4EC* __this, unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56 ___supportedProtocols0, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568 ___callbacks1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method);
unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* retVal = NULL;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
unitytls_tlsctx_create_client_t_t49D8F69D4152410A346CB3560B121DCC44AAC4EC* currentDelegate = reinterpret_cast<unitytls_tlsctx_create_client_t_t49D8F69D4152410A346CB3560B121DCC44AAC4EC*>(delegatesToInvoke[i]);
retVal = ((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___supportedProtocols0, ___callbacks1, ___cn2, ___cnLen3, ___errorState4, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
return retVal;
}
unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* unitytls_tlsctx_create_client_t_Invoke_m728BCBF32A45326A1AD8B1E17933372F7D9E01EE_Open(unitytls_tlsctx_create_client_t_t49D8F69D4152410A346CB3560B121DCC44AAC4EC* __this, unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56 ___supportedProtocols0, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568 ___callbacks1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method)
{
typedef unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* (*FunctionPointerType) (unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(___supportedProtocols0, ___callbacks1, ___cn2, ___cnLen3, ___errorState4, method);
}
unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* unitytls_tlsctx_create_client_t_Invoke_m728BCBF32A45326A1AD8B1E17933372F7D9E01EE_Closed(unitytls_tlsctx_create_client_t_t49D8F69D4152410A346CB3560B121DCC44AAC4EC* __this, unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56 ___supportedProtocols0, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568 ___callbacks1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method)
{
typedef unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* (*FunctionPointerType) (RuntimeObject*, unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___supportedProtocols0, ___callbacks1, ___cn2, ___cnLen3, ___errorState4, method);
}
unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* unitytls_tlsctx_create_client_t_Invoke_m728BCBF32A45326A1AD8B1E17933372F7D9E01EE_OpenStaticInvoker(unitytls_tlsctx_create_client_t_t49D8F69D4152410A346CB3560B121DCC44AAC4EC* __this, unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56 ___supportedProtocols0, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568 ___callbacks1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method)
{
return InvokerFuncInvoker5< unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, ___supportedProtocols0, ___callbacks1, ___cn2, ___cnLen3, ___errorState4);
}
unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* unitytls_tlsctx_create_client_t_Invoke_m728BCBF32A45326A1AD8B1E17933372F7D9E01EE_ClosedStaticInvoker(unitytls_tlsctx_create_client_t_t49D8F69D4152410A346CB3560B121DCC44AAC4EC* __this, unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56 ___supportedProtocols0, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568 ___callbacks1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method)
{
return InvokerFuncInvoker6< unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, RuntimeObject*, unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___supportedProtocols0, ___callbacks1, ___cn2, ___cnLen3, ___errorState4);
}
IL2CPP_EXTERN_C unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* DelegatePInvokeWrapper_unitytls_tlsctx_create_client_t_t49D8F69D4152410A346CB3560B121DCC44AAC4EC (unitytls_tlsctx_create_client_t_t49D8F69D4152410A346CB3560B121DCC44AAC4EC* __this, unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56 ___supportedProtocols0, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568 ___callbacks1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method)
{
typedef unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* (CDECL *PInvokeFunc)(unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568_marshaled_pinvoke, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Marshaling of parameter '___callbacks1' to native representation
unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568_marshaled_pinvoke ____callbacks1_marshaled = {};
unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568_marshal_pinvoke(___callbacks1, ____callbacks1_marshaled);
// Native function invocation
unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* returnValue = il2cppPInvokeFunc(___supportedProtocols0, ____callbacks1_marshaled, ___cn2, ___cnLen3, ___errorState4);
// Marshaling cleanup of parameter '___callbacks1' native representation
unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568_marshal_pinvoke_cleanup(____callbacks1_marshaled);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_create_client_t::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_tlsctx_create_client_t__ctor_m898460A0D30C6EEF737F445DFBA96076E4D22130 (unitytls_tlsctx_create_client_t_t49D8F69D4152410A346CB3560B121DCC44AAC4EC* __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 == 5;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_create_client_t_Invoke_m728BCBF32A45326A1AD8B1E17933372F7D9E01EE_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_create_client_t_Invoke_m728BCBF32A45326A1AD8B1E17933372F7D9E01EE_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_create_client_t_Invoke_m728BCBF32A45326A1AD8B1E17933372F7D9E01EE_Open;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_create_client_t_Invoke_m728BCBF32A45326A1AD8B1E17933372F7D9E01EE_Closed;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_create_client_t_Invoke_m728BCBF32A45326A1AD8B1E17933372F7D9E01EE_Closed;
}
__this->___extra_arg_5 = (intptr_t)&unitytls_tlsctx_create_client_t_Invoke_m728BCBF32A45326A1AD8B1E17933372F7D9E01EE_Multicast;
}
// Mono.Unity.UnityTls/unitytls_tlsctx* Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_create_client_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx_protocolrange,Mono.Unity.UnityTls/unitytls_tlsctx_callbacks,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* unitytls_tlsctx_create_client_t_Invoke_m728BCBF32A45326A1AD8B1E17933372F7D9E01EE (unitytls_tlsctx_create_client_t_t49D8F69D4152410A346CB3560B121DCC44AAC4EC* __this, unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56 ___supportedProtocols0, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568 ___callbacks1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method)
{
typedef unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* (*FunctionPointerType) (unitytls_tlsctx_create_client_t_t49D8F69D4152410A346CB3560B121DCC44AAC4EC* __this, unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56 ___supportedProtocols0, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568 ___callbacks1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___supportedProtocols0, ___callbacks1, ___cn2, ___cnLen3, ___errorState4, 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
void unitytls_tlsctx_server_require_client_authentication_t_Invoke_m0B6DAC7CA95263D1245C9B0A466AF00D073059EB_Multicast(unitytls_tlsctx_server_require_client_authentication_t_t2AC04245D1F40738C5FB87B0DEE80761E243F0BE* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___clientAuthCAList1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, 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) (unitytls_tlsctx_server_require_client_authentication_t_t2AC04245D1F40738C5FB87B0DEE80761E243F0BE* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___clientAuthCAList1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method);
for (il2cpp_array_size_t i = 0; i < length; i++)
{
unitytls_tlsctx_server_require_client_authentication_t_t2AC04245D1F40738C5FB87B0DEE80761E243F0BE* currentDelegate = reinterpret_cast<unitytls_tlsctx_server_require_client_authentication_t_t2AC04245D1F40738C5FB87B0DEE80761E243F0BE*>(delegatesToInvoke[i]);
((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___ctx0, ___clientAuthCAList1, ___errorState2, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
}
void unitytls_tlsctx_server_require_client_authentication_t_Invoke_m0B6DAC7CA95263D1245C9B0A466AF00D073059EB_Open(unitytls_tlsctx_server_require_client_authentication_t_t2AC04245D1F40738C5FB87B0DEE80761E243F0BE* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___clientAuthCAList1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(___ctx0, ___clientAuthCAList1, ___errorState2, method);
}
void unitytls_tlsctx_server_require_client_authentication_t_Invoke_m0B6DAC7CA95263D1245C9B0A466AF00D073059EB_Closed(unitytls_tlsctx_server_require_client_authentication_t_t2AC04245D1F40738C5FB87B0DEE80761E243F0BE* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___clientAuthCAList1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___ctx0, ___clientAuthCAList1, ___errorState2, method);
}
void unitytls_tlsctx_server_require_client_authentication_t_Invoke_m0B6DAC7CA95263D1245C9B0A466AF00D073059EB_OpenStaticInvoker(unitytls_tlsctx_server_require_client_authentication_t_t2AC04245D1F40738C5FB87B0DEE80761E243F0BE* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___clientAuthCAList1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method)
{
InvokerActionInvoker3< unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, ___ctx0, ___clientAuthCAList1, ___errorState2);
}
void unitytls_tlsctx_server_require_client_authentication_t_Invoke_m0B6DAC7CA95263D1245C9B0A466AF00D073059EB_ClosedStaticInvoker(unitytls_tlsctx_server_require_client_authentication_t_t2AC04245D1F40738C5FB87B0DEE80761E243F0BE* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___clientAuthCAList1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method)
{
InvokerActionInvoker4< RuntimeObject*, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___ctx0, ___clientAuthCAList1, ___errorState2);
}
IL2CPP_EXTERN_C void DelegatePInvokeWrapper_unitytls_tlsctx_server_require_client_authentication_t_t2AC04245D1F40738C5FB87B0DEE80761E243F0BE (unitytls_tlsctx_server_require_client_authentication_t_t2AC04245D1F40738C5FB87B0DEE80761E243F0BE* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___clientAuthCAList1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method)
{
typedef void (CDECL *PInvokeFunc)(unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Native function invocation
il2cppPInvokeFunc(___ctx0, ___clientAuthCAList1, ___errorState2);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_server_require_client_authentication_t::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_tlsctx_server_require_client_authentication_t__ctor_m3E84F3D43AA2928DA825256C6179E2D0CF926C60 (unitytls_tlsctx_server_require_client_authentication_t_t2AC04245D1F40738C5FB87B0DEE80761E243F0BE* __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)&unitytls_tlsctx_server_require_client_authentication_t_Invoke_m0B6DAC7CA95263D1245C9B0A466AF00D073059EB_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_server_require_client_authentication_t_Invoke_m0B6DAC7CA95263D1245C9B0A466AF00D073059EB_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_server_require_client_authentication_t_Invoke_m0B6DAC7CA95263D1245C9B0A466AF00D073059EB_Open;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_server_require_client_authentication_t_Invoke_m0B6DAC7CA95263D1245C9B0A466AF00D073059EB_Closed;
}
else
{
bool isOpen = methodCount == 2;
if (isOpen)
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_server_require_client_authentication_t_Invoke_m0B6DAC7CA95263D1245C9B0A466AF00D073059EB_Open;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_server_require_client_authentication_t_Invoke_m0B6DAC7CA95263D1245C9B0A466AF00D073059EB_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&unitytls_tlsctx_server_require_client_authentication_t_Invoke_m0B6DAC7CA95263D1245C9B0A466AF00D073059EB_Multicast;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_server_require_client_authentication_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx*,Mono.Unity.UnityTls/unitytls_x509list_ref,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_tlsctx_server_require_client_authentication_t_Invoke_m0B6DAC7CA95263D1245C9B0A466AF00D073059EB (unitytls_tlsctx_server_require_client_authentication_t_t2AC04245D1F40738C5FB87B0DEE80761E243F0BE* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___clientAuthCAList1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_tlsctx_server_require_client_authentication_t_t2AC04245D1F40738C5FB87B0DEE80761E243F0BE* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___clientAuthCAList1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___ctx0, ___clientAuthCAList1, ___errorState2, 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
void unitytls_tlsctx_set_certificate_callback_t_Invoke_mFC277320977BC310A0EB484EE505E25B6E2C7CA3_Multicast(unitytls_tlsctx_set_certificate_callback_t_t2B54F7228DFC11BF14DCF2201BDD90CF0EF92D41* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C* ___cb1, void* ___userData2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, 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) (unitytls_tlsctx_set_certificate_callback_t_t2B54F7228DFC11BF14DCF2201BDD90CF0EF92D41* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C* ___cb1, void* ___userData2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method);
for (il2cpp_array_size_t i = 0; i < length; i++)
{
unitytls_tlsctx_set_certificate_callback_t_t2B54F7228DFC11BF14DCF2201BDD90CF0EF92D41* currentDelegate = reinterpret_cast<unitytls_tlsctx_set_certificate_callback_t_t2B54F7228DFC11BF14DCF2201BDD90CF0EF92D41*>(delegatesToInvoke[i]);
((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___ctx0, ___cb1, ___userData2, ___errorState3, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
}
void unitytls_tlsctx_set_certificate_callback_t_Invoke_mFC277320977BC310A0EB484EE505E25B6E2C7CA3_Open(unitytls_tlsctx_set_certificate_callback_t_t2B54F7228DFC11BF14DCF2201BDD90CF0EF92D41* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C* ___cb1, void* ___userData2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C*, void*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(___ctx0, ___cb1, ___userData2, ___errorState3, method);
}
void unitytls_tlsctx_set_certificate_callback_t_Invoke_mFC277320977BC310A0EB484EE505E25B6E2C7CA3_Closed(unitytls_tlsctx_set_certificate_callback_t_t2B54F7228DFC11BF14DCF2201BDD90CF0EF92D41* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C* ___cb1, void* ___userData2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C*, void*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___ctx0, ___cb1, ___userData2, ___errorState3, method);
}
void unitytls_tlsctx_set_certificate_callback_t_Invoke_mFC277320977BC310A0EB484EE505E25B6E2C7CA3_OpenStaticInvoker(unitytls_tlsctx_set_certificate_callback_t_t2B54F7228DFC11BF14DCF2201BDD90CF0EF92D41* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C* ___cb1, void* ___userData2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
InvokerActionInvoker4< unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C*, void*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, ___ctx0, ___cb1, ___userData2, ___errorState3);
}
void unitytls_tlsctx_set_certificate_callback_t_Invoke_mFC277320977BC310A0EB484EE505E25B6E2C7CA3_ClosedStaticInvoker(unitytls_tlsctx_set_certificate_callback_t_t2B54F7228DFC11BF14DCF2201BDD90CF0EF92D41* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C* ___cb1, void* ___userData2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
InvokerActionInvoker5< RuntimeObject*, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C*, void*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___ctx0, ___cb1, ___userData2, ___errorState3);
}
IL2CPP_EXTERN_C void DelegatePInvokeWrapper_unitytls_tlsctx_set_certificate_callback_t_t2B54F7228DFC11BF14DCF2201BDD90CF0EF92D41 (unitytls_tlsctx_set_certificate_callback_t_t2B54F7228DFC11BF14DCF2201BDD90CF0EF92D41* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C* ___cb1, void* ___userData2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef void (CDECL *PInvokeFunc)(unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, Il2CppMethodPointer, void*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Marshaling of parameter '___cb1' to native representation
Il2CppMethodPointer ____cb1_marshaled = NULL;
____cb1_marshaled = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(___cb1));
// Native function invocation
il2cppPInvokeFunc(___ctx0, ____cb1_marshaled, ___userData2, ___errorState3);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_certificate_callback_t::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_tlsctx_set_certificate_callback_t__ctor_m31E0497908A2C272B9AB80B4659D1517F9647E20 (unitytls_tlsctx_set_certificate_callback_t_t2B54F7228DFC11BF14DCF2201BDD90CF0EF92D41* __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 == 4;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_set_certificate_callback_t_Invoke_mFC277320977BC310A0EB484EE505E25B6E2C7CA3_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_set_certificate_callback_t_Invoke_mFC277320977BC310A0EB484EE505E25B6E2C7CA3_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_set_certificate_callback_t_Invoke_mFC277320977BC310A0EB484EE505E25B6E2C7CA3_Open;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_set_certificate_callback_t_Invoke_mFC277320977BC310A0EB484EE505E25B6E2C7CA3_Closed;
}
else
{
bool isOpen = methodCount == 3;
if (isOpen)
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_set_certificate_callback_t_Invoke_mFC277320977BC310A0EB484EE505E25B6E2C7CA3_Open;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_set_certificate_callback_t_Invoke_mFC277320977BC310A0EB484EE505E25B6E2C7CA3_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&unitytls_tlsctx_set_certificate_callback_t_Invoke_mFC277320977BC310A0EB484EE505E25B6E2C7CA3_Multicast;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_certificate_callback_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx*,Mono.Unity.UnityTls/unitytls_tlsctx_certificate_callback,System.Void*,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_tlsctx_set_certificate_callback_t_Invoke_mFC277320977BC310A0EB484EE505E25B6E2C7CA3 (unitytls_tlsctx_set_certificate_callback_t_t2B54F7228DFC11BF14DCF2201BDD90CF0EF92D41* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C* ___cb1, void* ___userData2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_tlsctx_set_certificate_callback_t_t2B54F7228DFC11BF14DCF2201BDD90CF0EF92D41* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C* ___cb1, void* ___userData2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___ctx0, ___cb1, ___userData2, ___errorState3, 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
void unitytls_tlsctx_set_trace_callback_t_Invoke_mC98468DD35AA05DE628FEAE7669B4F71205CCBD7_Multicast(unitytls_tlsctx_set_trace_callback_t_t3C615EACADC2CB1CDA8362B3F775071976E7CF7C* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_tlsctx_trace_callback_tAC1169E423F6EBDA60CDD5D33E1795A8811E0BE6* ___cb1, void* ___userData2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, 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) (unitytls_tlsctx_set_trace_callback_t_t3C615EACADC2CB1CDA8362B3F775071976E7CF7C* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_tlsctx_trace_callback_tAC1169E423F6EBDA60CDD5D33E1795A8811E0BE6* ___cb1, void* ___userData2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method);
for (il2cpp_array_size_t i = 0; i < length; i++)
{
unitytls_tlsctx_set_trace_callback_t_t3C615EACADC2CB1CDA8362B3F775071976E7CF7C* currentDelegate = reinterpret_cast<unitytls_tlsctx_set_trace_callback_t_t3C615EACADC2CB1CDA8362B3F775071976E7CF7C*>(delegatesToInvoke[i]);
((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___ctx0, ___cb1, ___userData2, ___errorState3, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
}
void unitytls_tlsctx_set_trace_callback_t_Invoke_mC98468DD35AA05DE628FEAE7669B4F71205CCBD7_Open(unitytls_tlsctx_set_trace_callback_t_t3C615EACADC2CB1CDA8362B3F775071976E7CF7C* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_tlsctx_trace_callback_tAC1169E423F6EBDA60CDD5D33E1795A8811E0BE6* ___cb1, void* ___userData2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_tlsctx_trace_callback_tAC1169E423F6EBDA60CDD5D33E1795A8811E0BE6*, void*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(___ctx0, ___cb1, ___userData2, ___errorState3, method);
}
void unitytls_tlsctx_set_trace_callback_t_Invoke_mC98468DD35AA05DE628FEAE7669B4F71205CCBD7_Closed(unitytls_tlsctx_set_trace_callback_t_t3C615EACADC2CB1CDA8362B3F775071976E7CF7C* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_tlsctx_trace_callback_tAC1169E423F6EBDA60CDD5D33E1795A8811E0BE6* ___cb1, void* ___userData2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_tlsctx_trace_callback_tAC1169E423F6EBDA60CDD5D33E1795A8811E0BE6*, void*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___ctx0, ___cb1, ___userData2, ___errorState3, method);
}
void unitytls_tlsctx_set_trace_callback_t_Invoke_mC98468DD35AA05DE628FEAE7669B4F71205CCBD7_OpenStaticInvoker(unitytls_tlsctx_set_trace_callback_t_t3C615EACADC2CB1CDA8362B3F775071976E7CF7C* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_tlsctx_trace_callback_tAC1169E423F6EBDA60CDD5D33E1795A8811E0BE6* ___cb1, void* ___userData2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
InvokerActionInvoker4< unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_tlsctx_trace_callback_tAC1169E423F6EBDA60CDD5D33E1795A8811E0BE6*, void*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, ___ctx0, ___cb1, ___userData2, ___errorState3);
}
void unitytls_tlsctx_set_trace_callback_t_Invoke_mC98468DD35AA05DE628FEAE7669B4F71205CCBD7_ClosedStaticInvoker(unitytls_tlsctx_set_trace_callback_t_t3C615EACADC2CB1CDA8362B3F775071976E7CF7C* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_tlsctx_trace_callback_tAC1169E423F6EBDA60CDD5D33E1795A8811E0BE6* ___cb1, void* ___userData2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
InvokerActionInvoker5< RuntimeObject*, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_tlsctx_trace_callback_tAC1169E423F6EBDA60CDD5D33E1795A8811E0BE6*, void*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___ctx0, ___cb1, ___userData2, ___errorState3);
}
IL2CPP_EXTERN_C void DelegatePInvokeWrapper_unitytls_tlsctx_set_trace_callback_t_t3C615EACADC2CB1CDA8362B3F775071976E7CF7C (unitytls_tlsctx_set_trace_callback_t_t3C615EACADC2CB1CDA8362B3F775071976E7CF7C* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_tlsctx_trace_callback_tAC1169E423F6EBDA60CDD5D33E1795A8811E0BE6* ___cb1, void* ___userData2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef void (CDECL *PInvokeFunc)(unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, Il2CppMethodPointer, void*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Marshaling of parameter '___cb1' to native representation
Il2CppMethodPointer ____cb1_marshaled = NULL;
____cb1_marshaled = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(___cb1));
// Native function invocation
il2cppPInvokeFunc(___ctx0, ____cb1_marshaled, ___userData2, ___errorState3);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_trace_callback_t::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_tlsctx_set_trace_callback_t__ctor_m262F20124214D62819468C226E925221D2527D96 (unitytls_tlsctx_set_trace_callback_t_t3C615EACADC2CB1CDA8362B3F775071976E7CF7C* __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 == 4;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_set_trace_callback_t_Invoke_mC98468DD35AA05DE628FEAE7669B4F71205CCBD7_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_set_trace_callback_t_Invoke_mC98468DD35AA05DE628FEAE7669B4F71205CCBD7_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_set_trace_callback_t_Invoke_mC98468DD35AA05DE628FEAE7669B4F71205CCBD7_Open;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_set_trace_callback_t_Invoke_mC98468DD35AA05DE628FEAE7669B4F71205CCBD7_Closed;
}
else
{
bool isOpen = methodCount == 3;
if (isOpen)
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_set_trace_callback_t_Invoke_mC98468DD35AA05DE628FEAE7669B4F71205CCBD7_Open;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_set_trace_callback_t_Invoke_mC98468DD35AA05DE628FEAE7669B4F71205CCBD7_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&unitytls_tlsctx_set_trace_callback_t_Invoke_mC98468DD35AA05DE628FEAE7669B4F71205CCBD7_Multicast;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_trace_callback_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx*,Mono.Unity.UnityTls/unitytls_tlsctx_trace_callback,System.Void*,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_tlsctx_set_trace_callback_t_Invoke_mC98468DD35AA05DE628FEAE7669B4F71205CCBD7 (unitytls_tlsctx_set_trace_callback_t_t3C615EACADC2CB1CDA8362B3F775071976E7CF7C* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_tlsctx_trace_callback_tAC1169E423F6EBDA60CDD5D33E1795A8811E0BE6* ___cb1, void* ___userData2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_tlsctx_set_trace_callback_t_t3C615EACADC2CB1CDA8362B3F775071976E7CF7C* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_tlsctx_trace_callback_tAC1169E423F6EBDA60CDD5D33E1795A8811E0BE6* ___cb1, void* ___userData2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___ctx0, ___cb1, ___userData2, ___errorState3, 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
void unitytls_tlsctx_set_x509verify_callback_t_Invoke_mA9AE094A7DB71B4B7B051BB3D67CB98A7F48D3CE_Multicast(unitytls_tlsctx_set_x509verify_callback_t_t032FE980BEDD0D201CAF1EE653ABE303CDBCA7C9* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D* ___cb1, void* ___userData2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, 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) (unitytls_tlsctx_set_x509verify_callback_t_t032FE980BEDD0D201CAF1EE653ABE303CDBCA7C9* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D* ___cb1, void* ___userData2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method);
for (il2cpp_array_size_t i = 0; i < length; i++)
{
unitytls_tlsctx_set_x509verify_callback_t_t032FE980BEDD0D201CAF1EE653ABE303CDBCA7C9* currentDelegate = reinterpret_cast<unitytls_tlsctx_set_x509verify_callback_t_t032FE980BEDD0D201CAF1EE653ABE303CDBCA7C9*>(delegatesToInvoke[i]);
((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___ctx0, ___cb1, ___userData2, ___errorState3, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
}
void unitytls_tlsctx_set_x509verify_callback_t_Invoke_mA9AE094A7DB71B4B7B051BB3D67CB98A7F48D3CE_Open(unitytls_tlsctx_set_x509verify_callback_t_t032FE980BEDD0D201CAF1EE653ABE303CDBCA7C9* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D* ___cb1, void* ___userData2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D*, void*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(___ctx0, ___cb1, ___userData2, ___errorState3, method);
}
void unitytls_tlsctx_set_x509verify_callback_t_Invoke_mA9AE094A7DB71B4B7B051BB3D67CB98A7F48D3CE_Closed(unitytls_tlsctx_set_x509verify_callback_t_t032FE980BEDD0D201CAF1EE653ABE303CDBCA7C9* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D* ___cb1, void* ___userData2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D*, void*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___ctx0, ___cb1, ___userData2, ___errorState3, method);
}
void unitytls_tlsctx_set_x509verify_callback_t_Invoke_mA9AE094A7DB71B4B7B051BB3D67CB98A7F48D3CE_OpenStaticInvoker(unitytls_tlsctx_set_x509verify_callback_t_t032FE980BEDD0D201CAF1EE653ABE303CDBCA7C9* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D* ___cb1, void* ___userData2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
InvokerActionInvoker4< unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D*, void*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, ___ctx0, ___cb1, ___userData2, ___errorState3);
}
void unitytls_tlsctx_set_x509verify_callback_t_Invoke_mA9AE094A7DB71B4B7B051BB3D67CB98A7F48D3CE_ClosedStaticInvoker(unitytls_tlsctx_set_x509verify_callback_t_t032FE980BEDD0D201CAF1EE653ABE303CDBCA7C9* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D* ___cb1, void* ___userData2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
InvokerActionInvoker5< RuntimeObject*, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D*, void*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___ctx0, ___cb1, ___userData2, ___errorState3);
}
IL2CPP_EXTERN_C void DelegatePInvokeWrapper_unitytls_tlsctx_set_x509verify_callback_t_t032FE980BEDD0D201CAF1EE653ABE303CDBCA7C9 (unitytls_tlsctx_set_x509verify_callback_t_t032FE980BEDD0D201CAF1EE653ABE303CDBCA7C9* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D* ___cb1, void* ___userData2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef void (CDECL *PInvokeFunc)(unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, Il2CppMethodPointer, void*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Marshaling of parameter '___cb1' to native representation
Il2CppMethodPointer ____cb1_marshaled = NULL;
____cb1_marshaled = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(___cb1));
// Native function invocation
il2cppPInvokeFunc(___ctx0, ____cb1_marshaled, ___userData2, ___errorState3);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_x509verify_callback_t::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_tlsctx_set_x509verify_callback_t__ctor_mE6C3A39FA8A1903C74826A5BFF748DFEB1A4D06D (unitytls_tlsctx_set_x509verify_callback_t_t032FE980BEDD0D201CAF1EE653ABE303CDBCA7C9* __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 == 4;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_set_x509verify_callback_t_Invoke_mA9AE094A7DB71B4B7B051BB3D67CB98A7F48D3CE_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_set_x509verify_callback_t_Invoke_mA9AE094A7DB71B4B7B051BB3D67CB98A7F48D3CE_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_set_x509verify_callback_t_Invoke_mA9AE094A7DB71B4B7B051BB3D67CB98A7F48D3CE_Open;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_set_x509verify_callback_t_Invoke_mA9AE094A7DB71B4B7B051BB3D67CB98A7F48D3CE_Closed;
}
else
{
bool isOpen = methodCount == 3;
if (isOpen)
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_set_x509verify_callback_t_Invoke_mA9AE094A7DB71B4B7B051BB3D67CB98A7F48D3CE_Open;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_set_x509verify_callback_t_Invoke_mA9AE094A7DB71B4B7B051BB3D67CB98A7F48D3CE_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&unitytls_tlsctx_set_x509verify_callback_t_Invoke_mA9AE094A7DB71B4B7B051BB3D67CB98A7F48D3CE_Multicast;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_x509verify_callback_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx*,Mono.Unity.UnityTls/unitytls_tlsctx_x509verify_callback,System.Void*,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_tlsctx_set_x509verify_callback_t_Invoke_mA9AE094A7DB71B4B7B051BB3D67CB98A7F48D3CE (unitytls_tlsctx_set_x509verify_callback_t_t032FE980BEDD0D201CAF1EE653ABE303CDBCA7C9* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D* ___cb1, void* ___userData2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_tlsctx_set_x509verify_callback_t_t032FE980BEDD0D201CAF1EE653ABE303CDBCA7C9* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D* ___cb1, void* ___userData2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___ctx0, ___cb1, ___userData2, ___errorState3, 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
void unitytls_tlsctx_set_supported_ciphersuites_t_Invoke_m8E153461EFCEAAAF59D1E918F7C06B14358B43E2_Multicast(unitytls_tlsctx_set_supported_ciphersuites_t_t007E8706D364DE695F1DBF28358058A1E73DF544* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint32_t* ___supportedCiphersuites1, intptr_t ___supportedCiphersuitesLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, 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) (unitytls_tlsctx_set_supported_ciphersuites_t_t007E8706D364DE695F1DBF28358058A1E73DF544* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint32_t* ___supportedCiphersuites1, intptr_t ___supportedCiphersuitesLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method);
for (il2cpp_array_size_t i = 0; i < length; i++)
{
unitytls_tlsctx_set_supported_ciphersuites_t_t007E8706D364DE695F1DBF28358058A1E73DF544* currentDelegate = reinterpret_cast<unitytls_tlsctx_set_supported_ciphersuites_t_t007E8706D364DE695F1DBF28358058A1E73DF544*>(delegatesToInvoke[i]);
((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___ctx0, ___supportedCiphersuites1, ___supportedCiphersuitesLen2, ___errorState3, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
}
void unitytls_tlsctx_set_supported_ciphersuites_t_Invoke_m8E153461EFCEAAAF59D1E918F7C06B14358B43E2_Open(unitytls_tlsctx_set_supported_ciphersuites_t_t007E8706D364DE695F1DBF28358058A1E73DF544* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint32_t* ___supportedCiphersuites1, intptr_t ___supportedCiphersuitesLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, uint32_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(___ctx0, ___supportedCiphersuites1, ___supportedCiphersuitesLen2, ___errorState3, method);
}
void unitytls_tlsctx_set_supported_ciphersuites_t_Invoke_m8E153461EFCEAAAF59D1E918F7C06B14358B43E2_Closed(unitytls_tlsctx_set_supported_ciphersuites_t_t007E8706D364DE695F1DBF28358058A1E73DF544* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint32_t* ___supportedCiphersuites1, intptr_t ___supportedCiphersuitesLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, uint32_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___ctx0, ___supportedCiphersuites1, ___supportedCiphersuitesLen2, ___errorState3, method);
}
void unitytls_tlsctx_set_supported_ciphersuites_t_Invoke_m8E153461EFCEAAAF59D1E918F7C06B14358B43E2_OpenStaticInvoker(unitytls_tlsctx_set_supported_ciphersuites_t_t007E8706D364DE695F1DBF28358058A1E73DF544* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint32_t* ___supportedCiphersuites1, intptr_t ___supportedCiphersuitesLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
InvokerActionInvoker4< unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, uint32_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, ___ctx0, ___supportedCiphersuites1, ___supportedCiphersuitesLen2, ___errorState3);
}
void unitytls_tlsctx_set_supported_ciphersuites_t_Invoke_m8E153461EFCEAAAF59D1E918F7C06B14358B43E2_ClosedStaticInvoker(unitytls_tlsctx_set_supported_ciphersuites_t_t007E8706D364DE695F1DBF28358058A1E73DF544* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint32_t* ___supportedCiphersuites1, intptr_t ___supportedCiphersuitesLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
InvokerActionInvoker5< RuntimeObject*, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, uint32_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___ctx0, ___supportedCiphersuites1, ___supportedCiphersuitesLen2, ___errorState3);
}
IL2CPP_EXTERN_C void DelegatePInvokeWrapper_unitytls_tlsctx_set_supported_ciphersuites_t_t007E8706D364DE695F1DBF28358058A1E73DF544 (unitytls_tlsctx_set_supported_ciphersuites_t_t007E8706D364DE695F1DBF28358058A1E73DF544* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint32_t* ___supportedCiphersuites1, intptr_t ___supportedCiphersuitesLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef void (CDECL *PInvokeFunc)(unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, uint32_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Native function invocation
il2cppPInvokeFunc(___ctx0, ___supportedCiphersuites1, ___supportedCiphersuitesLen2, ___errorState3);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_supported_ciphersuites_t::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_tlsctx_set_supported_ciphersuites_t__ctor_m856B5362E3479A5C75709F62B5A316C0A0F913FF (unitytls_tlsctx_set_supported_ciphersuites_t_t007E8706D364DE695F1DBF28358058A1E73DF544* __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 == 4;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_set_supported_ciphersuites_t_Invoke_m8E153461EFCEAAAF59D1E918F7C06B14358B43E2_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_set_supported_ciphersuites_t_Invoke_m8E153461EFCEAAAF59D1E918F7C06B14358B43E2_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_set_supported_ciphersuites_t_Invoke_m8E153461EFCEAAAF59D1E918F7C06B14358B43E2_Open;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_set_supported_ciphersuites_t_Invoke_m8E153461EFCEAAAF59D1E918F7C06B14358B43E2_Closed;
}
else
{
bool isOpen = methodCount == 3;
if (isOpen)
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_set_supported_ciphersuites_t_Invoke_m8E153461EFCEAAAF59D1E918F7C06B14358B43E2_Open;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_set_supported_ciphersuites_t_Invoke_m8E153461EFCEAAAF59D1E918F7C06B14358B43E2_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&unitytls_tlsctx_set_supported_ciphersuites_t_Invoke_m8E153461EFCEAAAF59D1E918F7C06B14358B43E2_Multicast;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_supported_ciphersuites_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx*,Mono.Unity.UnityTls/unitytls_ciphersuite*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_tlsctx_set_supported_ciphersuites_t_Invoke_m8E153461EFCEAAAF59D1E918F7C06B14358B43E2 (unitytls_tlsctx_set_supported_ciphersuites_t_t007E8706D364DE695F1DBF28358058A1E73DF544* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint32_t* ___supportedCiphersuites1, intptr_t ___supportedCiphersuitesLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_tlsctx_set_supported_ciphersuites_t_t007E8706D364DE695F1DBF28358058A1E73DF544* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint32_t* ___supportedCiphersuites1, intptr_t ___supportedCiphersuitesLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___ctx0, ___supportedCiphersuites1, ___supportedCiphersuitesLen2, ___errorState3, 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
uint32_t unitytls_tlsctx_get_ciphersuite_t_Invoke_m2DF155D62800CFFD66AC63538F69DB2275EC3FFD_Multicast(unitytls_tlsctx_get_ciphersuite_t_t7317543D399259616648B1AA19447C4B63F70EF2* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, 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 uint32_t (*FunctionPointerType) (unitytls_tlsctx_get_ciphersuite_t_t7317543D399259616648B1AA19447C4B63F70EF2* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method);
uint32_t retVal = 0;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
unitytls_tlsctx_get_ciphersuite_t_t7317543D399259616648B1AA19447C4B63F70EF2* currentDelegate = reinterpret_cast<unitytls_tlsctx_get_ciphersuite_t_t7317543D399259616648B1AA19447C4B63F70EF2*>(delegatesToInvoke[i]);
retVal = ((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___ctx0, ___errorState1, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
return retVal;
}
uint32_t unitytls_tlsctx_get_ciphersuite_t_Invoke_m2DF155D62800CFFD66AC63538F69DB2275EC3FFD_Open(unitytls_tlsctx_get_ciphersuite_t_t7317543D399259616648B1AA19447C4B63F70EF2* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
typedef uint32_t (*FunctionPointerType) (unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(___ctx0, ___errorState1, method);
}
uint32_t unitytls_tlsctx_get_ciphersuite_t_Invoke_m2DF155D62800CFFD66AC63538F69DB2275EC3FFD_Closed(unitytls_tlsctx_get_ciphersuite_t_t7317543D399259616648B1AA19447C4B63F70EF2* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
typedef uint32_t (*FunctionPointerType) (RuntimeObject*, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___ctx0, ___errorState1, method);
}
uint32_t unitytls_tlsctx_get_ciphersuite_t_Invoke_m2DF155D62800CFFD66AC63538F69DB2275EC3FFD_OpenStaticInvoker(unitytls_tlsctx_get_ciphersuite_t_t7317543D399259616648B1AA19447C4B63F70EF2* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
return InvokerFuncInvoker2< uint32_t, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, ___ctx0, ___errorState1);
}
uint32_t unitytls_tlsctx_get_ciphersuite_t_Invoke_m2DF155D62800CFFD66AC63538F69DB2275EC3FFD_ClosedStaticInvoker(unitytls_tlsctx_get_ciphersuite_t_t7317543D399259616648B1AA19447C4B63F70EF2* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
return InvokerFuncInvoker3< uint32_t, RuntimeObject*, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___ctx0, ___errorState1);
}
IL2CPP_EXTERN_C uint32_t DelegatePInvokeWrapper_unitytls_tlsctx_get_ciphersuite_t_t7317543D399259616648B1AA19447C4B63F70EF2 (unitytls_tlsctx_get_ciphersuite_t_t7317543D399259616648B1AA19447C4B63F70EF2* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
typedef uint32_t (CDECL *PInvokeFunc)(unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Native function invocation
uint32_t returnValue = il2cppPInvokeFunc(___ctx0, ___errorState1);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_get_ciphersuite_t::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_tlsctx_get_ciphersuite_t__ctor_mFD8DF58601BB4A8F00C3A56F881F2E92D7536CA9 (unitytls_tlsctx_get_ciphersuite_t_t7317543D399259616648B1AA19447C4B63F70EF2* __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)&unitytls_tlsctx_get_ciphersuite_t_Invoke_m2DF155D62800CFFD66AC63538F69DB2275EC3FFD_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_get_ciphersuite_t_Invoke_m2DF155D62800CFFD66AC63538F69DB2275EC3FFD_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_get_ciphersuite_t_Invoke_m2DF155D62800CFFD66AC63538F69DB2275EC3FFD_Open;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_get_ciphersuite_t_Invoke_m2DF155D62800CFFD66AC63538F69DB2275EC3FFD_Closed;
}
else
{
bool isOpen = methodCount == 1;
if (isOpen)
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_get_ciphersuite_t_Invoke_m2DF155D62800CFFD66AC63538F69DB2275EC3FFD_Open;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_get_ciphersuite_t_Invoke_m2DF155D62800CFFD66AC63538F69DB2275EC3FFD_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&unitytls_tlsctx_get_ciphersuite_t_Invoke_m2DF155D62800CFFD66AC63538F69DB2275EC3FFD_Multicast;
}
// Mono.Unity.UnityTls/unitytls_ciphersuite Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_get_ciphersuite_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx*,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t unitytls_tlsctx_get_ciphersuite_t_Invoke_m2DF155D62800CFFD66AC63538F69DB2275EC3FFD (unitytls_tlsctx_get_ciphersuite_t_t7317543D399259616648B1AA19447C4B63F70EF2* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
typedef uint32_t (*FunctionPointerType) (unitytls_tlsctx_get_ciphersuite_t_t7317543D399259616648B1AA19447C4B63F70EF2* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___ctx0, ___errorState1, 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
uint32_t unitytls_tlsctx_get_protocol_t_Invoke_m3D931DDD241F0B3EDA8F6F1EFA159C0669E7E3F0_Multicast(unitytls_tlsctx_get_protocol_t_t04E3B73C1D77379F7C7388ED4934189365326F3C* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, 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 uint32_t (*FunctionPointerType) (unitytls_tlsctx_get_protocol_t_t04E3B73C1D77379F7C7388ED4934189365326F3C* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method);
uint32_t retVal = 0;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
unitytls_tlsctx_get_protocol_t_t04E3B73C1D77379F7C7388ED4934189365326F3C* currentDelegate = reinterpret_cast<unitytls_tlsctx_get_protocol_t_t04E3B73C1D77379F7C7388ED4934189365326F3C*>(delegatesToInvoke[i]);
retVal = ((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___ctx0, ___errorState1, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
return retVal;
}
uint32_t unitytls_tlsctx_get_protocol_t_Invoke_m3D931DDD241F0B3EDA8F6F1EFA159C0669E7E3F0_Open(unitytls_tlsctx_get_protocol_t_t04E3B73C1D77379F7C7388ED4934189365326F3C* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
typedef uint32_t (*FunctionPointerType) (unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(___ctx0, ___errorState1, method);
}
uint32_t unitytls_tlsctx_get_protocol_t_Invoke_m3D931DDD241F0B3EDA8F6F1EFA159C0669E7E3F0_Closed(unitytls_tlsctx_get_protocol_t_t04E3B73C1D77379F7C7388ED4934189365326F3C* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
typedef uint32_t (*FunctionPointerType) (RuntimeObject*, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___ctx0, ___errorState1, method);
}
uint32_t unitytls_tlsctx_get_protocol_t_Invoke_m3D931DDD241F0B3EDA8F6F1EFA159C0669E7E3F0_OpenStaticInvoker(unitytls_tlsctx_get_protocol_t_t04E3B73C1D77379F7C7388ED4934189365326F3C* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
return InvokerFuncInvoker2< uint32_t, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, ___ctx0, ___errorState1);
}
uint32_t unitytls_tlsctx_get_protocol_t_Invoke_m3D931DDD241F0B3EDA8F6F1EFA159C0669E7E3F0_ClosedStaticInvoker(unitytls_tlsctx_get_protocol_t_t04E3B73C1D77379F7C7388ED4934189365326F3C* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
return InvokerFuncInvoker3< uint32_t, RuntimeObject*, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___ctx0, ___errorState1);
}
IL2CPP_EXTERN_C uint32_t DelegatePInvokeWrapper_unitytls_tlsctx_get_protocol_t_t04E3B73C1D77379F7C7388ED4934189365326F3C (unitytls_tlsctx_get_protocol_t_t04E3B73C1D77379F7C7388ED4934189365326F3C* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
typedef uint32_t (CDECL *PInvokeFunc)(unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Native function invocation
uint32_t returnValue = il2cppPInvokeFunc(___ctx0, ___errorState1);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_get_protocol_t::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_tlsctx_get_protocol_t__ctor_mAA5710F913B95E0964AD90EDF59FD71E984DD00E (unitytls_tlsctx_get_protocol_t_t04E3B73C1D77379F7C7388ED4934189365326F3C* __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)&unitytls_tlsctx_get_protocol_t_Invoke_m3D931DDD241F0B3EDA8F6F1EFA159C0669E7E3F0_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_get_protocol_t_Invoke_m3D931DDD241F0B3EDA8F6F1EFA159C0669E7E3F0_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_get_protocol_t_Invoke_m3D931DDD241F0B3EDA8F6F1EFA159C0669E7E3F0_Open;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_get_protocol_t_Invoke_m3D931DDD241F0B3EDA8F6F1EFA159C0669E7E3F0_Closed;
}
else
{
bool isOpen = methodCount == 1;
if (isOpen)
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_get_protocol_t_Invoke_m3D931DDD241F0B3EDA8F6F1EFA159C0669E7E3F0_Open;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_get_protocol_t_Invoke_m3D931DDD241F0B3EDA8F6F1EFA159C0669E7E3F0_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&unitytls_tlsctx_get_protocol_t_Invoke_m3D931DDD241F0B3EDA8F6F1EFA159C0669E7E3F0_Multicast;
}
// Mono.Unity.UnityTls/unitytls_protocol Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_get_protocol_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx*,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t unitytls_tlsctx_get_protocol_t_Invoke_m3D931DDD241F0B3EDA8F6F1EFA159C0669E7E3F0 (unitytls_tlsctx_get_protocol_t_t04E3B73C1D77379F7C7388ED4934189365326F3C* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
typedef uint32_t (*FunctionPointerType) (unitytls_tlsctx_get_protocol_t_t04E3B73C1D77379F7C7388ED4934189365326F3C* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___ctx0, ___errorState1, 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
uint32_t unitytls_tlsctx_process_handshake_t_Invoke_mD8F2422C5C6C9FF0ADDAB17AECB998C2E225CF7A_Multicast(unitytls_tlsctx_process_handshake_t_t8D94F5FAD00CD61BF950829866C0C6E29D202606* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, 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 uint32_t (*FunctionPointerType) (unitytls_tlsctx_process_handshake_t_t8D94F5FAD00CD61BF950829866C0C6E29D202606* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method);
uint32_t retVal = 0;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
unitytls_tlsctx_process_handshake_t_t8D94F5FAD00CD61BF950829866C0C6E29D202606* currentDelegate = reinterpret_cast<unitytls_tlsctx_process_handshake_t_t8D94F5FAD00CD61BF950829866C0C6E29D202606*>(delegatesToInvoke[i]);
retVal = ((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___ctx0, ___errorState1, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
return retVal;
}
uint32_t unitytls_tlsctx_process_handshake_t_Invoke_mD8F2422C5C6C9FF0ADDAB17AECB998C2E225CF7A_Open(unitytls_tlsctx_process_handshake_t_t8D94F5FAD00CD61BF950829866C0C6E29D202606* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
typedef uint32_t (*FunctionPointerType) (unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(___ctx0, ___errorState1, method);
}
uint32_t unitytls_tlsctx_process_handshake_t_Invoke_mD8F2422C5C6C9FF0ADDAB17AECB998C2E225CF7A_Closed(unitytls_tlsctx_process_handshake_t_t8D94F5FAD00CD61BF950829866C0C6E29D202606* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
typedef uint32_t (*FunctionPointerType) (RuntimeObject*, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___ctx0, ___errorState1, method);
}
uint32_t unitytls_tlsctx_process_handshake_t_Invoke_mD8F2422C5C6C9FF0ADDAB17AECB998C2E225CF7A_OpenStaticInvoker(unitytls_tlsctx_process_handshake_t_t8D94F5FAD00CD61BF950829866C0C6E29D202606* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
return InvokerFuncInvoker2< uint32_t, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, ___ctx0, ___errorState1);
}
uint32_t unitytls_tlsctx_process_handshake_t_Invoke_mD8F2422C5C6C9FF0ADDAB17AECB998C2E225CF7A_ClosedStaticInvoker(unitytls_tlsctx_process_handshake_t_t8D94F5FAD00CD61BF950829866C0C6E29D202606* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
return InvokerFuncInvoker3< uint32_t, RuntimeObject*, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___ctx0, ___errorState1);
}
IL2CPP_EXTERN_C uint32_t DelegatePInvokeWrapper_unitytls_tlsctx_process_handshake_t_t8D94F5FAD00CD61BF950829866C0C6E29D202606 (unitytls_tlsctx_process_handshake_t_t8D94F5FAD00CD61BF950829866C0C6E29D202606* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
typedef uint32_t (CDECL *PInvokeFunc)(unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Native function invocation
uint32_t returnValue = il2cppPInvokeFunc(___ctx0, ___errorState1);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_process_handshake_t::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_tlsctx_process_handshake_t__ctor_m163A6D53CE45B5161FD5586DBBD8BB90B9EDDA45 (unitytls_tlsctx_process_handshake_t_t8D94F5FAD00CD61BF950829866C0C6E29D202606* __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)&unitytls_tlsctx_process_handshake_t_Invoke_mD8F2422C5C6C9FF0ADDAB17AECB998C2E225CF7A_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_process_handshake_t_Invoke_mD8F2422C5C6C9FF0ADDAB17AECB998C2E225CF7A_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_process_handshake_t_Invoke_mD8F2422C5C6C9FF0ADDAB17AECB998C2E225CF7A_Open;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_process_handshake_t_Invoke_mD8F2422C5C6C9FF0ADDAB17AECB998C2E225CF7A_Closed;
}
else
{
bool isOpen = methodCount == 1;
if (isOpen)
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_process_handshake_t_Invoke_mD8F2422C5C6C9FF0ADDAB17AECB998C2E225CF7A_Open;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_process_handshake_t_Invoke_mD8F2422C5C6C9FF0ADDAB17AECB998C2E225CF7A_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&unitytls_tlsctx_process_handshake_t_Invoke_mD8F2422C5C6C9FF0ADDAB17AECB998C2E225CF7A_Multicast;
}
// Mono.Unity.UnityTls/unitytls_x509verify_result Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_process_handshake_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx*,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t unitytls_tlsctx_process_handshake_t_Invoke_mD8F2422C5C6C9FF0ADDAB17AECB998C2E225CF7A (unitytls_tlsctx_process_handshake_t_t8D94F5FAD00CD61BF950829866C0C6E29D202606* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
typedef uint32_t (*FunctionPointerType) (unitytls_tlsctx_process_handshake_t_t8D94F5FAD00CD61BF950829866C0C6E29D202606* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___ctx0, ___errorState1, 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
intptr_t unitytls_tlsctx_read_t_Invoke_m0FB34952D7592128A211AA0DA5536A325494FA04_Multicast(unitytls_tlsctx_read_t_t3E3C711F7A47E704ABDF0DF0B7515E7306EB7C95* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, 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 intptr_t (*FunctionPointerType) (unitytls_tlsctx_read_t_t3E3C711F7A47E704ABDF0DF0B7515E7306EB7C95* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method);
intptr_t retVal;
memset((&retVal), 0, sizeof(retVal));
for (il2cpp_array_size_t i = 0; i < length; i++)
{
unitytls_tlsctx_read_t_t3E3C711F7A47E704ABDF0DF0B7515E7306EB7C95* currentDelegate = reinterpret_cast<unitytls_tlsctx_read_t_t3E3C711F7A47E704ABDF0DF0B7515E7306EB7C95*>(delegatesToInvoke[i]);
retVal = ((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___ctx0, ___buffer1, ___bufferLen2, ___errorState3, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
return retVal;
}
intptr_t unitytls_tlsctx_read_t_Invoke_m0FB34952D7592128A211AA0DA5536A325494FA04_Open(unitytls_tlsctx_read_t_t3E3C711F7A47E704ABDF0DF0B7515E7306EB7C95* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef intptr_t (*FunctionPointerType) (unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(___ctx0, ___buffer1, ___bufferLen2, ___errorState3, method);
}
intptr_t unitytls_tlsctx_read_t_Invoke_m0FB34952D7592128A211AA0DA5536A325494FA04_Closed(unitytls_tlsctx_read_t_t3E3C711F7A47E704ABDF0DF0B7515E7306EB7C95* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef intptr_t (*FunctionPointerType) (RuntimeObject*, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___ctx0, ___buffer1, ___bufferLen2, ___errorState3, method);
}
intptr_t unitytls_tlsctx_read_t_Invoke_m0FB34952D7592128A211AA0DA5536A325494FA04_OpenStaticInvoker(unitytls_tlsctx_read_t_t3E3C711F7A47E704ABDF0DF0B7515E7306EB7C95* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
return InvokerFuncInvoker4< intptr_t, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, ___ctx0, ___buffer1, ___bufferLen2, ___errorState3);
}
intptr_t unitytls_tlsctx_read_t_Invoke_m0FB34952D7592128A211AA0DA5536A325494FA04_ClosedStaticInvoker(unitytls_tlsctx_read_t_t3E3C711F7A47E704ABDF0DF0B7515E7306EB7C95* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
return InvokerFuncInvoker5< intptr_t, RuntimeObject*, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___ctx0, ___buffer1, ___bufferLen2, ___errorState3);
}
IL2CPP_EXTERN_C intptr_t DelegatePInvokeWrapper_unitytls_tlsctx_read_t_t3E3C711F7A47E704ABDF0DF0B7515E7306EB7C95 (unitytls_tlsctx_read_t_t3E3C711F7A47E704ABDF0DF0B7515E7306EB7C95* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef intptr_t (CDECL *PInvokeFunc)(unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Native function invocation
intptr_t returnValue = il2cppPInvokeFunc(___ctx0, ___buffer1, ___bufferLen2, ___errorState3);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_read_t::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_tlsctx_read_t__ctor_m55B52EA0C5ED94A8030D80A9B7967F34850AC799 (unitytls_tlsctx_read_t_t3E3C711F7A47E704ABDF0DF0B7515E7306EB7C95* __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 == 4;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_read_t_Invoke_m0FB34952D7592128A211AA0DA5536A325494FA04_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_read_t_Invoke_m0FB34952D7592128A211AA0DA5536A325494FA04_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_read_t_Invoke_m0FB34952D7592128A211AA0DA5536A325494FA04_Open;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_read_t_Invoke_m0FB34952D7592128A211AA0DA5536A325494FA04_Closed;
}
else
{
bool isOpen = methodCount == 3;
if (isOpen)
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_read_t_Invoke_m0FB34952D7592128A211AA0DA5536A325494FA04_Open;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_read_t_Invoke_m0FB34952D7592128A211AA0DA5536A325494FA04_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&unitytls_tlsctx_read_t_Invoke_m0FB34952D7592128A211AA0DA5536A325494FA04_Multicast;
}
// System.IntPtr Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_read_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx*,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t unitytls_tlsctx_read_t_Invoke_m0FB34952D7592128A211AA0DA5536A325494FA04 (unitytls_tlsctx_read_t_t3E3C711F7A47E704ABDF0DF0B7515E7306EB7C95* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef intptr_t (*FunctionPointerType) (unitytls_tlsctx_read_t_t3E3C711F7A47E704ABDF0DF0B7515E7306EB7C95* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___ctx0, ___buffer1, ___bufferLen2, ___errorState3, 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
intptr_t unitytls_tlsctx_write_t_Invoke_mC6A06FBF8E4C5652830248B521C83865B3F2DBBC_Multicast(unitytls_tlsctx_write_t_t976A41600B61F9C8DF022296B67316FFA53EB386* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint8_t* ___data1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, 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 intptr_t (*FunctionPointerType) (unitytls_tlsctx_write_t_t976A41600B61F9C8DF022296B67316FFA53EB386* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint8_t* ___data1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method);
intptr_t retVal;
memset((&retVal), 0, sizeof(retVal));
for (il2cpp_array_size_t i = 0; i < length; i++)
{
unitytls_tlsctx_write_t_t976A41600B61F9C8DF022296B67316FFA53EB386* currentDelegate = reinterpret_cast<unitytls_tlsctx_write_t_t976A41600B61F9C8DF022296B67316FFA53EB386*>(delegatesToInvoke[i]);
retVal = ((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___ctx0, ___data1, ___bufferLen2, ___errorState3, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
return retVal;
}
intptr_t unitytls_tlsctx_write_t_Invoke_mC6A06FBF8E4C5652830248B521C83865B3F2DBBC_Open(unitytls_tlsctx_write_t_t976A41600B61F9C8DF022296B67316FFA53EB386* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint8_t* ___data1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef intptr_t (*FunctionPointerType) (unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(___ctx0, ___data1, ___bufferLen2, ___errorState3, method);
}
intptr_t unitytls_tlsctx_write_t_Invoke_mC6A06FBF8E4C5652830248B521C83865B3F2DBBC_Closed(unitytls_tlsctx_write_t_t976A41600B61F9C8DF022296B67316FFA53EB386* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint8_t* ___data1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef intptr_t (*FunctionPointerType) (RuntimeObject*, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___ctx0, ___data1, ___bufferLen2, ___errorState3, method);
}
intptr_t unitytls_tlsctx_write_t_Invoke_mC6A06FBF8E4C5652830248B521C83865B3F2DBBC_OpenStaticInvoker(unitytls_tlsctx_write_t_t976A41600B61F9C8DF022296B67316FFA53EB386* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint8_t* ___data1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
return InvokerFuncInvoker4< intptr_t, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, ___ctx0, ___data1, ___bufferLen2, ___errorState3);
}
intptr_t unitytls_tlsctx_write_t_Invoke_mC6A06FBF8E4C5652830248B521C83865B3F2DBBC_ClosedStaticInvoker(unitytls_tlsctx_write_t_t976A41600B61F9C8DF022296B67316FFA53EB386* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint8_t* ___data1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
return InvokerFuncInvoker5< intptr_t, RuntimeObject*, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___ctx0, ___data1, ___bufferLen2, ___errorState3);
}
IL2CPP_EXTERN_C intptr_t DelegatePInvokeWrapper_unitytls_tlsctx_write_t_t976A41600B61F9C8DF022296B67316FFA53EB386 (unitytls_tlsctx_write_t_t976A41600B61F9C8DF022296B67316FFA53EB386* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint8_t* ___data1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef intptr_t (CDECL *PInvokeFunc)(unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Native function invocation
intptr_t returnValue = il2cppPInvokeFunc(___ctx0, ___data1, ___bufferLen2, ___errorState3);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_write_t::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_tlsctx_write_t__ctor_mD229A38085F7CAE944D6CF0D505C6F167C709E96 (unitytls_tlsctx_write_t_t976A41600B61F9C8DF022296B67316FFA53EB386* __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 == 4;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_write_t_Invoke_mC6A06FBF8E4C5652830248B521C83865B3F2DBBC_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_write_t_Invoke_mC6A06FBF8E4C5652830248B521C83865B3F2DBBC_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_write_t_Invoke_mC6A06FBF8E4C5652830248B521C83865B3F2DBBC_Open;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_write_t_Invoke_mC6A06FBF8E4C5652830248B521C83865B3F2DBBC_Closed;
}
else
{
bool isOpen = methodCount == 3;
if (isOpen)
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_write_t_Invoke_mC6A06FBF8E4C5652830248B521C83865B3F2DBBC_Open;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_write_t_Invoke_mC6A06FBF8E4C5652830248B521C83865B3F2DBBC_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&unitytls_tlsctx_write_t_Invoke_mC6A06FBF8E4C5652830248B521C83865B3F2DBBC_Multicast;
}
// System.IntPtr Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_write_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx*,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t unitytls_tlsctx_write_t_Invoke_mC6A06FBF8E4C5652830248B521C83865B3F2DBBC (unitytls_tlsctx_write_t_t976A41600B61F9C8DF022296B67316FFA53EB386* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint8_t* ___data1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef intptr_t (*FunctionPointerType) (unitytls_tlsctx_write_t_t976A41600B61F9C8DF022296B67316FFA53EB386* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint8_t* ___data1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___ctx0, ___data1, ___bufferLen2, ___errorState3, 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
void unitytls_tlsctx_notify_close_t_Invoke_m6E5688DDA03F313A1C470E4C30263C5B4A174138_Multicast(unitytls_tlsctx_notify_close_t_t717D19846262E3DF5D1A69C5E136912E7A54B253* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, 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) (unitytls_tlsctx_notify_close_t_t717D19846262E3DF5D1A69C5E136912E7A54B253* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method);
for (il2cpp_array_size_t i = 0; i < length; i++)
{
unitytls_tlsctx_notify_close_t_t717D19846262E3DF5D1A69C5E136912E7A54B253* currentDelegate = reinterpret_cast<unitytls_tlsctx_notify_close_t_t717D19846262E3DF5D1A69C5E136912E7A54B253*>(delegatesToInvoke[i]);
((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___ctx0, ___errorState1, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
}
void unitytls_tlsctx_notify_close_t_Invoke_m6E5688DDA03F313A1C470E4C30263C5B4A174138_Open(unitytls_tlsctx_notify_close_t_t717D19846262E3DF5D1A69C5E136912E7A54B253* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(___ctx0, ___errorState1, method);
}
void unitytls_tlsctx_notify_close_t_Invoke_m6E5688DDA03F313A1C470E4C30263C5B4A174138_Closed(unitytls_tlsctx_notify_close_t_t717D19846262E3DF5D1A69C5E136912E7A54B253* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___ctx0, ___errorState1, method);
}
void unitytls_tlsctx_notify_close_t_Invoke_m6E5688DDA03F313A1C470E4C30263C5B4A174138_OpenStaticInvoker(unitytls_tlsctx_notify_close_t_t717D19846262E3DF5D1A69C5E136912E7A54B253* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
InvokerActionInvoker2< unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, ___ctx0, ___errorState1);
}
void unitytls_tlsctx_notify_close_t_Invoke_m6E5688DDA03F313A1C470E4C30263C5B4A174138_ClosedStaticInvoker(unitytls_tlsctx_notify_close_t_t717D19846262E3DF5D1A69C5E136912E7A54B253* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
InvokerActionInvoker3< RuntimeObject*, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___ctx0, ___errorState1);
}
IL2CPP_EXTERN_C void DelegatePInvokeWrapper_unitytls_tlsctx_notify_close_t_t717D19846262E3DF5D1A69C5E136912E7A54B253 (unitytls_tlsctx_notify_close_t_t717D19846262E3DF5D1A69C5E136912E7A54B253* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
typedef void (CDECL *PInvokeFunc)(unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Native function invocation
il2cppPInvokeFunc(___ctx0, ___errorState1);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_notify_close_t::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_tlsctx_notify_close_t__ctor_m700B77B204CFF6F4113F3E3F4CF6673CF7ACC0FB (unitytls_tlsctx_notify_close_t_t717D19846262E3DF5D1A69C5E136912E7A54B253* __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)&unitytls_tlsctx_notify_close_t_Invoke_m6E5688DDA03F313A1C470E4C30263C5B4A174138_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_notify_close_t_Invoke_m6E5688DDA03F313A1C470E4C30263C5B4A174138_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_notify_close_t_Invoke_m6E5688DDA03F313A1C470E4C30263C5B4A174138_Open;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_notify_close_t_Invoke_m6E5688DDA03F313A1C470E4C30263C5B4A174138_Closed;
}
else
{
bool isOpen = methodCount == 1;
if (isOpen)
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_notify_close_t_Invoke_m6E5688DDA03F313A1C470E4C30263C5B4A174138_Open;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_notify_close_t_Invoke_m6E5688DDA03F313A1C470E4C30263C5B4A174138_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&unitytls_tlsctx_notify_close_t_Invoke_m6E5688DDA03F313A1C470E4C30263C5B4A174138_Multicast;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_notify_close_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx*,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_tlsctx_notify_close_t_Invoke_m6E5688DDA03F313A1C470E4C30263C5B4A174138 (unitytls_tlsctx_notify_close_t_t717D19846262E3DF5D1A69C5E136912E7A54B253* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_tlsctx_notify_close_t_t717D19846262E3DF5D1A69C5E136912E7A54B253* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___ctx0, ___errorState1, 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
void unitytls_tlsctx_free_t_Invoke_mC5D5191740D2507A83D95B4B3E6CE4C4A9FBAFD2_Multicast(unitytls_tlsctx_free_t_tFBF7BB64D2E1C183718FB5809ABF0051395FD8F0* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, 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) (unitytls_tlsctx_free_t_tFBF7BB64D2E1C183718FB5809ABF0051395FD8F0* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, const RuntimeMethod* method);
for (il2cpp_array_size_t i = 0; i < length; i++)
{
unitytls_tlsctx_free_t_tFBF7BB64D2E1C183718FB5809ABF0051395FD8F0* currentDelegate = reinterpret_cast<unitytls_tlsctx_free_t_tFBF7BB64D2E1C183718FB5809ABF0051395FD8F0*>(delegatesToInvoke[i]);
((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___ctx0, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
}
void unitytls_tlsctx_free_t_Invoke_mC5D5191740D2507A83D95B4B3E6CE4C4A9FBAFD2_Open(unitytls_tlsctx_free_t_tFBF7BB64D2E1C183718FB5809ABF0051395FD8F0* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(___ctx0, method);
}
void unitytls_tlsctx_free_t_Invoke_mC5D5191740D2507A83D95B4B3E6CE4C4A9FBAFD2_Closed(unitytls_tlsctx_free_t_tFBF7BB64D2E1C183718FB5809ABF0051395FD8F0* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___ctx0, method);
}
void unitytls_tlsctx_free_t_Invoke_mC5D5191740D2507A83D95B4B3E6CE4C4A9FBAFD2_OpenStaticInvoker(unitytls_tlsctx_free_t_tFBF7BB64D2E1C183718FB5809ABF0051395FD8F0* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, const RuntimeMethod* method)
{
InvokerActionInvoker1< unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* >::Invoke(__this->___method_ptr_0, method, NULL, ___ctx0);
}
void unitytls_tlsctx_free_t_Invoke_mC5D5191740D2507A83D95B4B3E6CE4C4A9FBAFD2_ClosedStaticInvoker(unitytls_tlsctx_free_t_tFBF7BB64D2E1C183718FB5809ABF0051395FD8F0* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, const RuntimeMethod* method)
{
InvokerActionInvoker2< RuntimeObject*, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___ctx0);
}
IL2CPP_EXTERN_C void DelegatePInvokeWrapper_unitytls_tlsctx_free_t_tFBF7BB64D2E1C183718FB5809ABF0051395FD8F0 (unitytls_tlsctx_free_t_tFBF7BB64D2E1C183718FB5809ABF0051395FD8F0* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, const RuntimeMethod* method)
{
typedef void (CDECL *PInvokeFunc)(unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Native function invocation
il2cppPInvokeFunc(___ctx0);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_free_t::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_tlsctx_free_t__ctor_m46E06E2335A31589194453E910356B6456160E7E (unitytls_tlsctx_free_t_tFBF7BB64D2E1C183718FB5809ABF0051395FD8F0* __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)&unitytls_tlsctx_free_t_Invoke_mC5D5191740D2507A83D95B4B3E6CE4C4A9FBAFD2_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_free_t_Invoke_mC5D5191740D2507A83D95B4B3E6CE4C4A9FBAFD2_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_free_t_Invoke_mC5D5191740D2507A83D95B4B3E6CE4C4A9FBAFD2_Open;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_free_t_Invoke_mC5D5191740D2507A83D95B4B3E6CE4C4A9FBAFD2_Closed;
}
else
{
bool isOpen = methodCount == 0;
if (isOpen)
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_free_t_Invoke_mC5D5191740D2507A83D95B4B3E6CE4C4A9FBAFD2_Open;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_tlsctx_free_t_Invoke_mC5D5191740D2507A83D95B4B3E6CE4C4A9FBAFD2_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&unitytls_tlsctx_free_t_Invoke_mC5D5191740D2507A83D95B4B3E6CE4C4A9FBAFD2_Multicast;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_free_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_tlsctx_free_t_Invoke_mC5D5191740D2507A83D95B4B3E6CE4C4A9FBAFD2 (unitytls_tlsctx_free_t_tFBF7BB64D2E1C183718FB5809ABF0051395FD8F0* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_tlsctx_free_t_tFBF7BB64D2E1C183718FB5809ABF0051395FD8F0* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___ctx0, 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
void unitytls_random_generate_bytes_t_Invoke_mF0A5B5E7279FF32FBFF48DBB98EB07C88C63EF92_Multicast(unitytls_random_generate_bytes_t_t6E7011EF958B0948582F8D1D213B454A5A962569* __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, 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) (unitytls_random_generate_bytes_t_t6E7011EF958B0948582F8D1D213B454A5A962569* __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method);
for (il2cpp_array_size_t i = 0; i < length; i++)
{
unitytls_random_generate_bytes_t_t6E7011EF958B0948582F8D1D213B454A5A962569* currentDelegate = reinterpret_cast<unitytls_random_generate_bytes_t_t6E7011EF958B0948582F8D1D213B454A5A962569*>(delegatesToInvoke[i]);
((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___buffer0, ___bufferLen1, ___errorState2, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
}
void unitytls_random_generate_bytes_t_Invoke_mF0A5B5E7279FF32FBFF48DBB98EB07C88C63EF92_Open(unitytls_random_generate_bytes_t_t6E7011EF958B0948582F8D1D213B454A5A962569* __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(___buffer0, ___bufferLen1, ___errorState2, method);
}
void unitytls_random_generate_bytes_t_Invoke_mF0A5B5E7279FF32FBFF48DBB98EB07C88C63EF92_Closed(unitytls_random_generate_bytes_t_t6E7011EF958B0948582F8D1D213B454A5A962569* __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___buffer0, ___bufferLen1, ___errorState2, method);
}
void unitytls_random_generate_bytes_t_Invoke_mF0A5B5E7279FF32FBFF48DBB98EB07C88C63EF92_OpenStaticInvoker(unitytls_random_generate_bytes_t_t6E7011EF958B0948582F8D1D213B454A5A962569* __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method)
{
InvokerActionInvoker3< uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, ___buffer0, ___bufferLen1, ___errorState2);
}
void unitytls_random_generate_bytes_t_Invoke_mF0A5B5E7279FF32FBFF48DBB98EB07C88C63EF92_ClosedStaticInvoker(unitytls_random_generate_bytes_t_t6E7011EF958B0948582F8D1D213B454A5A962569* __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method)
{
InvokerActionInvoker4< RuntimeObject*, uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___buffer0, ___bufferLen1, ___errorState2);
}
IL2CPP_EXTERN_C void DelegatePInvokeWrapper_unitytls_random_generate_bytes_t_t6E7011EF958B0948582F8D1D213B454A5A962569 (unitytls_random_generate_bytes_t_t6E7011EF958B0948582F8D1D213B454A5A962569* __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method)
{
typedef void (CDECL *PInvokeFunc)(uint8_t*, intptr_t, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Native function invocation
il2cppPInvokeFunc(___buffer0, ___bufferLen1, ___errorState2);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_random_generate_bytes_t::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_random_generate_bytes_t__ctor_mFAC4CCD07765DE0827186AEC35DCCFC2E66BE066 (unitytls_random_generate_bytes_t_t6E7011EF958B0948582F8D1D213B454A5A962569* __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)&unitytls_random_generate_bytes_t_Invoke_mF0A5B5E7279FF32FBFF48DBB98EB07C88C63EF92_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_random_generate_bytes_t_Invoke_mF0A5B5E7279FF32FBFF48DBB98EB07C88C63EF92_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&unitytls_random_generate_bytes_t_Invoke_mF0A5B5E7279FF32FBFF48DBB98EB07C88C63EF92_Open;
else
__this->___invoke_impl_1 = (intptr_t)&unitytls_random_generate_bytes_t_Invoke_mF0A5B5E7279FF32FBFF48DBB98EB07C88C63EF92_Closed;
}
else
{
bool isOpen = methodCount == 2;
if (isOpen)
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_random_generate_bytes_t_Invoke_mF0A5B5E7279FF32FBFF48DBB98EB07C88C63EF92_Open;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&unitytls_random_generate_bytes_t_Invoke_mF0A5B5E7279FF32FBFF48DBB98EB07C88C63EF92_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&unitytls_random_generate_bytes_t_Invoke_mF0A5B5E7279FF32FBFF48DBB98EB07C88C63EF92_Multicast;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_random_generate_bytes_t::Invoke(System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void unitytls_random_generate_bytes_t_Invoke_mF0A5B5E7279FF32FBFF48DBB98EB07C88C63EF92 (unitytls_random_generate_bytes_t_t6E7011EF958B0948582F8D1D213B454A5A962569* __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_random_generate_bytes_t_t6E7011EF958B0948582F8D1D213B454A5A962569* __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___buffer0, ___bufferLen1, ___errorState2, 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
extern "C" intptr_t CDECL ReversePInvokeWrapper_UnityTlsContext_WriteCallback_m53DD70115C97432A676F3E437E8FB42F9FC068F5(void* ___userData0, uint8_t* ___data1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3)
{
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
intptr_t returnValue;
returnValue = UnityTlsContext_WriteCallback_m53DD70115C97432A676F3E437E8FB42F9FC068F5(___userData0, ___data1, ___bufferLen2, ___errorState3, NULL);
return returnValue;
}
extern "C" intptr_t CDECL ReversePInvokeWrapper_UnityTlsContext_ReadCallback_m15F3A217E44D480CAED06EB5A88503FB6259D7EC(void* ___userData0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3)
{
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
intptr_t returnValue;
returnValue = UnityTlsContext_ReadCallback_m15F3A217E44D480CAED06EB5A88503FB6259D7EC(___userData0, ___buffer1, ___bufferLen2, ___errorState3, NULL);
return returnValue;
}
extern "C" uint32_t CDECL ReversePInvokeWrapper_UnityTlsContext_VerifyCallback_m75D7C072718405EBBF8A2A9C794C4DDFB2595BD0(void* ___userData0, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2)
{
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
uint32_t returnValue;
returnValue = UnityTlsContext_VerifyCallback_m75D7C072718405EBBF8A2A9C794C4DDFB2595BD0(___userData0, ___chain1, ___errorState2, NULL);
return returnValue;
}
extern "C" void CDECL ReversePInvokeWrapper_UnityTlsContext_CertificateCallback_mF5E626BA2545CFFA64428622678E409702C2045A(void* ___userData0, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_x509name_t8A1108C917795D8FE946B50769ACE51489C7BF5D* ___caList4, intptr_t ___caListLen5, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17* ___chain6, unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2* ___key7, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState8)
{
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
UnityTlsContext_CertificateCallback_mF5E626BA2545CFFA64428622678E409702C2045A(___userData0, ___ctx1, ___cn2, ___cnLen3, ___caList4, ___caListLen5, ___chain6, ___key7, ___errorState8, NULL);
}
// System.Void Mono.Unity.UnityTlsContext::.ctor(Mono.Net.Security.MobileAuthenticatedStream,Mono.Net.Security.MonoSslAuthenticationOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityTlsContext__ctor_m4B8251E305EF5AC2CCB5D963BCB2F61D0F18408C (UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C* __this, MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* ___parent0, MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* ___options1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityTlsContext_CertificateCallback_mF5E626BA2545CFFA64428622678E409702C2045A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityTlsContext_ReadCallback_m15F3A217E44D480CAED06EB5A88503FB6259D7EC_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityTlsContext_VerifyCallback_m75D7C072718405EBBF8A2A9C794C4DDFB2595BD0_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityTlsContext_WriteCallback_m53DD70115C97432A676F3E437E8FB42F9FC068F5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2CA13BAB783CC232179C6E6EFC7394ED66F915CF);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral644A35D1B18EE1C6E7BD11BFBB5703CF66AD6FD4);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_tlsctx_read_callback_tDBE877327789CABE940C2A724EC9A5D142318851_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_tlsctx_write_callback_t5D4B64AD846D04E819A49689F7EAA47365636611_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 V_0;
memset((&V_0), 0, sizeof(V_0));
unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56 V_1;
memset((&V_1), 0, sizeof(V_1));
unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568 V_2;
memset((&V_2), 0, sizeof(V_2));
unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56 V_3;
memset((&V_3), 0, sizeof(V_3));
unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568 V_4;
memset((&V_4), 0, sizeof(V_4));
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* V_5 = NULL;
unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* V_6 = NULL;
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 V_7;
memset((&V_7), 0, sizeof(V_7));
unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2 V_8;
memset((&V_8), 0, sizeof(V_8));
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* V_9 = NULL;
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 V_10;
memset((&V_10), 0, sizeof(V_10));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_11 = NULL;
uint8_t* V_12 = NULL;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_13 = NULL;
{
__this->___tlsContext_10 = (unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*)((uintptr_t)0);
__this->___requestedClientCertChain_11 = (unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6*)((uintptr_t)0);
__this->___requestedClientKey_12 = (unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8*)((uintptr_t)0);
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_0 = ___parent0;
MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* L_1 = ___options1;
MobileTlsContext__ctor_mAB891D57AD3DD87C68B97E458DCE7C03634B6404(__this, L_0, L_1, NULL);
GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC L_2;
L_2 = GCHandle_Alloc_m74B02418DDB89BF52FA0F7412D14E6D19E1949C6(__this, NULL);
__this->___handle_25 = L_2;
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_3;
L_3 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_3);
unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B* L_4 = L_3->___unitytls_errorstate_create_2;
NullCheck(L_4);
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 L_5;
L_5 = unitytls_errorstate_create_t_Invoke_m8B9A9835EA7C6A11E1627CA8904F3F853FB61BC0_inline(L_4, NULL);
V_0 = L_5;
il2cpp_codegen_initobj((&V_3), sizeof(unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56));
MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* L_6 = ___options1;
NullCheck(L_6);
int32_t L_7;
L_7 = VirtualFuncInvoker0< int32_t >::Invoke(5 /* System.Security.Authentication.SslProtocols Mono.Net.Security.MonoSslAuthenticationOptions::get_EnabledSslProtocols() */, L_6);
uint32_t L_8;
L_8 = UnityTlsConversions_GetMinProtocol_m0E691D4227CAB79BDC7F6E30E5CF2698D2F5813F(L_7, NULL);
(&V_3)->___min_0 = L_8;
MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* L_9 = ___options1;
NullCheck(L_9);
int32_t L_10;
L_10 = VirtualFuncInvoker0< int32_t >::Invoke(5 /* System.Security.Authentication.SslProtocols Mono.Net.Security.MonoSslAuthenticationOptions::get_EnabledSslProtocols() */, L_9);
uint32_t L_11;
L_11 = UnityTlsConversions_GetMaxProtocol_mC7381248C4DA2168508E3A4C5DE049BE58C7F250(L_10, NULL);
(&V_3)->___max_1 = L_11;
unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56 L_12 = V_3;
V_1 = L_12;
unitytls_tlsctx_read_callback_tDBE877327789CABE940C2A724EC9A5D142318851* L_13 = (unitytls_tlsctx_read_callback_tDBE877327789CABE940C2A724EC9A5D142318851*)il2cpp_codegen_object_new(unitytls_tlsctx_read_callback_tDBE877327789CABE940C2A724EC9A5D142318851_il2cpp_TypeInfo_var);
NullCheck(L_13);
unitytls_tlsctx_read_callback__ctor_mEAC57775C6AB86A2E9E6DDC440E27C845BFAA4C0(L_13, NULL, (intptr_t)((void*)UnityTlsContext_ReadCallback_m15F3A217E44D480CAED06EB5A88503FB6259D7EC_RuntimeMethod_var), NULL);
__this->___readCallback_13 = L_13;
Il2CppCodeGenWriteBarrier((void**)(&__this->___readCallback_13), (void*)L_13);
unitytls_tlsctx_write_callback_t5D4B64AD846D04E819A49689F7EAA47365636611* L_14 = (unitytls_tlsctx_write_callback_t5D4B64AD846D04E819A49689F7EAA47365636611*)il2cpp_codegen_object_new(unitytls_tlsctx_write_callback_t5D4B64AD846D04E819A49689F7EAA47365636611_il2cpp_TypeInfo_var);
NullCheck(L_14);
unitytls_tlsctx_write_callback__ctor_m1A216E476EA91B415C0FD89765E6560410A7F7F5(L_14, NULL, (intptr_t)((void*)UnityTlsContext_WriteCallback_m53DD70115C97432A676F3E437E8FB42F9FC068F5_RuntimeMethod_var), NULL);
__this->___writeCallback_14 = L_14;
Il2CppCodeGenWriteBarrier((void**)(&__this->___writeCallback_14), (void*)L_14);
il2cpp_codegen_initobj((&V_4), sizeof(unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568));
unitytls_tlsctx_write_callback_t5D4B64AD846D04E819A49689F7EAA47365636611* L_15 = __this->___writeCallback_14;
(&V_4)->___write_1 = L_15;
Il2CppCodeGenWriteBarrier((void**)(&(&V_4)->___write_1), (void*)L_15);
unitytls_tlsctx_read_callback_tDBE877327789CABE940C2A724EC9A5D142318851* L_16 = __this->___readCallback_13;
(&V_4)->___read_0 = L_16;
Il2CppCodeGenWriteBarrier((void**)(&(&V_4)->___read_0), (void*)L_16);
GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC L_17 = __this->___handle_25;
intptr_t L_18;
L_18 = GCHandle_op_Explicit_m67A1C3E8BC6C8163C5775AE62A514000D00CD9B6_inline(L_17, NULL);
void* L_19;
L_19 = IntPtr_op_Explicit_m693F2F9E685EE117D4AC080342B8959DAF684294(L_18, NULL);
(&V_4)->___data_2 = L_19;
unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568 L_20 = V_4;
V_2 = L_20;
MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* L_21 = ___options1;
NullCheck(L_21);
bool L_22;
L_22 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean Mono.Net.Security.MonoSslAuthenticationOptions::get_ServerMode() */, L_21);
if (!L_22)
{
goto IL_01d7;
}
}
{
MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* L_23 = ___options1;
NullCheck(L_23);
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_24;
L_24 = VirtualFuncInvoker0< X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* >::Invoke(11 /* System.Security.Cryptography.X509Certificates.X509Certificate Mono.Net.Security.MonoSslAuthenticationOptions::get_ServerCertificate() */, L_23);
UnityTlsContext_ExtractNativeKeyAndChainFromManagedCertificate_mAAD3045A2D64C314FD288C3468D41767DD47205A(L_24, (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*)((uintptr_t)(&V_0)), (&V_5), (&V_6), NULL);
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_01b4:
{// begin finally (depth: 1)
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_25;
L_25 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_25);
unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2* L_26 = L_25->___unitytls_x509list_free_15;
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* L_27 = V_5;
NullCheck(L_26);
unitytls_x509list_free_t_Invoke_m0974FBCD7B6920A4EC57BDCB080E1A7307EEEA02_inline(L_26, L_27, NULL);
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_28;
L_28 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_28);
unitytls_key_free_t_tDB8665140BAF30447F3650D323078C193566FF72* L_29 = L_28->___unitytls_key_free_7;
unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* L_30 = V_6;
NullCheck(L_29);
unitytls_key_free_t_Invoke_m860A3C396228B7ADF9406AE78D439BDCD12FB98E_inline(L_29, L_30, NULL);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_31;
L_31 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_31);
unitytls_x509list_get_ref_t_t264CEEF7B8D1F10FD95E1BC78BB48BCA11E305EA* L_32 = L_31->___unitytls_x509list_get_ref_9;
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* L_33 = V_5;
NullCheck(L_32);
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 L_34;
L_34 = unitytls_x509list_get_ref_t_Invoke_mE7C675B7847FFEF96C25AE757D34CE920AA16EC2_inline(L_32, L_33, (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*)((uintptr_t)(&V_0)), NULL);
V_7 = L_34;
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_35;
L_35 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_35);
unitytls_key_get_ref_t_t8335968B19449FE0ED92E67AE9B6D95915684209* L_36 = L_35->___unitytls_key_get_ref_4;
unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* L_37 = V_6;
NullCheck(L_36);
unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2 L_38;
L_38 = unitytls_key_get_ref_t_Invoke_mF5D3582922E868C42BCF32EB14471F8C800BB66E_inline(L_36, L_37, (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*)((uintptr_t)(&V_0)), NULL);
V_8 = L_38;
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 L_39 = V_0;
Debug_CheckAndThrow_m0DC4C61C1A5FA2DF49E11420953CD3032843D59F(L_39, _stringLiteral644A35D1B18EE1C6E7BD11BFBB5703CF66AD6FD4, ((int32_t)80), NULL);
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_40;
L_40 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_40);
unitytls_tlsctx_create_server_t_t1068941B319B893D3FFBE53FE061676FF1CC3803* L_41 = L_40->___unitytls_tlsctx_create_server_18;
unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56 L_42 = V_1;
unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568 L_43 = V_2;
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 L_44 = V_7;
uint64_t L_45 = L_44.___handle_0;
unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2 L_46 = V_8;
uint64_t L_47 = L_46.___handle_0;
NullCheck(L_41);
unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* L_48;
L_48 = unitytls_tlsctx_create_server_t_Invoke_mCEB3E8CADCB316F4DF606A68182A4E5C9EC4D3B9_inline(L_41, L_42, L_43, L_45, L_47, (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*)((uintptr_t)(&V_0)), NULL);
__this->___tlsContext_10 = L_48;
bool L_49;
L_49 = MobileTlsContext_get_AskForClientCertificate_mABDEDBD5B9CA52FCAD16A9C271C73FA05218B767_inline(__this, NULL);
if (!L_49)
{
goto IL_01af_1;
}
}
{
V_9 = (unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6*)((uintptr_t)0);
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_019d_1:
{// begin finally (depth: 2)
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_50;
L_50 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_50);
unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2* L_51 = L_50->___unitytls_x509list_free_15;
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* L_52 = V_9;
NullCheck(L_51);
unitytls_x509list_free_t_Invoke_m0974FBCD7B6920A4EC57BDCB080E1A7307EEEA02_inline(L_51, L_52, NULL);
return;
}// end finally (depth: 2)
});
try
{// begin try (depth: 2)
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_53;
L_53 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_53);
unitytls_x509list_create_t_t8873365FFB1556CE6B643700DB0C30E391B758D6* L_54 = L_53->___unitytls_x509list_create_11;
NullCheck(L_54);
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* L_55;
L_55 = unitytls_x509list_create_t_Invoke_m05D8719D913109E4997FF913015E66455BC3C7D3_inline(L_54, (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*)((uintptr_t)(&V_0)), NULL);
V_9 = L_55;
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_56;
L_56 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_56);
unitytls_x509list_get_ref_t_t264CEEF7B8D1F10FD95E1BC78BB48BCA11E305EA* L_57 = L_56->___unitytls_x509list_get_ref_9;
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* L_58 = V_9;
NullCheck(L_57);
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 L_59;
L_59 = unitytls_x509list_get_ref_t_Invoke_mE7C675B7847FFEF96C25AE757D34CE920AA16EC2_inline(L_57, L_58, (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*)((uintptr_t)(&V_0)), NULL);
V_10 = L_59;
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_60;
L_60 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_60);
unitytls_tlsctx_server_require_client_authentication_t_t2AC04245D1F40738C5FB87B0DEE80761E243F0BE* L_61 = L_60->___unitytls_tlsctx_server_require_client_authentication_20;
unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* L_62 = __this->___tlsContext_10;
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 L_63 = V_10;
NullCheck(L_61);
unitytls_tlsctx_server_require_client_authentication_t_Invoke_m0B6DAC7CA95263D1245C9B0A466AF00D073059EB_inline(L_61, L_62, L_63, (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*)((uintptr_t)(&V_0)), NULL);
goto IL_026f;
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_01af_1:
{
goto IL_026f;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_01d7:
{
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_64;
L_64 = Encoding_get_UTF8_m9700ADA8E0F244002B2A89B483F1B2133B8FE336(NULL);
MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* L_65 = ___options1;
NullCheck(L_65);
String_t* L_66;
L_66 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String Mono.Net.Security.MonoSslAuthenticationOptions::get_TargetHost() */, L_65);
NullCheck(L_64);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_67;
L_67 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(18 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_64, L_66);
V_11 = L_67;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_68 = V_11;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_69 = L_68;
V_13 = L_69;
if (!L_69)
{
goto IL_01f6;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_70 = V_13;
NullCheck(L_70);
if (((int32_t)(((RuntimeArray*)L_70)->max_length)))
{
goto IL_01fc;
}
}
IL_01f6:
{
V_12 = (uint8_t*)((uintptr_t)0);
goto IL_0207;
}
IL_01fc:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_71 = V_13;
NullCheck(L_71);
V_12 = (uint8_t*)((uintptr_t)((L_71)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))));
}
IL_0207:
{
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_72;
L_72 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_72);
unitytls_tlsctx_create_client_t_t49D8F69D4152410A346CB3560B121DCC44AAC4EC* L_73 = L_72->___unitytls_tlsctx_create_client_19;
unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56 L_74 = V_1;
unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568 L_75 = V_2;
uint8_t* L_76 = V_12;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_77 = V_11;
NullCheck(L_77);
intptr_t L_78;
L_78 = IntPtr_op_Explicit_mB06D1B6CFBA72B5C55FBEC1BA3BC25958AB60EB1(((int32_t)(((RuntimeArray*)L_77)->max_length)), NULL);
NullCheck(L_73);
unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* L_79;
L_79 = unitytls_tlsctx_create_client_t_Invoke_m728BCBF32A45326A1AD8B1E17933372F7D9E01EE_inline(L_73, L_74, L_75, L_76, L_78, (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*)((uintptr_t)(&V_0)), NULL);
__this->___tlsContext_10 = L_79;
V_13 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL;
unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C* L_80 = (unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C*)il2cpp_codegen_object_new(unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C_il2cpp_TypeInfo_var);
NullCheck(L_80);
unitytls_tlsctx_certificate_callback__ctor_m9A3F05E07D9A69B8FF419421DF8167DF9CE7E77A(L_80, NULL, (intptr_t)((void*)UnityTlsContext_CertificateCallback_mF5E626BA2545CFFA64428622678E409702C2045A_RuntimeMethod_var), NULL);
__this->___certificateCallback_15 = L_80;
Il2CppCodeGenWriteBarrier((void**)(&__this->___certificateCallback_15), (void*)L_80);
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_81;
L_81 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_81);
unitytls_tlsctx_set_certificate_callback_t_t2B54F7228DFC11BF14DCF2201BDD90CF0EF92D41* L_82 = L_81->___unitytls_tlsctx_set_certificate_callback_21;
unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* L_83 = __this->___tlsContext_10;
unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C* L_84 = __this->___certificateCallback_15;
GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC L_85 = __this->___handle_25;
intptr_t L_86;
L_86 = GCHandle_op_Explicit_m67A1C3E8BC6C8163C5775AE62A514000D00CD9B6_inline(L_85, NULL);
void* L_87;
L_87 = IntPtr_op_Explicit_m693F2F9E685EE117D4AC080342B8959DAF684294(L_86, NULL);
NullCheck(L_82);
unitytls_tlsctx_set_certificate_callback_t_Invoke_mFC277320977BC310A0EB484EE505E25B6E2C7CA3_inline(L_82, L_83, L_84, L_87, (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*)((uintptr_t)(&V_0)), NULL);
}
IL_026f:
{
unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D* L_88 = (unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D*)il2cpp_codegen_object_new(unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D_il2cpp_TypeInfo_var);
NullCheck(L_88);
unitytls_tlsctx_x509verify_callback__ctor_m8583619DBB13F6EDF2A385C37DFAE8796EB89C0F(L_88, NULL, (intptr_t)((void*)UnityTlsContext_VerifyCallback_m75D7C072718405EBBF8A2A9C794C4DDFB2595BD0_RuntimeMethod_var), NULL);
__this->___verifyCallback_16 = L_88;
Il2CppCodeGenWriteBarrier((void**)(&__this->___verifyCallback_16), (void*)L_88);
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_89;
L_89 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_89);
unitytls_tlsctx_set_x509verify_callback_t_t032FE980BEDD0D201CAF1EE653ABE303CDBCA7C9* L_90 = L_89->___unitytls_tlsctx_set_x509verify_callback_23;
unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* L_91 = __this->___tlsContext_10;
unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D* L_92 = __this->___verifyCallback_16;
GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC L_93 = __this->___handle_25;
intptr_t L_94;
L_94 = GCHandle_op_Explicit_m67A1C3E8BC6C8163C5775AE62A514000D00CD9B6_inline(L_93, NULL);
void* L_95;
L_95 = IntPtr_op_Explicit_m693F2F9E685EE117D4AC080342B8959DAF684294(L_94, NULL);
NullCheck(L_90);
unitytls_tlsctx_set_x509verify_callback_t_Invoke_mA9AE094A7DB71B4B7B051BB3D67CB98A7F48D3CE_inline(L_90, L_91, L_92, L_95, (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*)((uintptr_t)(&V_0)), NULL);
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 L_96 = V_0;
Debug_CheckAndThrow_m0DC4C61C1A5FA2DF49E11420953CD3032843D59F(L_96, _stringLiteral2CA13BAB783CC232179C6E6EFC7394ED66F915CF, ((int32_t)80), NULL);
__this->___hasContext_21 = (bool)1;
return;
}
}
// System.Void Mono.Unity.UnityTlsContext::ExtractNativeKeyAndChainFromManagedCertificate(System.Security.Cryptography.X509Certificates.X509Certificate,Mono.Unity.UnityTls/unitytls_errorstate*,Mono.Unity.UnityTls/unitytls_x509list*&,Mono.Unity.UnityTls/unitytls_key*&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityTlsContext_ExtractNativeKeyAndChainFromManagedCertificate_mAAD3045A2D64C314FD288C3468D41767DD47205A (X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___cert0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6** ___nativeCertChain2, unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8** ___nativeKey3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* V_0 = NULL;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_1 = NULL;
uint8_t* V_2 = NULL;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_3 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_0 = ___cert0;
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*)&_stringLiteralB63C27A619AD7A36C4B3F3ECF3FA384C6EE13052)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityTlsContext_ExtractNativeKeyAndChainFromManagedCertificate_mAAD3045A2D64C314FD288C3468D41767DD47205A_RuntimeMethod_var)));
}
IL_000e:
{
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_2 = ___cert0;
V_0 = ((X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D*)IsInstClass((RuntimeObject*)L_2, X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D_il2cpp_TypeInfo_var));
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_3 = V_0;
if (!L_3)
{
goto IL_0020;
}
}
{
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_4 = V_0;
NullCheck(L_4);
AsymmetricAlgorithm_t5E7E9D26CE0EDCAABD84F616A44E476473BA2AF8* L_5;
L_5 = X509Certificate2_get_PrivateKey_mB2D1370AFF6F005B4A18A2223363C353B8D24A4A(L_4, NULL);
if (L_5)
{
goto IL_0030;
}
}
IL_0020:
{
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*)&_stringLiteralE8A4ACA3B771E998E244F1DFCF466F4D3EB34155)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB63C27A619AD7A36C4B3F3ECF3FA384C6EE13052)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityTlsContext_ExtractNativeKeyAndChainFromManagedCertificate_mAAD3045A2D64C314FD288C3468D41767DD47205A_RuntimeMethod_var)));
}
IL_0030:
{
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6** L_7 = ___nativeCertChain2;
*((intptr_t*)L_7) = (intptr_t)((uintptr_t)0);
unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8** L_8 = ___nativeKey3;
*((intptr_t*)L_8) = (intptr_t)((uintptr_t)0);
}
try
{// begin try (depth: 1)
{
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6** L_9 = ___nativeCertChain2;
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_10;
L_10 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_10);
unitytls_x509list_create_t_t8873365FFB1556CE6B643700DB0C30E391B758D6* L_11 = L_10->___unitytls_x509list_create_11;
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* L_12 = ___errorState1;
NullCheck(L_11);
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* L_13;
L_13 = unitytls_x509list_create_t_Invoke_m05D8719D913109E4997FF913015E66455BC3C7D3_inline(L_11, L_12, NULL);
*((intptr_t*)L_9) = (intptr_t)L_13;
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6** L_14 = ___nativeCertChain2;
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_15 = ___cert0;
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* L_16 = ___errorState1;
CertHelper_AddCertificateToNativeChain_m04D6F01E00DF4D0C134704DF9403167E1878675A((unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6*)(*((intptr_t*)L_14)), L_15, L_16, NULL);
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_17 = V_0;
NullCheck(L_17);
AsymmetricAlgorithm_t5E7E9D26CE0EDCAABD84F616A44E476473BA2AF8* L_18;
L_18 = X509Certificate2_get_PrivateKey_mB2D1370AFF6F005B4A18A2223363C353B8D24A4A(L_17, NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_19;
L_19 = PrivateKeyInfo_Encode_mE4EDCBEED688E2625A19F871FABAB9A9C5D93CB5(L_18, NULL);
V_1 = L_19;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_009c_1:
{// begin finally (depth: 2)
V_3 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL;
return;
}// end finally (depth: 2)
});
try
{// begin try (depth: 2)
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_20 = V_1;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_21 = L_20;
V_3 = L_21;
if (!L_21)
{
goto IL_0069_2;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_22 = V_3;
NullCheck(L_22);
if (((int32_t)(((RuntimeArray*)L_22)->max_length)))
{
goto IL_006e_2;
}
}
IL_0069_2:
{
V_2 = (uint8_t*)((uintptr_t)0);
goto IL_0077_2;
}
IL_006e_2:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_23 = V_3;
NullCheck(L_23);
V_2 = (uint8_t*)((uintptr_t)((L_23)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))));
}
IL_0077_2:
{
unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8** L_24 = ___nativeKey3;
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_25;
L_25 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_25);
unitytls_key_parse_der_t_tC218AEF9253FA105762F39041F696A06C52D3F10* L_26 = L_25->___unitytls_key_parse_der_5;
uint8_t* L_27 = V_2;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_28 = V_1;
NullCheck(L_28);
intptr_t L_29;
L_29 = IntPtr_op_Explicit_mB06D1B6CFBA72B5C55FBEC1BA3BC25958AB60EB1(((int32_t)(((RuntimeArray*)L_28)->max_length)), NULL);
intptr_t L_30;
L_30 = IntPtr_op_Explicit_mB06D1B6CFBA72B5C55FBEC1BA3BC25958AB60EB1(0, NULL);
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* L_31 = ___errorState1;
NullCheck(L_26);
unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* L_32;
L_32 = unitytls_key_parse_der_t_Invoke_m244086296EBDE0C0B0F072B33AAD5BA39A030DB6_inline(L_26, L_27, L_29, (uint8_t*)((uintptr_t)0), L_30, L_31, NULL);
*((intptr_t*)L_24) = (intptr_t)L_32;
goto IL_009f_1;
}
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_009f_1:
{
goto IL_00c6;
}
}// 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_00a1;
}
throw e;
}
CATCH_00a1:
{// begin catch(System.Object)
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_33;
L_33 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_33);
unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2* L_34 = L_33->___unitytls_x509list_free_15;
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6** L_35 = ___nativeCertChain2;
NullCheck(L_34);
unitytls_x509list_free_t_Invoke_m0974FBCD7B6920A4EC57BDCB080E1A7307EEEA02_inline(L_34, (unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6*)(*((intptr_t*)L_35)), NULL);
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_36;
L_36 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_36);
unitytls_key_free_t_tDB8665140BAF30447F3650D323078C193566FF72* L_37 = L_36->___unitytls_key_free_7;
unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8** L_38 = ___nativeKey3;
NullCheck(L_37);
unitytls_key_free_t_Invoke_m860A3C396228B7ADF9406AE78D439BDCD12FB98E_inline(L_37, (unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8*)(*((intptr_t*)L_38)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityTlsContext_ExtractNativeKeyAndChainFromManagedCertificate_mAAD3045A2D64C314FD288C3468D41767DD47205A_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_00c6:
{
return;
}
}
// System.Boolean Mono.Unity.UnityTlsContext::get_IsAuthenticated()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityTlsContext_get_IsAuthenticated_mA566E1D02B55C267233595651ACBDE0AB14D0361 (UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___isAuthenticated_20;
return L_0;
}
}
// System.Security.Cryptography.X509Certificates.X509Certificate Mono.Unity.UnityTlsContext::get_LocalClientCertificate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* UnityTlsContext_get_LocalClientCertificate_m359CCA879BFE0788C1BA3E57287AE744A501BDD1 (UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C* __this, const RuntimeMethod* method)
{
{
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_0 = __this->___localClientCertificate_17;
return L_0;
}
}
// System.Security.Cryptography.X509Certificates.X509Certificate2 Mono.Unity.UnityTlsContext::get_RemoteCertificate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* UnityTlsContext_get_RemoteCertificate_m01F83F7747AEA21356AF35E31870F03909474FA7 (UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C* __this, const RuntimeMethod* method)
{
{
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_0 = __this->___remoteCertificate_18;
return L_0;
}
}
// System.ValueTuple`2<System.Int32,System.Boolean> Mono.Unity.UnityTlsContext::Read(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942 UnityTlsContext_Read_m461E85BF4B42B72297B42A6E7EE5A756A25259FD (UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___offset1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueTuple_2__ctor_m3A39BEA90C84F8D68C34883978E96D2C2630B423_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3EAA68C8D87597E134D7A29B5BDC92EB6EFB97DB);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 V_1;
memset((&V_1), 0, sizeof(V_1));
uint8_t* V_2 = NULL;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_3 = NULL;
uint32_t V_4 = 0;
{
V_0 = 0;
__this->___lastException_26 = (Exception_t*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___lastException_26), (void*)(Exception_t*)NULL);
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_0;
L_0 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_0);
unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B* L_1 = L_0->___unitytls_errorstate_create_2;
NullCheck(L_1);
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 L_2;
L_2 = unitytls_errorstate_create_t_Invoke_m8B9A9835EA7C6A11E1627CA8904F3F853FB61BC0_inline(L_1, NULL);
V_1 = L_2;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = ___buffer0;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = L_3;
V_3 = L_4;
if (!L_4)
{
goto IL_0023;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = V_3;
NullCheck(L_5);
if (((int32_t)(((RuntimeArray*)L_5)->max_length)))
{
goto IL_0028;
}
}
IL_0023:
{
V_2 = (uint8_t*)((uintptr_t)0);
goto IL_0031;
}
IL_0028:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = V_3;
NullCheck(L_6);
V_2 = (uint8_t*)((uintptr_t)((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))));
}
IL_0031:
{
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_7;
L_7 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_7);
unitytls_tlsctx_read_t_t3E3C711F7A47E704ABDF0DF0B7515E7306EB7C95* L_8 = L_7->___unitytls_tlsctx_read_28;
unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* L_9 = __this->___tlsContext_10;
uint8_t* L_10 = V_2;
int32_t L_11 = ___offset1;
int32_t L_12 = ___count2;
intptr_t L_13;
L_13 = IntPtr_op_Explicit_mB06D1B6CFBA72B5C55FBEC1BA3BC25958AB60EB1(L_12, NULL);
NullCheck(L_8);
intptr_t L_14;
L_14 = unitytls_tlsctx_read_t_Invoke_m0FB34952D7592128A211AA0DA5536A325494FA04_inline(L_8, L_9, ((uint8_t*)il2cpp_codegen_add((intptr_t)L_10, L_11)), L_13, (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*)((uintptr_t)(&V_1)), NULL);
int32_t L_15;
L_15 = IntPtr_op_Explicit_m358ACBBA288C56CC429F39D4D481669D0620B590(L_14, NULL);
V_0 = L_15;
V_3 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL;
Exception_t* L_16 = __this->___lastException_26;
if (!L_16)
{
goto IL_0069;
}
}
{
Exception_t* L_17 = __this->___lastException_26;
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityTlsContext_Read_m461E85BF4B42B72297B42A6E7EE5A756A25259FD_RuntimeMethod_var)));
}
IL_0069:
{
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 L_18 = V_1;
uint32_t L_19 = L_18.___code_1;
V_4 = L_19;
uint32_t L_20 = V_4;
if (!L_20)
{
goto IL_0086;
}
}
{
uint32_t L_21 = V_4;
if ((((int32_t)L_21) == ((int32_t)((int32_t)10))))
{
goto IL_0099;
}
}
{
uint32_t L_22 = V_4;
if ((((int32_t)L_22) == ((int32_t)((int32_t)1048577))))
{
goto IL_0091;
}
}
{
goto IL_00a1;
}
IL_0086:
{
int32_t L_23 = V_0;
int32_t L_24 = V_0;
int32_t L_25 = ___count2;
ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942 L_26;
memset((&L_26), 0, sizeof(L_26));
ValueTuple_2__ctor_m3A39BEA90C84F8D68C34883978E96D2C2630B423((&L_26), L_23, (bool)((((int32_t)L_24) < ((int32_t)L_25))? 1 : 0), /*hidden argument*/ValueTuple_2__ctor_m3A39BEA90C84F8D68C34883978E96D2C2630B423_RuntimeMethod_var);
return L_26;
}
IL_0091:
{
int32_t L_27 = V_0;
ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942 L_28;
memset((&L_28), 0, sizeof(L_28));
ValueTuple_2__ctor_m3A39BEA90C84F8D68C34883978E96D2C2630B423((&L_28), L_27, (bool)1, /*hidden argument*/ValueTuple_2__ctor_m3A39BEA90C84F8D68C34883978E96D2C2630B423_RuntimeMethod_var);
return L_28;
}
IL_0099:
{
ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942 L_29;
memset((&L_29), 0, sizeof(L_29));
ValueTuple_2__ctor_m3A39BEA90C84F8D68C34883978E96D2C2630B423((&L_29), 0, (bool)0, /*hidden argument*/ValueTuple_2__ctor_m3A39BEA90C84F8D68C34883978E96D2C2630B423_RuntimeMethod_var);
return L_29;
}
IL_00a1:
{
bool L_30 = __this->___closedGraceful_22;
if (L_30)
{
goto IL_00b6;
}
}
{
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 L_31 = V_1;
Debug_CheckAndThrow_m0DC4C61C1A5FA2DF49E11420953CD3032843D59F(L_31, _stringLiteral3EAA68C8D87597E134D7A29B5BDC92EB6EFB97DB, ((int32_t)80), NULL);
}
IL_00b6:
{
ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942 L_32;
memset((&L_32), 0, sizeof(L_32));
ValueTuple_2__ctor_m3A39BEA90C84F8D68C34883978E96D2C2630B423((&L_32), 0, (bool)0, /*hidden argument*/ValueTuple_2__ctor_m3A39BEA90C84F8D68C34883978E96D2C2630B423_RuntimeMethod_var);
return L_32;
}
}
// System.ValueTuple`2<System.Int32,System.Boolean> Mono.Unity.UnityTlsContext::Write(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942 UnityTlsContext_Write_m11529FF555E48CA82577431E6856FEE3E4E0FA28 (UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___offset1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueTuple_2__ctor_m3A39BEA90C84F8D68C34883978E96D2C2630B423_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral878072FBC1088181F5220043BFE9213B286E31DB);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 V_1;
memset((&V_1), 0, sizeof(V_1));
uint8_t* V_2 = NULL;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_3 = NULL;
uint32_t V_4 = 0;
{
V_0 = 0;
__this->___lastException_26 = (Exception_t*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___lastException_26), (void*)(Exception_t*)NULL);
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_0;
L_0 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_0);
unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B* L_1 = L_0->___unitytls_errorstate_create_2;
NullCheck(L_1);
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 L_2;
L_2 = unitytls_errorstate_create_t_Invoke_m8B9A9835EA7C6A11E1627CA8904F3F853FB61BC0_inline(L_1, NULL);
V_1 = L_2;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = ___buffer0;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = L_3;
V_3 = L_4;
if (!L_4)
{
goto IL_0023;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = V_3;
NullCheck(L_5);
if (((int32_t)(((RuntimeArray*)L_5)->max_length)))
{
goto IL_0028;
}
}
IL_0023:
{
V_2 = (uint8_t*)((uintptr_t)0);
goto IL_0031;
}
IL_0028:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = V_3;
NullCheck(L_6);
V_2 = (uint8_t*)((uintptr_t)((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))));
}
IL_0031:
{
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_7;
L_7 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_7);
unitytls_tlsctx_write_t_t976A41600B61F9C8DF022296B67316FFA53EB386* L_8 = L_7->___unitytls_tlsctx_write_29;
unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* L_9 = __this->___tlsContext_10;
uint8_t* L_10 = V_2;
int32_t L_11 = ___offset1;
int32_t L_12 = ___count2;
intptr_t L_13;
L_13 = IntPtr_op_Explicit_mB06D1B6CFBA72B5C55FBEC1BA3BC25958AB60EB1(L_12, NULL);
NullCheck(L_8);
intptr_t L_14;
L_14 = unitytls_tlsctx_write_t_Invoke_mC6A06FBF8E4C5652830248B521C83865B3F2DBBC_inline(L_8, L_9, ((uint8_t*)il2cpp_codegen_add((intptr_t)L_10, L_11)), L_13, (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*)((uintptr_t)(&V_1)), NULL);
int32_t L_15;
L_15 = IntPtr_op_Explicit_m358ACBBA288C56CC429F39D4D481669D0620B590(L_14, NULL);
V_0 = L_15;
V_3 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL;
Exception_t* L_16 = __this->___lastException_26;
if (!L_16)
{
goto IL_0069;
}
}
{
Exception_t* L_17 = __this->___lastException_26;
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityTlsContext_Write_m11529FF555E48CA82577431E6856FEE3E4E0FA28_RuntimeMethod_var)));
}
IL_0069:
{
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 L_18 = V_1;
uint32_t L_19 = L_18.___code_1;
V_4 = L_19;
uint32_t L_20 = V_4;
if (!L_20)
{
goto IL_0086;
}
}
{
uint32_t L_21 = V_4;
if ((((int32_t)L_21) == ((int32_t)((int32_t)10))))
{
goto IL_0099;
}
}
{
uint32_t L_22 = V_4;
if ((((int32_t)L_22) == ((int32_t)((int32_t)1048577))))
{
goto IL_0091;
}
}
{
goto IL_00a1;
}
IL_0086:
{
int32_t L_23 = V_0;
int32_t L_24 = V_0;
int32_t L_25 = ___count2;
ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942 L_26;
memset((&L_26), 0, sizeof(L_26));
ValueTuple_2__ctor_m3A39BEA90C84F8D68C34883978E96D2C2630B423((&L_26), L_23, (bool)((((int32_t)L_24) < ((int32_t)L_25))? 1 : 0), /*hidden argument*/ValueTuple_2__ctor_m3A39BEA90C84F8D68C34883978E96D2C2630B423_RuntimeMethod_var);
return L_26;
}
IL_0091:
{
int32_t L_27 = V_0;
ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942 L_28;
memset((&L_28), 0, sizeof(L_28));
ValueTuple_2__ctor_m3A39BEA90C84F8D68C34883978E96D2C2630B423((&L_28), L_27, (bool)1, /*hidden argument*/ValueTuple_2__ctor_m3A39BEA90C84F8D68C34883978E96D2C2630B423_RuntimeMethod_var);
return L_28;
}
IL_0099:
{
ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942 L_29;
memset((&L_29), 0, sizeof(L_29));
ValueTuple_2__ctor_m3A39BEA90C84F8D68C34883978E96D2C2630B423((&L_29), 0, (bool)0, /*hidden argument*/ValueTuple_2__ctor_m3A39BEA90C84F8D68C34883978E96D2C2630B423_RuntimeMethod_var);
return L_29;
}
IL_00a1:
{
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 L_30 = V_1;
Debug_CheckAndThrow_m0DC4C61C1A5FA2DF49E11420953CD3032843D59F(L_30, _stringLiteral878072FBC1088181F5220043BFE9213B286E31DB, ((int32_t)80), NULL);
ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942 L_31;
memset((&L_31), 0, sizeof(L_31));
ValueTuple_2__ctor_m3A39BEA90C84F8D68C34883978E96D2C2630B423((&L_31), 0, (bool)0, /*hidden argument*/ValueTuple_2__ctor_m3A39BEA90C84F8D68C34883978E96D2C2630B423_RuntimeMethod_var);
return L_31;
}
}
// System.Void Mono.Unity.UnityTlsContext::Renegotiate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityTlsContext_Renegotiate_m5E5182B59BAA90319DC59CD711DDE930C39BEB75 (UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C* __this, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_0);
NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF(L_0, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityTlsContext_Renegotiate_m5E5182B59BAA90319DC59CD711DDE930C39BEB75_RuntimeMethod_var)));
}
}
// System.Boolean Mono.Unity.UnityTlsContext::PendingRenegotiation()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityTlsContext_PendingRenegotiation_m9F5831ECA8A6BBA97585A08ED9F51CA08F502187 (UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Void Mono.Unity.UnityTlsContext::Shutdown()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityTlsContext_Shutdown_m6DD342ACE3206195381E15E5CD5BB4845CDBDBE6 (UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C* __this, const RuntimeMethod* method)
{
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 V_0;
memset((&V_0), 0, sizeof(V_0));
{
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_0;
L_0 = MobileTlsContext_get_Settings_m68D8D1488C1778311BE2EE65F549081B0E7D362C(__this, NULL);
if (!L_0)
{
goto IL_003d;
}
}
{
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_1;
L_1 = MobileTlsContext_get_Settings_m68D8D1488C1778311BE2EE65F549081B0E7D362C(__this, NULL);
NullCheck(L_1);
bool L_2;
L_2 = MonoTlsSettings_get_SendCloseNotify_m1D35BCF28142455EC9CDF16CA36A8DEF57B05625_inline(L_1, NULL);
if (!L_2)
{
goto IL_003d;
}
}
{
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_3;
L_3 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_3);
unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B* L_4 = L_3->___unitytls_errorstate_create_2;
NullCheck(L_4);
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 L_5;
L_5 = unitytls_errorstate_create_t_Invoke_m8B9A9835EA7C6A11E1627CA8904F3F853FB61BC0_inline(L_4, NULL);
V_0 = L_5;
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_6;
L_6 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_6);
unitytls_tlsctx_notify_close_t_t717D19846262E3DF5D1A69C5E136912E7A54B253* L_7 = L_6->___unitytls_tlsctx_notify_close_30;
unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* L_8 = __this->___tlsContext_10;
NullCheck(L_7);
unitytls_tlsctx_notify_close_t_Invoke_m6E5688DDA03F313A1C470E4C30263C5B4A174138_inline(L_7, L_8, (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*)((uintptr_t)(&V_0)), NULL);
}
IL_003d:
{
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_9;
L_9 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_9);
unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2* L_10 = L_9->___unitytls_x509list_free_15;
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* L_11 = __this->___requestedClientCertChain_11;
NullCheck(L_10);
unitytls_x509list_free_t_Invoke_m0974FBCD7B6920A4EC57BDCB080E1A7307EEEA02_inline(L_10, L_11, NULL);
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_12;
L_12 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_12);
unitytls_key_free_t_tDB8665140BAF30447F3650D323078C193566FF72* L_13 = L_12->___unitytls_key_free_7;
unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* L_14 = __this->___requestedClientKey_12;
NullCheck(L_13);
unitytls_key_free_t_Invoke_m860A3C396228B7ADF9406AE78D439BDCD12FB98E_inline(L_13, L_14, NULL);
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_15;
L_15 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_15);
unitytls_tlsctx_free_t_tFBF7BB64D2E1C183718FB5809ABF0051395FD8F0* L_16 = L_15->___unitytls_tlsctx_free_31;
unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* L_17 = __this->___tlsContext_10;
NullCheck(L_16);
unitytls_tlsctx_free_t_Invoke_mC5D5191740D2507A83D95B4B3E6CE4C4A9FBAFD2_inline(L_16, L_17, NULL);
__this->___tlsContext_10 = (unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE*)((uintptr_t)0);
__this->___hasContext_21 = (bool)0;
return;
}
}
// System.Void Mono.Unity.UnityTlsContext::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityTlsContext_Dispose_m5E0A4A0D9AF08F03E82CBF45BD14477E7D2D34DB (UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C* __this, bool ___disposing0, const RuntimeMethod* method)
{
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_006d:
{// begin finally (depth: 1)
bool L_0 = ___disposing0;
MobileTlsContext_Dispose_m020A795EE75CF99916490B91697E0EB31C5A2F94(__this, L_0, NULL);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
bool L_1 = ___disposing0;
if (!L_1)
{
goto IL_0060_1;
}
}
{
VirtualActionInvoker0::Invoke(13 /* System.Void Mono.Net.Security.MobileTlsContext::Shutdown() */, __this);
__this->___localClientCertificate_17 = (X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___localClientCertificate_17), (void*)(X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4*)NULL);
__this->___remoteCertificate_18 = (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___remoteCertificate_18), (void*)(X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D*)NULL);
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_2 = __this->___localClientCertificate_17;
if (!L_2)
{
goto IL_0031_1;
}
}
{
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_3 = __this->___localClientCertificate_17;
NullCheck(L_3);
X509Certificate_Dispose_m1BAF5EFE5ED5A16CFD65A159B1E671BE7CDC63CC(L_3, NULL);
__this->___localClientCertificate_17 = (X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___localClientCertificate_17), (void*)(X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4*)NULL);
}
IL_0031_1:
{
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_4 = __this->___remoteCertificate_18;
if (!L_4)
{
goto IL_004b_1;
}
}
{
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_5 = __this->___remoteCertificate_18;
NullCheck(L_5);
X509Certificate_Dispose_m1BAF5EFE5ED5A16CFD65A159B1E671BE7CDC63CC(L_5, NULL);
__this->___remoteCertificate_18 = (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___remoteCertificate_18), (void*)(X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D*)NULL);
}
IL_004b_1:
{
__this->___connectioninfo_19 = (MonoTlsConnectionInfo_t3286AE494AEF3E62C9BE40FAC497849DFA193964*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___connectioninfo_19), (void*)(MonoTlsConnectionInfo_t3286AE494AEF3E62C9BE40FAC497849DFA193964*)NULL);
__this->___isAuthenticated_20 = (bool)0;
__this->___hasContext_21 = (bool)0;
}
IL_0060_1:
{
GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* L_6 = (&__this->___handle_25);
GCHandle_Free_m1320A260E487EB1EA6D95F9E54BFFCB5A4EF83A3(L_6, NULL);
goto IL_0075;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0075:
{
return;
}
}
// System.Void Mono.Unity.UnityTlsContext::StartHandshake()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityTlsContext_StartHandshake_m56718DFC2F7D4A03C3B1AD6C9ABE502EDCB6BC0A (UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC1571324F1F4735227CE92635630CCF0F3AE9C0A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_ciphersuiteU5BU5D_tCD24D3B2044FE95971675C32E93857E6DAC52120_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
unitytls_ciphersuiteU5BU5D_tCD24D3B2044FE95971675C32E93857E6DAC52120* V_0 = NULL;
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 V_1;
memset((&V_1), 0, sizeof(V_1));
int32_t V_2 = 0;
uint32_t* V_3 = 0;
unitytls_ciphersuiteU5BU5D_tCD24D3B2044FE95971675C32E93857E6DAC52120* V_4 = NULL;
{
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_0;
L_0 = MobileTlsContext_get_Settings_m68D8D1488C1778311BE2EE65F549081B0E7D362C(__this, NULL);
if (!L_0)
{
goto IL_00a8;
}
}
{
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_1;
L_1 = MobileTlsContext_get_Settings_m68D8D1488C1778311BE2EE65F549081B0E7D362C(__this, NULL);
NullCheck(L_1);
CipherSuiteCodeU5BU5D_t61EC0E6F53394985FFC36DEB587C70F4EE26D435* L_2;
L_2 = MonoTlsSettings_get_EnabledCiphers_m7BD72B78EF53FAF51FEEBF5B3657187EC876394A_inline(L_1, NULL);
if (!L_2)
{
goto IL_00a8;
}
}
{
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_3;
L_3 = MobileTlsContext_get_Settings_m68D8D1488C1778311BE2EE65F549081B0E7D362C(__this, NULL);
NullCheck(L_3);
CipherSuiteCodeU5BU5D_t61EC0E6F53394985FFC36DEB587C70F4EE26D435* L_4;
L_4 = MonoTlsSettings_get_EnabledCiphers_m7BD72B78EF53FAF51FEEBF5B3657187EC876394A_inline(L_3, NULL);
NullCheck(L_4);
unitytls_ciphersuiteU5BU5D_tCD24D3B2044FE95971675C32E93857E6DAC52120* L_5 = (unitytls_ciphersuiteU5BU5D_tCD24D3B2044FE95971675C32E93857E6DAC52120*)(unitytls_ciphersuiteU5BU5D_tCD24D3B2044FE95971675C32E93857E6DAC52120*)SZArrayNew(unitytls_ciphersuiteU5BU5D_tCD24D3B2044FE95971675C32E93857E6DAC52120_il2cpp_TypeInfo_var, (uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)));
V_0 = L_5;
V_2 = 0;
goto IL_0046;
}
IL_0032:
{
unitytls_ciphersuiteU5BU5D_tCD24D3B2044FE95971675C32E93857E6DAC52120* L_6 = V_0;
int32_t L_7 = V_2;
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_8;
L_8 = MobileTlsContext_get_Settings_m68D8D1488C1778311BE2EE65F549081B0E7D362C(__this, NULL);
NullCheck(L_8);
CipherSuiteCodeU5BU5D_t61EC0E6F53394985FFC36DEB587C70F4EE26D435* L_9;
L_9 = MonoTlsSettings_get_EnabledCiphers_m7BD72B78EF53FAF51FEEBF5B3657187EC876394A_inline(L_8, NULL);
int32_t L_10 = V_2;
NullCheck(L_9);
int32_t L_11 = L_10;
uint16_t L_12 = (uint16_t)(L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (uint32_t)L_12);
int32_t L_13 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_13, 1));
}
IL_0046:
{
int32_t L_14 = V_2;
unitytls_ciphersuiteU5BU5D_tCD24D3B2044FE95971675C32E93857E6DAC52120* L_15 = V_0;
NullCheck(L_15);
if ((((int32_t)L_14) < ((int32_t)((int32_t)(((RuntimeArray*)L_15)->max_length)))))
{
goto IL_0032;
}
}
{
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_16;
L_16 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_16);
unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B* L_17 = L_16->___unitytls_errorstate_create_2;
NullCheck(L_17);
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 L_18;
L_18 = unitytls_errorstate_create_t_Invoke_m8B9A9835EA7C6A11E1627CA8904F3F853FB61BC0_inline(L_17, NULL);
V_1 = L_18;
unitytls_ciphersuiteU5BU5D_tCD24D3B2044FE95971675C32E93857E6DAC52120* L_19 = V_0;
unitytls_ciphersuiteU5BU5D_tCD24D3B2044FE95971675C32E93857E6DAC52120* L_20 = L_19;
V_4 = L_20;
if (!L_20)
{
goto IL_0068;
}
}
{
unitytls_ciphersuiteU5BU5D_tCD24D3B2044FE95971675C32E93857E6DAC52120* L_21 = V_4;
NullCheck(L_21);
if (((int32_t)(((RuntimeArray*)L_21)->max_length)))
{
goto IL_006d;
}
}
IL_0068:
{
V_3 = (uint32_t*)((uintptr_t)0);
goto IL_0077;
}
IL_006d:
{
unitytls_ciphersuiteU5BU5D_tCD24D3B2044FE95971675C32E93857E6DAC52120* L_22 = V_4;
NullCheck(L_22);
V_3 = (uint32_t*)((uintptr_t)((L_22)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))));
}
IL_0077:
{
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_23;
L_23 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_23);
unitytls_tlsctx_set_supported_ciphersuites_t_t007E8706D364DE695F1DBF28358058A1E73DF544* L_24 = L_23->___unitytls_tlsctx_set_supported_ciphersuites_24;
unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* L_25 = __this->___tlsContext_10;
uint32_t* L_26 = V_3;
unitytls_ciphersuiteU5BU5D_tCD24D3B2044FE95971675C32E93857E6DAC52120* L_27 = V_0;
NullCheck(L_27);
intptr_t L_28;
L_28 = IntPtr_op_Explicit_mB06D1B6CFBA72B5C55FBEC1BA3BC25958AB60EB1(((int32_t)(((RuntimeArray*)L_27)->max_length)), NULL);
NullCheck(L_24);
unitytls_tlsctx_set_supported_ciphersuites_t_Invoke_m8E153461EFCEAAAF59D1E918F7C06B14358B43E2_inline(L_24, L_25, L_26, L_28, (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*)((uintptr_t)(&V_1)), NULL);
V_4 = (unitytls_ciphersuiteU5BU5D_tCD24D3B2044FE95971675C32E93857E6DAC52120*)NULL;
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 L_29 = V_1;
Debug_CheckAndThrow_m0DC4C61C1A5FA2DF49E11420953CD3032843D59F(L_29, _stringLiteralC1571324F1F4735227CE92635630CCF0F3AE9C0A, ((int32_t)40), NULL);
}
IL_00a8:
{
return;
}
}
// System.Boolean Mono.Unity.UnityTlsContext::ProcessHandshake()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityTlsContext_ProcessHandshake_m098B5D0081E137B05DB4FB7B7F74805EF749C09D (UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralABB3D627F0FA0B19A6B77765161EF2F6E7AA3A59);
s_Il2CppMethodInitialized = true;
}
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 V_0;
memset((&V_0), 0, sizeof(V_0));
uint32_t V_1 = 0;
{
__this->___lastException_26 = (Exception_t*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___lastException_26), (void*)(Exception_t*)NULL);
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_0;
L_0 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_0);
unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B* L_1 = L_0->___unitytls_errorstate_create_2;
NullCheck(L_1);
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 L_2;
L_2 = unitytls_errorstate_create_t_Invoke_m8B9A9835EA7C6A11E1627CA8904F3F853FB61BC0_inline(L_1, NULL);
V_0 = L_2;
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_3;
L_3 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_3);
unitytls_tlsctx_process_handshake_t_t8D94F5FAD00CD61BF950829866C0C6E29D202606* L_4 = L_3->___unitytls_tlsctx_process_handshake_27;
unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* L_5 = __this->___tlsContext_10;
NullCheck(L_4);
uint32_t L_6;
L_6 = unitytls_tlsctx_process_handshake_t_Invoke_mD8F2422C5C6C9FF0ADDAB17AECB998C2E225CF7A_inline(L_4, L_5, (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*)((uintptr_t)(&V_0)), NULL);
V_1 = L_6;
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 L_7 = V_0;
uint32_t L_8 = L_7.___code_1;
if ((!(((uint32_t)L_8) == ((uint32_t)((int32_t)1048577)))))
{
goto IL_003f;
}
}
{
return (bool)0;
}
IL_003f:
{
Exception_t* L_9 = __this->___lastException_26;
if (!L_9)
{
goto IL_004e;
}
}
{
Exception_t* L_10 = __this->___lastException_26;
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityTlsContext_ProcessHandshake_m098B5D0081E137B05DB4FB7B7F74805EF749C09D_RuntimeMethod_var)));
}
IL_004e:
{
bool L_11;
L_11 = MobileTlsContext_get_IsServer_m79E765F4FA8DAF1C98322134D48F6CACBEC824B7_inline(__this, NULL);
if (!L_11)
{
goto IL_0082;
}
}
{
uint32_t L_12 = V_1;
if ((!(((uint32_t)L_12) == ((uint32_t)((int32_t)-2147483648LL)))))
{
goto IL_0082;
}
}
{
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 L_13 = V_0;
Debug_CheckAndThrow_m0DC4C61C1A5FA2DF49E11420953CD3032843D59F(L_13, _stringLiteralABB3D627F0FA0B19A6B77765161EF2F6E7AA3A59, ((int32_t)40), NULL);
bool L_14;
L_14 = MobileTlsContext_ValidateCertificate_m7A7661E339AC2252062B3F7224621C9FACFEA234(__this, (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D*)NULL, (X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5*)NULL, NULL);
if (L_14)
{
goto IL_0090;
}
}
{
TlsException_tC2DD153B101F6116975F36613D7F7C009C5664E3* L_15 = (TlsException_tC2DD153B101F6116975F36613D7F7C009C5664E3*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TlsException_tC2DD153B101F6116975F36613D7F7C009C5664E3_il2cpp_TypeInfo_var)));
NullCheck(L_15);
TlsException__ctor_m4E03D70F9BCA4C0CA737720A43ABAB696CEA6209(L_15, ((int32_t)40), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0AB71622FD1CF7F312E55FFA2BC47C3A1006DC45)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityTlsContext_ProcessHandshake_m098B5D0081E137B05DB4FB7B7F74805EF749C09D_RuntimeMethod_var)));
}
IL_0082:
{
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 L_16 = V_0;
uint32_t L_17 = V_1;
Debug_CheckAndThrow_m47BE0492786EEE30351AF6662609556CABAB0A80(L_16, L_17, _stringLiteralABB3D627F0FA0B19A6B77765161EF2F6E7AA3A59, ((int32_t)40), NULL);
}
IL_0090:
{
return (bool)1;
}
}
// System.Void Mono.Unity.UnityTlsContext::FinishHandshake()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityTlsContext_FinishHandshake_m4F1BF52160E1BFCF223717415D5F1DB96B5F9556 (UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MonoTlsConnectionInfo_t3286AE494AEF3E62C9BE40FAC497849DFA193964_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 V_0;
memset((&V_0), 0, sizeof(V_0));
uint32_t V_1 = 0;
uint32_t V_2 = 0;
{
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_0;
L_0 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_0);
unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B* L_1 = L_0->___unitytls_errorstate_create_2;
NullCheck(L_1);
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 L_2;
L_2 = unitytls_errorstate_create_t_Invoke_m8B9A9835EA7C6A11E1627CA8904F3F853FB61BC0_inline(L_1, NULL);
V_0 = L_2;
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_3;
L_3 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_3);
unitytls_tlsctx_get_ciphersuite_t_t7317543D399259616648B1AA19447C4B63F70EF2* L_4 = L_3->___unitytls_tlsctx_get_ciphersuite_25;
unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* L_5 = __this->___tlsContext_10;
NullCheck(L_4);
uint32_t L_6;
L_6 = unitytls_tlsctx_get_ciphersuite_t_Invoke_m2DF155D62800CFFD66AC63538F69DB2275EC3FFD_inline(L_4, L_5, (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*)((uintptr_t)(&V_0)), NULL);
V_1 = L_6;
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_7;
L_7 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_7);
unitytls_tlsctx_get_protocol_t_t04E3B73C1D77379F7C7388ED4934189365326F3C* L_8 = L_7->___unitytls_tlsctx_get_protocol_26;
unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* L_9 = __this->___tlsContext_10;
NullCheck(L_8);
uint32_t L_10;
L_10 = unitytls_tlsctx_get_protocol_t_Invoke_m3D931DDD241F0B3EDA8F6F1EFA159C0669E7E3F0_inline(L_8, L_9, (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*)((uintptr_t)(&V_0)), NULL);
V_2 = L_10;
MonoTlsConnectionInfo_t3286AE494AEF3E62C9BE40FAC497849DFA193964* L_11 = (MonoTlsConnectionInfo_t3286AE494AEF3E62C9BE40FAC497849DFA193964*)il2cpp_codegen_object_new(MonoTlsConnectionInfo_t3286AE494AEF3E62C9BE40FAC497849DFA193964_il2cpp_TypeInfo_var);
NullCheck(L_11);
MonoTlsConnectionInfo__ctor_m795EBB319F254C648313E21E85ABD2A4CBE4F93C(L_11, NULL);
MonoTlsConnectionInfo_t3286AE494AEF3E62C9BE40FAC497849DFA193964* L_12 = L_11;
uint32_t L_13 = V_1;
NullCheck(L_12);
MonoTlsConnectionInfo_set_CipherSuiteCode_m3BC21FD10B760939C96F6FBDB39DFEADDE50CCF5_inline(L_12, ((int32_t)(uint16_t)L_13), NULL);
MonoTlsConnectionInfo_t3286AE494AEF3E62C9BE40FAC497849DFA193964* L_14 = L_12;
uint32_t L_15 = V_2;
int32_t L_16;
L_16 = UnityTlsConversions_ConvertProtocolVersion_mB9C0E5A59CC1564EDF56D06C396461DA678CAD0B(L_15, NULL);
NullCheck(L_14);
MonoTlsConnectionInfo_set_ProtocolVersion_m166E8E558B961F343E719D333A892E597AB17404_inline(L_14, L_16, NULL);
MonoTlsConnectionInfo_t3286AE494AEF3E62C9BE40FAC497849DFA193964* L_17 = L_14;
String_t* L_18;
L_18 = MobileTlsContext_get_ServerName_m3CF7B9F7D249B9B2F553B5A72F439B5502229BF3_inline(__this, NULL);
NullCheck(L_17);
MonoTlsConnectionInfo_set_PeerDomainName_mDCAB6395BFE1BEF3ACEF680AEA6A3FA4DDEA2A97_inline(L_17, L_18, NULL);
__this->___connectioninfo_19 = L_17;
Il2CppCodeGenWriteBarrier((void**)(&__this->___connectioninfo_19), (void*)L_17);
__this->___isAuthenticated_20 = (bool)1;
return;
}
}
// System.IntPtr Mono.Unity.UnityTlsContext::WriteCallback(System.Void*,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t UnityTlsContext_WriteCallback_m53DD70115C97432A676F3E437E8FB42F9FC068F5 (void* ___userData0, uint8_t* ___data1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC V_0;
memset((&V_0), 0, sizeof(V_0));
{
void* L_0 = ___userData0;
intptr_t L_1;
L_1 = IntPtr_op_Explicit_m04BEF6277775C13DD8A986812AAA3FCEC32DCCBE(L_0, NULL);
GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC L_2;
L_2 = GCHandle_op_Explicit_m500B99BF54D923E624C5235A4B370A37C8B7050C(L_1, NULL);
V_0 = L_2;
RuntimeObject* L_3;
L_3 = GCHandle_get_Target_m481F9508DA5E384D33CD1F4450060DC56BBD4CD5((&V_0), NULL);
uint8_t* L_4 = ___data1;
intptr_t L_5 = ___bufferLen2;
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* L_6 = ___errorState3;
NullCheck(((UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C*)CastclassClass((RuntimeObject*)L_3, UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C_il2cpp_TypeInfo_var)));
intptr_t L_7;
L_7 = UnityTlsContext_WriteCallback_m28708B36ED5744CED29D543B86A2E117DFF661BA(((UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C*)CastclassClass((RuntimeObject*)L_3, UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C_il2cpp_TypeInfo_var)), L_4, L_5, L_6, NULL);
return L_7;
}
}
// System.IntPtr Mono.Unity.UnityTlsContext::WriteCallback(System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t UnityTlsContext_WriteCallback_m28708B36ED5744CED29D543B86A2E117DFF661BA (UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C* __this, uint8_t* ___data0, intptr_t ___bufferLen1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, 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*)&Marshal_tD976A56A90263C3CE2B780D4B1CADADE2E70B4A7_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
intptr_t V_0;
memset((&V_0), 0, sizeof(V_0));
Exception_t* V_1 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = __this->___writeBuffer_23;
if (!L_0)
{
goto IL_0018_1;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = __this->___writeBuffer_23;
NullCheck(L_1);
intptr_t L_2 = ___bufferLen1;
int32_t L_3;
L_3 = IntPtr_op_Explicit_m358ACBBA288C56CC429F39D4D481669D0620B590(L_2, NULL);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))) >= ((int32_t)L_3)))
{
goto IL_0029_1;
}
}
IL_0018_1:
{
intptr_t L_4 = ___bufferLen1;
int32_t L_5;
L_5 = IntPtr_op_Explicit_m358ACBBA288C56CC429F39D4D481669D0620B590(L_4, NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)L_5);
__this->___writeBuffer_23 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->___writeBuffer_23), (void*)L_6);
}
IL_0029_1:
{
uint8_t* L_7 = ___data0;
intptr_t L_8;
L_8 = IntPtr_op_Explicit_m04BEF6277775C13DD8A986812AAA3FCEC32DCCBE((void*)L_7, NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = __this->___writeBuffer_23;
intptr_t L_10 = ___bufferLen1;
int32_t L_11;
L_11 = IntPtr_op_Explicit_m358ACBBA288C56CC429F39D4D481669D0620B590(L_10, NULL);
il2cpp_codegen_runtime_class_init_inline(Marshal_tD976A56A90263C3CE2B780D4B1CADADE2E70B4A7_il2cpp_TypeInfo_var);
Marshal_Copy_m92700C9E60BAB2FDAF6CE02C16EFE9DCB7D6035E(L_8, L_9, 0, L_11, NULL);
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_12;
L_12 = MobileTlsContext_get_Parent_mC509F430FE5581A104C62FB3A08AE9D97DE19098_inline(__this, NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_13 = __this->___writeBuffer_23;
intptr_t L_14 = ___bufferLen1;
int32_t L_15;
L_15 = IntPtr_op_Explicit_m358ACBBA288C56CC429F39D4D481669D0620B590(L_14, NULL);
NullCheck(L_12);
bool L_16;
L_16 = MobileAuthenticatedStream_InternalWrite_mDCC759D5D81736625897B956239DBEEE8F7AE743(L_12, L_13, 0, L_15, NULL);
if (L_16)
{
goto IL_0079_1;
}
}
{
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_17;
L_17 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_17);
unitytls_errorstate_raise_error_t_t8C20FC78CA5BBEE0248CC09D1C1AF25BCB3835CF* L_18 = L_17->___unitytls_errorstate_raise_error_3;
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* L_19 = ___errorState2;
NullCheck(L_18);
unitytls_errorstate_raise_error_t_Invoke_m9B2B3433846A318340EDF0ED0E33C45030CCEA02_inline(L_18, L_19, ((int32_t)1048579), NULL);
intptr_t L_20;
L_20 = IntPtr_op_Explicit_mB06D1B6CFBA72B5C55FBEC1BA3BC25958AB60EB1(0, NULL);
V_0 = L_20;
goto IL_00ab;
}
IL_0079_1:
{
intptr_t L_21 = ___bufferLen1;
V_0 = L_21;
goto IL_00ab;
}
}// 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_007d;
}
throw e;
}
CATCH_007d:
{// begin catch(System.Exception)
{
V_1 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_22;
L_22 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_22);
unitytls_errorstate_raise_error_t_t8C20FC78CA5BBEE0248CC09D1C1AF25BCB3835CF* L_23 = L_22->___unitytls_errorstate_raise_error_3;
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* L_24 = ___errorState2;
NullCheck(L_23);
unitytls_errorstate_raise_error_t_Invoke_m9B2B3433846A318340EDF0ED0E33C45030CCEA02_inline(L_23, L_24, ((int32_t)1048580), NULL);
Exception_t* L_25 = __this->___lastException_26;
if (L_25)
{
goto IL_00a2;
}
}
{
Exception_t* L_26 = V_1;
__this->___lastException_26 = L_26;
Il2CppCodeGenWriteBarrier((void**)(&__this->___lastException_26), (void*)L_26);
}
IL_00a2:
{
intptr_t L_27;
L_27 = IntPtr_op_Explicit_mB06D1B6CFBA72B5C55FBEC1BA3BC25958AB60EB1(0, NULL);
V_0 = L_27;
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_00ab;
}
}// end catch (depth: 1)
IL_00ab:
{
intptr_t L_28 = V_0;
return L_28;
}
}
// System.IntPtr Mono.Unity.UnityTlsContext::ReadCallback(System.Void*,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t UnityTlsContext_ReadCallback_m15F3A217E44D480CAED06EB5A88503FB6259D7EC (void* ___userData0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC V_0;
memset((&V_0), 0, sizeof(V_0));
{
void* L_0 = ___userData0;
intptr_t L_1;
L_1 = IntPtr_op_Explicit_m04BEF6277775C13DD8A986812AAA3FCEC32DCCBE(L_0, NULL);
GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC L_2;
L_2 = GCHandle_op_Explicit_m500B99BF54D923E624C5235A4B370A37C8B7050C(L_1, NULL);
V_0 = L_2;
RuntimeObject* L_3;
L_3 = GCHandle_get_Target_m481F9508DA5E384D33CD1F4450060DC56BBD4CD5((&V_0), NULL);
uint8_t* L_4 = ___buffer1;
intptr_t L_5 = ___bufferLen2;
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* L_6 = ___errorState3;
NullCheck(((UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C*)CastclassClass((RuntimeObject*)L_3, UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C_il2cpp_TypeInfo_var)));
intptr_t L_7;
L_7 = UnityTlsContext_ReadCallback_mE4765DDC1755E4A030F1D3B59B255072FF656ED1(((UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C*)CastclassClass((RuntimeObject*)L_3, UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C_il2cpp_TypeInfo_var)), L_4, L_5, L_6, NULL);
return L_7;
}
}
// System.IntPtr Mono.Unity.UnityTlsContext::ReadCallback(System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t UnityTlsContext_ReadCallback_mE4765DDC1755E4A030F1D3B59B255072FF656ED1 (UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C* __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, 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*)&Marshal_tD976A56A90263C3CE2B780D4B1CADADE2E70B4A7_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
intptr_t V_2;
memset((&V_2), 0, sizeof(V_2));
Exception_t* V_3 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = __this->___readBuffer_24;
if (!L_0)
{
goto IL_0018_1;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = __this->___readBuffer_24;
NullCheck(L_1);
intptr_t L_2 = ___bufferLen1;
int32_t L_3;
L_3 = IntPtr_op_Explicit_m358ACBBA288C56CC429F39D4D481669D0620B590(L_2, NULL);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))) >= ((int32_t)L_3)))
{
goto IL_0029_1;
}
}
IL_0018_1:
{
intptr_t L_4 = ___bufferLen1;
int32_t L_5;
L_5 = IntPtr_op_Explicit_m358ACBBA288C56CC429F39D4D481669D0620B590(L_4, NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)L_5);
__this->___readBuffer_24 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->___readBuffer_24), (void*)L_6);
}
IL_0029_1:
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_7;
L_7 = MobileTlsContext_get_Parent_mC509F430FE5581A104C62FB3A08AE9D97DE19098_inline(__this, NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = __this->___readBuffer_24;
intptr_t L_9 = ___bufferLen1;
int32_t L_10;
L_10 = IntPtr_op_Explicit_m358ACBBA288C56CC429F39D4D481669D0620B590(L_9, NULL);
NullCheck(L_7);
int32_t L_11;
L_11 = MobileAuthenticatedStream_InternalRead_m90FE0F2015227506EF5E6EA18E49EEA5E3A1C319(L_7, L_8, 0, L_10, (&V_0), NULL);
V_1 = L_11;
int32_t L_12 = V_1;
if ((((int32_t)L_12) >= ((int32_t)0)))
{
goto IL_005f_1;
}
}
{
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_13;
L_13 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_13);
unitytls_errorstate_raise_error_t_t8C20FC78CA5BBEE0248CC09D1C1AF25BCB3835CF* L_14 = L_13->___unitytls_errorstate_raise_error_3;
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* L_15 = ___errorState2;
NullCheck(L_14);
unitytls_errorstate_raise_error_t_Invoke_m9B2B3433846A318340EDF0ED0E33C45030CCEA02_inline(L_14, L_15, ((int32_t)1048578), NULL);
goto IL_00b3_1;
}
IL_005f_1:
{
int32_t L_16 = V_1;
if ((((int32_t)L_16) <= ((int32_t)0)))
{
goto IL_007d_1;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_17 = __this->___readBuffer_24;
uint8_t* L_18 = ___buffer0;
intptr_t L_19;
L_19 = IntPtr_op_Explicit_m04BEF6277775C13DD8A986812AAA3FCEC32DCCBE((void*)L_18, NULL);
intptr_t L_20 = ___bufferLen1;
int32_t L_21;
L_21 = IntPtr_op_Explicit_m358ACBBA288C56CC429F39D4D481669D0620B590(L_20, NULL);
il2cpp_codegen_runtime_class_init_inline(Marshal_tD976A56A90263C3CE2B780D4B1CADADE2E70B4A7_il2cpp_TypeInfo_var);
Marshal_Copy_mB1CECEA99856A7296FF33D2C9C51CC7E7150E5F8(L_17, 0, L_19, L_21, NULL);
goto IL_00b3_1;
}
IL_007d_1:
{
bool L_22 = V_0;
if (!L_22)
{
goto IL_0097_1;
}
}
{
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_23;
L_23 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_23);
unitytls_errorstate_raise_error_t_t8C20FC78CA5BBEE0248CC09D1C1AF25BCB3835CF* L_24 = L_23->___unitytls_errorstate_raise_error_3;
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* L_25 = ___errorState2;
NullCheck(L_24);
unitytls_errorstate_raise_error_t_Invoke_m9B2B3433846A318340EDF0ED0E33C45030CCEA02_inline(L_24, L_25, ((int32_t)1048577), NULL);
goto IL_00b3_1;
}
IL_0097_1:
{
__this->___closedGraceful_22 = (bool)1;
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_26;
L_26 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_26);
unitytls_errorstate_raise_error_t_t8C20FC78CA5BBEE0248CC09D1C1AF25BCB3835CF* L_27 = L_26->___unitytls_errorstate_raise_error_3;
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* L_28 = ___errorState2;
NullCheck(L_27);
unitytls_errorstate_raise_error_t_Invoke_m9B2B3433846A318340EDF0ED0E33C45030CCEA02_inline(L_27, L_28, ((int32_t)1048578), NULL);
}
IL_00b3_1:
{
int32_t L_29 = V_1;
intptr_t L_30;
L_30 = IntPtr_op_Explicit_mB06D1B6CFBA72B5C55FBEC1BA3BC25958AB60EB1(L_29, NULL);
V_2 = L_30;
goto IL_00ea;
}
}// 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_00bc;
}
throw e;
}
CATCH_00bc:
{// begin catch(System.Exception)
{
V_3 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_31;
L_31 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_31);
unitytls_errorstate_raise_error_t_t8C20FC78CA5BBEE0248CC09D1C1AF25BCB3835CF* L_32 = L_31->___unitytls_errorstate_raise_error_3;
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* L_33 = ___errorState2;
NullCheck(L_32);
unitytls_errorstate_raise_error_t_Invoke_m9B2B3433846A318340EDF0ED0E33C45030CCEA02_inline(L_32, L_33, ((int32_t)1048580), NULL);
Exception_t* L_34 = __this->___lastException_26;
if (L_34)
{
goto IL_00e1;
}
}
{
Exception_t* L_35 = V_3;
__this->___lastException_26 = L_35;
Il2CppCodeGenWriteBarrier((void**)(&__this->___lastException_26), (void*)L_35);
}
IL_00e1:
{
intptr_t L_36;
L_36 = IntPtr_op_Explicit_mB06D1B6CFBA72B5C55FBEC1BA3BC25958AB60EB1(0, NULL);
V_2 = L_36;
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_00ea;
}
}// end catch (depth: 1)
IL_00ea:
{
intptr_t L_37 = V_2;
return L_37;
}
}
// Mono.Unity.UnityTls/unitytls_x509verify_result Mono.Unity.UnityTlsContext::VerifyCallback(System.Void*,Mono.Unity.UnityTls/unitytls_x509list_ref,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t UnityTlsContext_VerifyCallback_m75D7C072718405EBBF8A2A9C794C4DDFB2595BD0 (void* ___userData0, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC V_0;
memset((&V_0), 0, sizeof(V_0));
{
void* L_0 = ___userData0;
intptr_t L_1;
L_1 = IntPtr_op_Explicit_m04BEF6277775C13DD8A986812AAA3FCEC32DCCBE(L_0, NULL);
GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC L_2;
L_2 = GCHandle_op_Explicit_m500B99BF54D923E624C5235A4B370A37C8B7050C(L_1, NULL);
V_0 = L_2;
RuntimeObject* L_3;
L_3 = GCHandle_get_Target_m481F9508DA5E384D33CD1F4450060DC56BBD4CD5((&V_0), NULL);
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 L_4 = ___chain1;
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* L_5 = ___errorState2;
NullCheck(((UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C*)CastclassClass((RuntimeObject*)L_3, UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C_il2cpp_TypeInfo_var)));
uint32_t L_6;
L_6 = UnityTlsContext_VerifyCallback_m2498A768960C1A792A1B60A1F47D16624E543537(((UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C*)CastclassClass((RuntimeObject*)L_3, UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C_il2cpp_TypeInfo_var)), L_4, L_5, NULL);
return L_6;
}
}
// Mono.Unity.UnityTls/unitytls_x509verify_result Mono.Unity.UnityTlsContext::VerifyCallback(Mono.Unity.UnityTls/unitytls_x509list_ref,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t UnityTlsContext_VerifyCallback_m2498A768960C1A792A1B60A1F47D16624E543537 (UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509ChainImplUnityTls_t37736839B9CDAD02F5F02693121A4C18C0020B40_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
X509ChainImplUnityTls_t37736839B9CDAD02F5F02693121A4C18C0020B40* V_0 = NULL;
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* V_1 = NULL;
uint32_t V_2 = 0;
Exception_t* V_3 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
{
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 L_0 = ___chain0;
X509ChainImplUnityTls_t37736839B9CDAD02F5F02693121A4C18C0020B40* L_1 = (X509ChainImplUnityTls_t37736839B9CDAD02F5F02693121A4C18C0020B40*)il2cpp_codegen_object_new(X509ChainImplUnityTls_t37736839B9CDAD02F5F02693121A4C18C0020B40_il2cpp_TypeInfo_var);
NullCheck(L_1);
X509ChainImplUnityTls__ctor_mD653A56ED8AD47C0A46DB3D89749A055D4BB1ABC(L_1, L_0, (bool)0, NULL);
V_0 = L_1;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0047_1:
{// begin finally (depth: 2)
{
X509ChainImplUnityTls_t37736839B9CDAD02F5F02693121A4C18C0020B40* L_2 = V_0;
if (!L_2)
{
goto IL_0050_1;
}
}
{
X509ChainImplUnityTls_t37736839B9CDAD02F5F02693121A4C18C0020B40* L_3 = V_0;
NullCheck(L_3);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3);
}
IL_0050_1:
{
return;
}
}// end finally (depth: 2)
});
try
{// begin try (depth: 2)
{
X509ChainImplUnityTls_t37736839B9CDAD02F5F02693121A4C18C0020B40* L_4 = V_0;
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* L_5 = (X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5*)il2cpp_codegen_object_new(X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5_il2cpp_TypeInfo_var);
NullCheck(L_5);
X509Chain__ctor_m6F2404400D7192FDA4CCB37DC67F18F12616000B(L_5, L_4, NULL);
V_1 = L_5;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_003d_2:
{// begin finally (depth: 3)
{
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* L_6 = V_1;
if (!L_6)
{
goto IL_0046_2;
}
}
{
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* L_7 = V_1;
NullCheck(L_7);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_7);
}
IL_0046_2:
{
return;
}
}// end finally (depth: 3)
});
try
{// begin try (depth: 3)
{
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* L_8 = V_1;
NullCheck(L_8);
X509ChainElementCollection_t543DE35924C12A624ADA5111F7F47C1F9F99E70D* L_9;
L_9 = X509Chain_get_ChainElements_m656A4A5EEA69BB8C4F5995DEF7C88AD9EB961AED(L_8, NULL);
NullCheck(L_9);
X509ChainElement_t95FFAD3F504A1CA731ECCBA88C5CB3B0EE28786D* L_10;
L_10 = X509ChainElementCollection_get_Item_mC2A5AAFBAEF74FB085685620066058ACDC71D69A(L_9, 0, NULL);
NullCheck(L_10);
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_11;
L_11 = X509ChainElement_get_Certificate_m6AF210BCAD2D94C19DFEF475BDAA84E5FF4AF105_inline(L_10, NULL);
__this->___remoteCertificate_18 = L_11;
Il2CppCodeGenWriteBarrier((void**)(&__this->___remoteCertificate_18), (void*)L_11);
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_12 = __this->___remoteCertificate_18;
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* L_13 = V_1;
bool L_14;
L_14 = MobileTlsContext_ValidateCertificate_m7A7661E339AC2252062B3F7224621C9FACFEA234(__this, L_12, L_13, NULL);
if (!L_14)
{
goto IL_0039_3;
}
}
{
V_2 = 0;
goto IL_0065;
}
IL_0039_3:
{
V_2 = 8;
goto IL_0065;
}
}// end try (depth: 3)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
}// 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_0051;
}
throw e;
}
CATCH_0051:
{// begin catch(System.Exception)
{
V_3 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
Exception_t* L_15 = __this->___lastException_26;
if (L_15)
{
goto IL_0061;
}
}
{
Exception_t* L_16 = V_3;
__this->___lastException_26 = L_16;
Il2CppCodeGenWriteBarrier((void**)(&__this->___lastException_26), (void*)L_16);
}
IL_0061:
{
V_2 = (-1);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0065;
}
}// end catch (depth: 1)
IL_0065:
{
uint32_t L_17 = V_2;
return L_17;
}
}
// System.Void Mono.Unity.UnityTlsContext::CertificateCallback(System.Void*,Mono.Unity.UnityTls/unitytls_tlsctx*,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_x509name*,System.IntPtr,Mono.Unity.UnityTls/unitytls_x509list_ref*,Mono.Unity.UnityTls/unitytls_key_ref*,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityTlsContext_CertificateCallback_mF5E626BA2545CFFA64428622678E409702C2045A (void* ___userData0, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_x509name_t8A1108C917795D8FE946B50769ACE51489C7BF5D* ___caList4, intptr_t ___caListLen5, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17* ___chain6, unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2* ___key7, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState8, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC V_0;
memset((&V_0), 0, sizeof(V_0));
{
void* L_0 = ___userData0;
intptr_t L_1;
L_1 = IntPtr_op_Explicit_m04BEF6277775C13DD8A986812AAA3FCEC32DCCBE(L_0, NULL);
GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC L_2;
L_2 = GCHandle_op_Explicit_m500B99BF54D923E624C5235A4B370A37C8B7050C(L_1, NULL);
V_0 = L_2;
RuntimeObject* L_3;
L_3 = GCHandle_get_Target_m481F9508DA5E384D33CD1F4450060DC56BBD4CD5((&V_0), NULL);
unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* L_4 = ___ctx1;
uint8_t* L_5 = ___cn2;
intptr_t L_6 = ___cnLen3;
unitytls_x509name_t8A1108C917795D8FE946B50769ACE51489C7BF5D* L_7 = ___caList4;
intptr_t L_8 = ___caListLen5;
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17* L_9 = ___chain6;
unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2* L_10 = ___key7;
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* L_11 = ___errorState8;
NullCheck(((UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C*)CastclassClass((RuntimeObject*)L_3, UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C_il2cpp_TypeInfo_var)));
UnityTlsContext_CertificateCallback_m5A4C050D5D49709202B72A50F33533E7C5C6B113(((UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C*)CastclassClass((RuntimeObject*)L_3, UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C_il2cpp_TypeInfo_var)), L_4, L_5, L_6, L_7, L_8, L_9, L_10, L_11, NULL);
return;
}
}
// System.Void Mono.Unity.UnityTlsContext::CertificateCallback(Mono.Unity.UnityTls/unitytls_tlsctx*,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_x509name*,System.IntPtr,Mono.Unity.UnityTls/unitytls_x509list_ref*,Mono.Unity.UnityTls/unitytls_key_ref*,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityTlsContext_CertificateCallback_m5A4C050D5D49709202B72A50F33533E7C5C6B113 (UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint8_t* ___cn1, intptr_t ___cnLen2, unitytls_x509name_t8A1108C917795D8FE946B50769ACE51489C7BF5D* ___caList3, intptr_t ___caListLen4, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17* ___chain5, unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2* ___key6, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState7, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBE3201E1F2B98FDF236B089A5FE0DD87DC6B433E);
s_Il2CppMethodInitialized = true;
}
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 V_0;
memset((&V_0), 0, sizeof(V_0));
unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2 V_1;
memset((&V_1), 0, sizeof(V_1));
Exception_t* V_2 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
{
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_0 = __this->___remoteCertificate_18;
if (L_0)
{
goto IL_0015_1;
}
}
{
TlsException_tC2DD153B101F6116975F36613D7F7C009C5664E3* L_1 = (TlsException_tC2DD153B101F6116975F36613D7F7C009C5664E3*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TlsException_tC2DD153B101F6116975F36613D7F7C009C5664E3_il2cpp_TypeInfo_var)));
NullCheck(L_1);
TlsException__ctor_m4E03D70F9BCA4C0CA737720A43ABAB696CEA6209(L_1, ((int32_t)80), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral20BBF77FD0D497807457F8ECCF59F13F5879AFD3)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityTlsContext_CertificateCallback_m5A4C050D5D49709202B72A50F33533E7C5C6B113_RuntimeMethod_var)));
}
IL_0015_1:
{
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_2;
L_2 = MobileTlsContext_SelectClientCertificate_mF12113474A7EF6BDC8F7119D418722173A4EBDC1(__this, (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)NULL, NULL);
__this->___localClientCertificate_17 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___localClientCertificate_17), (void*)L_2);
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_3 = __this->___localClientCertificate_17;
if (L_3)
{
goto IL_006e_1;
}
}
{
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17* L_4 = ___chain5;
il2cpp_codegen_initobj((&V_0), sizeof(unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17));
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_5;
L_5 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_5);
uint64_t L_6 = L_5->___UNITYTLS_INVALID_HANDLE_0;
(&V_0)->___handle_0 = L_6;
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 L_7 = V_0;
*(unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17*)L_4 = L_7;
unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2* L_8 = ___key6;
il2cpp_codegen_initobj((&V_1), sizeof(unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2));
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_9;
L_9 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_9);
uint64_t L_10 = L_9->___UNITYTLS_INVALID_HANDLE_0;
(&V_1)->___handle_0 = L_10;
unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2 L_11 = V_1;
*(unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2*)L_8 = L_11;
goto IL_00ed_1;
}
IL_006e_1:
{
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_12;
L_12 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_12);
unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2* L_13 = L_12->___unitytls_x509list_free_15;
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* L_14 = __this->___requestedClientCertChain_11;
NullCheck(L_13);
unitytls_x509list_free_t_Invoke_m0974FBCD7B6920A4EC57BDCB080E1A7307EEEA02_inline(L_13, L_14, NULL);
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_15;
L_15 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_15);
unitytls_key_free_t_tDB8665140BAF30447F3650D323078C193566FF72* L_16 = L_15->___unitytls_key_free_7;
unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* L_17 = __this->___requestedClientKey_12;
NullCheck(L_16);
unitytls_key_free_t_Invoke_m860A3C396228B7ADF9406AE78D439BDCD12FB98E_inline(L_16, L_17, NULL);
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_18 = __this->___localClientCertificate_17;
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* L_19 = ___errorState7;
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6** L_20 = (&__this->___requestedClientCertChain_11);
unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8** L_21 = (&__this->___requestedClientKey_12);
UnityTlsContext_ExtractNativeKeyAndChainFromManagedCertificate_mAAD3045A2D64C314FD288C3468D41767DD47205A(L_18, L_19, L_20, L_21, NULL);
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17* L_22 = ___chain5;
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_23;
L_23 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_23);
unitytls_x509list_get_ref_t_t264CEEF7B8D1F10FD95E1BC78BB48BCA11E305EA* L_24 = L_23->___unitytls_x509list_get_ref_9;
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* L_25 = __this->___requestedClientCertChain_11;
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* L_26 = ___errorState7;
NullCheck(L_24);
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 L_27;
L_27 = unitytls_x509list_get_ref_t_Invoke_mE7C675B7847FFEF96C25AE757D34CE920AA16EC2_inline(L_24, L_25, L_26, NULL);
*(unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17*)L_22 = L_27;
unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2* L_28 = ___key6;
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_29;
L_29 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_29);
unitytls_key_get_ref_t_t8335968B19449FE0ED92E67AE9B6D95915684209* L_30 = L_29->___unitytls_key_get_ref_4;
unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* L_31 = __this->___requestedClientKey_12;
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* L_32 = ___errorState7;
NullCheck(L_30);
unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2 L_33;
L_33 = unitytls_key_get_ref_t_Invoke_mF5D3582922E868C42BCF32EB14471F8C800BB66E_inline(L_30, L_31, L_32, NULL);
*(unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2*)L_28 = L_33;
}
IL_00ed_1:
{
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* L_34 = ___errorState7;
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 L_35 = (*(unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*)L_34);
Debug_CheckAndThrow_m0DC4C61C1A5FA2DF49E11420953CD3032843D59F(L_35, _stringLiteralBE3201E1F2B98FDF236B089A5FE0DD87DC6B433E, ((int32_t)40), NULL);
goto IL_012a;
}
}// 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_0102;
}
throw e;
}
CATCH_0102:
{// begin catch(System.Exception)
{
V_2 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_36;
L_36 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_36);
unitytls_errorstate_raise_error_t_t8C20FC78CA5BBEE0248CC09D1C1AF25BCB3835CF* L_37 = L_36->___unitytls_errorstate_raise_error_3;
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* L_38 = ___errorState7;
NullCheck(L_37);
unitytls_errorstate_raise_error_t_Invoke_m9B2B3433846A318340EDF0ED0E33C45030CCEA02_inline(L_37, L_38, ((int32_t)1048580), NULL);
Exception_t* L_39 = __this->___lastException_26;
if (L_39)
{
goto IL_0128;
}
}
{
Exception_t* L_40 = V_2;
__this->___lastException_26 = L_40;
Il2CppCodeGenWriteBarrier((void**)(&__this->___lastException_26), (void*)L_40);
}
IL_0128:
{
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_012a;
}
}// end catch (depth: 1)
IL_012a:
{
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
// Mono.Unity.UnityTls/unitytls_protocol Mono.Unity.UnityTlsConversions::GetMinProtocol(System.Security.Authentication.SslProtocols)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t UnityTlsConversions_GetMinProtocol_m0E691D4227CAB79BDC7F6E30E5CF2698D2F5813F (int32_t ___protocols0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___protocols0;
int32_t L_1 = L_0;
int32_t L_2 = ((int32_t)192);
bool L_3 = il2cpp_codegen_enum_has_flag((int32_t)L_1, (int32_t)L_2);
if (!L_3)
{
goto IL_0019;
}
}
{
return (uint32_t)(0);
}
IL_0019:
{
int32_t L_4 = ___protocols0;
int32_t L_5 = L_4;
int32_t L_6 = ((int32_t)768);
bool L_7 = il2cpp_codegen_enum_has_flag((int32_t)L_5, (int32_t)L_6);
if (!L_7)
{
goto IL_0032;
}
}
{
return (uint32_t)(1);
}
IL_0032:
{
int32_t L_8 = ___protocols0;
int32_t L_9 = L_8;
int32_t L_10 = ((int32_t)3072);
bool L_11 = il2cpp_codegen_enum_has_flag((int32_t)L_9, (int32_t)L_10);
if (!L_11)
{
goto IL_004b;
}
}
{
return (uint32_t)(2);
}
IL_004b:
{
return (uint32_t)(0);
}
}
// Mono.Unity.UnityTls/unitytls_protocol Mono.Unity.UnityTlsConversions::GetMaxProtocol(System.Security.Authentication.SslProtocols)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t UnityTlsConversions_GetMaxProtocol_mC7381248C4DA2168508E3A4C5DE049BE58C7F250 (int32_t ___protocols0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___protocols0;
int32_t L_1 = L_0;
int32_t L_2 = ((int32_t)3072);
bool L_3 = il2cpp_codegen_enum_has_flag((int32_t)L_1, (int32_t)L_2);
if (!L_3)
{
goto IL_0019;
}
}
{
return (uint32_t)(2);
}
IL_0019:
{
int32_t L_4 = ___protocols0;
int32_t L_5 = L_4;
int32_t L_6 = ((int32_t)768);
bool L_7 = il2cpp_codegen_enum_has_flag((int32_t)L_5, (int32_t)L_6);
if (!L_7)
{
goto IL_0032;
}
}
{
return (uint32_t)(1);
}
IL_0032:
{
int32_t L_8 = ___protocols0;
int32_t L_9 = L_8;
int32_t L_10 = ((int32_t)192);
bool L_11 = il2cpp_codegen_enum_has_flag((int32_t)L_9, (int32_t)L_10);
if (!L_11)
{
goto IL_004b;
}
}
{
return (uint32_t)(0);
}
IL_004b:
{
return (uint32_t)(2);
}
}
// Mono.Security.Interface.TlsProtocols Mono.Unity.UnityTlsConversions::ConvertProtocolVersion(Mono.Unity.UnityTls/unitytls_protocol)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityTlsConversions_ConvertProtocolVersion_mB9C0E5A59CC1564EDF56D06C396461DA678CAD0B (uint32_t ___protocol0, const RuntimeMethod* method)
{
{
uint32_t L_0 = ___protocol0;
switch (L_0)
{
case 0:
{
goto IL_0018;
}
case 1:
{
goto IL_001e;
}
case 2:
{
goto IL_0024;
}
case 3:
{
goto IL_002a;
}
}
}
{
goto IL_002c;
}
IL_0018:
{
return (int32_t)(((int32_t)192));
}
IL_001e:
{
return (int32_t)(((int32_t)768));
}
IL_0024:
{
return (int32_t)(((int32_t)3072));
}
IL_002a:
{
return (int32_t)(0);
}
IL_002c:
{
return (int32_t)(0);
}
}
// Mono.Security.Interface.AlertDescription Mono.Unity.UnityTlsConversions::VerifyResultToAlertDescription(Mono.Unity.UnityTls/unitytls_x509verify_result,Mono.Security.Interface.AlertDescription)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t UnityTlsConversions_VerifyResultToAlertDescription_m23B95B4CEFBE8FB8329DF4A53E744F9592C40DA6 (uint32_t ___verifyResult0, uint8_t ___defaultAlert1, const RuntimeMethod* method)
{
{
uint32_t L_0 = ___verifyResult0;
if ((!(((uint32_t)L_0) == ((uint32_t)(-1)))))
{
goto IL_0007;
}
}
{
return (uint8_t)(((int32_t)46));
}
IL_0007:
{
uint32_t L_1 = ___verifyResult0;
uint32_t L_2 = L_1;
int32_t L_3 = 1;
bool L_4 = il2cpp_codegen_enum_has_flag((uint32_t)L_2, (uint32_t)L_3);
if (!L_4)
{
goto IL_001d;
}
}
{
return (uint8_t)(((int32_t)45));
}
IL_001d:
{
uint32_t L_5 = ___verifyResult0;
uint32_t L_6 = L_5;
int32_t L_7 = 2;
bool L_8 = il2cpp_codegen_enum_has_flag((uint32_t)L_6, (uint32_t)L_7);
if (!L_8)
{
goto IL_0033;
}
}
{
return (uint8_t)(((int32_t)44));
}
IL_0033:
{
uint32_t L_9 = ___verifyResult0;
uint32_t L_10 = L_9;
int32_t L_11 = 4;
bool L_12 = il2cpp_codegen_enum_has_flag((uint32_t)L_10, (uint32_t)L_11);
if (!L_12)
{
goto IL_0049;
}
}
{
return (uint8_t)(((int32_t)48));
}
IL_0049:
{
uint32_t L_13 = ___verifyResult0;
uint32_t L_14 = L_13;
int32_t L_15 = 8;
bool L_16 = il2cpp_codegen_enum_has_flag((uint32_t)L_14, (uint32_t)L_15);
if (!L_16)
{
goto IL_005f;
}
}
{
return (uint8_t)(((int32_t)46));
}
IL_005f:
{
uint32_t L_17 = ___verifyResult0;
uint32_t L_18 = L_17;
int32_t L_19 = ((int32_t)65536);
bool L_20 = il2cpp_codegen_enum_has_flag((uint32_t)L_18, (uint32_t)L_19);
if (!L_20)
{
goto IL_0079;
}
}
{
return (uint8_t)(((int32_t)90));
}
IL_0079:
{
uint32_t L_21 = ___verifyResult0;
uint32_t L_22 = L_21;
int32_t L_23 = ((int32_t)131072);
bool L_24 = il2cpp_codegen_enum_has_flag((uint32_t)L_22, (uint32_t)L_23);
if (!L_24)
{
goto IL_0093;
}
}
{
return (uint8_t)(((int32_t)90));
}
IL_0093:
{
uint32_t L_25 = ___verifyResult0;
uint32_t L_26 = L_25;
int32_t L_27 = ((int32_t)131072);
bool L_28 = il2cpp_codegen_enum_has_flag((uint32_t)L_26, (uint32_t)L_27);
if (!L_28)
{
goto IL_00ad;
}
}
{
return (uint8_t)(((int32_t)90));
}
IL_00ad:
{
uint32_t L_29 = ___verifyResult0;
uint32_t L_30 = L_29;
int32_t L_31 = ((int32_t)262144);
bool L_32 = il2cpp_codegen_enum_has_flag((uint32_t)L_30, (uint32_t)L_31);
if (!L_32)
{
goto IL_00c7;
}
}
{
return (uint8_t)(((int32_t)90));
}
IL_00c7:
{
uint32_t L_33 = ___verifyResult0;
uint32_t L_34 = L_33;
int32_t L_35 = ((int32_t)524288);
bool L_36 = il2cpp_codegen_enum_has_flag((uint32_t)L_34, (uint32_t)L_35);
if (!L_36)
{
goto IL_00e1;
}
}
{
return (uint8_t)(((int32_t)90));
}
IL_00e1:
{
uint32_t L_37 = ___verifyResult0;
uint32_t L_38 = L_37;
int32_t L_39 = ((int32_t)1048576);
bool L_40 = il2cpp_codegen_enum_has_flag((uint32_t)L_38, (uint32_t)L_39);
if (!L_40)
{
goto IL_00fb;
}
}
{
return (uint8_t)(((int32_t)90));
}
IL_00fb:
{
uint32_t L_41 = ___verifyResult0;
uint32_t L_42 = L_41;
int32_t L_43 = ((int32_t)2097152);
bool L_44 = il2cpp_codegen_enum_has_flag((uint32_t)L_42, (uint32_t)L_43);
if (!L_44)
{
goto IL_0115;
}
}
{
return (uint8_t)(((int32_t)90));
}
IL_0115:
{
uint32_t L_45 = ___verifyResult0;
uint32_t L_46 = L_45;
int32_t L_47 = ((int32_t)4194304);
bool L_48 = il2cpp_codegen_enum_has_flag((uint32_t)L_46, (uint32_t)L_47);
if (!L_48)
{
goto IL_012f;
}
}
{
return (uint8_t)(((int32_t)90));
}
IL_012f:
{
uint32_t L_49 = ___verifyResult0;
uint32_t L_50 = L_49;
int32_t L_51 = ((int32_t)8388608);
bool L_52 = il2cpp_codegen_enum_has_flag((uint32_t)L_50, (uint32_t)L_51);
if (!L_52)
{
goto IL_0149;
}
}
{
return (uint8_t)(((int32_t)90));
}
IL_0149:
{
uint8_t L_53 = ___defaultAlert1;
return L_53;
}
}
// System.Net.Security.SslPolicyErrors Mono.Unity.UnityTlsConversions::VerifyResultToPolicyErrror(Mono.Unity.UnityTls/unitytls_x509verify_result)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityTlsConversions_VerifyResultToPolicyErrror_m6D9F0BBA8B599BF2133E28C4D804472CEDA5AFCF (uint32_t ___verifyResult0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
uint32_t L_0 = ___verifyResult0;
if (L_0)
{
goto IL_0005;
}
}
{
return (int32_t)(0);
}
IL_0005:
{
uint32_t L_1 = ___verifyResult0;
if ((!(((uint32_t)L_1) == ((uint32_t)(-1)))))
{
goto IL_000b;
}
}
{
return (int32_t)(4);
}
IL_000b:
{
V_0 = 0;
uint32_t L_2 = ___verifyResult0;
uint32_t L_3 = L_2;
int32_t L_4 = 4;
bool L_5 = il2cpp_codegen_enum_has_flag((uint32_t)L_3, (uint32_t)L_4);
if (!L_5)
{
goto IL_0024;
}
}
{
int32_t L_6 = V_0;
V_0 = ((int32_t)((int32_t)L_6|2));
}
IL_0024:
{
uint32_t L_7 = ___verifyResult0;
if ((((int32_t)L_7) == ((int32_t)4)))
{
goto IL_002c;
}
}
{
int32_t L_8 = V_0;
V_0 = ((int32_t)((int32_t)L_8|4));
}
IL_002c:
{
int32_t L_9 = V_0;
return L_9;
}
}
// System.Security.Cryptography.X509Certificates.X509ChainStatusFlags Mono.Unity.UnityTlsConversions::VerifyResultToChainStatus(Mono.Unity.UnityTls/unitytls_x509verify_result)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityTlsConversions_VerifyResultToChainStatus_m266E87DEE12D19BFD385BCCE2F5F30C527D6DB74 (uint32_t ___verifyResult0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
uint32_t L_0 = ___verifyResult0;
if (L_0)
{
goto IL_0005;
}
}
{
return (int32_t)(0);
}
IL_0005:
{
uint32_t L_1 = ___verifyResult0;
if ((!(((uint32_t)L_1) == ((uint32_t)(-1)))))
{
goto IL_000c;
}
}
{
return (int32_t)(((int32_t)32));
}
IL_000c:
{
V_0 = 0;
uint32_t L_2 = ___verifyResult0;
uint32_t L_3 = L_2;
int32_t L_4 = 1;
bool L_5 = il2cpp_codegen_enum_has_flag((uint32_t)L_3, (uint32_t)L_4);
if (!L_5)
{
goto IL_0025;
}
}
{
int32_t L_6 = V_0;
V_0 = ((int32_t)((int32_t)L_6|1));
}
IL_0025:
{
uint32_t L_7 = ___verifyResult0;
uint32_t L_8 = L_7;
int32_t L_9 = 2;
bool L_10 = il2cpp_codegen_enum_has_flag((uint32_t)L_8, (uint32_t)L_9);
if (!L_10)
{
goto IL_003c;
}
}
{
int32_t L_11 = V_0;
V_0 = ((int32_t)((int32_t)L_11|4));
}
IL_003c:
{
uint32_t L_12 = ___verifyResult0;
uint32_t L_13 = L_12;
int32_t L_14 = 4;
bool L_15 = il2cpp_codegen_enum_has_flag((uint32_t)L_13, (uint32_t)L_14);
if (!L_15)
{
goto IL_0054;
}
}
{
int32_t L_16 = V_0;
V_0 = ((int32_t)((int32_t)L_16|((int32_t)32)));
}
IL_0054:
{
uint32_t L_17 = ___verifyResult0;
uint32_t L_18 = L_17;
int32_t L_19 = 8;
bool L_20 = il2cpp_codegen_enum_has_flag((uint32_t)L_18, (uint32_t)L_19);
if (!L_20)
{
goto IL_006c;
}
}
{
int32_t L_21 = V_0;
V_0 = ((int32_t)((int32_t)L_21|((int32_t)32)));
}
IL_006c:
{
int32_t L_22 = V_0;
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
extern "C" uint32_t CDECL ReversePInvokeWrapper_UnityTlsProvider_x509verify_callback_m47823254E133F7304ABFAE5A1F0D218402BC5B45(void* ___userData0, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 ___cert1, uint32_t ___result2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3)
{
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
uint32_t returnValue;
returnValue = UnityTlsProvider_x509verify_callback_m47823254E133F7304ABFAE5A1F0D218402BC5B45(___userData0, ___cert1, ___result2, ___errorState3, NULL);
return returnValue;
}
// System.String Mono.Unity.UnityTlsProvider::get_Name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityTlsProvider_get_Name_m24407BD8B3C23C4DCF2EDF41F9056463763E7389 (UnityTlsProvider_t5B2A843E65B77E7B2B9F2467DB0B6117505929D1* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9F1213AA6EEF9116A55D707F375372E7AE4811E0);
s_Il2CppMethodInitialized = true;
}
{
return _stringLiteral9F1213AA6EEF9116A55D707F375372E7AE4811E0;
}
}
// System.Guid Mono.Unity.UnityTlsProvider::get_ID()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t UnityTlsProvider_get_ID_mE43288EBB589EFFC6EE6E49209FBE8295BE577F1 (UnityTlsProvider_t5B2A843E65B77E7B2B9F2467DB0B6117505929D1* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
Guid_t L_0 = ((MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var))->___UnityTlsId_5;
return L_0;
}
}
// System.Boolean Mono.Unity.UnityTlsProvider::get_SupportsSslStream()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityTlsProvider_get_SupportsSslStream_mBB478D61296FAF8CAC3145C816E27AA7A1CE8CC8 (UnityTlsProvider_t5B2A843E65B77E7B2B9F2467DB0B6117505929D1* __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Boolean Mono.Unity.UnityTlsProvider::get_SupportsMonoExtensions()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityTlsProvider_get_SupportsMonoExtensions_mC34E3757CB6273E3838F8DF33503CF6E4E4ADC01 (UnityTlsProvider_t5B2A843E65B77E7B2B9F2467DB0B6117505929D1* __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Boolean Mono.Unity.UnityTlsProvider::get_SupportsConnectionInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityTlsProvider_get_SupportsConnectionInfo_mF18DD7A3E1806F86AB471A580EEAD68AB736FB73 (UnityTlsProvider_t5B2A843E65B77E7B2B9F2467DB0B6117505929D1* __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Boolean Mono.Unity.UnityTlsProvider::get_SupportsCleanShutdown()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityTlsProvider_get_SupportsCleanShutdown_mBB7DCD0ACF8B5239D89F4695859B90D2F5275D50 (UnityTlsProvider_t5B2A843E65B77E7B2B9F2467DB0B6117505929D1* __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Security.Authentication.SslProtocols Mono.Unity.UnityTlsProvider::get_SupportedProtocols()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityTlsProvider_get_SupportedProtocols_m59C751B343CAC7A9692B1C12FC986450EF700C88 (UnityTlsProvider_t5B2A843E65B77E7B2B9F2467DB0B6117505929D1* __this, const RuntimeMethod* method)
{
{
return (int32_t)(((int32_t)4032));
}
}
// Mono.Net.Security.MobileAuthenticatedStream Mono.Unity.UnityTlsProvider::CreateSslStream(System.Net.Security.SslStream,System.IO.Stream,System.Boolean,Mono.Security.Interface.MonoTlsSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* UnityTlsProvider_CreateSslStream_m0B98A540CD6B4AE49FFD79ACCC226E69F21DE848 (UnityTlsProvider_t5B2A843E65B77E7B2B9F2467DB0B6117505929D1* __this, SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* ___sslStream0, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___innerStream1, bool ___leaveInnerStreamOpen2, MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* ___settings3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityTlsStream_tF1D4B34A71A716396F78FDAF2C35F812E09A4FDE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0 = ___innerStream1;
bool L_1 = ___leaveInnerStreamOpen2;
SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* L_2 = ___sslStream0;
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_3 = ___settings3;
UnityTlsStream_tF1D4B34A71A716396F78FDAF2C35F812E09A4FDE* L_4 = (UnityTlsStream_tF1D4B34A71A716396F78FDAF2C35F812E09A4FDE*)il2cpp_codegen_object_new(UnityTlsStream_tF1D4B34A71A716396F78FDAF2C35F812E09A4FDE_il2cpp_TypeInfo_var);
NullCheck(L_4);
UnityTlsStream__ctor_mEE3913BCF1FE718A3C5209FC2AD90D44D312F593(L_4, L_0, L_1, L_2, L_3, __this, NULL);
return L_4;
}
}
// Mono.Unity.UnityTls/unitytls_x509verify_result Mono.Unity.UnityTlsProvider::x509verify_callback(System.Void*,Mono.Unity.UnityTls/unitytls_x509_ref,Mono.Unity.UnityTls/unitytls_x509verify_result,Mono.Unity.UnityTls/unitytls_errorstate*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t UnityTlsProvider_x509verify_callback_m47823254E133F7304ABFAE5A1F0D218402BC5B45 (void* ___userData0, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 ___cert1, uint32_t ___result2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
{
void* L_0 = ___userData0;
if ((((intptr_t)L_0) == ((intptr_t)((uintptr_t)0))))
{
goto IL_0017;
}
}
{
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_1;
L_1 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_1);
unitytls_x509list_append_t_tC84B9CA7C15F5D1DE98386670A80D5F98559D98E* L_2 = L_1->___unitytls_x509list_append_12;
void* L_3 = ___userData0;
unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 L_4 = ___cert1;
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* L_5 = ___errorState3;
NullCheck(L_2);
unitytls_x509list_append_t_Invoke_mEF1811CFAD02743F745D8A8E09E2E84D68154976_inline(L_2, (unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6*)L_3, L_4, L_5, NULL);
}
IL_0017:
{
uint32_t L_6 = ___result2;
return L_6;
}
}
// System.Boolean Mono.Unity.UnityTlsProvider::ValidateCertificate(Mono.Net.Security.ChainValidationHelper,System.String,System.Boolean,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Boolean,System.Security.Cryptography.X509Certificates.X509Chain&,System.Net.Security.SslPolicyErrors&,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityTlsProvider_ValidateCertificate_mE2F233ED2EDE0D248D79D8133BE8F1C9133856A6 (UnityTlsProvider_t5B2A843E65B77E7B2B9F2467DB0B6117505929D1* __this, ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755* ___validator0, String_t* ___targetHost1, bool ___serverMode2, X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* ___certificates3, bool ___wantsChain4, X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5** ___chain5, int32_t* ___errors6, int32_t* ___status117, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityTlsProvider_x509verify_callback_m47823254E133F7304ABFAE5A1F0D218402BC5B45_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509ChainImplUnityTls_t37736839B9CDAD02F5F02693121A4C18C0020B40_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 V_0;
memset((&V_0), 0, sizeof(V_0));
X509ChainImplUnityTls_t37736839B9CDAD02F5F02693121A4C18C0020B40* V_1 = NULL;
uint32_t V_2 = 0;
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* V_3 = NULL;
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* V_4 = NULL;
X509ChainImplUnityTls_t37736839B9CDAD02F5F02693121A4C18C0020B40* V_5 = NULL;
int32_t V_6 = 0;
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 V_7;
memset((&V_7), 0, sizeof(V_7));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_8 = NULL;
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* V_9 = NULL;
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 V_10;
memset((&V_10), 0, sizeof(V_10));
uint8_t* V_11 = NULL;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_12 = NULL;
uint8_t* V_13 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* G_B38_0 = NULL;
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* G_B37_0 = NULL;
{
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_0;
L_0 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_0);
unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B* L_1 = L_0->___unitytls_errorstate_create_2;
NullCheck(L_1);
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 L_2;
L_2 = unitytls_errorstate_create_t_Invoke_m8B9A9835EA7C6A11E1627CA8904F3F853FB61BC0_inline(L_1, NULL);
V_0 = L_2;
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5** L_3 = ___chain5;
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* L_4 = *((X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5**)L_3);
NullCheck(L_4);
X509ChainImpl_tBA1BF154DB9DC321EE068BBC53C7CF43CAA2621F* L_5;
L_5 = X509Chain_get_Impl_m4B712BC99067069BCE090957082F5FE17EE237A6(L_4, NULL);
V_1 = ((X509ChainImplUnityTls_t37736839B9CDAD02F5F02693121A4C18C0020B40*)IsInstClass((RuntimeObject*)L_5, X509ChainImplUnityTls_t37736839B9CDAD02F5F02693121A4C18C0020B40_il2cpp_TypeInfo_var));
X509ChainImplUnityTls_t37736839B9CDAD02F5F02693121A4C18C0020B40* L_6 = V_1;
if (L_6)
{
goto IL_0038;
}
}
{
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* L_7 = ___certificates3;
if (!L_7)
{
goto IL_002e;
}
}
{
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* L_8 = ___certificates3;
NullCheck(L_8);
int32_t L_9;
L_9 = CollectionBase_get_Count_m2BD48A6DDD376554A7956E4B26EC27F9F1E43C72(L_8, NULL);
if (L_9)
{
goto IL_0071;
}
}
IL_002e:
{
int32_t* L_10 = ___errors6;
int32_t* L_11 = ___errors6;
int32_t L_12 = *((int32_t*)L_11);
*((int32_t*)L_10) = (int32_t)((int32_t)(L_12|1));
return (bool)0;
}
IL_0038:
{
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_13;
L_13 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_13);
unitytls_x509list_get_x509_t_t428DCD367D50DCDD5ECE6DCFEB8967C5F7C3DFE8* L_14 = L_13->___unitytls_x509list_get_x509_10;
X509ChainImplUnityTls_t37736839B9CDAD02F5F02693121A4C18C0020B40* L_15 = V_1;
NullCheck(L_15);
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 L_16;
L_16 = X509ChainImplUnityTls_get_NativeCertificateChain_mBFE146631BDB57BB66B00EBB21414AC7AFF73E72_inline(L_15, NULL);
intptr_t L_17;
L_17 = IntPtr_op_Explicit_mB06D1B6CFBA72B5C55FBEC1BA3BC25958AB60EB1(0, NULL);
NullCheck(L_14);
unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 L_18;
L_18 = unitytls_x509list_get_x509_t_Invoke_m9080273A34FE768B80024B96001D5B7451A46EC0_inline(L_14, L_16, L_17, (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*)((uintptr_t)(&V_0)), NULL);
uint64_t L_19 = L_18.___handle_0;
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_20;
L_20 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_20);
uint64_t L_21 = L_20->___UNITYTLS_INVALID_HANDLE_0;
if ((!(((uint64_t)L_19) == ((uint64_t)L_21))))
{
goto IL_0071;
}
}
{
int32_t* L_22 = ___errors6;
int32_t* L_23 = ___errors6;
int32_t L_24 = *((int32_t*)L_23);
*((int32_t*)L_22) = (int32_t)((int32_t)(L_24|1));
return (bool)0;
}
IL_0071:
{
String_t* L_25 = ___targetHost1;
bool L_26;
L_26 = String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A(L_25, NULL);
if (L_26)
{
goto IL_0095;
}
}
{
String_t* L_27 = ___targetHost1;
NullCheck(L_27);
int32_t L_28;
L_28 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_27, ((int32_t)58), NULL);
V_6 = L_28;
int32_t L_29 = V_6;
if ((((int32_t)L_29) <= ((int32_t)0)))
{
goto IL_009f;
}
}
{
String_t* L_30 = ___targetHost1;
int32_t L_31 = V_6;
NullCheck(L_30);
String_t* L_32;
L_32 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_30, 0, L_31, NULL);
___targetHost1 = L_32;
goto IL_009f;
}
IL_0095:
{
String_t* L_33 = ___targetHost1;
if (L_33)
{
goto IL_009f;
}
}
{
___targetHost1 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
}
IL_009f:
{
V_2 = ((int32_t)-2147483648LL);
V_3 = (unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6*)((uintptr_t)0);
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_34;
L_34 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_34);
unitytls_x509list_create_t_t8873365FFB1556CE6B643700DB0C30E391B758D6* L_35 = L_34->___unitytls_x509list_create_11;
NullCheck(L_35);
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* L_36;
L_36 = unitytls_x509list_create_t_Invoke_m05D8719D913109E4997FF913015E66455BC3C7D3_inline(L_35, (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*)((uintptr_t)(&V_0)), NULL);
V_4 = L_36;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_022d:
{// begin finally (depth: 1)
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_37;
L_37 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_37);
unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2* L_38 = L_37->___unitytls_x509list_free_15;
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* L_39 = V_3;
NullCheck(L_38);
unitytls_x509list_free_t_Invoke_m0974FBCD7B6920A4EC57BDCB080E1A7307EEEA02_inline(L_38, L_39, NULL);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
try
{// begin try (depth: 2)
{
X509ChainImplUnityTls_t37736839B9CDAD02F5F02693121A4C18C0020B40* L_40 = V_1;
if (L_40)
{
goto IL_00f4_2;
}
}
{
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_41;
L_41 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_41);
unitytls_x509list_create_t_t8873365FFB1556CE6B643700DB0C30E391B758D6* L_42 = L_41->___unitytls_x509list_create_11;
NullCheck(L_42);
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* L_43;
L_43 = unitytls_x509list_create_t_Invoke_m05D8719D913109E4997FF913015E66455BC3C7D3_inline(L_42, (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*)((uintptr_t)(&V_0)), NULL);
V_3 = L_43;
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* L_44 = V_3;
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* L_45 = ___certificates3;
CertHelper_AddCertificatesToNativeChain_m6A078F5FFEA16184F19AEEDD4F9C8E00F68BDD48(L_44, L_45, (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*)((uintptr_t)(&V_0)), NULL);
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_46;
L_46 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_46);
unitytls_x509list_get_ref_t_t264CEEF7B8D1F10FD95E1BC78BB48BCA11E305EA* L_47 = L_46->___unitytls_x509list_get_ref_9;
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* L_48 = V_3;
NullCheck(L_47);
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 L_49;
L_49 = unitytls_x509list_get_ref_t_Invoke_mE7C675B7847FFEF96C25AE757D34CE920AA16EC2_inline(L_47, L_48, (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*)((uintptr_t)(&V_0)), NULL);
V_7 = L_49;
goto IL_00fc_2;
}
IL_00f4_2:
{
X509ChainImplUnityTls_t37736839B9CDAD02F5F02693121A4C18C0020B40* L_50 = V_1;
NullCheck(L_50);
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 L_51;
L_51 = X509ChainImplUnityTls_get_NativeCertificateChain_mBFE146631BDB57BB66B00EBB21414AC7AFF73E72_inline(L_50, NULL);
V_7 = L_51;
}
IL_00fc_2:
{
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_52;
L_52 = Encoding_get_UTF8_m9700ADA8E0F244002B2A89B483F1B2133B8FE336(NULL);
String_t* L_53 = ___targetHost1;
NullCheck(L_52);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_54;
L_54 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(18 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_52, L_53);
V_8 = L_54;
ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755* L_55 = ___validator0;
NullCheck(L_55);
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_56;
L_56 = ChainValidationHelper_get_Settings_m94E2DC79CB696A4F54956D812983E62FEB33D22E_inline(L_55, NULL);
NullCheck(L_56);
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* L_57;
L_57 = MonoTlsSettings_get_TrustAnchors_m4CA73EEBF73B4344C5334F3BC5BBFE1BC27BC7AE_inline(L_56, NULL);
if (!L_57)
{
goto IL_01c4_2;
}
}
{
V_9 = (unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6*)((uintptr_t)0);
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_01b2_2:
{// begin finally (depth: 3)
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_58;
L_58 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_58);
unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2* L_59 = L_58->___unitytls_x509list_free_15;
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* L_60 = V_9;
NullCheck(L_59);
unitytls_x509list_free_t_Invoke_m0974FBCD7B6920A4EC57BDCB080E1A7307EEEA02_inline(L_59, L_60, NULL);
return;
}// end finally (depth: 3)
});
try
{// begin try (depth: 3)
{
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_61;
L_61 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_61);
unitytls_x509list_create_t_t8873365FFB1556CE6B643700DB0C30E391B758D6* L_62 = L_61->___unitytls_x509list_create_11;
NullCheck(L_62);
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* L_63;
L_63 = unitytls_x509list_create_t_Invoke_m05D8719D913109E4997FF913015E66455BC3C7D3_inline(L_62, (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*)((uintptr_t)(&V_0)), NULL);
V_9 = L_63;
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* L_64 = V_9;
ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755* L_65 = ___validator0;
NullCheck(L_65);
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_66;
L_66 = ChainValidationHelper_get_Settings_m94E2DC79CB696A4F54956D812983E62FEB33D22E_inline(L_65, NULL);
NullCheck(L_66);
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* L_67;
L_67 = MonoTlsSettings_get_TrustAnchors_m4CA73EEBF73B4344C5334F3BC5BBFE1BC27BC7AE_inline(L_66, NULL);
CertHelper_AddCertificatesToNativeChain_m6A078F5FFEA16184F19AEEDD4F9C8E00F68BDD48(L_64, L_67, (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*)((uintptr_t)(&V_0)), NULL);
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_68;
L_68 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_68);
unitytls_x509list_get_ref_t_t264CEEF7B8D1F10FD95E1BC78BB48BCA11E305EA* L_69 = L_68->___unitytls_x509list_get_ref_9;
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* L_70 = V_9;
NullCheck(L_69);
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 L_71;
L_71 = unitytls_x509list_get_ref_t_Invoke_mE7C675B7847FFEF96C25AE757D34CE920AA16EC2_inline(L_69, L_70, (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*)((uintptr_t)(&V_0)), NULL);
V_10 = L_71;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_01ac_3:
{// begin finally (depth: 4)
V_12 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL;
return;
}// end finally (depth: 4)
});
try
{// begin try (depth: 4)
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_72 = V_8;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_73 = L_72;
V_12 = L_73;
if (!L_73)
{
goto IL_0169_4;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_74 = V_12;
NullCheck(L_74);
if (((int32_t)(((RuntimeArray*)L_74)->max_length)))
{
goto IL_016f_4;
}
}
IL_0169_4:
{
V_11 = (uint8_t*)((uintptr_t)0);
goto IL_017a_4;
}
IL_016f_4:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_75 = V_12;
NullCheck(L_75);
V_11 = (uint8_t*)((uintptr_t)((L_75)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))));
}
IL_017a_4:
{
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_76;
L_76 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_76);
unitytls_x509verify_explicit_ca_t_t1B3D98BF01F059A3C2ADE87EFDDA03C557A3D08D* L_77 = L_76->___unitytls_x509verify_explicit_ca_17;
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 L_78 = V_7;
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 L_79 = V_10;
uint8_t* L_80 = V_11;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_81 = V_8;
NullCheck(L_81);
intptr_t L_82;
L_82 = IntPtr_op_Explicit_mB06D1B6CFBA72B5C55FBEC1BA3BC25958AB60EB1(((int32_t)(((RuntimeArray*)L_81)->max_length)), NULL);
unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* L_83 = (unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09*)il2cpp_codegen_object_new(unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09_il2cpp_TypeInfo_var);
NullCheck(L_83);
unitytls_x509verify_callback__ctor_mEDC6857514FD696562638B3F1DFE959920D1EB26(L_83, NULL, (intptr_t)((void*)UnityTlsProvider_x509verify_callback_m47823254E133F7304ABFAE5A1F0D218402BC5B45_RuntimeMethod_var), NULL);
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* L_84 = V_4;
NullCheck(L_77);
uint32_t L_85;
L_85 = unitytls_x509verify_explicit_ca_t_Invoke_m4028A9AE8FD6B69DB36BAE68CC3A3362A825738B_inline(L_77, L_78, L_79, L_80, L_82, L_83, (void*)L_84, (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*)((uintptr_t)(&V_0)), NULL);
V_2 = L_85;
goto IL_01b0_3;
}
}// end try (depth: 4)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_01b0_3:
{
goto IL_0217_2;
}
}// end try (depth: 3)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_01c4_2:
{
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0213_2:
{// begin finally (depth: 3)
V_12 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL;
return;
}// end finally (depth: 3)
});
try
{// begin try (depth: 3)
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_86 = V_8;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_87 = L_86;
V_12 = L_87;
if (!L_87)
{
goto IL_01d2_3;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_88 = V_12;
NullCheck(L_88);
if (((int32_t)(((RuntimeArray*)L_88)->max_length)))
{
goto IL_01d8_3;
}
}
IL_01d2_3:
{
V_13 = (uint8_t*)((uintptr_t)0);
goto IL_01e3_3;
}
IL_01d8_3:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_89 = V_12;
NullCheck(L_89);
V_13 = (uint8_t*)((uintptr_t)((L_89)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))));
}
IL_01e3_3:
{
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_90;
L_90 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_90);
unitytls_x509verify_default_ca_t_tED88B7ABC8408A22DB51B1F57D5FC65BDD2EC809* L_91 = L_90->___unitytls_x509verify_default_ca_16;
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 L_92 = V_7;
uint8_t* L_93 = V_13;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_94 = V_8;
NullCheck(L_94);
intptr_t L_95;
L_95 = IntPtr_op_Explicit_mB06D1B6CFBA72B5C55FBEC1BA3BC25958AB60EB1(((int32_t)(((RuntimeArray*)L_94)->max_length)), NULL);
unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* L_96 = (unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09*)il2cpp_codegen_object_new(unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09_il2cpp_TypeInfo_var);
NullCheck(L_96);
unitytls_x509verify_callback__ctor_mEDC6857514FD696562638B3F1DFE959920D1EB26(L_96, NULL, (intptr_t)((void*)UnityTlsProvider_x509verify_callback_m47823254E133F7304ABFAE5A1F0D218402BC5B45_RuntimeMethod_var), NULL);
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* L_97 = V_4;
NullCheck(L_91);
uint32_t L_98;
L_98 = unitytls_x509verify_default_ca_t_Invoke_m1D112FD2010361D2DB08F08A598000ADCD0875C3_inline(L_91, L_92, L_93, L_95, L_96, (void*)L_97, (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*)((uintptr_t)(&V_0)), NULL);
V_2 = L_98;
goto IL_0217_2;
}
}// end try (depth: 3)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0217_2:
{
goto IL_023e;
}
}// 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_0219_1;
}
throw e;
}
CATCH_0219_1:
{// begin catch(System.Object)
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_99;
L_99 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_99);
unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2* L_100 = L_99->___unitytls_x509list_free_15;
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* L_101 = V_4;
NullCheck(L_100);
unitytls_x509list_free_t_Invoke_m0974FBCD7B6920A4EC57BDCB080E1A7307EEEA02_inline(L_100, L_101, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityTlsProvider_ValidateCertificate_mE2F233ED2EDE0D248D79D8133BE8F1C9133856A6_RuntimeMethod_var)));
}// end catch (depth: 2)
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_023e:
{
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5** L_102 = ___chain5;
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* L_103 = *((X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5**)L_102);
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* L_104 = L_103;
G_B37_0 = L_104;
if (L_104)
{
G_B38_0 = L_104;
goto IL_0247;
}
}
{
goto IL_024c;
}
IL_0247:
{
NullCheck(G_B38_0);
X509Chain_Dispose_mC10F7CE7DAF0799F13C798184330C046222E305D(G_B38_0, NULL);
}
IL_024c:
{
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_105;
L_105 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_105);
unitytls_x509list_get_ref_t_t264CEEF7B8D1F10FD95E1BC78BB48BCA11E305EA* L_106 = L_105->___unitytls_x509list_get_ref_9;
unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* L_107 = V_4;
NullCheck(L_106);
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 L_108;
L_108 = unitytls_x509list_get_ref_t_Invoke_mE7C675B7847FFEF96C25AE757D34CE920AA16EC2_inline(L_106, L_107, (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*)((uintptr_t)(&V_0)), NULL);
X509ChainImplUnityTls_t37736839B9CDAD02F5F02693121A4C18C0020B40* L_109 = (X509ChainImplUnityTls_t37736839B9CDAD02F5F02693121A4C18C0020B40*)il2cpp_codegen_object_new(X509ChainImplUnityTls_t37736839B9CDAD02F5F02693121A4C18C0020B40_il2cpp_TypeInfo_var);
NullCheck(L_109);
X509ChainImplUnityTls__ctor_mD653A56ED8AD47C0A46DB3D89749A055D4BB1ABC(L_109, L_108, (bool)1, NULL);
V_5 = L_109;
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5** L_110 = ___chain5;
X509ChainImplUnityTls_t37736839B9CDAD02F5F02693121A4C18C0020B40* L_111 = V_5;
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* L_112 = (X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5*)il2cpp_codegen_object_new(X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5_il2cpp_TypeInfo_var);
NullCheck(L_112);
X509Chain__ctor_m6F2404400D7192FDA4CCB37DC67F18F12616000B(L_112, L_111, NULL);
*((RuntimeObject**)L_110) = (RuntimeObject*)L_112;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_110, (void*)(RuntimeObject*)L_112);
int32_t* L_113 = ___errors6;
uint32_t L_114 = V_2;
int32_t L_115;
L_115 = UnityTlsConversions_VerifyResultToPolicyErrror_m6D9F0BBA8B599BF2133E28C4D804472CEDA5AFCF(L_114, NULL);
*((int32_t*)L_113) = (int32_t)L_115;
X509ChainImplUnityTls_t37736839B9CDAD02F5F02693121A4C18C0020B40* L_116 = V_5;
uint32_t L_117 = V_2;
int32_t L_118;
L_118 = UnityTlsConversions_VerifyResultToChainStatus_m266E87DEE12D19BFD385BCCE2F5F30C527D6DB74(L_117, NULL);
NullCheck(L_116);
VirtualActionInvoker1< int32_t >::Invoke(9 /* System.Void System.Security.Cryptography.X509Certificates.X509ChainImpl::AddStatus(System.Security.Cryptography.X509Certificates.X509ChainStatusFlags) */, L_116, L_118);
uint32_t L_119 = V_2;
if (L_119)
{
goto IL_0295;
}
}
{
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 L_120 = V_0;
uint32_t L_121 = L_120.___code_1;
return (bool)((((int32_t)L_121) == ((int32_t)0))? 1 : 0);
}
IL_0295:
{
return (bool)0;
}
}
// System.Void Mono.Unity.UnityTlsProvider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityTlsProvider__ctor_m0C11027324407A76EB81EB51C37FF5C8F6F219A8 (UnityTlsProvider_t5B2A843E65B77E7B2B9F2467DB0B6117505929D1* __this, const RuntimeMethod* method)
{
{
MobileTlsProvider__ctor_m31D6E547C8B388F136D323088D376FD54FE69B68(__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 Mono.Unity.UnityTlsStream::.ctor(System.IO.Stream,System.Boolean,System.Net.Security.SslStream,Mono.Security.Interface.MonoTlsSettings,Mono.Net.Security.MobileTlsProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityTlsStream__ctor_mEE3913BCF1FE718A3C5209FC2AD90D44D312F593 (UnityTlsStream_tF1D4B34A71A716396F78FDAF2C35F812E09A4FDE* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___innerStream0, bool ___leaveInnerStreamOpen1, SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* ___owner2, MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* ___settings3, MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* ___provider4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0 = ___innerStream0;
bool L_1 = ___leaveInnerStreamOpen1;
SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* L_2 = ___owner2;
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_3 = ___settings3;
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* L_4 = ___provider4;
il2cpp_codegen_runtime_class_init_inline(MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_il2cpp_TypeInfo_var);
MobileAuthenticatedStream__ctor_mFA70F7AAAE52C6559DC554D363E5FFD4DE665CED(__this, L_0, L_1, L_2, L_3, L_4, NULL);
return;
}
}
// Mono.Net.Security.MobileTlsContext Mono.Unity.UnityTlsStream::CreateContext(Mono.Net.Security.MonoSslAuthenticationOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* UnityTlsStream_CreateContext_m113223853E0216291BEE53F8DCEACC7E3BECE451 (UnityTlsStream_tF1D4B34A71A716396F78FDAF2C35F812E09A4FDE* __this, MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* ___options0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* L_0 = ___options0;
UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C* L_1 = (UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C*)il2cpp_codegen_object_new(UnityTlsContext_t460A8D5AAD7F12A55B1100323C586C8C7BF3C06C_il2cpp_TypeInfo_var);
NullCheck(L_1);
UnityTlsContext__ctor_m4B8251E305EF5AC2CCB5D963BCB2F61D0F18408C(L_1, __this, 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 Mono.Unity.X509ChainImplUnityTls::.ctor(Mono.Unity.UnityTls/unitytls_x509list_ref,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509ChainImplUnityTls__ctor_mD653A56ED8AD47C0A46DB3D89749A055D4BB1ABC (X509ChainImplUnityTls_t37736839B9CDAD02F5F02693121A4C18C0020B40* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___nativeCertificateChain0, bool ___reverseOrder1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509ChainPolicy_t34F49B4067492A1E5F91DD91FA7C934B68D880EC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
X509ChainPolicy_t34F49B4067492A1E5F91DD91FA7C934B68D880EC* L_0 = (X509ChainPolicy_t34F49B4067492A1E5F91DD91FA7C934B68D880EC*)il2cpp_codegen_object_new(X509ChainPolicy_t34F49B4067492A1E5F91DD91FA7C934B68D880EC_il2cpp_TypeInfo_var);
NullCheck(L_0);
X509ChainPolicy__ctor_m069F83BFFF3E79ED4CEBE8CF553CC65576F8D3D9(L_0, NULL);
__this->___policy_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___policy_2), (void*)L_0);
X509ChainImpl__ctor_m16F671EB135FB6E7E3CF6C42715D7106E6FAAF18(__this, NULL);
__this->___elements_0 = (X509ChainElementCollection_t543DE35924C12A624ADA5111F7F47C1F9F99E70D*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___elements_0), (void*)(X509ChainElementCollection_t543DE35924C12A624ADA5111F7F47C1F9F99E70D*)NULL);
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 L_1 = ___nativeCertificateChain0;
__this->___nativeCertificateChain_1 = L_1;
bool L_2 = ___reverseOrder1;
__this->___reverseOrder_4 = L_2;
return;
}
}
// System.Boolean Mono.Unity.X509ChainImplUnityTls::get_IsValid()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool X509ChainImplUnityTls_get_IsValid_mC01A80C0AF85FC18A5C790EF35586C8503D6B36F (X509ChainImplUnityTls_t37736839B9CDAD02F5F02693121A4C18C0020B40* __this, const RuntimeMethod* method)
{
{
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17* L_0 = (&__this->___nativeCertificateChain_1);
uint64_t L_1 = L_0->___handle_0;
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_2;
L_2 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_2);
uint64_t L_3 = L_2->___UNITYTLS_INVALID_HANDLE_0;
return (bool)((((int32_t)((((int64_t)L_1) == ((int64_t)L_3))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// Mono.Unity.UnityTls/unitytls_x509list_ref Mono.Unity.X509ChainImplUnityTls::get_NativeCertificateChain()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 X509ChainImplUnityTls_get_NativeCertificateChain_mBFE146631BDB57BB66B00EBB21414AC7AFF73E72 (X509ChainImplUnityTls_t37736839B9CDAD02F5F02693121A4C18C0020B40* __this, const RuntimeMethod* method)
{
{
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 L_0 = __this->___nativeCertificateChain_1;
return L_0;
}
}
// System.Security.Cryptography.X509Certificates.X509ChainElementCollection Mono.Unity.X509ChainImplUnityTls::get_ChainElements()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509ChainElementCollection_t543DE35924C12A624ADA5111F7F47C1F9F99E70D* X509ChainImplUnityTls_get_ChainElements_m88A7F21DC30467829291CF89448C65025D7A15A4 (X509ChainImplUnityTls_t37736839B9CDAD02F5F02693121A4C18C0020B40* __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*)&X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509ChainElementCollection_t543DE35924C12A624ADA5111F7F47C1F9F99E70D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 V_0;
memset((&V_0), 0, sizeof(V_0));
unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 V_1;
memset((&V_1), 0, sizeof(V_1));
int32_t V_2 = 0;
intptr_t V_3;
memset((&V_3), 0, sizeof(V_3));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_4 = NULL;
uint8_t* V_5 = NULL;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_6 = NULL;
X509ChainElementCollection_t543DE35924C12A624ADA5111F7F47C1F9F99E70D* V_7 = NULL;
int32_t V_8 = 0;
{
X509ChainImpl_ThrowIfContextInvalid_m85AF480D1B87D8DA3D780040385CBB88D9B173CD(__this, NULL);
X509ChainElementCollection_t543DE35924C12A624ADA5111F7F47C1F9F99E70D* L_0 = __this->___elements_0;
if (!L_0)
{
goto IL_0015;
}
}
{
X509ChainElementCollection_t543DE35924C12A624ADA5111F7F47C1F9F99E70D* L_1 = __this->___elements_0;
return L_1;
}
IL_0015:
{
X509ChainElementCollection_t543DE35924C12A624ADA5111F7F47C1F9F99E70D* L_2 = (X509ChainElementCollection_t543DE35924C12A624ADA5111F7F47C1F9F99E70D*)il2cpp_codegen_object_new(X509ChainElementCollection_t543DE35924C12A624ADA5111F7F47C1F9F99E70D_il2cpp_TypeInfo_var);
NullCheck(L_2);
X509ChainElementCollection__ctor_mAEF26718ED02C8480A7041E3C6B66500950E013D(L_2, NULL);
__this->___elements_0 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___elements_0), (void*)L_2);
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_3;
L_3 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_3);
unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B* L_4 = L_3->___unitytls_errorstate_create_2;
NullCheck(L_4);
unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 L_5;
L_5 = unitytls_errorstate_create_t_Invoke_m8B9A9835EA7C6A11E1627CA8904F3F853FB61BC0_inline(L_4, NULL);
V_0 = L_5;
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_6;
L_6 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_6);
unitytls_x509list_get_x509_t_t428DCD367D50DCDD5ECE6DCFEB8967C5F7C3DFE8* L_7 = L_6->___unitytls_x509list_get_x509_10;
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 L_8 = __this->___nativeCertificateChain_1;
intptr_t L_9;
L_9 = IntPtr_op_Explicit_mB06D1B6CFBA72B5C55FBEC1BA3BC25958AB60EB1(0, NULL);
NullCheck(L_7);
unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 L_10;
L_10 = unitytls_x509list_get_x509_t_Invoke_m9080273A34FE768B80024B96001D5B7451A46EC0_inline(L_7, L_8, L_9, (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*)((uintptr_t)(&V_0)), NULL);
V_1 = L_10;
V_2 = 1;
goto IL_00ec;
}
IL_0056:
{
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_11;
L_11 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_11);
unitytls_x509_export_der_t_tB784597940DE501BB5FEFA3EA528634559A16749* L_12 = L_11->___unitytls_x509_export_der_8;
unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 L_13 = V_1;
intptr_t L_14;
L_14 = IntPtr_op_Explicit_mB06D1B6CFBA72B5C55FBEC1BA3BC25958AB60EB1(0, NULL);
NullCheck(L_12);
intptr_t L_15;
L_15 = unitytls_x509_export_der_t_Invoke_m13DB2E205EF9ED37B75F5B763C5080E7077841AD_inline(L_12, L_13, (uint8_t*)((uintptr_t)0), L_14, (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*)((uintptr_t)(&V_0)), NULL);
V_3 = L_15;
intptr_t L_16 = V_3;
int32_t L_17;
L_17 = IntPtr_op_Explicit_m358ACBBA288C56CC429F39D4D481669D0620B590(L_16, NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_18 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)L_17);
V_4 = L_18;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_19 = V_4;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_20 = L_19;
V_6 = L_20;
if (!L_20)
{
goto IL_008c;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_21 = V_6;
NullCheck(L_21);
if (((int32_t)(((RuntimeArray*)L_21)->max_length)))
{
goto IL_0092;
}
}
IL_008c:
{
V_5 = (uint8_t*)((uintptr_t)0);
goto IL_009d;
}
IL_0092:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_22 = V_6;
NullCheck(L_22);
V_5 = (uint8_t*)((uintptr_t)((L_22)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))));
}
IL_009d:
{
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_23;
L_23 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_23);
unitytls_x509_export_der_t_tB784597940DE501BB5FEFA3EA528634559A16749* L_24 = L_23->___unitytls_x509_export_der_8;
unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 L_25 = V_1;
uint8_t* L_26 = V_5;
intptr_t L_27 = V_3;
NullCheck(L_24);
intptr_t L_28;
L_28 = unitytls_x509_export_der_t_Invoke_m13DB2E205EF9ED37B75F5B763C5080E7077841AD_inline(L_24, L_25, L_26, L_27, (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*)((uintptr_t)(&V_0)), NULL);
V_6 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL;
X509ChainElementCollection_t543DE35924C12A624ADA5111F7F47C1F9F99E70D* L_29 = __this->___elements_0;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_30 = V_4;
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_31 = (X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D*)il2cpp_codegen_object_new(X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D_il2cpp_TypeInfo_var);
NullCheck(L_31);
X509Certificate2__ctor_m34CFFC999D3A152729A5C59DBE80AB709547DA19(L_31, L_30, NULL);
NullCheck(L_29);
X509ChainElementCollection_Add_mA032CE8B536713B0E070C9A211B084706D04F6C8(L_29, L_31, NULL);
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_32;
L_32 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_32);
unitytls_x509list_get_x509_t_t428DCD367D50DCDD5ECE6DCFEB8967C5F7C3DFE8* L_33 = L_32->___unitytls_x509list_get_x509_10;
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 L_34 = __this->___nativeCertificateChain_1;
int32_t L_35 = V_2;
intptr_t L_36;
L_36 = IntPtr_op_Explicit_mB06D1B6CFBA72B5C55FBEC1BA3BC25958AB60EB1(L_35, NULL);
NullCheck(L_33);
unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 L_37;
L_37 = unitytls_x509list_get_x509_t_Invoke_m9080273A34FE768B80024B96001D5B7451A46EC0_inline(L_33, L_34, L_36, (unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902*)((uintptr_t)(&V_0)), NULL);
V_1 = L_37;
int32_t L_38 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_38, 1));
}
IL_00ec:
{
unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 L_39 = V_1;
uint64_t L_40 = L_39.___handle_0;
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_41;
L_41 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_41);
uint64_t L_42 = L_41->___UNITYTLS_INVALID_HANDLE_0;
if ((!(((uint64_t)L_40) == ((uint64_t)L_42))))
{
goto IL_0056;
}
}
{
bool L_43 = __this->___reverseOrder_4;
if (!L_43)
{
goto IL_014d;
}
}
{
X509ChainElementCollection_t543DE35924C12A624ADA5111F7F47C1F9F99E70D* L_44 = (X509ChainElementCollection_t543DE35924C12A624ADA5111F7F47C1F9F99E70D*)il2cpp_codegen_object_new(X509ChainElementCollection_t543DE35924C12A624ADA5111F7F47C1F9F99E70D_il2cpp_TypeInfo_var);
NullCheck(L_44);
X509ChainElementCollection__ctor_mAEF26718ED02C8480A7041E3C6B66500950E013D(L_44, NULL);
V_7 = L_44;
X509ChainElementCollection_t543DE35924C12A624ADA5111F7F47C1F9F99E70D* L_45 = __this->___elements_0;
NullCheck(L_45);
int32_t L_46;
L_46 = X509ChainElementCollection_get_Count_m5448D972C3009FA67B3F4E13061B6012D561B78B(L_45, NULL);
V_8 = ((int32_t)il2cpp_codegen_subtract(L_46, 1));
goto IL_0140;
}
IL_0121:
{
X509ChainElementCollection_t543DE35924C12A624ADA5111F7F47C1F9F99E70D* L_47 = V_7;
X509ChainElementCollection_t543DE35924C12A624ADA5111F7F47C1F9F99E70D* L_48 = __this->___elements_0;
int32_t L_49 = V_8;
NullCheck(L_48);
X509ChainElement_t95FFAD3F504A1CA731ECCBA88C5CB3B0EE28786D* L_50;
L_50 = X509ChainElementCollection_get_Item_mC2A5AAFBAEF74FB085685620066058ACDC71D69A(L_48, L_49, NULL);
NullCheck(L_50);
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_51;
L_51 = X509ChainElement_get_Certificate_m6AF210BCAD2D94C19DFEF475BDAA84E5FF4AF105_inline(L_50, NULL);
NullCheck(L_47);
X509ChainElementCollection_Add_mA032CE8B536713B0E070C9A211B084706D04F6C8(L_47, L_51, NULL);
int32_t L_52 = V_8;
V_8 = ((int32_t)il2cpp_codegen_subtract(L_52, 1));
}
IL_0140:
{
int32_t L_53 = V_8;
if ((((int32_t)L_53) >= ((int32_t)0)))
{
goto IL_0121;
}
}
{
X509ChainElementCollection_t543DE35924C12A624ADA5111F7F47C1F9F99E70D* L_54 = V_7;
__this->___elements_0 = L_54;
Il2CppCodeGenWriteBarrier((void**)(&__this->___elements_0), (void*)L_54);
}
IL_014d:
{
X509ChainElementCollection_t543DE35924C12A624ADA5111F7F47C1F9F99E70D* L_55 = __this->___elements_0;
return L_55;
}
}
// System.Void Mono.Unity.X509ChainImplUnityTls::AddStatus(System.Security.Cryptography.X509Certificates.X509ChainStatusFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509ChainImplUnityTls_AddStatus_mF8C26841864A662C616E5A94A762EA3A19EF71D4 (X509ChainImplUnityTls_t37736839B9CDAD02F5F02693121A4C18C0020B40* __this, int32_t ___error0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m1794A41080E7D990FC91C41044F40666784FAF5F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mF30FEE3E944E17EC5FB08148FF63FE253821092D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t14F08D1F5A2E0F276F976F81CC13B7CB7EDABE33_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
List_1_t14F08D1F5A2E0F276F976F81CC13B7CB7EDABE33* L_0 = __this->___chainStatusList_3;
if (L_0)
{
goto IL_0013;
}
}
{
List_1_t14F08D1F5A2E0F276F976F81CC13B7CB7EDABE33* L_1 = (List_1_t14F08D1F5A2E0F276F976F81CC13B7CB7EDABE33*)il2cpp_codegen_object_new(List_1_t14F08D1F5A2E0F276F976F81CC13B7CB7EDABE33_il2cpp_TypeInfo_var);
NullCheck(L_1);
List_1__ctor_mF30FEE3E944E17EC5FB08148FF63FE253821092D(L_1, List_1__ctor_mF30FEE3E944E17EC5FB08148FF63FE253821092D_RuntimeMethod_var);
__this->___chainStatusList_3 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___chainStatusList_3), (void*)L_1);
}
IL_0013:
{
List_1_t14F08D1F5A2E0F276F976F81CC13B7CB7EDABE33* L_2 = __this->___chainStatusList_3;
int32_t L_3 = ___error0;
X509ChainStatus_t5A57DDA24AA1FCA9F2B8D70B767CDDF388E4A80D L_4;
memset((&L_4), 0, sizeof(L_4));
X509ChainStatus__ctor_m5AD96E11604F8DB96673677AC2FFF68EBA550859((&L_4), L_3, /*hidden argument*/NULL);
NullCheck(L_2);
List_1_Add_m1794A41080E7D990FC91C41044F40666784FAF5F_inline(L_2, L_4, List_1_Add_m1794A41080E7D990FC91C41044F40666784FAF5F_RuntimeMethod_var);
return;
}
}
// System.Security.Cryptography.X509Certificates.X509ChainPolicy Mono.Unity.X509ChainImplUnityTls::get_ChainPolicy()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509ChainPolicy_t34F49B4067492A1E5F91DD91FA7C934B68D880EC* X509ChainImplUnityTls_get_ChainPolicy_m6FF8496FAA1CCC30DA4691A4CFCC1C6F8E7939B6 (X509ChainImplUnityTls_t37736839B9CDAD02F5F02693121A4C18C0020B40* __this, const RuntimeMethod* method)
{
{
X509ChainPolicy_t34F49B4067492A1E5F91DD91FA7C934B68D880EC* L_0 = __this->___policy_2;
return L_0;
}
}
// System.Boolean Mono.Unity.X509ChainImplUnityTls::Build(System.Security.Cryptography.X509Certificates.X509Certificate2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool X509ChainImplUnityTls_Build_m9B33FDCF42AE118B28749FDE388231A6E6316768 (X509ChainImplUnityTls_t37736839B9CDAD02F5F02693121A4C18C0020B40* __this, X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* ___certificate0, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Void Mono.Unity.X509ChainImplUnityTls::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509ChainImplUnityTls_Reset_m1AD27C4C44348EADFBF5C6CF802F8AF60B562474 (X509ChainImplUnityTls_t37736839B9CDAD02F5F02693121A4C18C0020B40* __this, const RuntimeMethod* method)
{
{
X509ChainElementCollection_t543DE35924C12A624ADA5111F7F47C1F9F99E70D* L_0 = __this->___elements_0;
if (!L_0)
{
goto IL_002f;
}
}
{
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17* L_1 = (&__this->___nativeCertificateChain_1);
unitytls_interface_struct_tFD4B67EBFBE5D7FF212193507C3517DBA60978ED* L_2;
L_2 = UnityTls_get_NativeInterface_m48CD53391B9897F81D41D180A899D4C48F9B374B(NULL);
NullCheck(L_2);
uint64_t L_3 = L_2->___UNITYTLS_INVALID_HANDLE_0;
L_1->___handle_0 = L_3;
X509ChainElementCollection_t543DE35924C12A624ADA5111F7F47C1F9F99E70D* L_4 = __this->___elements_0;
NullCheck(L_4);
X509ChainElementCollection_Clear_mF0C2AE76F73C525E29E808615576C7EE11409659(L_4, NULL);
__this->___elements_0 = (X509ChainElementCollection_t543DE35924C12A624ADA5111F7F47C1F9F99E70D*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___elements_0), (void*)(X509ChainElementCollection_t543DE35924C12A624ADA5111F7F47C1F9F99E70D*)NULL);
}
IL_002f:
{
return;
}
}
// System.Void Mono.Unity.X509ChainImplUnityTls::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509ChainImplUnityTls_Dispose_m8E23D2EF6C322FF694E5E6098A52FB54388FC446 (X509ChainImplUnityTls_t37736839B9CDAD02F5F02693121A4C18C0020B40* __this, bool ___disposing0, const RuntimeMethod* method)
{
{
VirtualActionInvoker0::Invoke(10 /* System.Void System.Security.Cryptography.X509Certificates.X509ChainImpl::Reset() */, __this);
bool L_0 = ___disposing0;
X509ChainImpl_Dispose_m9F8B96FFCB317F7F8C8E1ACA82061EA7404B732D(__this, L_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.Int32 Mono.Net.Security.BufferOffsetSize::get_EndOffset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BufferOffsetSize_get_EndOffset_m114650CE0C422157F8EDCD8C0F1B89C5FFE7F9C9 (BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___Offset_1;
int32_t L_1 = __this->___Size_2;
return ((int32_t)il2cpp_codegen_add(L_0, L_1));
}
}
// System.Int32 Mono.Net.Security.BufferOffsetSize::get_Remaining()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BufferOffsetSize_get_Remaining_mB3CB4287B2AAAD7976374B914E95ABFCE71B1A4E (BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* __this, const RuntimeMethod* method)
{
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = __this->___Buffer_0;
NullCheck(L_0);
int32_t L_1 = __this->___Offset_1;
int32_t L_2 = __this->___Size_2;
return ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_0)->max_length)), L_1)), L_2));
}
}
// System.Void Mono.Net.Security.BufferOffsetSize::.ctor(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BufferOffsetSize__ctor_mB62BB1F461998563FB6793F509FF26FB79B81955 (BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___offset1, int32_t ___size2, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___buffer0;
if (L_0)
{
goto IL_0014;
}
}
{
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_1);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC263EA29ADF3548CFEBC57B532EED28451A56C10)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&BufferOffsetSize__ctor_mB62BB1F461998563FB6793F509FF26FB79B81955_RuntimeMethod_var)));
}
IL_0014:
{
int32_t L_2 = ___offset1;
if ((((int32_t)L_2) >= ((int32_t)0)))
{
goto IL_0023;
}
}
{
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*)&_stringLiteral544DC80A2A82A08B6321F56F8987CB7E5DEED1C4)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&BufferOffsetSize__ctor_mB62BB1F461998563FB6793F509FF26FB79B81955_RuntimeMethod_var)));
}
IL_0023:
{
int32_t L_4 = ___size2;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_002f;
}
}
{
int32_t L_5 = ___offset1;
int32_t L_6 = ___size2;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7 = ___buffer0;
NullCheck(L_7);
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_5, L_6))) <= ((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))))
{
goto IL_003a;
}
}
IL_002f:
{
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_8 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
NullCheck(L_8);
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3EE5A4671A4E5AEBD31CA5F013A7773DC18ED22B)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&BufferOffsetSize__ctor_mB62BB1F461998563FB6793F509FF26FB79B81955_RuntimeMethod_var)));
}
IL_003a:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = ___buffer0;
__this->___Buffer_0 = L_9;
Il2CppCodeGenWriteBarrier((void**)(&__this->___Buffer_0), (void*)L_9);
int32_t L_10 = ___offset1;
__this->___Offset_1 = L_10;
int32_t L_11 = ___size2;
__this->___Size_2 = L_11;
__this->___Complete_4 = (bool)0;
return;
}
}
// System.String Mono.Net.Security.BufferOffsetSize::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BufferOffsetSize_ToString_m2C7B9A215EDE5C22ED8C51534365E110BB56C083 (BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9F9806FFE6F4A87C47B8928195094F3727EF549C);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = __this->___Offset_1;
int32_t L_1 = L_0;
RuntimeObject* L_2 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_1);
int32_t L_3 = __this->___Size_2;
int32_t L_4 = L_3;
RuntimeObject* L_5 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_4);
String_t* L_6;
L_6 = String_Format_m9499958F4B0BB6089C75760AB647AB3CA4D55806(_stringLiteral9F9806FFE6F4A87C47B8928195094F3727EF549C, L_2, L_5, NULL);
return L_6;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Net.Security.BufferOffsetSize2::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BufferOffsetSize2__ctor_m773DC687399F95F23BE42179B942303C0B52FF07 (BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* __this, int32_t ___size0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___size0;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)L_0);
BufferOffsetSize__ctor_mB62BB1F461998563FB6793F509FF26FB79B81955(__this, L_1, 0, 0, NULL);
int32_t L_2 = ___size0;
__this->___InitialSize_5 = L_2;
return;
}
}
// System.Void Mono.Net.Security.BufferOffsetSize2::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BufferOffsetSize2_Reset_m1B80AE03ED0C2BAC447F3BDEC8F827CEE6053E7F (BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = 0;
V_0 = L_0;
((BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)__this)->___Size_2 = L_0;
int32_t L_1 = V_0;
((BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)__this)->___Offset_1 = L_1;
((BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)__this)->___TotalBytes_3 = 0;
int32_t L_2 = __this->___InitialSize_5;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)L_2);
((BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)__this)->___Buffer_0 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&((BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)__this)->___Buffer_0), (void*)L_3);
((BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)__this)->___Complete_4 = (bool)0;
return;
}
}
// System.Void Mono.Net.Security.BufferOffsetSize2::MakeRoom(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BufferOffsetSize2_MakeRoom_mCE9261D07E745C72E3032A9FDC19FA54FEF0BE28 (BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* __this, int32_t ___size0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_1 = NULL;
{
int32_t L_0;
L_0 = BufferOffsetSize_get_Remaining_mB3CB4287B2AAAD7976374B914E95ABFCE71B1A4E(__this, NULL);
int32_t L_1 = ___size0;
if ((((int32_t)L_0) < ((int32_t)L_1)))
{
goto IL_000a;
}
}
{
return;
}
IL_000a:
{
int32_t L_2 = ___size0;
int32_t L_3;
L_3 = BufferOffsetSize_get_Remaining_mB3CB4287B2AAAD7976374B914E95ABFCE71B1A4E(__this, NULL);
V_0 = ((int32_t)il2cpp_codegen_subtract(L_2, L_3));
int32_t L_4 = ((BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)__this)->___Offset_1;
if (L_4)
{
goto IL_0030;
}
}
{
int32_t L_5 = ((BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)__this)->___Size_2;
if (L_5)
{
goto IL_0030;
}
}
{
int32_t L_6 = ___size0;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)L_6);
((BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)__this)->___Buffer_0 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&((BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)__this)->___Buffer_0), (void*)L_7);
return;
}
IL_0030:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = ((BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)__this)->___Buffer_0;
NullCheck(L_8);
int32_t L_9 = V_0;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add(((int32_t)(((RuntimeArray*)L_8)->max_length)), L_9)));
V_1 = L_10;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = ((BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)__this)->___Buffer_0;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12 = V_1;
NullCheck((RuntimeArray*)L_11);
Array_CopyTo_mFD42E3443AB3B850ED6F19359698E242A08E1BAB((RuntimeArray*)L_11, (RuntimeArray*)L_12, 0, NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_13 = V_1;
((BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)__this)->___Buffer_0 = L_13;
Il2CppCodeGenWriteBarrier((void**)(&((BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)__this)->___Buffer_0), (void*)L_13);
return;
}
}
// System.Void Mono.Net.Security.BufferOffsetSize2::AppendData(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BufferOffsetSize2_AppendData_mA85DD811BF73EB8F153F9DB2668C11E907F258A5 (BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___offset1, int32_t ___size2, const RuntimeMethod* method)
{
{
int32_t L_0 = ___size2;
BufferOffsetSize2_MakeRoom_mCE9261D07E745C72E3032A9FDC19FA54FEF0BE28(__this, L_0, NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___buffer0;
int32_t L_2 = ___offset1;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = ((BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)__this)->___Buffer_0;
int32_t L_4;
L_4 = BufferOffsetSize_get_EndOffset_m114650CE0C422157F8EDCD8C0F1B89C5FFE7F9C9(__this, NULL);
int32_t L_5 = ___size2;
Buffer_BlockCopy_mD8CF7EC96ADA7A542CCA3F3C73510624E10197A9((RuntimeArray*)L_1, L_2, (RuntimeArray*)L_3, L_4, L_5, NULL);
int32_t L_6 = ((BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)__this)->___Size_2;
int32_t L_7 = ___size2;
((BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)__this)->___Size_2 = ((int32_t)il2cpp_codegen_add(L_6, L_7));
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 Mono.Net.Security.AsyncProtocolResult::get_UserResult()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AsyncProtocolResult_get_UserResult_mEDF85928DEE138CA072E0BADB697024616981ABF (AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___U3CUserResultU3Ek__BackingField_0;
return L_0;
}
}
// System.Runtime.ExceptionServices.ExceptionDispatchInfo Mono.Net.Security.AsyncProtocolResult::get_Error()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* AsyncProtocolResult_get_Error_m2A01329BA71151C59E17E3D8812932AD02EF5C05 (AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05* __this, const RuntimeMethod* method)
{
{
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_0 = __this->___U3CErrorU3Ek__BackingField_1;
return L_0;
}
}
// System.Void Mono.Net.Security.AsyncProtocolResult::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncProtocolResult__ctor_m2999944493F7C75F19D5BA3811118ED10A889305 (AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05* __this, int32_t ___result0, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
int32_t L_0 = ___result0;
__this->___U3CUserResultU3Ek__BackingField_0 = L_0;
return;
}
}
// System.Void Mono.Net.Security.AsyncProtocolResult::.ctor(System.Runtime.ExceptionServices.ExceptionDispatchInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncProtocolResult__ctor_m80187A7036019F9768BA1941362CB6785F10E99F (AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05* __this, ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* ___error0, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_0 = ___error0;
__this->___U3CErrorU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CErrorU3Ek__BackingField_1), (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
// Mono.Net.Security.MobileAuthenticatedStream Mono.Net.Security.AsyncProtocolRequest::get_Parent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* AsyncProtocolRequest_get_Parent_m20DA5526115969E9D32B61999A044FF0618AFF92 (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* __this, const RuntimeMethod* method)
{
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_0 = __this->___U3CParentU3Ek__BackingField_0;
return L_0;
}
}
// System.Boolean Mono.Net.Security.AsyncProtocolRequest::get_RunSynchronously()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AsyncProtocolRequest_get_RunSynchronously_m5E10561209866EE44A27D35A1F4762008063B4BF (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___U3CRunSynchronouslyU3Ek__BackingField_1;
return L_0;
}
}
// System.String Mono.Net.Security.AsyncProtocolRequest::get_Name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AsyncProtocolRequest_get_Name_m3D5DC63A43FFCA24B1E5A9825B76BD391D790F84 (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* __this, const RuntimeMethod* method)
{
{
Type_t* L_0;
L_0 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(__this, NULL);
NullCheck(L_0);
String_t* L_1;
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_0);
return L_1;
}
}
// System.Int32 Mono.Net.Security.AsyncProtocolRequest::get_UserResult()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AsyncProtocolRequest_get_UserResult_mA77AFFB0D9A5FD69E5EEC51CB0F80C25E31D0759 (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___U3CUserResultU3Ek__BackingField_2;
return L_0;
}
}
// System.Void Mono.Net.Security.AsyncProtocolRequest::set_UserResult(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncProtocolRequest_set_UserResult_mD84274B3348783A6E03B9000BB82E0737E1EC974 (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->___U3CUserResultU3Ek__BackingField_2 = L_0;
return;
}
}
// System.Void Mono.Net.Security.AsyncProtocolRequest::.ctor(Mono.Net.Security.MobileAuthenticatedStream,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncProtocolRequest__ctor_mDF1F675DC3E001867DFFD9B1C14CF5559BE3035A (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* __this, MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* ___parent0, bool ___sync1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
NullCheck(L_0);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_0, NULL);
__this->___locker_6 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___locker_6), (void*)L_0);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_1 = ___parent0;
__this->___U3CParentU3Ek__BackingField_0 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CParentU3Ek__BackingField_0), (void*)L_1);
bool L_2 = ___sync1;
__this->___U3CRunSynchronouslyU3Ek__BackingField_1 = L_2;
return;
}
}
// System.Void Mono.Net.Security.AsyncProtocolRequest::RequestRead(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncProtocolRequest_RequestRead_mD55DC015A50E42EF2FA7DB75FE1E7E3FCFA3CFA0 (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* __this, int32_t ___size0, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
bool V_1 = false;
{
RuntimeObject* L_0 = __this->___locker_6;
V_0 = L_0;
V_1 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0021:
{// begin finally (depth: 1)
{
bool L_1 = V_1;
if (!L_1)
{
goto IL_002a;
}
}
{
RuntimeObject* L_2 = V_0;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_2, NULL);
}
IL_002a:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
RuntimeObject* L_3 = V_0;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_3, (&V_1), NULL);
int32_t L_4 = __this->___RequestedSize_4;
int32_t L_5 = ___size0;
__this->___RequestedSize_4 = ((int32_t)il2cpp_codegen_add(L_4, L_5));
goto IL_002b;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_002b:
{
return;
}
}
// System.Void Mono.Net.Security.AsyncProtocolRequest::RequestWrite()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncProtocolRequest_RequestWrite_mA6AB8ACEA16A14CD6A232DA256C417CD183EE69F (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* __this, const RuntimeMethod* method)
{
{
__this->___WriteRequested_5 = 1;
return;
}
}
// System.Threading.Tasks.Task`1<Mono.Net.Security.AsyncProtocolResult> Mono.Net.Security.AsyncProtocolRequest::StartOperation(System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t7B91A92D06E8BCB69911B6822DD99220DDB735EE* AsyncProtocolRequest_StartOperation_m3BFF3E84B25BBE13881D3592FF4CAEC3736FBEDD (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* __this, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_Create_m7C55888A44224AB0957E19F73B82D5140ED3ADE7_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__23_t9FFB39587AAED5C56B39C31D1D2C91BF10B7D2A8_m674D6C69CCA292AD5498A90ECFFA86F4F8D8D16D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_get_Task_mA3EE3DEF497EE0C4BCD6BE76F8C4BCD2FBE09BA6_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_tB85AB2AF366A9742C159DD6FBD3FE38EDD13543B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CStartOperationU3Ed__23_t9FFB39587AAED5C56B39C31D1D2C91BF10B7D2A8 V_0;
memset((&V_0), 0, sizeof(V_0));
{
(&V_0)->___U3CU3E4__this_2 = __this;
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___U3CU3E4__this_2), (void*)__this);
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_0 = ___cancellationToken0;
(&V_0)->___cancellationToken_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)&(((&(&V_0)->___cancellationToken_3))->____source_0), (void*)NULL);
il2cpp_codegen_runtime_class_init_inline(AsyncTaskMethodBuilder_1_tB85AB2AF366A9742C159DD6FBD3FE38EDD13543B_il2cpp_TypeInfo_var);
AsyncTaskMethodBuilder_1_tB85AB2AF366A9742C159DD6FBD3FE38EDD13543B L_1;
L_1 = AsyncTaskMethodBuilder_1_Create_m7C55888A44224AB0957E19F73B82D5140ED3ADE7(AsyncTaskMethodBuilder_1_Create_m7C55888A44224AB0957E19F73B82D5140ED3ADE7_RuntimeMethod_var);
(&V_0)->___U3CU3Et__builder_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)&((&(((&(&V_0)->___U3CU3Et__builder_1))->___m_coreState_1))->___m_stateMachine_0), (void*)NULL);
#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);
AsyncTaskMethodBuilder_1_tB85AB2AF366A9742C159DD6FBD3FE38EDD13543B* L_2 = (&(&V_0)->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__23_t9FFB39587AAED5C56B39C31D1D2C91BF10B7D2A8_m674D6C69CCA292AD5498A90ECFFA86F4F8D8D16D(L_2, (&V_0), AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__23_t9FFB39587AAED5C56B39C31D1D2C91BF10B7D2A8_m674D6C69CCA292AD5498A90ECFFA86F4F8D8D16D_RuntimeMethod_var);
AsyncTaskMethodBuilder_1_tB85AB2AF366A9742C159DD6FBD3FE38EDD13543B* L_3 = (&(&V_0)->___U3CU3Et__builder_1);
Task_1_t7B91A92D06E8BCB69911B6822DD99220DDB735EE* L_4;
L_4 = AsyncTaskMethodBuilder_1_get_Task_mA3EE3DEF497EE0C4BCD6BE76F8C4BCD2FBE09BA6(L_3, AsyncTaskMethodBuilder_1_get_Task_mA3EE3DEF497EE0C4BCD6BE76F8C4BCD2FBE09BA6_RuntimeMethod_var);
return L_4;
}
}
// System.Threading.Tasks.Task Mono.Net.Security.AsyncProtocolRequest::ProcessOperation(System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* AsyncProtocolRequest_ProcessOperation_m7210D0C2351D69FF9FF798860C85FAA7F91C050F (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* __this, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_Start_TisU3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786_m73AF670DABBD2788FF72BC1EDABC58043CEC6796_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786 V_0;
memset((&V_0), 0, sizeof(V_0));
{
(&V_0)->___U3CU3E4__this_3 = __this;
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___U3CU3E4__this_3), (void*)__this);
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_0 = ___cancellationToken0;
(&V_0)->___cancellationToken_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)&(((&(&V_0)->___cancellationToken_2))->____source_0), (void*)NULL);
il2cpp_codegen_runtime_class_init_inline(AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06_il2cpp_TypeInfo_var);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06 L_1;
L_1 = AsyncTaskMethodBuilder_Create_m84CBB9FB50A2D132B0A549652557CBE01867A82B(NULL);
(&V_0)->___U3CU3Et__builder_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&(&V_0)->___U3CU3Et__builder_1))->___m_builder_1))->___m_coreState_1))->___m_stateMachine_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&(&V_0)->___U3CU3Et__builder_1))->___m_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_builder_1))->___m_task_2), (void*)NULL);
#endif
(&V_0)->___U3CU3E1__state_0 = (-1);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_2 = (&(&V_0)->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_Start_TisU3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786_m73AF670DABBD2788FF72BC1EDABC58043CEC6796(L_2, (&V_0), AsyncTaskMethodBuilder_Start_TisU3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786_m73AF670DABBD2788FF72BC1EDABC58043CEC6796_RuntimeMethod_var);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_3 = (&(&V_0)->___U3CU3Et__builder_1);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_4;
L_4 = AsyncTaskMethodBuilder_get_Task_mE9125D5F8B96F26D1BA5A5347ED82669521C7F9E(L_3, NULL);
return L_4;
}
}
// System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>> Mono.Net.Security.AsyncProtocolRequest::InnerRead(System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* AsyncProtocolRequest_InnerRead_mF418FD1D9403BFD08A44D00EEAF8E9F3ECD25A02 (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* __this, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_Create_mD6BC27D1E6350ECB9B61238E38D4C15C8CE96802_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__25_t05729A3E67E2FF3B23435B02B158BDB2F3C7C84E_mE716BD9AA000EF73BFAB4F1FFD98494E9E32FA5C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_get_Task_mB36BC37F05CC1BD3EDB9EC66B9BBEA7DE33F3D03_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_t7BA09CA1BB279AA706D98A618EE11038FD1985F7_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CInnerReadU3Ed__25_t05729A3E67E2FF3B23435B02B158BDB2F3C7C84E V_0;
memset((&V_0), 0, sizeof(V_0));
{
(&V_0)->___U3CU3E4__this_2 = __this;
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___U3CU3E4__this_2), (void*)__this);
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_0 = ___cancellationToken0;
(&V_0)->___cancellationToken_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)&(((&(&V_0)->___cancellationToken_3))->____source_0), (void*)NULL);
il2cpp_codegen_runtime_class_init_inline(AsyncTaskMethodBuilder_1_t7BA09CA1BB279AA706D98A618EE11038FD1985F7_il2cpp_TypeInfo_var);
AsyncTaskMethodBuilder_1_t7BA09CA1BB279AA706D98A618EE11038FD1985F7 L_1;
L_1 = AsyncTaskMethodBuilder_1_Create_mD6BC27D1E6350ECB9B61238E38D4C15C8CE96802(AsyncTaskMethodBuilder_1_Create_mD6BC27D1E6350ECB9B61238E38D4C15C8CE96802_RuntimeMethod_var);
(&V_0)->___U3CU3Et__builder_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)&((&(((&(&V_0)->___U3CU3Et__builder_1))->___m_coreState_1))->___m_stateMachine_0), (void*)NULL);
#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);
AsyncTaskMethodBuilder_1_t7BA09CA1BB279AA706D98A618EE11038FD1985F7* L_2 = (&(&V_0)->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__25_t05729A3E67E2FF3B23435B02B158BDB2F3C7C84E_mE716BD9AA000EF73BFAB4F1FFD98494E9E32FA5C(L_2, (&V_0), AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__25_t05729A3E67E2FF3B23435B02B158BDB2F3C7C84E_mE716BD9AA000EF73BFAB4F1FFD98494E9E32FA5C_RuntimeMethod_var);
AsyncTaskMethodBuilder_1_t7BA09CA1BB279AA706D98A618EE11038FD1985F7* L_3 = (&(&V_0)->___U3CU3Et__builder_1);
Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* L_4;
L_4 = AsyncTaskMethodBuilder_1_get_Task_mB36BC37F05CC1BD3EDB9EC66B9BBEA7DE33F3D03(L_3, AsyncTaskMethodBuilder_1_get_Task_mB36BC37F05CC1BD3EDB9EC66B9BBEA7DE33F3D03_RuntimeMethod_var);
return L_4;
}
}
// System.String Mono.Net.Security.AsyncProtocolRequest::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AsyncProtocolRequest_ToString_m76F3449064B096829BE4288E38F10DF76B124F1F (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCEE4BEC9969079A1DA2F65E0F044E4FF1AF5EEAE);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0;
L_0 = AsyncProtocolRequest_get_Name_m3D5DC63A43FFCA24B1E5A9825B76BD391D790F84(__this, NULL);
String_t* L_1;
L_1 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(_stringLiteralCEE4BEC9969079A1DA2F65E0F044E4FF1AF5EEAE, 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 Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CStartOperationU3Ed__23_MoveNext_mDE591A3806D9523FC8D2E26ED510CEE7963F8FF2 (U3CStartOperationU3Ed__23_t9FFB39587AAED5C56B39C31D1D2C91BF10B7D2A8* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CStartOperationU3Ed__23_t9FFB39587AAED5C56B39C31D1D2C91BF10B7D2A8_m630A9D5428BCB94BCD95201FE4341800E453300F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_SetResult_mC456CDE030D0195F4C7D57C9CF7CC83EB532D6EA_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* V_1 = NULL;
AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05* V_2 = NULL;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 V_3;
memset((&V_3), 0, sizeof(V_3));
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C V_4;
memset((&V_4), 0, sizeof(V_4));
Exception_t* V_5 = NULL;
Exception_t* V_6 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 2> __active_exceptions;
{
int32_t L_0 = __this->___U3CU3E1__state_0;
V_0 = L_0;
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* 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_0026_1;
}
}
{
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_3 = V_1;
NullCheck(L_3);
int32_t* L_4 = (&L_3->___Started_3);
int32_t L_5;
L_5 = Interlocked_CompareExchange_m1B1A89142CF77793A6B396019B98265E6EE306FA(L_4, 1, 0, NULL);
if (!L_5)
{
goto IL_0026_1;
}
}
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_6 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_6);
InvalidOperationException__ctor_m1BE9BD198B904AA1D94F4B10DA88077DFD44B7A5(L_6, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CStartOperationU3Ed__23_MoveNext_mDE591A3806D9523FC8D2E26ED510CEE7963F8FF2_RuntimeMethod_var)));
}
IL_0026_1:
{
}
try
{// begin try (depth: 2)
{
int32_t L_7 = V_0;
if (!L_7)
{
goto IL_006f_2;
}
}
{
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_8 = V_1;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_9 = __this->___cancellationToken_3;
NullCheck(L_8);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_10;
L_10 = AsyncProtocolRequest_ProcessOperation_m7210D0C2351D69FF9FF798860C85FAA7F91C050F(L_8, L_9, NULL);
NullCheck(L_10);
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C L_11;
L_11 = Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4(L_10, (bool)0, NULL);
V_4 = L_11;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_12;
L_12 = ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline((&V_4), NULL);
V_3 = L_12;
bool L_13;
L_13 = ConfiguredTaskAwaiter_get_IsCompleted_mB189574F29658A59CC4C890B70538A9C5E835850((&V_3), NULL);
if (L_13)
{
goto IL_008b_2;
}
}
{
int32_t L_14 = 0;
V_0 = L_14;
__this->___U3CU3E1__state_0 = L_14;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_15 = V_3;
__this->___U3CU3Eu__1_4 = L_15;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3Eu__1_4))->___m_task_0), (void*)NULL);
AsyncTaskMethodBuilder_1_tB85AB2AF366A9742C159DD6FBD3FE38EDD13543B* L_16 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CStartOperationU3Ed__23_t9FFB39587AAED5C56B39C31D1D2C91BF10B7D2A8_m630A9D5428BCB94BCD95201FE4341800E453300F(L_16, (&V_3), __this, AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CStartOperationU3Ed__23_t9FFB39587AAED5C56B39C31D1D2C91BF10B7D2A8_m630A9D5428BCB94BCD95201FE4341800E453300F_RuntimeMethod_var);
goto IL_00e4;
}
IL_006f_2:
{
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_17 = __this->___U3CU3Eu__1_4;
V_3 = L_17;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* L_18 = (&__this->___U3CU3Eu__1_4);
il2cpp_codegen_initobj(L_18, sizeof(ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618));
int32_t L_19 = (-1);
V_0 = L_19;
__this->___U3CU3E1__state_0 = L_19;
}
IL_008b_2:
{
ConfiguredTaskAwaiter_GetResult_mD51FDD775D0CF7511FEE2B6C144DB003DE73AC26((&V_3), NULL);
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_20 = V_1;
NullCheck(L_20);
int32_t L_21;
L_21 = AsyncProtocolRequest_get_UserResult_mA77AFFB0D9A5FD69E5EEC51CB0F80C25E31D0759_inline(L_20, NULL);
AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05* L_22 = (AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05*)il2cpp_codegen_object_new(AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05_il2cpp_TypeInfo_var);
NullCheck(L_22);
AsyncProtocolResult__ctor_m2999944493F7C75F19D5BA3811118ED10A889305(L_22, L_21, NULL);
V_2 = L_22;
goto IL_00d0;
}
}// 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_00a0_1;
}
throw e;
}
CATCH_00a0_1:
{// begin catch(System.Exception)
V_5 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_23 = V_1;
NullCheck(L_23);
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_24;
L_24 = AsyncProtocolRequest_get_Parent_m20DA5526115969E9D32B61999A044FF0618AFF92_inline(L_23, NULL);
Exception_t* L_25 = V_5;
NullCheck(L_24);
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_26;
L_26 = MobileAuthenticatedStream_SetException_m490704BA8728AB01E7BA158FE545FD4D7C080448(L_24, L_25, NULL);
AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05* L_27 = (AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05_il2cpp_TypeInfo_var)));
NullCheck(L_27);
AsyncProtocolResult__ctor_m80187A7036019F9768BA1941362CB6785F10E99F(L_27, L_26, NULL);
V_2 = L_27;
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_00d0;
}// end catch (depth: 2)
}// 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_00b7;
}
throw e;
}
CATCH_00b7:
{// begin catch(System.Exception)
V_6 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
__this->___U3CU3E1__state_0 = ((int32_t)-2);
AsyncTaskMethodBuilder_1_tB85AB2AF366A9742C159DD6FBD3FE38EDD13543B* L_28 = (&__this->___U3CU3Et__builder_1);
Exception_t* L_29 = V_6;
AsyncTaskMethodBuilder_1_SetException_mE94B9EBB0129A46F72DB88FA5170082850D5B4BE(L_28, L_29, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AsyncTaskMethodBuilder_1_SetException_mE94B9EBB0129A46F72DB88FA5170082850D5B4BE_RuntimeMethod_var)));
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_00e4;
}// end catch (depth: 1)
IL_00d0:
{
__this->___U3CU3E1__state_0 = ((int32_t)-2);
AsyncTaskMethodBuilder_1_tB85AB2AF366A9742C159DD6FBD3FE38EDD13543B* L_30 = (&__this->___U3CU3Et__builder_1);
AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05* L_31 = V_2;
AsyncTaskMethodBuilder_1_SetResult_mC456CDE030D0195F4C7D57C9CF7CC83EB532D6EA(L_30, L_31, AsyncTaskMethodBuilder_1_SetResult_mC456CDE030D0195F4C7D57C9CF7CC83EB532D6EA_RuntimeMethod_var);
}
IL_00e4:
{
return;
}
}
IL2CPP_EXTERN_C void U3CStartOperationU3Ed__23_MoveNext_mDE591A3806D9523FC8D2E26ED510CEE7963F8FF2_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
U3CStartOperationU3Ed__23_t9FFB39587AAED5C56B39C31D1D2C91BF10B7D2A8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<U3CStartOperationU3Ed__23_t9FFB39587AAED5C56B39C31D1D2C91BF10B7D2A8*>(__this + _offset);
U3CStartOperationU3Ed__23_MoveNext_mDE591A3806D9523FC8D2E26ED510CEE7963F8FF2(_thisAdjusted, method);
}
// System.Void Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CStartOperationU3Ed__23_SetStateMachine_mA0C8C029457FAAE036C6098FDC66C98574D0BD03 (U3CStartOperationU3Ed__23_t9FFB39587AAED5C56B39C31D1D2C91BF10B7D2A8* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_SetStateMachine_mC7F04B94429D5A3763256D073981D5A2F01FFE65_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
AsyncTaskMethodBuilder_1_tB85AB2AF366A9742C159DD6FBD3FE38EDD13543B* L_0 = (&__this->___U3CU3Et__builder_1);
RuntimeObject* L_1 = ___stateMachine0;
AsyncTaskMethodBuilder_1_SetStateMachine_mC7F04B94429D5A3763256D073981D5A2F01FFE65(L_0, L_1, AsyncTaskMethodBuilder_1_SetStateMachine_mC7F04B94429D5A3763256D073981D5A2F01FFE65_RuntimeMethod_var);
return;
}
}
IL2CPP_EXTERN_C void U3CStartOperationU3Ed__23_SetStateMachine_mA0C8C029457FAAE036C6098FDC66C98574D0BD03_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
U3CStartOperationU3Ed__23_t9FFB39587AAED5C56B39C31D1D2C91BF10B7D2A8* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<U3CStartOperationU3Ed__23_t9FFB39587AAED5C56B39C31D1D2C91BF10B7D2A8*>(__this + _offset);
U3CStartOperationU3Ed__23_SetStateMachine_mA0C8C029457FAAE036C6098FDC66C98574D0BD03(_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 Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CProcessOperationU3Ed__24_MoveNext_mA73F0FD80CE65D2E3E12390E49E3F34CFF47E98B (U3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5_TisU3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786_m40DE76AFDF3B1422DDE3F73C88263FAEE9B2AD66_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786_m89765A85617A3D1007CBFD188056340092F4252D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConfiguredTaskAwaitable_1_GetAwaiter_m4FE08BCFB9AA694193BDCD5B5C12F5271A1E88F5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConfiguredTaskAwaiter_GetResult_mE648AD496FFAD4F2E5CFFA8DA38B365FDD634EFD_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConfiguredTaskAwaiter_get_IsCompleted_m943014E2A3A7AEEF6B38F9DA31887B07DC417131_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_1_ConfigureAwait_m3E964062746BC63E91EA877F7B826868CA306DDE_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* V_1 = NULL;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 V_2;
memset((&V_2), 0, sizeof(V_2));
ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5 V_3;
memset((&V_3), 0, sizeof(V_3));
ConfiguredTaskAwaitable_1_tEC8120422100780C8C0025D1B994C33B30C4AD71 V_4;
memset((&V_4), 0, sizeof(V_4));
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 V_5;
memset((&V_5), 0, sizeof(V_5));
int32_t V_6 = 0;
int32_t V_7 = 0;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 V_8;
memset((&V_8), 0, sizeof(V_8));
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C V_9;
memset((&V_9), 0, sizeof(V_9));
Exception_t* V_10 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 2> __active_exceptions;
{
int32_t L_0 = __this->___U3CU3E1__state_0;
V_0 = L_0;
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_1 = __this->___U3CU3E4__this_3;
V_1 = L_1;
}
try
{// begin try (depth: 1)
{
int32_t L_2 = V_0;
if (!L_2)
{
goto IL_0077_1;
}
}
{
int32_t L_3 = V_0;
if ((((int32_t)L_3) == ((int32_t)1)))
{
goto IL_017c_1;
}
}
{
__this->___U3CstatusU3E5__2_4 = 0;
goto IL_01ac_1;
}
IL_0024_1:
{
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED* L_4 = (&__this->___cancellationToken_2);
CancellationToken_ThrowIfCancellationRequested_mB9D952DC6E96FB6E0595FC8E88D3133CDA4382C3(L_4, NULL);
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_5 = V_1;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_6 = __this->___cancellationToken_2;
NullCheck(L_5);
Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* L_7;
L_7 = AsyncProtocolRequest_InnerRead_mF418FD1D9403BFD08A44D00EEAF8E9F3ECD25A02(L_5, L_6, NULL);
NullCheck(L_7);
ConfiguredTaskAwaitable_1_tEC8120422100780C8C0025D1B994C33B30C4AD71 L_8;
L_8 = Task_1_ConfigureAwait_m3E964062746BC63E91EA877F7B826868CA306DDE(L_7, (bool)0, Task_1_ConfigureAwait_m3E964062746BC63E91EA877F7B826868CA306DDE_RuntimeMethod_var);
V_4 = L_8;
ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5 L_9;
L_9 = ConfiguredTaskAwaitable_1_GetAwaiter_m4FE08BCFB9AA694193BDCD5B5C12F5271A1E88F5_inline((&V_4), ConfiguredTaskAwaitable_1_GetAwaiter_m4FE08BCFB9AA694193BDCD5B5C12F5271A1E88F5_RuntimeMethod_var);
V_3 = L_9;
bool L_10;
L_10 = ConfiguredTaskAwaiter_get_IsCompleted_m943014E2A3A7AEEF6B38F9DA31887B07DC417131((&V_3), ConfiguredTaskAwaiter_get_IsCompleted_m943014E2A3A7AEEF6B38F9DA31887B07DC417131_RuntimeMethod_var);
if (L_10)
{
goto IL_0093_1;
}
}
{
int32_t L_11 = 0;
V_0 = L_11;
__this->___U3CU3E1__state_0 = L_11;
ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5 L_12 = V_3;
__this->___U3CU3Eu__1_6 = L_12;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3Eu__1_6))->___m_task_0), (void*)NULL);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_13 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5_TisU3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786_m40DE76AFDF3B1422DDE3F73C88263FAEE9B2AD66(L_13, (&V_3), __this, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5_TisU3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786_m40DE76AFDF3B1422DDE3F73C88263FAEE9B2AD66_RuntimeMethod_var);
goto IL_01e6;
}
IL_0077_1:
{
ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5 L_14 = __this->___U3CU3Eu__1_6;
V_3 = L_14;
ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5* L_15 = (&__this->___U3CU3Eu__1_6);
il2cpp_codegen_initobj(L_15, sizeof(ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5));
int32_t L_16 = (-1);
V_0 = L_16;
__this->___U3CU3E1__state_0 = L_16;
}
IL_0093_1:
{
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_17;
L_17 = ConfiguredTaskAwaiter_GetResult_mE648AD496FFAD4F2E5CFFA8DA38B365FDD634EFD((&V_3), ConfiguredTaskAwaiter_GetResult_mE648AD496FFAD4F2E5CFFA8DA38B365FDD634EFD_RuntimeMethod_var);
V_2 = L_17;
bool L_18;
L_18 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline((&V_2), Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
if (!L_18)
{
goto IL_00ee_1;
}
}
{
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_19 = V_2;
V_5 = L_19;
V_6 = 0;
int32_t L_20;
L_20 = Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_inline((&V_5), Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_RuntimeMethod_var);
int32_t L_21 = V_6;
bool L_22;
L_22 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline((&V_5), Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
if (!((int32_t)(((((int32_t)L_20) == ((int32_t)L_21))? 1 : 0)&(int32_t)L_22)))
{
goto IL_00c8_1;
}
}
{
__this->___U3CstatusU3E5__2_4 = 2;
goto IL_00ee_1;
}
IL_00c8_1:
{
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_23 = V_2;
V_5 = L_23;
V_6 = 0;
int32_t L_24;
L_24 = Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_inline((&V_5), Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_RuntimeMethod_var);
int32_t L_25 = V_6;
bool L_26;
L_26 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline((&V_5), Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
if (!((int32_t)(((((int32_t)L_24) < ((int32_t)L_25))? 1 : 0)&(int32_t)L_26)))
{
goto IL_00ee_1;
}
}
{
IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910* L_27 = (IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910_il2cpp_TypeInfo_var)));
NullCheck(L_27);
IOException__ctor_mE0612A16064F93C7EBB468D6874777BD70CB50CA(L_27, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8FA9CB51CDB9C5AF33B0C761DB639980514F4D72)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_27, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CProcessOperationU3Ed__24_MoveNext_mA73F0FD80CE65D2E3E12390E49E3F34CFF47E98B_RuntimeMethod_var)));
}
IL_00ee_1:
{
int32_t L_28 = __this->___U3CstatusU3E5__2_4;
V_7 = L_28;
int32_t L_29 = V_7;
if ((!(((uint32_t)L_29) <= ((uint32_t)2))))
{
goto IL_0116_1;
}
}
{
}
try
{// begin try (depth: 2)
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_30 = V_1;
int32_t L_31 = __this->___U3CstatusU3E5__2_4;
NullCheck(L_30);
int32_t L_32;
L_32 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(4 /* Mono.Net.Security.AsyncOperationStatus Mono.Net.Security.AsyncProtocolRequest::Run(Mono.Net.Security.AsyncOperationStatus) */, L_30, L_31);
__this->___U3CnewStatusU3E5__3_5 = L_32;
goto IL_011c_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_0110_1;
}
throw e;
}
CATCH_0110_1:
{// begin catch(System.Exception)
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_il2cpp_TypeInfo_var)));
Exception_t* L_33;
L_33 = MobileAuthenticatedStream_GetSSPIException_m04F38FF55AEEC19087840F3A722D2C225050F427(((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_33, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CProcessOperationU3Ed__24_MoveNext_mA73F0FD80CE65D2E3E12390E49E3F34CFF47E98B_RuntimeMethod_var)));
}// end catch (depth: 2)
IL_0116_1:
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_34 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_34);
InvalidOperationException__ctor_m1BE9BD198B904AA1D94F4B10DA88077DFD44B7A5(L_34, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_34, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CProcessOperationU3Ed__24_MoveNext_mA73F0FD80CE65D2E3E12390E49E3F34CFF47E98B_RuntimeMethod_var)));
}
IL_011c_1:
{
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_35 = V_1;
NullCheck(L_35);
int32_t* L_36 = (&L_35->___WriteRequested_5);
int32_t L_37;
L_37 = Interlocked_Exchange_m1D23CC1BEB47E20FA336837BF97C292AE6B17629(L_36, 0, NULL);
if (!L_37)
{
goto IL_01a0_1;
}
}
{
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_38 = V_1;
NullCheck(L_38);
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_39;
L_39 = AsyncProtocolRequest_get_Parent_m20DA5526115969E9D32B61999A044FF0618AFF92_inline(L_38, NULL);
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_40 = V_1;
NullCheck(L_40);
bool L_41;
L_41 = AsyncProtocolRequest_get_RunSynchronously_m5E10561209866EE44A27D35A1F4762008063B4BF_inline(L_40, NULL);
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_42 = __this->___cancellationToken_2;
NullCheck(L_39);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_43;
L_43 = MobileAuthenticatedStream_InnerWrite_m137287DEDB6C2BC5E8DDDAC999787FA5A0B4B570(L_39, L_41, L_42, NULL);
NullCheck(L_43);
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C L_44;
L_44 = Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4(L_43, (bool)0, NULL);
V_9 = L_44;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_45;
L_45 = ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline((&V_9), NULL);
V_8 = L_45;
bool L_46;
L_46 = ConfiguredTaskAwaiter_get_IsCompleted_mB189574F29658A59CC4C890B70538A9C5E835850((&V_8), NULL);
if (L_46)
{
goto IL_0199_1;
}
}
{
int32_t L_47 = 1;
V_0 = L_47;
__this->___U3CU3E1__state_0 = L_47;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_48 = V_8;
__this->___U3CU3Eu__2_7 = L_48;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3Eu__2_7))->___m_task_0), (void*)NULL);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_49 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786_m89765A85617A3D1007CBFD188056340092F4252D(L_49, (&V_8), __this, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786_m89765A85617A3D1007CBFD188056340092F4252D_RuntimeMethod_var);
goto IL_01e6;
}
IL_017c_1:
{
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_50 = __this->___U3CU3Eu__2_7;
V_8 = L_50;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* L_51 = (&__this->___U3CU3Eu__2_7);
il2cpp_codegen_initobj(L_51, sizeof(ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618));
int32_t L_52 = (-1);
V_0 = L_52;
__this->___U3CU3E1__state_0 = L_52;
}
IL_0199_1:
{
ConfiguredTaskAwaiter_GetResult_mD51FDD775D0CF7511FEE2B6C144DB003DE73AC26((&V_8), NULL);
}
IL_01a0_1:
{
int32_t L_53 = __this->___U3CnewStatusU3E5__3_5;
__this->___U3CstatusU3E5__2_4 = L_53;
}
IL_01ac_1:
{
int32_t L_54 = __this->___U3CstatusU3E5__2_4;
if ((!(((uint32_t)L_54) == ((uint32_t)3))))
{
goto IL_0024_1;
}
}
{
goto IL_01d3;
}
}// 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_01ba;
}
throw e;
}
CATCH_01ba:
{// begin catch(System.Exception)
V_10 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
__this->___U3CU3E1__state_0 = ((int32_t)-2);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_55 = (&__this->___U3CU3Et__builder_1);
Exception_t* L_56 = V_10;
AsyncTaskMethodBuilder_SetException_mBE41863F0571E0177A15731294087DE45E1FC10B(L_55, L_56, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_01e6;
}// end catch (depth: 1)
IL_01d3:
{
__this->___U3CU3E1__state_0 = ((int32_t)-2);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_57 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_SetResult_m76D8B84F0068257C1823B1200B00E58E0C8DDDDE(L_57, NULL);
}
IL_01e6:
{
return;
}
}
IL2CPP_EXTERN_C void U3CProcessOperationU3Ed__24_MoveNext_mA73F0FD80CE65D2E3E12390E49E3F34CFF47E98B_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
U3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<U3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786*>(__this + _offset);
U3CProcessOperationU3Ed__24_MoveNext_mA73F0FD80CE65D2E3E12390E49E3F34CFF47E98B(_thisAdjusted, method);
}
// System.Void Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CProcessOperationU3Ed__24_SetStateMachine_mA9912D191EE4A99536A61DEED059DC89B765A823 (U3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
{
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_0 = (&__this->___U3CU3Et__builder_1);
RuntimeObject* L_1 = ___stateMachine0;
AsyncTaskMethodBuilder_SetStateMachine_mE52B5B6B076025592A7AB462E3D26FA434AEB795(L_0, L_1, NULL);
return;
}
}
IL2CPP_EXTERN_C void U3CProcessOperationU3Ed__24_SetStateMachine_mA9912D191EE4A99536A61DEED059DC89B765A823_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
U3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<U3CProcessOperationU3Ed__24_tA9E46E01B0A6D159D5008FF6F6B2483CAC3D9786*>(__this + _offset);
U3CProcessOperationU3Ed__24_SetStateMachine_mA9912D191EE4A99536A61DEED059DC89B765A823(_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 Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CInnerReadU3Ed__25_MoveNext_mC4567E370C71DA9DA0F704C570308D106D4DDB2C (U3CInnerReadU3Ed__25_t05729A3E67E2FF3B23435B02B158BDB2F3C7C84E* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80_TisU3CInnerReadU3Ed__25_t05729A3E67E2FF3B23435B02B158BDB2F3C7C84E_m1375ABD6CBB63DE8EF7F17F9B050D81DDE993851_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_SetResult_m7814370659E8E3550E3A679C1F2F516592198487_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConfiguredTaskAwaitable_1_GetAwaiter_m7A77B1981FEC19CC7E1570EDC3F16AC5C14B4439_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConfiguredTaskAwaiter_GetResult_mF1FF6CBD66A3F581D413793BA8C2AF58B707D9CC_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConfiguredTaskAwaiter_get_IsCompleted_mD70263ED42C8E379EE20DBC2F218C3E629B4B4D3_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_1_ConfigureAwait_m8203F4D13209C12845066A383E5B850D0486B209_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* V_1 = NULL;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 V_2;
memset((&V_2), 0, sizeof(V_2));
int32_t V_3 = 0;
int32_t V_4 = 0;
ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80 V_5;
memset((&V_5), 0, sizeof(V_5));
ConfiguredTaskAwaitable_1_t5186C81524388C1718E9AC37792D8771A443417A V_6;
memset((&V_6), 0, sizeof(V_6));
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 V_7;
memset((&V_7), 0, sizeof(V_7));
int32_t V_8 = 0;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 V_9;
memset((&V_9), 0, sizeof(V_9));
Exception_t* V_10 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
U3CInnerReadU3Ed__25_t05729A3E67E2FF3B23435B02B158BDB2F3C7C84E* G_B12_0 = NULL;
U3CInnerReadU3Ed__25_t05729A3E67E2FF3B23435B02B158BDB2F3C7C84E* G_B11_0 = NULL;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 G_B13_0;
memset((&G_B13_0), 0, sizeof(G_B13_0));
U3CInnerReadU3Ed__25_t05729A3E67E2FF3B23435B02B158BDB2F3C7C84E* G_B13_1 = NULL;
{
int32_t L_0 = __this->___U3CU3E1__state_0;
V_0 = L_0;
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* 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_008f_1;
}
}
{
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_3 = (&__this->___U3CtotalReadU3E5__2_4);
il2cpp_codegen_initobj(L_3, sizeof(Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28));
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_4 = V_1;
NullCheck(L_4);
int32_t* L_5 = (&L_4->___RequestedSize_4);
int32_t L_6;
L_6 = Interlocked_Exchange_m1D23CC1BEB47E20FA336837BF97C292AE6B17629(L_5, 0, NULL);
__this->___U3CrequestedSizeU3E5__3_5 = L_6;
goto IL_0133_1;
}
IL_0034_1:
{
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_7 = V_1;
NullCheck(L_7);
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_8;
L_8 = AsyncProtocolRequest_get_Parent_m20DA5526115969E9D32B61999A044FF0618AFF92_inline(L_7, NULL);
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_9 = V_1;
NullCheck(L_9);
bool L_10;
L_10 = AsyncProtocolRequest_get_RunSynchronously_m5E10561209866EE44A27D35A1F4762008063B4BF_inline(L_9, NULL);
int32_t L_11 = __this->___U3CrequestedSizeU3E5__3_5;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_12 = __this->___cancellationToken_3;
NullCheck(L_8);
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_13;
L_13 = MobileAuthenticatedStream_InnerRead_m62766E47172B5468B6934BED507A4EF4054396ED(L_8, L_10, L_11, L_12, NULL);
NullCheck(L_13);
ConfiguredTaskAwaitable_1_t5186C81524388C1718E9AC37792D8771A443417A L_14;
L_14 = Task_1_ConfigureAwait_m8203F4D13209C12845066A383E5B850D0486B209(L_13, (bool)0, Task_1_ConfigureAwait_m8203F4D13209C12845066A383E5B850D0486B209_RuntimeMethod_var);
V_6 = L_14;
ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80 L_15;
L_15 = ConfiguredTaskAwaitable_1_GetAwaiter_m7A77B1981FEC19CC7E1570EDC3F16AC5C14B4439_inline((&V_6), ConfiguredTaskAwaitable_1_GetAwaiter_m7A77B1981FEC19CC7E1570EDC3F16AC5C14B4439_RuntimeMethod_var);
V_5 = L_15;
bool L_16;
L_16 = ConfiguredTaskAwaiter_get_IsCompleted_mD70263ED42C8E379EE20DBC2F218C3E629B4B4D3((&V_5), ConfiguredTaskAwaiter_get_IsCompleted_mD70263ED42C8E379EE20DBC2F218C3E629B4B4D3_RuntimeMethod_var);
if (L_16)
{
goto IL_00ac_1;
}
}
{
int32_t L_17 = 0;
V_0 = L_17;
__this->___U3CU3E1__state_0 = L_17;
ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80 L_18 = V_5;
__this->___U3CU3Eu__1_6 = L_18;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3Eu__1_6))->___m_task_0), (void*)NULL);
AsyncTaskMethodBuilder_1_t7BA09CA1BB279AA706D98A618EE11038FD1985F7* L_19 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80_TisU3CInnerReadU3Ed__25_t05729A3E67E2FF3B23435B02B158BDB2F3C7C84E_m1375ABD6CBB63DE8EF7F17F9B050D81DDE993851(L_19, (&V_5), __this, AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80_TisU3CInnerReadU3Ed__25_t05729A3E67E2FF3B23435B02B158BDB2F3C7C84E_m1375ABD6CBB63DE8EF7F17F9B050D81DDE993851_RuntimeMethod_var);
goto IL_0175;
}
IL_008f_1:
{
ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80 L_20 = __this->___U3CU3Eu__1_6;
V_5 = L_20;
ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80* L_21 = (&__this->___U3CU3Eu__1_6);
il2cpp_codegen_initobj(L_21, sizeof(ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80));
int32_t L_22 = (-1);
V_0 = L_22;
__this->___U3CU3E1__state_0 = L_22;
}
IL_00ac_1:
{
int32_t L_23;
L_23 = ConfiguredTaskAwaiter_GetResult_mF1FF6CBD66A3F581D413793BA8C2AF58B707D9CC((&V_5), ConfiguredTaskAwaiter_GetResult_mF1FF6CBD66A3F581D413793BA8C2AF58B707D9CC_RuntimeMethod_var);
V_3 = L_23;
int32_t L_24 = V_3;
if ((((int32_t)L_24) > ((int32_t)0)))
{
goto IL_00c4_1;
}
}
{
int32_t L_25 = V_3;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_26;
memset((&L_26), 0, sizeof(L_26));
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_26), L_25, /*hidden argument*/Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
V_2 = L_26;
goto IL_0161;
}
IL_00c4_1:
{
int32_t L_27 = V_3;
int32_t L_28 = __this->___U3CrequestedSizeU3E5__3_5;
if ((((int32_t)L_27) <= ((int32_t)L_28)))
{
goto IL_00d3_1;
}
}
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_29 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_29);
InvalidOperationException__ctor_m1BE9BD198B904AA1D94F4B10DA88077DFD44B7A5(L_29, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CInnerReadU3Ed__25_MoveNext_mC4567E370C71DA9DA0F704C570308D106D4DDB2C_RuntimeMethod_var)));
}
IL_00d3_1:
{
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_30 = __this->___U3CtotalReadU3E5__2_4;
V_7 = L_30;
int32_t L_31 = V_3;
V_8 = L_31;
bool L_32;
L_32 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline((&V_7), Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
G_B11_0 = __this;
if (L_32)
{
G_B12_0 = __this;
goto IL_00f4_1;
}
}
{
il2cpp_codegen_initobj((&V_9), sizeof(Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28));
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_33 = V_9;
G_B13_0 = L_33;
G_B13_1 = G_B11_0;
goto IL_0103_1;
}
IL_00f4_1:
{
int32_t L_34;
L_34 = Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_inline((&V_7), Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_RuntimeMethod_var);
int32_t L_35 = V_8;
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_36;
memset((&L_36), 0, sizeof(L_36));
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_36), ((int32_t)il2cpp_codegen_add(L_34, L_35)), /*hidden argument*/Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
G_B13_0 = L_36;
G_B13_1 = G_B12_0;
}
IL_0103_1:
{
G_B13_1->___U3CtotalReadU3E5__2_4 = G_B13_0;
int32_t L_37 = __this->___U3CrequestedSizeU3E5__3_5;
int32_t L_38 = V_3;
__this->___U3CrequestedSizeU3E5__3_5 = ((int32_t)il2cpp_codegen_subtract(L_37, L_38));
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_39 = V_1;
NullCheck(L_39);
int32_t* L_40 = (&L_39->___RequestedSize_4);
int32_t L_41;
L_41 = Interlocked_Exchange_m1D23CC1BEB47E20FA336837BF97C292AE6B17629(L_40, 0, NULL);
V_4 = L_41;
int32_t L_42 = __this->___U3CrequestedSizeU3E5__3_5;
int32_t L_43 = V_4;
__this->___U3CrequestedSizeU3E5__3_5 = ((int32_t)il2cpp_codegen_add(L_42, L_43));
}
IL_0133_1:
{
int32_t L_44 = __this->___U3CrequestedSizeU3E5__3_5;
if ((((int32_t)L_44) > ((int32_t)0)))
{
goto IL_0034_1;
}
}
{
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_45 = __this->___U3CtotalReadU3E5__2_4;
V_2 = L_45;
goto IL_0161;
}
}// 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_0148;
}
throw e;
}
CATCH_0148:
{// begin catch(System.Exception)
V_10 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
__this->___U3CU3E1__state_0 = ((int32_t)-2);
AsyncTaskMethodBuilder_1_t7BA09CA1BB279AA706D98A618EE11038FD1985F7* L_46 = (&__this->___U3CU3Et__builder_1);
Exception_t* L_47 = V_10;
AsyncTaskMethodBuilder_1_SetException_m76968B53E22BA2AD3C6102934BDC2C9013F74A95(L_46, L_47, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AsyncTaskMethodBuilder_1_SetException_m76968B53E22BA2AD3C6102934BDC2C9013F74A95_RuntimeMethod_var)));
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0175;
}// end catch (depth: 1)
IL_0161:
{
__this->___U3CU3E1__state_0 = ((int32_t)-2);
AsyncTaskMethodBuilder_1_t7BA09CA1BB279AA706D98A618EE11038FD1985F7* L_48 = (&__this->___U3CU3Et__builder_1);
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_49 = V_2;
AsyncTaskMethodBuilder_1_SetResult_m7814370659E8E3550E3A679C1F2F516592198487(L_48, L_49, AsyncTaskMethodBuilder_1_SetResult_m7814370659E8E3550E3A679C1F2F516592198487_RuntimeMethod_var);
}
IL_0175:
{
return;
}
}
IL2CPP_EXTERN_C void U3CInnerReadU3Ed__25_MoveNext_mC4567E370C71DA9DA0F704C570308D106D4DDB2C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
U3CInnerReadU3Ed__25_t05729A3E67E2FF3B23435B02B158BDB2F3C7C84E* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<U3CInnerReadU3Ed__25_t05729A3E67E2FF3B23435B02B158BDB2F3C7C84E*>(__this + _offset);
U3CInnerReadU3Ed__25_MoveNext_mC4567E370C71DA9DA0F704C570308D106D4DDB2C(_thisAdjusted, method);
}
// System.Void Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CInnerReadU3Ed__25_SetStateMachine_m15DB2E97371A46CBCCD53DCAE7A4FE6F5FF84DCE (U3CInnerReadU3Ed__25_t05729A3E67E2FF3B23435B02B158BDB2F3C7C84E* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_SetStateMachine_m202DAC650B3B8EFE6A02ED46F243B399A3308879_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
AsyncTaskMethodBuilder_1_t7BA09CA1BB279AA706D98A618EE11038FD1985F7* L_0 = (&__this->___U3CU3Et__builder_1);
RuntimeObject* L_1 = ___stateMachine0;
AsyncTaskMethodBuilder_1_SetStateMachine_m202DAC650B3B8EFE6A02ED46F243B399A3308879(L_0, L_1, AsyncTaskMethodBuilder_1_SetStateMachine_m202DAC650B3B8EFE6A02ED46F243B399A3308879_RuntimeMethod_var);
return;
}
}
IL2CPP_EXTERN_C void U3CInnerReadU3Ed__25_SetStateMachine_m15DB2E97371A46CBCCD53DCAE7A4FE6F5FF84DCE_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
U3CInnerReadU3Ed__25_t05729A3E67E2FF3B23435B02B158BDB2F3C7C84E* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<U3CInnerReadU3Ed__25_t05729A3E67E2FF3B23435B02B158BDB2F3C7C84E*>(__this + _offset);
U3CInnerReadU3Ed__25_SetStateMachine_m15DB2E97371A46CBCCD53DCAE7A4FE6F5FF84DCE(_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 Mono.Net.Security.AsyncHandshakeRequest::.ctor(Mono.Net.Security.MobileAuthenticatedStream,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncHandshakeRequest__ctor_m741ADA23A424389AD20579B23AE2DBE8FA00CFF7 (AsyncHandshakeRequest_tC7CB006B95B7B6CFF6AABA2C04637A7CEEE8E9FD* __this, MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* ___parent0, bool ___sync1, const RuntimeMethod* method)
{
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_0 = ___parent0;
bool L_1 = ___sync1;
AsyncProtocolRequest__ctor_mDF1F675DC3E001867DFFD9B1C14CF5559BE3035A(__this, L_0, L_1, NULL);
return;
}
}
// Mono.Net.Security.AsyncOperationStatus Mono.Net.Security.AsyncHandshakeRequest::Run(Mono.Net.Security.AsyncOperationStatus)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AsyncHandshakeRequest_Run_m345A76BCFDDE5E054B97BD4F5FE238A05D3F4C26 (AsyncHandshakeRequest_tC7CB006B95B7B6CFF6AABA2C04637A7CEEE8E9FD* __this, int32_t ___status0, const RuntimeMethod* method)
{
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_0;
L_0 = AsyncProtocolRequest_get_Parent_m20DA5526115969E9D32B61999A044FF0618AFF92_inline(__this, NULL);
int32_t L_1 = ___status0;
NullCheck(L_0);
int32_t L_2;
L_2 = MobileAuthenticatedStream_ProcessHandshake_m30F67A233EAB7CE44A6B6E8E7F4E958DD888F63F(L_0, L_1, (bool)0, NULL);
return L_2;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Net.Security.BufferOffsetSize Mono.Net.Security.AsyncReadOrWriteRequest::get_UserBuffer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* AsyncReadOrWriteRequest_get_UserBuffer_mD158BF301713ADC8899B3F3CFF7D18B76A956417 (AsyncReadOrWriteRequest_tEE5EFA76D488CBB46DBCA56E9914A0E5BF6D4680* __this, const RuntimeMethod* method)
{
{
BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* L_0 = __this->___U3CUserBufferU3Ek__BackingField_7;
return L_0;
}
}
// System.Int32 Mono.Net.Security.AsyncReadOrWriteRequest::get_CurrentSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AsyncReadOrWriteRequest_get_CurrentSize_m4230AD05749403B840042BB7531124C6A96980E6 (AsyncReadOrWriteRequest_tEE5EFA76D488CBB46DBCA56E9914A0E5BF6D4680* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___U3CCurrentSizeU3Ek__BackingField_8;
return L_0;
}
}
// System.Void Mono.Net.Security.AsyncReadOrWriteRequest::set_CurrentSize(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncReadOrWriteRequest_set_CurrentSize_mBCD300A1CD6FF110A3527E80711A820FEFC2F9E1 (AsyncReadOrWriteRequest_tEE5EFA76D488CBB46DBCA56E9914A0E5BF6D4680* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->___U3CCurrentSizeU3Ek__BackingField_8 = L_0;
return;
}
}
// System.Void Mono.Net.Security.AsyncReadOrWriteRequest::.ctor(Mono.Net.Security.MobileAuthenticatedStream,System.Boolean,System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncReadOrWriteRequest__ctor_m4DCAC7C20097985A9A4FDCB73719DD2E508CF07D (AsyncReadOrWriteRequest_tEE5EFA76D488CBB46DBCA56E9914A0E5BF6D4680* __this, MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* ___parent0, bool ___sync1, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer2, int32_t ___offset3, int32_t ___size4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_0 = ___parent0;
bool L_1 = ___sync1;
AsyncProtocolRequest__ctor_mDF1F675DC3E001867DFFD9B1C14CF5559BE3035A(__this, L_0, L_1, NULL);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ___buffer2;
int32_t L_3 = ___offset3;
int32_t L_4 = ___size4;
BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* L_5 = (BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)il2cpp_codegen_object_new(BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE_il2cpp_TypeInfo_var);
NullCheck(L_5);
BufferOffsetSize__ctor_mB62BB1F461998563FB6793F509FF26FB79B81955(L_5, L_2, L_3, L_4, NULL);
__this->___U3CUserBufferU3Ek__BackingField_7 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CUserBufferU3Ek__BackingField_7), (void*)L_5);
return;
}
}
// System.String Mono.Net.Security.AsyncReadOrWriteRequest::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AsyncReadOrWriteRequest_ToString_m1D1115D6B97BD767A3482863B6B64642D0733696 (AsyncReadOrWriteRequest_tEE5EFA76D488CBB46DBCA56E9914A0E5BF6D4680* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBED4027F29BEC5EF843DEDD9DB6073C6DA60B8B4);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0;
L_0 = AsyncProtocolRequest_get_Name_m3D5DC63A43FFCA24B1E5A9825B76BD391D790F84(__this, NULL);
BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* L_1;
L_1 = AsyncReadOrWriteRequest_get_UserBuffer_mD158BF301713ADC8899B3F3CFF7D18B76A956417_inline(__this, NULL);
String_t* L_2;
L_2 = String_Format_m9499958F4B0BB6089C75760AB647AB3CA4D55806(_stringLiteralBED4027F29BEC5EF843DEDD9DB6073C6DA60B8B4, L_0, L_1, NULL);
return L_2;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Net.Security.AsyncReadRequest::.ctor(Mono.Net.Security.MobileAuthenticatedStream,System.Boolean,System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncReadRequest__ctor_mE67D11354154F1844761E0FFB869BBF05F1AE741 (AsyncReadRequest_t0DF29D88C5908BB80A3B6B6D6B3BC9BC23292BB1* __this, MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* ___parent0, bool ___sync1, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer2, int32_t ___offset3, int32_t ___size4, const RuntimeMethod* method)
{
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_0 = ___parent0;
bool L_1 = ___sync1;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ___buffer2;
int32_t L_3 = ___offset3;
int32_t L_4 = ___size4;
AsyncReadOrWriteRequest__ctor_m4DCAC7C20097985A9A4FDCB73719DD2E508CF07D(__this, L_0, L_1, L_2, L_3, L_4, NULL);
return;
}
}
// Mono.Net.Security.AsyncOperationStatus Mono.Net.Security.AsyncReadRequest::Run(Mono.Net.Security.AsyncOperationStatus)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AsyncReadRequest_Run_m2D98252200B926F53624E90AE9649767F0C110ED (AsyncReadRequest_t0DF29D88C5908BB80A3B6B6D6B3BC9BC23292BB1* __this, int32_t ___status0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
bool V_1 = false;
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_0;
L_0 = AsyncProtocolRequest_get_Parent_m20DA5526115969E9D32B61999A044FF0618AFF92_inline(__this, NULL);
BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* L_1;
L_1 = AsyncReadOrWriteRequest_get_UserBuffer_mD158BF301713ADC8899B3F3CFF7D18B76A956417_inline(__this, NULL);
NullCheck(L_0);
ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942 L_2;
L_2 = MobileAuthenticatedStream_ProcessRead_mB8FC6C872B55E0631A80824636220F3B73270441(L_0, L_1, NULL);
ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942 L_3 = L_2;
int32_t L_4 = L_3.___Item1_0;
V_0 = L_4;
bool L_5 = L_3.___Item2_1;
V_1 = L_5;
int32_t L_6 = V_0;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_002b;
}
}
{
AsyncProtocolRequest_set_UserResult_mD84274B3348783A6E03B9000BB82E0737E1EC974_inline(__this, (-1), NULL);
return (int32_t)(3);
}
IL_002b:
{
int32_t L_7;
L_7 = AsyncReadOrWriteRequest_get_CurrentSize_m4230AD05749403B840042BB7531124C6A96980E6_inline(__this, NULL);
int32_t L_8 = V_0;
AsyncReadOrWriteRequest_set_CurrentSize_mBCD300A1CD6FF110A3527E80711A820FEFC2F9E1_inline(__this, ((int32_t)il2cpp_codegen_add(L_7, L_8)), NULL);
BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* L_9;
L_9 = AsyncReadOrWriteRequest_get_UserBuffer_mD158BF301713ADC8899B3F3CFF7D18B76A956417_inline(__this, NULL);
BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* L_10 = L_9;
NullCheck(L_10);
int32_t L_11 = L_10->___Offset_1;
int32_t L_12 = V_0;
NullCheck(L_10);
L_10->___Offset_1 = ((int32_t)il2cpp_codegen_add(L_11, L_12));
BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* L_13;
L_13 = AsyncReadOrWriteRequest_get_UserBuffer_mD158BF301713ADC8899B3F3CFF7D18B76A956417_inline(__this, NULL);
BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* L_14 = L_13;
NullCheck(L_14);
int32_t L_15 = L_14->___Size_2;
int32_t L_16 = V_0;
NullCheck(L_14);
L_14->___Size_2 = ((int32_t)il2cpp_codegen_subtract(L_15, L_16));
bool L_17 = V_1;
if (!L_17)
{
goto IL_006c;
}
}
{
int32_t L_18;
L_18 = AsyncReadOrWriteRequest_get_CurrentSize_m4230AD05749403B840042BB7531124C6A96980E6_inline(__this, NULL);
if (L_18)
{
goto IL_006c;
}
}
{
return (int32_t)(1);
}
IL_006c:
{
int32_t L_19;
L_19 = AsyncReadOrWriteRequest_get_CurrentSize_m4230AD05749403B840042BB7531124C6A96980E6_inline(__this, NULL);
AsyncProtocolRequest_set_UserResult_mD84274B3348783A6E03B9000BB82E0737E1EC974_inline(__this, L_19, NULL);
return (int32_t)(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 Mono.Net.Security.AsyncWriteRequest::.ctor(Mono.Net.Security.MobileAuthenticatedStream,System.Boolean,System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncWriteRequest__ctor_m627E554957F61C80484B10AD0D85849C1E9A0548 (AsyncWriteRequest_t43F45610B0F7E69C3DD0DB5EFCA2E9306D4C95A3* __this, MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* ___parent0, bool ___sync1, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer2, int32_t ___offset3, int32_t ___size4, const RuntimeMethod* method)
{
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_0 = ___parent0;
bool L_1 = ___sync1;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ___buffer2;
int32_t L_3 = ___offset3;
int32_t L_4 = ___size4;
AsyncReadOrWriteRequest__ctor_m4DCAC7C20097985A9A4FDCB73719DD2E508CF07D(__this, L_0, L_1, L_2, L_3, L_4, NULL);
return;
}
}
// Mono.Net.Security.AsyncOperationStatus Mono.Net.Security.AsyncWriteRequest::Run(Mono.Net.Security.AsyncOperationStatus)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AsyncWriteRequest_Run_m10D193A545B0D8D5B68FED13056B0EE6099A92A0 (AsyncWriteRequest_t43F45610B0F7E69C3DD0DB5EFCA2E9306D4C95A3* __this, int32_t ___status0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
bool V_1 = false;
{
BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* L_0;
L_0 = AsyncReadOrWriteRequest_get_UserBuffer_mD158BF301713ADC8899B3F3CFF7D18B76A956417_inline(__this, NULL);
NullCheck(L_0);
int32_t L_1 = L_0->___Size_2;
if (L_1)
{
goto IL_001b;
}
}
{
int32_t L_2;
L_2 = AsyncReadOrWriteRequest_get_CurrentSize_m4230AD05749403B840042BB7531124C6A96980E6_inline(__this, NULL);
AsyncProtocolRequest_set_UserResult_mD84274B3348783A6E03B9000BB82E0737E1EC974_inline(__this, L_2, NULL);
return (int32_t)(3);
}
IL_001b:
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_3;
L_3 = AsyncProtocolRequest_get_Parent_m20DA5526115969E9D32B61999A044FF0618AFF92_inline(__this, NULL);
BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* L_4;
L_4 = AsyncReadOrWriteRequest_get_UserBuffer_mD158BF301713ADC8899B3F3CFF7D18B76A956417_inline(__this, NULL);
NullCheck(L_3);
ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942 L_5;
L_5 = MobileAuthenticatedStream_ProcessWrite_mC26A594E550853A399B5AD111CE704D06C500992(L_3, L_4, NULL);
ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942 L_6 = L_5;
int32_t L_7 = L_6.___Item1_0;
V_0 = L_7;
bool L_8 = L_6.___Item2_1;
V_1 = L_8;
int32_t L_9 = V_0;
if ((((int32_t)L_9) >= ((int32_t)0)))
{
goto IL_0046;
}
}
{
AsyncProtocolRequest_set_UserResult_mD84274B3348783A6E03B9000BB82E0737E1EC974_inline(__this, (-1), NULL);
return (int32_t)(3);
}
IL_0046:
{
int32_t L_10;
L_10 = AsyncReadOrWriteRequest_get_CurrentSize_m4230AD05749403B840042BB7531124C6A96980E6_inline(__this, NULL);
int32_t L_11 = V_0;
AsyncReadOrWriteRequest_set_CurrentSize_mBCD300A1CD6FF110A3527E80711A820FEFC2F9E1_inline(__this, ((int32_t)il2cpp_codegen_add(L_10, L_11)), NULL);
BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* L_12;
L_12 = AsyncReadOrWriteRequest_get_UserBuffer_mD158BF301713ADC8899B3F3CFF7D18B76A956417_inline(__this, NULL);
BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* L_13 = L_12;
NullCheck(L_13);
int32_t L_14 = L_13->___Offset_1;
int32_t L_15 = V_0;
NullCheck(L_13);
L_13->___Offset_1 = ((int32_t)il2cpp_codegen_add(L_14, L_15));
BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* L_16;
L_16 = AsyncReadOrWriteRequest_get_UserBuffer_mD158BF301713ADC8899B3F3CFF7D18B76A956417_inline(__this, NULL);
BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* L_17 = L_16;
NullCheck(L_17);
int32_t L_18 = L_17->___Size_2;
int32_t L_19 = V_0;
NullCheck(L_17);
L_17->___Size_2 = ((int32_t)il2cpp_codegen_subtract(L_18, L_19));
bool L_20 = V_1;
if (!L_20)
{
goto IL_007f;
}
}
{
return (int32_t)(1);
}
IL_007f:
{
int32_t L_21;
L_21 = AsyncReadOrWriteRequest_get_CurrentSize_m4230AD05749403B840042BB7531124C6A96980E6_inline(__this, NULL);
AsyncProtocolRequest_set_UserResult_mD84274B3348783A6E03B9000BB82E0737E1EC974_inline(__this, L_21, NULL);
return (int32_t)(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
// Mono.Net.Security.ChainValidationHelper Mono.Net.Security.ChainValidationHelper::GetInternalValidator(System.Net.Security.SslStream,Mono.Net.Security.MobileTlsProvider,Mono.Security.Interface.MonoTlsSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755* ChainValidationHelper_GetInternalValidator_m9BF3791525A447EBA2283618A85A3E3C346205B7 (SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* ___owner0, MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* ___provider1, MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* ___settings2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_0 = ___settings2;
if (L_0)
{
goto IL_000e;
}
}
{
SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* L_1 = ___owner0;
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* L_2 = ___provider1;
ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755* L_3 = (ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755*)il2cpp_codegen_object_new(ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755_il2cpp_TypeInfo_var);
NullCheck(L_3);
ChainValidationHelper__ctor_m57CDE5571532D21835801745135CEE1ACF96A092(L_3, L_1, L_2, (MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0*)NULL, (bool)0, (MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206*)NULL, NULL);
return L_3;
}
IL_000e:
{
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_4 = ___settings2;
NullCheck(L_4);
RuntimeObject* L_5;
L_5 = MonoTlsSettings_get_CertificateValidator_m2DC79DA38E7CB5E87A21E315A29F21E1D9ACF367_inline(L_4, NULL);
if (!L_5)
{
goto IL_0022;
}
}
{
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_6 = ___settings2;
NullCheck(L_6);
RuntimeObject* L_7;
L_7 = MonoTlsSettings_get_CertificateValidator_m2DC79DA38E7CB5E87A21E315A29F21E1D9ACF367_inline(L_6, NULL);
return ((ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755*)CastclassClass((RuntimeObject*)L_7, ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755_il2cpp_TypeInfo_var));
}
IL_0022:
{
SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* L_8 = ___owner0;
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* L_9 = ___provider1;
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_10 = ___settings2;
ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755* L_11 = (ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755*)il2cpp_codegen_object_new(ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755_il2cpp_TypeInfo_var);
NullCheck(L_11);
ChainValidationHelper__ctor_m57CDE5571532D21835801745135CEE1ACF96A092(L_11, L_8, L_9, L_10, (bool)0, (MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206*)NULL, NULL);
return L_11;
}
}
// Mono.Net.Security.ChainValidationHelper Mono.Net.Security.ChainValidationHelper::Create(Mono.Net.Security.MobileTlsProvider,Mono.Security.Interface.MonoTlsSettings&,Mono.Net.Security.MonoTlsStream)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755* ChainValidationHelper_Create_m3EC94F4F608DFDB125DB6B725FB2CF151AC7F7EA (MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* ___provider0, MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0** ___settings1, MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* ___stream2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755* V_0 = NULL;
{
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* L_0 = ___provider0;
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0** L_1 = ___settings1;
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_2 = *((MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0**)L_1);
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* L_3 = ___stream2;
ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755* L_4 = (ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755*)il2cpp_codegen_object_new(ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755_il2cpp_TypeInfo_var);
NullCheck(L_4);
ChainValidationHelper__ctor_m57CDE5571532D21835801745135CEE1ACF96A092(L_4, (SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27*)NULL, L_0, L_2, (bool)1, L_3, NULL);
V_0 = L_4;
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0** L_5 = ___settings1;
ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755* L_6 = V_0;
NullCheck(L_6);
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_7 = L_6->___settings_1;
*((RuntimeObject**)L_5) = (RuntimeObject*)L_7;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_5, (void*)(RuntimeObject*)L_7);
ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755* L_8 = V_0;
return L_8;
}
}
// System.Void Mono.Net.Security.ChainValidationHelper::.ctor(System.Net.Security.SslStream,Mono.Net.Security.MobileTlsProvider,Mono.Security.Interface.MonoTlsSettings,System.Boolean,Mono.Net.Security.MonoTlsStream)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChainValidationHelper__ctor_m57CDE5571532D21835801745135CEE1ACF96A092 (ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755* __this, SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* ___owner0, MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* ___provider1, MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* ___settings2, bool ___cloneSettings3, MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* ___stream4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ChainValidationHelper_DefaultSelectionCallback_m9662623B23235E63F7081F6632A3305D3C6C0220_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LocalCertSelectionCallback_t3AB79A8AA642074A3EF886118963EEA3CCABABE2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ServicePointManager_t124F9D59A0C6581AC0C21156D657A2EB3C7EE120_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WeakReference_1__ctor_mACC91922E24718B3ABD2AAD11A8A4B69FB77D4A6_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WeakReference_1_t0E5A403EFE44DFDF760845211C10561ED81417A3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 V_1;
memset((&V_1), 0, sizeof(V_1));
int32_t G_B12_0 = 0;
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_0 = ___settings2;
if (L_0)
{
goto IL_0010;
}
}
{
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_1;
L_1 = MonoTlsSettings_CopyDefaultSettings_mE5970D083778040231805379F970AB869548029E(NULL);
___settings2 = L_1;
}
IL_0010:
{
bool L_2 = ___cloneSettings3;
if (!L_2)
{
goto IL_001d;
}
}
{
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_3 = ___settings2;
NullCheck(L_3);
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_4;
L_4 = MonoTlsSettings_CloneWithValidator_mF20535B6DE43DD45FAE2ECC6871C85C15F260D6B(L_3, __this, NULL);
___settings2 = L_4;
}
IL_001d:
{
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* L_5 = ___provider1;
if (L_5)
{
goto IL_0027;
}
}
{
il2cpp_codegen_runtime_class_init_inline(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* L_6;
L_6 = MonoTlsProviderFactory_GetProviderInternal_m87C87ACEF272F007119C23121CD0D2E183785546(NULL);
___provider1 = L_6;
}
IL_0027:
{
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* L_7 = ___provider1;
__this->___provider_2 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&__this->___provider_2), (void*)L_7);
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_8 = ___settings2;
__this->___settings_1 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->___settings_1), (void*)L_8);
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* L_9 = ___stream4;
__this->___tlsStream_5 = L_9;
Il2CppCodeGenWriteBarrier((void**)(&__this->___tlsStream_5), (void*)L_9);
SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* L_10 = ___owner0;
if (!L_10)
{
goto IL_004c;
}
}
{
SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* L_11 = ___owner0;
WeakReference_1_t0E5A403EFE44DFDF760845211C10561ED81417A3* L_12 = (WeakReference_1_t0E5A403EFE44DFDF760845211C10561ED81417A3*)il2cpp_codegen_object_new(WeakReference_1_t0E5A403EFE44DFDF760845211C10561ED81417A3_il2cpp_TypeInfo_var);
NullCheck(L_12);
WeakReference_1__ctor_mACC91922E24718B3ABD2AAD11A8A4B69FB77D4A6(L_12, L_11, WeakReference_1__ctor_mACC91922E24718B3ABD2AAD11A8A4B69FB77D4A6_RuntimeMethod_var);
__this->___owner_0 = L_12;
Il2CppCodeGenWriteBarrier((void**)(&__this->___owner_0), (void*)L_12);
}
IL_004c:
{
V_0 = (bool)0;
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_13 = ___settings2;
if (!L_13)
{
goto IL_008d;
}
}
{
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_14 = ___settings2;
ServerCertValidationCallback_tC7A568060163FC6810AF9817F26F986C78CFC27F* L_15;
L_15 = ChainValidationHelper_GetValidationCallback_m48153D51B837278F4F2E6DADE32FC5460C5F7935(L_14, NULL);
__this->___certValidationCallback_3 = L_15;
Il2CppCodeGenWriteBarrier((void**)(&__this->___certValidationCallback_3), (void*)L_15);
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_16 = ___settings2;
NullCheck(L_16);
MonoLocalCertificateSelectionCallback_t34F7772BA5ECE38E6CBD4C311F579DD1D4724DE3* L_17;
L_17 = MonoTlsSettings_get_ClientCertificateSelectionCallback_mCFE63487D867109AD1AF856ECC8BA0996C0AA605_inline(L_16, NULL);
LocalCertSelectionCallback_t3AB79A8AA642074A3EF886118963EEA3CCABABE2* L_18;
L_18 = CallbackHelpers_MonoToInternal_m895AC89217D5876DB6CC95D7C656C9BA13D4D618(L_17, NULL);
__this->___certSelectionCallback_4 = L_18;
Il2CppCodeGenWriteBarrier((void**)(&__this->___certSelectionCallback_4), (void*)L_18);
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_19 = ___settings2;
NullCheck(L_19);
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 L_20;
L_20 = MonoTlsSettings_get_UseServicePointManagerCallback_m11F6CF11F844ED2F6D54497CBAB18E04E6AFD754_inline(L_19, NULL);
V_1 = L_20;
bool L_21;
L_21 = Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_inline((&V_1), Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_RuntimeMethod_var);
if (L_21)
{
goto IL_0085;
}
}
{
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* L_22 = ___stream4;
G_B12_0 = ((!(((RuntimeObject*)(MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206*)L_22) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_008c;
}
IL_0085:
{
bool L_23;
L_23 = Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_inline((&V_1), Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_RuntimeMethod_var);
G_B12_0 = ((int32_t)(L_23));
}
IL_008c:
{
V_0 = (bool)G_B12_0;
}
IL_008d:
{
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* L_24 = ___stream4;
if (!L_24)
{
goto IL_00d6;
}
}
{
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* L_25 = ___stream4;
NullCheck(L_25);
HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* L_26;
L_26 = MonoTlsStream_get_Request_m5F3CDE9EA1921F1A45C0FAE20DD4BA634D0D8D83_inline(L_25, NULL);
__this->___request_6 = L_26;
Il2CppCodeGenWriteBarrier((void**)(&__this->___request_6), (void*)L_26);
ServerCertValidationCallback_tC7A568060163FC6810AF9817F26F986C78CFC27F* L_27 = __this->___certValidationCallback_3;
if (L_27)
{
goto IL_00b7;
}
}
{
HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* L_28 = __this->___request_6;
NullCheck(L_28);
ServerCertValidationCallback_tC7A568060163FC6810AF9817F26F986C78CFC27F* L_29;
L_29 = HttpWebRequest_get_ServerCertValidationCallback_m8822E8093BBEE23482561CCB65D6AF3B7B1B464E_inline(L_28, NULL);
__this->___certValidationCallback_3 = L_29;
Il2CppCodeGenWriteBarrier((void**)(&__this->___certValidationCallback_3), (void*)L_29);
}
IL_00b7:
{
LocalCertSelectionCallback_t3AB79A8AA642074A3EF886118963EEA3CCABABE2* L_30 = __this->___certSelectionCallback_4;
if (L_30)
{
goto IL_00d1;
}
}
{
LocalCertSelectionCallback_t3AB79A8AA642074A3EF886118963EEA3CCABABE2* L_31 = (LocalCertSelectionCallback_t3AB79A8AA642074A3EF886118963EEA3CCABABE2*)il2cpp_codegen_object_new(LocalCertSelectionCallback_t3AB79A8AA642074A3EF886118963EEA3CCABABE2_il2cpp_TypeInfo_var);
NullCheck(L_31);
LocalCertSelectionCallback__ctor_mA7B36924E69A918A71649CFF95CB361E33317C38(L_31, NULL, (intptr_t)((void*)ChainValidationHelper_DefaultSelectionCallback_m9662623B23235E63F7081F6632A3305D3C6C0220_RuntimeMethod_var), NULL);
__this->___certSelectionCallback_4 = L_31;
Il2CppCodeGenWriteBarrier((void**)(&__this->___certSelectionCallback_4), (void*)L_31);
}
IL_00d1:
{
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_32 = ___settings2;
if (L_32)
{
goto IL_00d6;
}
}
{
V_0 = (bool)1;
}
IL_00d6:
{
bool L_33 = V_0;
if (!L_33)
{
goto IL_00ec;
}
}
{
ServerCertValidationCallback_tC7A568060163FC6810AF9817F26F986C78CFC27F* L_34 = __this->___certValidationCallback_3;
if (L_34)
{
goto IL_00ec;
}
}
{
il2cpp_codegen_runtime_class_init_inline(ServicePointManager_t124F9D59A0C6581AC0C21156D657A2EB3C7EE120_il2cpp_TypeInfo_var);
ServerCertValidationCallback_tC7A568060163FC6810AF9817F26F986C78CFC27F* L_35;
L_35 = ServicePointManager_get_ServerCertValidationCallback_m9436D7CB2C84F88A2F878C700D5B3B34B85B911D_inline(NULL);
__this->___certValidationCallback_3 = L_35;
Il2CppCodeGenWriteBarrier((void**)(&__this->___certValidationCallback_3), (void*)L_35);
}
IL_00ec:
{
return;
}
}
// System.Net.ServerCertValidationCallback Mono.Net.Security.ChainValidationHelper::GetValidationCallback(Mono.Security.Interface.MonoTlsSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ServerCertValidationCallback_tC7A568060163FC6810AF9817F26F986C78CFC27F* ChainValidationHelper_GetValidationCallback_m48153D51B837278F4F2E6DADE32FC5460C5F7935 (MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* ___settings0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RemoteCertificateValidationCallback_t2F4C5801F96B2C2BF934511796C5BFEAEBF01955_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ServerCertValidationCallback_tC7A568060163FC6810AF9817F26F986C78CFC27F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass11_0_U3CGetValidationCallbackU3Eb__0_m02FE972124C9B2EE3AE5CF1F1D4952D8DEF21D22_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass11_0_tAA6FF214AE681D87C566414EF7C30A3CEA0C9211_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CU3Ec__DisplayClass11_0_tAA6FF214AE681D87C566414EF7C30A3CEA0C9211* V_0 = NULL;
{
U3CU3Ec__DisplayClass11_0_tAA6FF214AE681D87C566414EF7C30A3CEA0C9211* L_0 = (U3CU3Ec__DisplayClass11_0_tAA6FF214AE681D87C566414EF7C30A3CEA0C9211*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass11_0_tAA6FF214AE681D87C566414EF7C30A3CEA0C9211_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CU3Ec__DisplayClass11_0__ctor_m33705296E35208F621BECF6D7957DED9C7317D78(L_0, NULL);
V_0 = L_0;
U3CU3Ec__DisplayClass11_0_tAA6FF214AE681D87C566414EF7C30A3CEA0C9211* L_1 = V_0;
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_2 = ___settings0;
NullCheck(L_1);
L_1->___settings_0 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&L_1->___settings_0), (void*)L_2);
U3CU3Ec__DisplayClass11_0_tAA6FF214AE681D87C566414EF7C30A3CEA0C9211* L_3 = V_0;
NullCheck(L_3);
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_4 = L_3->___settings_0;
NullCheck(L_4);
MonoRemoteCertificateValidationCallback_t1A389B61998873F6B9A2EE7A11C36333A8AECCA0* L_5;
L_5 = MonoTlsSettings_get_RemoteCertificateValidationCallback_mE07825B4A75DAE2A4BB5037D504A36311814446C_inline(L_4, NULL);
if (L_5)
{
goto IL_001c;
}
}
{
return (ServerCertValidationCallback_tC7A568060163FC6810AF9817F26F986C78CFC27F*)NULL;
}
IL_001c:
{
U3CU3Ec__DisplayClass11_0_tAA6FF214AE681D87C566414EF7C30A3CEA0C9211* L_6 = V_0;
RemoteCertificateValidationCallback_t2F4C5801F96B2C2BF934511796C5BFEAEBF01955* L_7 = (RemoteCertificateValidationCallback_t2F4C5801F96B2C2BF934511796C5BFEAEBF01955*)il2cpp_codegen_object_new(RemoteCertificateValidationCallback_t2F4C5801F96B2C2BF934511796C5BFEAEBF01955_il2cpp_TypeInfo_var);
NullCheck(L_7);
RemoteCertificateValidationCallback__ctor_mC5C0650D4E5D29475BDBDA5B43FEA44DB0DBF367(L_7, L_6, (intptr_t)((void*)U3CU3Ec__DisplayClass11_0_U3CGetValidationCallbackU3Eb__0_m02FE972124C9B2EE3AE5CF1F1D4952D8DEF21D22_RuntimeMethod_var), NULL);
ServerCertValidationCallback_tC7A568060163FC6810AF9817F26F986C78CFC27F* L_8 = (ServerCertValidationCallback_tC7A568060163FC6810AF9817F26F986C78CFC27F*)il2cpp_codegen_object_new(ServerCertValidationCallback_tC7A568060163FC6810AF9817F26F986C78CFC27F_il2cpp_TypeInfo_var);
NullCheck(L_8);
ServerCertValidationCallback__ctor_mF3AC814542EED45987465791FE7846DE2A8B5603(L_8, L_7, NULL);
return L_8;
}
}
// System.Security.Cryptography.X509Certificates.X509Certificate Mono.Net.Security.ChainValidationHelper::DefaultSelectionCallback(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.Cryptography.X509Certificates.X509Certificate,System.String[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ChainValidationHelper_DefaultSelectionCallback_m9662623B23235E63F7081F6632A3305D3C6C0220 (String_t* ___targetHost0, X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* ___localCertificates1, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___remoteCertificate2, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___acceptableIssuers3, const RuntimeMethod* method)
{
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* V_0 = NULL;
{
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* L_0 = ___localCertificates1;
if (!L_0)
{
goto IL_000b;
}
}
{
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* L_1 = ___localCertificates1;
NullCheck(L_1);
int32_t L_2;
L_2 = CollectionBase_get_Count_m2BD48A6DDD376554A7956E4B26EC27F9F1E43C72(L_1, NULL);
if (L_2)
{
goto IL_000f;
}
}
IL_000b:
{
V_0 = (X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4*)NULL;
goto IL_0017;
}
IL_000f:
{
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* L_3 = ___localCertificates1;
NullCheck(L_3);
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_4;
L_4 = X509CertificateCollection_get_Item_m9EC79D4B62FB412278F92F3641969385252F6572(L_3, 0, NULL);
V_0 = L_4;
}
IL_0017:
{
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_5 = V_0;
return L_5;
}
}
// Mono.Security.Interface.MonoTlsSettings Mono.Net.Security.ChainValidationHelper::get_Settings()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* ChainValidationHelper_get_Settings_m94E2DC79CB696A4F54956D812983E62FEB33D22E (ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755* __this, const RuntimeMethod* method)
{
{
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_0 = __this->___settings_1;
return L_0;
}
}
// System.Boolean Mono.Net.Security.ChainValidationHelper::SelectClientCertificate(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.Cryptography.X509Certificates.X509Certificate,System.String[],System.Security.Cryptography.X509Certificates.X509Certificate&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ChainValidationHelper_SelectClientCertificate_m77B577FD626B93B7018F62E6843727168F7876EA (ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755* __this, String_t* ___targetHost0, X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* ___localCertificates1, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___remoteCertificate2, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___acceptableIssuers3, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4** ___clientCertificate4, const RuntimeMethod* method)
{
{
LocalCertSelectionCallback_t3AB79A8AA642074A3EF886118963EEA3CCABABE2* L_0 = __this->___certSelectionCallback_4;
if (L_0)
{
goto IL_000e;
}
}
{
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4** L_1 = ___clientCertificate4;
*((RuntimeObject**)L_1) = (RuntimeObject*)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_1, (void*)(RuntimeObject*)NULL);
return (bool)0;
}
IL_000e:
{
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4** L_2 = ___clientCertificate4;
LocalCertSelectionCallback_t3AB79A8AA642074A3EF886118963EEA3CCABABE2* L_3 = __this->___certSelectionCallback_4;
String_t* L_4 = ___targetHost0;
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* L_5 = ___localCertificates1;
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_6 = ___remoteCertificate2;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_7 = ___acceptableIssuers3;
NullCheck(L_3);
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_8;
L_8 = LocalCertSelectionCallback_Invoke_m3AD956B5D53937117BD3E036068B49615337B5B9_inline(L_3, L_4, L_5, L_6, L_7, NULL);
*((RuntimeObject**)L_2) = (RuntimeObject*)L_8;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_2, (void*)(RuntimeObject*)L_8);
return (bool)1;
}
}
// Mono.Security.Interface.ValidationResult Mono.Net.Security.ChainValidationHelper::ValidateCertificate(System.String,System.Boolean,System.Security.Cryptography.X509Certificates.X509Certificate,System.Security.Cryptography.X509Certificates.X509Chain)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5* ChainValidationHelper_ValidateCertificate_m859E258B2CF6F570984C618241A26AAFE2B7104D (ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755* __this, String_t* ___host0, bool ___serverMode1, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___leaf2, X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* ___chain3, const RuntimeMethod* method)
{
ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5* V_0 = NULL;
ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5* V_1 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* G_B4_0 = NULL;
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* G_B2_0 = NULL;
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* G_B3_0 = NULL;
int32_t G_B5_0 = 0;
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* G_B5_1 = NULL;
try
{// begin try (depth: 1)
{
String_t* L_0 = ___host0;
bool L_1 = ___serverMode1;
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_2 = ___leaf2;
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* L_3 = ___chain3;
ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5* L_4;
L_4 = ChainValidationHelper_ValidateChain_m60FB1695D7C8F3A0C01C864FDFEC2EC3CF648F79(__this, L_0, L_1, L_2, L_3, (X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE*)NULL, 0, NULL);
V_0 = L_4;
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* L_5 = __this->___tlsStream_5;
if (!L_5)
{
goto IL_0035_1;
}
}
{
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* L_6 = __this->___tlsStream_5;
ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5* L_7 = V_0;
G_B2_0 = L_6;
if (!L_7)
{
G_B4_0 = L_6;
goto IL_002f_1;
}
}
{
ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5* L_8 = V_0;
NullCheck(L_8);
bool L_9;
L_9 = ValidationResult_get_Trusted_mC74B0DA857D9879C6A7428DB31DEA8A2DCD9DFF2_inline(L_8, NULL);
G_B3_0 = G_B2_0;
if (!L_9)
{
G_B4_0 = G_B2_0;
goto IL_002f_1;
}
}
{
ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5* L_10 = V_0;
NullCheck(L_10);
bool L_11;
L_11 = ValidationResult_get_UserDenied_m8714FE685A3F0214EE05C59AFE8ABC71CE614E0B_inline(L_10, NULL);
G_B5_0 = ((int32_t)(L_11));
G_B5_1 = G_B3_0;
goto IL_0030_1;
}
IL_002f_1:
{
G_B5_0 = 1;
G_B5_1 = G_B4_0;
}
IL_0030_1:
{
NullCheck(G_B5_1);
MonoTlsStream_set_CertificateValidationFailed_m225E1AA3894B292682A2BF06B886693A11DEAFEC_inline(G_B5_1, (bool)G_B5_0, NULL);
}
IL_0035_1:
{
ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5* L_12 = V_0;
V_1 = L_12;
goto IL_0050;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0039;
}
throw e;
}
CATCH_0039:
{// begin catch(System.Object)
{
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* L_13 = __this->___tlsStream_5;
if (!L_13)
{
goto IL_004e;
}
}
{
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* L_14 = __this->___tlsStream_5;
NullCheck(L_14);
MonoTlsStream_set_CertificateValidationFailed_m225E1AA3894B292682A2BF06B886693A11DEAFEC_inline(L_14, (bool)1, NULL);
}
IL_004e:
{
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ChainValidationHelper_ValidateCertificate_m859E258B2CF6F570984C618241A26AAFE2B7104D_RuntimeMethod_var)));
}
}// end catch (depth: 1)
IL_0050:
{
ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5* L_15 = V_1;
return L_15;
}
}
// Mono.Security.Interface.ValidationResult Mono.Net.Security.ChainValidationHelper::ValidateChain(System.String,System.Boolean,System.Security.Cryptography.X509Certificates.X509Certificate,System.Security.Cryptography.X509Certificates.X509Chain,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Net.Security.SslPolicyErrors)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5* ChainValidationHelper_ValidateChain_m60FB1695D7C8F3A0C01C864FDFEC2EC3CF648F79 (ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755* __this, String_t* ___host0, bool ___server1, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___leaf2, X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* ___chain3, X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* ___certs4, int32_t ___errors5, const RuntimeMethod* method)
{
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* V_0 = NULL;
bool V_1 = false;
ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5* V_2 = NULL;
ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5* G_B3_0 = NULL;
ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5* G_B2_0 = NULL;
{
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* L_0 = ___chain3;
V_0 = L_0;
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* L_1 = ___chain3;
V_1 = (bool)((((RuntimeObject*)(X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5*)L_1) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0022:
{// begin finally (depth: 1)
{
bool L_2 = V_1;
if (!L_2)
{
goto IL_0030;
}
}
{
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* L_3 = ___chain3;
if (!L_3)
{
goto IL_0030;
}
}
{
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* L_4 = ___chain3;
NullCheck(L_4);
X509Chain_Dispose_mC10F7CE7DAF0799F13C798184330C046222E305D(L_4, NULL);
}
IL_0030:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
String_t* L_5 = ___host0;
bool L_6 = ___server1;
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_7 = ___leaf2;
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* L_8 = ___certs4;
int32_t L_9 = ___errors5;
ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5* L_10;
L_10 = ChainValidationHelper_ValidateChain_m6E88B46B65F70D52BDD9438D218D7E3BE55BB1C7(__this, L_5, L_6, L_7, (&___chain3), L_8, L_9, NULL);
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* L_11 = ___chain3;
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* L_12 = V_0;
G_B2_0 = L_10;
if ((((RuntimeObject*)(X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5*)L_11) == ((RuntimeObject*)(X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5*)L_12)))
{
G_B3_0 = L_10;
goto IL_001f_1;
}
}
{
V_1 = (bool)1;
G_B3_0 = G_B2_0;
}
IL_001f_1:
{
V_2 = G_B3_0;
goto IL_0031;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0031:
{
ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5* L_13 = V_2;
return L_13;
}
}
// Mono.Security.Interface.ValidationResult Mono.Net.Security.ChainValidationHelper::ValidateChain(System.String,System.Boolean,System.Security.Cryptography.X509Certificates.X509Certificate,System.Security.Cryptography.X509Certificates.X509Chain&,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Net.Security.SslPolicyErrors)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5* ChainValidationHelper_ValidateChain_m6E88B46B65F70D52BDD9438D218D7E3BE55BB1C7 (ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755* __this, String_t* ___host0, bool ___server1, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___leaf2, X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5** ___chain3, X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* ___certs4, int32_t ___errors5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DefaultCertificatePolicy_t050382C833F241986F8386E6FC9E00FEC999A53A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICertificatePolicy_t520F2D7BB74545D086C9D6A71E98B5DE3AD9052B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m68B7A0015046666E6BCD97D25DFA5B39694E175A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ServicePointManager_t124F9D59A0C6581AC0C21156D657A2EB3C7EE120_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SystemCertificateValidator_tA4E6BC166E3F3CEDF8BAE495922494EE0A597D16_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
RuntimeObject* V_2 = NULL;
int32_t V_3 = 0;
bool V_4 = false;
int32_t V_5 = 0;
ServicePoint_t5DB5939994CAA6A0DF221C5F58D59D1A6131CE29* V_6 = NULL;
int32_t G_B25_0 = 0;
{
V_0 = (bool)0;
V_1 = (bool)0;
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* L_0 = __this->___tlsStream_5;
if (!L_0)
{
goto IL_001d;
}
}
{
HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* L_1 = __this->___request_6;
NullCheck(L_1);
ServicePoint_t5DB5939994CAA6A0DF221C5F58D59D1A6131CE29* L_2;
L_2 = HttpWebRequest_get_ServicePoint_m170B921D095437FC5B7FE5920F327F1AABF532D6(L_1, NULL);
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_3 = ___leaf2;
NullCheck(L_2);
ServicePoint_UpdateServerCertificate_mA5119A83F8A76B1098E4C0B7BEACED9F04288D10(L_2, L_3, NULL);
}
IL_001d:
{
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_4 = ___leaf2;
if (L_4)
{
goto IL_004e;
}
}
{
int32_t L_5 = ___errors5;
___errors5 = ((int32_t)((int32_t)L_5|1));
ServerCertValidationCallback_tC7A568060163FC6810AF9817F26F986C78CFC27F* L_6 = __this->___certValidationCallback_3;
if (!L_6)
{
goto IL_003e;
}
}
{
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_7 = ___leaf2;
int32_t L_8 = ___errors5;
bool L_9;
L_9 = ChainValidationHelper_InvokeCallback_m1E6AABFB2535B6E22428BDDC3252CE6ADB4D78CE(__this, L_7, (X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5*)NULL, L_8, NULL);
V_1 = L_9;
bool L_10 = V_1;
V_0 = (bool)((((int32_t)L_10) == ((int32_t)0))? 1 : 0);
}
IL_003e:
{
bool L_11 = V_1;
bool L_12 = V_0;
int32_t L_13 = ___errors5;
Nullable_1_t732CF400959D84218642820F71E43BA47619AD00 L_14;
memset((&L_14), 0, sizeof(L_14));
Nullable_1__ctor_m68B7A0015046666E6BCD97D25DFA5B39694E175A((&L_14), L_13, /*hidden argument*/Nullable_1__ctor_m68B7A0015046666E6BCD97D25DFA5B39694E175A_RuntimeMethod_var);
ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5* L_15 = (ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5*)il2cpp_codegen_object_new(ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5_il2cpp_TypeInfo_var);
NullCheck(L_15);
ValidationResult__ctor_m4CAB4B31530A8CD62E46F8B3FAC6A36A4E615D5D(L_15, L_11, L_12, 0, L_14, NULL);
return L_15;
}
IL_004e:
{
String_t* L_16 = ___host0;
bool L_17;
L_17 = String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A(L_16, NULL);
if (L_17)
{
goto IL_0070;
}
}
{
String_t* L_18 = ___host0;
NullCheck(L_18);
int32_t L_19;
L_19 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_18, ((int32_t)58), NULL);
V_5 = L_19;
int32_t L_20 = V_5;
if ((((int32_t)L_20) <= ((int32_t)0)))
{
goto IL_0070;
}
}
{
String_t* L_21 = ___host0;
int32_t L_22 = V_5;
NullCheck(L_21);
String_t* L_23;
L_23 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_21, 0, L_22, NULL);
___host0 = L_23;
}
IL_0070:
{
il2cpp_codegen_runtime_class_init_inline(ServicePointManager_t124F9D59A0C6581AC0C21156D657A2EB3C7EE120_il2cpp_TypeInfo_var);
RuntimeObject* L_24;
L_24 = ServicePointManager_GetLegacyCertificatePolicy_mBD5DCFD553FEEE50F78A70BAB63F95ACF21A25FC_inline(NULL);
V_2 = L_24;
V_3 = 0;
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_25 = __this->___settings_1;
il2cpp_codegen_runtime_class_init_inline(SystemCertificateValidator_tA4E6BC166E3F3CEDF8BAE495922494EE0A597D16_il2cpp_TypeInfo_var);
bool L_26;
L_26 = SystemCertificateValidator_NeedsChain_mEA1D649FC72CD6D61ACECF098C7CC871AEC5A215(L_25, NULL);
V_4 = L_26;
bool L_27 = V_4;
if (L_27)
{
goto IL_00a9;
}
}
{
ServerCertValidationCallback_tC7A568060163FC6810AF9817F26F986C78CFC27F* L_28 = __this->___certValidationCallback_3;
if (!L_28)
{
goto IL_00a9;
}
}
{
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_29 = __this->___settings_1;
if (!L_29)
{
goto IL_00a6;
}
}
{
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_30 = __this->___settings_1;
NullCheck(L_30);
bool L_31;
L_31 = MonoTlsSettings_get_CallbackNeedsCertificateChain_m02260798D928BDA7F6D9A2356B7CE688650BF176_inline(L_30, NULL);
if (!L_31)
{
goto IL_00a9;
}
}
IL_00a6:
{
V_4 = (bool)1;
}
IL_00a9:
{
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* L_32 = __this->___provider_2;
String_t* L_33 = ___host0;
bool L_34 = ___server1;
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* L_35 = ___certs4;
bool L_36 = V_4;
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5** L_37 = ___chain3;
NullCheck(L_32);
bool L_38;
L_38 = VirtualFuncInvoker8< bool, ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755*, String_t*, bool, X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE*, bool, X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5**, int32_t*, int32_t* >::Invoke(12 /* System.Boolean Mono.Net.Security.MobileTlsProvider::ValidateCertificate(Mono.Net.Security.ChainValidationHelper,System.String,System.Boolean,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Boolean,System.Security.Cryptography.X509Certificates.X509Chain&,System.Net.Security.SslPolicyErrors&,System.Int32&) */, L_32, __this, L_33, L_34, L_35, L_36, L_37, (&___errors5), (&V_3));
V_1 = L_38;
int32_t L_39 = V_3;
if (L_39)
{
goto IL_00cf;
}
}
{
int32_t L_40 = ___errors5;
if (!L_40)
{
goto IL_00cf;
}
}
{
V_3 = ((int32_t)-2146762485);
}
IL_00cf:
{
RuntimeObject* L_41 = V_2;
if (!L_41)
{
goto IL_011e;
}
}
{
RuntimeObject* L_42 = V_2;
if (!((DefaultCertificatePolicy_t050382C833F241986F8386E6FC9E00FEC999A53A*)IsInstClass((RuntimeObject*)L_42, DefaultCertificatePolicy_t050382C833F241986F8386E6FC9E00FEC999A53A_il2cpp_TypeInfo_var)))
{
goto IL_00e2;
}
}
{
ServerCertValidationCallback_tC7A568060163FC6810AF9817F26F986C78CFC27F* L_43 = __this->___certValidationCallback_3;
if (L_43)
{
goto IL_011e;
}
}
IL_00e2:
{
V_6 = (ServicePoint_t5DB5939994CAA6A0DF221C5F58D59D1A6131CE29*)NULL;
HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* L_44 = __this->___request_6;
if (!L_44)
{
goto IL_00fa;
}
}
{
HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* L_45 = __this->___request_6;
NullCheck(L_45);
ServicePoint_t5DB5939994CAA6A0DF221C5F58D59D1A6131CE29* L_46;
L_46 = HttpWebRequest_get_ServicePointNoLock_m302BC1F3A189D46E652B79981E8D29095E5D5C61_inline(L_45, NULL);
V_6 = L_46;
}
IL_00fa:
{
RuntimeObject* L_47 = V_2;
ServicePoint_t5DB5939994CAA6A0DF221C5F58D59D1A6131CE29* L_48 = V_6;
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_49 = ___leaf2;
HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* L_50 = __this->___request_6;
int32_t L_51 = V_3;
NullCheck(L_47);
bool L_52;
L_52 = InterfaceFuncInvoker4< bool, ServicePoint_t5DB5939994CAA6A0DF221C5F58D59D1A6131CE29*, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4*, WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B*, int32_t >::Invoke(0 /* System.Boolean System.Net.ICertificatePolicy::CheckValidationResult(System.Net.ServicePoint,System.Security.Cryptography.X509Certificates.X509Certificate,System.Net.WebRequest,System.Int32) */, ICertificatePolicy_t520F2D7BB74545D086C9D6A71E98B5DE3AD9052B_il2cpp_TypeInfo_var, L_47, L_48, L_49, L_50, L_51);
V_1 = L_52;
bool L_53 = V_1;
if (L_53)
{
goto IL_011c;
}
}
{
RuntimeObject* L_54 = V_2;
G_B25_0 = ((((int32_t)((!(((RuntimeObject*)(DefaultCertificatePolicy_t050382C833F241986F8386E6FC9E00FEC999A53A*)((DefaultCertificatePolicy_t050382C833F241986F8386E6FC9E00FEC999A53A*)IsInstClass((RuntimeObject*)L_54, DefaultCertificatePolicy_t050382C833F241986F8386E6FC9E00FEC999A53A_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_011d;
}
IL_011c:
{
G_B25_0 = 0;
}
IL_011d:
{
V_0 = (bool)G_B25_0;
}
IL_011e:
{
ServerCertValidationCallback_tC7A568060163FC6810AF9817F26F986C78CFC27F* L_55 = __this->___certValidationCallback_3;
if (!L_55)
{
goto IL_0138;
}
}
{
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_56 = ___leaf2;
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5** L_57 = ___chain3;
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* L_58 = *((X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5**)L_57);
int32_t L_59 = ___errors5;
bool L_60;
L_60 = ChainValidationHelper_InvokeCallback_m1E6AABFB2535B6E22428BDDC3252CE6ADB4D78CE(__this, L_56, L_58, L_59, NULL);
V_1 = L_60;
bool L_61 = V_1;
V_0 = (bool)((((int32_t)L_61) == ((int32_t)0))? 1 : 0);
}
IL_0138:
{
bool L_62 = V_1;
bool L_63 = V_0;
int32_t L_64 = V_3;
int32_t L_65 = ___errors5;
Nullable_1_t732CF400959D84218642820F71E43BA47619AD00 L_66;
memset((&L_66), 0, sizeof(L_66));
Nullable_1__ctor_m68B7A0015046666E6BCD97D25DFA5B39694E175A((&L_66), L_65, /*hidden argument*/Nullable_1__ctor_m68B7A0015046666E6BCD97D25DFA5B39694E175A_RuntimeMethod_var);
ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5* L_67 = (ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5*)il2cpp_codegen_object_new(ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5_il2cpp_TypeInfo_var);
NullCheck(L_67);
ValidationResult__ctor_m4CAB4B31530A8CD62E46F8B3FAC6A36A4E615D5D(L_67, L_62, L_63, L_64, L_66, NULL);
return L_67;
}
}
// System.Boolean Mono.Net.Security.ChainValidationHelper::InvokeCallback(System.Security.Cryptography.X509Certificates.X509Certificate,System.Security.Cryptography.X509Certificates.X509Chain,System.Net.Security.SslPolicyErrors)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ChainValidationHelper_InvokeCallback_m1E6AABFB2535B6E22428BDDC3252CE6ADB4D78CE (ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755* __this, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___leaf0, X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* ___chain1, int32_t ___errors2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WeakReference_1_TryGetTarget_m97CF2B29DA093EDB154354ED332BB0D158BD52C0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* V_1 = NULL;
{
V_0 = NULL;
HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* L_0 = __this->___request_6;
if (!L_0)
{
goto IL_0013;
}
}
{
HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* L_1 = __this->___request_6;
V_0 = L_1;
goto IL_002c;
}
IL_0013:
{
WeakReference_1_t0E5A403EFE44DFDF760845211C10561ED81417A3* L_2 = __this->___owner_0;
if (!L_2)
{
goto IL_002c;
}
}
{
WeakReference_1_t0E5A403EFE44DFDF760845211C10561ED81417A3* L_3 = __this->___owner_0;
NullCheck(L_3);
bool L_4;
L_4 = WeakReference_1_TryGetTarget_m97CF2B29DA093EDB154354ED332BB0D158BD52C0(L_3, (&V_1), WeakReference_1_TryGetTarget_m97CF2B29DA093EDB154354ED332BB0D158BD52C0_RuntimeMethod_var);
if (!L_4)
{
goto IL_002c;
}
}
{
SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* L_5 = V_1;
V_0 = L_5;
}
IL_002c:
{
ServerCertValidationCallback_tC7A568060163FC6810AF9817F26F986C78CFC27F* L_6 = __this->___certValidationCallback_3;
RuntimeObject* L_7 = V_0;
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_8 = ___leaf0;
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* L_9 = ___chain1;
int32_t L_10 = ___errors2;
NullCheck(L_6);
bool L_11;
L_11 = ServerCertValidationCallback_Invoke_mDDC4DA8F50134EF50257E51B53BE36732550C7E6(L_6, L_7, L_8, L_9, L_10, NULL);
return L_11;
}
}
#ifdef __clang__
#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 Mono.Net.Security.ChainValidationHelper/<>c__DisplayClass11_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass11_0__ctor_m33705296E35208F621BECF6D7957DED9C7317D78 (U3CU3Ec__DisplayClass11_0_tAA6FF214AE681D87C566414EF7C30A3CEA0C9211* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Boolean Mono.Net.Security.ChainValidationHelper/<>c__DisplayClass11_0::<GetValidationCallback>b__0(System.Object,System.Security.Cryptography.X509Certificates.X509Certificate,System.Security.Cryptography.X509Certificates.X509Chain,System.Net.Security.SslPolicyErrors)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec__DisplayClass11_0_U3CGetValidationCallbackU3Eb__0_m02FE972124C9B2EE3AE5CF1F1D4952D8DEF21D22 (U3CU3Ec__DisplayClass11_0_tAA6FF214AE681D87C566414EF7C30A3CEA0C9211* __this, RuntimeObject* ___s0, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___c1, X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* ___ch2, int32_t ___e3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* V_1 = NULL;
HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* V_2 = NULL;
int32_t V_3 = 0;
{
V_0 = (String_t*)NULL;
RuntimeObject* L_0 = ___s0;
V_1 = ((SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27*)IsInstClass((RuntimeObject*)L_0, SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27_il2cpp_TypeInfo_var));
SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* L_1 = V_1;
if (!L_1)
{
goto IL_0015;
}
}
{
SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* L_2 = V_1;
NullCheck(L_2);
String_t* L_3;
L_3 = SslStream_get_InternalTargetHost_m9434AC1422D463C25B5C5313AC9BE45B095136AE(L_2, NULL);
V_0 = L_3;
goto IL_0044;
}
IL_0015:
{
RuntimeObject* L_4 = ___s0;
V_2 = ((HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9*)IsInstClass((RuntimeObject*)L_4, HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9_il2cpp_TypeInfo_var));
HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* L_5 = V_2;
if (!L_5)
{
goto IL_0044;
}
}
{
HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* L_6 = V_2;
NullCheck(L_6);
String_t* L_7;
L_7 = HttpWebRequest_get_Host_mE23F8F15207CEF1E64CF212EEA7643185207923C(L_6, NULL);
V_0 = L_7;
String_t* L_8 = V_0;
bool L_9;
L_9 = String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A(L_8, NULL);
if (L_9)
{
goto IL_0044;
}
}
{
String_t* L_10 = V_0;
NullCheck(L_10);
int32_t L_11;
L_11 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_10, ((int32_t)58), NULL);
V_3 = L_11;
int32_t L_12 = V_3;
if ((((int32_t)L_12) <= ((int32_t)0)))
{
goto IL_0044;
}
}
{
String_t* L_13 = V_0;
int32_t L_14 = V_3;
NullCheck(L_13);
String_t* L_15;
L_15 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_13, 0, L_14, NULL);
V_0 = L_15;
}
IL_0044:
{
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_16 = __this->___settings_0;
NullCheck(L_16);
MonoRemoteCertificateValidationCallback_t1A389B61998873F6B9A2EE7A11C36333A8AECCA0* L_17;
L_17 = MonoTlsSettings_get_RemoteCertificateValidationCallback_mE07825B4A75DAE2A4BB5037D504A36311814446C_inline(L_16, NULL);
String_t* L_18 = V_0;
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_19 = ___c1;
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* L_20 = ___ch2;
int32_t L_21 = ___e3;
NullCheck(L_17);
bool L_22;
L_22 = MonoRemoteCertificateValidationCallback_Invoke_m8BE32AE7FE1BE89EFB6A49559431916F785D2BD9_inline(L_17, L_18, L_19, L_20, L_21, NULL);
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 Mono.Net.Security.MobileAuthenticatedStream::.ctor(System.IO.Stream,System.Boolean,System.Net.Security.SslStream,Mono.Security.Interface.MonoTlsSettings,Mono.Net.Security.MobileTlsProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MobileAuthenticatedStream__ctor_mFA70F7AAAE52C6559DC554D363E5FFD4DE665CED (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___innerStream0, bool ___leaveInnerStreamOpen1, SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* ___owner2, MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* ___settings3, MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* ___provider4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
NullCheck(L_0);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_0, NULL);
__this->___ioLock_13 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___ioLock_13), (void*)L_0);
il2cpp_codegen_runtime_class_init_inline(MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_il2cpp_TypeInfo_var);
int32_t L_1 = ((MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_StaticFields*)il2cpp_codegen_static_fields_for(MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_il2cpp_TypeInfo_var))->___nextId_22;
int32_t L_2 = ((int32_t)il2cpp_codegen_add(L_1, 1));
((MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_StaticFields*)il2cpp_codegen_static_fields_for(MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_il2cpp_TypeInfo_var))->___nextId_22 = L_2;
__this->___ID_23 = L_2;
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_3 = ___innerStream0;
bool L_4 = ___leaveInnerStreamOpen1;
AuthenticatedStream__ctor_m8B163146A01B938A3E87E1BED07EE07494A3E357(__this, L_3, L_4, NULL);
SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* L_5 = ___owner2;
__this->___U3CSslStreamU3Ek__BackingField_18 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CSslStreamU3Ek__BackingField_18), (void*)L_5);
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_6 = ___settings3;
__this->___U3CSettingsU3Ek__BackingField_19 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CSettingsU3Ek__BackingField_19), (void*)L_6);
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* L_7 = ___provider4;
__this->___U3CProviderU3Ek__BackingField_20 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CProviderU3Ek__BackingField_20), (void*)L_7);
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_8 = (BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629*)il2cpp_codegen_object_new(BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629_il2cpp_TypeInfo_var);
NullCheck(L_8);
BufferOffsetSize2__ctor_m773DC687399F95F23BE42179B942303C0B52FF07(L_8, ((int32_t)16500), NULL);
__this->___readBuffer_11 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->___readBuffer_11), (void*)L_8);
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_9 = (BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629*)il2cpp_codegen_object_new(BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629_il2cpp_TypeInfo_var);
NullCheck(L_9);
BufferOffsetSize2__ctor_m773DC687399F95F23BE42179B942303C0B52FF07(L_9, ((int32_t)16384), NULL);
__this->___writeBuffer_12 = L_9;
Il2CppCodeGenWriteBarrier((void**)(&__this->___writeBuffer_12), (void*)L_9);
__this->___operation_16 = 0;
return;
}
}
// System.Net.Security.SslStream Mono.Net.Security.MobileAuthenticatedStream::get_SslStream()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* MobileAuthenticatedStream_get_SslStream_mAF94411F0FF2126C8D8C1E9AABBC8CDA7EB73087 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, const RuntimeMethod* method)
{
{
SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* L_0 = __this->___U3CSslStreamU3Ek__BackingField_18;
return L_0;
}
}
// Mono.Security.Interface.MonoTlsSettings Mono.Net.Security.MobileAuthenticatedStream::get_Settings()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* MobileAuthenticatedStream_get_Settings_m21B268EC66FBAF762EC443B8FC784F1251444A96 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, const RuntimeMethod* method)
{
{
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_0 = __this->___U3CSettingsU3Ek__BackingField_19;
return L_0;
}
}
// Mono.Net.Security.MobileTlsProvider Mono.Net.Security.MobileAuthenticatedStream::get_Provider()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* MobileAuthenticatedStream_get_Provider_m9AE08411140D0CC27ADC979E0E290ECD70A47359 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, const RuntimeMethod* method)
{
{
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* L_0 = __this->___U3CProviderU3Ek__BackingField_20;
return L_0;
}
}
// System.String Mono.Net.Security.MobileAuthenticatedStream::get_TargetHost()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MobileAuthenticatedStream_get_TargetHost_m572DA701CB3CE3FA4006D5745F9A3B9A52739CAB (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CTargetHostU3Ek__BackingField_21;
return L_0;
}
}
// System.Void Mono.Net.Security.MobileAuthenticatedStream::set_TargetHost(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MobileAuthenticatedStream_set_TargetHost_m490855169728C94C8FEAD0689D2FA3E578046BB6 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CTargetHostU3Ek__BackingField_21 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CTargetHostU3Ek__BackingField_21), (void*)L_0);
return;
}
}
// System.Void Mono.Net.Security.MobileAuthenticatedStream::CheckThrow(System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MobileAuthenticatedStream_CheckThrow_m9E35E722A793A807809AD00C9756997AB7561396 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, bool ___authSuccessCheck0, bool ___shutdownCheck1, const RuntimeMethod* method)
{
{
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_0 = __this->___lastException_7;
if (!L_0)
{
goto IL_0013;
}
}
{
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_1 = __this->___lastException_7;
NullCheck(L_1);
ExceptionDispatchInfo_Throw_m06F398E346AE94C1CCEB636763A8CB26511F6330(L_1, NULL);
}
IL_0013:
{
bool L_2 = ___authSuccessCheck0;
if (!L_2)
{
goto IL_0029;
}
}
{
bool L_3;
L_3 = VirtualFuncInvoker0< bool >::Invoke(37 /* System.Boolean System.Net.Security.AuthenticatedStream::get_IsAuthenticated() */, __this);
if (L_3)
{
goto IL_0029;
}
}
{
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*)&_stringLiteral00045BEB4E25927218B1459FF5C9438A7C8C07B7)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_CheckThrow_m9E35E722A793A807809AD00C9756997AB7561396_RuntimeMethod_var)));
}
IL_0029:
{
bool L_5 = ___shutdownCheck1;
if (!L_5)
{
goto IL_003f;
}
}
{
bool L_6 = __this->___shutdown_15;
if (!L_6)
{
goto IL_003f;
}
}
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_7 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_7);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral21A3BA98CA9A7E573D0A549E82022237715538AD)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_CheckThrow_m9E35E722A793A807809AD00C9756997AB7561396_RuntimeMethod_var)));
}
IL_003f:
{
return;
}
}
// System.Exception Mono.Net.Security.MobileAuthenticatedStream::GetSSPIException(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* MobileAuthenticatedStream_GetSSPIException_m04F38FF55AEEC19087840F3A722D2C225050F427 (Exception_t* ___e0, 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*)&IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OperationCanceledException_tC97D0B4532C15E6F0E9F9375091C9ECCA438D662_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1F68D0B7D234D04291DCFDFD64A5ADCD6305AF31);
s_Il2CppMethodInitialized = true;
}
{
Exception_t* L_0 = ___e0;
if (((OperationCanceledException_tC97D0B4532C15E6F0E9F9375091C9ECCA438D662*)IsInstClass((RuntimeObject*)L_0, OperationCanceledException_tC97D0B4532C15E6F0E9F9375091C9ECCA438D662_il2cpp_TypeInfo_var)))
{
goto IL_0028;
}
}
{
Exception_t* L_1 = ___e0;
if (((IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910*)IsInstClass((RuntimeObject*)L_1, IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910_il2cpp_TypeInfo_var)))
{
goto IL_0028;
}
}
{
Exception_t* L_2 = ___e0;
if (((ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)IsInstClass((RuntimeObject*)L_2, ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)))
{
goto IL_0028;
}
}
{
Exception_t* L_3 = ___e0;
if (((AuthenticationException_tACF49ABE65B7CEABB69DE78FA8AE8B1771CDF6A8*)IsInstClass((RuntimeObject*)L_3, AuthenticationException_tACF49ABE65B7CEABB69DE78FA8AE8B1771CDF6A8_il2cpp_TypeInfo_var)))
{
goto IL_0028;
}
}
{
Exception_t* L_4 = ___e0;
if (!((NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)IsInstClass((RuntimeObject*)L_4, NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)))
{
goto IL_002a;
}
}
IL_0028:
{
Exception_t* L_5 = ___e0;
return L_5;
}
IL_002a:
{
Exception_t* L_6 = ___e0;
AuthenticationException_tACF49ABE65B7CEABB69DE78FA8AE8B1771CDF6A8* L_7 = (AuthenticationException_tACF49ABE65B7CEABB69DE78FA8AE8B1771CDF6A8*)il2cpp_codegen_object_new(AuthenticationException_tACF49ABE65B7CEABB69DE78FA8AE8B1771CDF6A8_il2cpp_TypeInfo_var);
NullCheck(L_7);
AuthenticationException__ctor_m6EDDEE3840629AC06E70CDF7878F955FE1ED538A(L_7, _stringLiteral1F68D0B7D234D04291DCFDFD64A5ADCD6305AF31, L_6, NULL);
return L_7;
}
}
// System.Exception Mono.Net.Security.MobileAuthenticatedStream::GetIOException(System.Exception,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* MobileAuthenticatedStream_GetIOException_m80A6F9660142728B73A169E1B09AB8BE268DD517 (Exception_t* ___e0, String_t* ___message1, 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*)&IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OperationCanceledException_tC97D0B4532C15E6F0E9F9375091C9ECCA438D662_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Exception_t* L_0 = ___e0;
if (((OperationCanceledException_tC97D0B4532C15E6F0E9F9375091C9ECCA438D662*)IsInstClass((RuntimeObject*)L_0, OperationCanceledException_tC97D0B4532C15E6F0E9F9375091C9ECCA438D662_il2cpp_TypeInfo_var)))
{
goto IL_0028;
}
}
{
Exception_t* L_1 = ___e0;
if (((IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910*)IsInstClass((RuntimeObject*)L_1, IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910_il2cpp_TypeInfo_var)))
{
goto IL_0028;
}
}
{
Exception_t* L_2 = ___e0;
if (((ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)IsInstClass((RuntimeObject*)L_2, ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)))
{
goto IL_0028;
}
}
{
Exception_t* L_3 = ___e0;
if (((AuthenticationException_tACF49ABE65B7CEABB69DE78FA8AE8B1771CDF6A8*)IsInstClass((RuntimeObject*)L_3, AuthenticationException_tACF49ABE65B7CEABB69DE78FA8AE8B1771CDF6A8_il2cpp_TypeInfo_var)))
{
goto IL_0028;
}
}
{
Exception_t* L_4 = ___e0;
if (!((NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)IsInstClass((RuntimeObject*)L_4, NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)))
{
goto IL_002a;
}
}
IL_0028:
{
Exception_t* L_5 = ___e0;
return L_5;
}
IL_002a:
{
String_t* L_6 = ___message1;
Exception_t* L_7 = ___e0;
IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910* L_8 = (IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910*)il2cpp_codegen_object_new(IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910_il2cpp_TypeInfo_var);
NullCheck(L_8);
IOException__ctor_mFA9F39D1AF43FBC40BFA68A7BFE07852D1EF8B1B(L_8, L_6, L_7, NULL);
return L_8;
}
}
// System.Exception Mono.Net.Security.MobileAuthenticatedStream::GetInternalError()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* MobileAuthenticatedStream_GetInternalError_m59D75502C4CAC329B87974927FF39AF718D15BDC (const RuntimeMethod* method)
{
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_0 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_0);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral981AE4478E71C4EC026A30E7892E7C4381F95DB9)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_GetInternalError_m59D75502C4CAC329B87974927FF39AF718D15BDC_RuntimeMethod_var)));
}
}
// System.Exception Mono.Net.Security.MobileAuthenticatedStream::GetInvalidNestedCallException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* MobileAuthenticatedStream_GetInvalidNestedCallException_mC7EBE64F717F86F3D399AA54CC8C60F18876725D (const RuntimeMethod* method)
{
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_0 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_0);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCFE25B37C16B0E4BB7D218D140551332C7027A1D)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_GetInvalidNestedCallException_mC7EBE64F717F86F3D399AA54CC8C60F18876725D_RuntimeMethod_var)));
}
}
// System.Runtime.ExceptionServices.ExceptionDispatchInfo Mono.Net.Security.MobileAuthenticatedStream::SetException(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* MobileAuthenticatedStream_SetException_m490704BA8728AB01E7BA158FE545FD4D7C080448 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, Exception_t* ___e0, const RuntimeMethod* method)
{
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* V_0 = NULL;
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* G_B2_0 = NULL;
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* G_B1_0 = NULL;
{
Exception_t* L_0 = ___e0;
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_1;
L_1 = ExceptionDispatchInfo_Capture_mD989ED7E69753F2E0A2076B60ACA8819F14DA93E(L_0, NULL);
V_0 = L_1;
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757** L_2 = (&__this->___lastException_7);
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_3 = V_0;
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_4;
L_4 = InterlockedCompareExchangeImpl<ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757*>(L_2, L_3, (ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757*)NULL);
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_5 = L_4;
G_B1_0 = L_5;
if (L_5)
{
G_B2_0 = L_5;
goto IL_0019;
}
}
{
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_6 = V_0;
G_B2_0 = L_6;
}
IL_0019:
{
return G_B2_0;
}
}
// System.Void Mono.Net.Security.MobileAuthenticatedStream::AuthenticateAsClient(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.Authentication.SslProtocols,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MobileAuthenticatedStream_AuthenticateAsClient_mEB1237B52A4AB1FF3D7D3E52F61CE78A744973FC (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, String_t* ___targetHost0, X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* ___clientCertificates1, int32_t ___enabledSslProtocols2, bool ___checkCertificateRevocation3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* V_0 = NULL;
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* V_1 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* G_B2_0 = NULL;
MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* G_B2_1 = NULL;
MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* G_B1_0 = NULL;
MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* G_B1_1 = NULL;
int32_t G_B3_0 = 0;
MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* G_B3_1 = NULL;
MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* G_B3_2 = NULL;
{
MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* L_0 = (MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F*)il2cpp_codegen_object_new(MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F_il2cpp_TypeInfo_var);
NullCheck(L_0);
MonoSslClientAuthenticationOptions__ctor_mFF45688A74504467AD6CC5CC1F416EAB53DDDDE1(L_0, NULL);
MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* L_1 = L_0;
String_t* L_2 = ___targetHost0;
NullCheck(L_1);
VirtualActionInvoker1< String_t* >::Invoke(10 /* System.Void Mono.Net.Security.MonoSslAuthenticationOptions::set_TargetHost(System.String) */, L_1, L_2);
MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* L_3 = L_1;
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* L_4 = ___clientCertificates1;
NullCheck(L_3);
VirtualActionInvoker1< X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* >::Invoke(13 /* System.Void Mono.Net.Security.MonoSslAuthenticationOptions::set_ClientCertificates(System.Security.Cryptography.X509Certificates.X509CertificateCollection) */, L_3, L_4);
MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* L_5 = L_3;
int32_t L_6 = ___enabledSslProtocols2;
NullCheck(L_5);
VirtualActionInvoker1< int32_t >::Invoke(6 /* System.Void Mono.Net.Security.MonoSslAuthenticationOptions::set_EnabledSslProtocols(System.Security.Authentication.SslProtocols) */, L_5, L_6);
MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* L_7 = L_5;
bool L_8 = ___checkCertificateRevocation3;
G_B1_0 = L_7;
G_B1_1 = L_7;
if (L_8)
{
G_B2_0 = L_7;
G_B2_1 = L_7;
goto IL_0022;
}
}
{
G_B3_0 = 0;
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
goto IL_0023;
}
IL_0022:
{
G_B3_0 = 1;
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
}
IL_0023:
{
NullCheck(G_B3_1);
VirtualActionInvoker1< int32_t >::Invoke(8 /* System.Void Mono.Net.Security.MonoSslAuthenticationOptions::set_CertificateRevocationCheckMode(System.Security.Cryptography.X509Certificates.X509RevocationMode) */, G_B3_1, G_B3_0);
MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* L_9 = G_B3_2;
NullCheck(L_9);
VirtualActionInvoker1< int32_t >::Invoke(7 /* System.Void Mono.Net.Security.MonoSslAuthenticationOptions::set_EncryptionPolicy(System.Net.Security.EncryptionPolicy) */, L_9, 0);
V_0 = L_9;
MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* L_10 = V_0;
il2cpp_codegen_runtime_class_init_inline(CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED_il2cpp_TypeInfo_var);
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_11;
L_11 = CancellationToken_get_None_m8C6A7AC91155BE2372CC22EA7B923073EA0D2BBB(NULL);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_12;
L_12 = MobileAuthenticatedStream_ProcessAuthentication_m0449087259B996D81ED6AC7A06ED19D46FAB0AF7(__this, (bool)1, L_10, L_11, NULL);
V_1 = L_12;
}
try
{// begin try (depth: 1)
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_13 = V_1;
NullCheck(L_13);
Task_Wait_m33955515E36BF6598FCEDA841C8C75F716DE5A4E(L_13, NULL);
goto IL_004c;
}// 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_0046;
}
throw e;
}
CATCH_0046:
{// begin catch(System.Exception)
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9_il2cpp_TypeInfo_var)));
Exception_t* L_14;
L_14 = HttpWebRequest_FlattenException_mF0D9565F401231C7F7C6A973F829CCB37E34C3EA(((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_AuthenticateAsClient_mEB1237B52A4AB1FF3D7D3E52F61CE78A744973FC_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_004c:
{
return;
}
}
// System.Threading.Tasks.Task Mono.Net.Security.MobileAuthenticatedStream::AuthenticateAsClientAsync(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.Authentication.SslProtocols,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* MobileAuthenticatedStream_AuthenticateAsClientAsync_mBD8A0E7FFAFDE608063E545EF057304AF2C35EF2 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, String_t* ___targetHost0, X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* ___clientCertificates1, int32_t ___enabledSslProtocols2, bool ___checkCertificateRevocation3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* V_0 = NULL;
MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* G_B2_0 = NULL;
MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* G_B2_1 = NULL;
MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* G_B1_0 = NULL;
MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* G_B1_1 = NULL;
int32_t G_B3_0 = 0;
MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* G_B3_1 = NULL;
MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* G_B3_2 = NULL;
{
MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* L_0 = (MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F*)il2cpp_codegen_object_new(MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F_il2cpp_TypeInfo_var);
NullCheck(L_0);
MonoSslClientAuthenticationOptions__ctor_mFF45688A74504467AD6CC5CC1F416EAB53DDDDE1(L_0, NULL);
MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* L_1 = L_0;
String_t* L_2 = ___targetHost0;
NullCheck(L_1);
VirtualActionInvoker1< String_t* >::Invoke(10 /* System.Void Mono.Net.Security.MonoSslAuthenticationOptions::set_TargetHost(System.String) */, L_1, L_2);
MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* L_3 = L_1;
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* L_4 = ___clientCertificates1;
NullCheck(L_3);
VirtualActionInvoker1< X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* >::Invoke(13 /* System.Void Mono.Net.Security.MonoSslAuthenticationOptions::set_ClientCertificates(System.Security.Cryptography.X509Certificates.X509CertificateCollection) */, L_3, L_4);
MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* L_5 = L_3;
int32_t L_6 = ___enabledSslProtocols2;
NullCheck(L_5);
VirtualActionInvoker1< int32_t >::Invoke(6 /* System.Void Mono.Net.Security.MonoSslAuthenticationOptions::set_EnabledSslProtocols(System.Security.Authentication.SslProtocols) */, L_5, L_6);
MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* L_7 = L_5;
bool L_8 = ___checkCertificateRevocation3;
G_B1_0 = L_7;
G_B1_1 = L_7;
if (L_8)
{
G_B2_0 = L_7;
G_B2_1 = L_7;
goto IL_0022;
}
}
{
G_B3_0 = 0;
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
goto IL_0023;
}
IL_0022:
{
G_B3_0 = 1;
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
}
IL_0023:
{
NullCheck(G_B3_1);
VirtualActionInvoker1< int32_t >::Invoke(8 /* System.Void Mono.Net.Security.MonoSslAuthenticationOptions::set_CertificateRevocationCheckMode(System.Security.Cryptography.X509Certificates.X509RevocationMode) */, G_B3_1, G_B3_0);
MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* L_9 = G_B3_2;
NullCheck(L_9);
VirtualActionInvoker1< int32_t >::Invoke(7 /* System.Void Mono.Net.Security.MonoSslAuthenticationOptions::set_EncryptionPolicy(System.Net.Security.EncryptionPolicy) */, L_9, 0);
V_0 = L_9;
MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* L_10 = V_0;
il2cpp_codegen_runtime_class_init_inline(CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED_il2cpp_TypeInfo_var);
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_11;
L_11 = CancellationToken_get_None_m8C6A7AC91155BE2372CC22EA7B923073EA0D2BBB(NULL);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_12;
L_12 = MobileAuthenticatedStream_ProcessAuthentication_m0449087259B996D81ED6AC7A06ED19D46FAB0AF7(__this, (bool)0, L_10, L_11, NULL);
return L_12;
}
}
// System.Threading.Tasks.Task Mono.Net.Security.MobileAuthenticatedStream::ProcessAuthentication(System.Boolean,Mono.Net.Security.MonoSslAuthenticationOptions,System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* MobileAuthenticatedStream_ProcessAuthentication_m0449087259B996D81ED6AC7A06ED19D46FAB0AF7 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, bool ___runSynchronously0, MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* ___options1, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_Start_TisU3CProcessAuthenticationU3Ed__48_t111D22EA69719A6F3E97F02B3AD759B20CE299EB_mF1F7C95F19A89B5CCD58DB73DE8FFADD64D527A7_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CProcessAuthenticationU3Ed__48_t111D22EA69719A6F3E97F02B3AD759B20CE299EB V_0;
memset((&V_0), 0, sizeof(V_0));
{
(&V_0)->___U3CU3E4__this_3 = __this;
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___U3CU3E4__this_3), (void*)__this);
bool L_0 = ___runSynchronously0;
(&V_0)->___runSynchronously_4 = L_0;
MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* L_1 = ___options1;
(&V_0)->___options_2 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___options_2), (void*)L_1);
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_2 = ___cancellationToken2;
(&V_0)->___cancellationToken_5 = L_2;
Il2CppCodeGenWriteBarrier((void**)&(((&(&V_0)->___cancellationToken_5))->____source_0), (void*)NULL);
il2cpp_codegen_runtime_class_init_inline(AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06_il2cpp_TypeInfo_var);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06 L_3;
L_3 = AsyncTaskMethodBuilder_Create_m84CBB9FB50A2D132B0A549652557CBE01867A82B(NULL);
(&V_0)->___U3CU3Et__builder_1 = L_3;
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&(&V_0)->___U3CU3Et__builder_1))->___m_builder_1))->___m_coreState_1))->___m_stateMachine_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&(&V_0)->___U3CU3Et__builder_1))->___m_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_builder_1))->___m_task_2), (void*)NULL);
#endif
(&V_0)->___U3CU3E1__state_0 = (-1);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_4 = (&(&V_0)->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_Start_TisU3CProcessAuthenticationU3Ed__48_t111D22EA69719A6F3E97F02B3AD759B20CE299EB_mF1F7C95F19A89B5CCD58DB73DE8FFADD64D527A7(L_4, (&V_0), AsyncTaskMethodBuilder_Start_TisU3CProcessAuthenticationU3Ed__48_t111D22EA69719A6F3E97F02B3AD759B20CE299EB_mF1F7C95F19A89B5CCD58DB73DE8FFADD64D527A7_RuntimeMethod_var);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_5 = (&(&V_0)->___U3CU3Et__builder_1);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_6;
L_6 = AsyncTaskMethodBuilder_get_Task_mE9125D5F8B96F26D1BA5A5347ED82669521C7F9E(L_5, NULL);
return L_6;
}
}
// System.Int32 Mono.Net.Security.MobileAuthenticatedStream::Read(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MobileAuthenticatedStream_Read_m6EC3DEF7CDD081863F58DC0E16120040DEB79622 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___offset1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncReadRequest_t0DF29D88C5908BB80A3B6B6D6B3BC9BC23292BB1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_1_get_Result_mE41E789D49EA08D9BCEC87078B55D77B3EE3AD37_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
AsyncReadRequest_t0DF29D88C5908BB80A3B6B6D6B3BC9BC23292BB1* V_0 = NULL;
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___buffer0;
int32_t L_1 = ___offset1;
int32_t L_2 = ___count2;
AsyncReadRequest_t0DF29D88C5908BB80A3B6B6D6B3BC9BC23292BB1* L_3 = (AsyncReadRequest_t0DF29D88C5908BB80A3B6B6D6B3BC9BC23292BB1*)il2cpp_codegen_object_new(AsyncReadRequest_t0DF29D88C5908BB80A3B6B6D6B3BC9BC23292BB1_il2cpp_TypeInfo_var);
NullCheck(L_3);
AsyncReadRequest__ctor_mE67D11354154F1844761E0FFB869BBF05F1AE741(L_3, __this, (bool)1, L_0, L_1, L_2, NULL);
V_0 = L_3;
AsyncReadRequest_t0DF29D88C5908BB80A3B6B6D6B3BC9BC23292BB1* L_4 = V_0;
il2cpp_codegen_runtime_class_init_inline(CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED_il2cpp_TypeInfo_var);
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_5;
L_5 = CancellationToken_get_None_m8C6A7AC91155BE2372CC22EA7B923073EA0D2BBB(NULL);
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_6;
L_6 = MobileAuthenticatedStream_StartOperation_m8E632D323D991C8393DE86E4EC3E02DCA5AB31AF(__this, 0, L_4, L_5, NULL);
NullCheck(L_6);
int32_t L_7;
L_7 = Task_1_get_Result_mE41E789D49EA08D9BCEC87078B55D77B3EE3AD37(L_6, Task_1_get_Result_mE41E789D49EA08D9BCEC87078B55D77B3EE3AD37_RuntimeMethod_var);
return L_7;
}
}
// System.Void Mono.Net.Security.MobileAuthenticatedStream::Write(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MobileAuthenticatedStream_Write_mD339F8D2C127E4A82A7C22A0EE9AF82F0A07A942 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___offset1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncWriteRequest_t43F45610B0F7E69C3DD0DB5EFCA2E9306D4C95A3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
AsyncWriteRequest_t43F45610B0F7E69C3DD0DB5EFCA2E9306D4C95A3* V_0 = NULL;
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___buffer0;
int32_t L_1 = ___offset1;
int32_t L_2 = ___count2;
AsyncWriteRequest_t43F45610B0F7E69C3DD0DB5EFCA2E9306D4C95A3* L_3 = (AsyncWriteRequest_t43F45610B0F7E69C3DD0DB5EFCA2E9306D4C95A3*)il2cpp_codegen_object_new(AsyncWriteRequest_t43F45610B0F7E69C3DD0DB5EFCA2E9306D4C95A3_il2cpp_TypeInfo_var);
NullCheck(L_3);
AsyncWriteRequest__ctor_m627E554957F61C80484B10AD0D85849C1E9A0548(L_3, __this, (bool)1, L_0, L_1, L_2, NULL);
V_0 = L_3;
AsyncWriteRequest_t43F45610B0F7E69C3DD0DB5EFCA2E9306D4C95A3* L_4 = V_0;
il2cpp_codegen_runtime_class_init_inline(CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED_il2cpp_TypeInfo_var);
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_5;
L_5 = CancellationToken_get_None_m8C6A7AC91155BE2372CC22EA7B923073EA0D2BBB(NULL);
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_6;
L_6 = MobileAuthenticatedStream_StartOperation_m8E632D323D991C8393DE86E4EC3E02DCA5AB31AF(__this, 1, L_4, L_5, NULL);
NullCheck(L_6);
Task_Wait_m33955515E36BF6598FCEDA841C8C75F716DE5A4E(L_6, NULL);
return;
}
}
// System.Threading.Tasks.Task`1<System.Int32> Mono.Net.Security.MobileAuthenticatedStream::ReadAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t4C228DE57804012969575431CFF12D57C875552D* MobileAuthenticatedStream_ReadAsync_mFA908C90B562D2C958DC1762A90F883DB3AC5F13 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___offset1, int32_t ___count2, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncReadRequest_t0DF29D88C5908BB80A3B6B6D6B3BC9BC23292BB1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
AsyncReadRequest_t0DF29D88C5908BB80A3B6B6D6B3BC9BC23292BB1* V_0 = NULL;
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___buffer0;
int32_t L_1 = ___offset1;
int32_t L_2 = ___count2;
AsyncReadRequest_t0DF29D88C5908BB80A3B6B6D6B3BC9BC23292BB1* L_3 = (AsyncReadRequest_t0DF29D88C5908BB80A3B6B6D6B3BC9BC23292BB1*)il2cpp_codegen_object_new(AsyncReadRequest_t0DF29D88C5908BB80A3B6B6D6B3BC9BC23292BB1_il2cpp_TypeInfo_var);
NullCheck(L_3);
AsyncReadRequest__ctor_mE67D11354154F1844761E0FFB869BBF05F1AE741(L_3, __this, (bool)0, L_0, L_1, L_2, NULL);
V_0 = L_3;
AsyncReadRequest_t0DF29D88C5908BB80A3B6B6D6B3BC9BC23292BB1* L_4 = V_0;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_5 = ___cancellationToken3;
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_6;
L_6 = MobileAuthenticatedStream_StartOperation_m8E632D323D991C8393DE86E4EC3E02DCA5AB31AF(__this, 0, L_4, L_5, NULL);
return L_6;
}
}
// System.Threading.Tasks.Task Mono.Net.Security.MobileAuthenticatedStream::WriteAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* MobileAuthenticatedStream_WriteAsync_m764C5294A8B64C33B593CD388DC0BD9FFE120753 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___offset1, int32_t ___count2, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncWriteRequest_t43F45610B0F7E69C3DD0DB5EFCA2E9306D4C95A3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
AsyncWriteRequest_t43F45610B0F7E69C3DD0DB5EFCA2E9306D4C95A3* V_0 = NULL;
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___buffer0;
int32_t L_1 = ___offset1;
int32_t L_2 = ___count2;
AsyncWriteRequest_t43F45610B0F7E69C3DD0DB5EFCA2E9306D4C95A3* L_3 = (AsyncWriteRequest_t43F45610B0F7E69C3DD0DB5EFCA2E9306D4C95A3*)il2cpp_codegen_object_new(AsyncWriteRequest_t43F45610B0F7E69C3DD0DB5EFCA2E9306D4C95A3_il2cpp_TypeInfo_var);
NullCheck(L_3);
AsyncWriteRequest__ctor_m627E554957F61C80484B10AD0D85849C1E9A0548(L_3, __this, (bool)0, L_0, L_1, L_2, NULL);
V_0 = L_3;
AsyncWriteRequest_t43F45610B0F7E69C3DD0DB5EFCA2E9306D4C95A3* L_4 = V_0;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_5 = ___cancellationToken3;
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_6;
L_6 = MobileAuthenticatedStream_StartOperation_m8E632D323D991C8393DE86E4EC3E02DCA5AB31AF(__this, 1, L_4, L_5, NULL);
return L_6;
}
}
// System.Threading.Tasks.Task`1<System.Int32> Mono.Net.Security.MobileAuthenticatedStream::StartOperation(Mono.Net.Security.MobileAuthenticatedStream/OperationType,Mono.Net.Security.AsyncProtocolRequest,System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t4C228DE57804012969575431CFF12D57C875552D* MobileAuthenticatedStream_StartOperation_m8E632D323D991C8393DE86E4EC3E02DCA5AB31AF (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, int32_t ___type0, AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* ___asyncRequest1, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_Create_mE41F34163E40A97FB25427519FBDB7692F06D192_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__57_tCA8E70BCBB1E41B299D65B4CF483D4CBF7A11368_m08731DA0A532E6B6ED3E6943D1C4AC199CDE578A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_get_Task_m2DCDBC59910811D107353C5752AD58B28C2D97FE_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CStartOperationU3Ed__57_tCA8E70BCBB1E41B299D65B4CF483D4CBF7A11368 V_0;
memset((&V_0), 0, sizeof(V_0));
{
(&V_0)->___U3CU3E4__this_2 = __this;
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___U3CU3E4__this_2), (void*)__this);
int32_t L_0 = ___type0;
(&V_0)->___type_3 = L_0;
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_1 = ___asyncRequest1;
(&V_0)->___asyncRequest_4 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___asyncRequest_4), (void*)L_1);
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_2 = ___cancellationToken2;
(&V_0)->___cancellationToken_5 = L_2;
Il2CppCodeGenWriteBarrier((void**)&(((&(&V_0)->___cancellationToken_5))->____source_0), (void*)NULL);
il2cpp_codegen_runtime_class_init_inline(AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019_il2cpp_TypeInfo_var);
AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019 L_3;
L_3 = AsyncTaskMethodBuilder_1_Create_mE41F34163E40A97FB25427519FBDB7692F06D192(AsyncTaskMethodBuilder_1_Create_mE41F34163E40A97FB25427519FBDB7692F06D192_RuntimeMethod_var);
(&V_0)->___U3CU3Et__builder_1 = L_3;
Il2CppCodeGenWriteBarrier((void**)&((&(((&(&V_0)->___U3CU3Et__builder_1))->___m_coreState_1))->___m_stateMachine_0), (void*)NULL);
#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);
AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019* L_4 = (&(&V_0)->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__57_tCA8E70BCBB1E41B299D65B4CF483D4CBF7A11368_m08731DA0A532E6B6ED3E6943D1C4AC199CDE578A(L_4, (&V_0), AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__57_tCA8E70BCBB1E41B299D65B4CF483D4CBF7A11368_m08731DA0A532E6B6ED3E6943D1C4AC199CDE578A_RuntimeMethod_var);
AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019* L_5 = (&(&V_0)->___U3CU3Et__builder_1);
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_6;
L_6 = AsyncTaskMethodBuilder_1_get_Task_m2DCDBC59910811D107353C5752AD58B28C2D97FE(L_5, AsyncTaskMethodBuilder_1_get_Task_m2DCDBC59910811D107353C5752AD58B28C2D97FE_RuntimeMethod_var);
return L_6;
}
}
// System.Int32 Mono.Net.Security.MobileAuthenticatedStream::InternalRead(System.Byte[],System.Int32,System.Int32,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MobileAuthenticatedStream_InternalRead_m90FE0F2015227506EF5E6EA18E49EEA5E3A1C319 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___offset1, int32_t ___size2, bool* ___outWantMore3, const RuntimeMethod* method)
{
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* V_0 = NULL;
int32_t V_1 = 0;
bool V_2 = false;
int32_t V_3 = 0;
Exception_t* V_4 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* G_B2_0 = NULL;
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* G_B1_0 = NULL;
try
{// begin try (depth: 1)
{
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_0 = __this->___asyncHandshakeRequest_8;
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_1 = L_0;
G_B1_0 = L_1;
if (L_1)
{
G_B2_0 = L_1;
goto IL_0010_1;
}
}
{
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_2 = __this->___asyncReadRequest_9;
G_B2_0 = L_2;
}
IL_0010_1:
{
V_0 = G_B2_0;
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_3 = V_0;
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_4 = __this->___readBuffer_11;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = ___buffer0;
int32_t L_6 = ___offset1;
int32_t L_7 = ___size2;
ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942 L_8;
L_8 = MobileAuthenticatedStream_InternalRead_m5989243EA8E865C58630A151F50FD9286501238A(__this, L_3, L_4, L_5, L_6, L_7, NULL);
ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942 L_9 = L_8;
int32_t L_10 = L_9.___Item1_0;
V_1 = L_10;
bool L_11 = L_9.___Item2_1;
V_2 = L_11;
bool* L_12 = ___outWantMore3;
bool L_13 = V_2;
*((int8_t*)L_12) = (int8_t)L_13;
int32_t L_14 = V_1;
V_3 = L_14;
goto IL_0053;
}
}// 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_0036;
}
throw e;
}
CATCH_0036:
{// begin catch(System.Exception)
V_4 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
Exception_t* L_15 = V_4;
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_il2cpp_TypeInfo_var)));
Exception_t* L_16;
L_16 = MobileAuthenticatedStream_GetIOException_m80A6F9660142728B73A169E1B09AB8BE268DD517(L_15, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA25F6BDE622F13BBCD87A785C8019A938EF75A7B)), NULL);
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_17;
L_17 = MobileAuthenticatedStream_SetException_m490704BA8728AB01E7BA158FE545FD4D7C080448(__this, L_16, NULL);
bool* L_18 = ___outWantMore3;
*((int8_t*)L_18) = (int8_t)0;
V_3 = (-1);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0053;
}// end catch (depth: 1)
IL_0053:
{
int32_t L_19 = V_3;
return L_19;
}
}
// System.ValueTuple`2<System.Int32,System.Boolean> Mono.Net.Security.MobileAuthenticatedStream::InternalRead(Mono.Net.Security.AsyncProtocolRequest,Mono.Net.Security.BufferOffsetSize,System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942 MobileAuthenticatedStream_InternalRead_m5989243EA8E865C58630A151F50FD9286501238A (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* ___asyncRequest0, BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* ___internalBuffer1, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer2, int32_t ___offset3, int32_t ___size4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueTuple_2__ctor_m3A39BEA90C84F8D68C34883978E96D2C2630B423_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t G_B7_0 = 0;
int32_t G_B6_0 = 0;
int32_t G_B8_0 = 0;
int32_t G_B8_1 = 0;
{
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_0 = ___asyncRequest0;
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*)&MobileAuthenticatedStream_InternalRead_m5989243EA8E865C58630A151F50FD9286501238A_RuntimeMethod_var)));
}
IL_0009:
{
BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* L_2 = ___internalBuffer1;
NullCheck(L_2);
int32_t L_3 = L_2->___Size_2;
if (L_3)
{
goto IL_0039;
}
}
{
BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* L_4 = ___internalBuffer1;
NullCheck(L_4);
bool L_5 = L_4->___Complete_4;
if (L_5)
{
goto IL_0039;
}
}
{
BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* L_6 = ___internalBuffer1;
BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* L_7 = ___internalBuffer1;
int32_t L_8 = 0;
V_1 = L_8;
NullCheck(L_7);
L_7->___Size_2 = L_8;
int32_t L_9 = V_1;
NullCheck(L_6);
L_6->___Offset_1 = L_9;
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_10 = ___asyncRequest0;
int32_t L_11 = ___size4;
NullCheck(L_10);
AsyncProtocolRequest_RequestRead_mD55DC015A50E42EF2FA7DB75FE1E7E3FCFA3CFA0(L_10, L_11, NULL);
ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942 L_12;
memset((&L_12), 0, sizeof(L_12));
ValueTuple_2__ctor_m3A39BEA90C84F8D68C34883978E96D2C2630B423((&L_12), 0, (bool)1, /*hidden argument*/ValueTuple_2__ctor_m3A39BEA90C84F8D68C34883978E96D2C2630B423_RuntimeMethod_var);
return L_12;
}
IL_0039:
{
BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* L_13 = ___internalBuffer1;
NullCheck(L_13);
int32_t L_14 = L_13->___Size_2;
int32_t L_15 = ___size4;
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
int32_t L_16;
L_16 = Math_Min_m1F346FEDDC77AC1EC0C4EF1AC6BA59F0EC7980F8(L_14, L_15, NULL);
V_0 = L_16;
BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* L_17 = ___internalBuffer1;
NullCheck(L_17);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_18 = L_17->___Buffer_0;
BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* L_19 = ___internalBuffer1;
NullCheck(L_19);
int32_t L_20 = L_19->___Offset_1;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_21 = ___buffer2;
int32_t L_22 = ___offset3;
int32_t L_23 = V_0;
Buffer_BlockCopy_mD8CF7EC96ADA7A542CCA3F3C73510624E10197A9((RuntimeArray*)L_18, L_20, (RuntimeArray*)L_21, L_22, L_23, NULL);
BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* L_24 = ___internalBuffer1;
BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* L_25 = L_24;
NullCheck(L_25);
int32_t L_26 = L_25->___Offset_1;
int32_t L_27 = V_0;
NullCheck(L_25);
L_25->___Offset_1 = ((int32_t)il2cpp_codegen_add(L_26, L_27));
BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* L_28 = ___internalBuffer1;
BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* L_29 = L_28;
NullCheck(L_29);
int32_t L_30 = L_29->___Size_2;
int32_t L_31 = V_0;
NullCheck(L_29);
L_29->___Size_2 = ((int32_t)il2cpp_codegen_subtract(L_30, L_31));
int32_t L_32 = V_0;
BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* L_33 = ___internalBuffer1;
NullCheck(L_33);
bool L_34 = L_33->___Complete_4;
G_B6_0 = L_32;
if (L_34)
{
G_B7_0 = L_32;
goto IL_0088;
}
}
{
int32_t L_35 = V_0;
int32_t L_36 = ___size4;
G_B8_0 = ((((int32_t)L_35) < ((int32_t)L_36))? 1 : 0);
G_B8_1 = G_B6_0;
goto IL_0089;
}
IL_0088:
{
G_B8_0 = 0;
G_B8_1 = G_B7_0;
}
IL_0089:
{
ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942 L_37;
memset((&L_37), 0, sizeof(L_37));
ValueTuple_2__ctor_m3A39BEA90C84F8D68C34883978E96D2C2630B423((&L_37), G_B8_1, (bool)G_B8_0, /*hidden argument*/ValueTuple_2__ctor_m3A39BEA90C84F8D68C34883978E96D2C2630B423_RuntimeMethod_var);
return L_37;
}
}
// System.Boolean Mono.Net.Security.MobileAuthenticatedStream::InternalWrite(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MobileAuthenticatedStream_InternalWrite_mDCC759D5D81736625897B956239DBEEE8F7AE743 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer0, int32_t ___offset1, int32_t ___size2, const RuntimeMethod* method)
{
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* V_0 = NULL;
int32_t V_1 = 0;
bool V_2 = false;
Exception_t* V_3 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
{
int32_t L_0 = __this->___operation_16;
V_1 = L_0;
int32_t L_1 = V_1;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_1, 1)))
{
case 0:
{
goto IL_0029_1;
}
case 1:
{
goto IL_0051_1;
}
case 2:
{
goto IL_0029_1;
}
case 3:
{
goto IL_003b_1;
}
case 4:
{
goto IL_0032_1;
}
case 5:
{
goto IL_0032_1;
}
}
}
{
goto IL_0051_1;
}
IL_0029_1:
{
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_2 = __this->___asyncHandshakeRequest_8;
V_0 = L_2;
goto IL_0057_1;
}
IL_0032_1:
{
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_3 = __this->___asyncWriteRequest_10;
V_0 = L_3;
goto IL_0057_1;
}
IL_003b_1:
{
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_4 = __this->___asyncReadRequest_9;
V_0 = L_4;
MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* L_5 = __this->___xobileTlsContext_6;
NullCheck(L_5);
bool L_6;
L_6 = VirtualFuncInvoker0< bool >::Invoke(14 /* System.Boolean Mono.Net.Security.MobileTlsContext::PendingRenegotiation() */, L_5);
if (!L_6)
{
goto IL_0057_1;
}
}
{
goto IL_0057_1;
}
IL_0051_1:
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_il2cpp_TypeInfo_var)));
Exception_t* L_7;
L_7 = MobileAuthenticatedStream_GetInternalError_m59D75502C4CAC329B87974927FF39AF718D15BDC(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_InternalWrite_mDCC759D5D81736625897B956239DBEEE8F7AE743_RuntimeMethod_var)));
}
IL_0057_1:
{
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_8 = V_0;
if (L_8)
{
goto IL_0069_1;
}
}
{
int32_t L_9 = __this->___operation_16;
if ((((int32_t)L_9) == ((int32_t)6)))
{
goto IL_0069_1;
}
}
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_il2cpp_TypeInfo_var)));
Exception_t* L_10;
L_10 = MobileAuthenticatedStream_GetInternalError_m59D75502C4CAC329B87974927FF39AF718D15BDC(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_InternalWrite_mDCC759D5D81736625897B956239DBEEE8F7AE743_RuntimeMethod_var)));
}
IL_0069_1:
{
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_11 = V_0;
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_12 = __this->___writeBuffer_12;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_13 = ___buffer0;
int32_t L_14 = ___offset1;
int32_t L_15 = ___size2;
bool L_16;
L_16 = MobileAuthenticatedStream_InternalWrite_m0B6A441B8194AAE474EECE582DA3627AB26CFB54(__this, L_11, L_12, L_13, L_14, L_15, NULL);
V_2 = L_16;
goto IL_0093;
}
}// 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_007c;
}
throw e;
}
CATCH_007c:
{// begin catch(System.Exception)
V_3 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
Exception_t* L_17 = V_3;
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_il2cpp_TypeInfo_var)));
Exception_t* L_18;
L_18 = MobileAuthenticatedStream_GetIOException_m80A6F9660142728B73A169E1B09AB8BE268DD517(L_17, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E96087CB3CFB8FA010625C93BB4A5CF8279FF69)), NULL);
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_19;
L_19 = MobileAuthenticatedStream_SetException_m490704BA8728AB01E7BA158FE545FD4D7C080448(__this, L_18, NULL);
V_2 = (bool)0;
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0093;
}// end catch (depth: 1)
IL_0093:
{
bool L_20 = V_2;
return L_20;
}
}
// System.Boolean Mono.Net.Security.MobileAuthenticatedStream::InternalWrite(Mono.Net.Security.AsyncProtocolRequest,Mono.Net.Security.BufferOffsetSize2,System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MobileAuthenticatedStream_InternalWrite_m0B6A441B8194AAE474EECE582DA3627AB26CFB54 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* ___asyncRequest0, BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* ___internalBuffer1, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer2, int32_t ___offset3, int32_t ___size4, const RuntimeMethod* method)
{
{
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_0 = ___asyncRequest0;
if (L_0)
{
goto IL_0031;
}
}
{
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_1 = __this->___lastException_7;
if (!L_1)
{
goto IL_000d;
}
}
{
return (bool)0;
}
IL_000d:
{
int32_t* L_2 = (&__this->___closeRequested_14);
int32_t L_3;
L_3 = Interlocked_Exchange_m1D23CC1BEB47E20FA336837BF97C292AE6B17629(L_2, 1, NULL);
if (L_3)
{
goto IL_0023;
}
}
{
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_4 = ___internalBuffer1;
NullCheck(L_4);
BufferOffsetSize2_Reset_m1B80AE03ED0C2BAC447F3BDEC8F827CEE6053E7F(L_4, NULL);
goto IL_0031;
}
IL_0023:
{
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_5 = ___internalBuffer1;
NullCheck(L_5);
int32_t L_6;
L_6 = BufferOffsetSize_get_Remaining_mB3CB4287B2AAAD7976374B914E95ABFCE71B1A4E(L_5, NULL);
if (L_6)
{
goto IL_0031;
}
}
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_7 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_7);
InvalidOperationException__ctor_m1BE9BD198B904AA1D94F4B10DA88077DFD44B7A5(L_7, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_InternalWrite_m0B6A441B8194AAE474EECE582DA3627AB26CFB54_RuntimeMethod_var)));
}
IL_0031:
{
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_8 = ___internalBuffer1;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = ___buffer2;
int32_t L_10 = ___offset3;
int32_t L_11 = ___size4;
NullCheck(L_8);
BufferOffsetSize2_AppendData_mA85DD811BF73EB8F153F9DB2668C11E907F258A5(L_8, L_9, L_10, L_11, NULL);
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_12 = ___asyncRequest0;
if (!L_12)
{
goto IL_0045;
}
}
{
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_13 = ___asyncRequest0;
NullCheck(L_13);
AsyncProtocolRequest_RequestWrite_mA6AB8ACEA16A14CD6A232DA256C417CD183EE69F(L_13, NULL);
}
IL_0045:
{
return (bool)1;
}
}
// System.Threading.Tasks.Task`1<System.Int32> Mono.Net.Security.MobileAuthenticatedStream::InnerRead(System.Boolean,System.Int32,System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t4C228DE57804012969575431CFF12D57C875552D* MobileAuthenticatedStream_InnerRead_m62766E47172B5468B6934BED507A4EF4054396ED (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, bool ___sync0, int32_t ___requestedSize1, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_Create_mE41F34163E40A97FB25427519FBDB7692F06D192_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__66_tDA84F0E1193C16C54FE1735B4B5F77FB65A68982_mA1B2B31EDE3E7E33BB18EC9F5ABB74DDD721A57A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_get_Task_m2DCDBC59910811D107353C5752AD58B28C2D97FE_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CInnerReadU3Ed__66_tDA84F0E1193C16C54FE1735B4B5F77FB65A68982 V_0;
memset((&V_0), 0, sizeof(V_0));
{
(&V_0)->___U3CU3E4__this_2 = __this;
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___U3CU3E4__this_2), (void*)__this);
bool L_0 = ___sync0;
(&V_0)->___sync_5 = L_0;
int32_t L_1 = ___requestedSize1;
(&V_0)->___requestedSize_4 = L_1;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_2 = ___cancellationToken2;
(&V_0)->___cancellationToken_3 = L_2;
Il2CppCodeGenWriteBarrier((void**)&(((&(&V_0)->___cancellationToken_3))->____source_0), (void*)NULL);
il2cpp_codegen_runtime_class_init_inline(AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019_il2cpp_TypeInfo_var);
AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019 L_3;
L_3 = AsyncTaskMethodBuilder_1_Create_mE41F34163E40A97FB25427519FBDB7692F06D192(AsyncTaskMethodBuilder_1_Create_mE41F34163E40A97FB25427519FBDB7692F06D192_RuntimeMethod_var);
(&V_0)->___U3CU3Et__builder_1 = L_3;
Il2CppCodeGenWriteBarrier((void**)&((&(((&(&V_0)->___U3CU3Et__builder_1))->___m_coreState_1))->___m_stateMachine_0), (void*)NULL);
#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);
AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019* L_4 = (&(&V_0)->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__66_tDA84F0E1193C16C54FE1735B4B5F77FB65A68982_mA1B2B31EDE3E7E33BB18EC9F5ABB74DDD721A57A(L_4, (&V_0), AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__66_tDA84F0E1193C16C54FE1735B4B5F77FB65A68982_mA1B2B31EDE3E7E33BB18EC9F5ABB74DDD721A57A_RuntimeMethod_var);
AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019* L_5 = (&(&V_0)->___U3CU3Et__builder_1);
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_6;
L_6 = AsyncTaskMethodBuilder_1_get_Task_m2DCDBC59910811D107353C5752AD58B28C2D97FE(L_5, AsyncTaskMethodBuilder_1_get_Task_m2DCDBC59910811D107353C5752AD58B28C2D97FE_RuntimeMethod_var);
return L_6;
}
}
// System.Threading.Tasks.Task Mono.Net.Security.MobileAuthenticatedStream::InnerWrite(System.Boolean,System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* MobileAuthenticatedStream_InnerWrite_m137287DEDB6C2BC5E8DDDAC999787FA5A0B4B570 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, bool ___sync0, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_Start_TisU3CInnerWriteU3Ed__67_tC5B5BCC77DDC7AEC5DC77B1C9D086B550402B229_m82D3611019196D882B60AC9DF641B2DFA5D59D35_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CInnerWriteU3Ed__67_tC5B5BCC77DDC7AEC5DC77B1C9D086B550402B229 V_0;
memset((&V_0), 0, sizeof(V_0));
{
(&V_0)->___U3CU3E4__this_3 = __this;
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___U3CU3E4__this_3), (void*)__this);
bool L_0 = ___sync0;
(&V_0)->___sync_4 = L_0;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_1 = ___cancellationToken1;
(&V_0)->___cancellationToken_2 = L_1;
Il2CppCodeGenWriteBarrier((void**)&(((&(&V_0)->___cancellationToken_2))->____source_0), (void*)NULL);
il2cpp_codegen_runtime_class_init_inline(AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06_il2cpp_TypeInfo_var);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06 L_2;
L_2 = AsyncTaskMethodBuilder_Create_m84CBB9FB50A2D132B0A549652557CBE01867A82B(NULL);
(&V_0)->___U3CU3Et__builder_1 = L_2;
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&(&V_0)->___U3CU3Et__builder_1))->___m_builder_1))->___m_coreState_1))->___m_stateMachine_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&(&V_0)->___U3CU3Et__builder_1))->___m_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_builder_1))->___m_task_2), (void*)NULL);
#endif
(&V_0)->___U3CU3E1__state_0 = (-1);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_3 = (&(&V_0)->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_Start_TisU3CInnerWriteU3Ed__67_tC5B5BCC77DDC7AEC5DC77B1C9D086B550402B229_m82D3611019196D882B60AC9DF641B2DFA5D59D35(L_3, (&V_0), AsyncTaskMethodBuilder_Start_TisU3CInnerWriteU3Ed__67_tC5B5BCC77DDC7AEC5DC77B1C9D086B550402B229_m82D3611019196D882B60AC9DF641B2DFA5D59D35_RuntimeMethod_var);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_4 = (&(&V_0)->___U3CU3Et__builder_1);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_5;
L_5 = AsyncTaskMethodBuilder_get_Task_mE9125D5F8B96F26D1BA5A5347ED82669521C7F9E(L_4, NULL);
return L_5;
}
}
// Mono.Net.Security.AsyncOperationStatus Mono.Net.Security.MobileAuthenticatedStream::ProcessHandshake(Mono.Net.Security.AsyncOperationStatus,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MobileAuthenticatedStream_ProcessHandshake_m30F67A233EAB7CE44A6B6E8E7F4E958DD888F63F (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, int32_t ___status0, bool ___renegotiate1, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
bool V_1 = false;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t V_4 = 0;
Exception_t* V_5 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = __this->___ioLock_13;
V_0 = L_0;
V_1 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00f4:
{// begin finally (depth: 1)
{
bool L_1 = V_1;
if (!L_1)
{
goto IL_00fd;
}
}
{
RuntimeObject* L_2 = V_0;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_2, NULL);
}
IL_00fd:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
RuntimeObject* L_3 = V_0;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_3, (&V_1), NULL);
int32_t L_4 = __this->___operation_16;
V_3 = L_4;
int32_t L_5 = V_3;
switch (L_5)
{
case 0:
{
goto IL_0030_1;
}
case 1:
{
goto IL_005a_1;
}
case 2:
{
goto IL_0042_1;
}
case 3:
{
goto IL_005a_1;
}
}
}
{
goto IL_0054_1;
}
IL_0030_1:
{
bool L_6 = ___renegotiate1;
if (!L_6)
{
goto IL_0039_1;
}
}
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_il2cpp_TypeInfo_var)));
Exception_t* L_7;
L_7 = MobileAuthenticatedStream_GetInternalError_m59D75502C4CAC329B87974927FF39AF718D15BDC(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_ProcessHandshake_m30F67A233EAB7CE44A6B6E8E7F4E958DD888F63F_RuntimeMethod_var)));
}
IL_0039_1:
{
__this->___operation_16 = 1;
goto IL_005a_1;
}
IL_0042_1:
{
bool L_8 = ___renegotiate1;
if (L_8)
{
goto IL_004b_1;
}
}
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_il2cpp_TypeInfo_var)));
Exception_t* L_9;
L_9 = MobileAuthenticatedStream_GetInternalError_m59D75502C4CAC329B87974927FF39AF718D15BDC(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_ProcessHandshake_m30F67A233EAB7CE44A6B6E8E7F4E958DD888F63F_RuntimeMethod_var)));
}
IL_004b_1:
{
__this->___operation_16 = 3;
goto IL_005a_1;
}
IL_0054_1:
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_il2cpp_TypeInfo_var)));
Exception_t* L_10;
L_10 = MobileAuthenticatedStream_GetInternalError_m59D75502C4CAC329B87974927FF39AF718D15BDC(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_ProcessHandshake_m30F67A233EAB7CE44A6B6E8E7F4E958DD888F63F_RuntimeMethod_var)));
}
IL_005a_1:
{
int32_t L_11 = ___status0;
switch (L_11)
{
case 0:
{
goto IL_006e_1;
}
case 1:
{
goto IL_009f_1;
}
case 2:
{
goto IL_008e_1;
}
}
}
{
goto IL_0099_1;
}
IL_006e_1:
{
bool L_12 = ___renegotiate1;
if (!L_12)
{
goto IL_007e_1;
}
}
{
MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* L_13 = __this->___xobileTlsContext_6;
NullCheck(L_13);
VirtualActionInvoker0::Invoke(15 /* System.Void Mono.Net.Security.MobileTlsContext::Renegotiate() */, L_13);
goto IL_0089_1;
}
IL_007e_1:
{
MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* L_14 = __this->___xobileTlsContext_6;
NullCheck(L_14);
VirtualActionInvoker0::Invoke(6 /* System.Void Mono.Net.Security.MobileTlsContext::StartHandshake() */, L_14);
}
IL_0089_1:
{
V_4 = 1;
goto IL_00fe;
}
IL_008e_1:
{
IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910* L_15 = (IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910_il2cpp_TypeInfo_var)));
NullCheck(L_15);
IOException__ctor_mE0612A16064F93C7EBB468D6874777BD70CB50CA(L_15, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral96DDBF9A4A89732F34FC5A0EF7DBBB4E91C5BCC8)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_ProcessHandshake_m30F67A233EAB7CE44A6B6E8E7F4E958DD888F63F_RuntimeMethod_var)));
}
IL_0099_1:
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_16 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_16);
InvalidOperationException__ctor_m1BE9BD198B904AA1D94F4B10DA88077DFD44B7A5(L_16, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_ProcessHandshake_m30F67A233EAB7CE44A6B6E8E7F4E958DD888F63F_RuntimeMethod_var)));
}
IL_009f_1:
{
V_2 = 1;
}
try
{// begin try (depth: 2)
{
MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* L_17 = __this->___xobileTlsContext_6;
NullCheck(L_17);
bool L_18;
L_18 = VirtualFuncInvoker0< bool >::Invoke(7 /* System.Boolean Mono.Net.Security.MobileTlsContext::ProcessHandshake() */, L_17);
if (!L_18)
{
goto IL_00c2_2;
}
}
{
MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* L_19 = __this->___xobileTlsContext_6;
NullCheck(L_19);
VirtualActionInvoker0::Invoke(8 /* System.Void Mono.Net.Security.MobileTlsContext::FinishHandshake() */, L_19);
__this->___operation_16 = 2;
V_2 = 3;
}
IL_00c2_2:
{
goto IL_00dc_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_00c4_1;
}
throw e;
}
CATCH_00c4_1:
{// begin catch(System.Exception)
V_5 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
Exception_t* L_20 = V_5;
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_il2cpp_TypeInfo_var)));
Exception_t* L_21;
L_21 = MobileAuthenticatedStream_GetSSPIException_m04F38FF55AEEC19087840F3A722D2C225050F427(L_20, NULL);
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_22;
L_22 = MobileAuthenticatedStream_SetException_m490704BA8728AB01E7BA158FE545FD4D7C080448(__this, L_21, NULL);
Stream_Dispose_mCDB42F32A17541CCA6D3A5906827A401570B07A8(__this, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_ProcessHandshake_m30F67A233EAB7CE44A6B6E8E7F4E958DD888F63F_RuntimeMethod_var)));
}// end catch (depth: 2)
IL_00dc_1:
{
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_23 = __this->___lastException_7;
if (!L_23)
{
goto IL_00ef_1;
}
}
{
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_24 = __this->___lastException_7;
NullCheck(L_24);
ExceptionDispatchInfo_Throw_m06F398E346AE94C1CCEB636763A8CB26511F6330(L_24, NULL);
}
IL_00ef_1:
{
int32_t L_25 = V_2;
V_4 = L_25;
goto IL_00fe;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00fe:
{
int32_t L_26 = V_4;
return L_26;
}
}
// System.ValueTuple`2<System.Int32,System.Boolean> Mono.Net.Security.MobileAuthenticatedStream::ProcessRead(Mono.Net.Security.BufferOffsetSize)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942 MobileAuthenticatedStream_ProcessRead_mB8FC6C872B55E0631A80824636220F3B73270441 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* ___userBuffer0, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
bool V_1 = false;
ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942 V_2;
memset((&V_2), 0, sizeof(V_2));
ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942 G_B5_0;
memset((&G_B5_0), 0, sizeof(G_B5_0));
ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942 G_B4_0;
memset((&G_B4_0), 0, sizeof(G_B4_0));
{
RuntimeObject* L_0 = __this->___ioLock_13;
V_0 = L_0;
V_1 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0061:
{// begin finally (depth: 1)
{
bool L_1 = V_1;
if (!L_1)
{
goto IL_006a;
}
}
{
RuntimeObject* L_2 = V_0;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_2, NULL);
}
IL_006a:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
RuntimeObject* L_3 = V_0;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_3, (&V_1), NULL);
int32_t L_4 = __this->___operation_16;
if ((((int32_t)L_4) == ((int32_t)2)))
{
goto IL_0020_1;
}
}
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_il2cpp_TypeInfo_var)));
Exception_t* L_5;
L_5 = MobileAuthenticatedStream_GetInternalError_m59D75502C4CAC329B87974927FF39AF718D15BDC(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_ProcessRead_mB8FC6C872B55E0631A80824636220F3B73270441_RuntimeMethod_var)));
}
IL_0020_1:
{
__this->___operation_16 = 4;
MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* L_6 = __this->___xobileTlsContext_6;
BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* L_7 = ___userBuffer0;
NullCheck(L_7);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = L_7->___Buffer_0;
BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* L_9 = ___userBuffer0;
NullCheck(L_9);
int32_t L_10 = L_9->___Offset_1;
BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* L_11 = ___userBuffer0;
NullCheck(L_11);
int32_t L_12 = L_11->___Size_2;
NullCheck(L_6);
ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942 L_13;
L_13 = VirtualFuncInvoker3< ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(11 /* System.ValueTuple`2<System.Int32,System.Boolean> Mono.Net.Security.MobileTlsContext::Read(System.Byte[],System.Int32,System.Int32) */, L_6, L_8, L_10, L_12);
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_14 = __this->___lastException_7;
G_B4_0 = L_13;
if (!L_14)
{
G_B5_0 = L_13;
goto IL_0057_1;
}
}
{
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_15 = __this->___lastException_7;
NullCheck(L_15);
ExceptionDispatchInfo_Throw_m06F398E346AE94C1CCEB636763A8CB26511F6330(L_15, NULL);
G_B5_0 = G_B4_0;
}
IL_0057_1:
{
__this->___operation_16 = 2;
V_2 = G_B5_0;
goto IL_006b;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_006b:
{
ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942 L_16 = V_2;
return L_16;
}
}
// System.ValueTuple`2<System.Int32,System.Boolean> Mono.Net.Security.MobileAuthenticatedStream::ProcessWrite(Mono.Net.Security.BufferOffsetSize)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942 MobileAuthenticatedStream_ProcessWrite_mC26A594E550853A399B5AD111CE704D06C500992 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* ___userBuffer0, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
bool V_1 = false;
ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942 V_2;
memset((&V_2), 0, sizeof(V_2));
ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942 G_B5_0;
memset((&G_B5_0), 0, sizeof(G_B5_0));
ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942 G_B4_0;
memset((&G_B4_0), 0, sizeof(G_B4_0));
{
RuntimeObject* L_0 = __this->___ioLock_13;
V_0 = L_0;
V_1 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0061:
{// begin finally (depth: 1)
{
bool L_1 = V_1;
if (!L_1)
{
goto IL_006a;
}
}
{
RuntimeObject* L_2 = V_0;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_2, NULL);
}
IL_006a:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
RuntimeObject* L_3 = V_0;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_3, (&V_1), NULL);
int32_t L_4 = __this->___operation_16;
if ((((int32_t)L_4) == ((int32_t)2)))
{
goto IL_0020_1;
}
}
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_il2cpp_TypeInfo_var)));
Exception_t* L_5;
L_5 = MobileAuthenticatedStream_GetInternalError_m59D75502C4CAC329B87974927FF39AF718D15BDC(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_ProcessWrite_mC26A594E550853A399B5AD111CE704D06C500992_RuntimeMethod_var)));
}
IL_0020_1:
{
__this->___operation_16 = 5;
MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* L_6 = __this->___xobileTlsContext_6;
BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* L_7 = ___userBuffer0;
NullCheck(L_7);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = L_7->___Buffer_0;
BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* L_9 = ___userBuffer0;
NullCheck(L_9);
int32_t L_10 = L_9->___Offset_1;
BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* L_11 = ___userBuffer0;
NullCheck(L_11);
int32_t L_12 = L_11->___Size_2;
NullCheck(L_6);
ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942 L_13;
L_13 = VirtualFuncInvoker3< ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(12 /* System.ValueTuple`2<System.Int32,System.Boolean> Mono.Net.Security.MobileTlsContext::Write(System.Byte[],System.Int32,System.Int32) */, L_6, L_8, L_10, L_12);
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_14 = __this->___lastException_7;
G_B4_0 = L_13;
if (!L_14)
{
G_B5_0 = L_13;
goto IL_0057_1;
}
}
{
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_15 = __this->___lastException_7;
NullCheck(L_15);
ExceptionDispatchInfo_Throw_m06F398E346AE94C1CCEB636763A8CB26511F6330(L_15, NULL);
G_B5_0 = G_B4_0;
}
IL_0057_1:
{
__this->___operation_16 = 2;
V_2 = G_B5_0;
goto IL_006b;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_006b:
{
ValueTuple_2_tB358DB210B9947851BE1C2586AD7532BEB639942 L_16 = V_2;
return L_16;
}
}
// System.Boolean Mono.Net.Security.MobileAuthenticatedStream::get_IsAuthenticated()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MobileAuthenticatedStream_get_IsAuthenticated_m46A9D2671C2864D1F5C559FC6C5284701BA8AB1E (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
int32_t G_B5_0 = 0;
{
RuntimeObject* L_0 = __this->___ioLock_13;
V_0 = L_0;
V_1 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0032:
{// begin finally (depth: 1)
{
bool L_1 = V_1;
if (!L_1)
{
goto IL_003b;
}
}
{
RuntimeObject* L_2 = V_0;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_2, NULL);
}
IL_003b:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
RuntimeObject* L_3 = V_0;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_3, (&V_1), NULL);
MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* L_4 = __this->___xobileTlsContext_6;
if (!L_4)
{
goto IL_002e_1;
}
}
{
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_5 = __this->___lastException_7;
if (L_5)
{
goto IL_002e_1;
}
}
{
MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* L_6 = __this->___xobileTlsContext_6;
NullCheck(L_6);
bool L_7;
L_7 = VirtualFuncInvoker0< bool >::Invoke(5 /* System.Boolean Mono.Net.Security.MobileTlsContext::get_IsAuthenticated() */, L_6);
G_B5_0 = ((int32_t)(L_7));
goto IL_002f_1;
}
IL_002e_1:
{
G_B5_0 = 0;
}
IL_002f_1:
{
V_2 = (bool)G_B5_0;
goto IL_003c;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_003c:
{
bool L_8 = V_2;
return L_8;
}
}
// System.Void Mono.Net.Security.MobileAuthenticatedStream::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MobileAuthenticatedStream_Dispose_m0D094AAD63D7E66A3F88EA02B58CC039BF9D0F52 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, bool ___disposing0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBD644D3A09E6018C0DD586854D34E1CD3EE727A0);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
bool V_1 = false;
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0048:
{// begin finally (depth: 1)
bool L_0 = ___disposing0;
AuthenticatedStream_Dispose_m031F600EE876A06427FB0713D992FF02B9C3320F(__this, L_0, NULL);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
RuntimeObject* L_1 = __this->___ioLock_13;
V_0 = L_1;
V_1 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_003e_1:
{// begin finally (depth: 2)
{
bool L_2 = V_1;
if (!L_2)
{
goto IL_0047_1;
}
}
{
RuntimeObject* L_3 = V_0;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_3, NULL);
}
IL_0047_1:
{
return;
}
}// end finally (depth: 2)
});
try
{// begin try (depth: 2)
{
RuntimeObject* L_4 = V_0;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_4, (&V_1), NULL);
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_5 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var);
NullCheck(L_5);
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_5, _stringLiteralBD644D3A09E6018C0DD586854D34E1CD3EE727A0, NULL);
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_6;
L_6 = MobileAuthenticatedStream_SetException_m490704BA8728AB01E7BA158FE545FD4D7C080448(__this, L_5, NULL);
MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* L_7 = __this->___xobileTlsContext_6;
if (!L_7)
{
goto IL_003c_2;
}
}
{
MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* L_8 = __this->___xobileTlsContext_6;
NullCheck(L_8);
MobileTlsContext_Dispose_m7C7D11F95AC2F7663D397D6FA4ECF82ECC7C0F9A(L_8, NULL);
__this->___xobileTlsContext_6 = (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___xobileTlsContext_6), (void*)(MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476*)NULL);
}
IL_003c_2:
{
goto IL_0050;
}
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0050:
{
return;
}
}
// System.Void Mono.Net.Security.MobileAuthenticatedStream::Flush()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MobileAuthenticatedStream_Flush_mCD0E572BA47A644E4B22167074AC8B4B926E6C60 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, const RuntimeMethod* method)
{
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0;
L_0 = AuthenticatedStream_get_InnerStream_m5BDA4857898A90C696DAD90FD61C536FC3EB10C7_inline(__this, NULL);
NullCheck(L_0);
VirtualActionInvoker0::Invoke(20 /* System.Void System.IO.Stream::Flush() */, L_0);
return;
}
}
// System.Security.Cryptography.X509Certificates.X509Certificate Mono.Net.Security.MobileAuthenticatedStream::get_LocalCertificate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* MobileAuthenticatedStream_get_LocalCertificate_m59FF8438D988F2CE633B454CE2B54D614E6C50EF (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
bool V_1 = false;
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* V_2 = NULL;
{
RuntimeObject* L_0 = __this->___ioLock_13;
V_0 = L_0;
V_1 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0022:
{// begin finally (depth: 1)
{
bool L_1 = V_1;
if (!L_1)
{
goto IL_002b;
}
}
{
RuntimeObject* L_2 = V_0;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_2, NULL);
}
IL_002b:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
RuntimeObject* L_3 = V_0;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_3, (&V_1), NULL);
MobileAuthenticatedStream_CheckThrow_m9E35E722A793A807809AD00C9756997AB7561396(__this, (bool)1, (bool)0, NULL);
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_4;
L_4 = MobileAuthenticatedStream_get_InternalLocalCertificate_m2CD310D810957E8E1F819BA7AFF4E6640BFB136F(__this, NULL);
V_2 = L_4;
goto IL_002c;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_002c:
{
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_5 = V_2;
return L_5;
}
}
// System.Security.Cryptography.X509Certificates.X509Certificate Mono.Net.Security.MobileAuthenticatedStream::get_InternalLocalCertificate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* MobileAuthenticatedStream_get_InternalLocalCertificate_m2CD310D810957E8E1F819BA7AFF4E6640BFB136F (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
bool V_1 = false;
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* V_2 = NULL;
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* G_B6_0 = NULL;
{
RuntimeObject* L_0 = __this->___ioLock_13;
V_0 = L_0;
V_1 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_004d:
{// begin finally (depth: 1)
{
bool L_1 = V_1;
if (!L_1)
{
goto IL_0056;
}
}
{
RuntimeObject* L_2 = V_0;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_2, NULL);
}
IL_0056:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
RuntimeObject* L_3 = V_0;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_3, (&V_1), NULL);
MobileAuthenticatedStream_CheckThrow_m9E35E722A793A807809AD00C9756997AB7561396(__this, (bool)0, (bool)0, NULL);
MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* L_4 = __this->___xobileTlsContext_6;
if (L_4)
{
goto IL_0025_1;
}
}
{
V_2 = (X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4*)NULL;
goto IL_0057;
}
IL_0025_1:
{
MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* L_5 = __this->___xobileTlsContext_6;
NullCheck(L_5);
bool L_6;
L_6 = MobileTlsContext_get_IsServer_m79E765F4FA8DAF1C98322134D48F6CACBEC824B7_inline(L_5, NULL);
if (L_6)
{
goto IL_003f_1;
}
}
{
MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* L_7 = __this->___xobileTlsContext_6;
NullCheck(L_7);
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_8;
L_8 = VirtualFuncInvoker0< X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* >::Invoke(9 /* System.Security.Cryptography.X509Certificates.X509Certificate Mono.Net.Security.MobileTlsContext::get_LocalClientCertificate() */, L_7);
G_B6_0 = L_8;
goto IL_004a_1;
}
IL_003f_1:
{
MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* L_9 = __this->___xobileTlsContext_6;
NullCheck(L_9);
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_10;
L_10 = MobileTlsContext_get_LocalServerCertificate_m20FDC85F1F18C42644D48872EBAF9A6247624E09_inline(L_9, NULL);
G_B6_0 = L_10;
}
IL_004a_1:
{
V_2 = G_B6_0;
goto IL_0057;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0057:
{
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_11 = V_2;
return L_11;
}
}
// System.Int64 Mono.Net.Security.MobileAuthenticatedStream::Seek(System.Int64,System.IO.SeekOrigin)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t MobileAuthenticatedStream_Seek_mC6C077D712D53180D6D3676CCAB67810A57041DE (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, int64_t ___offset0, int32_t ___origin1, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_0);
NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF(L_0, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_Seek_mC6C077D712D53180D6D3676CCAB67810A57041DE_RuntimeMethod_var)));
}
}
// System.Boolean Mono.Net.Security.MobileAuthenticatedStream::get_CanRead()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MobileAuthenticatedStream_get_CanRead_m206F7DA5CC6E445B2E23678344AD847C72929BED (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, const RuntimeMethod* method)
{
{
bool L_0;
L_0 = VirtualFuncInvoker0< bool >::Invoke(37 /* System.Boolean System.Net.Security.AuthenticatedStream::get_IsAuthenticated() */, __this);
if (!L_0)
{
goto IL_0014;
}
}
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_1;
L_1 = AuthenticatedStream_get_InnerStream_m5BDA4857898A90C696DAD90FD61C536FC3EB10C7_inline(__this, NULL);
NullCheck(L_1);
bool L_2;
L_2 = VirtualFuncInvoker0< bool >::Invoke(7 /* System.Boolean System.IO.Stream::get_CanRead() */, L_1);
return L_2;
}
IL_0014:
{
return (bool)0;
}
}
// System.Boolean Mono.Net.Security.MobileAuthenticatedStream::get_CanTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MobileAuthenticatedStream_get_CanTimeout_m214E084A9D834879A6D199922B019E4D55291512 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, const RuntimeMethod* method)
{
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0;
L_0 = AuthenticatedStream_get_InnerStream_m5BDA4857898A90C696DAD90FD61C536FC3EB10C7_inline(__this, NULL);
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.Boolean Mono.Net.Security.MobileAuthenticatedStream::get_CanWrite()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MobileAuthenticatedStream_get_CanWrite_m6FBD6254C19E3391BAC2EFFDE46005BB0CDDEA84 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, const RuntimeMethod* method)
{
{
bool L_0;
L_0 = VirtualFuncInvoker0< bool >::Invoke(37 /* System.Boolean System.Net.Security.AuthenticatedStream::get_IsAuthenticated() */, __this);
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_1;
L_1 = AuthenticatedStream_get_InnerStream_m5BDA4857898A90C696DAD90FD61C536FC3EB10C7_inline(__this, NULL);
NullCheck(L_1);
bool L_2;
L_2 = VirtualFuncInvoker0< bool >::Invoke(10 /* System.Boolean System.IO.Stream::get_CanWrite() */, L_1);
if (!((int32_t)((int32_t)L_0&(int32_t)L_2)))
{
goto IL_001e;
}
}
{
bool L_3 = __this->___shutdown_15;
return (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
}
IL_001e:
{
return (bool)0;
}
}
// System.Boolean Mono.Net.Security.MobileAuthenticatedStream::get_CanSeek()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MobileAuthenticatedStream_get_CanSeek_mF7A4E5EC7EAFCAA07CBDD7D35B1A764177612503 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Int64 Mono.Net.Security.MobileAuthenticatedStream::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t MobileAuthenticatedStream_get_Length_mF8ACA717EFBD5E1E15B9ABBEFC9F5EC41127469C (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, const RuntimeMethod* method)
{
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0;
L_0 = AuthenticatedStream_get_InnerStream_m5BDA4857898A90C696DAD90FD61C536FC3EB10C7_inline(__this, NULL);
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 Mono.Net.Security.MobileAuthenticatedStream::get_Position()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t MobileAuthenticatedStream_get_Position_mDC516AFB4C932E61DA6DBFEF056CD9D798129035 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, const RuntimeMethod* method)
{
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0;
L_0 = AuthenticatedStream_get_InnerStream_m5BDA4857898A90C696DAD90FD61C536FC3EB10C7_inline(__this, NULL);
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 Mono.Net.Security.MobileAuthenticatedStream::set_Position(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MobileAuthenticatedStream_set_Position_mDA69F8B3575A0D6E3B11621BCB334371E80B9D56 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, int64_t ___value0, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_0);
NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF(L_0, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_set_Position_mDA69F8B3575A0D6E3B11621BCB334371E80B9D56_RuntimeMethod_var)));
}
}
// System.Int32 Mono.Net.Security.MobileAuthenticatedStream::get_ReadTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MobileAuthenticatedStream_get_ReadTimeout_m8CB544C81A7A2D5B882E91A691C97513912DB866 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, const RuntimeMethod* method)
{
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0;
L_0 = AuthenticatedStream_get_InnerStream_m5BDA4857898A90C696DAD90FD61C536FC3EB10C7_inline(__this, NULL);
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 Mono.Net.Security.MobileAuthenticatedStream::set_ReadTimeout(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MobileAuthenticatedStream_set_ReadTimeout_m152C3065A8D914E2F6CDFB4E2EDC19DD8C466082 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0;
L_0 = AuthenticatedStream_get_InnerStream_m5BDA4857898A90C696DAD90FD61C536FC3EB10C7_inline(__this, NULL);
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 Mono.Net.Security.MobileAuthenticatedStream::get_WriteTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MobileAuthenticatedStream_get_WriteTimeout_mDB098ADC853F298E298C4712405BF78BC4C4FFCC (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, const RuntimeMethod* method)
{
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0;
L_0 = AuthenticatedStream_get_InnerStream_m5BDA4857898A90C696DAD90FD61C536FC3EB10C7_inline(__this, NULL);
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 Mono.Net.Security.MobileAuthenticatedStream::set_WriteTimeout(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MobileAuthenticatedStream_set_WriteTimeout_m37293FCF87ED0B6A4865005940A23D1BA322A774 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0;
L_0 = AuthenticatedStream_get_InnerStream_m5BDA4857898A90C696DAD90FD61C536FC3EB10C7_inline(__this, NULL);
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 Mono.Net.Security.MobileAuthenticatedStream::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MobileAuthenticatedStream__cctor_mAE00872557415DE85E6CB57122CAD50E9F3080FE (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
((MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_StaticFields*)il2cpp_codegen_static_fields_for(MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_il2cpp_TypeInfo_var))->___uniqueNameInteger_17 = ((int32_t)123);
return;
}
}
// System.Void Mono.Net.Security.MobileAuthenticatedStream::<InnerWrite>b__67_0()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MobileAuthenticatedStream_U3CInnerWriteU3Eb__67_0_mEC1BC0A19130E44F6E542F229CE3FFAC0CD78697 (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, const RuntimeMethod* method)
{
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0;
L_0 = AuthenticatedStream_get_InnerStream_m5BDA4857898A90C696DAD90FD61C536FC3EB10C7_inline(__this, NULL);
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_1 = __this->___writeBuffer_12;
NullCheck(L_1);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ((BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)L_1)->___Buffer_0;
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_3 = __this->___writeBuffer_12;
NullCheck(L_3);
int32_t L_4 = ((BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)L_3)->___Offset_1;
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_5 = __this->___writeBuffer_12;
NullCheck(L_5);
int32_t L_6 = ((BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)L_5)->___Size_2;
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_2, L_4, L_6);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#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 Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__48::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CProcessAuthenticationU3Ed__48_MoveNext_m982934120035A46C0FB96F7DF55F7FA0822B4940 (U3CProcessAuthenticationU3Ed__48_t111D22EA69719A6F3E97F02B3AD759B20CE299EB* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncHandshakeRequest_tC7CB006B95B7B6CFF6AABA2C04637A7CEEE8E9FD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t150EB7231CA854AE162139EF92711A3C957F9591_TisU3CProcessAuthenticationU3Ed__48_t111D22EA69719A6F3E97F02B3AD759B20CE299EB_mEBB621A17A5BB2447C0966F8DF9D3C787A3A13CD_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConfiguredTaskAwaitable_1_GetAwaiter_m647913E4467CF739E5F4CA80464A5FC1AC167034_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConfiguredTaskAwaiter_GetResult_mECEB375417C7F900CC667E5E740988F09B2EC9A0_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConfiguredTaskAwaiter_get_IsCompleted_m478C1290C417B9FB5066F890D1FB7D7FC04DD3E4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_1_ConfigureAwait_m45AC1205A3F6E0F0C7EC6D5B16D13C02A01F2ECF_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral738F291E53E97C08DAE378C71EF70A60E31AE900);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* V_1 = NULL;
AsyncHandshakeRequest_tC7CB006B95B7B6CFF6AABA2C04637A7CEEE8E9FD* V_2 = NULL;
AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05* V_3 = NULL;
int32_t V_4 = 0;
RuntimeObject* V_5 = NULL;
bool V_6 = false;
ConfiguredTaskAwaiter_t150EB7231CA854AE162139EF92711A3C957F9591 V_7;
memset((&V_7), 0, sizeof(V_7));
ConfiguredTaskAwaitable_1_t00976D6871B3F5929DA9DD9B2BA763F0DE7AD4A0 V_8;
memset((&V_8), 0, sizeof(V_8));
Exception_t* V_9 = NULL;
Exception_t* V_10 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 2> __active_exceptions;
{
int32_t L_0 = __this->___U3CU3E1__state_0;
V_0 = L_0;
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_1 = __this->___U3CU3E4__this_3;
V_1 = L_1;
}
try
{// begin try (depth: 1)
{
int32_t L_2 = V_0;
if (!L_2)
{
goto IL_0110_1;
}
}
{
MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* L_3 = __this->___options_2;
NullCheck(L_3);
bool L_4;
L_4 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean Mono.Net.Security.MonoSslAuthenticationOptions::get_ServerMode() */, L_3);
if (!L_4)
{
goto IL_0049_1;
}
}
{
MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* L_5 = __this->___options_2;
NullCheck(L_5);
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_6;
L_6 = VirtualFuncInvoker0< X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* >::Invoke(11 /* System.Security.Cryptography.X509Certificates.X509Certificate Mono.Net.Security.MonoSslAuthenticationOptions::get_ServerCertificate() */, L_5);
if (L_6)
{
goto IL_00b1_1;
}
}
{
MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* L_7 = __this->___options_2;
NullCheck(L_7);
ServerCertSelectionCallback_t653386CAEAE0236FCF61A92963AB1646BB23C654* L_8;
L_8 = MonoSslAuthenticationOptions_get_ServerCertSelectionDelegate_m8F35626050A015130D823BA68862416889F75A42_inline(L_7, NULL);
if (L_8)
{
goto IL_00b1_1;
}
}
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_9 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_9);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDB925358D5360EC3B447E16BA22A78C2E94D0908)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CProcessAuthenticationU3Ed__48_MoveNext_m982934120035A46C0FB96F7DF55F7FA0822B4940_RuntimeMethod_var)));
}
IL_0049_1:
{
MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* L_10 = __this->___options_2;
NullCheck(L_10);
String_t* L_11;
L_11 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String Mono.Net.Security.MonoSslAuthenticationOptions::get_TargetHost() */, L_10);
if (L_11)
{
goto IL_0061_1;
}
}
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_12 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_12);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_12, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8AF48F97A7F14735DCDB53B32826187263442ABD)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CProcessAuthenticationU3Ed__48_MoveNext_m982934120035A46C0FB96F7DF55F7FA0822B4940_RuntimeMethod_var)));
}
IL_0061_1:
{
MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* L_13 = __this->___options_2;
NullCheck(L_13);
String_t* L_14;
L_14 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String Mono.Net.Security.MonoSslAuthenticationOptions::get_TargetHost() */, L_13);
NullCheck(L_14);
int32_t L_15;
L_15 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_14, NULL);
if (L_15)
{
goto IL_00a0_1;
}
}
{
MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* L_16 = __this->___options_2;
il2cpp_codegen_runtime_class_init_inline(MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_il2cpp_TypeInfo_var);
int32_t L_17;
L_17 = Interlocked_Increment_m7AC68EC482A6AFD97BCEFABA0FD45D203F3EA2E1((&((MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_StaticFields*)il2cpp_codegen_static_fields_for(MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_il2cpp_TypeInfo_var))->___uniqueNameInteger_17), NULL);
V_4 = L_17;
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_18;
L_18 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL);
String_t* L_19;
L_19 = Int32_ToString_m3B2730D9F5B0C1C57DCCC8B8DCFB8E5EC4E8979B((&V_4), L_18, NULL);
String_t* L_20;
L_20 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteral738F291E53E97C08DAE378C71EF70A60E31AE900, L_19, NULL);
NullCheck(L_16);
VirtualActionInvoker1< String_t* >::Invoke(10 /* System.Void Mono.Net.Security.MonoSslAuthenticationOptions::set_TargetHost(System.String) */, L_16, L_20);
}
IL_00a0_1:
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_21 = V_1;
MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* L_22 = __this->___options_2;
NullCheck(L_22);
String_t* L_23;
L_23 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String Mono.Net.Security.MonoSslAuthenticationOptions::get_TargetHost() */, L_22);
NullCheck(L_21);
MobileAuthenticatedStream_set_TargetHost_m490855169728C94C8FEAD0689D2FA3E578046BB6_inline(L_21, L_23, NULL);
}
IL_00b1_1:
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_24 = V_1;
NullCheck(L_24);
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_25 = L_24->___lastException_7;
if (!L_25)
{
goto IL_00c4_1;
}
}
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_26 = V_1;
NullCheck(L_26);
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_27 = L_26->___lastException_7;
NullCheck(L_27);
ExceptionDispatchInfo_Throw_m06F398E346AE94C1CCEB636763A8CB26511F6330(L_27, NULL);
}
IL_00c4_1:
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_28 = V_1;
bool L_29 = __this->___runSynchronously_4;
AsyncHandshakeRequest_tC7CB006B95B7B6CFF6AABA2C04637A7CEEE8E9FD* L_30 = (AsyncHandshakeRequest_tC7CB006B95B7B6CFF6AABA2C04637A7CEEE8E9FD*)il2cpp_codegen_object_new(AsyncHandshakeRequest_tC7CB006B95B7B6CFF6AABA2C04637A7CEEE8E9FD_il2cpp_TypeInfo_var);
NullCheck(L_30);
AsyncHandshakeRequest__ctor_m741ADA23A424389AD20579B23AE2DBE8FA00CFF7(L_30, L_28, L_29, NULL);
V_2 = L_30;
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_31 = V_1;
NullCheck(L_31);
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86** L_32 = (&L_31->___asyncHandshakeRequest_8);
AsyncHandshakeRequest_tC7CB006B95B7B6CFF6AABA2C04637A7CEEE8E9FD* L_33 = V_2;
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_34;
L_34 = InterlockedCompareExchangeImpl<AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86*>(L_32, L_33, (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86*)NULL);
if (!L_34)
{
goto IL_00e6_1;
}
}
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_il2cpp_TypeInfo_var)));
Exception_t* L_35;
L_35 = MobileAuthenticatedStream_GetInvalidNestedCallException_mC7EBE64F717F86F3D399AA54CC8C60F18876725D(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_35, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CProcessAuthenticationU3Ed__48_MoveNext_m982934120035A46C0FB96F7DF55F7FA0822B4940_RuntimeMethod_var)));
}
IL_00e6_1:
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_36 = V_1;
NullCheck(L_36);
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86** L_37 = (&L_36->___asyncReadRequest_9);
AsyncHandshakeRequest_tC7CB006B95B7B6CFF6AABA2C04637A7CEEE8E9FD* L_38 = V_2;
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_39;
L_39 = InterlockedCompareExchangeImpl<AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86*>(L_37, L_38, (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86*)NULL);
if (!L_39)
{
goto IL_00fb_1;
}
}
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_il2cpp_TypeInfo_var)));
Exception_t* L_40;
L_40 = MobileAuthenticatedStream_GetInvalidNestedCallException_mC7EBE64F717F86F3D399AA54CC8C60F18876725D(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_40, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CProcessAuthenticationU3Ed__48_MoveNext_m982934120035A46C0FB96F7DF55F7FA0822B4940_RuntimeMethod_var)));
}
IL_00fb_1:
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_41 = V_1;
NullCheck(L_41);
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86** L_42 = (&L_41->___asyncWriteRequest_10);
AsyncHandshakeRequest_tC7CB006B95B7B6CFF6AABA2C04637A7CEEE8E9FD* L_43 = V_2;
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_44;
L_44 = InterlockedCompareExchangeImpl<AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86*>(L_42, L_43, (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86*)NULL);
if (!L_44)
{
goto IL_0110_1;
}
}
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_il2cpp_TypeInfo_var)));
Exception_t* L_45;
L_45 = MobileAuthenticatedStream_GetInvalidNestedCallException_mC7EBE64F717F86F3D399AA54CC8C60F18876725D(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_45, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CProcessAuthenticationU3Ed__48_MoveNext_m982934120035A46C0FB96F7DF55F7FA0822B4940_RuntimeMethod_var)));
}
IL_0110_1:
{
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_01fe_1:
{// begin finally (depth: 2)
{
int32_t L_46 = V_0;
if ((((int32_t)L_46) >= ((int32_t)0)))
{
goto IL_0253_1;
}
}
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_47 = V_1;
NullCheck(L_47);
RuntimeObject* L_48 = L_47->___ioLock_13;
V_5 = L_48;
V_6 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0243_1:
{// begin finally (depth: 3)
{
int32_t L_49 = V_0;
if ((((int32_t)L_49) >= ((int32_t)0)))
{
goto IL_0252_1;
}
}
{
bool L_50 = V_6;
if (!L_50)
{
goto IL_0252_1;
}
}
{
RuntimeObject* L_51 = V_5;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_51, NULL);
}
IL_0252_1:
{
return;
}
}// end finally (depth: 3)
});
try
{// begin try (depth: 3)
RuntimeObject* L_52 = V_5;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_52, (&V_6), NULL);
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_53 = V_1;
NullCheck(L_53);
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_54 = L_53->___readBuffer_11;
NullCheck(L_54);
BufferOffsetSize2_Reset_m1B80AE03ED0C2BAC447F3BDEC8F827CEE6053E7F(L_54, NULL);
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_55 = V_1;
NullCheck(L_55);
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_56 = L_55->___writeBuffer_12;
NullCheck(L_56);
BufferOffsetSize2_Reset_m1B80AE03ED0C2BAC447F3BDEC8F827CEE6053E7F(L_56, NULL);
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_57 = V_1;
NullCheck(L_57);
L_57->___asyncWriteRequest_10 = (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&L_57->___asyncWriteRequest_10), (void*)(AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86*)NULL);
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_58 = V_1;
NullCheck(L_58);
L_58->___asyncReadRequest_9 = (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&L_58->___asyncReadRequest_9), (void*)(AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86*)NULL);
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_59 = V_1;
NullCheck(L_59);
L_59->___asyncHandshakeRequest_8 = (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&L_59->___asyncHandshakeRequest_8), (void*)(AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86*)NULL);
goto IL_0253_1;
}// end try (depth: 3)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0253_1:
{
return;
}
}// end finally (depth: 2)
});
try
{// begin try (depth: 2)
{
int32_t L_60 = V_0;
if (!L_60)
{
goto IL_0170_2;
}
}
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_61 = V_1;
NullCheck(L_61);
RuntimeObject* L_62 = L_61->___ioLock_13;
V_5 = L_62;
V_6 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0160_2:
{// begin finally (depth: 3)
{
int32_t L_63 = V_0;
if ((((int32_t)L_63) >= ((int32_t)0)))
{
goto IL_016f_2;
}
}
{
bool L_64 = V_6;
if (!L_64)
{
goto IL_016f_2;
}
}
{
RuntimeObject* L_65 = V_5;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_65, NULL);
}
IL_016f_2:
{
return;
}
}// end finally (depth: 3)
});
try
{// begin try (depth: 3)
{
RuntimeObject* L_66 = V_5;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_66, (&V_6), NULL);
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_67 = V_1;
NullCheck(L_67);
MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* L_68 = L_67->___xobileTlsContext_6;
if (!L_68)
{
goto IL_0136_3;
}
}
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_69 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_69);
InvalidOperationException__ctor_m1BE9BD198B904AA1D94F4B10DA88077DFD44B7A5(L_69, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_69, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CProcessAuthenticationU3Ed__48_MoveNext_m982934120035A46C0FB96F7DF55F7FA0822B4940_RuntimeMethod_var)));
}
IL_0136_3:
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_70 = V_1;
NullCheck(L_70);
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_71 = L_70->___readBuffer_11;
NullCheck(L_71);
BufferOffsetSize2_Reset_m1B80AE03ED0C2BAC447F3BDEC8F827CEE6053E7F(L_71, NULL);
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_72 = V_1;
NullCheck(L_72);
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_73 = L_72->___writeBuffer_12;
NullCheck(L_73);
BufferOffsetSize2_Reset_m1B80AE03ED0C2BAC447F3BDEC8F827CEE6053E7F(L_73, NULL);
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_74 = V_1;
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_75 = V_1;
MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* L_76 = __this->___options_2;
NullCheck(L_75);
MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* L_77;
L_77 = VirtualFuncInvoker1< MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476*, MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* >::Invoke(40 /* Mono.Net.Security.MobileTlsContext Mono.Net.Security.MobileAuthenticatedStream::CreateContext(Mono.Net.Security.MonoSslAuthenticationOptions) */, L_75, L_76);
NullCheck(L_74);
L_74->___xobileTlsContext_6 = L_77;
Il2CppCodeGenWriteBarrier((void**)(&L_74->___xobileTlsContext_6), (void*)L_77);
goto IL_0170_2;
}
}// end try (depth: 3)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0170_2:
{
}
try
{// begin try (depth: 3)
{
int32_t L_78 = V_0;
if (!L_78)
{
goto IL_01be_3;
}
}
{
AsyncHandshakeRequest_tC7CB006B95B7B6CFF6AABA2C04637A7CEEE8E9FD* L_79 = V_2;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_80 = __this->___cancellationToken_5;
NullCheck(L_79);
Task_1_t7B91A92D06E8BCB69911B6822DD99220DDB735EE* L_81;
L_81 = AsyncProtocolRequest_StartOperation_m3BFF3E84B25BBE13881D3592FF4CAEC3736FBEDD(L_79, L_80, NULL);
NullCheck(L_81);
ConfiguredTaskAwaitable_1_t00976D6871B3F5929DA9DD9B2BA763F0DE7AD4A0 L_82;
L_82 = Task_1_ConfigureAwait_m45AC1205A3F6E0F0C7EC6D5B16D13C02A01F2ECF(L_81, (bool)0, Task_1_ConfigureAwait_m45AC1205A3F6E0F0C7EC6D5B16D13C02A01F2ECF_RuntimeMethod_var);
V_8 = L_82;
ConfiguredTaskAwaiter_t150EB7231CA854AE162139EF92711A3C957F9591 L_83;
L_83 = ConfiguredTaskAwaitable_1_GetAwaiter_m647913E4467CF739E5F4CA80464A5FC1AC167034_inline((&V_8), ConfiguredTaskAwaitable_1_GetAwaiter_m647913E4467CF739E5F4CA80464A5FC1AC167034_RuntimeMethod_var);
V_7 = L_83;
bool L_84;
L_84 = ConfiguredTaskAwaiter_get_IsCompleted_m478C1290C417B9FB5066F890D1FB7D7FC04DD3E4((&V_7), ConfiguredTaskAwaiter_get_IsCompleted_m478C1290C417B9FB5066F890D1FB7D7FC04DD3E4_RuntimeMethod_var);
if (L_84)
{
goto IL_01db_3;
}
}
{
int32_t L_85 = 0;
V_0 = L_85;
__this->___U3CU3E1__state_0 = L_85;
ConfiguredTaskAwaiter_t150EB7231CA854AE162139EF92711A3C957F9591 L_86 = V_7;
__this->___U3CU3Eu__1_6 = L_86;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3Eu__1_6))->___m_task_0), (void*)NULL);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_87 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t150EB7231CA854AE162139EF92711A3C957F9591_TisU3CProcessAuthenticationU3Ed__48_t111D22EA69719A6F3E97F02B3AD759B20CE299EB_mEBB621A17A5BB2447C0966F8DF9D3C787A3A13CD(L_87, (&V_7), __this, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t150EB7231CA854AE162139EF92711A3C957F9591_TisU3CProcessAuthenticationU3Ed__48_t111D22EA69719A6F3E97F02B3AD759B20CE299EB_mEBB621A17A5BB2447C0966F8DF9D3C787A3A13CD_RuntimeMethod_var);
goto IL_0295;
}
IL_01be_3:
{
ConfiguredTaskAwaiter_t150EB7231CA854AE162139EF92711A3C957F9591 L_88 = __this->___U3CU3Eu__1_6;
V_7 = L_88;
ConfiguredTaskAwaiter_t150EB7231CA854AE162139EF92711A3C957F9591* L_89 = (&__this->___U3CU3Eu__1_6);
il2cpp_codegen_initobj(L_89, sizeof(ConfiguredTaskAwaiter_t150EB7231CA854AE162139EF92711A3C957F9591));
int32_t L_90 = (-1);
V_0 = L_90;
__this->___U3CU3E1__state_0 = L_90;
}
IL_01db_3:
{
AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05* L_91;
L_91 = ConfiguredTaskAwaiter_GetResult_mECEB375417C7F900CC667E5E740988F09B2EC9A0((&V_7), ConfiguredTaskAwaiter_GetResult_mECEB375417C7F900CC667E5E740988F09B2EC9A0_RuntimeMethod_var);
V_3 = L_91;
goto IL_01fc_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_01e5_2;
}
throw e;
}
CATCH_01e5_2:
{// begin catch(System.Exception)
V_9 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_92 = V_1;
Exception_t* L_93 = V_9;
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_il2cpp_TypeInfo_var)));
Exception_t* L_94;
L_94 = MobileAuthenticatedStream_GetSSPIException_m04F38FF55AEEC19087840F3A722D2C225050F427(L_93, NULL);
NullCheck(L_92);
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_95;
L_95 = MobileAuthenticatedStream_SetException_m490704BA8728AB01E7BA158FE545FD4D7C080448(L_92, L_94, NULL);
AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05* L_96 = (AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05_il2cpp_TypeInfo_var)));
NullCheck(L_96);
AsyncProtocolResult__ctor_m80187A7036019F9768BA1941362CB6785F10E99F(L_96, L_95, NULL);
V_3 = L_96;
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_01fc_2;
}// end catch (depth: 3)
IL_01fc_2:
{
goto IL_0254_1;
}
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0254_1:
{
AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05* L_97 = V_3;
NullCheck(L_97);
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_98;
L_98 = AsyncProtocolResult_get_Error_m2A01329BA71151C59E17E3D8812932AD02EF5C05_inline(L_97, NULL);
if (!L_98)
{
goto IL_0267_1;
}
}
{
AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05* L_99 = V_3;
NullCheck(L_99);
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_100;
L_100 = AsyncProtocolResult_get_Error_m2A01329BA71151C59E17E3D8812932AD02EF5C05_inline(L_99, NULL);
NullCheck(L_100);
ExceptionDispatchInfo_Throw_m06F398E346AE94C1CCEB636763A8CB26511F6330(L_100, NULL);
}
IL_0267_1:
{
goto IL_0282;
}
}// 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_0269;
}
throw e;
}
CATCH_0269:
{// begin catch(System.Exception)
V_10 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
__this->___U3CU3E1__state_0 = ((int32_t)-2);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_101 = (&__this->___U3CU3Et__builder_1);
Exception_t* L_102 = V_10;
AsyncTaskMethodBuilder_SetException_mBE41863F0571E0177A15731294087DE45E1FC10B(L_101, L_102, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0295;
}// end catch (depth: 1)
IL_0282:
{
__this->___U3CU3E1__state_0 = ((int32_t)-2);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_103 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_SetResult_m76D8B84F0068257C1823B1200B00E58E0C8DDDDE(L_103, NULL);
}
IL_0295:
{
return;
}
}
IL2CPP_EXTERN_C void U3CProcessAuthenticationU3Ed__48_MoveNext_m982934120035A46C0FB96F7DF55F7FA0822B4940_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
U3CProcessAuthenticationU3Ed__48_t111D22EA69719A6F3E97F02B3AD759B20CE299EB* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<U3CProcessAuthenticationU3Ed__48_t111D22EA69719A6F3E97F02B3AD759B20CE299EB*>(__this + _offset);
U3CProcessAuthenticationU3Ed__48_MoveNext_m982934120035A46C0FB96F7DF55F7FA0822B4940(_thisAdjusted, method);
}
// System.Void Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__48::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CProcessAuthenticationU3Ed__48_SetStateMachine_mC87BA3C30B7501EF0D0435E4C2C08EE79238576F (U3CProcessAuthenticationU3Ed__48_t111D22EA69719A6F3E97F02B3AD759B20CE299EB* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
{
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_0 = (&__this->___U3CU3Et__builder_1);
RuntimeObject* L_1 = ___stateMachine0;
AsyncTaskMethodBuilder_SetStateMachine_mE52B5B6B076025592A7AB462E3D26FA434AEB795(L_0, L_1, NULL);
return;
}
}
IL2CPP_EXTERN_C void U3CProcessAuthenticationU3Ed__48_SetStateMachine_mC87BA3C30B7501EF0D0435E4C2C08EE79238576F_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
U3CProcessAuthenticationU3Ed__48_t111D22EA69719A6F3E97F02B3AD759B20CE299EB* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<U3CProcessAuthenticationU3Ed__48_t111D22EA69719A6F3E97F02B3AD759B20CE299EB*>(__this + _offset);
U3CProcessAuthenticationU3Ed__48_SetStateMachine_mC87BA3C30B7501EF0D0435E4C2C08EE79238576F(_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 Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__57::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CStartOperationU3Ed__57_MoveNext_m2CD8CDF02548ACC068670F3F670590EEC77F7853 (U3CStartOperationU3Ed__57_tCA8E70BCBB1E41B299D65B4CF483D4CBF7A11368* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t150EB7231CA854AE162139EF92711A3C957F9591_TisU3CStartOperationU3Ed__57_tCA8E70BCBB1E41B299D65B4CF483D4CBF7A11368_m6FA771B043A065863142F7FABDD4493F8D4938B1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_SetResult_mC4BAC830514CDB105730FF11F7744A4424A4009B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConfiguredTaskAwaitable_1_GetAwaiter_m647913E4467CF739E5F4CA80464A5FC1AC167034_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConfiguredTaskAwaiter_GetResult_mECEB375417C7F900CC667E5E740988F09B2EC9A0_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConfiguredTaskAwaiter_get_IsCompleted_m478C1290C417B9FB5066F890D1FB7D7FC04DD3E4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_1_ConfigureAwait_m45AC1205A3F6E0F0C7EC6D5B16D13C02A01F2ECF_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* V_1 = NULL;
int32_t V_2 = 0;
AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05* V_3 = NULL;
RuntimeObject* V_4 = NULL;
bool V_5 = false;
ConfiguredTaskAwaiter_t150EB7231CA854AE162139EF92711A3C957F9591 V_6;
memset((&V_6), 0, sizeof(V_6));
ConfiguredTaskAwaitable_1_t00976D6871B3F5929DA9DD9B2BA763F0DE7AD4A0 V_7;
memset((&V_7), 0, sizeof(V_7));
Exception_t* V_8 = NULL;
Exception_t* V_9 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 2> __active_exceptions;
{
int32_t L_0 = __this->___U3CU3E1__state_0;
V_0 = L_0;
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* 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_00b7_1;
}
}
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_3 = V_1;
int32_t L_4 = __this->___type_3;
NullCheck(L_3);
MobileAuthenticatedStream_CheckThrow_m9E35E722A793A807809AD00C9756997AB7561396(L_3, (bool)1, (bool)((!(((uint32_t)L_4) <= ((uint32_t)0)))? 1 : 0), NULL);
int32_t L_5 = __this->___type_3;
if (L_5)
{
goto IL_0046_1;
}
}
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_6 = V_1;
NullCheck(L_6);
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86** L_7 = (&L_6->___asyncReadRequest_9);
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_8 = __this->___asyncRequest_4;
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_9;
L_9 = InterlockedCompareExchangeImpl<AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86*>(L_7, L_8, (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86*)NULL);
if (!L_9)
{
goto IL_00b7_1;
}
}
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_il2cpp_TypeInfo_var)));
Exception_t* L_10;
L_10 = MobileAuthenticatedStream_GetInvalidNestedCallException_mC7EBE64F717F86F3D399AA54CC8C60F18876725D(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CStartOperationU3Ed__57_MoveNext_m2CD8CDF02548ACC068670F3F670590EEC77F7853_RuntimeMethod_var)));
}
IL_0046_1:
{
int32_t L_11 = __this->___type_3;
if ((!(((uint32_t)L_11) == ((uint32_t)2))))
{
goto IL_009d_1;
}
}
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_12 = V_1;
NullCheck(L_12);
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86** L_13 = (&L_12->___asyncHandshakeRequest_8);
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_14 = __this->___asyncRequest_4;
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_15;
L_15 = InterlockedCompareExchangeImpl<AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86*>(L_13, L_14, (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86*)NULL);
if (!L_15)
{
goto IL_0069_1;
}
}
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_il2cpp_TypeInfo_var)));
Exception_t* L_16;
L_16 = MobileAuthenticatedStream_GetInvalidNestedCallException_mC7EBE64F717F86F3D399AA54CC8C60F18876725D(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CStartOperationU3Ed__57_MoveNext_m2CD8CDF02548ACC068670F3F670590EEC77F7853_RuntimeMethod_var)));
}
IL_0069_1:
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_17 = V_1;
NullCheck(L_17);
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86** L_18 = (&L_17->___asyncReadRequest_9);
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_19 = __this->___asyncRequest_4;
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_20;
L_20 = InterlockedCompareExchangeImpl<AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86*>(L_18, L_19, (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86*)NULL);
if (!L_20)
{
goto IL_0083_1;
}
}
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_il2cpp_TypeInfo_var)));
Exception_t* L_21;
L_21 = MobileAuthenticatedStream_GetInvalidNestedCallException_mC7EBE64F717F86F3D399AA54CC8C60F18876725D(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CStartOperationU3Ed__57_MoveNext_m2CD8CDF02548ACC068670F3F670590EEC77F7853_RuntimeMethod_var)));
}
IL_0083_1:
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_22 = V_1;
NullCheck(L_22);
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86** L_23 = (&L_22->___asyncWriteRequest_10);
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_24 = __this->___asyncRequest_4;
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_25;
L_25 = InterlockedCompareExchangeImpl<AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86*>(L_23, L_24, (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86*)NULL);
if (!L_25)
{
goto IL_00b7_1;
}
}
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_il2cpp_TypeInfo_var)));
Exception_t* L_26;
L_26 = MobileAuthenticatedStream_GetInvalidNestedCallException_mC7EBE64F717F86F3D399AA54CC8C60F18876725D(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_26, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CStartOperationU3Ed__57_MoveNext_m2CD8CDF02548ACC068670F3F670590EEC77F7853_RuntimeMethod_var)));
}
IL_009d_1:
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_27 = V_1;
NullCheck(L_27);
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86** L_28 = (&L_27->___asyncWriteRequest_10);
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_29 = __this->___asyncRequest_4;
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_30;
L_30 = InterlockedCompareExchangeImpl<AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86*>(L_28, L_29, (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86*)NULL);
if (!L_30)
{
goto IL_00b7_1;
}
}
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_il2cpp_TypeInfo_var)));
Exception_t* L_31;
L_31 = MobileAuthenticatedStream_GetInvalidNestedCallException_mC7EBE64F717F86F3D399AA54CC8C60F18876725D(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_31, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CStartOperationU3Ed__57_MoveNext_m2CD8CDF02548ACC068670F3F670590EEC77F7853_RuntimeMethod_var)));
}
IL_00b7_1:
{
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_01ab_1:
{// begin finally (depth: 2)
{
int32_t L_32 = V_0;
if ((((int32_t)L_32) >= ((int32_t)0)))
{
goto IL_023c_1;
}
}
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_33 = V_1;
NullCheck(L_33);
RuntimeObject* L_34 = L_33->___ioLock_13;
V_4 = L_34;
V_5 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_022c_1:
{// begin finally (depth: 3)
{
int32_t L_35 = V_0;
if ((((int32_t)L_35) >= ((int32_t)0)))
{
goto IL_023b_1;
}
}
{
bool L_36 = V_5;
if (!L_36)
{
goto IL_023b_1;
}
}
{
RuntimeObject* L_37 = V_4;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_37, NULL);
}
IL_023b_1:
{
return;
}
}// end finally (depth: 3)
});
try
{// begin try (depth: 3)
{
RuntimeObject* L_38 = V_4;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_38, (&V_5), NULL);
int32_t L_39 = __this->___type_3;
if (L_39)
{
goto IL_01e2_2;
}
}
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_40 = V_1;
NullCheck(L_40);
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_41 = L_40->___readBuffer_11;
NullCheck(L_41);
BufferOffsetSize2_Reset_m1B80AE03ED0C2BAC447F3BDEC8F827CEE6053E7F(L_41, NULL);
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_42 = V_1;
NullCheck(L_42);
L_42->___asyncReadRequest_9 = (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&L_42->___asyncReadRequest_9), (void*)(AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86*)NULL);
goto IL_022a_2;
}
IL_01e2_2:
{
int32_t L_43 = __this->___type_3;
if ((!(((uint32_t)L_43) == ((uint32_t)2))))
{
goto IL_0218_2;
}
}
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_44 = V_1;
NullCheck(L_44);
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_45 = L_44->___readBuffer_11;
NullCheck(L_45);
BufferOffsetSize2_Reset_m1B80AE03ED0C2BAC447F3BDEC8F827CEE6053E7F(L_45, NULL);
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_46 = V_1;
NullCheck(L_46);
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_47 = L_46->___writeBuffer_12;
NullCheck(L_47);
BufferOffsetSize2_Reset_m1B80AE03ED0C2BAC447F3BDEC8F827CEE6053E7F(L_47, NULL);
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_48 = V_1;
NullCheck(L_48);
L_48->___asyncHandshakeRequest_8 = (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&L_48->___asyncHandshakeRequest_8), (void*)(AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86*)NULL);
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_49 = V_1;
NullCheck(L_49);
L_49->___asyncReadRequest_9 = (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&L_49->___asyncReadRequest_9), (void*)(AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86*)NULL);
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_50 = V_1;
NullCheck(L_50);
L_50->___asyncWriteRequest_10 = (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&L_50->___asyncWriteRequest_10), (void*)(AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86*)NULL);
goto IL_022a_2;
}
IL_0218_2:
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_51 = V_1;
NullCheck(L_51);
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_52 = L_51->___writeBuffer_12;
NullCheck(L_52);
BufferOffsetSize2_Reset_m1B80AE03ED0C2BAC447F3BDEC8F827CEE6053E7F(L_52, NULL);
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_53 = V_1;
NullCheck(L_53);
L_53->___asyncWriteRequest_10 = (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&L_53->___asyncWriteRequest_10), (void*)(AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86*)NULL);
}
IL_022a_2:
{
goto IL_023c_1;
}
}// end try (depth: 3)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_023c_1:
{
return;
}
}// end finally (depth: 2)
});
try
{// begin try (depth: 2)
try
{// begin try (depth: 3)
{
int32_t L_54 = V_0;
if (!L_54)
{
goto IL_0153_3;
}
}
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_55 = V_1;
NullCheck(L_55);
RuntimeObject* L_56 = L_55->___ioLock_13;
V_4 = L_56;
V_5 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00f4_3:
{// begin finally (depth: 4)
{
int32_t L_57 = V_0;
if ((((int32_t)L_57) >= ((int32_t)0)))
{
goto IL_0103_3;
}
}
{
bool L_58 = V_5;
if (!L_58)
{
goto IL_0103_3;
}
}
{
RuntimeObject* L_59 = V_4;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_59, NULL);
}
IL_0103_3:
{
return;
}
}// end finally (depth: 4)
});
try
{// begin try (depth: 4)
{
RuntimeObject* L_60 = V_4;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_60, (&V_5), NULL);
int32_t L_61 = __this->___type_3;
if (L_61)
{
goto IL_00e7_4;
}
}
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_62 = V_1;
NullCheck(L_62);
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_63 = L_62->___readBuffer_11;
NullCheck(L_63);
BufferOffsetSize2_Reset_m1B80AE03ED0C2BAC447F3BDEC8F827CEE6053E7F(L_63, NULL);
goto IL_00f2_4;
}
IL_00e7_4:
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_64 = V_1;
NullCheck(L_64);
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_65 = L_64->___writeBuffer_12;
NullCheck(L_65);
BufferOffsetSize2_Reset_m1B80AE03ED0C2BAC447F3BDEC8F827CEE6053E7F(L_65, NULL);
}
IL_00f2_4:
{
goto IL_0104_3;
}
}// end try (depth: 4)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0104_3:
{
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_66 = __this->___asyncRequest_4;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_67 = __this->___cancellationToken_5;
NullCheck(L_66);
Task_1_t7B91A92D06E8BCB69911B6822DD99220DDB735EE* L_68;
L_68 = AsyncProtocolRequest_StartOperation_m3BFF3E84B25BBE13881D3592FF4CAEC3736FBEDD(L_66, L_67, NULL);
NullCheck(L_68);
ConfiguredTaskAwaitable_1_t00976D6871B3F5929DA9DD9B2BA763F0DE7AD4A0 L_69;
L_69 = Task_1_ConfigureAwait_m45AC1205A3F6E0F0C7EC6D5B16D13C02A01F2ECF(L_68, (bool)0, Task_1_ConfigureAwait_m45AC1205A3F6E0F0C7EC6D5B16D13C02A01F2ECF_RuntimeMethod_var);
V_7 = L_69;
ConfiguredTaskAwaiter_t150EB7231CA854AE162139EF92711A3C957F9591 L_70;
L_70 = ConfiguredTaskAwaitable_1_GetAwaiter_m647913E4467CF739E5F4CA80464A5FC1AC167034_inline((&V_7), ConfiguredTaskAwaitable_1_GetAwaiter_m647913E4467CF739E5F4CA80464A5FC1AC167034_RuntimeMethod_var);
V_6 = L_70;
bool L_71;
L_71 = ConfiguredTaskAwaiter_get_IsCompleted_m478C1290C417B9FB5066F890D1FB7D7FC04DD3E4((&V_6), ConfiguredTaskAwaiter_get_IsCompleted_m478C1290C417B9FB5066F890D1FB7D7FC04DD3E4_RuntimeMethod_var);
if (L_71)
{
goto IL_0170_3;
}
}
{
int32_t L_72 = 0;
V_0 = L_72;
__this->___U3CU3E1__state_0 = L_72;
ConfiguredTaskAwaiter_t150EB7231CA854AE162139EF92711A3C957F9591 L_73 = V_6;
__this->___U3CU3Eu__1_6 = L_73;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3Eu__1_6))->___m_task_0), (void*)NULL);
AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019* L_74 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t150EB7231CA854AE162139EF92711A3C957F9591_TisU3CStartOperationU3Ed__57_tCA8E70BCBB1E41B299D65B4CF483D4CBF7A11368_m6FA771B043A065863142F7FABDD4493F8D4938B1(L_74, (&V_6), __this, AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t150EB7231CA854AE162139EF92711A3C957F9591_TisU3CStartOperationU3Ed__57_tCA8E70BCBB1E41B299D65B4CF483D4CBF7A11368_m6FA771B043A065863142F7FABDD4493F8D4938B1_RuntimeMethod_var);
goto IL_0286;
}
IL_0153_3:
{
ConfiguredTaskAwaiter_t150EB7231CA854AE162139EF92711A3C957F9591 L_75 = __this->___U3CU3Eu__1_6;
V_6 = L_75;
ConfiguredTaskAwaiter_t150EB7231CA854AE162139EF92711A3C957F9591* L_76 = (&__this->___U3CU3Eu__1_6);
il2cpp_codegen_initobj(L_76, sizeof(ConfiguredTaskAwaiter_t150EB7231CA854AE162139EF92711A3C957F9591));
int32_t L_77 = (-1);
V_0 = L_77;
__this->___U3CU3E1__state_0 = L_77;
}
IL_0170_3:
{
AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05* L_78;
L_78 = ConfiguredTaskAwaiter_GetResult_mECEB375417C7F900CC667E5E740988F09B2EC9A0((&V_6), ConfiguredTaskAwaiter_GetResult_mECEB375417C7F900CC667E5E740988F09B2EC9A0_RuntimeMethod_var);
V_3 = L_78;
goto IL_01a6_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_017a_2;
}
throw e;
}
CATCH_017a_2:
{// begin catch(System.Exception)
V_8 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_79 = V_1;
Exception_t* L_80 = V_8;
AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* L_81 = __this->___asyncRequest_4;
NullCheck(L_81);
String_t* L_82;
L_82 = AsyncProtocolRequest_get_Name_m3D5DC63A43FFCA24B1E5A9825B76BD391D790F84(L_81, NULL);
String_t* L_83;
L_83 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_82, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA5421735C67AC5A0AE793A21C6A026FDFEAD5209)), NULL);
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E_il2cpp_TypeInfo_var)));
Exception_t* L_84;
L_84 = MobileAuthenticatedStream_GetIOException_m80A6F9660142728B73A169E1B09AB8BE268DD517(L_80, L_83, NULL);
NullCheck(L_79);
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_85;
L_85 = MobileAuthenticatedStream_SetException_m490704BA8728AB01E7BA158FE545FD4D7C080448(L_79, L_84, NULL);
AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05* L_86 = (AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05_il2cpp_TypeInfo_var)));
NullCheck(L_86);
AsyncProtocolResult__ctor_m80187A7036019F9768BA1941362CB6785F10E99F(L_86, L_85, NULL);
V_3 = L_86;
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_01a6_2;
}// end catch (depth: 3)
IL_01a6_2:
{
goto IL_023d_1;
}
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_023d_1:
{
AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05* L_87 = V_3;
NullCheck(L_87);
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_88;
L_88 = AsyncProtocolResult_get_Error_m2A01329BA71151C59E17E3D8812932AD02EF5C05_inline(L_87, NULL);
if (!L_88)
{
goto IL_0250_1;
}
}
{
AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05* L_89 = V_3;
NullCheck(L_89);
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_90;
L_90 = AsyncProtocolResult_get_Error_m2A01329BA71151C59E17E3D8812932AD02EF5C05_inline(L_89, NULL);
NullCheck(L_90);
ExceptionDispatchInfo_Throw_m06F398E346AE94C1CCEB636763A8CB26511F6330(L_90, NULL);
}
IL_0250_1:
{
AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05* L_91 = V_3;
NullCheck(L_91);
int32_t L_92;
L_92 = AsyncProtocolResult_get_UserResult_mEDF85928DEE138CA072E0BADB697024616981ABF_inline(L_91, NULL);
V_2 = L_92;
goto IL_0272;
}
}// 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_0259;
}
throw e;
}
CATCH_0259:
{// begin catch(System.Exception)
V_9 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
__this->___U3CU3E1__state_0 = ((int32_t)-2);
AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019* L_93 = (&__this->___U3CU3Et__builder_1);
Exception_t* L_94 = V_9;
AsyncTaskMethodBuilder_1_SetException_mB7C693CAA9243017E03D801A487E0EA9B6AAD575(L_93, L_94, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AsyncTaskMethodBuilder_1_SetException_mB7C693CAA9243017E03D801A487E0EA9B6AAD575_RuntimeMethod_var)));
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0286;
}// end catch (depth: 1)
IL_0272:
{
__this->___U3CU3E1__state_0 = ((int32_t)-2);
AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019* L_95 = (&__this->___U3CU3Et__builder_1);
int32_t L_96 = V_2;
AsyncTaskMethodBuilder_1_SetResult_mC4BAC830514CDB105730FF11F7744A4424A4009B(L_95, L_96, AsyncTaskMethodBuilder_1_SetResult_mC4BAC830514CDB105730FF11F7744A4424A4009B_RuntimeMethod_var);
}
IL_0286:
{
return;
}
}
IL2CPP_EXTERN_C void U3CStartOperationU3Ed__57_MoveNext_m2CD8CDF02548ACC068670F3F670590EEC77F7853_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
U3CStartOperationU3Ed__57_tCA8E70BCBB1E41B299D65B4CF483D4CBF7A11368* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<U3CStartOperationU3Ed__57_tCA8E70BCBB1E41B299D65B4CF483D4CBF7A11368*>(__this + _offset);
U3CStartOperationU3Ed__57_MoveNext_m2CD8CDF02548ACC068670F3F670590EEC77F7853(_thisAdjusted, method);
}
// System.Void Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__57::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CStartOperationU3Ed__57_SetStateMachine_m1EC071633621977A0623BF79A53028A2A766BED9 (U3CStartOperationU3Ed__57_tCA8E70BCBB1E41B299D65B4CF483D4CBF7A11368* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_SetStateMachine_mFA173982D2C309A46F4285F60DC4FE0DC659F32C_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019* L_0 = (&__this->___U3CU3Et__builder_1);
RuntimeObject* L_1 = ___stateMachine0;
AsyncTaskMethodBuilder_1_SetStateMachine_mFA173982D2C309A46F4285F60DC4FE0DC659F32C(L_0, L_1, AsyncTaskMethodBuilder_1_SetStateMachine_mFA173982D2C309A46F4285F60DC4FE0DC659F32C_RuntimeMethod_var);
return;
}
}
IL2CPP_EXTERN_C void U3CStartOperationU3Ed__57_SetStateMachine_m1EC071633621977A0623BF79A53028A2A766BED9_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
U3CStartOperationU3Ed__57_tCA8E70BCBB1E41B299D65B4CF483D4CBF7A11368* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<U3CStartOperationU3Ed__57_tCA8E70BCBB1E41B299D65B4CF483D4CBF7A11368*>(__this + _offset);
U3CStartOperationU3Ed__57_SetStateMachine_m1EC071633621977A0623BF79A53028A2A766BED9(_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 Mono.Net.Security.MobileAuthenticatedStream/<>c__DisplayClass66_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass66_0__ctor_m0649BF5458CDCAB6017C443988C36967E3000993 (U3CU3Ec__DisplayClass66_0_t892C285932134E13248FD210209881BF6B5831DB* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Int32 Mono.Net.Security.MobileAuthenticatedStream/<>c__DisplayClass66_0::<InnerRead>b__0()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t U3CU3Ec__DisplayClass66_0_U3CInnerReadU3Eb__0_m3F3293E1DD48D7532F3B8D84D7C8402698D60F36 (U3CU3Ec__DisplayClass66_0_t892C285932134E13248FD210209881BF6B5831DB* __this, const RuntimeMethod* method)
{
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_0 = __this->___U3CU3E4__this_0;
NullCheck(L_0);
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_1;
L_1 = AuthenticatedStream_get_InnerStream_m5BDA4857898A90C696DAD90FD61C536FC3EB10C7_inline(L_0, NULL);
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_2 = __this->___U3CU3E4__this_0;
NullCheck(L_2);
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_3 = L_2->___readBuffer_11;
NullCheck(L_3);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ((BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)L_3)->___Buffer_0;
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_5 = __this->___U3CU3E4__this_0;
NullCheck(L_5);
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_6 = L_5->___readBuffer_11;
NullCheck(L_6);
int32_t L_7;
L_7 = BufferOffsetSize_get_EndOffset_m114650CE0C422157F8EDCD8C0F1B89C5FFE7F9C9(L_6, NULL);
int32_t L_8 = __this->___len_1;
NullCheck(L_1);
int32_t L_9;
L_9 = VirtualFuncInvoker3< int32_t, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(31 /* System.Int32 System.IO.Stream::Read(System.Byte[],System.Int32,System.Int32) */, L_1, L_4, L_7, L_8);
return L_9;
}
}
#ifdef __clang__
#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 Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CInnerReadU3Ed__66_MoveNext_m5DFDC2139602BBC2F86D14BDA64B4A49ECDD90EB (U3CInnerReadU3Ed__66_tDA84F0E1193C16C54FE1735B4B5F77FB65A68982* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80_TisU3CInnerReadU3Ed__66_tDA84F0E1193C16C54FE1735B4B5F77FB65A68982_mEFE76303231143D18FCD18D893491185D26C7316_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_SetResult_mC4BAC830514CDB105730FF11F7744A4424A4009B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConfiguredTaskAwaitable_1_GetAwaiter_m7A77B1981FEC19CC7E1570EDC3F16AC5C14B4439_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConfiguredTaskAwaiter_GetResult_mF1FF6CBD66A3F581D413793BA8C2AF58B707D9CC_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConfiguredTaskAwaiter_get_IsCompleted_mD70263ED42C8E379EE20DBC2F218C3E629B4B4D3_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_1_tC288CCB64EFD1F5FD49C3F8DE91FE62905E44BCD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_1_ConfigureAwait_m8203F4D13209C12845066A383E5B850D0486B209_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_Run_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m591D59B3F4940619F93578654D14FDB3C9231229_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass66_0_U3CInnerReadU3Eb__0_m3F3293E1DD48D7532F3B8D84D7C8402698D60F36_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass66_0_t892C285932134E13248FD210209881BF6B5831DB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* V_1 = NULL;
int32_t V_2 = 0;
U3CU3Ec__DisplayClass66_0_t892C285932134E13248FD210209881BF6B5831DB* V_3 = NULL;
Task_1_t4C228DE57804012969575431CFF12D57C875552D* V_4 = NULL;
int32_t V_5 = 0;
ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80 V_6;
memset((&V_6), 0, sizeof(V_6));
ConfiguredTaskAwaitable_1_t5186C81524388C1718E9AC37792D8771A443417A V_7;
memset((&V_7), 0, sizeof(V_7));
Exception_t* V_8 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
int32_t L_0 = __this->___U3CU3E1__state_0;
V_0 = L_0;
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* 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_00e7_1;
}
}
{
U3CU3Ec__DisplayClass66_0_t892C285932134E13248FD210209881BF6B5831DB* L_3 = (U3CU3Ec__DisplayClass66_0_t892C285932134E13248FD210209881BF6B5831DB*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass66_0_t892C285932134E13248FD210209881BF6B5831DB_il2cpp_TypeInfo_var);
NullCheck(L_3);
U3CU3Ec__DisplayClass66_0__ctor_m0649BF5458CDCAB6017C443988C36967E3000993(L_3, NULL);
V_3 = L_3;
U3CU3Ec__DisplayClass66_0_t892C285932134E13248FD210209881BF6B5831DB* L_4 = V_3;
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_5 = __this->___U3CU3E4__this_2;
NullCheck(L_4);
L_4->___U3CU3E4__this_0 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&L_4->___U3CU3E4__this_0), (void*)L_5);
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED* L_6 = (&__this->___cancellationToken_3);
CancellationToken_ThrowIfCancellationRequested_mB9D952DC6E96FB6E0595FC8E88D3133CDA4382C3(L_6, NULL);
U3CU3Ec__DisplayClass66_0_t892C285932134E13248FD210209881BF6B5831DB* L_7 = V_3;
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_8 = V_1;
NullCheck(L_8);
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_9 = L_8->___readBuffer_11;
NullCheck(L_9);
int32_t L_10;
L_10 = BufferOffsetSize_get_Remaining_mB3CB4287B2AAAD7976374B914E95ABFCE71B1A4E(L_9, NULL);
int32_t L_11 = __this->___requestedSize_4;
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
int32_t L_12;
L_12 = Math_Min_m1F346FEDDC77AC1EC0C4EF1AC6BA59F0EC7980F8(L_10, L_11, NULL);
NullCheck(L_7);
L_7->___len_1 = L_12;
U3CU3Ec__DisplayClass66_0_t892C285932134E13248FD210209881BF6B5831DB* L_13 = V_3;
NullCheck(L_13);
int32_t L_14 = L_13->___len_1;
if (L_14)
{
goto IL_005b_1;
}
}
{
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_m1BE9BD198B904AA1D94F4B10DA88077DFD44B7A5(L_15, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CInnerReadU3Ed__66_MoveNext_m5DFDC2139602BBC2F86D14BDA64B4A49ECDD90EB_RuntimeMethod_var)));
}
IL_005b_1:
{
bool L_16 = __this->___sync_5;
if (!L_16)
{
goto IL_0078_1;
}
}
{
U3CU3Ec__DisplayClass66_0_t892C285932134E13248FD210209881BF6B5831DB* L_17 = V_3;
Func_1_tC288CCB64EFD1F5FD49C3F8DE91FE62905E44BCD* L_18 = (Func_1_tC288CCB64EFD1F5FD49C3F8DE91FE62905E44BCD*)il2cpp_codegen_object_new(Func_1_tC288CCB64EFD1F5FD49C3F8DE91FE62905E44BCD_il2cpp_TypeInfo_var);
NullCheck(L_18);
Func_1__ctor_m475512287B9508E6D4721B3022635FED517234D1(L_18, L_17, (intptr_t)((void*)U3CU3Ec__DisplayClass66_0_U3CInnerReadU3Eb__0_m3F3293E1DD48D7532F3B8D84D7C8402698D60F36_RuntimeMethod_var), NULL);
il2cpp_codegen_runtime_class_init_inline(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_19;
L_19 = Task_Run_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m591D59B3F4940619F93578654D14FDB3C9231229(L_18, Task_Run_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m591D59B3F4940619F93578654D14FDB3C9231229_RuntimeMethod_var);
V_4 = L_19;
goto IL_00a7_1;
}
IL_0078_1:
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_20 = V_1;
NullCheck(L_20);
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_21;
L_21 = AuthenticatedStream_get_InnerStream_m5BDA4857898A90C696DAD90FD61C536FC3EB10C7_inline(L_20, NULL);
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_22 = V_1;
NullCheck(L_22);
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_23 = L_22->___readBuffer_11;
NullCheck(L_23);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_24 = ((BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)L_23)->___Buffer_0;
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_25 = V_1;
NullCheck(L_25);
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_26 = L_25->___readBuffer_11;
NullCheck(L_26);
int32_t L_27;
L_27 = BufferOffsetSize_get_EndOffset_m114650CE0C422157F8EDCD8C0F1B89C5FFE7F9C9(L_26, NULL);
U3CU3Ec__DisplayClass66_0_t892C285932134E13248FD210209881BF6B5831DB* L_28 = V_3;
NullCheck(L_28);
int32_t L_29 = L_28->___len_1;
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_30 = __this->___cancellationToken_3;
NullCheck(L_21);
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_31;
L_31 = 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_21, L_24, L_27, L_29, L_30);
V_4 = L_31;
}
IL_00a7_1:
{
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_32 = V_4;
NullCheck(L_32);
ConfiguredTaskAwaitable_1_t5186C81524388C1718E9AC37792D8771A443417A L_33;
L_33 = Task_1_ConfigureAwait_m8203F4D13209C12845066A383E5B850D0486B209(L_32, (bool)0, Task_1_ConfigureAwait_m8203F4D13209C12845066A383E5B850D0486B209_RuntimeMethod_var);
V_7 = L_33;
ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80 L_34;
L_34 = ConfiguredTaskAwaitable_1_GetAwaiter_m7A77B1981FEC19CC7E1570EDC3F16AC5C14B4439_inline((&V_7), ConfiguredTaskAwaitable_1_GetAwaiter_m7A77B1981FEC19CC7E1570EDC3F16AC5C14B4439_RuntimeMethod_var);
V_6 = L_34;
bool L_35;
L_35 = ConfiguredTaskAwaiter_get_IsCompleted_mD70263ED42C8E379EE20DBC2F218C3E629B4B4D3((&V_6), ConfiguredTaskAwaiter_get_IsCompleted_mD70263ED42C8E379EE20DBC2F218C3E629B4B4D3_RuntimeMethod_var);
if (L_35)
{
goto IL_0104_1;
}
}
{
int32_t L_36 = 0;
V_0 = L_36;
__this->___U3CU3E1__state_0 = L_36;
ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80 L_37 = V_6;
__this->___U3CU3Eu__1_6 = L_37;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3Eu__1_6))->___m_task_0), (void*)NULL);
AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019* L_38 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80_TisU3CInnerReadU3Ed__66_tDA84F0E1193C16C54FE1735B4B5F77FB65A68982_mEFE76303231143D18FCD18D893491185D26C7316(L_38, (&V_6), __this, AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80_TisU3CInnerReadU3Ed__66_tDA84F0E1193C16C54FE1735B4B5F77FB65A68982_mEFE76303231143D18FCD18D893491185D26C7316_RuntimeMethod_var);
goto IL_018d;
}
IL_00e7_1:
{
ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80 L_39 = __this->___U3CU3Eu__1_6;
V_6 = L_39;
ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80* L_40 = (&__this->___U3CU3Eu__1_6);
il2cpp_codegen_initobj(L_40, sizeof(ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80));
int32_t L_41 = (-1);
V_0 = L_41;
__this->___U3CU3E1__state_0 = L_41;
}
IL_0104_1:
{
int32_t L_42;
L_42 = ConfiguredTaskAwaiter_GetResult_mF1FF6CBD66A3F581D413793BA8C2AF58B707D9CC((&V_6), ConfiguredTaskAwaiter_GetResult_mF1FF6CBD66A3F581D413793BA8C2AF58B707D9CC_RuntimeMethod_var);
V_5 = L_42;
int32_t L_43 = V_5;
if ((((int32_t)L_43) < ((int32_t)0)))
{
goto IL_013a_1;
}
}
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_44 = V_1;
NullCheck(L_44);
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_45 = L_44->___readBuffer_11;
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_46 = L_45;
NullCheck(L_46);
int32_t L_47 = ((BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)L_46)->___Size_2;
int32_t L_48 = V_5;
NullCheck(L_46);
((BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)L_46)->___Size_2 = ((int32_t)il2cpp_codegen_add(L_47, L_48));
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_49 = V_1;
NullCheck(L_49);
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_50 = L_49->___readBuffer_11;
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_51 = L_50;
NullCheck(L_51);
int32_t L_52 = ((BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)L_51)->___TotalBytes_3;
int32_t L_53 = V_5;
NullCheck(L_51);
((BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)L_51)->___TotalBytes_3 = ((int32_t)il2cpp_codegen_add(L_52, L_53));
}
IL_013a_1:
{
int32_t L_54 = V_5;
if (L_54)
{
goto IL_015b_1;
}
}
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_55 = V_1;
NullCheck(L_55);
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_56 = L_55->___readBuffer_11;
NullCheck(L_56);
((BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)L_56)->___Complete_4 = (bool)1;
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_57 = V_1;
NullCheck(L_57);
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_58 = L_57->___readBuffer_11;
NullCheck(L_58);
int32_t L_59 = ((BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)L_58)->___TotalBytes_3;
if ((((int32_t)L_59) <= ((int32_t)0)))
{
goto IL_015b_1;
}
}
{
V_5 = (-1);
}
IL_015b_1:
{
int32_t L_60 = V_5;
V_2 = L_60;
goto IL_0179;
}
}// 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_0160;
}
throw e;
}
CATCH_0160:
{// begin catch(System.Exception)
V_8 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
__this->___U3CU3E1__state_0 = ((int32_t)-2);
AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019* L_61 = (&__this->___U3CU3Et__builder_1);
Exception_t* L_62 = V_8;
AsyncTaskMethodBuilder_1_SetException_mB7C693CAA9243017E03D801A487E0EA9B6AAD575(L_61, L_62, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AsyncTaskMethodBuilder_1_SetException_mB7C693CAA9243017E03D801A487E0EA9B6AAD575_RuntimeMethod_var)));
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_018d;
}// end catch (depth: 1)
IL_0179:
{
__this->___U3CU3E1__state_0 = ((int32_t)-2);
AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019* L_63 = (&__this->___U3CU3Et__builder_1);
int32_t L_64 = V_2;
AsyncTaskMethodBuilder_1_SetResult_mC4BAC830514CDB105730FF11F7744A4424A4009B(L_63, L_64, AsyncTaskMethodBuilder_1_SetResult_mC4BAC830514CDB105730FF11F7744A4424A4009B_RuntimeMethod_var);
}
IL_018d:
{
return;
}
}
IL2CPP_EXTERN_C void U3CInnerReadU3Ed__66_MoveNext_m5DFDC2139602BBC2F86D14BDA64B4A49ECDD90EB_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
U3CInnerReadU3Ed__66_tDA84F0E1193C16C54FE1735B4B5F77FB65A68982* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<U3CInnerReadU3Ed__66_tDA84F0E1193C16C54FE1735B4B5F77FB65A68982*>(__this + _offset);
U3CInnerReadU3Ed__66_MoveNext_m5DFDC2139602BBC2F86D14BDA64B4A49ECDD90EB(_thisAdjusted, method);
}
// System.Void Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CInnerReadU3Ed__66_SetStateMachine_mBA42C0B565B5D3F43D109D2A8CC66EE8CE9BC920 (U3CInnerReadU3Ed__66_tDA84F0E1193C16C54FE1735B4B5F77FB65A68982* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_SetStateMachine_mFA173982D2C309A46F4285F60DC4FE0DC659F32C_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
AsyncTaskMethodBuilder_1_tF0BDBC54D5EB433C1205550D0F9819F43C9D4019* L_0 = (&__this->___U3CU3Et__builder_1);
RuntimeObject* L_1 = ___stateMachine0;
AsyncTaskMethodBuilder_1_SetStateMachine_mFA173982D2C309A46F4285F60DC4FE0DC659F32C(L_0, L_1, AsyncTaskMethodBuilder_1_SetStateMachine_mFA173982D2C309A46F4285F60DC4FE0DC659F32C_RuntimeMethod_var);
return;
}
}
IL2CPP_EXTERN_C void U3CInnerReadU3Ed__66_SetStateMachine_mBA42C0B565B5D3F43D109D2A8CC66EE8CE9BC920_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
U3CInnerReadU3Ed__66_tDA84F0E1193C16C54FE1735B4B5F77FB65A68982* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<U3CInnerReadU3Ed__66_tDA84F0E1193C16C54FE1735B4B5F77FB65A68982*>(__this + _offset);
U3CInnerReadU3Ed__66_SetStateMachine_mBA42C0B565B5D3F43D109D2A8CC66EE8CE9BC920(_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 Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CInnerWriteU3Ed__67_MoveNext_mDF6F0FEA0FCAE97EEB2E5A2546446C00674CCEA3 (U3CInnerWriteU3Ed__67_tC5B5BCC77DDC7AEC5DC77B1C9D086B550402B229* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CInnerWriteU3Ed__67_tC5B5BCC77DDC7AEC5DC77B1C9D086B550402B229_m648D1A8B37E49584E67D0AEBDE27819EBA5573F8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MobileAuthenticatedStream_U3CInnerWriteU3Eb__67_0_mEC1BC0A19130E44F6E542F229CE3FFAC0CD78697_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* V_1 = NULL;
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* V_2 = NULL;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 V_3;
memset((&V_3), 0, sizeof(V_3));
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C V_4;
memset((&V_4), 0, sizeof(V_4));
int32_t V_5 = 0;
Exception_t* V_6 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
int32_t L_0 = __this->___U3CU3E1__state_0;
V_0 = L_0;
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_1 = __this->___U3CU3E4__this_3;
V_1 = L_1;
}
try
{// begin try (depth: 1)
{
int32_t L_2 = V_0;
if (!L_2)
{
goto IL_00b7_1;
}
}
{
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED* L_3 = (&__this->___cancellationToken_2);
CancellationToken_ThrowIfCancellationRequested_mB9D952DC6E96FB6E0595FC8E88D3133CDA4382C3(L_3, NULL);
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_4 = V_1;
NullCheck(L_4);
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_5 = L_4->___writeBuffer_12;
NullCheck(L_5);
int32_t L_6 = ((BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)L_5)->___Size_2;
if (L_6)
{
goto IL_0031_1;
}
}
{
goto IL_012e;
}
IL_0031_1:
{
bool L_7 = __this->___sync_4;
if (!L_7)
{
goto IL_004d_1;
}
}
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_8 = V_1;
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_9 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
NullCheck(L_9);
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_9, L_8, (intptr_t)((void*)MobileAuthenticatedStream_U3CInnerWriteU3Eb__67_0_mEC1BC0A19130E44F6E542F229CE3FFAC0CD78697_RuntimeMethod_var), NULL);
il2cpp_codegen_runtime_class_init_inline(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_10;
L_10 = Task_Run_mBD6EF33232D13F2183A43D0A526A220C4F0181B4(L_9, NULL);
V_2 = L_10;
goto IL_007a_1;
}
IL_004d_1:
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_11 = V_1;
NullCheck(L_11);
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_12;
L_12 = AuthenticatedStream_get_InnerStream_m5BDA4857898A90C696DAD90FD61C536FC3EB10C7_inline(L_11, NULL);
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_13 = V_1;
NullCheck(L_13);
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_14 = L_13->___writeBuffer_12;
NullCheck(L_14);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_15 = ((BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)L_14)->___Buffer_0;
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_16 = V_1;
NullCheck(L_16);
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_17 = L_16->___writeBuffer_12;
NullCheck(L_17);
int32_t L_18 = ((BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)L_17)->___Offset_1;
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_19 = V_1;
NullCheck(L_19);
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_20 = L_19->___writeBuffer_12;
NullCheck(L_20);
int32_t L_21 = ((BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)L_20)->___Size_2;
NullCheck(L_12);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_22;
L_22 = Stream_WriteAsync_m51D91C94481BB32FE1A876A789C9705F433B133D(L_12, L_15, L_18, L_21, NULL);
V_2 = L_22;
}
IL_007a_1:
{
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_23 = V_2;
NullCheck(L_23);
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C L_24;
L_24 = Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4(L_23, (bool)0, NULL);
V_4 = L_24;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_25;
L_25 = ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline((&V_4), NULL);
V_3 = L_25;
bool L_26;
L_26 = ConfiguredTaskAwaiter_get_IsCompleted_mB189574F29658A59CC4C890B70538A9C5E835850((&V_3), NULL);
if (L_26)
{
goto IL_00d3_1;
}
}
{
int32_t L_27 = 0;
V_0 = L_27;
__this->___U3CU3E1__state_0 = L_27;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_28 = V_3;
__this->___U3CU3Eu__1_5 = L_28;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3Eu__1_5))->___m_task_0), (void*)NULL);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_29 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CInnerWriteU3Ed__67_tC5B5BCC77DDC7AEC5DC77B1C9D086B550402B229_m648D1A8B37E49584E67D0AEBDE27819EBA5573F8(L_29, (&V_3), __this, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CInnerWriteU3Ed__67_tC5B5BCC77DDC7AEC5DC77B1C9D086B550402B229_m648D1A8B37E49584E67D0AEBDE27819EBA5573F8_RuntimeMethod_var);
goto IL_0141;
}
IL_00b7_1:
{
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_30 = __this->___U3CU3Eu__1_5;
V_3 = L_30;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* L_31 = (&__this->___U3CU3Eu__1_5);
il2cpp_codegen_initobj(L_31, sizeof(ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618));
int32_t L_32 = (-1);
V_0 = L_32;
__this->___U3CU3E1__state_0 = L_32;
}
IL_00d3_1:
{
ConfiguredTaskAwaiter_GetResult_mD51FDD775D0CF7511FEE2B6C144DB003DE73AC26((&V_3), NULL);
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_33 = V_1;
NullCheck(L_33);
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_34 = L_33->___writeBuffer_12;
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_35 = L_34;
NullCheck(L_35);
int32_t L_36 = ((BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)L_35)->___TotalBytes_3;
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_37 = V_1;
NullCheck(L_37);
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_38 = L_37->___writeBuffer_12;
NullCheck(L_38);
int32_t L_39 = ((BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)L_38)->___Size_2;
NullCheck(L_35);
((BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)L_35)->___TotalBytes_3 = ((int32_t)il2cpp_codegen_add(L_36, L_39));
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_40 = V_1;
NullCheck(L_40);
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_41 = L_40->___writeBuffer_12;
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_42 = V_1;
NullCheck(L_42);
BufferOffsetSize2_t2C3F7F42F64D84F357DC24AFCD44AC4679B20629* L_43 = L_42->___writeBuffer_12;
int32_t L_44 = 0;
V_5 = L_44;
NullCheck(L_43);
((BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)L_43)->___Size_2 = L_44;
int32_t L_45 = V_5;
NullCheck(L_41);
((BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE*)L_41)->___Offset_1 = L_45;
goto IL_012e;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0115;
}
throw e;
}
CATCH_0115:
{// begin catch(System.Exception)
V_6 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
__this->___U3CU3E1__state_0 = ((int32_t)-2);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_46 = (&__this->___U3CU3Et__builder_1);
Exception_t* L_47 = V_6;
AsyncTaskMethodBuilder_SetException_mBE41863F0571E0177A15731294087DE45E1FC10B(L_46, L_47, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0141;
}// end catch (depth: 1)
IL_012e:
{
__this->___U3CU3E1__state_0 = ((int32_t)-2);
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_48 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_SetResult_m76D8B84F0068257C1823B1200B00E58E0C8DDDDE(L_48, NULL);
}
IL_0141:
{
return;
}
}
IL2CPP_EXTERN_C void U3CInnerWriteU3Ed__67_MoveNext_mDF6F0FEA0FCAE97EEB2E5A2546446C00674CCEA3_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
U3CInnerWriteU3Ed__67_tC5B5BCC77DDC7AEC5DC77B1C9D086B550402B229* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<U3CInnerWriteU3Ed__67_tC5B5BCC77DDC7AEC5DC77B1C9D086B550402B229*>(__this + _offset);
U3CInnerWriteU3Ed__67_MoveNext_mDF6F0FEA0FCAE97EEB2E5A2546446C00674CCEA3(_thisAdjusted, method);
}
// System.Void Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CInnerWriteU3Ed__67_SetStateMachine_m7448CF503BCD3FEC38241FB22DBA3AB4B91FF5B1 (U3CInnerWriteU3Ed__67_tC5B5BCC77DDC7AEC5DC77B1C9D086B550402B229* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
{
AsyncTaskMethodBuilder_t7A5128C134547B5918EB1AA24FE47ED4C1DF3F06* L_0 = (&__this->___U3CU3Et__builder_1);
RuntimeObject* L_1 = ___stateMachine0;
AsyncTaskMethodBuilder_SetStateMachine_mE52B5B6B076025592A7AB462E3D26FA434AEB795(L_0, L_1, NULL);
return;
}
}
IL2CPP_EXTERN_C void U3CInnerWriteU3Ed__67_SetStateMachine_m7448CF503BCD3FEC38241FB22DBA3AB4B91FF5B1_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
U3CInnerWriteU3Ed__67_tC5B5BCC77DDC7AEC5DC77B1C9D086B550402B229* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<U3CInnerWriteU3Ed__67_tC5B5BCC77DDC7AEC5DC77B1C9D086B550402B229*>(__this + _offset);
U3CInnerWriteU3Ed__67_SetStateMachine_m7448CF503BCD3FEC38241FB22DBA3AB4B91FF5B1(_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 Mono.Net.Security.MobileTlsContext::.ctor(Mono.Net.Security.MobileAuthenticatedStream,Mono.Net.Security.MonoSslAuthenticationOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MobileTlsContext__ctor_mAB891D57AD3DD87C68B97E458DCE7C03634B6404 (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* __this, MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* ___parent0, MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* ___options1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_0 = ___parent0;
__this->___U3CParentU3Ek__BackingField_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CParentU3Ek__BackingField_2), (void*)L_0);
MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* L_1 = ___options1;
__this->___U3COptionsU3Ek__BackingField_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3COptionsU3Ek__BackingField_1), (void*)L_1);
MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* L_2 = ___options1;
NullCheck(L_2);
bool L_3;
L_3 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean Mono.Net.Security.MonoSslAuthenticationOptions::get_ServerMode() */, L_2);
__this->___U3CIsServerU3Ek__BackingField_3 = L_3;
MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* L_4 = ___options1;
NullCheck(L_4);
int32_t L_5;
L_5 = VirtualFuncInvoker0< int32_t >::Invoke(5 /* System.Security.Authentication.SslProtocols Mono.Net.Security.MonoSslAuthenticationOptions::get_EnabledSslProtocols() */, L_4);
__this->___U3CEnabledProtocolsU3Ek__BackingField_7 = L_5;
MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* L_6 = ___options1;
NullCheck(L_6);
bool L_7;
L_7 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean Mono.Net.Security.MonoSslAuthenticationOptions::get_ServerMode() */, L_6);
if (!L_7)
{
goto IL_004e;
}
}
{
MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* L_8 = ___options1;
NullCheck(L_8);
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_9;
L_9 = VirtualFuncInvoker0< X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* >::Invoke(11 /* System.Security.Cryptography.X509Certificates.X509Certificate Mono.Net.Security.MonoSslAuthenticationOptions::get_ServerCertificate() */, L_8);
MobileTlsContext_set_LocalServerCertificate_m32343DBF091AD80FA29DD8184C0C99C72FE43FEF_inline(__this, L_9, NULL);
MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* L_10 = ___options1;
NullCheck(L_10);
bool L_11;
L_11 = VirtualFuncInvoker0< bool >::Invoke(14 /* System.Boolean Mono.Net.Security.MonoSslAuthenticationOptions::get_ClientCertificateRequired() */, L_10);
__this->___U3CAskForClientCertificateU3Ek__BackingField_6 = L_11;
goto IL_00a4;
}
IL_004e:
{
MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* L_12 = ___options1;
NullCheck(L_12);
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* L_13;
L_13 = VirtualFuncInvoker0< X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* >::Invoke(12 /* System.Security.Cryptography.X509Certificates.X509CertificateCollection Mono.Net.Security.MonoSslAuthenticationOptions::get_ClientCertificates() */, L_12);
__this->___U3CClientCertificatesU3Ek__BackingField_8 = L_13;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CClientCertificatesU3Ek__BackingField_8), (void*)L_13);
MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* L_14 = ___options1;
NullCheck(L_14);
String_t* L_15;
L_15 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String Mono.Net.Security.MonoSslAuthenticationOptions::get_TargetHost() */, L_14);
__this->___U3CTargetHostU3Ek__BackingField_4 = L_15;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CTargetHostU3Ek__BackingField_4), (void*)L_15);
MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* L_16 = ___options1;
NullCheck(L_16);
String_t* L_17;
L_17 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String Mono.Net.Security.MonoSslAuthenticationOptions::get_TargetHost() */, L_16);
__this->___U3CServerNameU3Ek__BackingField_5 = L_17;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CServerNameU3Ek__BackingField_5), (void*)L_17);
String_t* L_18;
L_18 = MobileTlsContext_get_ServerName_m3CF7B9F7D249B9B2F553B5A72F439B5502229BF3_inline(__this, NULL);
bool L_19;
L_19 = String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A(L_18, NULL);
if (L_19)
{
goto IL_00a4;
}
}
{
String_t* L_20;
L_20 = MobileTlsContext_get_ServerName_m3CF7B9F7D249B9B2F553B5A72F439B5502229BF3_inline(__this, NULL);
NullCheck(L_20);
int32_t L_21;
L_21 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_20, ((int32_t)58), NULL);
V_0 = L_21;
int32_t L_22 = V_0;
if ((((int32_t)L_22) <= ((int32_t)0)))
{
goto IL_00a4;
}
}
{
String_t* L_23;
L_23 = MobileTlsContext_get_ServerName_m3CF7B9F7D249B9B2F553B5A72F439B5502229BF3_inline(__this, NULL);
int32_t L_24 = V_0;
NullCheck(L_23);
String_t* L_25;
L_25 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_23, 0, L_24, NULL);
__this->___U3CServerNameU3Ek__BackingField_5 = L_25;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CServerNameU3Ek__BackingField_5), (void*)L_25);
}
IL_00a4:
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_26 = ___parent0;
NullCheck(L_26);
SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* L_27;
L_27 = MobileAuthenticatedStream_get_SslStream_mAF94411F0FF2126C8D8C1E9AABBC8CDA7EB73087_inline(L_26, NULL);
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_28 = ___parent0;
NullCheck(L_28);
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* L_29;
L_29 = MobileAuthenticatedStream_get_Provider_m9AE08411140D0CC27ADC979E0E290ECD70A47359_inline(L_28, NULL);
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_30 = ___parent0;
NullCheck(L_30);
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_31;
L_31 = MobileAuthenticatedStream_get_Settings_m21B268EC66FBAF762EC443B8FC784F1251444A96_inline(L_30, NULL);
ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755* L_32;
L_32 = ChainValidationHelper_GetInternalValidator_m9BF3791525A447EBA2283618A85A3E3C346205B7(L_27, L_29, L_31, NULL);
__this->___certificateValidator_0 = L_32;
Il2CppCodeGenWriteBarrier((void**)(&__this->___certificateValidator_0), (void*)L_32);
return;
}
}
// Mono.Net.Security.MobileAuthenticatedStream Mono.Net.Security.MobileTlsContext::get_Parent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* MobileTlsContext_get_Parent_mC509F430FE5581A104C62FB3A08AE9D97DE19098 (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* __this, const RuntimeMethod* method)
{
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_0 = __this->___U3CParentU3Ek__BackingField_2;
return L_0;
}
}
// Mono.Security.Interface.MonoTlsSettings Mono.Net.Security.MobileTlsContext::get_Settings()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* MobileTlsContext_get_Settings_m68D8D1488C1778311BE2EE65F549081B0E7D362C (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* __this, const RuntimeMethod* method)
{
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_0;
L_0 = MobileTlsContext_get_Parent_mC509F430FE5581A104C62FB3A08AE9D97DE19098_inline(__this, NULL);
NullCheck(L_0);
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_1;
L_1 = MobileAuthenticatedStream_get_Settings_m21B268EC66FBAF762EC443B8FC784F1251444A96_inline(L_0, NULL);
return L_1;
}
}
// System.Boolean Mono.Net.Security.MobileTlsContext::get_IsServer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MobileTlsContext_get_IsServer_m79E765F4FA8DAF1C98322134D48F6CACBEC824B7 (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___U3CIsServerU3Ek__BackingField_3;
return L_0;
}
}
// System.String Mono.Net.Security.MobileTlsContext::get_TargetHost()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MobileTlsContext_get_TargetHost_m82FF5791372BEF41AC5E73E368824231CC4F5528 (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CTargetHostU3Ek__BackingField_4;
return L_0;
}
}
// System.String Mono.Net.Security.MobileTlsContext::get_ServerName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MobileTlsContext_get_ServerName_m3CF7B9F7D249B9B2F553B5A72F439B5502229BF3 (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CServerNameU3Ek__BackingField_5;
return L_0;
}
}
// System.Boolean Mono.Net.Security.MobileTlsContext::get_AskForClientCertificate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MobileTlsContext_get_AskForClientCertificate_mABDEDBD5B9CA52FCAD16A9C271C73FA05218B767 (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___U3CAskForClientCertificateU3Ek__BackingField_6;
return L_0;
}
}
// System.Security.Cryptography.X509Certificates.X509CertificateCollection Mono.Net.Security.MobileTlsContext::get_ClientCertificates()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* MobileTlsContext_get_ClientCertificates_m675A2D5E4F7FCB85B4B412A5659953184065C9EE (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* __this, const RuntimeMethod* method)
{
{
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* L_0 = __this->___U3CClientCertificatesU3Ek__BackingField_8;
return L_0;
}
}
// System.Security.Cryptography.X509Certificates.X509Certificate Mono.Net.Security.MobileTlsContext::get_LocalServerCertificate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* MobileTlsContext_get_LocalServerCertificate_m20FDC85F1F18C42644D48872EBAF9A6247624E09 (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* __this, const RuntimeMethod* method)
{
{
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_0 = __this->___U3CLocalServerCertificateU3Ek__BackingField_9;
return L_0;
}
}
// System.Void Mono.Net.Security.MobileTlsContext::set_LocalServerCertificate(System.Security.Cryptography.X509Certificates.X509Certificate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MobileTlsContext_set_LocalServerCertificate_m32343DBF091AD80FA29DD8184C0C99C72FE43FEF (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* __this, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___value0, const RuntimeMethod* method)
{
{
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_0 = ___value0;
__this->___U3CLocalServerCertificateU3Ek__BackingField_9 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CLocalServerCertificateU3Ek__BackingField_9), (void*)L_0);
return;
}
}
// System.Boolean Mono.Net.Security.MobileTlsContext::ValidateCertificate(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.X509Certificates.X509Chain)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MobileTlsContext_ValidateCertificate_m7A7661E339AC2252062B3F7224621C9FACFEA234 (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* __this, X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* ___leaf0, X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* ___chain1, const RuntimeMethod* method)
{
ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5* V_0 = NULL;
{
ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755* L_0 = __this->___certificateValidator_0;
String_t* L_1;
L_1 = MobileTlsContext_get_TargetHost_m82FF5791372BEF41AC5E73E368824231CC4F5528_inline(__this, NULL);
bool L_2;
L_2 = MobileTlsContext_get_IsServer_m79E765F4FA8DAF1C98322134D48F6CACBEC824B7_inline(__this, NULL);
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_3 = ___leaf0;
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* L_4 = ___chain1;
NullCheck(L_0);
ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5* L_5;
L_5 = ChainValidationHelper_ValidateCertificate_m859E258B2CF6F570984C618241A26AAFE2B7104D(L_0, L_1, L_2, L_3, L_4, NULL);
V_0 = L_5;
ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5* L_6 = V_0;
if (!L_6)
{
goto IL_002f;
}
}
{
ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5* L_7 = V_0;
NullCheck(L_7);
bool L_8;
L_8 = ValidationResult_get_Trusted_mC74B0DA857D9879C6A7428DB31DEA8A2DCD9DFF2_inline(L_7, NULL);
if (!L_8)
{
goto IL_002f;
}
}
{
ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5* L_9 = V_0;
NullCheck(L_9);
bool L_10;
L_10 = ValidationResult_get_UserDenied_m8714FE685A3F0214EE05C59AFE8ABC71CE614E0B_inline(L_9, NULL);
return (bool)((((int32_t)L_10) == ((int32_t)0))? 1 : 0);
}
IL_002f:
{
return (bool)0;
}
}
// System.Security.Cryptography.X509Certificates.X509Certificate Mono.Net.Security.MobileTlsContext::SelectClientCertificate(System.String[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* MobileTlsContext_SelectClientCertificate_mF12113474A7EF6BDC8F7119D418722173A4EBDC1 (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* __this, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___acceptableIssuers0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Array_IndexOf_TisString_t_m9107AABCE77608D1D21B9ECB6DA42D0D4334AF32_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* V_0 = NULL;
int32_t V_1 = 0;
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* V_2 = NULL;
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* V_3 = NULL;
int32_t V_4 = 0;
String_t* V_5 = NULL;
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* V_6 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* G_B7_0 = NULL;
String_t* G_B7_1 = NULL;
ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755* G_B7_2 = NULL;
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* G_B6_0 = NULL;
String_t* G_B6_1 = NULL;
ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755* G_B6_2 = NULL;
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* G_B8_0 = NULL;
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* G_B8_1 = NULL;
String_t* G_B8_2 = NULL;
ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755* G_B8_3 = NULL;
{
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_0;
L_0 = MobileTlsContext_get_Settings_m68D8D1488C1778311BE2EE65F549081B0E7D362C(__this, NULL);
NullCheck(L_0);
bool L_1;
L_1 = MonoTlsSettings_get_DisallowUnauthenticatedCertificateRequest_m15B7CAB13F2301D201AAD092DF2FCB49366ABDF6_inline(L_0, NULL);
if (!L_1)
{
goto IL_0017;
}
}
{
bool L_2;
L_2 = VirtualFuncInvoker0< bool >::Invoke(5 /* System.Boolean Mono.Net.Security.MobileTlsContext::get_IsAuthenticated() */, __this);
if (L_2)
{
goto IL_0017;
}
}
{
return (X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4*)NULL;
}
IL_0017:
{
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_3;
L_3 = VirtualFuncInvoker0< X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* >::Invoke(10 /* System.Security.Cryptography.X509Certificates.X509Certificate2 Mono.Net.Security.MobileTlsContext::get_RemoteCertificate() */, __this);
if (L_3)
{
goto IL_002c;
}
}
{
TlsException_tC2DD153B101F6116975F36613D7F7C009C5664E3* L_4 = (TlsException_tC2DD153B101F6116975F36613D7F7C009C5664E3*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TlsException_tC2DD153B101F6116975F36613D7F7C009C5664E3_il2cpp_TypeInfo_var)));
NullCheck(L_4);
TlsException__ctor_m4E03D70F9BCA4C0CA737720A43ABAB696CEA6209(L_4, ((int32_t)80), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral20BBF77FD0D497807457F8ECCF59F13F5879AFD3)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MobileTlsContext_SelectClientCertificate_mF12113474A7EF6BDC8F7119D418722173A4EBDC1_RuntimeMethod_var)));
}
IL_002c:
{
ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755* L_5 = __this->___certificateValidator_0;
String_t* L_6;
L_6 = MobileTlsContext_get_TargetHost_m82FF5791372BEF41AC5E73E368824231CC4F5528_inline(__this, NULL);
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* L_7;
L_7 = MobileTlsContext_get_ClientCertificates_m675A2D5E4F7FCB85B4B412A5659953184065C9EE_inline(__this, NULL);
bool L_8;
L_8 = VirtualFuncInvoker0< bool >::Invoke(5 /* System.Boolean Mono.Net.Security.MobileTlsContext::get_IsAuthenticated() */, __this);
G_B6_0 = L_7;
G_B6_1 = L_6;
G_B6_2 = L_5;
if (L_8)
{
G_B7_0 = L_7;
G_B7_1 = L_6;
G_B7_2 = L_5;
goto IL_0049;
}
}
{
G_B8_0 = ((X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D*)(NULL));
G_B8_1 = G_B6_0;
G_B8_2 = G_B6_1;
G_B8_3 = G_B6_2;
goto IL_004f;
}
IL_0049:
{
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_9;
L_9 = VirtualFuncInvoker0< X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* >::Invoke(10 /* System.Security.Cryptography.X509Certificates.X509Certificate2 Mono.Net.Security.MobileTlsContext::get_RemoteCertificate() */, __this);
G_B8_0 = L_9;
G_B8_1 = G_B7_0;
G_B8_2 = G_B7_1;
G_B8_3 = G_B7_2;
}
IL_004f:
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_10 = ___acceptableIssuers0;
NullCheck(G_B8_3);
bool L_11;
L_11 = ChainValidationHelper_SelectClientCertificate_m77B577FD626B93B7018F62E6843727168F7876EA(G_B8_3, G_B8_2, G_B8_1, G_B8_0, L_10, (&V_0), NULL);
if (!L_11)
{
goto IL_005b;
}
}
{
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_12 = V_0;
return L_12;
}
IL_005b:
{
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* L_13;
L_13 = MobileTlsContext_get_ClientCertificates_m675A2D5E4F7FCB85B4B412A5659953184065C9EE_inline(__this, NULL);
if (!L_13)
{
goto IL_0070;
}
}
{
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* L_14;
L_14 = MobileTlsContext_get_ClientCertificates_m675A2D5E4F7FCB85B4B412A5659953184065C9EE_inline(__this, NULL);
NullCheck(L_14);
int32_t L_15;
L_15 = CollectionBase_get_Count_m2BD48A6DDD376554A7956E4B26EC27F9F1E43C72(L_14, NULL);
if (L_15)
{
goto IL_0072;
}
}
IL_0070:
{
return (X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4*)NULL;
}
IL_0072:
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_16 = ___acceptableIssuers0;
if (!L_16)
{
goto IL_0079;
}
}
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_17 = ___acceptableIssuers0;
NullCheck(L_17);
if ((((RuntimeArray*)L_17)->max_length))
{
goto IL_0086;
}
}
IL_0079:
{
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* L_18;
L_18 = MobileTlsContext_get_ClientCertificates_m675A2D5E4F7FCB85B4B412A5659953184065C9EE_inline(__this, NULL);
NullCheck(L_18);
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_19;
L_19 = X509CertificateCollection_get_Item_m9EC79D4B62FB412278F92F3641969385252F6572(L_18, 0, NULL);
return L_19;
}
IL_0086:
{
V_1 = 0;
goto IL_0133;
}
IL_008d:
{
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* L_20;
L_20 = MobileTlsContext_get_ClientCertificates_m675A2D5E4F7FCB85B4B412A5659953184065C9EE_inline(__this, NULL);
int32_t L_21 = V_1;
NullCheck(L_20);
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_22;
L_22 = X509CertificateCollection_get_Item_m9EC79D4B62FB412278F92F3641969385252F6572(L_20, L_21, NULL);
V_2 = ((X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D*)IsInstClass((RuntimeObject*)L_22, X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D_il2cpp_TypeInfo_var));
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_23 = V_2;
if (!L_23)
{
goto IL_012f;
}
}
{
V_3 = (X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5*)NULL;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0125:
{// begin finally (depth: 1)
{
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* L_24 = V_3;
if (!L_24)
{
goto IL_012e;
}
}
{
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* L_25 = V_3;
NullCheck(L_25);
X509Chain_Reset_mE9CFDF83BD0B08994DEF29C30556429B2FD55860(L_25, NULL);
}
IL_012e:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
try
{// begin try (depth: 2)
{
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* L_26 = (X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5*)il2cpp_codegen_object_new(X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5_il2cpp_TypeInfo_var);
NullCheck(L_26);
X509Chain__ctor_mE938759A3C3CA007FB171DDD375312F03394D3F6(L_26, NULL);
V_3 = L_26;
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* L_27 = V_3;
NullCheck(L_27);
X509ChainPolicy_t34F49B4067492A1E5F91DD91FA7C934B68D880EC* L_28;
L_28 = X509Chain_get_ChainPolicy_m947CBD207A65DB28D0EE7909004E44CBEDF34348(L_27, NULL);
NullCheck(L_28);
X509ChainPolicy_set_RevocationMode_mD31CF4CA6A09443829F91980F8AC98E21D5888AE(L_28, 0, NULL);
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* L_29 = V_3;
NullCheck(L_29);
X509ChainPolicy_t34F49B4067492A1E5F91DD91FA7C934B68D880EC* L_30;
L_30 = X509Chain_get_ChainPolicy_m947CBD207A65DB28D0EE7909004E44CBEDF34348(L_29, NULL);
NullCheck(L_30);
X509ChainPolicy_set_VerificationFlags_mA0C6910C20FCC1FB1DA1A35ED2E7429FA527A69E(L_30, ((int32_t)64), NULL);
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* L_31 = V_3;
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_32 = V_2;
NullCheck(L_31);
bool L_33;
L_33 = X509Chain_Build_mF368D6BAE5925C8311B41BFBA08C5D91277C67E5(L_31, L_32, NULL);
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* L_34 = V_3;
NullCheck(L_34);
X509ChainElementCollection_t543DE35924C12A624ADA5111F7F47C1F9F99E70D* L_35;
L_35 = X509Chain_get_ChainElements_m656A4A5EEA69BB8C4F5995DEF7C88AD9EB961AED(L_34, NULL);
NullCheck(L_35);
int32_t L_36;
L_36 = X509ChainElementCollection_get_Count_m5448D972C3009FA67B3F4E13061B6012D561B78B(L_35, NULL);
if (L_36)
{
goto IL_00dd_2;
}
}
{
goto IL_012f;
}
IL_00dd_2:
{
V_4 = 0;
goto IL_0111_2;
}
IL_00e2_2:
{
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* L_37 = V_3;
NullCheck(L_37);
X509ChainElementCollection_t543DE35924C12A624ADA5111F7F47C1F9F99E70D* L_38;
L_38 = X509Chain_get_ChainElements_m656A4A5EEA69BB8C4F5995DEF7C88AD9EB961AED(L_37, NULL);
int32_t L_39 = V_4;
NullCheck(L_38);
X509ChainElement_t95FFAD3F504A1CA731ECCBA88C5CB3B0EE28786D* L_40;
L_40 = X509ChainElementCollection_get_Item_mC2A5AAFBAEF74FB085685620066058ACDC71D69A(L_38, L_39, NULL);
NullCheck(L_40);
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_41;
L_41 = X509ChainElement_get_Certificate_m6AF210BCAD2D94C19DFEF475BDAA84E5FF4AF105_inline(L_40, NULL);
NullCheck(L_41);
String_t* L_42;
L_42 = X509Certificate_get_Issuer_m1922DC6FA16712898394AF2377B6D089BA2D169E(L_41, NULL);
V_5 = L_42;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_43 = ___acceptableIssuers0;
String_t* L_44 = V_5;
int32_t L_45;
L_45 = Array_IndexOf_TisString_t_m9107AABCE77608D1D21B9ECB6DA42D0D4334AF32(L_43, L_44, Array_IndexOf_TisString_t_m9107AABCE77608D1D21B9ECB6DA42D0D4334AF32_RuntimeMethod_var);
if ((((int32_t)L_45) == ((int32_t)(-1))))
{
goto IL_010b_2;
}
}
{
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_46 = V_2;
V_6 = L_46;
goto IL_0146;
}
IL_010b_2:
{
int32_t L_47 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add(L_47, 1));
}
IL_0111_2:
{
int32_t L_48 = V_4;
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* L_49 = V_3;
NullCheck(L_49);
X509ChainElementCollection_t543DE35924C12A624ADA5111F7F47C1F9F99E70D* L_50;
L_50 = X509Chain_get_ChainElements_m656A4A5EEA69BB8C4F5995DEF7C88AD9EB961AED(L_49, NULL);
NullCheck(L_50);
int32_t L_51;
L_51 = X509ChainElementCollection_get_Count_m5448D972C3009FA67B3F4E13061B6012D561B78B(L_50, NULL);
if ((((int32_t)L_48) < ((int32_t)L_51)))
{
goto IL_00e2_2;
}
}
{
goto IL_012f;
}
}// 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_0122_1;
}
throw e;
}
CATCH_0122_1:
{// begin catch(System.Object)
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_012f;
}// end catch (depth: 2)
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_012f:
{
int32_t L_52 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_52, 1));
}
IL_0133:
{
int32_t L_53 = V_1;
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* L_54;
L_54 = MobileTlsContext_get_ClientCertificates_m675A2D5E4F7FCB85B4B412A5659953184065C9EE_inline(__this, NULL);
NullCheck(L_54);
int32_t L_55;
L_55 = CollectionBase_get_Count_m2BD48A6DDD376554A7956E4B26EC27F9F1E43C72(L_54, NULL);
if ((((int32_t)L_53) < ((int32_t)L_55)))
{
goto IL_008d;
}
}
{
return (X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4*)NULL;
}
IL_0146:
{
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_56 = V_6;
return L_56;
}
}
// System.Void Mono.Net.Security.MobileTlsContext::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MobileTlsContext_Dispose_m7C7D11F95AC2F7663D397D6FA4ECF82ECC7C0F9A (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* __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(16 /* System.Void Mono.Net.Security.MobileTlsContext::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 Mono.Net.Security.MobileTlsContext::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MobileTlsContext_Dispose_m020A795EE75CF99916490B91697E0EB31C5A2F94 (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* __this, bool ___disposing0, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void Mono.Net.Security.MobileTlsContext::Finalize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MobileTlsContext_Finalize_mC58200C1813B8458AD3DB37BC15338F2AC750DF9 (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* __this, const RuntimeMethod* method)
{
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0009:
{// begin finally (depth: 1)
Object_Finalize_mC98C96301CCABFE00F1A7EF8E15DF507CACD42B2(__this, NULL);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
VirtualActionInvoker1< bool >::Invoke(16 /* System.Void Mono.Net.Security.MobileTlsContext::Dispose(System.Boolean) */, __this, (bool)0);
goto IL_0010;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0010:
{
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 Mono.Net.Security.MobileTlsProvider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MobileTlsProvider__ctor_m31D6E547C8B388F136D323088D376FD54FE69B68 (MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* __this, const RuntimeMethod* method)
{
{
MonoTlsProvider__ctor_m65BF846CE616D13609A5EFB2F42AE03A38E5CB8D(__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.Net.Security.ServerCertSelectionCallback Mono.Net.Security.MonoSslAuthenticationOptions::get_ServerCertSelectionDelegate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ServerCertSelectionCallback_t653386CAEAE0236FCF61A92963AB1646BB23C654* MonoSslAuthenticationOptions_get_ServerCertSelectionDelegate_m8F35626050A015130D823BA68862416889F75A42 (MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* __this, const RuntimeMethod* method)
{
{
ServerCertSelectionCallback_t653386CAEAE0236FCF61A92963AB1646BB23C654* L_0 = __this->___U3CServerCertSelectionDelegateU3Ek__BackingField_0;
return L_0;
}
}
// System.Void Mono.Net.Security.MonoSslAuthenticationOptions::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoSslAuthenticationOptions__ctor_mF6A5D221635C5E1ACF430108C1A11538E9F5349C (MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* __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.Net.Security.SslClientAuthenticationOptions Mono.Net.Security.MonoSslClientAuthenticationOptions::get_Options()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SslClientAuthenticationOptions_tA5277DAACAFB33887D2513D9399C5154B0D5CBC9* MonoSslClientAuthenticationOptions_get_Options_m67D736F913351C90F780A66F1A7C40832825D268 (MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* __this, const RuntimeMethod* method)
{
{
SslClientAuthenticationOptions_tA5277DAACAFB33887D2513D9399C5154B0D5CBC9* L_0 = __this->___U3COptionsU3Ek__BackingField_1;
return L_0;
}
}
// System.Boolean Mono.Net.Security.MonoSslClientAuthenticationOptions::get_ServerMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MonoSslClientAuthenticationOptions_get_ServerMode_m7D7A5D3F111161ABF85FBFA44615F184880FBC44 (MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Void Mono.Net.Security.MonoSslClientAuthenticationOptions::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoSslClientAuthenticationOptions__ctor_mFF45688A74504467AD6CC5CC1F416EAB53DDDDE1 (MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SslClientAuthenticationOptions_tA5277DAACAFB33887D2513D9399C5154B0D5CBC9_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
MonoSslAuthenticationOptions__ctor_mF6A5D221635C5E1ACF430108C1A11538E9F5349C(__this, NULL);
SslClientAuthenticationOptions_tA5277DAACAFB33887D2513D9399C5154B0D5CBC9* L_0 = (SslClientAuthenticationOptions_tA5277DAACAFB33887D2513D9399C5154B0D5CBC9*)il2cpp_codegen_object_new(SslClientAuthenticationOptions_tA5277DAACAFB33887D2513D9399C5154B0D5CBC9_il2cpp_TypeInfo_var);
NullCheck(L_0);
SslClientAuthenticationOptions__ctor_mFFA8C3E39592A8376E7C3F6AC6FB89A6B7A702CD(L_0, NULL);
__this->___U3COptionsU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3COptionsU3Ek__BackingField_1), (void*)L_0);
return;
}
}
// System.Void Mono.Net.Security.MonoSslClientAuthenticationOptions::set_CertificateRevocationCheckMode(System.Security.Cryptography.X509Certificates.X509RevocationMode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoSslClientAuthenticationOptions_set_CertificateRevocationCheckMode_m99D8AF1B0AC110FA167DF8614E485EABC97E35B0 (MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
SslClientAuthenticationOptions_tA5277DAACAFB33887D2513D9399C5154B0D5CBC9* L_0;
L_0 = MonoSslClientAuthenticationOptions_get_Options_m67D736F913351C90F780A66F1A7C40832825D268_inline(__this, NULL);
int32_t L_1 = ___value0;
NullCheck(L_0);
SslClientAuthenticationOptions_set_CertificateRevocationCheckMode_m5DB15346690DAC5A8F610AA8C7DEC7F2DFC29DE9(L_0, L_1, NULL);
return;
}
}
// System.Void Mono.Net.Security.MonoSslClientAuthenticationOptions::set_EncryptionPolicy(System.Net.Security.EncryptionPolicy)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoSslClientAuthenticationOptions_set_EncryptionPolicy_mA3DBA3D924CD48EFE642EC7AE41D194500803F95 (MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
SslClientAuthenticationOptions_tA5277DAACAFB33887D2513D9399C5154B0D5CBC9* L_0;
L_0 = MonoSslClientAuthenticationOptions_get_Options_m67D736F913351C90F780A66F1A7C40832825D268_inline(__this, NULL);
int32_t L_1 = ___value0;
NullCheck(L_0);
SslClientAuthenticationOptions_set_EncryptionPolicy_m008E6F28D3C4BFEFFB32A9BEA6AEF1C2B53F1C77(L_0, L_1, NULL);
return;
}
}
// System.Security.Authentication.SslProtocols Mono.Net.Security.MonoSslClientAuthenticationOptions::get_EnabledSslProtocols()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MonoSslClientAuthenticationOptions_get_EnabledSslProtocols_m03F598BB877EDC3B07069EC3D5CD5D51464355F1 (MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* __this, const RuntimeMethod* method)
{
{
SslClientAuthenticationOptions_tA5277DAACAFB33887D2513D9399C5154B0D5CBC9* L_0;
L_0 = MonoSslClientAuthenticationOptions_get_Options_m67D736F913351C90F780A66F1A7C40832825D268_inline(__this, NULL);
NullCheck(L_0);
int32_t L_1;
L_1 = SslClientAuthenticationOptions_get_EnabledSslProtocols_mEC43F31DCFB3322900792809C72AC48070A9D93B_inline(L_0, NULL);
return L_1;
}
}
// System.Void Mono.Net.Security.MonoSslClientAuthenticationOptions::set_EnabledSslProtocols(System.Security.Authentication.SslProtocols)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoSslClientAuthenticationOptions_set_EnabledSslProtocols_m5D27CFC1927D070DAC713CE4F933E3565E753149 (MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
SslClientAuthenticationOptions_tA5277DAACAFB33887D2513D9399C5154B0D5CBC9* L_0;
L_0 = MonoSslClientAuthenticationOptions_get_Options_m67D736F913351C90F780A66F1A7C40832825D268_inline(__this, NULL);
int32_t L_1 = ___value0;
NullCheck(L_0);
SslClientAuthenticationOptions_set_EnabledSslProtocols_mC0D304F69A5DC05292B87E00A73415BC83A632D5_inline(L_0, L_1, NULL);
return;
}
}
// System.String Mono.Net.Security.MonoSslClientAuthenticationOptions::get_TargetHost()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MonoSslClientAuthenticationOptions_get_TargetHost_m200D056C2694EC25E422728E35388E345889DB7B (MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* __this, const RuntimeMethod* method)
{
{
SslClientAuthenticationOptions_tA5277DAACAFB33887D2513D9399C5154B0D5CBC9* L_0;
L_0 = MonoSslClientAuthenticationOptions_get_Options_m67D736F913351C90F780A66F1A7C40832825D268_inline(__this, NULL);
NullCheck(L_0);
String_t* L_1;
L_1 = SslClientAuthenticationOptions_get_TargetHost_mC4CF1905E7B4F8193544D4997E305406B976A797_inline(L_0, NULL);
return L_1;
}
}
// System.Void Mono.Net.Security.MonoSslClientAuthenticationOptions::set_TargetHost(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoSslClientAuthenticationOptions_set_TargetHost_m069D8AB5AFF0FEE83E1C44770D3F3DE2D3CA8795 (MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
SslClientAuthenticationOptions_tA5277DAACAFB33887D2513D9399C5154B0D5CBC9* L_0;
L_0 = MonoSslClientAuthenticationOptions_get_Options_m67D736F913351C90F780A66F1A7C40832825D268_inline(__this, NULL);
String_t* L_1 = ___value0;
NullCheck(L_0);
SslClientAuthenticationOptions_set_TargetHost_m0D8FF94F267DC51F2BDE6E1C94C2CD67783C4019_inline(L_0, L_1, NULL);
return;
}
}
// System.Boolean Mono.Net.Security.MonoSslClientAuthenticationOptions::get_ClientCertificateRequired()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MonoSslClientAuthenticationOptions_get_ClientCertificateRequired_m9AE71A7C9696A450375687F64B4B8E69DEF0BD3F (MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* __this, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_0);
NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF(L_0, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MonoSslClientAuthenticationOptions_get_ClientCertificateRequired_m9AE71A7C9696A450375687F64B4B8E69DEF0BD3F_RuntimeMethod_var)));
}
}
// System.Security.Cryptography.X509Certificates.X509CertificateCollection Mono.Net.Security.MonoSslClientAuthenticationOptions::get_ClientCertificates()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* MonoSslClientAuthenticationOptions_get_ClientCertificates_m57BF4F92084EAAFFEF541E89D7ED519532DAEC0E (MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* __this, const RuntimeMethod* method)
{
{
SslClientAuthenticationOptions_tA5277DAACAFB33887D2513D9399C5154B0D5CBC9* L_0;
L_0 = MonoSslClientAuthenticationOptions_get_Options_m67D736F913351C90F780A66F1A7C40832825D268_inline(__this, NULL);
NullCheck(L_0);
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* L_1;
L_1 = SslClientAuthenticationOptions_get_ClientCertificates_mD6898001726E82ADD9E3083D78BD05DB619B313C_inline(L_0, NULL);
return L_1;
}
}
// System.Void Mono.Net.Security.MonoSslClientAuthenticationOptions::set_ClientCertificates(System.Security.Cryptography.X509Certificates.X509CertificateCollection)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoSslClientAuthenticationOptions_set_ClientCertificates_mA5CD1A0990D617B249AE37CD4B49C53DB37B59A5 (MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* __this, X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* ___value0, const RuntimeMethod* method)
{
{
SslClientAuthenticationOptions_tA5277DAACAFB33887D2513D9399C5154B0D5CBC9* L_0;
L_0 = MonoSslClientAuthenticationOptions_get_Options_m67D736F913351C90F780A66F1A7C40832825D268_inline(__this, NULL);
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* L_1 = ___value0;
NullCheck(L_0);
SslClientAuthenticationOptions_set_ClientCertificates_m08B053F1C158912EEA43A4A28D37A740041CA78B_inline(L_0, L_1, NULL);
return;
}
}
// System.Security.Cryptography.X509Certificates.X509Certificate Mono.Net.Security.MonoSslClientAuthenticationOptions::get_ServerCertificate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* MonoSslClientAuthenticationOptions_get_ServerCertificate_m7CD9CC5BF55B0C7749CDF0C813C9ACA4852B2985 (MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* __this, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_0);
NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF(L_0, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MonoSslClientAuthenticationOptions_get_ServerCertificate_m7CD9CC5BF55B0C7749CDF0C813C9ACA4852B2985_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
// Mono.Net.Security.MobileTlsProvider Mono.Net.Security.MonoTlsProviderFactory::GetProviderInternal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* MonoTlsProviderFactory_GetProviderInternal_m87C87ACEF272F007119C23121CD0D2E183785546 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
bool V_1 = false;
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* V_2 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
RuntimeObject* L_0 = ((MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var))->___locker_0;
V_0 = L_0;
V_1 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_001d:
{// begin finally (depth: 1)
{
bool L_1 = V_1;
if (!L_1)
{
goto IL_0026;
}
}
{
RuntimeObject* L_2 = V_0;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_2, NULL);
}
IL_0026:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
RuntimeObject* L_3 = V_0;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_3, (&V_1), NULL);
il2cpp_codegen_runtime_class_init_inline(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
MonoTlsProviderFactory_InitializeInternal_mB0843306BA58C8CBDE17485CBFCE45BAD8CFA356(NULL);
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* L_4 = ((MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var))->___defaultProvider_2;
V_2 = L_4;
goto IL_0027;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0027:
{
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* L_5 = V_2;
return L_5;
}
}
// System.Void Mono.Net.Security.MonoTlsProviderFactory::InitializeInternal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTlsProviderFactory_InitializeInternal_mB0843306BA58C8CBDE17485CBFCE45BAD8CFA356 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_m869055AE34AF218780AD2CA780B2712C00351A33_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_ContainsKey_m8C2BEADBB409B9054FD24D286B04A18C7923DD88_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
bool V_1 = false;
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* V_2 = NULL;
Exception_t* V_3 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
il2cpp_codegen_runtime_class_init_inline(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
RuntimeObject* L_0 = ((MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var))->___locker_0;
V_0 = L_0;
V_1 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0077:
{// begin finally (depth: 1)
{
bool L_1 = V_1;
if (!L_1)
{
goto IL_0080;
}
}
{
RuntimeObject* L_2 = V_0;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_2, NULL);
}
IL_0080:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
RuntimeObject* L_3 = V_0;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_3, (&V_1), NULL);
il2cpp_codegen_runtime_class_init_inline(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
bool L_4 = ((MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var))->___initialized_1;
if (!L_4)
{
goto IL_0019_1;
}
}
{
goto IL_0081;
}
IL_0019_1:
{
il2cpp_codegen_runtime_class_init_inline(SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261_il2cpp_TypeInfo_var);
SystemDependencyProvider_Initialize_mC10ED912B2EC028539CA83BE2BAE4EE1E237E835(NULL);
il2cpp_codegen_runtime_class_init_inline(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
MonoTlsProviderFactory_InitializeProviderRegistration_mDC8AEDEE018FFC5374E746A72B55A337B675CB82(NULL);
}
try
{// begin try (depth: 2)
il2cpp_codegen_runtime_class_init_inline(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* L_5;
L_5 = MonoTlsProviderFactory_CreateDefaultProviderImpl_m674088AF2FC01E08CEE18728A7BBACDD9A7C2182(NULL);
V_2 = L_5;
goto IL_0038_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_002b_1;
}
throw e;
}
CATCH_002b_1:
{// begin catch(System.Exception)
V_3 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
Exception_t* L_6 = V_3;
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_7 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_7);
NotSupportedException__ctor_m640434992590117168C3EF7533603F98C362FC91(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE92283747E37A297B07C2D57B4A8BC7A97D44A74)), L_6, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MonoTlsProviderFactory_InitializeInternal_mB0843306BA58C8CBDE17485CBFCE45BAD8CFA356_RuntimeMethod_var)));
}// end catch (depth: 2)
IL_0038_1:
{
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* L_8 = V_2;
if (L_8)
{
goto IL_0046_1;
}
}
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_9 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_9);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE92283747E37A297B07C2D57B4A8BC7A97D44A74)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MonoTlsProviderFactory_InitializeInternal_mB0843306BA58C8CBDE17485CBFCE45BAD8CFA356_RuntimeMethod_var)));
}
IL_0046_1:
{
il2cpp_codegen_runtime_class_init_inline(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
Dictionary_2_tAF53376D9E207F701196CFA12420D116F00604AC* L_10 = ((MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var))->___providerCache_4;
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* L_11 = V_2;
NullCheck(L_11);
Guid_t L_12;
L_12 = VirtualFuncInvoker0< Guid_t >::Invoke(4 /* System.Guid Mono.Security.Interface.MonoTlsProvider::get_ID() */, L_11);
NullCheck(L_10);
bool L_13;
L_13 = Dictionary_2_ContainsKey_m8C2BEADBB409B9054FD24D286B04A18C7923DD88(L_10, L_12, Dictionary_2_ContainsKey_m8C2BEADBB409B9054FD24D286B04A18C7923DD88_RuntimeMethod_var);
if (L_13)
{
goto IL_0069_1;
}
}
{
il2cpp_codegen_runtime_class_init_inline(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
Dictionary_2_tAF53376D9E207F701196CFA12420D116F00604AC* L_14 = ((MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var))->___providerCache_4;
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* L_15 = V_2;
NullCheck(L_15);
Guid_t L_16;
L_16 = VirtualFuncInvoker0< Guid_t >::Invoke(4 /* System.Guid Mono.Security.Interface.MonoTlsProvider::get_ID() */, L_15);
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* L_17 = V_2;
NullCheck(L_14);
Dictionary_2_Add_m869055AE34AF218780AD2CA780B2712C00351A33(L_14, L_16, L_17, Dictionary_2_Add_m869055AE34AF218780AD2CA780B2712C00351A33_RuntimeMethod_var);
}
IL_0069_1:
{
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* L_18 = V_2;
il2cpp_codegen_runtime_class_init_inline(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
((MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var))->___defaultProvider_2 = L_18;
Il2CppCodeGenWriteBarrier((void**)(&((MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var))->___defaultProvider_2), (void*)L_18);
((MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var))->___initialized_1 = (bool)1;
goto IL_0081;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0081:
{
return;
}
}
// Mono.Net.Security.MobileTlsProvider Mono.Net.Security.MonoTlsProviderFactory::LookupProvider(System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* MonoTlsProviderFactory_LookupProvider_m842219B5A2493A9AA3B4D1911A1D77EB2F260DD0 (String_t* ___name0, bool ___throwOnError1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_m869055AE34AF218780AD2CA780B2712C00351A33_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_m3047585A441D4101655E37CF8BD907598E2B19AF_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_m66783B424BFC6B42816BEE30A905C61471713077_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MonoTlsProviderFactory_LookupProvider_m842219B5A2493A9AA3B4D1911A1D77EB2F260DD0_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Tuple_2_get_Item1_m48AB3C0DC00F084E3C2CC7D285B5E77F3F45E6A5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Tuple_2_get_Item2_m3605D72E0AF663ED68EC8C8481FF5545D014EFD1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_GetType_m9CB153D66D389B8AE265D05E666E2B7E4EB0EF74_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
bool V_1 = false;
Tuple_2_t8A67FBD80CECF93E77E04F75D4B379CC242F7DA5* V_2 = NULL;
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* V_3 = NULL;
Type_t* V_4 = NULL;
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* V_5 = NULL;
Exception_t* V_6 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
il2cpp_codegen_runtime_class_init_inline(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
RuntimeObject* L_0 = ((MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var))->___locker_0;
V_0 = L_0;
V_1 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00e5:
{// begin finally (depth: 1)
{
bool L_1 = V_1;
if (!L_1)
{
goto IL_00ee;
}
}
{
RuntimeObject* L_2 = V_0;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_2, NULL);
}
IL_00ee:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
RuntimeObject* L_3 = V_0;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_3, (&V_1), NULL);
il2cpp_codegen_runtime_class_init_inline(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
MonoTlsProviderFactory_InitializeProviderRegistration_mDC8AEDEE018FFC5374E746A72B55A337B675CB82(NULL);
Dictionary_2_t6D341191E2021065DBEDA3500D49AB6A7791A7D7* L_4 = ((MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var))->___providerRegistration_3;
String_t* L_5 = ___name0;
NullCheck(L_4);
bool L_6;
L_6 = Dictionary_2_TryGetValue_m3047585A441D4101655E37CF8BD907598E2B19AF(L_4, L_5, (&V_2), Dictionary_2_TryGetValue_m3047585A441D4101655E37CF8BD907598E2B19AF_RuntimeMethod_var);
if (L_6)
{
goto IL_0040_1;
}
}
{
bool L_7 = ___throwOnError1;
if (!L_7)
{
goto IL_0038_1;
}
}
{
String_t* L_8 = ___name0;
String_t* L_9;
L_9 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF36146B1871734889391881FED19110261D6A78A)), L_8, NULL);
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_10 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_10);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_10, L_9, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MonoTlsProviderFactory_LookupProvider_m842219B5A2493A9AA3B4D1911A1D77EB2F260DD0_RuntimeMethod_var)));
}
IL_0038_1:
{
V_5 = (MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017*)NULL;
goto IL_00ef;
}
IL_0040_1:
{
il2cpp_codegen_runtime_class_init_inline(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
Dictionary_2_tAF53376D9E207F701196CFA12420D116F00604AC* L_11 = ((MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var))->___providerCache_4;
Tuple_2_t8A67FBD80CECF93E77E04F75D4B379CC242F7DA5* L_12 = V_2;
NullCheck(L_12);
Guid_t L_13;
L_13 = Tuple_2_get_Item1_m48AB3C0DC00F084E3C2CC7D285B5E77F3F45E6A5_inline(L_12, Tuple_2_get_Item1_m48AB3C0DC00F084E3C2CC7D285B5E77F3F45E6A5_RuntimeMethod_var);
NullCheck(L_11);
bool L_14;
L_14 = Dictionary_2_TryGetValue_m66783B424BFC6B42816BEE30A905C61471713077(L_11, L_13, (&V_3), Dictionary_2_TryGetValue_m66783B424BFC6B42816BEE30A905C61471713077_RuntimeMethod_var);
if (!L_14)
{
goto IL_005c_1;
}
}
{
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* L_15 = V_3;
V_5 = L_15;
goto IL_00ef;
}
IL_005c_1:
{
Tuple_2_t8A67FBD80CECF93E77E04F75D4B379CC242F7DA5* L_16 = V_2;
NullCheck(L_16);
String_t* L_17;
L_17 = Tuple_2_get_Item2_m3605D72E0AF663ED68EC8C8481FF5545D014EFD1_inline(L_16, Tuple_2_get_Item2_m3605D72E0AF663ED68EC8C8481FF5545D014EFD1_RuntimeMethod_var);
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_18;
L_18 = il2cpp_codegen_get_type(L_17, (bool)0, Type_GetType_m9CB153D66D389B8AE265D05E666E2B7E4EB0EF74_RuntimeMethod_var, MonoTlsProviderFactory_LookupProvider_m842219B5A2493A9AA3B4D1911A1D77EB2F260DD0_RuntimeMethod_var);
V_4 = L_18;
Type_t* L_19 = V_4;
bool L_20;
L_20 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_19, (Type_t*)NULL, NULL);
bool L_21 = ___throwOnError1;
if (!((int32_t)((int32_t)L_20&(int32_t)L_21)))
{
goto IL_008c_1;
}
}
{
Tuple_2_t8A67FBD80CECF93E77E04F75D4B379CC242F7DA5* L_22 = V_2;
NullCheck(L_22);
String_t* L_23;
L_23 = Tuple_2_get_Item2_m3605D72E0AF663ED68EC8C8481FF5545D014EFD1_inline(L_22, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Tuple_2_get_Item2_m3605D72E0AF663ED68EC8C8481FF5545D014EFD1_RuntimeMethod_var)));
String_t* L_24;
L_24 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8FD38829970030D94E5815DAB6ED73CBC728EBBF)), L_23, NULL);
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_25 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_25);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_25, L_24, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MonoTlsProviderFactory_LookupProvider_m842219B5A2493A9AA3B4D1911A1D77EB2F260DD0_RuntimeMethod_var)));
}
IL_008c_1:
{
}
try
{// begin try (depth: 2)
Type_t* L_26 = V_4;
RuntimeObject* L_27;
L_27 = Activator_CreateInstance_m2767C14E0050C13BDB2732D7223FE17A9FA0F61A(L_26, (bool)1, NULL);
V_3 = ((MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017*)CastclassClass((RuntimeObject*)L_27, MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017_il2cpp_TypeInfo_var));
goto IL_00b3_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_009d_1;
}
throw e;
}
CATCH_009d_1:
{// begin catch(System.Exception)
V_6 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
Type_t* L_28 = V_4;
String_t* L_29;
L_29 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63AC9DC645168B914A535F5C7342717758BEEFAF)), L_28, NULL);
Exception_t* L_30 = V_6;
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_31 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_31);
NotSupportedException__ctor_m640434992590117168C3EF7533603F98C362FC91(L_31, L_29, L_30, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_31, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MonoTlsProviderFactory_LookupProvider_m842219B5A2493A9AA3B4D1911A1D77EB2F260DD0_RuntimeMethod_var)));
}// end catch (depth: 2)
IL_00b3_1:
{
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* L_32 = V_3;
if (L_32)
{
goto IL_00cf_1;
}
}
{
bool L_33 = ___throwOnError1;
if (!L_33)
{
goto IL_00ca_1;
}
}
{
String_t* L_34 = ___name0;
String_t* L_35;
L_35 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF36146B1871734889391881FED19110261D6A78A)), L_34, 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*)&MonoTlsProviderFactory_LookupProvider_m842219B5A2493A9AA3B4D1911A1D77EB2F260DD0_RuntimeMethod_var)));
}
IL_00ca_1:
{
V_5 = (MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017*)NULL;
goto IL_00ef;
}
IL_00cf_1:
{
il2cpp_codegen_runtime_class_init_inline(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
Dictionary_2_tAF53376D9E207F701196CFA12420D116F00604AC* L_37 = ((MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var))->___providerCache_4;
Tuple_2_t8A67FBD80CECF93E77E04F75D4B379CC242F7DA5* L_38 = V_2;
NullCheck(L_38);
Guid_t L_39;
L_39 = Tuple_2_get_Item1_m48AB3C0DC00F084E3C2CC7D285B5E77F3F45E6A5_inline(L_38, Tuple_2_get_Item1_m48AB3C0DC00F084E3C2CC7D285B5E77F3F45E6A5_RuntimeMethod_var);
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* L_40 = V_3;
NullCheck(L_37);
Dictionary_2_Add_m869055AE34AF218780AD2CA780B2712C00351A33(L_37, L_39, L_40, Dictionary_2_Add_m869055AE34AF218780AD2CA780B2712C00351A33_RuntimeMethod_var);
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* L_41 = V_3;
V_5 = L_41;
goto IL_00ef;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00ef:
{
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* L_42 = V_5;
return L_42;
}
}
// System.Void Mono.Net.Security.MonoTlsProviderFactory::InitializeProviderRegistration()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTlsProviderFactory_InitializeProviderRegistration_mDC8AEDEE018FFC5374E746A72B55A337B675CB82 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m0C61DB9EDAAE02B489F93D02207BABF3315874DF_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mEA4DC2EB466B90E06833BFC64C52AC4A15AD81F1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t6D341191E2021065DBEDA3500D49AB6A7791A7D7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tAF53376D9E207F701196CFA12420D116F00604AC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
bool V_1 = false;
{
il2cpp_codegen_runtime_class_init_inline(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
RuntimeObject* L_0 = ((MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var))->___locker_0;
V_0 = L_0;
V_1 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0042:
{// begin finally (depth: 1)
{
bool L_1 = V_1;
if (!L_1)
{
goto IL_004b;
}
}
{
RuntimeObject* L_2 = V_0;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_2, NULL);
}
IL_004b:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
RuntimeObject* L_3 = V_0;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_3, (&V_1), NULL);
il2cpp_codegen_runtime_class_init_inline(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
Dictionary_2_t6D341191E2021065DBEDA3500D49AB6A7791A7D7* L_4 = ((MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var))->___providerRegistration_3;
if (!L_4)
{
goto IL_0019_1;
}
}
{
goto IL_004c;
}
IL_0019_1:
{
Dictionary_2_t6D341191E2021065DBEDA3500D49AB6A7791A7D7* L_5 = (Dictionary_2_t6D341191E2021065DBEDA3500D49AB6A7791A7D7*)il2cpp_codegen_object_new(Dictionary_2_t6D341191E2021065DBEDA3500D49AB6A7791A7D7_il2cpp_TypeInfo_var);
NullCheck(L_5);
Dictionary_2__ctor_mEA4DC2EB466B90E06833BFC64C52AC4A15AD81F1(L_5, Dictionary_2__ctor_mEA4DC2EB466B90E06833BFC64C52AC4A15AD81F1_RuntimeMethod_var);
il2cpp_codegen_runtime_class_init_inline(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
((MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var))->___providerRegistration_3 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&((MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var))->___providerRegistration_3), (void*)L_5);
Dictionary_2_tAF53376D9E207F701196CFA12420D116F00604AC* L_6 = (Dictionary_2_tAF53376D9E207F701196CFA12420D116F00604AC*)il2cpp_codegen_object_new(Dictionary_2_tAF53376D9E207F701196CFA12420D116F00604AC_il2cpp_TypeInfo_var);
NullCheck(L_6);
Dictionary_2__ctor_m0C61DB9EDAAE02B489F93D02207BABF3315874DF(L_6, Dictionary_2__ctor_m0C61DB9EDAAE02B489F93D02207BABF3315874DF_RuntimeMethod_var);
((MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var))->___providerCache_4 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&((MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var))->___providerCache_4), (void*)L_6);
bool L_7;
L_7 = UnityTls_get_IsSupported_m7A43EE578D088D942479C11C7A1718432ED1F048(NULL);
if (!L_7)
{
goto IL_003b_1;
}
}
{
il2cpp_codegen_runtime_class_init_inline(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
MonoTlsProviderFactory_PopulateUnityProviders_m5A63191876243DF78B41ACDFA473F61C8B2243F3(NULL);
goto IL_004c;
}
IL_003b_1:
{
il2cpp_codegen_runtime_class_init_inline(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
MonoTlsProviderFactory_PopulateProviders_mF2AB544C94407E541767C11141D5876CB079F838(NULL);
goto IL_004c;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_004c:
{
return;
}
}
// System.Void Mono.Net.Security.MonoTlsProviderFactory::PopulateUnityProviders()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTlsProviderFactory_PopulateUnityProviders_m5A63191876243DF78B41ACDFA473F61C8B2243F3 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_m4F27944027EAC99C539980EA991C9468EDCB402C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Tuple_2__ctor_m1C02D02DDF579D8A09311C682B1A7D14ABDEA604_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Tuple_2_t8A67FBD80CECF93E77E04F75D4B379CC242F7DA5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3F83BE0D6326B760AD76E78EDEB68B73ED006B6D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9F1213AA6EEF9116A55D707F375372E7AE4811E0);
s_Il2CppMethodInitialized = true;
}
Tuple_2_t8A67FBD80CECF93E77E04F75D4B379CC242F7DA5* V_0 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
Guid_t L_0 = ((MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var))->___UnityTlsId_5;
Tuple_2_t8A67FBD80CECF93E77E04F75D4B379CC242F7DA5* L_1 = (Tuple_2_t8A67FBD80CECF93E77E04F75D4B379CC242F7DA5*)il2cpp_codegen_object_new(Tuple_2_t8A67FBD80CECF93E77E04F75D4B379CC242F7DA5_il2cpp_TypeInfo_var);
NullCheck(L_1);
Tuple_2__ctor_m1C02D02DDF579D8A09311C682B1A7D14ABDEA604(L_1, L_0, _stringLiteral3F83BE0D6326B760AD76E78EDEB68B73ED006B6D, Tuple_2__ctor_m1C02D02DDF579D8A09311C682B1A7D14ABDEA604_RuntimeMethod_var);
V_0 = L_1;
Dictionary_2_t6D341191E2021065DBEDA3500D49AB6A7791A7D7* L_2 = ((MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var))->___providerRegistration_3;
Tuple_2_t8A67FBD80CECF93E77E04F75D4B379CC242F7DA5* L_3 = V_0;
NullCheck(L_2);
Dictionary_2_Add_m4F27944027EAC99C539980EA991C9468EDCB402C(L_2, _stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044, L_3, Dictionary_2_Add_m4F27944027EAC99C539980EA991C9468EDCB402C_RuntimeMethod_var);
Dictionary_2_t6D341191E2021065DBEDA3500D49AB6A7791A7D7* L_4 = ((MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var))->___providerRegistration_3;
Tuple_2_t8A67FBD80CECF93E77E04F75D4B379CC242F7DA5* L_5 = V_0;
NullCheck(L_4);
Dictionary_2_Add_m4F27944027EAC99C539980EA991C9468EDCB402C(L_4, _stringLiteral9F1213AA6EEF9116A55D707F375372E7AE4811E0, L_5, Dictionary_2_Add_m4F27944027EAC99C539980EA991C9468EDCB402C_RuntimeMethod_var);
return;
}
}
// System.Void Mono.Net.Security.MonoTlsProviderFactory::PopulateProviders()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTlsProviderFactory_PopulateProviders_mF2AB544C94407E541767C11141D5876CB079F838 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_m4F27944027EAC99C539980EA991C9468EDCB402C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7D552BA8BBFFCD85EFDE066E4246951389138C69);
s_Il2CppMethodInitialized = true;
}
Tuple_2_t8A67FBD80CECF93E77E04F75D4B379CC242F7DA5* V_0 = NULL;
Tuple_2_t8A67FBD80CECF93E77E04F75D4B379CC242F7DA5* V_1 = NULL;
Tuple_2_t8A67FBD80CECF93E77E04F75D4B379CC242F7DA5* G_B2_0 = NULL;
RuntimeObject* G_B1_0 = NULL;
{
V_0 = (Tuple_2_t8A67FBD80CECF93E77E04F75D4B379CC242F7DA5*)NULL;
G_B1_0 = NULL;
if (NULL)
{
G_B2_0 = ((Tuple_2_t8A67FBD80CECF93E77E04F75D4B379CC242F7DA5*)(NULL));
goto IL_0008;
}
}
{
Tuple_2_t8A67FBD80CECF93E77E04F75D4B379CC242F7DA5* L_0 = V_0;
G_B2_0 = L_0;
}
IL_0008:
{
V_1 = G_B2_0;
Tuple_2_t8A67FBD80CECF93E77E04F75D4B379CC242F7DA5* L_1 = V_1;
if (!L_1)
{
goto IL_002c;
}
}
{
il2cpp_codegen_runtime_class_init_inline(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
Dictionary_2_t6D341191E2021065DBEDA3500D49AB6A7791A7D7* L_2 = ((MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var))->___providerRegistration_3;
Tuple_2_t8A67FBD80CECF93E77E04F75D4B379CC242F7DA5* L_3 = V_1;
NullCheck(L_2);
Dictionary_2_Add_m4F27944027EAC99C539980EA991C9468EDCB402C(L_2, _stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044, L_3, Dictionary_2_Add_m4F27944027EAC99C539980EA991C9468EDCB402C_RuntimeMethod_var);
Dictionary_2_t6D341191E2021065DBEDA3500D49AB6A7791A7D7* L_4 = ((MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var))->___providerRegistration_3;
Tuple_2_t8A67FBD80CECF93E77E04F75D4B379CC242F7DA5* L_5 = V_1;
NullCheck(L_4);
Dictionary_2_Add_m4F27944027EAC99C539980EA991C9468EDCB402C(L_4, _stringLiteral7D552BA8BBFFCD85EFDE066E4246951389138C69, L_5, Dictionary_2_Add_m4F27944027EAC99C539980EA991C9468EDCB402C_RuntimeMethod_var);
}
IL_002c:
{
return;
}
}
// Mono.Net.Security.MobileTlsProvider Mono.Net.Security.MonoTlsProviderFactory::CreateDefaultProviderImpl()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* MonoTlsProviderFactory_CreateDefaultProviderImpl_m674088AF2FC01E08CEE18728A7BBACDD9A7C2182 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityTlsProvider_t5B2A843E65B77E7B2B9F2467DB0B6117505929D1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7D552BA8BBFFCD85EFDE066E4246951389138C69);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9B011A2F05732EE2D8F05125670B35D80E4C0155);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9F1213AA6EEF9116A55D707F375372E7AE4811E0);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
String_t* L_0;
L_0 = Environment_GetEnvironmentVariable_mFA1E83F28F2E74EF3312F9D4B582FFBE38804ED8(_stringLiteral9B011A2F05732EE2D8F05125670B35D80E4C0155, NULL);
V_0 = L_0;
String_t* L_1 = V_0;
bool L_2;
L_2 = String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A(L_1, NULL);
if (!L_2)
{
goto IL_0019;
}
}
{
V_0 = _stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044;
}
IL_0019:
{
String_t* L_3 = V_0;
bool L_4;
L_4 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_3, _stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044, NULL);
if (L_4)
{
goto IL_0042;
}
}
{
String_t* L_5 = V_0;
bool L_6;
L_6 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_5, _stringLiteral7D552BA8BBFFCD85EFDE066E4246951389138C69, NULL);
if (L_6)
{
goto IL_0042;
}
}
{
String_t* L_7 = V_0;
bool L_8;
L_8 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_7, _stringLiteral9F1213AA6EEF9116A55D707F375372E7AE4811E0, NULL);
if (L_8)
{
goto IL_0054;
}
}
{
goto IL_005a;
}
IL_0042:
{
bool L_9;
L_9 = UnityTls_get_IsSupported_m7A43EE578D088D942479C11C7A1718432ED1F048(NULL);
if (L_9)
{
goto IL_0054;
}
}
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_10 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_10);
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE92283747E37A297B07C2D57B4A8BC7A97D44A74)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MonoTlsProviderFactory_CreateDefaultProviderImpl_m674088AF2FC01E08CEE18728A7BBACDD9A7C2182_RuntimeMethod_var)));
}
IL_0054:
{
UnityTlsProvider_t5B2A843E65B77E7B2B9F2467DB0B6117505929D1* L_11 = (UnityTlsProvider_t5B2A843E65B77E7B2B9F2467DB0B6117505929D1*)il2cpp_codegen_object_new(UnityTlsProvider_t5B2A843E65B77E7B2B9F2467DB0B6117505929D1_il2cpp_TypeInfo_var);
NullCheck(L_11);
UnityTlsProvider__ctor_m0C11027324407A76EB81EB51C37FF5C8F6F219A8(L_11, NULL);
return L_11;
}
IL_005a:
{
String_t* L_12 = V_0;
il2cpp_codegen_runtime_class_init_inline(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* L_13;
L_13 = MonoTlsProviderFactory_LookupProvider_m842219B5A2493A9AA3B4D1911A1D77EB2F260DD0(L_12, (bool)1, NULL);
return L_13;
}
}
// Mono.Net.Security.MobileTlsProvider Mono.Net.Security.MonoTlsProviderFactory::GetProvider()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* MonoTlsProviderFactory_GetProvider_m8CDA0A014E43C98804347DB5384F9C05BBA26FEE (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* L_0;
L_0 = MonoTlsProviderFactory_GetProviderInternal_m87C87ACEF272F007119C23121CD0D2E183785546(NULL);
return L_0;
}
}
// System.Void Mono.Net.Security.MonoTlsProviderFactory::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTlsProviderFactory__cctor_mA2C103AE727F17D8706F964DB378FB0644CA70D1 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral73FA04677D2EC5BD9AE931264820FA6E454A3008);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB9E1478B8D72599051CCFC890ADE5E685453A124);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEBB621ED7B9025FA2DDD168BF1DEBFF75375C3FB);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
NullCheck(L_0);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_0, NULL);
((MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var))->___locker_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var))->___locker_0), (void*)L_0);
Guid_t L_1;
memset((&L_1), 0, sizeof(L_1));
Guid__ctor_mAE66BA1C43B4194F4F7991E2E30370E36CBBF830((&L_1), _stringLiteral73FA04677D2EC5BD9AE931264820FA6E454A3008, /*hidden argument*/NULL);
((MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var))->___UnityTlsId_5 = L_1;
Guid_t L_2;
memset((&L_2), 0, sizeof(L_2));
Guid__ctor_mAE66BA1C43B4194F4F7991E2E30370E36CBBF830((&L_2), _stringLiteralB9E1478B8D72599051CCFC890ADE5E685453A124, /*hidden argument*/NULL);
((MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var))->___AppleTlsId_6 = L_2;
Guid_t L_3;
memset((&L_3), 0, sizeof(L_3));
Guid__ctor_mAE66BA1C43B4194F4F7991E2E30370E36CBBF830((&L_3), _stringLiteralEBB621ED7B9025FA2DDD168BF1DEBFF75375C3FB, /*hidden argument*/NULL);
((MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var))->___BtlsId_7 = L_3;
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.HttpWebRequest Mono.Net.Security.MonoTlsStream::get_Request()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* MonoTlsStream_get_Request_m5F3CDE9EA1921F1A45C0FAE20DD4BA634D0D8D83 (MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* __this, const RuntimeMethod* method)
{
{
HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* L_0 = __this->___request_2;
return L_0;
}
}
// System.Net.WebExceptionStatus Mono.Net.Security.MonoTlsStream::get_ExceptionStatus()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MonoTlsStream_get_ExceptionStatus_mBB3A6B7073808EF33BA869786BA9B3617851796B (MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___status_6;
return L_0;
}
}
// System.Boolean Mono.Net.Security.MonoTlsStream::get_CertificateValidationFailed()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MonoTlsStream_get_CertificateValidationFailed_m28A1EF3B3EC723A5A0114B613F7BF9B6AB90555F (MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___U3CCertificateValidationFailedU3Ek__BackingField_7;
return L_0;
}
}
// System.Void Mono.Net.Security.MonoTlsStream::set_CertificateValidationFailed(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTlsStream_set_CertificateValidationFailed_m225E1AA3894B292682A2BF06B886693A11DEAFEC (MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->___U3CCertificateValidationFailedU3Ek__BackingField_7 = L_0;
return;
}
}
// System.Void Mono.Net.Security.MonoTlsStream::.ctor(System.Net.HttpWebRequest,System.Net.Sockets.NetworkStream)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTlsStream__ctor_mAED0E21D701587D3C110F379FF2C3D9318EB31DF (MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* __this, HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* ___request0, NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* ___networkStream1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* G_B2_0 = NULL;
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* G_B2_1 = NULL;
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* G_B1_0 = NULL;
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* G_B1_1 = NULL;
{
RuntimeObject* L_0 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
NullCheck(L_0);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_0, NULL);
__this->___sslStreamLock_5 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___sslStreamLock_5), (void*)L_0);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* L_1 = ___request0;
__this->___request_2 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___request_2), (void*)L_1);
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_2 = ___networkStream1;
__this->___networkStream_1 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->___networkStream_1), (void*)L_2);
HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* L_3 = ___request0;
NullCheck(L_3);
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_4;
L_4 = HttpWebRequest_get_TlsSettings_mE4E8C9107E0930061977FA03EE87DECE51C503D9_inline(L_3, NULL);
__this->___settings_3 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->___settings_3), (void*)L_4);
HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* L_5 = ___request0;
NullCheck(L_5);
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* L_6;
L_6 = HttpWebRequest_get_TlsProvider_mF4A43E69AE84D8AEEAE9FDCEE296DB7C83301123_inline(L_5, NULL);
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* L_7 = L_6;
G_B1_0 = L_7;
G_B1_1 = __this;
if (L_7)
{
G_B2_0 = L_7;
G_B2_1 = __this;
goto IL_003b;
}
}
{
il2cpp_codegen_runtime_class_init_inline(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* L_8;
L_8 = MonoTlsProviderFactory_GetProviderInternal_m87C87ACEF272F007119C23121CD0D2E183785546(NULL);
G_B2_0 = L_8;
G_B2_1 = G_B1_1;
}
IL_003b:
{
NullCheck(G_B2_1);
G_B2_1->___provider_0 = G_B2_0;
Il2CppCodeGenWriteBarrier((void**)(&G_B2_1->___provider_0), (void*)G_B2_0);
__this->___status_6 = ((int32_t)10);
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* L_9 = __this->___provider_0;
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0** L_10 = (&__this->___settings_3);
ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755* L_11;
L_11 = ChainValidationHelper_Create_m3EC94F4F608DFDB125DB6B725FB2CF151AC7F7EA(L_9, L_10, __this, NULL);
return;
}
}
// System.Threading.Tasks.Task`1<System.IO.Stream> Mono.Net.Security.MonoTlsStream::CreateStream(System.Net.WebConnectionTunnel,System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t06484715029D51A4420723456D165BAC63798F8D* MonoTlsStream_CreateStream_m320FE226FFD28910A3FB1A8BCD19B9CB6E0395F1 (MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* __this, WebConnectionTunnel_tA394C00C106FAA694D0D5B7A5B03B3B52328DC0F* ___tunnel0, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___cancellationToken1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_Create_m8F2B08988F5CA71F7523FD4A0CB127CCCB218B93_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_Start_TisU3CCreateStreamU3Ed__18_tB6902486B51A9F1F578114D893BEC030E9A29950_m80E53DFAEED43CB3C15DE84616EC79C8AD6F11BA_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_get_Task_m31AF486E97F1AC7E585EB822848E8069F7840E35_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_t923DC16ADFF754593B125800F38ED37C920B14C1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CCreateStreamU3Ed__18_tB6902486B51A9F1F578114D893BEC030E9A29950 V_0;
memset((&V_0), 0, sizeof(V_0));
{
(&V_0)->___U3CU3E4__this_2 = __this;
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___U3CU3E4__this_2), (void*)__this);
WebConnectionTunnel_tA394C00C106FAA694D0D5B7A5B03B3B52328DC0F* L_0 = ___tunnel0;
(&V_0)->___tunnel_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___tunnel_3), (void*)L_0);
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_1 = ___cancellationToken1;
(&V_0)->___cancellationToken_4 = L_1;
Il2CppCodeGenWriteBarrier((void**)&(((&(&V_0)->___cancellationToken_4))->____source_0), (void*)NULL);
il2cpp_codegen_runtime_class_init_inline(AsyncTaskMethodBuilder_1_t923DC16ADFF754593B125800F38ED37C920B14C1_il2cpp_TypeInfo_var);
AsyncTaskMethodBuilder_1_t923DC16ADFF754593B125800F38ED37C920B14C1 L_2;
L_2 = AsyncTaskMethodBuilder_1_Create_m8F2B08988F5CA71F7523FD4A0CB127CCCB218B93(AsyncTaskMethodBuilder_1_Create_m8F2B08988F5CA71F7523FD4A0CB127CCCB218B93_RuntimeMethod_var);
(&V_0)->___U3CU3Et__builder_1 = L_2;
Il2CppCodeGenWriteBarrier((void**)&((&(((&(&V_0)->___U3CU3Et__builder_1))->___m_coreState_1))->___m_stateMachine_0), (void*)NULL);
#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);
AsyncTaskMethodBuilder_1_t923DC16ADFF754593B125800F38ED37C920B14C1* L_3 = (&(&V_0)->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_1_Start_TisU3CCreateStreamU3Ed__18_tB6902486B51A9F1F578114D893BEC030E9A29950_m80E53DFAEED43CB3C15DE84616EC79C8AD6F11BA(L_3, (&V_0), AsyncTaskMethodBuilder_1_Start_TisU3CCreateStreamU3Ed__18_tB6902486B51A9F1F578114D893BEC030E9A29950_m80E53DFAEED43CB3C15DE84616EC79C8AD6F11BA_RuntimeMethod_var);
AsyncTaskMethodBuilder_1_t923DC16ADFF754593B125800F38ED37C920B14C1* L_4 = (&(&V_0)->___U3CU3Et__builder_1);
Task_1_t06484715029D51A4420723456D165BAC63798F8D* L_5;
L_5 = AsyncTaskMethodBuilder_1_get_Task_m31AF486E97F1AC7E585EB822848E8069F7840E35(L_4, AsyncTaskMethodBuilder_1_get_Task_m31AF486E97F1AC7E585EB822848E8069F7840E35_RuntimeMethod_var);
return L_5;
}
}
// System.Void Mono.Net.Security.MonoTlsStream::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTlsStream_Dispose_m955C2295BC9317F9E6F756164528EE530E0032FC (MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* __this, const RuntimeMethod* method)
{
{
MonoTlsStream_CloseSslStream_m82584A00391A5ACA6EC81C4848BBC7F92F801278(__this, NULL);
return;
}
}
// System.Void Mono.Net.Security.MonoTlsStream::CloseSslStream()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTlsStream_CloseSslStream_m82584A00391A5ACA6EC81C4848BBC7F92F801278 (MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* __this, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
bool V_1 = false;
{
RuntimeObject* L_0 = __this->___sslStreamLock_5;
V_0 = L_0;
V_1 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_002d:
{// begin finally (depth: 1)
{
bool L_1 = V_1;
if (!L_1)
{
goto IL_0036;
}
}
{
RuntimeObject* L_2 = V_0;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_2, NULL);
}
IL_0036:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
RuntimeObject* L_3 = V_0;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_3, (&V_1), NULL);
SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* L_4 = __this->___sslStream_4;
if (!L_4)
{
goto IL_002b_1;
}
}
{
SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* L_5 = __this->___sslStream_4;
NullCheck(L_5);
Stream_Dispose_mCDB42F32A17541CCA6D3A5906827A401570B07A8(L_5, NULL);
__this->___sslStream_4 = (SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___sslStream_4), (void*)(SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27*)NULL);
}
IL_002b_1:
{
goto IL_0037;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0037:
{
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 Mono.Net.Security.MonoTlsStream/<CreateStream>d__18::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CCreateStreamU3Ed__18_MoveNext_m45EE08C637B078770B0EA94A046B90250FAE66F8 (U3CCreateStreamU3Ed__18_tB6902486B51A9F1F578114D893BEC030E9A29950* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CCreateStreamU3Ed__18_tB6902486B51A9F1F578114D893BEC030E9A29950_m2C4C2ABA5E186B9B02DDA2BD8C664792E8BE6B55_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_SetResult_m03C6502C8E7CD8CC5C2DEBF334C70F640D9D6272_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ServicePointManager_t124F9D59A0C6581AC0C21156D657A2EB3C7EE120_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* V_1 = NULL;
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* V_2 = NULL;
String_t* V_3 = NULL;
int32_t V_4 = 0;
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;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 2> __active_exceptions;
WebConnectionTunnel_tA394C00C106FAA694D0D5B7A5B03B3B52328DC0F* G_B23_0 = NULL;
WebConnectionTunnel_tA394C00C106FAA694D0D5B7A5B03B3B52328DC0F* G_B22_0 = NULL;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* G_B24_0 = NULL;
{
int32_t L_0 = __this->___U3CU3E1__state_0;
V_0 = L_0;
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* 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_0047_1;
}
}
{
int32_t L_3 = V_0;
if ((((int32_t)L_3) == ((int32_t)1)))
{
goto IL_016c_1;
}
}
{
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* L_4 = V_1;
NullCheck(L_4);
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_5 = L_4->___networkStream_1;
NullCheck(L_5);
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_6;
L_6 = NetworkStream_get_InternalSocket_m58624516F119DC056AC5C53B1E3D412D0394F999(L_5, NULL);
__this->___U3CsocketU3E5__2_5 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CsocketU3E5__2_5), (void*)L_6);
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* L_7 = V_1;
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* L_8 = V_1;
NullCheck(L_8);
NetworkStream_tF39C3684B6D572BF47F518AD1DB1F4B12CEE4AE0* L_9 = L_8->___networkStream_1;
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* L_10 = V_1;
NullCheck(L_10);
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* L_11 = L_10->___provider_0;
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* L_12 = V_1;
NullCheck(L_12);
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_13 = L_12->___settings_3;
SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* L_14 = (SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27*)il2cpp_codegen_object_new(SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27_il2cpp_TypeInfo_var);
NullCheck(L_14);
SslStream__ctor_m222C4F58E1CBA2382263444001AA70862B2EC462(L_14, L_9, (bool)0, L_11, L_13, NULL);
NullCheck(L_7);
L_7->___sslStream_4 = L_14;
Il2CppCodeGenWriteBarrier((void**)(&L_7->___sslStream_4), (void*)L_14);
}
IL_0047_1:
{
}
try
{// begin try (depth: 2)
{
int32_t L_15 = V_0;
if (!L_15)
{
goto IL_00da_2;
}
}
{
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* L_16 = V_1;
NullCheck(L_16);
HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* L_17 = L_16->___request_2;
NullCheck(L_17);
String_t* L_18;
L_18 = HttpWebRequest_get_Host_mE23F8F15207CEF1E64CF212EEA7643185207923C(L_17, NULL);
V_3 = L_18;
String_t* L_19 = V_3;
bool L_20;
L_20 = String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A(L_19, NULL);
if (L_20)
{
goto IL_007b_2;
}
}
{
String_t* L_21 = V_3;
NullCheck(L_21);
int32_t L_22;
L_22 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_21, ((int32_t)58), NULL);
V_4 = L_22;
int32_t L_23 = V_4;
if ((((int32_t)L_23) <= ((int32_t)0)))
{
goto IL_007b_2;
}
}
{
String_t* L_24 = V_3;
int32_t L_25 = V_4;
NullCheck(L_24);
String_t* L_26;
L_26 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_24, 0, L_25, NULL);
V_3 = L_26;
}
IL_007b_2:
{
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* L_27 = V_1;
NullCheck(L_27);
SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* L_28 = L_27->___sslStream_4;
String_t* L_29 = V_3;
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* L_30 = V_1;
NullCheck(L_30);
HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* L_31 = L_30->___request_2;
NullCheck(L_31);
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* L_32;
L_32 = HttpWebRequest_get_ClientCertificates_mD9F70A07C623462FC910E764511471D542AB102F(L_31, NULL);
il2cpp_codegen_runtime_class_init_inline(ServicePointManager_t124F9D59A0C6581AC0C21156D657A2EB3C7EE120_il2cpp_TypeInfo_var);
int32_t L_33;
L_33 = ServicePointManager_get_SecurityProtocol_m30A1F0981535D5FCD93219E4759C13136FE1DACB_inline(NULL);
bool L_34;
L_34 = ServicePointManager_get_CheckCertificateRevocationList_mC0CDB007A91C59573B664FAB178B756F78561534_inline(NULL);
NullCheck(L_28);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_35;
L_35 = VirtualFuncInvoker4< Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*, String_t*, X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE*, int32_t, bool >::Invoke(41 /* System.Threading.Tasks.Task System.Net.Security.SslStream::AuthenticateAsClientAsync(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.Authentication.SslProtocols,System.Boolean) */, L_28, L_29, L_32, L_33, L_34);
NullCheck(L_35);
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C L_36;
L_36 = Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4(L_35, (bool)0, NULL);
V_6 = L_36;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_37;
L_37 = ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline((&V_6), NULL);
V_5 = L_37;
bool L_38;
L_38 = ConfiguredTaskAwaiter_get_IsCompleted_mB189574F29658A59CC4C890B70538A9C5E835850((&V_5), NULL);
if (L_38)
{
goto IL_00f7_2;
}
}
{
int32_t L_39 = 0;
V_0 = L_39;
__this->___U3CU3E1__state_0 = L_39;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_40 = V_5;
__this->___U3CU3Eu__1_6 = L_40;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3Eu__1_6))->___m_task_0), (void*)NULL);
AsyncTaskMethodBuilder_1_t923DC16ADFF754593B125800F38ED37C920B14C1* L_41 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CCreateStreamU3Ed__18_tB6902486B51A9F1F578114D893BEC030E9A29950_m2C4C2ABA5E186B9B02DDA2BD8C664792E8BE6B55(L_41, (&V_5), __this, AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CCreateStreamU3Ed__18_tB6902486B51A9F1F578114D893BEC030E9A29950_m2C4C2ABA5E186B9B02DDA2BD8C664792E8BE6B55_RuntimeMethod_var);
goto IL_0267;
}
IL_00da_2:
{
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_42 = __this->___U3CU3Eu__1_6;
V_5 = L_42;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* L_43 = (&__this->___U3CU3Eu__1_6);
il2cpp_codegen_initobj(L_43, sizeof(ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618));
int32_t L_44 = (-1);
V_0 = L_44;
__this->___U3CU3E1__state_0 = L_44;
}
IL_00f7_2:
{
ConfiguredTaskAwaiter_GetResult_mD51FDD775D0CF7511FEE2B6C144DB003DE73AC26((&V_5), NULL);
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* L_45 = V_1;
NullCheck(L_45);
L_45->___status_6 = 0;
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* L_46 = V_1;
NullCheck(L_46);
HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* L_47 = L_46->___request_2;
NullCheck(L_47);
ServicePoint_t5DB5939994CAA6A0DF221C5F58D59D1A6131CE29* L_48;
L_48 = HttpWebRequest_get_ServicePoint_m170B921D095437FC5B7FE5920F327F1AABF532D6(L_47, NULL);
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* L_49 = V_1;
NullCheck(L_49);
SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* L_50 = L_49->___sslStream_4;
NullCheck(L_50);
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_51;
L_51 = VirtualFuncInvoker0< X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* >::Invoke(42 /* System.Security.Cryptography.X509Certificates.X509Certificate System.Net.Security.SslStream::get_LocalCertificate() */, L_50);
NullCheck(L_48);
ServicePoint_UpdateClientCertificate_m1C24F73E61F345E535D184110A3625B2EAF8C6AD(L_48, L_51, NULL);
goto IL_016c_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_0122_1;
}
throw e;
}
CATCH_0122_1:
{// begin catch(System.Exception)
{
Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E* L_52 = __this->___U3CsocketU3E5__2_5;
NullCheck(L_52);
bool L_53;
L_53 = Socket_get_CleanedUp_m8F6EDAE37C56CBC282D3EAF9D93B5726EEC85988(L_52, NULL);
if (!L_53)
{
goto IL_0139_1;
}
}
{
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* L_54 = V_1;
NullCheck(L_54);
L_54->___status_6 = 6;
goto IL_0153_1;
}
IL_0139_1:
{
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* L_55 = V_1;
NullCheck(L_55);
bool L_56;
L_56 = MonoTlsStream_get_CertificateValidationFailed_m28A1EF3B3EC723A5A0114B613F7BF9B6AB90555F_inline(L_55, NULL);
if (!L_56)
{
goto IL_014b_1;
}
}
{
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* L_57 = V_1;
NullCheck(L_57);
L_57->___status_6 = ((int32_t)9);
goto IL_0153_1;
}
IL_014b_1:
{
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* L_58 = V_1;
NullCheck(L_58);
L_58->___status_6 = ((int32_t)10);
}
IL_0153_1:
{
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* L_59 = V_1;
NullCheck(L_59);
HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* L_60 = L_59->___request_2;
NullCheck(L_60);
ServicePoint_t5DB5939994CAA6A0DF221C5F58D59D1A6131CE29* L_61;
L_61 = HttpWebRequest_get_ServicePoint_m170B921D095437FC5B7FE5920F327F1AABF532D6(L_60, NULL);
NullCheck(L_61);
ServicePoint_UpdateClientCertificate_m1C24F73E61F345E535D184110A3625B2EAF8C6AD(L_61, (X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4*)NULL, NULL);
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* L_62 = V_1;
NullCheck(L_62);
MonoTlsStream_CloseSslStream_m82584A00391A5ACA6EC81C4848BBC7F92F801278(L_62, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CCreateStreamU3Ed__18_MoveNext_m45EE08C637B078770B0EA94A046B90250FAE66F8_RuntimeMethod_var)));
}
}// end catch (depth: 2)
IL_016c_1:
{
}
try
{// begin try (depth: 2)
{
int32_t L_63 = V_0;
if ((((int32_t)L_63) == ((int32_t)1)))
{
goto IL_01ed_2;
}
}
{
WebConnectionTunnel_tA394C00C106FAA694D0D5B7A5B03B3B52328DC0F* L_64 = __this->___tunnel_3;
WebConnectionTunnel_tA394C00C106FAA694D0D5B7A5B03B3B52328DC0F* L_65 = L_64;
G_B22_0 = L_65;
if (L_65)
{
G_B23_0 = L_65;
goto IL_017e_2;
}
}
{
G_B24_0 = ((ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(NULL));
goto IL_0183_2;
}
IL_017e_2:
{
NullCheck(G_B23_0);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_66;
L_66 = WebConnectionTunnel_get_Data_m31F4E1F83D5E2AB65A5F7128A9AD64870DEE58BA_inline(G_B23_0, NULL);
G_B24_0 = L_66;
}
IL_0183_2:
{
if (!G_B24_0)
{
goto IL_0211_2;
}
}
{
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* L_67 = V_1;
NullCheck(L_67);
SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* L_68 = L_67->___sslStream_4;
WebConnectionTunnel_tA394C00C106FAA694D0D5B7A5B03B3B52328DC0F* L_69 = __this->___tunnel_3;
NullCheck(L_69);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_70;
L_70 = WebConnectionTunnel_get_Data_m31F4E1F83D5E2AB65A5F7128A9AD64870DEE58BA_inline(L_69, NULL);
WebConnectionTunnel_tA394C00C106FAA694D0D5B7A5B03B3B52328DC0F* L_71 = __this->___tunnel_3;
NullCheck(L_71);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_72;
L_72 = WebConnectionTunnel_get_Data_m31F4E1F83D5E2AB65A5F7128A9AD64870DEE58BA_inline(L_71, NULL);
NullCheck(L_72);
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_73 = __this->___cancellationToken_4;
NullCheck(L_68);
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_74;
L_74 = 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_68, L_70, 0, ((int32_t)(((RuntimeArray*)L_72)->max_length)), L_73);
NullCheck(L_74);
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C L_75;
L_75 = Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4(L_74, (bool)0, NULL);
V_6 = L_75;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_76;
L_76 = ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline((&V_6), NULL);
V_5 = L_76;
bool L_77;
L_77 = ConfiguredTaskAwaiter_get_IsCompleted_mB189574F29658A59CC4C890B70538A9C5E835850((&V_5), NULL);
if (L_77)
{
goto IL_020a_2;
}
}
{
int32_t L_78 = 1;
V_0 = L_78;
__this->___U3CU3E1__state_0 = L_78;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_79 = V_5;
__this->___U3CU3Eu__1_6 = L_79;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3Eu__1_6))->___m_task_0), (void*)NULL);
AsyncTaskMethodBuilder_1_t923DC16ADFF754593B125800F38ED37C920B14C1* L_80 = (&__this->___U3CU3Et__builder_1);
AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CCreateStreamU3Ed__18_tB6902486B51A9F1F578114D893BEC030E9A29950_m2C4C2ABA5E186B9B02DDA2BD8C664792E8BE6B55(L_80, (&V_5), __this, AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_TisU3CCreateStreamU3Ed__18_tB6902486B51A9F1F578114D893BEC030E9A29950_m2C4C2ABA5E186B9B02DDA2BD8C664792E8BE6B55_RuntimeMethod_var);
goto IL_0267;
}
IL_01ed_2:
{
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_81 = __this->___U3CU3Eu__1_6;
V_5 = L_81;
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* L_82 = (&__this->___U3CU3Eu__1_6);
il2cpp_codegen_initobj(L_82, sizeof(ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618));
int32_t L_83 = (-1);
V_0 = L_83;
__this->___U3CU3E1__state_0 = L_83;
}
IL_020a_2:
{
ConfiguredTaskAwaiter_GetResult_mD51FDD775D0CF7511FEE2B6C144DB003DE73AC26((&V_5), NULL);
}
IL_0211_2:
{
goto IL_0223_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_0213_1;
}
throw e;
}
CATCH_0213_1:
{// begin catch(System.Object)
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* L_84 = V_1;
NullCheck(L_84);
L_84->___status_6 = 4;
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* L_85 = V_1;
NullCheck(L_85);
MonoTlsStream_CloseSslStream_m82584A00391A5ACA6EC81C4848BBC7F92F801278(L_85, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CCreateStreamU3Ed__18_MoveNext_m45EE08C637B078770B0EA94A046B90250FAE66F8_RuntimeMethod_var)));
}// end catch (depth: 2)
IL_0223_1:
{
MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* L_86 = V_1;
NullCheck(L_86);
SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* L_87 = L_86->___sslStream_4;
V_2 = L_87;
goto IL_024c;
}
}// 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_022c;
}
throw e;
}
CATCH_022c:
{// begin catch(System.Exception)
V_7 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
__this->___U3CU3E1__state_0 = ((int32_t)-2);
__this->___U3CsocketU3E5__2_5 = (Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CsocketU3E5__2_5), (void*)(Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E*)NULL);
AsyncTaskMethodBuilder_1_t923DC16ADFF754593B125800F38ED37C920B14C1* L_88 = (&__this->___U3CU3Et__builder_1);
Exception_t* L_89 = V_7;
AsyncTaskMethodBuilder_1_SetException_m791D3E146542C1B15641A6BB0A5561C44338382C(L_88, L_89, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AsyncTaskMethodBuilder_1_SetException_m791D3E146542C1B15641A6BB0A5561C44338382C_RuntimeMethod_var)));
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0267;
}// end catch (depth: 1)
IL_024c:
{
__this->___U3CU3E1__state_0 = ((int32_t)-2);
__this->___U3CsocketU3E5__2_5 = (Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CsocketU3E5__2_5), (void*)(Socket_t1F49472CDA22B581C29A258225ABF3ADA9DED67E*)NULL);
AsyncTaskMethodBuilder_1_t923DC16ADFF754593B125800F38ED37C920B14C1* L_90 = (&__this->___U3CU3Et__builder_1);
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_91 = V_2;
AsyncTaskMethodBuilder_1_SetResult_m03C6502C8E7CD8CC5C2DEBF334C70F640D9D6272(L_90, L_91, AsyncTaskMethodBuilder_1_SetResult_m03C6502C8E7CD8CC5C2DEBF334C70F640D9D6272_RuntimeMethod_var);
}
IL_0267:
{
return;
}
}
IL2CPP_EXTERN_C void U3CCreateStreamU3Ed__18_MoveNext_m45EE08C637B078770B0EA94A046B90250FAE66F8_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
{
U3CCreateStreamU3Ed__18_tB6902486B51A9F1F578114D893BEC030E9A29950* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<U3CCreateStreamU3Ed__18_tB6902486B51A9F1F578114D893BEC030E9A29950*>(__this + _offset);
U3CCreateStreamU3Ed__18_MoveNext_m45EE08C637B078770B0EA94A046B90250FAE66F8(_thisAdjusted, method);
}
// System.Void Mono.Net.Security.MonoTlsStream/<CreateStream>d__18::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CCreateStreamU3Ed__18_SetStateMachine_m76FB604B1174F14EEEA1F77E31AEB5680F19AB73 (U3CCreateStreamU3Ed__18_tB6902486B51A9F1F578114D893BEC030E9A29950* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_SetStateMachine_m5D949F9E15BCE9A631DDF030D35D8DD10C0C6417_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
AsyncTaskMethodBuilder_1_t923DC16ADFF754593B125800F38ED37C920B14C1* L_0 = (&__this->___U3CU3Et__builder_1);
RuntimeObject* L_1 = ___stateMachine0;
AsyncTaskMethodBuilder_1_SetStateMachine_m5D949F9E15BCE9A631DDF030D35D8DD10C0C6417(L_0, L_1, AsyncTaskMethodBuilder_1_SetStateMachine_m5D949F9E15BCE9A631DDF030D35D8DD10C0C6417_RuntimeMethod_var);
return;
}
}
IL2CPP_EXTERN_C void U3CCreateStreamU3Ed__18_SetStateMachine_m76FB604B1174F14EEEA1F77E31AEB5680F19AB73_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
U3CCreateStreamU3Ed__18_tB6902486B51A9F1F578114D893BEC030E9A29950* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<U3CCreateStreamU3Ed__18_tB6902486B51A9F1F578114D893BEC030E9A29950*>(__this + _offset);
U3CCreateStreamU3Ed__18_SetStateMachine_m76FB604B1174F14EEEA1F77E31AEB5680F19AB73(_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.Object Mono.Net.Security.NoReflectionHelper::GetProvider()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* NoReflectionHelper_GetProvider_m07746C3FA62A325DCC22169E40CC5353A93F2A23 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(MonoTlsProviderFactory_t32E6F98531762CDF275BEC085D1B07BDE4235624_il2cpp_TypeInfo_var);
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* L_0;
L_0 = MonoTlsProviderFactory_GetProvider_m8CDA0A014E43C98804347DB5384F9C05BBA26FEE(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 Mono.Net.Security.SystemCertificateValidator::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemCertificateValidator__cctor_m6C2E43AD95D74AF470013B88B823825B13937E30 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SystemCertificateValidator_tA4E6BC166E3F3CEDF8BAE495922494EE0A597D16_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
((SystemCertificateValidator_tA4E6BC166E3F3CEDF8BAE495922494EE0A597D16_StaticFields*)il2cpp_codegen_static_fields_for(SystemCertificateValidator_tA4E6BC166E3F3CEDF8BAE495922494EE0A597D16_il2cpp_TypeInfo_var))->___s_flags_1 = ((int32_t)168);
((SystemCertificateValidator_tA4E6BC166E3F3CEDF8BAE495922494EE0A597D16_StaticFields*)il2cpp_codegen_static_fields_for(SystemCertificateValidator_tA4E6BC166E3F3CEDF8BAE495922494EE0A597D16_il2cpp_TypeInfo_var))->___is_macosx_0 = (bool)0;
return;
}
}
// System.Boolean Mono.Net.Security.SystemCertificateValidator::NeedsChain(Mono.Security.Interface.MonoTlsSettings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SystemCertificateValidator_NeedsChain_mEA1D649FC72CD6D61ACECF098C7CC871AEC5A215 (MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* ___settings0, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Interface.MonoRemoteCertificateValidationCallback Mono.Net.Security.Private.CallbackHelpers::PublicToMono(System.Net.Security.RemoteCertificateValidationCallback)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MonoRemoteCertificateValidationCallback_t1A389B61998873F6B9A2EE7A11C36333A8AECCA0* CallbackHelpers_PublicToMono_m4B0ED4D1F9D6AC15E14D09F55642889B57CAE950 (RemoteCertificateValidationCallback_t2F4C5801F96B2C2BF934511796C5BFEAEBF01955* ___callback0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MonoRemoteCertificateValidationCallback_t1A389B61998873F6B9A2EE7A11C36333A8AECCA0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass0_0_U3CPublicToMonoU3Eb__0_m1C478ECA2AAAF7CF24DE679072777B23441DEFC8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass0_0_t60EE7521AABF25B40FF0091B73416ECA2A8A8A92_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CU3Ec__DisplayClass0_0_t60EE7521AABF25B40FF0091B73416ECA2A8A8A92* V_0 = NULL;
{
U3CU3Ec__DisplayClass0_0_t60EE7521AABF25B40FF0091B73416ECA2A8A8A92* L_0 = (U3CU3Ec__DisplayClass0_0_t60EE7521AABF25B40FF0091B73416ECA2A8A8A92*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass0_0_t60EE7521AABF25B40FF0091B73416ECA2A8A8A92_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CU3Ec__DisplayClass0_0__ctor_m31154BF78DAACBD45BE85524DB60A0C96A1B2A12(L_0, NULL);
V_0 = L_0;
U3CU3Ec__DisplayClass0_0_t60EE7521AABF25B40FF0091B73416ECA2A8A8A92* L_1 = V_0;
RemoteCertificateValidationCallback_t2F4C5801F96B2C2BF934511796C5BFEAEBF01955* L_2 = ___callback0;
NullCheck(L_1);
L_1->___callback_0 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&L_1->___callback_0), (void*)L_2);
U3CU3Ec__DisplayClass0_0_t60EE7521AABF25B40FF0091B73416ECA2A8A8A92* L_3 = V_0;
NullCheck(L_3);
RemoteCertificateValidationCallback_t2F4C5801F96B2C2BF934511796C5BFEAEBF01955* L_4 = L_3->___callback_0;
if (L_4)
{
goto IL_0017;
}
}
{
return (MonoRemoteCertificateValidationCallback_t1A389B61998873F6B9A2EE7A11C36333A8AECCA0*)NULL;
}
IL_0017:
{
U3CU3Ec__DisplayClass0_0_t60EE7521AABF25B40FF0091B73416ECA2A8A8A92* L_5 = V_0;
MonoRemoteCertificateValidationCallback_t1A389B61998873F6B9A2EE7A11C36333A8AECCA0* L_6 = (MonoRemoteCertificateValidationCallback_t1A389B61998873F6B9A2EE7A11C36333A8AECCA0*)il2cpp_codegen_object_new(MonoRemoteCertificateValidationCallback_t1A389B61998873F6B9A2EE7A11C36333A8AECCA0_il2cpp_TypeInfo_var);
NullCheck(L_6);
MonoRemoteCertificateValidationCallback__ctor_mEBD94D46C068D03E0F3A827F0875FE424C03B22A(L_6, L_5, (intptr_t)((void*)U3CU3Ec__DisplayClass0_0_U3CPublicToMonoU3Eb__0_m1C478ECA2AAAF7CF24DE679072777B23441DEFC8_RuntimeMethod_var), NULL);
return L_6;
}
}
// System.Net.Security.LocalCertSelectionCallback Mono.Net.Security.Private.CallbackHelpers::MonoToInternal(Mono.Security.Interface.MonoLocalCertificateSelectionCallback)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LocalCertSelectionCallback_t3AB79A8AA642074A3EF886118963EEA3CCABABE2* CallbackHelpers_MonoToInternal_m895AC89217D5876DB6CC95D7C656C9BA13D4D618 (MonoLocalCertificateSelectionCallback_t34F7772BA5ECE38E6CBD4C311F579DD1D4724DE3* ___callback0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LocalCertSelectionCallback_t3AB79A8AA642074A3EF886118963EEA3CCABABE2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass6_0_U3CMonoToInternalU3Eb__0_mE37EA1777B5D0BCD42B36A717CF6FC0E18CD3AE9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass6_0_t48F0A5835CC00CD6BF0EE74C6CDFF12987FC3DB2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CU3Ec__DisplayClass6_0_t48F0A5835CC00CD6BF0EE74C6CDFF12987FC3DB2* V_0 = NULL;
{
U3CU3Ec__DisplayClass6_0_t48F0A5835CC00CD6BF0EE74C6CDFF12987FC3DB2* L_0 = (U3CU3Ec__DisplayClass6_0_t48F0A5835CC00CD6BF0EE74C6CDFF12987FC3DB2*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass6_0_t48F0A5835CC00CD6BF0EE74C6CDFF12987FC3DB2_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CU3Ec__DisplayClass6_0__ctor_mD1E04FD28115DBD711A881B26347464C27140E23(L_0, NULL);
V_0 = L_0;
U3CU3Ec__DisplayClass6_0_t48F0A5835CC00CD6BF0EE74C6CDFF12987FC3DB2* L_1 = V_0;
MonoLocalCertificateSelectionCallback_t34F7772BA5ECE38E6CBD4C311F579DD1D4724DE3* L_2 = ___callback0;
NullCheck(L_1);
L_1->___callback_0 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&L_1->___callback_0), (void*)L_2);
U3CU3Ec__DisplayClass6_0_t48F0A5835CC00CD6BF0EE74C6CDFF12987FC3DB2* L_3 = V_0;
NullCheck(L_3);
MonoLocalCertificateSelectionCallback_t34F7772BA5ECE38E6CBD4C311F579DD1D4724DE3* L_4 = L_3->___callback_0;
if (L_4)
{
goto IL_0017;
}
}
{
return (LocalCertSelectionCallback_t3AB79A8AA642074A3EF886118963EEA3CCABABE2*)NULL;
}
IL_0017:
{
U3CU3Ec__DisplayClass6_0_t48F0A5835CC00CD6BF0EE74C6CDFF12987FC3DB2* L_5 = V_0;
LocalCertSelectionCallback_t3AB79A8AA642074A3EF886118963EEA3CCABABE2* L_6 = (LocalCertSelectionCallback_t3AB79A8AA642074A3EF886118963EEA3CCABABE2*)il2cpp_codegen_object_new(LocalCertSelectionCallback_t3AB79A8AA642074A3EF886118963EEA3CCABABE2_il2cpp_TypeInfo_var);
NullCheck(L_6);
LocalCertSelectionCallback__ctor_mA7B36924E69A918A71649CFF95CB361E33317C38(L_6, L_5, (intptr_t)((void*)U3CU3Ec__DisplayClass6_0_U3CMonoToInternalU3Eb__0_mE37EA1777B5D0BCD42B36A717CF6FC0E18CD3AE9_RuntimeMethod_var), NULL);
return L_6;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Net.Security.Private.CallbackHelpers/<>c__DisplayClass0_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass0_0__ctor_m31154BF78DAACBD45BE85524DB60A0C96A1B2A12 (U3CU3Ec__DisplayClass0_0_t60EE7521AABF25B40FF0091B73416ECA2A8A8A92* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Boolean Mono.Net.Security.Private.CallbackHelpers/<>c__DisplayClass0_0::<PublicToMono>b__0(System.String,System.Security.Cryptography.X509Certificates.X509Certificate,System.Security.Cryptography.X509Certificates.X509Chain,Mono.Security.Interface.MonoSslPolicyErrors)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec__DisplayClass0_0_U3CPublicToMonoU3Eb__0_m1C478ECA2AAAF7CF24DE679072777B23441DEFC8 (U3CU3Ec__DisplayClass0_0_t60EE7521AABF25B40FF0091B73416ECA2A8A8A92* __this, String_t* ___h0, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___c1, X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* ___ch2, int32_t ___e3, const RuntimeMethod* method)
{
{
RemoteCertificateValidationCallback_t2F4C5801F96B2C2BF934511796C5BFEAEBF01955* L_0 = __this->___callback_0;
String_t* L_1 = ___h0;
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_2 = ___c1;
X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* L_3 = ___ch2;
int32_t L_4 = ___e3;
NullCheck(L_0);
bool L_5;
L_5 = RemoteCertificateValidationCallback_Invoke_m5256BF7D3B9BFFFAA959191FD5117C393F670D83_inline(L_0, L_1, L_2, L_3, L_4, NULL);
return L_5;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Net.Security.Private.CallbackHelpers/<>c__DisplayClass6_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass6_0__ctor_mD1E04FD28115DBD711A881B26347464C27140E23 (U3CU3Ec__DisplayClass6_0_t48F0A5835CC00CD6BF0EE74C6CDFF12987FC3DB2* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Security.Cryptography.X509Certificates.X509Certificate Mono.Net.Security.Private.CallbackHelpers/<>c__DisplayClass6_0::<MonoToInternal>b__0(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.Cryptography.X509Certificates.X509Certificate,System.String[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* U3CU3Ec__DisplayClass6_0_U3CMonoToInternalU3Eb__0_mE37EA1777B5D0BCD42B36A717CF6FC0E18CD3AE9 (U3CU3Ec__DisplayClass6_0_t48F0A5835CC00CD6BF0EE74C6CDFF12987FC3DB2* __this, String_t* ___t0, X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* ___lc1, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___rc2, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___ai3, const RuntimeMethod* method)
{
{
MonoLocalCertificateSelectionCallback_t34F7772BA5ECE38E6CBD4C311F579DD1D4724DE3* L_0 = __this->___callback_0;
String_t* L_1 = ___t0;
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* L_2 = ___lc1;
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_3 = ___rc2;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_4 = ___ai3;
NullCheck(L_0);
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_5;
L_5 = MonoLocalCertificateSelectionCallback_Invoke_m32D010A24184A7BEEE6191B19F04E2E8AC8C3CEE_inline(L_0, L_1, L_2, L_3, L_4, NULL);
return L_5;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Http.NtlmSession::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NtlmSession__ctor_mEEEFFA1F5F08E6F04718A3008CB72006CC8BED71 (NtlmSession_tFCA9C8C98B2241BFE552477E3F60F419C51F30AB* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Net.Authorization Mono.Http.NtlmSession::Authenticate(System.String,System.Net.WebRequest,System.Net.ICredentials)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Authorization_t7F109103AF7366A418844BF604458413434F60D4* NtlmSession_Authenticate_m57C3EA3E259871B2300FA1B1AB9FA4AE5E9AA1FC (NtlmSession_tFCA9C8C98B2241BFE552477E3F60F419C51F30AB* __this, String_t* ___challenge0, WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* ___webRequest1, RuntimeObject* ___credentials2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Authorization_t7F109103AF7366A418844BF604458413434F60D4_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICredentials_t8FDA6AF64B852DA0631D4BE66962B20E51E230F0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type1Message_t870960FCE9832270C947CFFD3DC8CE62DC3E8974_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type2Message_t2B675F8672CFEC6E19474A238FA02DCEDB0209BE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type3Message_t17A486915FD96CAECE87CB2AE1825043A364AF66_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3556155D25CE64C710CC61A8C9D361B08530D364);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE73638B205B1B37DAA16B344C18E6BAE6D8CF40C);
s_Il2CppMethodInitialized = true;
}
HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* V_0 = NULL;
NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* V_1 = NULL;
String_t* V_2 = NULL;
String_t* V_3 = NULL;
String_t* V_4 = NULL;
bool V_5 = false;
int32_t V_6 = 0;
Type1Message_t870960FCE9832270C947CFFD3DC8CE62DC3E8974* V_7 = NULL;
Type3Message_t17A486915FD96CAECE87CB2AE1825043A364AF66* V_8 = NULL;
Type1Message_t870960FCE9832270C947CFFD3DC8CE62DC3E8974* V_9 = NULL;
Type2Message_t2B675F8672CFEC6E19474A238FA02DCEDB0209BE* G_B19_0 = NULL;
Type2Message_t2B675F8672CFEC6E19474A238FA02DCEDB0209BE* G_B18_0 = NULL;
{
WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* L_0 = ___webRequest1;
V_0 = ((HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9*)IsInstClass((RuntimeObject*)L_0, HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9_il2cpp_TypeInfo_var));
HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* L_1 = V_0;
if (L_1)
{
goto IL_000c;
}
}
{
return (Authorization_t7F109103AF7366A418844BF604458413434F60D4*)NULL;
}
IL_000c:
{
RuntimeObject* L_2 = ___credentials2;
HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* L_3 = V_0;
NullCheck(L_3);
Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_4;
L_4 = VirtualFuncInvoker0< Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* >::Invoke(11 /* System.Uri System.Net.WebRequest::get_RequestUri() */, L_3);
NullCheck(L_2);
NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* L_5;
L_5 = 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_2, L_4, _stringLiteral3556155D25CE64C710CC61A8C9D361B08530D364);
V_1 = L_5;
NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* L_6 = V_1;
if (L_6)
{
goto IL_0023;
}
}
{
return (Authorization_t7F109103AF7366A418844BF604458413434F60D4*)NULL;
}
IL_0023:
{
NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* L_7 = V_1;
NullCheck(L_7);
String_t* L_8;
L_8 = NetworkCredential_get_UserName_mEBB5D5B4928F1868DD79A104CF2BAFCFAC88AFA1(L_7, NULL);
V_2 = L_8;
NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* L_9 = V_1;
NullCheck(L_9);
String_t* L_10;
L_10 = NetworkCredential_get_Domain_mFFC454BD64B52DC2FFA09971876B56A2B337DE17(L_9, NULL);
V_3 = L_10;
NetworkCredential_tC8E2931557131BA3E6F42A8E1E2A10EC62567313* L_11 = V_1;
NullCheck(L_11);
String_t* L_12;
L_12 = NetworkCredential_get_Password_m7F0F54ED0E4A41F66513296C4E3063D70AF6036C(L_11, NULL);
V_4 = L_12;
String_t* L_13 = V_2;
if (!L_13)
{
goto IL_0049;
}
}
{
String_t* L_14 = V_2;
bool L_15;
L_15 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_14, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, NULL);
if (!L_15)
{
goto IL_004b;
}
}
IL_0049:
{
return (Authorization_t7F109103AF7366A418844BF604458413434F60D4*)NULL;
}
IL_004b:
{
String_t* L_16 = V_3;
bool L_17;
L_17 = String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A(L_16, NULL);
if (!L_17)
{
goto IL_0086;
}
}
{
String_t* L_18 = V_2;
NullCheck(L_18);
int32_t L_19;
L_19 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_18, ((int32_t)92), NULL);
V_6 = L_19;
int32_t L_20 = V_6;
if ((!(((uint32_t)L_20) == ((uint32_t)(-1)))))
{
goto IL_006c;
}
}
{
String_t* L_21 = V_2;
NullCheck(L_21);
int32_t L_22;
L_22 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_21, ((int32_t)47), NULL);
V_6 = L_22;
}
IL_006c:
{
int32_t L_23 = V_6;
if ((((int32_t)L_23) < ((int32_t)0)))
{
goto IL_0086;
}
}
{
String_t* L_24 = V_2;
int32_t L_25 = V_6;
NullCheck(L_24);
String_t* L_26;
L_26 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_24, 0, L_25, NULL);
V_3 = L_26;
String_t* L_27 = V_2;
int32_t L_28 = V_6;
NullCheck(L_27);
String_t* L_29;
L_29 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_27, ((int32_t)il2cpp_codegen_add(L_28, 1)), NULL);
V_2 = L_29;
}
IL_0086:
{
V_5 = (bool)0;
MessageBase_t173306F2152A17C53A4CD23954A751EE471BD708* L_30 = __this->___message_0;
if (L_30)
{
goto IL_00cc;
}
}
{
Type1Message_t870960FCE9832270C947CFFD3DC8CE62DC3E8974* L_31 = (Type1Message_t870960FCE9832270C947CFFD3DC8CE62DC3E8974*)il2cpp_codegen_object_new(Type1Message_t870960FCE9832270C947CFFD3DC8CE62DC3E8974_il2cpp_TypeInfo_var);
NullCheck(L_31);
Type1Message__ctor_mEB49FA35D05F01172DF3C164F97163C277AEF914(L_31, NULL);
V_7 = L_31;
Type1Message_t870960FCE9832270C947CFFD3DC8CE62DC3E8974* L_32 = V_7;
String_t* L_33 = V_3;
NullCheck(L_32);
Type1Message_set_Domain_mE06516CC741E4D12787911A9F1BCE92047DBA316(L_32, L_33, NULL);
Type1Message_t870960FCE9832270C947CFFD3DC8CE62DC3E8974* L_34 = V_7;
NullCheck(L_34);
Type1Message_set_Host_mAB5F72A7D281D31E9F9EC69B7D7518762AEE6CDA(L_34, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, NULL);
Type1Message_t870960FCE9832270C947CFFD3DC8CE62DC3E8974* L_35 = V_7;
Type1Message_t870960FCE9832270C947CFFD3DC8CE62DC3E8974* L_36 = L_35;
NullCheck(L_36);
int32_t L_37;
L_37 = MessageBase_get_Flags_m4A5BBB1791D770EE5B78682F35F7289627B96643_inline(L_36, NULL);
NullCheck(L_36);
MessageBase_set_Flags_m4BA4AA3CA1819FFDF10A8A5ABBE9A891BB31A95E_inline(L_36, ((int32_t)((int32_t)L_37|((int32_t)524288))), NULL);
Type1Message_t870960FCE9832270C947CFFD3DC8CE62DC3E8974* L_38 = V_7;
__this->___message_0 = L_38;
Il2CppCodeGenWriteBarrier((void**)(&__this->___message_0), (void*)L_38);
goto IL_0161;
}
IL_00cc:
{
MessageBase_t173306F2152A17C53A4CD23954A751EE471BD708* L_39 = __this->___message_0;
NullCheck(L_39);
int32_t L_40;
L_40 = MessageBase_get_Type_m9A3BCA375EA72DEE93AC6814A2D042F12CE2189B_inline(L_39, NULL);
if ((!(((uint32_t)L_40) == ((uint32_t)1))))
{
goto IL_0129;
}
}
{
String_t* L_41 = ___challenge0;
if (L_41)
{
goto IL_00e6;
}
}
{
__this->___message_0 = (MessageBase_t173306F2152A17C53A4CD23954A751EE471BD708*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___message_0), (void*)(MessageBase_t173306F2152A17C53A4CD23954A751EE471BD708*)NULL);
return (Authorization_t7F109103AF7366A418844BF604458413434F60D4*)NULL;
}
IL_00e6:
{
String_t* L_42 = ___challenge0;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_43;
L_43 = Convert_FromBase64String_m421F8600CA5124E047E3D7C2BC1B653F67BC48A1(L_42, NULL);
Type2Message_t2B675F8672CFEC6E19474A238FA02DCEDB0209BE* L_44 = (Type2Message_t2B675F8672CFEC6E19474A238FA02DCEDB0209BE*)il2cpp_codegen_object_new(Type2Message_t2B675F8672CFEC6E19474A238FA02DCEDB0209BE_il2cpp_TypeInfo_var);
NullCheck(L_44);
Type2Message__ctor_m7A630E10D6C79B19A67A0068102655D998172E69(L_44, L_43, NULL);
String_t* L_45 = V_4;
G_B18_0 = L_44;
if (L_45)
{
G_B19_0 = L_44;
goto IL_00fc;
}
}
{
V_4 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
G_B19_0 = G_B18_0;
}
IL_00fc:
{
Type3Message_t17A486915FD96CAECE87CB2AE1825043A364AF66* L_46 = (Type3Message_t17A486915FD96CAECE87CB2AE1825043A364AF66*)il2cpp_codegen_object_new(Type3Message_t17A486915FD96CAECE87CB2AE1825043A364AF66_il2cpp_TypeInfo_var);
NullCheck(L_46);
Type3Message__ctor_m3A46F07DA05999471A34A64EB248160225F06768(L_46, G_B19_0, NULL);
V_8 = L_46;
Type3Message_t17A486915FD96CAECE87CB2AE1825043A364AF66* L_47 = V_8;
String_t* L_48 = V_2;
NullCheck(L_47);
Type3Message_set_Username_mE76160F96BD8EEFF971C3E04B2AD2579080E3BF8_inline(L_47, L_48, NULL);
Type3Message_t17A486915FD96CAECE87CB2AE1825043A364AF66* L_49 = V_8;
String_t* L_50 = V_4;
NullCheck(L_49);
Type3Message_set_Password_m04828A9F18AE9301885B4BD3C1F7F151DE63B300_inline(L_49, L_50, NULL);
Type3Message_t17A486915FD96CAECE87CB2AE1825043A364AF66* L_51 = V_8;
String_t* L_52 = V_3;
NullCheck(L_51);
Type3Message_set_Domain_mA29F199E40EDFDB8CBEC22F50925889A1F8510E0(L_51, L_52, NULL);
Type3Message_t17A486915FD96CAECE87CB2AE1825043A364AF66* L_53 = V_8;
__this->___message_0 = L_53;
Il2CppCodeGenWriteBarrier((void**)(&__this->___message_0), (void*)L_53);
V_5 = (bool)1;
goto IL_0161;
}
IL_0129:
{
String_t* L_54 = ___challenge0;
if (!L_54)
{
goto IL_0139;
}
}
{
String_t* L_55 = ___challenge0;
String_t* L_56 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
bool L_57;
L_57 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_55, L_56, NULL);
if (!L_57)
{
goto IL_015e;
}
}
IL_0139:
{
Type1Message_t870960FCE9832270C947CFFD3DC8CE62DC3E8974* L_58 = (Type1Message_t870960FCE9832270C947CFFD3DC8CE62DC3E8974*)il2cpp_codegen_object_new(Type1Message_t870960FCE9832270C947CFFD3DC8CE62DC3E8974_il2cpp_TypeInfo_var);
NullCheck(L_58);
Type1Message__ctor_mEB49FA35D05F01172DF3C164F97163C277AEF914(L_58, NULL);
V_9 = L_58;
Type1Message_t870960FCE9832270C947CFFD3DC8CE62DC3E8974* L_59 = V_9;
String_t* L_60 = V_3;
NullCheck(L_59);
Type1Message_set_Domain_mE06516CC741E4D12787911A9F1BCE92047DBA316(L_59, L_60, NULL);
Type1Message_t870960FCE9832270C947CFFD3DC8CE62DC3E8974* L_61 = V_9;
NullCheck(L_61);
Type1Message_set_Host_mAB5F72A7D281D31E9F9EC69B7D7518762AEE6CDA(L_61, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, NULL);
Type1Message_t870960FCE9832270C947CFFD3DC8CE62DC3E8974* L_62 = V_9;
__this->___message_0 = L_62;
Il2CppCodeGenWriteBarrier((void**)(&__this->___message_0), (void*)L_62);
goto IL_0161;
}
IL_015e:
{
V_5 = (bool)1;
}
IL_0161:
{
MessageBase_t173306F2152A17C53A4CD23954A751EE471BD708* L_63 = __this->___message_0;
NullCheck(L_63);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_64;
L_64 = VirtualFuncInvoker0< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(5 /* System.Byte[] Mono.Security.Protocol.Ntlm.MessageBase::GetBytes() */, L_63);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
String_t* L_65;
L_65 = Convert_ToBase64String_mB276B21511FB01CDE030619C81757E786F91B9F3(L_64, NULL);
String_t* L_66;
L_66 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteralE73638B205B1B37DAA16B344C18E6BAE6D8CF40C, L_65, NULL);
bool L_67 = V_5;
Authorization_t7F109103AF7366A418844BF604458413434F60D4* L_68 = (Authorization_t7F109103AF7366A418844BF604458413434F60D4*)il2cpp_codegen_object_new(Authorization_t7F109103AF7366A418844BF604458413434F60D4_il2cpp_TypeInfo_var);
NullCheck(L_68);
Authorization__ctor_m7EC4EAC7186BC2664B45DDCDA917BA6C8315CBDC(L_68, L_66, L_67, NULL);
return L_68;
}
}
#ifdef __clang__
#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.Authorization Mono.Http.NtlmClient::Authenticate(System.String,System.Net.WebRequest,System.Net.ICredentials)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Authorization_t7F109103AF7366A418844BF604458413434F60D4* NtlmClient_Authenticate_m29234A413BB7C853DE1F4E9921FDB58DE8227BDF (NtlmClient_t44BA8DF60B38A19EB7987B3BC2FB8D0B8A1EB0E6* __this, String_t* ___challenge0, WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* ___webRequest1, RuntimeObject* ___credentials2, 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*)&ConditionalWeakTable_2_GetValue_mDB5BC526FD14937A9C0A92365206F70F103332EF_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CreateValueCallback_t32241614308DD3BEEEAC77EFA55E573B54A5D1D2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NtlmClient_t44BA8DF60B38A19EB7987B3BC2FB8D0B8A1EB0E6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CAuthenticateU3Eb__1_0_mE2F40D1D8564A82A6EFFA6D78EDF09514115E79A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t23EC3A439D27907A8B20604CC3FBC3DEA329D4BB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA2D66EF3F464A2B4BB53FA80F38DAD712C178D8);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
int32_t V_1 = 0;
HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* V_2 = NULL;
ConditionalWeakTable_2_t8C60960CD7830601390A47E0673223EC1560C638* V_3 = NULL;
bool V_4 = false;
Authorization_t7F109103AF7366A418844BF604458413434F60D4* V_5 = NULL;
CreateValueCallback_t32241614308DD3BEEEAC77EFA55E573B54A5D1D2* G_B13_0 = NULL;
HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* G_B13_1 = NULL;
ConditionalWeakTable_2_t8C60960CD7830601390A47E0673223EC1560C638* G_B13_2 = NULL;
CreateValueCallback_t32241614308DD3BEEEAC77EFA55E573B54A5D1D2* G_B12_0 = NULL;
HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* G_B12_1 = NULL;
ConditionalWeakTable_2_t8C60960CD7830601390A47E0673223EC1560C638* G_B12_2 = NULL;
{
RuntimeObject* L_0 = ___credentials2;
if (!L_0)
{
goto IL_0006;
}
}
{
String_t* L_1 = ___challenge0;
if (L_1)
{
goto IL_0008;
}
}
IL_0006:
{
return (Authorization_t7F109103AF7366A418844BF604458413434F60D4*)NULL;
}
IL_0008:
{
String_t* L_2 = ___challenge0;
NullCheck(L_2);
String_t* L_3;
L_3 = String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5(L_2, NULL);
V_0 = L_3;
String_t* L_4 = V_0;
NullCheck(L_4);
String_t* L_5;
L_5 = String_ToLower_m6191ABA3DC514ED47C10BDA23FD0DDCEAE7ACFBD(L_4, NULL);
NullCheck(L_5);
int32_t L_6;
L_6 = String_IndexOf_m69E9BDAFD93767C85A7FF861B453415D3B4A200F(L_5, _stringLiteralDA2D66EF3F464A2B4BB53FA80F38DAD712C178D8, NULL);
V_1 = L_6;
int32_t L_7 = V_1;
if ((!(((uint32_t)L_7) == ((uint32_t)(-1)))))
{
goto IL_0026;
}
}
{
return (Authorization_t7F109103AF7366A418844BF604458413434F60D4*)NULL;
}
IL_0026:
{
String_t* L_8 = V_0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_9 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)2);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_10 = L_9;
NullCheck(L_10);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)32));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_11 = L_10;
NullCheck(L_11);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(1), (Il2CppChar)((int32_t)9));
NullCheck(L_8);
int32_t L_12;
L_12 = String_IndexOfAny_mC7AA4AE42B38667BDB9B214AA6230F322306CFF6(L_8, L_11, NULL);
V_1 = L_12;
int32_t L_13 = V_1;
if ((((int32_t)L_13) == ((int32_t)(-1))))
{
goto IL_0050;
}
}
{
String_t* L_14 = V_0;
int32_t L_15 = V_1;
NullCheck(L_14);
String_t* L_16;
L_16 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_14, L_15, NULL);
NullCheck(L_16);
String_t* L_17;
L_17 = String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5(L_16, NULL);
V_0 = L_17;
goto IL_0052;
}
IL_0050:
{
V_0 = (String_t*)NULL;
}
IL_0052:
{
WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* L_18 = ___webRequest1;
V_2 = ((HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9*)IsInstClass((RuntimeObject*)L_18, HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9_il2cpp_TypeInfo_var));
HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* L_19 = V_2;
if (L_19)
{
goto IL_005e;
}
}
{
return (Authorization_t7F109103AF7366A418844BF604458413434F60D4*)NULL;
}
IL_005e:
{
il2cpp_codegen_runtime_class_init_inline(NtlmClient_t44BA8DF60B38A19EB7987B3BC2FB8D0B8A1EB0E6_il2cpp_TypeInfo_var);
ConditionalWeakTable_2_t8C60960CD7830601390A47E0673223EC1560C638* L_20 = ((NtlmClient_t44BA8DF60B38A19EB7987B3BC2FB8D0B8A1EB0E6_StaticFields*)il2cpp_codegen_static_fields_for(NtlmClient_t44BA8DF60B38A19EB7987B3BC2FB8D0B8A1EB0E6_il2cpp_TypeInfo_var))->___cache_0;
V_3 = L_20;
V_4 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00a5:
{// begin finally (depth: 1)
{
bool L_21 = V_4;
if (!L_21)
{
goto IL_00af;
}
}
{
ConditionalWeakTable_2_t8C60960CD7830601390A47E0673223EC1560C638* L_22 = V_3;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_22, NULL);
}
IL_00af:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
ConditionalWeakTable_2_t8C60960CD7830601390A47E0673223EC1560C638* L_23 = V_3;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_23, (&V_4), NULL);
il2cpp_codegen_runtime_class_init_inline(NtlmClient_t44BA8DF60B38A19EB7987B3BC2FB8D0B8A1EB0E6_il2cpp_TypeInfo_var);
ConditionalWeakTable_2_t8C60960CD7830601390A47E0673223EC1560C638* L_24 = ((NtlmClient_t44BA8DF60B38A19EB7987B3BC2FB8D0B8A1EB0E6_StaticFields*)il2cpp_codegen_static_fields_for(NtlmClient_t44BA8DF60B38A19EB7987B3BC2FB8D0B8A1EB0E6_il2cpp_TypeInfo_var))->___cache_0;
HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* L_25 = V_2;
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t23EC3A439D27907A8B20604CC3FBC3DEA329D4BB_il2cpp_TypeInfo_var);
CreateValueCallback_t32241614308DD3BEEEAC77EFA55E573B54A5D1D2* L_26 = ((U3CU3Ec_t23EC3A439D27907A8B20604CC3FBC3DEA329D4BB_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t23EC3A439D27907A8B20604CC3FBC3DEA329D4BB_il2cpp_TypeInfo_var))->___U3CU3E9__1_0_1;
CreateValueCallback_t32241614308DD3BEEEAC77EFA55E573B54A5D1D2* L_27 = L_26;
G_B12_0 = L_27;
G_B12_1 = L_25;
G_B12_2 = L_24;
if (L_27)
{
G_B13_0 = L_27;
G_B13_1 = L_25;
G_B13_2 = L_24;
goto IL_0094_1;
}
}
{
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t23EC3A439D27907A8B20604CC3FBC3DEA329D4BB_il2cpp_TypeInfo_var);
U3CU3Ec_t23EC3A439D27907A8B20604CC3FBC3DEA329D4BB* L_28 = ((U3CU3Ec_t23EC3A439D27907A8B20604CC3FBC3DEA329D4BB_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t23EC3A439D27907A8B20604CC3FBC3DEA329D4BB_il2cpp_TypeInfo_var))->___U3CU3E9_0;
CreateValueCallback_t32241614308DD3BEEEAC77EFA55E573B54A5D1D2* L_29 = (CreateValueCallback_t32241614308DD3BEEEAC77EFA55E573B54A5D1D2*)il2cpp_codegen_object_new(CreateValueCallback_t32241614308DD3BEEEAC77EFA55E573B54A5D1D2_il2cpp_TypeInfo_var);
NullCheck(L_29);
CreateValueCallback__ctor_m184219934207027C4DAD22DA45FACF4BD5D698CE(L_29, L_28, (intptr_t)((void*)U3CU3Ec_U3CAuthenticateU3Eb__1_0_mE2F40D1D8564A82A6EFFA6D78EDF09514115E79A_RuntimeMethod_var), NULL);
CreateValueCallback_t32241614308DD3BEEEAC77EFA55E573B54A5D1D2* L_30 = L_29;
((U3CU3Ec_t23EC3A439D27907A8B20604CC3FBC3DEA329D4BB_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t23EC3A439D27907A8B20604CC3FBC3DEA329D4BB_il2cpp_TypeInfo_var))->___U3CU3E9__1_0_1 = L_30;
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t23EC3A439D27907A8B20604CC3FBC3DEA329D4BB_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t23EC3A439D27907A8B20604CC3FBC3DEA329D4BB_il2cpp_TypeInfo_var))->___U3CU3E9__1_0_1), (void*)L_30);
G_B13_0 = L_30;
G_B13_1 = G_B12_1;
G_B13_2 = G_B12_2;
}
IL_0094_1:
{
NullCheck(G_B13_2);
NtlmSession_tFCA9C8C98B2241BFE552477E3F60F419C51F30AB* L_31;
L_31 = ConditionalWeakTable_2_GetValue_mDB5BC526FD14937A9C0A92365206F70F103332EF(G_B13_2, G_B13_1, G_B13_0, ConditionalWeakTable_2_GetValue_mDB5BC526FD14937A9C0A92365206F70F103332EF_RuntimeMethod_var);
String_t* L_32 = V_0;
WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* L_33 = ___webRequest1;
RuntimeObject* L_34 = ___credentials2;
NullCheck(L_31);
Authorization_t7F109103AF7366A418844BF604458413434F60D4* L_35;
L_35 = NtlmSession_Authenticate_m57C3EA3E259871B2300FA1B1AB9FA4AE5E9AA1FC(L_31, L_32, L_33, L_34, NULL);
V_5 = L_35;
goto IL_00b0;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00b0:
{
Authorization_t7F109103AF7366A418844BF604458413434F60D4* L_36 = V_5;
return L_36;
}
}
// System.Net.Authorization Mono.Http.NtlmClient::PreAuthenticate(System.Net.WebRequest,System.Net.ICredentials)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Authorization_t7F109103AF7366A418844BF604458413434F60D4* NtlmClient_PreAuthenticate_mF198BBB5898754D555B383C4019F73F15BE23276 (NtlmClient_t44BA8DF60B38A19EB7987B3BC2FB8D0B8A1EB0E6* __this, WebRequest_t89050438AE9A5AA9221ECAE223584127F7C1294B* ___webRequest0, RuntimeObject* ___credentials1, const RuntimeMethod* method)
{
{
return (Authorization_t7F109103AF7366A418844BF604458413434F60D4*)NULL;
}
}
// System.String Mono.Http.NtlmClient::get_AuthenticationType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NtlmClient_get_AuthenticationType_mB7D44D8F528617CBD02F8DA2D95245B2738C8178 (NtlmClient_t44BA8DF60B38A19EB7987B3BC2FB8D0B8A1EB0E6* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3556155D25CE64C710CC61A8C9D361B08530D364);
s_Il2CppMethodInitialized = true;
}
{
return _stringLiteral3556155D25CE64C710CC61A8C9D361B08530D364;
}
}
// System.Void Mono.Http.NtlmClient::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NtlmClient__ctor_mDE10BA5EAC5F7ABCF7B9E83C412425BE1DD178DC (NtlmClient_t44BA8DF60B38A19EB7987B3BC2FB8D0B8A1EB0E6* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Void Mono.Http.NtlmClient::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NtlmClient__cctor_mF8E5E7112DBDA1CF249AC91942A5BD9950DB524F (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConditionalWeakTable_2__ctor_m830E16E9DD2EA6A40AFECEC890FDE7D6C52DA3D0_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConditionalWeakTable_2_t8C60960CD7830601390A47E0673223EC1560C638_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NtlmClient_t44BA8DF60B38A19EB7987B3BC2FB8D0B8A1EB0E6_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ConditionalWeakTable_2_t8C60960CD7830601390A47E0673223EC1560C638* L_0 = (ConditionalWeakTable_2_t8C60960CD7830601390A47E0673223EC1560C638*)il2cpp_codegen_object_new(ConditionalWeakTable_2_t8C60960CD7830601390A47E0673223EC1560C638_il2cpp_TypeInfo_var);
NullCheck(L_0);
ConditionalWeakTable_2__ctor_m830E16E9DD2EA6A40AFECEC890FDE7D6C52DA3D0(L_0, ConditionalWeakTable_2__ctor_m830E16E9DD2EA6A40AFECEC890FDE7D6C52DA3D0_RuntimeMethod_var);
((NtlmClient_t44BA8DF60B38A19EB7987B3BC2FB8D0B8A1EB0E6_StaticFields*)il2cpp_codegen_static_fields_for(NtlmClient_t44BA8DF60B38A19EB7987B3BC2FB8D0B8A1EB0E6_il2cpp_TypeInfo_var))->___cache_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((NtlmClient_t44BA8DF60B38A19EB7987B3BC2FB8D0B8A1EB0E6_StaticFields*)il2cpp_codegen_static_fields_for(NtlmClient_t44BA8DF60B38A19EB7987B3BC2FB8D0B8A1EB0E6_il2cpp_TypeInfo_var))->___cache_0), (void*)L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Http.NtlmClient/<>c::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m274D237C2D332237DF0CEFC0F104AAE71FCAB3AA (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t23EC3A439D27907A8B20604CC3FBC3DEA329D4BB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
U3CU3Ec_t23EC3A439D27907A8B20604CC3FBC3DEA329D4BB* L_0 = (U3CU3Ec_t23EC3A439D27907A8B20604CC3FBC3DEA329D4BB*)il2cpp_codegen_object_new(U3CU3Ec_t23EC3A439D27907A8B20604CC3FBC3DEA329D4BB_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CU3Ec__ctor_m8EC0DBE120D2CB08BE2ED3F5A706BCEF9716603C(L_0, NULL);
((U3CU3Ec_t23EC3A439D27907A8B20604CC3FBC3DEA329D4BB_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t23EC3A439D27907A8B20604CC3FBC3DEA329D4BB_il2cpp_TypeInfo_var))->___U3CU3E9_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t23EC3A439D27907A8B20604CC3FBC3DEA329D4BB_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t23EC3A439D27907A8B20604CC3FBC3DEA329D4BB_il2cpp_TypeInfo_var))->___U3CU3E9_0), (void*)L_0);
return;
}
}
// System.Void Mono.Http.NtlmClient/<>c::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m8EC0DBE120D2CB08BE2ED3F5A706BCEF9716603C (U3CU3Ec_t23EC3A439D27907A8B20604CC3FBC3DEA329D4BB* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// Mono.Http.NtlmSession Mono.Http.NtlmClient/<>c::<Authenticate>b__1_0(System.Net.HttpWebRequest)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NtlmSession_tFCA9C8C98B2241BFE552477E3F60F419C51F30AB* U3CU3Ec_U3CAuthenticateU3Eb__1_0_mE2F40D1D8564A82A6EFFA6D78EDF09514115E79A (U3CU3Ec_t23EC3A439D27907A8B20604CC3FBC3DEA329D4BB* __this, HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* ___x0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NtlmSession_tFCA9C8C98B2241BFE552477E3F60F419C51F30AB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
NtlmSession_tFCA9C8C98B2241BFE552477E3F60F419C51F30AB* L_0 = (NtlmSession_tFCA9C8C98B2241BFE552477E3F60F419C51F30AB*)il2cpp_codegen_object_new(NtlmSession_tFCA9C8C98B2241BFE552477E3F60F419C51F30AB_il2cpp_TypeInfo_var);
NullCheck(L_0);
NtlmSession__ctor_mEEEFFA1F5F08E6F04718A3008CB72006CC8BED71(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.String Internal.Cryptography.OidLookup::ToFriendlyName(System.String,System.Security.Cryptography.OidGroup,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* OidLookup_ToFriendlyName_m34B7595764843A001047D30E77B0DB1987653103 (String_t* ___oid0, int32_t ___oidGroup1, bool ___fallBackToAllGroups2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConcurrentDictionary_2_TryAdd_m45B276C2610DC66F8D95413C7CE27896DE0D88D5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConcurrentDictionary_2_TryGetValue_m98D7AD54A8EBAAF26DB4FDC717FAFF36EE314853_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_mA86D965CB5F74CE8675B7995C61945BEB6E594CB_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
bool V_1 = false;
{
String_t* L_0 = ___oid0;
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*)&_stringLiteral17E5BE9B221C767EF04A364F24B81309DAE38512)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OidLookup_ToFriendlyName_m34B7595764843A001047D30E77B0DB1987653103_RuntimeMethod_var)));
}
IL_000e:
{
int32_t L_2 = ___oidGroup1;
il2cpp_codegen_runtime_class_init_inline(OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var);
bool L_3;
L_3 = OidLookup_ShouldUseCache_mB50BE42B791BF8314979BCF725BB50F5C1DF0461(L_2, NULL);
V_1 = L_3;
bool L_4 = V_1;
if (!L_4)
{
goto IL_0047;
}
}
{
il2cpp_codegen_runtime_class_init_inline(OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_5 = ((OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_StaticFields*)il2cpp_codegen_static_fields_for(OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var))->___s_oidToFriendlyName_3;
String_t* L_6 = ___oid0;
NullCheck(L_5);
bool L_7;
L_7 = Dictionary_2_TryGetValue_mA86D965CB5F74CE8675B7995C61945BEB6E594CB(L_5, L_6, (&V_0), Dictionary_2_TryGetValue_mA86D965CB5F74CE8675B7995C61945BEB6E594CB_RuntimeMethod_var);
if (L_7)
{
goto IL_0045;
}
}
{
il2cpp_codegen_runtime_class_init_inline(OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_8 = ((OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_StaticFields*)il2cpp_codegen_static_fields_for(OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var))->___s_compatOids_4;
String_t* L_9 = ___oid0;
NullCheck(L_8);
bool L_10;
L_10 = Dictionary_2_TryGetValue_mA86D965CB5F74CE8675B7995C61945BEB6E594CB(L_8, L_9, (&V_0), Dictionary_2_TryGetValue_mA86D965CB5F74CE8675B7995C61945BEB6E594CB_RuntimeMethod_var);
if (L_10)
{
goto IL_0045;
}
}
{
il2cpp_codegen_runtime_class_init_inline(OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var);
ConcurrentDictionary_2_tE0296B741D9F887264D805ED46C4249B8F5EFC9C* L_11 = ((OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_StaticFields*)il2cpp_codegen_static_fields_for(OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var))->___s_lateBoundOidToFriendlyName_0;
String_t* L_12 = ___oid0;
NullCheck(L_11);
bool L_13;
L_13 = ConcurrentDictionary_2_TryGetValue_m98D7AD54A8EBAAF26DB4FDC717FAFF36EE314853(L_11, L_12, (&V_0), ConcurrentDictionary_2_TryGetValue_m98D7AD54A8EBAAF26DB4FDC717FAFF36EE314853_RuntimeMethod_var);
if (!L_13)
{
goto IL_0047;
}
}
IL_0045:
{
String_t* L_14 = V_0;
return L_14;
}
IL_0047:
{
String_t* L_15 = ___oid0;
int32_t L_16 = ___oidGroup1;
bool L_17 = ___fallBackToAllGroups2;
il2cpp_codegen_runtime_class_init_inline(OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var);
String_t* L_18;
L_18 = OidLookup_NativeOidToFriendlyName_m54826DC2A46712C51D3BBE397372E01D0BCBDB34(L_15, L_16, L_17, NULL);
V_0 = L_18;
bool L_19 = V_1;
if (!L_19)
{
goto IL_0063;
}
}
{
String_t* L_20 = V_0;
if (!L_20)
{
goto IL_0063;
}
}
{
il2cpp_codegen_runtime_class_init_inline(OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var);
ConcurrentDictionary_2_tE0296B741D9F887264D805ED46C4249B8F5EFC9C* L_21 = ((OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_StaticFields*)il2cpp_codegen_static_fields_for(OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var))->___s_lateBoundOidToFriendlyName_0;
String_t* L_22 = ___oid0;
String_t* L_23 = V_0;
NullCheck(L_21);
bool L_24;
L_24 = ConcurrentDictionary_2_TryAdd_m45B276C2610DC66F8D95413C7CE27896DE0D88D5(L_21, L_22, L_23, ConcurrentDictionary_2_TryAdd_m45B276C2610DC66F8D95413C7CE27896DE0D88D5_RuntimeMethod_var);
}
IL_0063:
{
String_t* L_25 = V_0;
return L_25;
}
}
// System.String Internal.Cryptography.OidLookup::ToOid(System.String,System.Security.Cryptography.OidGroup,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* OidLookup_ToOid_mE362E659C0A532B8D2E1638D8B50FBACFEBFCF2D (String_t* ___friendlyName0, int32_t ___oidGroup1, bool ___fallBackToAllGroups2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConcurrentDictionary_2_TryAdd_m45B276C2610DC66F8D95413C7CE27896DE0D88D5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConcurrentDictionary_2_TryGetValue_m98D7AD54A8EBAAF26DB4FDC717FAFF36EE314853_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_mA86D965CB5F74CE8675B7995C61945BEB6E594CB_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
bool V_1 = false;
{
String_t* L_0 = ___friendlyName0;
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*)&_stringLiteral34FB5CB376E6DAB81256B94CF3DFEAFB18188A7B)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OidLookup_ToOid_mE362E659C0A532B8D2E1638D8B50FBACFEBFCF2D_RuntimeMethod_var)));
}
IL_000e:
{
String_t* L_2 = ___friendlyName0;
NullCheck(L_2);
int32_t L_3;
L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL);
if (L_3)
{
goto IL_0018;
}
}
{
return (String_t*)NULL;
}
IL_0018:
{
int32_t L_4 = ___oidGroup1;
il2cpp_codegen_runtime_class_init_inline(OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var);
bool L_5;
L_5 = OidLookup_ShouldUseCache_mB50BE42B791BF8314979BCF725BB50F5C1DF0461(L_4, NULL);
V_1 = L_5;
bool L_6 = V_1;
if (!L_6)
{
goto IL_0042;
}
}
{
il2cpp_codegen_runtime_class_init_inline(OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_7 = ((OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_StaticFields*)il2cpp_codegen_static_fields_for(OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var))->___s_friendlyNameToOid_2;
String_t* L_8 = ___friendlyName0;
NullCheck(L_7);
bool L_9;
L_9 = Dictionary_2_TryGetValue_mA86D965CB5F74CE8675B7995C61945BEB6E594CB(L_7, L_8, (&V_0), Dictionary_2_TryGetValue_mA86D965CB5F74CE8675B7995C61945BEB6E594CB_RuntimeMethod_var);
if (L_9)
{
goto IL_0040;
}
}
{
il2cpp_codegen_runtime_class_init_inline(OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var);
ConcurrentDictionary_2_tE0296B741D9F887264D805ED46C4249B8F5EFC9C* L_10 = ((OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_StaticFields*)il2cpp_codegen_static_fields_for(OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var))->___s_lateBoundFriendlyNameToOid_1;
String_t* L_11 = ___friendlyName0;
NullCheck(L_10);
bool L_12;
L_12 = ConcurrentDictionary_2_TryGetValue_m98D7AD54A8EBAAF26DB4FDC717FAFF36EE314853(L_10, L_11, (&V_0), ConcurrentDictionary_2_TryGetValue_m98D7AD54A8EBAAF26DB4FDC717FAFF36EE314853_RuntimeMethod_var);
if (!L_12)
{
goto IL_0042;
}
}
IL_0040:
{
String_t* L_13 = V_0;
return L_13;
}
IL_0042:
{
String_t* L_14 = ___friendlyName0;
int32_t L_15 = ___oidGroup1;
bool L_16 = ___fallBackToAllGroups2;
il2cpp_codegen_runtime_class_init_inline(OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var);
String_t* L_17;
L_17 = OidLookup_NativeFriendlyNameToOid_m1CEF74ADB4771FEAFE0C491AC36DF806517C55AC(L_14, L_15, L_16, NULL);
V_0 = L_17;
bool L_18 = V_1;
if (!L_18)
{
goto IL_005e;
}
}
{
String_t* L_19 = V_0;
if (!L_19)
{
goto IL_005e;
}
}
{
il2cpp_codegen_runtime_class_init_inline(OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var);
ConcurrentDictionary_2_tE0296B741D9F887264D805ED46C4249B8F5EFC9C* L_20 = ((OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_StaticFields*)il2cpp_codegen_static_fields_for(OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var))->___s_lateBoundFriendlyNameToOid_1;
String_t* L_21 = ___friendlyName0;
String_t* L_22 = V_0;
NullCheck(L_20);
bool L_23;
L_23 = ConcurrentDictionary_2_TryAdd_m45B276C2610DC66F8D95413C7CE27896DE0D88D5(L_20, L_21, L_22, ConcurrentDictionary_2_TryAdd_m45B276C2610DC66F8D95413C7CE27896DE0D88D5_RuntimeMethod_var);
}
IL_005e:
{
String_t* L_24 = V_0;
return L_24;
}
}
// System.Boolean Internal.Cryptography.OidLookup::ShouldUseCache(System.Security.Cryptography.OidGroup)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OidLookup_ShouldUseCache_mB50BE42B791BF8314979BCF725BB50F5C1DF0461 (int32_t ___oidGroup0, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.String Internal.Cryptography.OidLookup::NativeOidToFriendlyName(System.String,System.Security.Cryptography.OidGroup,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* OidLookup_NativeOidToFriendlyName_m54826DC2A46712C51D3BBE397372E01D0BCBDB34 (String_t* ___oid0, int32_t ___oidGroup1, bool ___fallBackToAllGroups2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0736DDED94EE74582C145D96F24E40A314A48CB1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0E0E07FBC53FA8C48B097E23C1F51253713BFE1D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral244C3A134C2AC035AB58EF188A0D0B4BA1CEFA31);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2FDCE7F577695853459152469012B0121731CD52);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral38A29F0742E6F746BEAE82B7874F2F4A23D91741);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3EABD487498F0EB91EB77895338816266FA44C98);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral416683232C98B46D3CB67F7E22FF1BE125144CB7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral50ED994EAB5E4B5A327FC8D974EAB06E7CFA83A4);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5B0AF7CA322B18CA0314E932B2A0B25258ABD0B0);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5EDC47BC71D706BB11343CC890323569C143CD50);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral830B64B4254C502C612E53C83DBEE6238E710499);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9DCDEB81D27AF40B44A13DCB81A492E5686F0CA0);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9E1FB4D86910BF7A7E7519E39C812966ABC68478);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBCBD089553BED56941C157C4F715B4365F724D7C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC470D48C046CBFF46DA268680C29701BDFF88855);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCF0CD765ACF4809502136C53ACFA60970F9AF5C0);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDD5A04FDCE8EDE26B5E78DE17CAB2D9DB4D10C73);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDEB31152738116748FADCEF38CE0C9964DACCF2F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE53FA8AE3620EED75A6DF3DDD631B0AB54CF04A5);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE64E6B72E9C44522A1D99B5C6A7F27EF33B44410);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEDDFDA94752EB5111EC566E5CAF709B7133C43DA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF18941F7C54072D082B07A98569E8B87706644BB);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
{
String_t* L_0 = ___oid0;
uint32_t L_1;
L_1 = U3CPrivateImplementationDetailsU3E_ComputeStringHash_mC09A19935970846B38570D03608F0E5F25E2020C(L_0, NULL);
V_0 = L_1;
uint32_t L_2 = V_0;
if ((!(((uint32_t)L_2) <= ((uint32_t)((int32_t)-965035758)))))
{
goto IL_0055;
}
}
{
uint32_t L_3 = V_0;
if ((!(((uint32_t)L_3) <= ((uint32_t)((int32_t)-1411364208)))))
{
goto IL_0032;
}
}
{
uint32_t L_4 = V_0;
if ((((int32_t)L_4) == ((int32_t)((int32_t)2095896238))))
{
goto IL_00a9;
}
}
{
uint32_t L_5 = V_0;
if ((((int32_t)L_5) == ((int32_t)((int32_t)-1411364208))))
{
goto IL_00e8;
}
}
{
goto IL_01ae;
}
IL_0032:
{
uint32_t L_6 = V_0;
if ((((int32_t)L_6) == ((int32_t)((int32_t)-1394586589))))
{
goto IL_00d3;
}
}
{
uint32_t L_7 = V_0;
if ((((int32_t)L_7) == ((int32_t)((int32_t)-1310698494))))
{
goto IL_00be;
}
}
{
uint32_t L_8 = V_0;
if ((((int32_t)L_8) == ((int32_t)((int32_t)-965035758))))
{
goto IL_00fd;
}
}
{
goto IL_01ae;
}
IL_0055:
{
uint32_t L_9 = V_0;
if ((!(((uint32_t)L_9) <= ((uint32_t)((int32_t)-771082090)))))
{
goto IL_0083;
}
}
{
uint32_t L_10 = V_0;
if ((((int32_t)L_10) == ((int32_t)((int32_t)-788153899))))
{
goto IL_014e;
}
}
{
uint32_t L_11 = V_0;
if ((((int32_t)L_11) == ((int32_t)((int32_t)-787859709))))
{
goto IL_0130;
}
}
{
uint32_t L_12 = V_0;
if ((((int32_t)L_12) == ((int32_t)((int32_t)-771082090))))
{
goto IL_010f;
}
}
{
goto IL_01ae;
}
IL_0083:
{
uint32_t L_13 = V_0;
if ((((int32_t)L_13) == ((int32_t)((int32_t)-754304471))))
{
goto IL_0121;
}
}
{
uint32_t L_14 = V_0;
if ((((int32_t)L_14) == ((int32_t)((int32_t)-603578290))))
{
goto IL_015d;
}
}
{
uint32_t L_15 = V_0;
if ((((int32_t)L_15) == ((int32_t)((int32_t)-552973043))))
{
goto IL_013f;
}
}
{
goto IL_01ae;
}
IL_00a9:
{
String_t* L_16 = ___oid0;
bool L_17;
L_17 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_16, _stringLiteralE64E6B72E9C44522A1D99B5C6A7F27EF33B44410, NULL);
if (L_17)
{
goto IL_016c;
}
}
{
goto IL_01ae;
}
IL_00be:
{
String_t* L_18 = ___oid0;
bool L_19;
L_19 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_18, _stringLiteral416683232C98B46D3CB67F7E22FF1BE125144CB7, NULL);
if (L_19)
{
goto IL_0172;
}
}
{
goto IL_01ae;
}
IL_00d3:
{
String_t* L_20 = ___oid0;
bool L_21;
L_21 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_20, _stringLiteral244C3A134C2AC035AB58EF188A0D0B4BA1CEFA31, NULL);
if (L_21)
{
goto IL_0178;
}
}
{
goto IL_01ae;
}
IL_00e8:
{
String_t* L_22 = ___oid0;
bool L_23;
L_23 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_22, _stringLiteral38A29F0742E6F746BEAE82B7874F2F4A23D91741, NULL);
if (L_23)
{
goto IL_017e;
}
}
{
goto IL_01ae;
}
IL_00fd:
{
String_t* L_24 = ___oid0;
bool L_25;
L_25 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_24, _stringLiteral9DCDEB81D27AF40B44A13DCB81A492E5686F0CA0, NULL);
if (L_25)
{
goto IL_0184;
}
}
{
goto IL_01ae;
}
IL_010f:
{
String_t* L_26 = ___oid0;
bool L_27;
L_27 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_26, _stringLiteral830B64B4254C502C612E53C83DBEE6238E710499, NULL);
if (L_27)
{
goto IL_018a;
}
}
{
goto IL_01ae;
}
IL_0121:
{
String_t* L_28 = ___oid0;
bool L_29;
L_29 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_28, _stringLiteralDEB31152738116748FADCEF38CE0C9964DACCF2F, NULL);
if (L_29)
{
goto IL_0190;
}
}
{
goto IL_01ae;
}
IL_0130:
{
String_t* L_30 = ___oid0;
bool L_31;
L_31 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_30, _stringLiteral0E0E07FBC53FA8C48B097E23C1F51253713BFE1D, NULL);
if (L_31)
{
goto IL_0196;
}
}
{
goto IL_01ae;
}
IL_013f:
{
String_t* L_32 = ___oid0;
bool L_33;
L_33 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_32, _stringLiteralEDDFDA94752EB5111EC566E5CAF709B7133C43DA, NULL);
if (L_33)
{
goto IL_019c;
}
}
{
goto IL_01ae;
}
IL_014e:
{
String_t* L_34 = ___oid0;
bool L_35;
L_35 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_34, _stringLiteral5EDC47BC71D706BB11343CC890323569C143CD50, NULL);
if (L_35)
{
goto IL_01a2;
}
}
{
goto IL_01ae;
}
IL_015d:
{
String_t* L_36 = ___oid0;
bool L_37;
L_37 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_36, _stringLiteral50ED994EAB5E4B5A327FC8D974EAB06E7CFA83A4, NULL);
if (L_37)
{
goto IL_01a8;
}
}
{
goto IL_01ae;
}
IL_016c:
{
return _stringLiteral9E1FB4D86910BF7A7E7519E39C812966ABC68478;
}
IL_0172:
{
return _stringLiteralCF0CD765ACF4809502136C53ACFA60970F9AF5C0;
}
IL_0178:
{
return _stringLiteral3EABD487498F0EB91EB77895338816266FA44C98;
}
IL_017e:
{
return _stringLiteral5B0AF7CA322B18CA0314E932B2A0B25258ABD0B0;
}
IL_0184:
{
return _stringLiteralF18941F7C54072D082B07A98569E8B87706644BB;
}
IL_018a:
{
return _stringLiteralDD5A04FDCE8EDE26B5E78DE17CAB2D9DB4D10C73;
}
IL_0190:
{
return _stringLiteral2FDCE7F577695853459152469012B0121731CD52;
}
IL_0196:
{
return _stringLiteralC470D48C046CBFF46DA268680C29701BDFF88855;
}
IL_019c:
{
return _stringLiteralBCBD089553BED56941C157C4F715B4365F724D7C;
}
IL_01a2:
{
return _stringLiteral0736DDED94EE74582C145D96F24E40A314A48CB1;
}
IL_01a8:
{
return _stringLiteralE53FA8AE3620EED75A6DF3DDD631B0AB54CF04A5;
}
IL_01ae:
{
return (String_t*)NULL;
}
}
// System.String Internal.Cryptography.OidLookup::NativeFriendlyNameToOid(System.String,System.Security.Cryptography.OidGroup,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* OidLookup_NativeFriendlyNameToOid_m1CEF74ADB4771FEAFE0C491AC36DF806517C55AC (String_t* ___friendlyName0, int32_t ___oidGroup1, bool ___fallBackToAllGroups2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0736DDED94EE74582C145D96F24E40A314A48CB1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0E0E07FBC53FA8C48B097E23C1F51253713BFE1D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral244C3A134C2AC035AB58EF188A0D0B4BA1CEFA31);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2FDCE7F577695853459152469012B0121731CD52);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral38A29F0742E6F746BEAE82B7874F2F4A23D91741);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3EABD487498F0EB91EB77895338816266FA44C98);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral416683232C98B46D3CB67F7E22FF1BE125144CB7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral50ED994EAB5E4B5A327FC8D974EAB06E7CFA83A4);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5B0AF7CA322B18CA0314E932B2A0B25258ABD0B0);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5EDC47BC71D706BB11343CC890323569C143CD50);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral830B64B4254C502C612E53C83DBEE6238E710499);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9DCDEB81D27AF40B44A13DCB81A492E5686F0CA0);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9E1FB4D86910BF7A7E7519E39C812966ABC68478);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBCBD089553BED56941C157C4F715B4365F724D7C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC470D48C046CBFF46DA268680C29701BDFF88855);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCF0CD765ACF4809502136C53ACFA60970F9AF5C0);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDD5A04FDCE8EDE26B5E78DE17CAB2D9DB4D10C73);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDEB31152738116748FADCEF38CE0C9964DACCF2F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE53FA8AE3620EED75A6DF3DDD631B0AB54CF04A5);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE64E6B72E9C44522A1D99B5C6A7F27EF33B44410);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEDDFDA94752EB5111EC566E5CAF709B7133C43DA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF18941F7C54072D082B07A98569E8B87706644BB);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
{
String_t* L_0 = ___friendlyName0;
uint32_t L_1;
L_1 = U3CPrivateImplementationDetailsU3E_ComputeStringHash_mC09A19935970846B38570D03608F0E5F25E2020C(L_0, NULL);
V_0 = L_1;
uint32_t L_2 = V_0;
if ((!(((uint32_t)L_2) <= ((uint32_t)((int32_t)1964409053)))))
{
goto IL_0055;
}
}
{
uint32_t L_3 = V_0;
if ((!(((uint32_t)L_3) <= ((uint32_t)((int32_t)1440264225)))))
{
goto IL_002f;
}
}
{
uint32_t L_4 = V_0;
if ((((int32_t)L_4) == ((int32_t)((int32_t)61174027))))
{
goto IL_0118;
}
}
{
uint32_t L_5 = V_0;
if ((((int32_t)L_5) == ((int32_t)((int32_t)1440264225))))
{
goto IL_00a0;
}
}
{
goto IL_01a5;
}
IL_002f:
{
uint32_t L_6 = V_0;
if ((((int32_t)L_6) == ((int32_t)((int32_t)1542349551))))
{
goto IL_0106;
}
}
{
uint32_t L_7 = V_0;
if ((((int32_t)L_7) == ((int32_t)((int32_t)1597341437))))
{
goto IL_00df;
}
}
{
uint32_t L_8 = V_0;
if ((((int32_t)L_8) == ((int32_t)((int32_t)1964409053))))
{
goto IL_0136;
}
}
{
goto IL_01a5;
}
IL_0055:
{
uint32_t L_9 = V_0;
if ((!(((uint32_t)L_9) <= ((uint32_t)((int32_t)-1271916957)))))
{
goto IL_0080;
}
}
{
uint32_t L_10 = V_0;
if ((((int32_t)L_10) == ((int32_t)((int32_t)-1791286730))))
{
goto IL_00b5;
}
}
{
uint32_t L_11 = V_0;
if ((((int32_t)L_11) == ((int32_t)((int32_t)-1647370188))))
{
goto IL_0154;
}
}
{
uint32_t L_12 = V_0;
if ((((int32_t)L_12) == ((int32_t)((int32_t)-1271916957))))
{
goto IL_0127;
}
}
{
goto IL_01a5;
}
IL_0080:
{
uint32_t L_13 = V_0;
if ((((int32_t)L_13) == ((int32_t)((int32_t)-1202048160))))
{
goto IL_0145;
}
}
{
uint32_t L_14 = V_0;
if ((((int32_t)L_14) == ((int32_t)((int32_t)-860668236))))
{
goto IL_00ca;
}
}
{
uint32_t L_15 = V_0;
if ((((int32_t)L_15) == ((int32_t)((int32_t)-495677975))))
{
goto IL_00f4;
}
}
{
goto IL_01a5;
}
IL_00a0:
{
String_t* L_16 = ___friendlyName0;
bool L_17;
L_17 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_16, _stringLiteral9E1FB4D86910BF7A7E7519E39C812966ABC68478, NULL);
if (L_17)
{
goto IL_0163;
}
}
{
goto IL_01a5;
}
IL_00b5:
{
String_t* L_18 = ___friendlyName0;
bool L_19;
L_19 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_18, _stringLiteralCF0CD765ACF4809502136C53ACFA60970F9AF5C0, NULL);
if (L_19)
{
goto IL_0169;
}
}
{
goto IL_01a5;
}
IL_00ca:
{
String_t* L_20 = ___friendlyName0;
bool L_21;
L_21 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_20, _stringLiteral3EABD487498F0EB91EB77895338816266FA44C98, NULL);
if (L_21)
{
goto IL_016f;
}
}
{
goto IL_01a5;
}
IL_00df:
{
String_t* L_22 = ___friendlyName0;
bool L_23;
L_23 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_22, _stringLiteral5B0AF7CA322B18CA0314E932B2A0B25258ABD0B0, NULL);
if (L_23)
{
goto IL_0175;
}
}
{
goto IL_01a5;
}
IL_00f4:
{
String_t* L_24 = ___friendlyName0;
bool L_25;
L_25 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_24, _stringLiteralF18941F7C54072D082B07A98569E8B87706644BB, NULL);
if (L_25)
{
goto IL_017b;
}
}
{
goto IL_01a5;
}
IL_0106:
{
String_t* L_26 = ___friendlyName0;
bool L_27;
L_27 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_26, _stringLiteralDD5A04FDCE8EDE26B5E78DE17CAB2D9DB4D10C73, NULL);
if (L_27)
{
goto IL_0181;
}
}
{
goto IL_01a5;
}
IL_0118:
{
String_t* L_28 = ___friendlyName0;
bool L_29;
L_29 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_28, _stringLiteral2FDCE7F577695853459152469012B0121731CD52, NULL);
if (L_29)
{
goto IL_0187;
}
}
{
goto IL_01a5;
}
IL_0127:
{
String_t* L_30 = ___friendlyName0;
bool L_31;
L_31 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_30, _stringLiteralC470D48C046CBFF46DA268680C29701BDFF88855, NULL);
if (L_31)
{
goto IL_018d;
}
}
{
goto IL_01a5;
}
IL_0136:
{
String_t* L_32 = ___friendlyName0;
bool L_33;
L_33 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_32, _stringLiteralBCBD089553BED56941C157C4F715B4365F724D7C, NULL);
if (L_33)
{
goto IL_0193;
}
}
{
goto IL_01a5;
}
IL_0145:
{
String_t* L_34 = ___friendlyName0;
bool L_35;
L_35 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_34, _stringLiteral0736DDED94EE74582C145D96F24E40A314A48CB1, NULL);
if (L_35)
{
goto IL_0199;
}
}
{
goto IL_01a5;
}
IL_0154:
{
String_t* L_36 = ___friendlyName0;
bool L_37;
L_37 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_36, _stringLiteralE53FA8AE3620EED75A6DF3DDD631B0AB54CF04A5, NULL);
if (L_37)
{
goto IL_019f;
}
}
{
goto IL_01a5;
}
IL_0163:
{
return _stringLiteralE64E6B72E9C44522A1D99B5C6A7F27EF33B44410;
}
IL_0169:
{
return _stringLiteral416683232C98B46D3CB67F7E22FF1BE125144CB7;
}
IL_016f:
{
return _stringLiteral244C3A134C2AC035AB58EF188A0D0B4BA1CEFA31;
}
IL_0175:
{
return _stringLiteral38A29F0742E6F746BEAE82B7874F2F4A23D91741;
}
IL_017b:
{
return _stringLiteral9DCDEB81D27AF40B44A13DCB81A492E5686F0CA0;
}
IL_0181:
{
return _stringLiteral830B64B4254C502C612E53C83DBEE6238E710499;
}
IL_0187:
{
return _stringLiteralDEB31152738116748FADCEF38CE0C9964DACCF2F;
}
IL_018d:
{
return _stringLiteral0E0E07FBC53FA8C48B097E23C1F51253713BFE1D;
}
IL_0193:
{
return _stringLiteralEDDFDA94752EB5111EC566E5CAF709B7133C43DA;
}
IL_0199:
{
return _stringLiteral5EDC47BC71D706BB11343CC890323569C143CD50;
}
IL_019f:
{
return _stringLiteral50ED994EAB5E4B5A327FC8D974EAB06E7CFA83A4;
}
IL_01a5:
{
return (String_t*)NULL;
}
}
// System.Void Internal.Cryptography.OidLookup::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OidLookup__cctor_m315F5D4656A8C145CD154D9DF653F5207E12AEBC (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConcurrentDictionary_2__ctor_m9892FA3A284C42770614BE9E65205A8B33824A6C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConcurrentDictionary_2__ctor_m9B2EB6BD32E298BAD1B3113C83414524B6185AF9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConcurrentDictionary_2_tE0296B741D9F887264D805ED46C4249B8F5EFC9C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m201D4C32BA21CBF329B875E58C2515ABC9E29894_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m768E076F1E804CE4959F4E71D3E6A9ADE2F55052_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_ToDictionary_TisKeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A_TisString_t_TisString_t_m04E92A94C241FE2E449A88C27845214EAB8E5813_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_t0FD9221539E762B3867B2E3B6D6B3F90C6483088_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3C_cctorU3Eb__10_0_m6CCA3946EAC08544EB57D764DBF2D23E12DE30A1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3C_cctorU3Eb__10_1_m7F86444F2B083758A76759BD54D31A3538101A4E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t90F8CB10B454B45A81BE65AA841DD85FE08EA21A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0014DFE8C905DAF0C4F40106193E910B41B1CC70);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral007F27F385EDD0B09DC7169A6261215298BE7C86);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral02944E23D08CDA7A142EFEB879C7186358A22CCA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral030EB2813F0D487BCDA7E02E29C397E3B9BCEC74);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral04E73520EF5FFFB55D772FE19B08EC1B2E552C4B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral05F1E86F31848B408778C13CA7EE991CD28933F7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral08BBB8048FA133B2E30EBC4A223440CBE46C54BA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral09684B67A5909FD48E1F14A8AF8DDD483C620B10);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0B31027F164515A1950B5D7471AE7856BE543763);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0B491B08D7F3147A54D3A6892A54AE8DC9C9106F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0C3A626239DC9A1E8F6C7E32633CFA7AAC722F6C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0CBADE8543F92DF670C549BE1A3C836260EAD8FD);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0F97BFE601FEB0350627EDDE59CF51E33AD503FA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0FE54C445DB351A3F32FB1C63B8B9C71D295C2B8);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral11439E7E9FE68D660C82AB5B4FF92D4C120BBBEE);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral14766905080A42A4E1B372AB68C4494ECC1FEE82);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral14D13302CA125B23FDC663B73325C42B8DA4C1EB);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1516A3BA846D0F80661C2EF149A49C5DBB511D1D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral19088A5D4151B71A0151316584575959251E5B35);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral19C13A0A72C74FF6837E5A8AD17C567B3988784D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1A7FC08E8EB016BAD5A8A8D7B3447DAD63E867BC);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1ACB8FAF8504B2F74910751862578633C09282F3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1B96C2A6037883D67ADDA00441FF5DC311D9F8DF);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1C2685EEE425882510DB5AA417848E03F4698356);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1E1EF2D79496D79BD97AF1CFADBB50547D20706F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1E975408BDC3CEEA3B3BBEDC11D8AE5E1FFE9B0B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1EC47CDC551021DF3F33288308AB1FEBAD868FBF);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2089EB1FB499380F28C9CAB508E60FD5ED128160);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral20E48A71B5C1AFE9893FE8F7BDFD9A446A9EB0F3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral216E3D25BB7EDE5236107BA6C65F6706B5BD2D23);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral25118FE7F36A19FBB74A9C6C22FCB9831E89F823);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral265AC4FA61CDF45D97068B014131FBA64D57252D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral26E994D822B48484B04399E5FFCFF2F3C1D25743);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2732350C7BFD8452F3987362472250BF67055FE1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral281BB5D0C04BC40D275D9DCE38ABB73950A5F20C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2A27431C50DA31999C476953B5F8684B03951E68);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2A7F604AA53E605CA5A4D06ADF4F5C4B6FCBD8E8);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2A9A5AB04CCC916E2271E013ECB39F5CC0DED339);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral31B7F7137140DD116C1A537306889714F783E01B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3285395F26EAFB3C5922F02E5C730A604CE54FFD);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral33E5E507E0804AC2782DF407510BD2DFE93B374F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3408DA21479B5C8D772A61839620083833F3AD8C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3765CC954D2E20DA444F70D543294F5BEDD2FEC2);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral382BEC7D7127CB45C3FFC27D47784E36DF741510);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral386C2FE8E26B914AB24092E9E7FBA3B7840238C4);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral389391FB0E9D9B4AB5FDCD8B460E3E0816E41899);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3BB5322B02815376D2BC2E8BD2E9EF61131FBD38);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3D33D0610C7091655B30CCDF62ABD943C3D6E36B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3D65682F00D08C168B4505CC6CE8D8859E155B56);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3DA9626F5C461D11E11D72ED1FD408E9CD0ECFBE);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3DCC6243286938BE75C3FA773B9BA71160A2E869);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3FD577241CDFEB5901AE2F75AC3F8BE590E39584);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4066F19F3D1AA536AF01D9BF934B884A451C566F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral412993E49B10AEBEAAF97A839FB0FFFFBE635604);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral41E7279CDDF2F76722910916CF4C0A8EC64DAE48);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral42F629CC32087815BDEE088698E50CE910A82D86);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral445664209AA29094CB865FC6A362314895601FF5);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral453A07B8CC155ECBEB68D277EC848642FFB5F3B6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4BD64CDDC726EEC9781AF7725F934C659848D974);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4E3A2985070688B84499878DDC605069EC40E608);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral509757CFB3D9A8616DB7B4FB514DBF839548AC88);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral51D435CC029DAE95C5F975414FAEBF4DA90B66F8);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral524A02B897BABED5C30469E21902671642FCF6DC);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5358AE34B230161B494D278AB432CAF567BF87B4);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral53B85B740DDFDFB7BB24AB3B12A0E6CC2C75D9FB);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral56F16046057CAF41056CD1EFA40C61820CF96523);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral579A50C67ADB00AC3925859C23590322B2D0BE9D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral57C2411D7466EB3172B6ADBF471154844F8FEA55);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral59035792B7DAA31AEB540EB87E38CA344825D295);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral592F7E5A43A277121C24F9F2BF94CB1EB74C61B7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5A4E411F65E7CA15BA995630065445903EBE9E78);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5A9C691CB5E91EAE05201517784BF116F1BCF52A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5BF96667530EA67F66934684E21D80177D05462F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5CDBAC457EFE37BD1A4DE9D7CA08E257E79A06E8);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5D6AC9E7FE8C6C89E816E586AFA7AB9FDD4896C3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral601B54E50ECF5E2BD749C0D51900EE6CA8F3B70B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral60DF8EB4AC4B801DC8E976BB0E82ED8EC424AD81);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6257195A152AE060C7619F5D9C820630ADE2B3EB);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral62C9A18CEF6E803000E9D0C74D3984F48861921F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral63B300D626AF5DB0A4A90A4C6129D533D8A54BDB);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral64260D9444D15A6248926D7B01F965DB0406844C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6512DA4907D56E720E64AADA736100FEFFFF5AD6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral65C91159DE73AB664AD579C104F3EE3E6A5B9308);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral65F470EB85937975B76150048296F58FD47AB5E0);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral683A95818280F9859694F418A2FD0A817678C9DB);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral69B81946A0E0509B4B1290B35F421416AF35AB7B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6A93428410FC7E81D002D73E0B9FA5E4665FAEF0);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6B188360294349CD1D94164DB9AE487200C503EE);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6B4F856E69D6E5B45A94AEE42FC8722881CEB575);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6C0E8D5689BB9C238931C0AE7E15A835AFAD3488);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6CB05FD18E12F98F81A204339D25DD82BC993FDD);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6F23583CEF03BB7DDB3E4BEFF341EA1FC85AB4D8);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral738FCA547BF0642A101D0089A576E9185DF009D0);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7453478D5DA9E53E5ECCD0865A2CD6927BAD940B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral74FBF85A38655E8FFFC7E9F6E56CCA07CB1D3C85);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral75083ED9D1F97E099BDA7A17460E86EAF92CDE8A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7577A0557AF7D69E0C49481F373E7858B5780565);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral75A224C696F223AD77F7C80741DBF005DA84E826);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral78F909443A7FA37B76058CC361DFD4807A228095);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral79286C46F128302EE9B397D1B2EE804CA3E182BA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7931519DFF1BB20E46AE397FD6DB8CD6EEC7ED0C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7B18F301A198B83778B5E546729B0539A0D4E758);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7E42A1729FA8C9C1BEE7E611CBFC7146A05A416A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7E70AF961A2F88ADB9DB7B9C3B5F25A532C1570A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7FF246983A3B2CEAEA57814A7B884A9ADE68F563);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral80A61DF74E3132BFF8AB81A0843B4B50F8BD99B3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral80DE72AF3DA47DC4163DB5C56EE2FD8047DB03C9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral80F21D50E32EC9084847997A0C258C6A529DAC47);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral81EB86A368F960F3D9C1CECA4B8419FF90C9C1EF);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral83344570C78814D060F98E8A28B9C1804B6D79F6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral83516AD985761BA568B2C46FFF23091999ACF73B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral85ED0BE3A863D3289C6B8C92A26E016A40E584F4);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral86001CD74A28E54C60CCF93185B74839F950F1BC);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral87A99411D29E97529AE9D79528DC96F17B0536F8);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral88B2EBB8B15244DE5EB3E8CCA28A8967EA0B6854);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral89487254CCF55296ACC80B8660A14ADE141E6868);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral89D230C85EF9835442B3F52D83B0085CD933180D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8B3CFB4B560123030AE265CBD62C0BE39E1D8EC6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8CED49C9B8AAF560AF77252A715370DDD5C425C1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8E264486DFD68F8D2AC59C629355E7337C6392BF);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8EA411EEA0231AA0906165194C210EF69B075891);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8EFCA599026E32CC66A6CF4B93F8B27E3A7A5AA8);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral93954AC54959BCD46464E8152F221687F3B0E3B7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral93FC6FFF4C29A68E46A03C6F1D4BA69847491E8A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral94227CA8EB4252C21E39FE8CCB2B65A6D01D3CF1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral94F80C8383908313363D09271B7A1CEBC9C5466A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral95419FAFDA01DE5BD36BADABAFA89CAC156E74D5);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral955BE7C27EA4C75663C95CF8283AD7A667995A2C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral95966C03C6021E7E73AE465202AEF101F94D0CC5);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral963C37A58017767387FAD1CB7CBC89AB1B6144B7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral99C134A36D015746C32203B98CC495F87311D9DC);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral99C165894B2900048144F5DEF682937FE73CA541);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9A12021E1E1850DBED762F93F651DB311B213542);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9B1F0AA63B2AB43512920221BD667C8CF844E7A5);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9B6EDF60999707E0620839BD57BDCF5CA110596D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9C1177F1B6AEF3E501867F06DEB3134EDB70A458);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9CD944CC2F94D393A85A2E0420941DCD6622DA70);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9CDD95D71909AF4B1F39B564CDB7A29DC63A726A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9E6BA185CF46C7496C8977196B608B151E6CA640);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9E8F608B8995201B1FE660472A1ABC54D5D5B4E1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA006FCB4201934135FE5378132B66888869CBF16);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA0D2489FF811A7C30B58640074CA473EA7DB5472);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA14367A21EF902F577F1C84CE88AD05DD6E68FBA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA25B69026A70D534621843E13AD9FBEBC01B0B2E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA38630C0DCBBD9CA5D185BABA4B13A9BA8E4480D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA3BFC0737E4F6504E6E8C5B00F9FB2F64D65E1A7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA415C20DA6103839E3CDCE27E20D4269A64EFB98);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA49C6C2328B9D2556E2655623DAC4AA452304C19);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA6A5FD7DF379E08BFFCC99E567489352CB086B03);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA716B75B12303C269B7D64B627143962C1A30F9E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA769D26CEBDB76B20A90DFECE81C1D6E4E458A71);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA8BCDFB664ED95346DE4342A8E251772B519ECDB);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA93F7F2221973BB3366690843F10B64F2A3A5C02);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralACA7E3D2770ADAB061CBEB4B68128A012D6BA80C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAD564320503E7A0D649F4CBE2035ACC42705FBAE);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralADCFCCDEF80C922C16E80229971100719F7C12E5);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB16364632FFDA7CF8AB0EF198C603812CB7ECD94);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB3B6FD28E314D30A8A29C4DF4D44104A679F811C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB6DC6AD5CFE944143BCE7F7E2BBD5EDA70CBE240);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB6E35CED78A0E6625B93CA9B8499E4DDD649FE3C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB7D90C051B218C0AF42D51C1E100BC7A5F701C0A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB8B4C2979DAB09B7114DAEEEAB285DFD7F257D8E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBAA19DCB8FB67475CB93C514ACB7AA3B13E9E06A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBAB981D485EEF22571BF72AA511ECA047EB88F74);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBCC8E2572E2A53F52B9C6C9EC8B7EA53D7B1F22C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBDA8B3692203ECDF4D2439E4D8DF89379BFCF2F6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBF86C9E9E7FE0EF09A2EAE8066CDC31F859254CC);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC0B0DC6F895955119EDF68C6ED7ED1FC309616DB);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC21CF5E29D28F583337ED42C9E463D36BC9B2B1D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC2F13D6423712EE49184F09B7A5C47EEF28ADBE2);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC318857CEA813401776D821FAFDCC824179B3825);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC4C7159B2B59DD672703F9437C8EA6C62A48D94E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC55AFFA4599D7E7F1FE45BF21D72FD8E0E12E4B1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC59D838ACD5CFFE86405FDCA41DB2E9A2B39411F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC60A77342DF8944C671161996BE22C72F72D36FA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC8F17C66DC1FF69C1D90B27C99118E5EBE60A360);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCBCF9A0C616BF28F37201490894BD1EAEE790999);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCE94536476505A36236FABE90390E761134DDFFD);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD252B930E829E7C8274E97CAA92250DE3E9543A8);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD327CE3F4A3F4BF8B816397FA3D8E73D1C03FD9D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD3D092DD26E70F30FC80E8E212B50455A8FC29C9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD3F492F1F5769A36FDE4FDBAA2F03E4968A9C49A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD431DA333CF96CF017F2C2FE0CE09A07D97C41C8);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD69F7F14121D9831D0233F82A9ED4A0C4C56465D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD6B6F166EEBDD3A19884A00499B2FCD3C38F7484);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD70198B10EEFC90F99D7EBB385D9248637B26338);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD75745EF86B18A96BC82747BF47AF777104AB154);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD8AD3A16EDECAF102552ACA3539896F350AE4D44);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD92669B082D6B6E83DA626B0B5FDFBF31D83A73A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDABBB9C036193D85D6C01708C64DD345BCE1FCC4);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDAC8159E4A2EFDD9F6B375FC8448887EB86937BF);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDBA5EDA16E5D0372F9D343F11F90A8253F0F9CB9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDD381BE73F585C3796C220566E891E458F9D6290);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDD93AF8A205AE54D6AE755FEEBC6B6221D3251CA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE129A07A01337A4B1F0247362EC7A3B4D3FE591E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE2554AA2E0C9DC24A5C7C498FC582750C82FEF05);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE3EFD851D23D6F66E867490CB66E3B93EF575B79);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE42A78F4045E63D3B642E862453E42AE79C3FC17);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE7186871969A06ABE5BB047D2E72B5A0B291F3EF);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE7F2002E39D5228A8496A82B1F7CAC32E1BD0715);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE8E818AEC263D1C5686A049C4AA3550BA6CF3B7D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEA06B3E59B845A76D30379B50102FA66B2FF7906);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEC24456BF1D0B9CE18660F74F513161368E6B88A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEC7F5B374B6E8F9D588D6C7692D3C4E95482D2C6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralECD0CDD4784B69BF36F1B46C5AAD76D53F683F13);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF24BCEBD3BF54143DC34399B1E3AD4F93496E764);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF4765352B67DACFC92B948B6D33BEDE083E987BD);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF5D0F53B08BEAB124F7E82CD857F0C2F2C0DBCC6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF7206E5C537FD9B72E819BCFEA68CF7EECE59AB9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF7D020703E62098E5DD2FE3D03E68208A57F8E13);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFA254D4D1C509C2DFAEF4A34A32CEC0963B5152D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFA6ECB2662838F2CC877B5BA9190C32197DE555C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFBEE240C366010135208AF44B014EF5A1569B7B4);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFEBD4C8F55D7CC1B6E65FF051696B9E0B128A9EA);
s_Il2CppMethodInitialized = true;
}
{
ConcurrentDictionary_2_tE0296B741D9F887264D805ED46C4249B8F5EFC9C* L_0 = (ConcurrentDictionary_2_tE0296B741D9F887264D805ED46C4249B8F5EFC9C*)il2cpp_codegen_object_new(ConcurrentDictionary_2_tE0296B741D9F887264D805ED46C4249B8F5EFC9C_il2cpp_TypeInfo_var);
NullCheck(L_0);
ConcurrentDictionary_2__ctor_m9B2EB6BD32E298BAD1B3113C83414524B6185AF9(L_0, ConcurrentDictionary_2__ctor_m9B2EB6BD32E298BAD1B3113C83414524B6185AF9_RuntimeMethod_var);
((OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_StaticFields*)il2cpp_codegen_static_fields_for(OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var))->___s_lateBoundOidToFriendlyName_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_StaticFields*)il2cpp_codegen_static_fields_for(OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var))->___s_lateBoundOidToFriendlyName_0), (void*)L_0);
il2cpp_codegen_runtime_class_init_inline(StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06_il2cpp_TypeInfo_var);
StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06* L_1;
L_1 = StringComparer_get_OrdinalIgnoreCase_m4206775241793096770A30CE686D3B342AEDDE6E_inline(NULL);
ConcurrentDictionary_2_tE0296B741D9F887264D805ED46C4249B8F5EFC9C* L_2 = (ConcurrentDictionary_2_tE0296B741D9F887264D805ED46C4249B8F5EFC9C*)il2cpp_codegen_object_new(ConcurrentDictionary_2_tE0296B741D9F887264D805ED46C4249B8F5EFC9C_il2cpp_TypeInfo_var);
NullCheck(L_2);
ConcurrentDictionary_2__ctor_m9892FA3A284C42770614BE9E65205A8B33824A6C(L_2, L_1, ConcurrentDictionary_2__ctor_m9892FA3A284C42770614BE9E65205A8B33824A6C_RuntimeMethod_var);
((OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_StaticFields*)il2cpp_codegen_static_fields_for(OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var))->___s_lateBoundFriendlyNameToOid_1 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&((OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_StaticFields*)il2cpp_codegen_static_fields_for(OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var))->___s_lateBoundFriendlyNameToOid_1), (void*)L_2);
StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06* L_3;
L_3 = StringComparer_get_OrdinalIgnoreCase_m4206775241793096770A30CE686D3B342AEDDE6E_inline(NULL);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_4 = (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83*)il2cpp_codegen_object_new(Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83_il2cpp_TypeInfo_var);
NullCheck(L_4);
Dictionary_2__ctor_m201D4C32BA21CBF329B875E58C2515ABC9E29894(L_4, L_3, Dictionary_2__ctor_m201D4C32BA21CBF329B875E58C2515ABC9E29894_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_5 = L_4;
NullCheck(L_5);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_5, _stringLiteral93954AC54959BCD46464E8152F221687F3B0E3B7, _stringLiteral19088A5D4151B71A0151316584575959251E5B35, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_6 = L_5;
NullCheck(L_6);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_6, _stringLiteral9B6EDF60999707E0620839BD57BDCF5CA110596D, _stringLiteral3BB5322B02815376D2BC2E8BD2E9EF61131FBD38, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_7 = L_6;
NullCheck(L_7);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_7, _stringLiteralD70198B10EEFC90F99D7EBB385D9248637B26338, _stringLiteralD6B6F166EEBDD3A19884A00499B2FCD3C38F7484, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_8 = L_7;
NullCheck(L_8);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_8, _stringLiteral8CED49C9B8AAF560AF77252A715370DDD5C425C1, _stringLiteral19C13A0A72C74FF6837E5A8AD17C567B3988784D, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_9 = L_8;
NullCheck(L_9);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_9, _stringLiteralE8E818AEC263D1C5686A049C4AA3550BA6CF3B7D, _stringLiteralFA6ECB2662838F2CC877B5BA9190C32197DE555C, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_10 = L_9;
NullCheck(L_10);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_10, _stringLiteralF4765352B67DACFC92B948B6D33BEDE083E987BD, _stringLiteral6B4F856E69D6E5B45A94AEE42FC8722881CEB575, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_11 = L_10;
NullCheck(L_11);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_11, _stringLiteralDBA5EDA16E5D0372F9D343F11F90A8253F0F9CB9, _stringLiteral6512DA4907D56E720E64AADA736100FEFFFF5AD6, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_12 = L_11;
NullCheck(L_12);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_12, _stringLiteralAD564320503E7A0D649F4CBE2035ACC42705FBAE, _stringLiteral6A93428410FC7E81D002D73E0B9FA5E4665FAEF0, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_13 = L_12;
NullCheck(L_13);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_13, _stringLiteral02944E23D08CDA7A142EFEB879C7186358A22CCA, _stringLiteralB7D90C051B218C0AF42D51C1E100BC7A5F701C0A, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_14 = L_13;
NullCheck(L_14);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_14, _stringLiteralECD0CDD4784B69BF36F1B46C5AAD76D53F683F13, _stringLiteral4E3A2985070688B84499878DDC605069EC40E608, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_15 = L_14;
NullCheck(L_15);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_15, _stringLiteral5A9C691CB5E91EAE05201517784BF116F1BCF52A, _stringLiteral69B81946A0E0509B4B1290B35F421416AF35AB7B, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_16 = L_15;
NullCheck(L_16);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_16, _stringLiteralF5D0F53B08BEAB124F7E82CD857F0C2F2C0DBCC6, _stringLiteral3DA9626F5C461D11E11D72ED1FD408E9CD0ECFBE, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_17 = L_16;
NullCheck(L_17);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_17, _stringLiteral95419FAFDA01DE5BD36BADABAFA89CAC156E74D5, _stringLiteralC0B0DC6F895955119EDF68C6ED7ED1FC309616DB, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_18 = L_17;
NullCheck(L_18);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_18, _stringLiteralA769D26CEBDB76B20A90DFECE81C1D6E4E458A71, _stringLiteralD69F7F14121D9831D0233F82A9ED4A0C4C56465D, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_19 = L_18;
NullCheck(L_19);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_19, _stringLiteral6C0E8D5689BB9C238931C0AE7E15A835AFAD3488, _stringLiteral601B54E50ECF5E2BD749C0D51900EE6CA8F3B70B, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_20 = L_19;
NullCheck(L_20);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_20, _stringLiteralF7206E5C537FD9B72E819BCFEA68CF7EECE59AB9, _stringLiteral51D435CC029DAE95C5F975414FAEBF4DA90B66F8, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_21 = L_20;
NullCheck(L_21);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_21, _stringLiteralC318857CEA813401776D821FAFDCC824179B3825, _stringLiteralF7D020703E62098E5DD2FE3D03E68208A57F8E13, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_22 = L_21;
NullCheck(L_22);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_22, _stringLiteralC2F13D6423712EE49184F09B7A5C47EEF28ADBE2, _stringLiteralA14367A21EF902F577F1C84CE88AD05DD6E68FBA, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_23 = L_22;
NullCheck(L_23);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_23, _stringLiteral7FF246983A3B2CEAEA57814A7B884A9ADE68F563, _stringLiteral0C3A626239DC9A1E8F6C7E32633CFA7AAC722F6C, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_24 = L_23;
NullCheck(L_24);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_24, _stringLiteral281BB5D0C04BC40D275D9DCE38ABB73950A5F20C, _stringLiteral05F1E86F31848B408778C13CA7EE991CD28933F7, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_25 = L_24;
NullCheck(L_25);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_25, _stringLiteral0014DFE8C905DAF0C4F40106193E910B41B1CC70, _stringLiteralE42A78F4045E63D3B642E862453E42AE79C3FC17, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_26 = L_25;
NullCheck(L_26);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_26, _stringLiteralBF86C9E9E7FE0EF09A2EAE8066CDC31F859254CC, _stringLiteral453A07B8CC155ECBEB68D277EC848642FFB5F3B6, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_27 = L_26;
NullCheck(L_27);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_27, _stringLiteral6257195A152AE060C7619F5D9C820630ADE2B3EB, _stringLiteral74FBF85A38655E8FFFC7E9F6E56CCA07CB1D3C85, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_28 = L_27;
NullCheck(L_28);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_28, _stringLiteral2732350C7BFD8452F3987362472250BF67055FE1, _stringLiteralBDA8B3692203ECDF4D2439E4D8DF89379BFCF2F6, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_29 = L_28;
NullCheck(L_29);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_29, _stringLiteral030EB2813F0D487BCDA7E02E29C397E3B9BCEC74, _stringLiteral94227CA8EB4252C21E39FE8CCB2B65A6D01D3CF1, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_30 = L_29;
NullCheck(L_30);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_30, _stringLiteralD327CE3F4A3F4BF8B816397FA3D8E73D1C03FD9D, _stringLiteral3408DA21479B5C8D772A61839620083833F3AD8C, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_31 = L_30;
NullCheck(L_31);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_31, _stringLiteral75083ED9D1F97E099BDA7A17460E86EAF92CDE8A, _stringLiteral53B85B740DDFDFB7BB24AB3B12A0E6CC2C75D9FB, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_32 = L_31;
NullCheck(L_32);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_32, _stringLiteral1E1EF2D79496D79BD97AF1CFADBB50547D20706F, _stringLiteralDAC8159E4A2EFDD9F6B375FC8448887EB86937BF, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_33 = L_32;
NullCheck(L_33);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_33, _stringLiteralEC24456BF1D0B9CE18660F74F513161368E6B88A, _stringLiteral86001CD74A28E54C60CCF93185B74839F950F1BC, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_34 = L_33;
NullCheck(L_34);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_34, _stringLiteral5D6AC9E7FE8C6C89E816E586AFA7AB9FDD4896C3, _stringLiteral007F27F385EDD0B09DC7169A6261215298BE7C86, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_35 = L_34;
NullCheck(L_35);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_35, _stringLiteral11439E7E9FE68D660C82AB5B4FF92D4C120BBBEE, _stringLiteral14D13302CA125B23FDC663B73325C42B8DA4C1EB, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_36 = L_35;
NullCheck(L_36);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_36, _stringLiteral5CDBAC457EFE37BD1A4DE9D7CA08E257E79A06E8, _stringLiteral65C91159DE73AB664AD579C104F3EE3E6A5B9308, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_37 = L_36;
NullCheck(L_37);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_37, _stringLiteral963C37A58017767387FAD1CB7CBC89AB1B6144B7, _stringLiteral0CBADE8543F92DF670C549BE1A3C836260EAD8FD, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_38 = L_37;
NullCheck(L_38);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_38, _stringLiteral579A50C67ADB00AC3925859C23590322B2D0BE9D, _stringLiteral4BD64CDDC726EEC9781AF7725F934C659848D974, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_39 = L_38;
NullCheck(L_39);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_39, _stringLiteralBCC8E2572E2A53F52B9C6C9EC8B7EA53D7B1F22C, _stringLiteralEA06B3E59B845A76D30379B50102FA66B2FF7906, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_40 = L_39;
NullCheck(L_40);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_40, _stringLiteral445664209AA29094CB865FC6A362314895601FF5, _stringLiteralB6E35CED78A0E6625B93CA9B8499E4DDD649FE3C, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_41 = L_40;
NullCheck(L_41);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_41, _stringLiteral2A27431C50DA31999C476953B5F8684B03951E68, _stringLiteral5358AE34B230161B494D278AB432CAF567BF87B4, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_42 = L_41;
NullCheck(L_42);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_42, _stringLiteral2089EB1FB499380F28C9CAB508E60FD5ED128160, _stringLiteral9E8F608B8995201B1FE660472A1ABC54D5D5B4E1, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_43 = L_42;
NullCheck(L_43);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_43, _stringLiteralC60A77342DF8944C671161996BE22C72F72D36FA, _stringLiteral9C1177F1B6AEF3E501867F06DEB3134EDB70A458, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_44 = L_43;
NullCheck(L_44);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_44, _stringLiteralE7186871969A06ABE5BB047D2E72B5A0B291F3EF, _stringLiteral382BEC7D7127CB45C3FFC27D47784E36DF741510, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_45 = L_44;
NullCheck(L_45);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_45, _stringLiteral955BE7C27EA4C75663C95CF8283AD7A667995A2C, _stringLiteral78F909443A7FA37B76058CC361DFD4807A228095, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_46 = L_45;
NullCheck(L_46);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_46, _stringLiteralD8AD3A16EDECAF102552ACA3539896F350AE4D44, _stringLiteral389391FB0E9D9B4AB5FDCD8B460E3E0816E41899, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_47 = L_46;
NullCheck(L_47);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_47, _stringLiteralC4C7159B2B59DD672703F9437C8EA6C62A48D94E, _stringLiteralC59D838ACD5CFFE86405FDCA41DB2E9A2B39411F, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_48 = L_47;
NullCheck(L_48);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_48, _stringLiteral3DCC6243286938BE75C3FA773B9BA71160A2E869, _stringLiteral0B491B08D7F3147A54D3A6892A54AE8DC9C9106F, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_49 = L_48;
NullCheck(L_49);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_49, _stringLiteral6CB05FD18E12F98F81A204339D25DD82BC993FDD, _stringLiteral2A9A5AB04CCC916E2271E013ECB39F5CC0DED339, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_50 = L_49;
NullCheck(L_50);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_50, _stringLiteral7E70AF961A2F88ADB9DB7B9C3B5F25A532C1570A, _stringLiteral1E975408BDC3CEEA3B3BBEDC11D8AE5E1FFE9B0B, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_51 = L_50;
NullCheck(L_51);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_51, _stringLiteral7577A0557AF7D69E0C49481F373E7858B5780565, _stringLiteral524A02B897BABED5C30469E21902671642FCF6DC, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_52 = L_51;
NullCheck(L_52);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_52, _stringLiteral83344570C78814D060F98E8A28B9C1804B6D79F6, _stringLiteralA25B69026A70D534621843E13AD9FBEBC01B0B2E, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_53 = L_52;
NullCheck(L_53);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_53, _stringLiteralBAB981D485EEF22571BF72AA511ECA047EB88F74, _stringLiteral9E6BA185CF46C7496C8977196B608B151E6CA640, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_54 = L_53;
NullCheck(L_54);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_54, _stringLiteral79286C46F128302EE9B397D1B2EE804CA3E182BA, _stringLiteralE2554AA2E0C9DC24A5C7C498FC582750C82FEF05, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_55 = L_54;
NullCheck(L_55);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_55, _stringLiteral8B3CFB4B560123030AE265CBD62C0BE39E1D8EC6, _stringLiteral42F629CC32087815BDEE088698E50CE910A82D86, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_56 = L_55;
NullCheck(L_56);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_56, _stringLiteral88B2EBB8B15244DE5EB3E8CCA28A8967EA0B6854, _stringLiteralD252B930E829E7C8274E97CAA92250DE3E9543A8, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_57 = L_56;
NullCheck(L_57);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_57, _stringLiteral93FC6FFF4C29A68E46A03C6F1D4BA69847491E8A, _stringLiteral216E3D25BB7EDE5236107BA6C65F6706B5BD2D23, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_58 = L_57;
NullCheck(L_58);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_58, _stringLiteral20E48A71B5C1AFE9893FE8F7BDFD9A446A9EB0F3, _stringLiteralA415C20DA6103839E3CDCE27E20D4269A64EFB98, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_59 = L_58;
NullCheck(L_59);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_59, _stringLiteral25118FE7F36A19FBB74A9C6C22FCB9831E89F823, _stringLiteral75A224C696F223AD77F7C80741DBF005DA84E826, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_60 = L_59;
NullCheck(L_60);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_60, _stringLiteral1B96C2A6037883D67ADDA00441FF5DC311D9F8DF, _stringLiteral3D65682F00D08C168B4505CC6CE8D8859E155B56, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_61 = L_60;
NullCheck(L_61);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_61, _stringLiteral509757CFB3D9A8616DB7B4FB514DBF839548AC88, _stringLiteral56F16046057CAF41056CD1EFA40C61820CF96523, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_62 = L_61;
NullCheck(L_62);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_62, _stringLiteralB8B4C2979DAB09B7114DAEEEAB285DFD7F257D8E, _stringLiteralD75745EF86B18A96BC82747BF47AF777104AB154, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_63 = L_62;
NullCheck(L_63);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_63, _stringLiteral99C165894B2900048144F5DEF682937FE73CA541, _stringLiteralDD381BE73F585C3796C220566E891E458F9D6290, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_64 = L_63;
NullCheck(L_64);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_64, _stringLiteralB6DC6AD5CFE944143BCE7F7E2BBD5EDA70CBE240, _stringLiteral99C134A36D015746C32203B98CC495F87311D9DC, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_65 = L_64;
NullCheck(L_65);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_65, _stringLiteral8EA411EEA0231AA0906165194C210EF69B075891, _stringLiteral7931519DFF1BB20E46AE397FD6DB8CD6EEC7ED0C, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_66 = L_65;
NullCheck(L_66);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_66, _stringLiteral9CDD95D71909AF4B1F39B564CDB7A29DC63A726A, _stringLiteral0F97BFE601FEB0350627EDDE59CF51E33AD503FA, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_67 = L_66;
NullCheck(L_67);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_67, _stringLiteral386C2FE8E26B914AB24092E9E7FBA3B7840238C4, _stringLiteral3765CC954D2E20DA444F70D543294F5BEDD2FEC2, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_68 = L_67;
NullCheck(L_68);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_68, _stringLiteralEC7F5B374B6E8F9D588D6C7692D3C4E95482D2C6, _stringLiteral9B1F0AA63B2AB43512920221BD667C8CF844E7A5, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_69 = L_68;
NullCheck(L_69);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_69, _stringLiteralBAA19DCB8FB67475CB93C514ACB7AA3B13E9E06A, _stringLiteral1C2685EEE425882510DB5AA417848E03F4698356, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_70 = L_69;
NullCheck(L_70);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_70, _stringLiteral5A4E411F65E7CA15BA995630065445903EBE9E78, _stringLiteral2A7F604AA53E605CA5A4D06ADF4F5C4B6FCBD8E8, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_71 = L_70;
NullCheck(L_71);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_71, _stringLiteral7E42A1729FA8C9C1BEE7E611CBFC7146A05A416A, _stringLiteral04E73520EF5FFFB55D772FE19B08EC1B2E552C4B, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_72 = L_71;
NullCheck(L_72);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_72, _stringLiteral6F23583CEF03BB7DDB3E4BEFF341EA1FC85AB4D8, _stringLiteralFA254D4D1C509C2DFAEF4A34A32CEC0963B5152D, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_73 = L_72;
NullCheck(L_73);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_73, _stringLiteral09684B67A5909FD48E1F14A8AF8DDD483C620B10, _stringLiteral1A7FC08E8EB016BAD5A8A8D7B3447DAD63E867BC, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_74 = L_73;
NullCheck(L_74);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_74, _stringLiteralD92669B082D6B6E83DA626B0B5FDFBF31D83A73A, _stringLiteral94F80C8383908313363D09271B7A1CEBC9C5466A, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_75 = L_74;
NullCheck(L_75);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_75, _stringLiteral33E5E507E0804AC2782DF407510BD2DFE93B374F, _stringLiteralA93F7F2221973BB3366690843F10B64F2A3A5C02, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_76 = L_75;
NullCheck(L_76);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_76, _stringLiteral1ACB8FAF8504B2F74910751862578633C09282F3, _stringLiteralC8F17C66DC1FF69C1D90B27C99118E5EBE60A360, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_77 = L_76;
NullCheck(L_77);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_77, _stringLiteral65F470EB85937975B76150048296F58FD47AB5E0, _stringLiteralA716B75B12303C269B7D64B627143962C1A30F9E, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_78 = L_77;
NullCheck(L_78);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_78, _stringLiteral89D230C85EF9835442B3F52D83B0085CD933180D, _stringLiteral95966C03C6021E7E73AE465202AEF101F94D0CC5, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_79 = L_78;
NullCheck(L_79);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_79, _stringLiteralE3EFD851D23D6F66E867490CB66E3B93EF575B79, _stringLiteral0FE54C445DB351A3F32FB1C63B8B9C71D295C2B8, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_80 = L_79;
NullCheck(L_80);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_80, _stringLiteral60DF8EB4AC4B801DC8E976BB0E82ED8EC424AD81, _stringLiteralF24BCEBD3BF54143DC34399B1E3AD4F93496E764, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_81 = L_80;
NullCheck(L_81);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_81, _stringLiteral57C2411D7466EB3172B6ADBF471154844F8FEA55, _stringLiteralB16364632FFDA7CF8AB0EF198C603812CB7ECD94, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_82 = L_81;
NullCheck(L_82);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_82, _stringLiteralA49C6C2328B9D2556E2655623DAC4AA452304C19, _stringLiteralA006FCB4201934135FE5378132B66888869CBF16, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_83 = L_82;
NullCheck(L_83);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_83, _stringLiteral62C9A18CEF6E803000E9D0C74D3984F48861921F, _stringLiteral1EC47CDC551021DF3F33288308AB1FEBAD868FBF, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_84 = L_83;
NullCheck(L_84);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_84, _stringLiteral64260D9444D15A6248926D7B01F965DB0406844C, _stringLiteral14766905080A42A4E1B372AB68C4494ECC1FEE82, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_85 = L_84;
NullCheck(L_85);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_85, _stringLiteral89487254CCF55296ACC80B8660A14ADE141E6868, _stringLiteral0B31027F164515A1950B5D7471AE7856BE543763, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_86 = L_85;
NullCheck(L_86);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_86, _stringLiteral83516AD985761BA568B2C46FFF23091999ACF73B, _stringLiteral59035792B7DAA31AEB540EB87E38CA344825D295, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_87 = L_86;
NullCheck(L_87);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_87, _stringLiteral26E994D822B48484B04399E5FFCFF2F3C1D25743, _stringLiteral6B188360294349CD1D94164DB9AE487200C503EE, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_88 = L_87;
NullCheck(L_88);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_88, _stringLiteralC55AFFA4599D7E7F1FE45BF21D72FD8E0E12E4B1, _stringLiteralDABBB9C036193D85D6C01708C64DD345BCE1FCC4, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_89 = L_88;
NullCheck(L_89);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_89, _stringLiteral5BF96667530EA67F66934684E21D80177D05462F, _stringLiteral3D33D0610C7091655B30CCDF62ABD943C3D6E36B, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_90 = L_89;
NullCheck(L_90);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_90, _stringLiteral81EB86A368F960F3D9C1CECA4B8419FF90C9C1EF, _stringLiteral8E264486DFD68F8D2AC59C629355E7337C6392BF, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_91 = L_90;
NullCheck(L_91);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_91, _stringLiteralD431DA333CF96CF017F2C2FE0CE09A07D97C41C8, _stringLiteral683A95818280F9859694F418A2FD0A817678C9DB, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_92 = L_91;
NullCheck(L_92);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_92, _stringLiteralDD93AF8A205AE54D6AE755FEEBC6B6221D3251CA, _stringLiteral7453478D5DA9E53E5ECCD0865A2CD6927BAD940B, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_93 = L_92;
NullCheck(L_93);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_93, _stringLiteral412993E49B10AEBEAAF97A839FB0FFFFBE635604, _stringLiteralACA7E3D2770ADAB061CBEB4B68128A012D6BA80C, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_94 = L_93;
NullCheck(L_94);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_94, _stringLiteral3FD577241CDFEB5901AE2F75AC3F8BE590E39584, _stringLiteralFEBD4C8F55D7CC1B6E65FF051696B9E0B128A9EA, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_95 = L_94;
NullCheck(L_95);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_95, _stringLiteralA6A5FD7DF379E08BFFCC99E567489352CB086B03, _stringLiteralB3B6FD28E314D30A8A29C4DF4D44104A679F811C, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_96 = L_95;
NullCheck(L_96);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_96, _stringLiteralFBEE240C366010135208AF44B014EF5A1569B7B4, _stringLiteralD3D092DD26E70F30FC80E8E212B50455A8FC29C9, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_97 = L_96;
NullCheck(L_97);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_97, _stringLiteral7B18F301A198B83778B5E546729B0539A0D4E758, _stringLiteralA3BFC0737E4F6504E6E8C5B00F9FB2F64D65E1A7, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_98 = L_97;
NullCheck(L_98);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_98, _stringLiteral738FCA547BF0642A101D0089A576E9185DF009D0, _stringLiteral31B7F7137140DD116C1A537306889714F783E01B, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_99 = L_98;
NullCheck(L_99);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_99, _stringLiteral265AC4FA61CDF45D97068B014131FBA64D57252D, _stringLiteral63B300D626AF5DB0A4A90A4C6129D533D8A54BDB, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_100 = L_99;
NullCheck(L_100);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_100, _stringLiteral592F7E5A43A277121C24F9F2BF94CB1EB74C61B7, _stringLiteralD3F492F1F5769A36FDE4FDBAA2F03E4968A9C49A, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_101 = L_100;
NullCheck(L_101);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_101, _stringLiteral80DE72AF3DA47DC4163DB5C56EE2FD8047DB03C9, _stringLiteral1516A3BA846D0F80661C2EF149A49C5DBB511D1D, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_102 = L_101;
NullCheck(L_102);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_102, _stringLiteralADCFCCDEF80C922C16E80229971100719F7C12E5, _stringLiteral8EFCA599026E32CC66A6CF4B93F8B27E3A7A5AA8, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_103 = L_102;
NullCheck(L_103);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_103, _stringLiteral41E7279CDDF2F76722910916CF4C0A8EC64DAE48, _stringLiteralC21CF5E29D28F583337ED42C9E463D36BC9B2B1D, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_104 = L_103;
NullCheck(L_104);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_104, _stringLiteral3285395F26EAFB3C5922F02E5C730A604CE54FFD, _stringLiteral4066F19F3D1AA536AF01D9BF934B884A451C566F, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
((OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_StaticFields*)il2cpp_codegen_static_fields_for(OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var))->___s_friendlyNameToOid_2 = L_104;
Il2CppCodeGenWriteBarrier((void**)(&((OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_StaticFields*)il2cpp_codegen_static_fields_for(OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var))->___s_friendlyNameToOid_2), (void*)L_104);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_105 = ((OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_StaticFields*)il2cpp_codegen_static_fields_for(OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var))->___s_friendlyNameToOid_2;
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t90F8CB10B454B45A81BE65AA841DD85FE08EA21A_il2cpp_TypeInfo_var);
U3CU3Ec_t90F8CB10B454B45A81BE65AA841DD85FE08EA21A* L_106 = ((U3CU3Ec_t90F8CB10B454B45A81BE65AA841DD85FE08EA21A_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t90F8CB10B454B45A81BE65AA841DD85FE08EA21A_il2cpp_TypeInfo_var))->___U3CU3E9_0;
Func_2_t0FD9221539E762B3867B2E3B6D6B3F90C6483088* L_107 = (Func_2_t0FD9221539E762B3867B2E3B6D6B3F90C6483088*)il2cpp_codegen_object_new(Func_2_t0FD9221539E762B3867B2E3B6D6B3F90C6483088_il2cpp_TypeInfo_var);
NullCheck(L_107);
Func_2__ctor_m48BD5538630AB90CAACF2ADC165985AB743A6C30(L_107, L_106, (intptr_t)((void*)U3CU3Ec_U3C_cctorU3Eb__10_0_m6CCA3946EAC08544EB57D764DBF2D23E12DE30A1_RuntimeMethod_var), NULL);
U3CU3Ec_t90F8CB10B454B45A81BE65AA841DD85FE08EA21A* L_108 = ((U3CU3Ec_t90F8CB10B454B45A81BE65AA841DD85FE08EA21A_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t90F8CB10B454B45A81BE65AA841DD85FE08EA21A_il2cpp_TypeInfo_var))->___U3CU3E9_0;
Func_2_t0FD9221539E762B3867B2E3B6D6B3F90C6483088* L_109 = (Func_2_t0FD9221539E762B3867B2E3B6D6B3F90C6483088*)il2cpp_codegen_object_new(Func_2_t0FD9221539E762B3867B2E3B6D6B3F90C6483088_il2cpp_TypeInfo_var);
NullCheck(L_109);
Func_2__ctor_m48BD5538630AB90CAACF2ADC165985AB743A6C30(L_109, L_108, (intptr_t)((void*)U3CU3Ec_U3C_cctorU3Eb__10_1_m7F86444F2B083758A76759BD54D31A3538101A4E_RuntimeMethod_var), NULL);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_110;
L_110 = Enumerable_ToDictionary_TisKeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A_TisString_t_TisString_t_m04E92A94C241FE2E449A88C27845214EAB8E5813(L_105, L_107, L_109, Enumerable_ToDictionary_TisKeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A_TisString_t_TisString_t_m04E92A94C241FE2E449A88C27845214EAB8E5813_RuntimeMethod_var);
((OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_StaticFields*)il2cpp_codegen_static_fields_for(OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var))->___s_oidToFriendlyName_3 = L_110;
Il2CppCodeGenWriteBarrier((void**)(&((OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_StaticFields*)il2cpp_codegen_static_fields_for(OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var))->___s_oidToFriendlyName_3), (void*)L_110);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_111 = (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83*)il2cpp_codegen_object_new(Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83_il2cpp_TypeInfo_var);
NullCheck(L_111);
Dictionary_2__ctor_m768E076F1E804CE4959F4E71D3E6A9ADE2F55052(L_111, Dictionary_2__ctor_m768E076F1E804CE4959F4E71D3E6A9ADE2F55052_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_112 = L_111;
NullCheck(L_112);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_112, _stringLiteral08BBB8048FA133B2E30EBC4A223440CBE46C54BA, _stringLiteral5D6AC9E7FE8C6C89E816E586AFA7AB9FDD4896C3, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_113 = L_112;
NullCheck(L_113);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_113, _stringLiteralE129A07A01337A4B1F0247362EC7A3B4D3FE591E, _stringLiteral5CDBAC457EFE37BD1A4DE9D7CA08E257E79A06E8, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_114 = L_113;
NullCheck(L_114);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_114, _stringLiteral80A61DF74E3132BFF8AB81A0843B4B50F8BD99B3, _stringLiteralA49C6C2328B9D2556E2655623DAC4AA452304C19, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_115 = L_114;
NullCheck(L_115);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_115, _stringLiteralA8BCDFB664ED95346DE4342A8E251772B519ECDB, _stringLiteral85ED0BE3A863D3289C6B8C92A26E016A40E584F4, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_116 = L_115;
NullCheck(L_116);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_116, _stringLiteralCE94536476505A36236FABE90390E761134DDFFD, _stringLiteral87A99411D29E97529AE9D79528DC96F17B0536F8, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_117 = L_116;
NullCheck(L_117);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_117, _stringLiteralCBCF9A0C616BF28F37201490894BD1EAEE790999, _stringLiteral79286C46F128302EE9B397D1B2EE804CA3E182BA, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_118 = L_117;
NullCheck(L_118);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_118, _stringLiteralA0D2489FF811A7C30B58640074CA473EA7DB5472, _stringLiteralA38630C0DCBBD9CA5D185BABA4B13A9BA8E4480D, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_119 = L_118;
NullCheck(L_119);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_119, _stringLiteralE7F2002E39D5228A8496A82B1F7CAC32E1BD0715, _stringLiteral64260D9444D15A6248926D7B01F965DB0406844C, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_120 = L_119;
NullCheck(L_120);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_120, _stringLiteral9A12021E1E1850DBED762F93F651DB311B213542, _stringLiteral88B2EBB8B15244DE5EB3E8CCA28A8967EA0B6854, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_121 = L_120;
NullCheck(L_121);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_121, _stringLiteral9CD944CC2F94D393A85A2E0420941DCD6622DA70, _stringLiteral79286C46F128302EE9B397D1B2EE804CA3E182BA, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_122 = L_121;
NullCheck(L_122);
Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13(L_122, _stringLiteral80F21D50E32EC9084847997A0C258C6A529DAC47, _stringLiteral83344570C78814D060F98E8A28B9C1804B6D79F6, Dictionary_2_Add_mC78C20D5901C87AAC38F37C906FAB6946BDE5F13_RuntimeMethod_var);
((OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_StaticFields*)il2cpp_codegen_static_fields_for(OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var))->___s_compatOids_4 = L_122;
Il2CppCodeGenWriteBarrier((void**)(&((OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_StaticFields*)il2cpp_codegen_static_fields_for(OidLookup_t8767D0F636CD22219B1F239AE31597AF84BA6458_il2cpp_TypeInfo_var))->___s_compatOids_4), (void*)L_122);
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 Internal.Cryptography.OidLookup/<>c::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m2E929BF5DE0AAD59E0C0E2AA6875DFF57F976962 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t90F8CB10B454B45A81BE65AA841DD85FE08EA21A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
U3CU3Ec_t90F8CB10B454B45A81BE65AA841DD85FE08EA21A* L_0 = (U3CU3Ec_t90F8CB10B454B45A81BE65AA841DD85FE08EA21A*)il2cpp_codegen_object_new(U3CU3Ec_t90F8CB10B454B45A81BE65AA841DD85FE08EA21A_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CU3Ec__ctor_m381C6259C7B5579501CBFB1E4D1DF201D5928470(L_0, NULL);
((U3CU3Ec_t90F8CB10B454B45A81BE65AA841DD85FE08EA21A_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t90F8CB10B454B45A81BE65AA841DD85FE08EA21A_il2cpp_TypeInfo_var))->___U3CU3E9_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t90F8CB10B454B45A81BE65AA841DD85FE08EA21A_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t90F8CB10B454B45A81BE65AA841DD85FE08EA21A_il2cpp_TypeInfo_var))->___U3CU3E9_0), (void*)L_0);
return;
}
}
// System.Void Internal.Cryptography.OidLookup/<>c::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m381C6259C7B5579501CBFB1E4D1DF201D5928470 (U3CU3Ec_t90F8CB10B454B45A81BE65AA841DD85FE08EA21A* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.String Internal.Cryptography.OidLookup/<>c::<.cctor>b__10_0(System.Collections.Generic.KeyValuePair`2<System.String,System.String>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* U3CU3Ec_U3C_cctorU3Eb__10_0_m6CCA3946EAC08544EB57D764DBF2D23E12DE30A1 (U3CU3Ec_t90F8CB10B454B45A81BE65AA841DD85FE08EA21A* __this, KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A ___kvp0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Value_m7345512A32CB4DCAA0643050B18DC8DCD71B927A_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0;
L_0 = KeyValuePair_2_get_Value_m7345512A32CB4DCAA0643050B18DC8DCD71B927A_inline((&___kvp0), KeyValuePair_2_get_Value_m7345512A32CB4DCAA0643050B18DC8DCD71B927A_RuntimeMethod_var);
return L_0;
}
}
// System.String Internal.Cryptography.OidLookup/<>c::<.cctor>b__10_1(System.Collections.Generic.KeyValuePair`2<System.String,System.String>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* U3CU3Ec_U3C_cctorU3Eb__10_1_m7F86444F2B083758A76759BD54D31A3538101A4E (U3CU3Ec_t90F8CB10B454B45A81BE65AA841DD85FE08EA21A* __this, KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A ___kvp0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Key_m654BCCAE2F20CB11D8E8C2D2C886A0C8A13EB1C4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0;
L_0 = KeyValuePair_2_get_Key_m654BCCAE2F20CB11D8E8C2D2C886A0C8A13EB1C4_inline((&___kvp0), KeyValuePair_2_get_Key_m654BCCAE2F20CB11D8E8C2D2C886A0C8A13EB1C4_RuntimeMethod_var);
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
// Conversion methods for marshalling of: Internal.Cryptography.Pal.CertificateData
IL2CPP_EXTERN_C void CertificateData_t40A99242A632202B3115D05913ED12CAA78F65B1_marshal_pinvoke(const CertificateData_t40A99242A632202B3115D05913ED12CAA78F65B1& unmarshaled, CertificateData_t40A99242A632202B3115D05913ED12CAA78F65B1_marshaled_pinvoke& marshaled)
{
Exception_t* ___Issuer_5Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'Issuer' of type 'CertificateData': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___Issuer_5Exception, NULL);
}
IL2CPP_EXTERN_C void CertificateData_t40A99242A632202B3115D05913ED12CAA78F65B1_marshal_pinvoke_back(const CertificateData_t40A99242A632202B3115D05913ED12CAA78F65B1_marshaled_pinvoke& marshaled, CertificateData_t40A99242A632202B3115D05913ED12CAA78F65B1& unmarshaled)
{
Exception_t* ___Issuer_5Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'Issuer' of type 'CertificateData': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___Issuer_5Exception, NULL);
}
// Conversion method for clean up from marshalling of: Internal.Cryptography.Pal.CertificateData
IL2CPP_EXTERN_C void CertificateData_t40A99242A632202B3115D05913ED12CAA78F65B1_marshal_pinvoke_cleanup(CertificateData_t40A99242A632202B3115D05913ED12CAA78F65B1_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: Internal.Cryptography.Pal.CertificateData
IL2CPP_EXTERN_C void CertificateData_t40A99242A632202B3115D05913ED12CAA78F65B1_marshal_com(const CertificateData_t40A99242A632202B3115D05913ED12CAA78F65B1& unmarshaled, CertificateData_t40A99242A632202B3115D05913ED12CAA78F65B1_marshaled_com& marshaled)
{
Exception_t* ___Issuer_5Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'Issuer' of type 'CertificateData': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___Issuer_5Exception, NULL);
}
IL2CPP_EXTERN_C void CertificateData_t40A99242A632202B3115D05913ED12CAA78F65B1_marshal_com_back(const CertificateData_t40A99242A632202B3115D05913ED12CAA78F65B1_marshaled_com& marshaled, CertificateData_t40A99242A632202B3115D05913ED12CAA78F65B1& unmarshaled)
{
Exception_t* ___Issuer_5Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'Issuer' of type 'CertificateData': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___Issuer_5Exception, NULL);
}
// Conversion method for clean up from marshalling of: Internal.Cryptography.Pal.CertificateData
IL2CPP_EXTERN_C void CertificateData_t40A99242A632202B3115D05913ED12CAA78F65B1_marshal_com_cleanup(CertificateData_t40A99242A632202B3115D05913ED12CAA78F65B1_marshaled_com& marshaled)
{
}
// System.Void Internal.Cryptography.Pal.CertificateData::.ctor(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertificateData__ctor_m623A235F902E7262CB9DA2CEB1BF5D3E64A6D23F (CertificateData_t40A99242A632202B3115D05913ED12CAA78F65B1* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___rawData0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m89F7B056854DF715AA3E2B78EB84D5FA3878E474_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m2E50122C2C447172556F536670F67BD8E8DC5402_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mBCDF2D09AD0C1E065B1745D89FE3A7D98CD33E1F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t03551104C97124C9D83186EEB3F066B8BFFD87E3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* V_0 = NULL;
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* V_1 = NULL;
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* V_2 = NULL;
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* V_3 = NULL;
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* V_4 = NULL;
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* V_5 = NULL;
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* V_6 = NULL;
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* V_7 = NULL;
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* V_8 = NULL;
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* V_9 = NULL;
String_t* V_10 = NULL;
bool V_11 = false;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_12 = NULL;
AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8* G_B10_0 = NULL;
AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8* G_B9_0 = NULL;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* G_B11_0 = NULL;
AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8* G_B11_1 = NULL;
AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8* G_B17_0 = NULL;
AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8* G_B16_0 = NULL;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* G_B18_0 = NULL;
AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8* G_B18_1 = NULL;
AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8* G_B45_0 = NULL;
AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8* G_B44_0 = NULL;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* G_B46_0 = NULL;
AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8* G_B46_1 = NULL;
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___rawData0;
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_1 = (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A*)il2cpp_codegen_object_new(DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A_il2cpp_TypeInfo_var);
NullCheck(L_1);
DerSequenceReader__ctor_m899D7771F7F469E94812F8EB9BB0A75A0BE69CBD(L_1, L_0, NULL);
V_0 = L_1;
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_2 = V_0;
NullCheck(L_2);
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_3;
L_3 = DerSequenceReader_ReadSequence_m97DF1A79453D57FB5DB012273F34213180921AB4(L_2, NULL);
V_1 = L_3;
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_4 = V_1;
NullCheck(L_4);
uint8_t L_5;
L_5 = DerSequenceReader_PeekTag_mC22E34353BE4B4C5CE3579AE64B220263C159C8B(L_4, NULL);
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)160)))))
{
goto IL_0032;
}
}
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_6 = V_1;
NullCheck(L_6);
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_7;
L_7 = DerSequenceReader_ReadSequence_m97DF1A79453D57FB5DB012273F34213180921AB4(L_6, NULL);
V_7 = L_7;
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_8 = V_7;
NullCheck(L_8);
int32_t L_9;
L_9 = DerSequenceReader_ReadInteger_mEFB23332B798605A0F474C5B43C59D70543B93BC(L_8, NULL);
__this->___Version_2 = L_9;
goto IL_004d;
}
IL_0032:
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_10 = V_1;
NullCheck(L_10);
uint8_t L_11;
L_11 = DerSequenceReader_PeekTag_mC22E34353BE4B4C5CE3579AE64B220263C159C8B(L_10, NULL);
if ((((int32_t)L_11) == ((int32_t)2)))
{
goto IL_0046;
}
}
{
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_12 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
NullCheck(L_12);
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_12, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF6493B5A7C367827A5C3A31F49B5FCEF486E5576)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CertificateData__ctor_m623A235F902E7262CB9DA2CEB1BF5D3E64A6D23F_RuntimeMethod_var)));
}
IL_0046:
{
__this->___Version_2 = 0;
}
IL_004d:
{
int32_t L_13 = __this->___Version_2;
if ((((int32_t)L_13) < ((int32_t)0)))
{
goto IL_005f;
}
}
{
int32_t L_14 = __this->___Version_2;
if ((((int32_t)L_14) <= ((int32_t)2)))
{
goto IL_0065;
}
}
IL_005f:
{
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_15 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
NullCheck(L_15);
CryptographicException__ctor_mABCA20325469F37B8F4248FDF46EEE4548A9D88B(L_15, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CertificateData__ctor_m623A235F902E7262CB9DA2CEB1BF5D3E64A6D23F_RuntimeMethod_var)));
}
IL_0065:
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_16 = V_1;
NullCheck(L_16);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_17;
L_17 = DerSequenceReader_ReadIntegerBytes_mBF491D99194CDD9FC70F58CF07E66B535C3F63EB(L_16, NULL);
__this->___SerialNumber_3 = L_17;
Il2CppCodeGenWriteBarrier((void**)(&__this->___SerialNumber_3), (void*)L_17);
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_18 = V_1;
NullCheck(L_18);
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_19;
L_19 = DerSequenceReader_ReadSequence_m97DF1A79453D57FB5DB012273F34213180921AB4(L_18, NULL);
V_2 = L_19;
AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8* L_20 = (&__this->___TbsSignature_4);
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_21 = V_2;
NullCheck(L_21);
String_t* L_22;
L_22 = DerSequenceReader_ReadOidAsString_m53E76684261C012927DE60E2A8A5A4ECC6B33198(L_21, NULL);
L_20->___AlgorithmId_0 = L_22;
Il2CppCodeGenWriteBarrier((void**)(&L_20->___AlgorithmId_0), (void*)L_22);
AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8* L_23 = (&__this->___TbsSignature_4);
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_24 = V_2;
NullCheck(L_24);
bool L_25;
L_25 = DerSequenceReader_get_HasData_mD6CE45854665F68A82771427FF58DDF7632D6A31(L_24, NULL);
G_B9_0 = L_23;
if (L_25)
{
G_B10_0 = L_23;
goto IL_009e;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_26;
L_26 = Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m89F7B056854DF715AA3E2B78EB84D5FA3878E474_inline(Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m89F7B056854DF715AA3E2B78EB84D5FA3878E474_RuntimeMethod_var);
G_B11_0 = L_26;
G_B11_1 = G_B9_0;
goto IL_00a4;
}
IL_009e:
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_27 = V_2;
NullCheck(L_27);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_28;
L_28 = DerSequenceReader_ReadNextEncodedValue_mB9D376F1ED7428BFE7DE86B327E1B80E52E91CB7(L_27, NULL);
G_B11_0 = L_28;
G_B11_1 = G_B10_0;
}
IL_00a4:
{
G_B11_1->___Parameters_1 = G_B11_0;
Il2CppCodeGenWriteBarrier((void**)(&G_B11_1->___Parameters_1), (void*)G_B11_0);
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_29 = V_2;
NullCheck(L_29);
bool L_30;
L_30 = DerSequenceReader_get_HasData_mD6CE45854665F68A82771427FF58DDF7632D6A31(L_29, NULL);
if (!L_30)
{
goto IL_00bc;
}
}
{
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_31 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
NullCheck(L_31);
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_31, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF6493B5A7C367827A5C3A31F49B5FCEF486E5576)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_31, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CertificateData__ctor_m623A235F902E7262CB9DA2CEB1BF5D3E64A6D23F_RuntimeMethod_var)));
}
IL_00bc:
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_32 = V_1;
NullCheck(L_32);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_33;
L_33 = DerSequenceReader_ReadNextEncodedValue_mB9D376F1ED7428BFE7DE86B327E1B80E52E91CB7(L_32, NULL);
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* L_34 = (X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6*)il2cpp_codegen_object_new(X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6_il2cpp_TypeInfo_var);
NullCheck(L_34);
X500DistinguishedName__ctor_mF36480D37651E6FC6662E90ED7795F9A5C1C3DD2(L_34, L_33, NULL);
__this->___Issuer_5 = L_34;
Il2CppCodeGenWriteBarrier((void**)(&__this->___Issuer_5), (void*)L_34);
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_35 = V_1;
NullCheck(L_35);
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_36;
L_36 = DerSequenceReader_ReadSequence_m97DF1A79453D57FB5DB012273F34213180921AB4(L_35, NULL);
V_3 = L_36;
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_37 = V_3;
NullCheck(L_37);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_38;
L_38 = DerSequenceReader_ReadX509Date_m4B50094324675B16BCF2F77BCB1CD6827F04A568(L_37, NULL);
__this->___NotBefore_6 = L_38;
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_39 = V_3;
NullCheck(L_39);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_40;
L_40 = DerSequenceReader_ReadX509Date_m4B50094324675B16BCF2F77BCB1CD6827F04A568(L_39, NULL);
__this->___NotAfter_7 = L_40;
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_41 = V_3;
NullCheck(L_41);
bool L_42;
L_42 = DerSequenceReader_get_HasData_mD6CE45854665F68A82771427FF58DDF7632D6A31(L_41, NULL);
if (!L_42)
{
goto IL_00ff;
}
}
{
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_43 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
NullCheck(L_43);
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_43, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF6493B5A7C367827A5C3A31F49B5FCEF486E5576)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_43, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CertificateData__ctor_m623A235F902E7262CB9DA2CEB1BF5D3E64A6D23F_RuntimeMethod_var)));
}
IL_00ff:
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_44 = V_1;
NullCheck(L_44);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_45;
L_45 = DerSequenceReader_ReadNextEncodedValue_mB9D376F1ED7428BFE7DE86B327E1B80E52E91CB7(L_44, NULL);
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* L_46 = (X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6*)il2cpp_codegen_object_new(X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6_il2cpp_TypeInfo_var);
NullCheck(L_46);
X500DistinguishedName__ctor_mF36480D37651E6FC6662E90ED7795F9A5C1C3DD2(L_46, L_45, NULL);
__this->___Subject_8 = L_46;
Il2CppCodeGenWriteBarrier((void**)(&__this->___Subject_8), (void*)L_46);
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_47 = V_1;
NullCheck(L_47);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_48;
L_48 = DerSequenceReader_ReadNextEncodedValue_mB9D376F1ED7428BFE7DE86B327E1B80E52E91CB7(L_47, NULL);
__this->___SubjectPublicKeyInfo_1 = L_48;
Il2CppCodeGenWriteBarrier((void**)(&__this->___SubjectPublicKeyInfo_1), (void*)L_48);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_49 = __this->___SubjectPublicKeyInfo_1;
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_50 = (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A*)il2cpp_codegen_object_new(DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A_il2cpp_TypeInfo_var);
NullCheck(L_50);
DerSequenceReader__ctor_m899D7771F7F469E94812F8EB9BB0A75A0BE69CBD(L_50, L_49, NULL);
V_4 = L_50;
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_51 = V_4;
NullCheck(L_51);
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_52;
L_52 = DerSequenceReader_ReadSequence_m97DF1A79453D57FB5DB012273F34213180921AB4(L_51, NULL);
V_5 = L_52;
AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8* L_53 = (&__this->___PublicKeyAlgorithm_9);
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_54 = V_5;
NullCheck(L_54);
String_t* L_55;
L_55 = DerSequenceReader_ReadOidAsString_m53E76684261C012927DE60E2A8A5A4ECC6B33198(L_54, NULL);
L_53->___AlgorithmId_0 = L_55;
Il2CppCodeGenWriteBarrier((void**)(&L_53->___AlgorithmId_0), (void*)L_55);
AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8* L_56 = (&__this->___PublicKeyAlgorithm_9);
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_57 = V_5;
NullCheck(L_57);
bool L_58;
L_58 = DerSequenceReader_get_HasData_mD6CE45854665F68A82771427FF58DDF7632D6A31(L_57, NULL);
G_B16_0 = L_56;
if (L_58)
{
G_B17_0 = L_56;
goto IL_015a;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_59;
L_59 = Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m89F7B056854DF715AA3E2B78EB84D5FA3878E474_inline(Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m89F7B056854DF715AA3E2B78EB84D5FA3878E474_RuntimeMethod_var);
G_B18_0 = L_59;
G_B18_1 = G_B16_0;
goto IL_0161;
}
IL_015a:
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_60 = V_5;
NullCheck(L_60);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_61;
L_61 = DerSequenceReader_ReadNextEncodedValue_mB9D376F1ED7428BFE7DE86B327E1B80E52E91CB7(L_60, NULL);
G_B18_0 = L_61;
G_B18_1 = G_B17_0;
}
IL_0161:
{
G_B18_1->___Parameters_1 = G_B18_0;
Il2CppCodeGenWriteBarrier((void**)(&G_B18_1->___Parameters_1), (void*)G_B18_0);
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_62 = V_5;
NullCheck(L_62);
bool L_63;
L_63 = DerSequenceReader_get_HasData_mD6CE45854665F68A82771427FF58DDF7632D6A31(L_62, NULL);
if (!L_63)
{
goto IL_017a;
}
}
{
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_64 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
NullCheck(L_64);
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_64, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF6493B5A7C367827A5C3A31F49B5FCEF486E5576)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_64, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CertificateData__ctor_m623A235F902E7262CB9DA2CEB1BF5D3E64A6D23F_RuntimeMethod_var)));
}
IL_017a:
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_65 = V_4;
NullCheck(L_65);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_66;
L_66 = DerSequenceReader_ReadBitString_m6519951E58B9642238778071AF7926A6948F0387(L_65, NULL);
__this->___PublicKey_10 = L_66;
Il2CppCodeGenWriteBarrier((void**)(&__this->___PublicKey_10), (void*)L_66);
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_67 = V_4;
NullCheck(L_67);
bool L_68;
L_68 = DerSequenceReader_get_HasData_mD6CE45854665F68A82771427FF58DDF7632D6A31(L_67, NULL);
if (!L_68)
{
goto IL_019b;
}
}
{
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_69 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
NullCheck(L_69);
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_69, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF6493B5A7C367827A5C3A31F49B5FCEF486E5576)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_69, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CertificateData__ctor_m623A235F902E7262CB9DA2CEB1BF5D3E64A6D23F_RuntimeMethod_var)));
}
IL_019b:
{
int32_t L_70 = __this->___Version_2;
if ((((int32_t)L_70) <= ((int32_t)0)))
{
goto IL_01c7;
}
}
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_71 = V_1;
NullCheck(L_71);
bool L_72;
L_72 = DerSequenceReader_get_HasData_mD6CE45854665F68A82771427FF58DDF7632D6A31(L_71, NULL);
if (!L_72)
{
goto IL_01c7;
}
}
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_73 = V_1;
NullCheck(L_73);
uint8_t L_74;
L_74 = DerSequenceReader_PeekTag_mC22E34353BE4B4C5CE3579AE64B220263C159C8B(L_73, NULL);
if ((!(((uint32_t)L_74) == ((uint32_t)((int32_t)161)))))
{
goto IL_01c7;
}
}
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_75 = V_1;
NullCheck(L_75);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_76;
L_76 = DerSequenceReader_ReadBitString_m6519951E58B9642238778071AF7926A6948F0387(L_75, NULL);
__this->___IssuerUniqueId_11 = L_76;
Il2CppCodeGenWriteBarrier((void**)(&__this->___IssuerUniqueId_11), (void*)L_76);
goto IL_01ce;
}
IL_01c7:
{
__this->___IssuerUniqueId_11 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___IssuerUniqueId_11), (void*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL);
}
IL_01ce:
{
int32_t L_77 = __this->___Version_2;
if ((((int32_t)L_77) <= ((int32_t)0)))
{
goto IL_01fa;
}
}
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_78 = V_1;
NullCheck(L_78);
bool L_79;
L_79 = DerSequenceReader_get_HasData_mD6CE45854665F68A82771427FF58DDF7632D6A31(L_78, NULL);
if (!L_79)
{
goto IL_01fa;
}
}
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_80 = V_1;
NullCheck(L_80);
uint8_t L_81;
L_81 = DerSequenceReader_PeekTag_mC22E34353BE4B4C5CE3579AE64B220263C159C8B(L_80, NULL);
if ((!(((uint32_t)L_81) == ((uint32_t)((int32_t)162)))))
{
goto IL_01fa;
}
}
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_82 = V_1;
NullCheck(L_82);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_83;
L_83 = DerSequenceReader_ReadBitString_m6519951E58B9642238778071AF7926A6948F0387(L_82, NULL);
__this->___SubjectUniqueId_12 = L_83;
Il2CppCodeGenWriteBarrier((void**)(&__this->___SubjectUniqueId_12), (void*)L_83);
goto IL_0201;
}
IL_01fa:
{
__this->___SubjectUniqueId_12 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___SubjectUniqueId_12), (void*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL);
}
IL_0201:
{
List_1_t03551104C97124C9D83186EEB3F066B8BFFD87E3* L_84 = (List_1_t03551104C97124C9D83186EEB3F066B8BFFD87E3*)il2cpp_codegen_object_new(List_1_t03551104C97124C9D83186EEB3F066B8BFFD87E3_il2cpp_TypeInfo_var);
NullCheck(L_84);
List_1__ctor_mBCDF2D09AD0C1E065B1745D89FE3A7D98CD33E1F(L_84, List_1__ctor_mBCDF2D09AD0C1E065B1745D89FE3A7D98CD33E1F_RuntimeMethod_var);
__this->___Extensions_13 = L_84;
Il2CppCodeGenWriteBarrier((void**)(&__this->___Extensions_13), (void*)L_84);
int32_t L_85 = __this->___Version_2;
if ((((int32_t)L_85) <= ((int32_t)1)))
{
goto IL_02a7;
}
}
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_86 = V_1;
NullCheck(L_86);
bool L_87;
L_87 = DerSequenceReader_get_HasData_mD6CE45854665F68A82771427FF58DDF7632D6A31(L_86, NULL);
if (!L_87)
{
goto IL_02a7;
}
}
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_88 = V_1;
NullCheck(L_88);
uint8_t L_89;
L_89 = DerSequenceReader_PeekTag_mC22E34353BE4B4C5CE3579AE64B220263C159C8B(L_88, NULL);
if ((!(((uint32_t)L_89) == ((uint32_t)((int32_t)163)))))
{
goto IL_02a7;
}
}
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_90 = V_1;
NullCheck(L_90);
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_91;
L_91 = DerSequenceReader_ReadSequence_m97DF1A79453D57FB5DB012273F34213180921AB4(L_90, NULL);
V_8 = L_91;
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_92 = V_8;
NullCheck(L_92);
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_93;
L_93 = DerSequenceReader_ReadSequence_m97DF1A79453D57FB5DB012273F34213180921AB4(L_92, NULL);
V_8 = L_93;
goto IL_029e;
}
IL_0243:
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_94 = V_8;
NullCheck(L_94);
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_95;
L_95 = DerSequenceReader_ReadSequence_m97DF1A79453D57FB5DB012273F34213180921AB4(L_94, NULL);
V_9 = L_95;
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_96 = V_9;
NullCheck(L_96);
String_t* L_97;
L_97 = DerSequenceReader_ReadOidAsString_m53E76684261C012927DE60E2A8A5A4ECC6B33198(L_96, NULL);
V_10 = L_97;
V_11 = (bool)0;
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_98 = V_9;
NullCheck(L_98);
uint8_t L_99;
L_99 = DerSequenceReader_PeekTag_mC22E34353BE4B4C5CE3579AE64B220263C159C8B(L_98, NULL);
if ((!(((uint32_t)L_99) == ((uint32_t)1))))
{
goto IL_026b;
}
}
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_100 = V_9;
NullCheck(L_100);
bool L_101;
L_101 = DerSequenceReader_ReadBoolean_m568EA640EA9967B8785075997D5161FC7C6C5EBD(L_100, NULL);
V_11 = L_101;
}
IL_026b:
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_102 = V_9;
NullCheck(L_102);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_103;
L_103 = DerSequenceReader_ReadOctetString_mDF80CEA6892B5E2BAA457C153DEBE8C411EC70FE(L_102, NULL);
V_12 = L_103;
List_1_t03551104C97124C9D83186EEB3F066B8BFFD87E3* L_104 = __this->___Extensions_13;
String_t* L_105 = V_10;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_106 = V_12;
bool L_107 = V_11;
X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* L_108 = (X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5*)il2cpp_codegen_object_new(X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5_il2cpp_TypeInfo_var);
NullCheck(L_108);
X509Extension__ctor_m442E6EED0F68D0FA2D7D7B085BEAB11F35B9157F(L_108, L_105, L_106, L_107, NULL);
NullCheck(L_104);
List_1_Add_m2E50122C2C447172556F536670F67BD8E8DC5402_inline(L_104, L_108, List_1_Add_m2E50122C2C447172556F536670F67BD8E8DC5402_RuntimeMethod_var);
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_109 = V_9;
NullCheck(L_109);
bool L_110;
L_110 = DerSequenceReader_get_HasData_mD6CE45854665F68A82771427FF58DDF7632D6A31(L_109, NULL);
if (!L_110)
{
goto IL_029e;
}
}
{
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_111 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
NullCheck(L_111);
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_111, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF6493B5A7C367827A5C3A31F49B5FCEF486E5576)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_111, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CertificateData__ctor_m623A235F902E7262CB9DA2CEB1BF5D3E64A6D23F_RuntimeMethod_var)));
}
IL_029e:
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_112 = V_8;
NullCheck(L_112);
bool L_113;
L_113 = DerSequenceReader_get_HasData_mD6CE45854665F68A82771427FF58DDF7632D6A31(L_112, NULL);
if (L_113)
{
goto IL_0243;
}
}
IL_02a7:
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_114 = V_1;
NullCheck(L_114);
bool L_115;
L_115 = DerSequenceReader_get_HasData_mD6CE45854665F68A82771427FF58DDF7632D6A31(L_114, NULL);
if (!L_115)
{
goto IL_02ba;
}
}
{
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_116 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
NullCheck(L_116);
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_116, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF6493B5A7C367827A5C3A31F49B5FCEF486E5576)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_116, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CertificateData__ctor_m623A235F902E7262CB9DA2CEB1BF5D3E64A6D23F_RuntimeMethod_var)));
}
IL_02ba:
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_117 = V_0;
NullCheck(L_117);
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_118;
L_118 = DerSequenceReader_ReadSequence_m97DF1A79453D57FB5DB012273F34213180921AB4(L_117, NULL);
V_6 = L_118;
AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8* L_119 = (&__this->___SignatureAlgorithm_14);
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_120 = V_6;
NullCheck(L_120);
String_t* L_121;
L_121 = DerSequenceReader_ReadOidAsString_m53E76684261C012927DE60E2A8A5A4ECC6B33198(L_120, NULL);
L_119->___AlgorithmId_0 = L_121;
Il2CppCodeGenWriteBarrier((void**)(&L_119->___AlgorithmId_0), (void*)L_121);
AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8* L_122 = (&__this->___SignatureAlgorithm_14);
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_123 = V_6;
NullCheck(L_123);
bool L_124;
L_124 = DerSequenceReader_get_HasData_mD6CE45854665F68A82771427FF58DDF7632D6A31(L_123, NULL);
G_B44_0 = L_122;
if (L_124)
{
G_B45_0 = L_122;
goto IL_02ea;
}
}
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_125;
L_125 = Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m89F7B056854DF715AA3E2B78EB84D5FA3878E474_inline(Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m89F7B056854DF715AA3E2B78EB84D5FA3878E474_RuntimeMethod_var);
G_B46_0 = L_125;
G_B46_1 = G_B44_0;
goto IL_02f1;
}
IL_02ea:
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_126 = V_6;
NullCheck(L_126);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_127;
L_127 = DerSequenceReader_ReadNextEncodedValue_mB9D376F1ED7428BFE7DE86B327E1B80E52E91CB7(L_126, NULL);
G_B46_0 = L_127;
G_B46_1 = G_B45_0;
}
IL_02f1:
{
G_B46_1->___Parameters_1 = G_B46_0;
Il2CppCodeGenWriteBarrier((void**)(&G_B46_1->___Parameters_1), (void*)G_B46_0);
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_128 = V_6;
NullCheck(L_128);
bool L_129;
L_129 = DerSequenceReader_get_HasData_mD6CE45854665F68A82771427FF58DDF7632D6A31(L_128, NULL);
if (!L_129)
{
goto IL_030a;
}
}
{
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_130 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
NullCheck(L_130);
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_130, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF6493B5A7C367827A5C3A31F49B5FCEF486E5576)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_130, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CertificateData__ctor_m623A235F902E7262CB9DA2CEB1BF5D3E64A6D23F_RuntimeMethod_var)));
}
IL_030a:
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_131 = V_0;
NullCheck(L_131);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_132;
L_132 = DerSequenceReader_ReadBitString_m6519951E58B9642238778071AF7926A6948F0387(L_131, NULL);
__this->___SignatureValue_15 = L_132;
Il2CppCodeGenWriteBarrier((void**)(&__this->___SignatureValue_15), (void*)L_132);
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_133 = V_0;
NullCheck(L_133);
bool L_134;
L_134 = DerSequenceReader_get_HasData_mD6CE45854665F68A82771427FF58DDF7632D6A31(L_133, NULL);
if (!L_134)
{
goto IL_0329;
}
}
{
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_135 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
NullCheck(L_135);
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_135, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF6493B5A7C367827A5C3A31F49B5FCEF486E5576)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_135, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CertificateData__ctor_m623A235F902E7262CB9DA2CEB1BF5D3E64A6D23F_RuntimeMethod_var)));
}
IL_0329:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_136 = ___rawData0;
__this->___RawData_0 = L_136;
Il2CppCodeGenWriteBarrier((void**)(&__this->___RawData_0), (void*)L_136);
return;
}
}
IL2CPP_EXTERN_C void CertificateData__ctor_m623A235F902E7262CB9DA2CEB1BF5D3E64A6D23F_AdjustorThunk (RuntimeObject* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___rawData0, const RuntimeMethod* method)
{
CertificateData_t40A99242A632202B3115D05913ED12CAA78F65B1* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<CertificateData_t40A99242A632202B3115D05913ED12CAA78F65B1*>(__this + _offset);
CertificateData__ctor_m623A235F902E7262CB9DA2CEB1BF5D3E64A6D23F(_thisAdjusted, ___rawData0, method);
}
// System.String Internal.Cryptography.Pal.CertificateData::GetNameInfo(System.Security.Cryptography.X509Certificates.X509NameType,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CertificateData_GetNameInfo_m8DC5068DE35A32AC641DCBA45C409D05C4CE9D72 (CertificateData_t40A99242A632202B3115D05913ED12CAA78F65B1* __this, int32_t ___nameType0, bool ___forIssuer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mE3117C916B22646663B0F965D7370ADEBE42898C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m96CF02EEDE6A41EEAD98756D29E96808A1FE5875_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mA29E00FEF2148BD9A58CDD8F0EB5300B3AAF0ED8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_t3C6913E067AB1171D9894C79A396D8A8E90E311B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t174BFB804F1D416642CD11B72858B43316D8B26D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Key_m654BCCAE2F20CB11D8E8C2D2C886A0C8A13EB1C4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Value_m7345512A32CB4DCAA0643050B18DC8DCD71B927A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m7A5DCD9E0FAEC1363189B45012C255D307C153FB_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m1A8E9A123DB57832E6F59440493BFC4D743DC892_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m6AFDA522FA5E17FDF9021A5880732A90EA2396F1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_m733C963A26A2E37CCC7BD8D1826D4AD757701B6F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0E0E07FBC53FA8C48B097E23C1F51253713BFE1D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4BD64CDDC726EEC9781AF7725F934C659848D974);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral72E174820ED7A45081DDFEACF656A904E9EB0E4A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral94227CA8EB4252C21E39FE8CCB2B65A6D01D3CF1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC427ED0956E3EE3E9348F8D4B17DCD3E200409B6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
Nullable_1_tD474435A767EA9EC7D78FDCE2CF95E400CD4B5EA V_2;
memset((&V_2), 0, sizeof(V_2));
String_t* V_3 = NULL;
Enumerator_tEDDC2C241127BDEC411C60FAB649BDE614D0F9D9 V_4;
memset((&V_4), 0, sizeof(V_4));
X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* V_5 = NULL;
String_t* V_6 = NULL;
String_t* V_7 = NULL;
String_t* V_8 = NULL;
RuntimeObject* V_9 = NULL;
KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A V_10;
memset((&V_10), 0, sizeof(V_10));
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* G_B4_0 = NULL;
String_t* G_B9_0 = NULL;
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* G_B33_0 = NULL;
{
int32_t L_0 = ___nameType0;
if (L_0)
{
goto IL_001f;
}
}
{
bool L_1 = ___forIssuer1;
if (L_1)
{
goto IL_000e;
}
}
{
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* L_2 = __this->___Subject_8;
G_B4_0 = L_2;
goto IL_0014;
}
IL_000e:
{
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* L_3 = __this->___Issuer_5;
G_B4_0 = L_3;
}
IL_0014:
{
String_t* L_4;
L_4 = CertificateData_GetSimpleNameInfo_mA631A4BFF5FA74EED7E44B2398323213F4505511(G_B4_0, NULL);
V_0 = L_4;
String_t* L_5 = V_0;
if (!L_5)
{
goto IL_001f;
}
}
{
String_t* L_6 = V_0;
return L_6;
}
IL_001f:
{
bool L_7 = ___forIssuer1;
if (L_7)
{
goto IL_0029;
}
}
{
G_B9_0 = _stringLiteral0E0E07FBC53FA8C48B097E23C1F51253713BFE1D;
goto IL_002e;
}
IL_0029:
{
G_B9_0 = _stringLiteralC427ED0956E3EE3E9348F8D4B17DCD3E200409B6;
}
IL_002e:
{
V_1 = G_B9_0;
il2cpp_codegen_initobj((&V_2), sizeof(Nullable_1_tD474435A767EA9EC7D78FDCE2CF95E400CD4B5EA));
V_3 = (String_t*)NULL;
int32_t L_8 = ___nameType0;
switch (L_8)
{
case 0:
{
goto IL_0063;
}
case 1:
{
goto IL_0063;
}
case 2:
{
goto IL_006d;
}
case 3:
{
goto IL_0059;
}
case 4:
{
goto IL_0059;
}
case 5:
{
goto IL_007d;
}
}
}
{
goto IL_0085;
}
IL_0059:
{
Nullable_1__ctor_m1A8E9A123DB57832E6F59440493BFC4D743DC892((&V_2), 2, Nullable_1__ctor_m1A8E9A123DB57832E6F59440493BFC4D743DC892_RuntimeMethod_var);
goto IL_0085;
}
IL_0063:
{
Nullable_1__ctor_m1A8E9A123DB57832E6F59440493BFC4D743DC892((&V_2), 1, Nullable_1__ctor_m1A8E9A123DB57832E6F59440493BFC4D743DC892_RuntimeMethod_var);
goto IL_0085;
}
IL_006d:
{
Nullable_1__ctor_m1A8E9A123DB57832E6F59440493BFC4D743DC892((&V_2), 0, Nullable_1__ctor_m1A8E9A123DB57832E6F59440493BFC4D743DC892_RuntimeMethod_var);
V_3 = _stringLiteral72E174820ED7A45081DDFEACF656A904E9EB0E4A;
goto IL_0085;
}
IL_007d:
{
Nullable_1__ctor_m1A8E9A123DB57832E6F59440493BFC4D743DC892((&V_2), 6, Nullable_1__ctor_m1A8E9A123DB57832E6F59440493BFC4D743DC892_RuntimeMethod_var);
}
IL_0085:
{
bool L_9;
L_9 = Nullable_1_get_HasValue_m6AFDA522FA5E17FDF9021A5880732A90EA2396F1_inline((&V_2), Nullable_1_get_HasValue_m6AFDA522FA5E17FDF9021A5880732A90EA2396F1_RuntimeMethod_var);
if (!L_9)
{
goto IL_00f6;
}
}
{
List_1_t03551104C97124C9D83186EEB3F066B8BFFD87E3* L_10 = __this->___Extensions_13;
NullCheck(L_10);
Enumerator_tEDDC2C241127BDEC411C60FAB649BDE614D0F9D9 L_11;
L_11 = List_1_GetEnumerator_m7A5DCD9E0FAEC1363189B45012C255D307C153FB(L_10, List_1_GetEnumerator_m7A5DCD9E0FAEC1363189B45012C255D307C153FB_RuntimeMethod_var);
V_4 = L_11;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00e8:
{// begin finally (depth: 1)
Enumerator_Dispose_mE3117C916B22646663B0F965D7370ADEBE42898C((&V_4), Enumerator_Dispose_mE3117C916B22646663B0F965D7370ADEBE42898C_RuntimeMethod_var);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_00dd_1;
}
IL_009d_1:
{
X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* L_12;
L_12 = Enumerator_get_Current_mA29E00FEF2148BD9A58CDD8F0EB5300B3AAF0ED8_inline((&V_4), Enumerator_get_Current_mA29E00FEF2148BD9A58CDD8F0EB5300B3AAF0ED8_RuntimeMethod_var);
V_5 = L_12;
X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* L_13 = V_5;
NullCheck(L_13);
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_14;
L_14 = AsnEncodedData_get_Oid_mBDB4803B2ADEE3BD40596E82FF738C2DC339BC28_inline(L_13, NULL);
NullCheck(L_14);
String_t* L_15;
L_15 = Oid_get_Value_m59D678A83ED4DE7D87FB7450C8CF4084DB506FD3_inline(L_14, NULL);
String_t* L_16 = V_1;
bool L_17;
L_17 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_15, L_16, NULL);
if (!L_17)
{
goto IL_00dd_1;
}
}
{
X509Extension_tEDB806DCCB5A652375D9CC60A7A75AE8A2F4B7E5* L_18 = V_5;
NullCheck(L_18);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_19;
L_19 = AsnEncodedData_get_RawData_m629D858D7D20E72C1F46124E5032FE0D3B32AADF_inline(L_18, NULL);
int32_t L_20;
L_20 = Nullable_1_get_Value_m733C963A26A2E37CCC7BD8D1826D4AD757701B6F((&V_2), Nullable_1_get_Value_m733C963A26A2E37CCC7BD8D1826D4AD757701B6F_RuntimeMethod_var);
String_t* L_21 = V_3;
String_t* L_22;
L_22 = CertificateData_FindAltNameMatch_mE725F81D068254CD717F42AC769E934327BA6E13(L_19, L_20, L_21, NULL);
V_6 = L_22;
String_t* L_23 = V_6;
if (!L_23)
{
goto IL_00dd_1;
}
}
{
String_t* L_24 = V_6;
V_7 = L_24;
goto IL_0177;
}
IL_00dd_1:
{
bool L_25;
L_25 = Enumerator_MoveNext_m96CF02EEDE6A41EEAD98756D29E96808A1FE5875((&V_4), Enumerator_MoveNext_m96CF02EEDE6A41EEAD98756D29E96808A1FE5875_RuntimeMethod_var);
if (L_25)
{
goto IL_009d_1;
}
}
{
goto IL_00f6;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00f6:
{
V_8 = (String_t*)NULL;
int32_t L_26 = ___nameType0;
if ((((int32_t)L_26) == ((int32_t)1)))
{
goto IL_0103;
}
}
{
int32_t L_27 = ___nameType0;
if ((((int32_t)L_27) == ((int32_t)3)))
{
goto IL_010c;
}
}
{
goto IL_0113;
}
IL_0103:
{
V_8 = _stringLiteral4BD64CDDC726EEC9781AF7725F934C659848D974;
goto IL_0113;
}
IL_010c:
{
V_8 = _stringLiteral94227CA8EB4252C21E39FE8CCB2B65A6D01D3CF1;
}
IL_0113:
{
String_t* L_28 = V_8;
if (!L_28)
{
goto IL_0171;
}
}
{
bool L_29 = ___forIssuer1;
if (L_29)
{
goto IL_0122;
}
}
{
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* L_30 = __this->___Subject_8;
G_B33_0 = L_30;
goto IL_0128;
}
IL_0122:
{
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* L_31 = __this->___Issuer_5;
G_B33_0 = L_31;
}
IL_0128:
{
RuntimeObject* L_32;
L_32 = CertificateData_ReadReverseRdns_mCC9E641803F520C0B6ABE2CF0D5D087F85E921D1(G_B33_0, NULL);
NullCheck(L_32);
RuntimeObject* L_33;
L_33 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.String,System.String>>::GetEnumerator() */, IEnumerable_1_t3C6913E067AB1171D9894C79A396D8A8E90E311B_il2cpp_TypeInfo_var, L_32);
V_9 = L_33;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0165:
{// begin finally (depth: 1)
{
RuntimeObject* L_34 = V_9;
if (!L_34)
{
goto IL_0170;
}
}
{
RuntimeObject* L_35 = V_9;
NullCheck(L_35);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_35);
}
IL_0170:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_015a_1;
}
IL_0136_1:
{
RuntimeObject* L_36 = V_9;
NullCheck(L_36);
KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A L_37;
L_37 = InterfaceFuncInvoker0< KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.String,System.String>>::get_Current() */, IEnumerator_1_t174BFB804F1D416642CD11B72858B43316D8B26D_il2cpp_TypeInfo_var, L_36);
V_10 = L_37;
String_t* L_38;
L_38 = KeyValuePair_2_get_Key_m654BCCAE2F20CB11D8E8C2D2C886A0C8A13EB1C4_inline((&V_10), KeyValuePair_2_get_Key_m654BCCAE2F20CB11D8E8C2D2C886A0C8A13EB1C4_RuntimeMethod_var);
String_t* L_39 = V_8;
bool L_40;
L_40 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_38, L_39, NULL);
if (!L_40)
{
goto IL_015a_1;
}
}
{
String_t* L_41;
L_41 = KeyValuePair_2_get_Value_m7345512A32CB4DCAA0643050B18DC8DCD71B927A_inline((&V_10), KeyValuePair_2_get_Value_m7345512A32CB4DCAA0643050B18DC8DCD71B927A_RuntimeMethod_var);
V_7 = L_41;
goto IL_0177;
}
IL_015a_1:
{
RuntimeObject* L_42 = V_9;
NullCheck(L_42);
bool L_43;
L_43 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_42);
if (L_43)
{
goto IL_0136_1;
}
}
{
goto IL_0171;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0171:
{
return _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
}
IL_0177:
{
String_t* L_44 = V_7;
return L_44;
}
}
IL2CPP_EXTERN_C String_t* CertificateData_GetNameInfo_m8DC5068DE35A32AC641DCBA45C409D05C4CE9D72_AdjustorThunk (RuntimeObject* __this, int32_t ___nameType0, bool ___forIssuer1, const RuntimeMethod* method)
{
CertificateData_t40A99242A632202B3115D05913ED12CAA78F65B1* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<CertificateData_t40A99242A632202B3115D05913ED12CAA78F65B1*>(__this + _offset);
String_t* _returnValue;
_returnValue = CertificateData_GetNameInfo_m8DC5068DE35A32AC641DCBA45C409D05C4CE9D72(_thisAdjusted, ___nameType0, ___forIssuer1, method);
return _returnValue;
}
// System.String Internal.Cryptography.Pal.CertificateData::GetSimpleNameInfo(System.Security.Cryptography.X509Certificates.X500DistinguishedName)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CertificateData_GetSimpleNameInfo_mA631A4BFF5FA74EED7E44B2398323213F4505511 (X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_t3C6913E067AB1171D9894C79A396D8A8E90E311B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t174BFB804F1D416642CD11B72858B43316D8B26D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Key_m654BCCAE2F20CB11D8E8C2D2C886A0C8A13EB1C4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Value_m7345512A32CB4DCAA0643050B18DC8DCD71B927A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4BD64CDDC726EEC9781AF7725F934C659848D974);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral94227CA8EB4252C21E39FE8CCB2B65A6D01D3CF1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral99C134A36D015746C32203B98CC495F87311D9DC);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDD381BE73F585C3796C220566E891E458F9D6290);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
String_t* V_2 = NULL;
String_t* V_3 = NULL;
RuntimeObject* V_4 = NULL;
KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A V_5;
memset((&V_5), 0, sizeof(V_5));
String_t* V_6 = NULL;
String_t* V_7 = NULL;
String_t* V_8 = NULL;
String_t* G_B22_0 = NULL;
String_t* G_B19_0 = NULL;
String_t* G_B20_0 = NULL;
String_t* G_B21_0 = NULL;
{
V_0 = (String_t*)NULL;
V_1 = (String_t*)NULL;
V_2 = (String_t*)NULL;
V_3 = (String_t*)NULL;
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* L_0 = ___name0;
RuntimeObject* L_1;
L_1 = CertificateData_ReadReverseRdns_mCC9E641803F520C0B6ABE2CF0D5D087F85E921D1(L_0, NULL);
NullCheck(L_1);
RuntimeObject* L_2;
L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.String,System.String>>::GetEnumerator() */, IEnumerable_1_t3C6913E067AB1171D9894C79A396D8A8E90E311B_il2cpp_TypeInfo_var, L_1);
V_4 = L_2;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0092:
{// begin finally (depth: 1)
{
RuntimeObject* L_3 = V_4;
if (!L_3)
{
goto IL_009d;
}
}
{
RuntimeObject* L_4 = V_4;
NullCheck(L_4);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_4);
}
IL_009d:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0087_1;
}
IL_0017_1:
{
RuntimeObject* L_5 = V_4;
NullCheck(L_5);
KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A L_6;
L_6 = InterfaceFuncInvoker0< KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.String,System.String>>::get_Current() */, IEnumerator_1_t174BFB804F1D416642CD11B72858B43316D8B26D_il2cpp_TypeInfo_var, L_5);
V_5 = L_6;
String_t* L_7;
L_7 = KeyValuePair_2_get_Key_m654BCCAE2F20CB11D8E8C2D2C886A0C8A13EB1C4_inline((&V_5), KeyValuePair_2_get_Key_m654BCCAE2F20CB11D8E8C2D2C886A0C8A13EB1C4_RuntimeMethod_var);
V_6 = L_7;
String_t* L_8;
L_8 = KeyValuePair_2_get_Value_m7345512A32CB4DCAA0643050B18DC8DCD71B927A_inline((&V_5), KeyValuePair_2_get_Value_m7345512A32CB4DCAA0643050B18DC8DCD71B927A_RuntimeMethod_var);
V_7 = L_8;
String_t* L_9 = V_6;
bool L_10;
L_10 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_9, _stringLiteral94227CA8EB4252C21E39FE8CCB2B65A6D01D3CF1, NULL);
if (L_10)
{
goto IL_006c_1;
}
}
{
String_t* L_11 = V_6;
bool L_12;
L_12 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_11, _stringLiteral99C134A36D015746C32203B98CC495F87311D9DC, NULL);
if (L_12)
{
goto IL_0072_1;
}
}
{
String_t* L_13 = V_6;
bool L_14;
L_14 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_13, _stringLiteralDD381BE73F585C3796C220566E891E458F9D6290, NULL);
if (L_14)
{
goto IL_0077_1;
}
}
{
String_t* L_15 = V_6;
bool L_16;
L_16 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_15, _stringLiteral4BD64CDDC726EEC9781AF7725F934C659848D974, NULL);
if (L_16)
{
goto IL_007c_1;
}
}
{
goto IL_0081_1;
}
IL_006c_1:
{
String_t* L_17 = V_7;
V_8 = L_17;
goto IL_00af;
}
IL_0072_1:
{
String_t* L_18 = V_7;
V_0 = L_18;
goto IL_0087_1;
}
IL_0077_1:
{
String_t* L_19 = V_7;
V_1 = L_19;
goto IL_0087_1;
}
IL_007c_1:
{
String_t* L_20 = V_7;
V_2 = L_20;
goto IL_0087_1;
}
IL_0081_1:
{
String_t* L_21 = V_3;
if (L_21)
{
goto IL_0087_1;
}
}
{
String_t* L_22 = V_7;
V_3 = L_22;
}
IL_0087_1:
{
RuntimeObject* L_23 = V_4;
NullCheck(L_23);
bool L_24;
L_24 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_23);
if (L_24)
{
goto IL_0017_1;
}
}
{
goto IL_009e;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_009e:
{
String_t* L_25 = V_0;
String_t* L_26 = L_25;
G_B19_0 = L_26;
if (L_26)
{
G_B22_0 = L_26;
goto IL_00ae;
}
}
{
String_t* L_27 = V_1;
String_t* L_28 = L_27;
G_B20_0 = L_28;
if (L_28)
{
G_B22_0 = L_28;
goto IL_00ae;
}
}
{
String_t* L_29 = V_2;
String_t* L_30 = L_29;
G_B21_0 = L_30;
if (L_30)
{
G_B22_0 = L_30;
goto IL_00ae;
}
}
{
String_t* L_31 = V_3;
G_B22_0 = L_31;
}
IL_00ae:
{
return G_B22_0;
}
IL_00af:
{
String_t* L_32 = V_8;
return L_32;
}
}
// System.String Internal.Cryptography.Pal.CertificateData::FindAltNameMatch(System.Byte[],Internal.Cryptography.Pal.GeneralNameType,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CertificateData_FindAltNameMatch_mE725F81D068254CD717F42AC769E934327BA6E13 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___extensionBytes0, int32_t ___matchType1, String_t* ___otherOid2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
uint8_t V_0 = 0x0;
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* V_1 = NULL;
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* V_2 = NULL;
{
int32_t L_0 = ___matchType1;
V_0 = (uint8_t)((int32_t)(uint8_t)((int32_t)(((int32_t)128)|((int32_t)(uint8_t)L_0))));
int32_t L_1 = ___matchType1;
if (L_1)
{
goto IL_0013;
}
}
{
uint8_t L_2 = V_0;
V_0 = (uint8_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_2|((int32_t)32))));
}
IL_0013:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = ___extensionBytes0;
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_4 = (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A*)il2cpp_codegen_object_new(DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A_il2cpp_TypeInfo_var);
NullCheck(L_4);
DerSequenceReader__ctor_m899D7771F7F469E94812F8EB9BB0A75A0BE69CBD(L_4, L_3, NULL);
V_1 = L_4;
goto IL_0099;
}
IL_001c:
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_5 = V_1;
NullCheck(L_5);
uint8_t L_6;
L_6 = DerSequenceReader_PeekTag_mC22E34353BE4B4C5CE3579AE64B220263C159C8B(L_5, NULL);
uint8_t L_7 = V_0;
if ((((int32_t)L_6) == ((int32_t)L_7)))
{
goto IL_002d;
}
}
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_8 = V_1;
NullCheck(L_8);
DerSequenceReader_SkipValue_m0F715CE70FF6EDD8575359FDC2E8ADBAC72FFACE(L_8, NULL);
goto IL_0099;
}
IL_002d:
{
int32_t L_9 = ___matchType1;
switch (L_9)
{
case 0:
{
goto IL_0051;
}
case 1:
{
goto IL_008c;
}
case 2:
{
goto IL_008c;
}
case 3:
{
goto IL_0093;
}
case 4:
{
goto IL_0093;
}
case 5:
{
goto IL_0093;
}
case 6:
{
goto IL_008c;
}
}
}
{
goto IL_0093;
}
IL_0051:
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_10 = V_1;
NullCheck(L_10);
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_11;
L_11 = DerSequenceReader_ReadSequence_m97DF1A79453D57FB5DB012273F34213180921AB4(L_10, NULL);
V_2 = L_11;
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_12 = V_2;
NullCheck(L_12);
String_t* L_13;
L_13 = DerSequenceReader_ReadOidAsString_m53E76684261C012927DE60E2A8A5A4ECC6B33198(L_12, NULL);
String_t* L_14 = ___otherOid2;
bool L_15;
L_15 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_13, L_14, NULL);
if (!L_15)
{
goto IL_0099;
}
}
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_16 = V_2;
NullCheck(L_16);
uint8_t L_17;
L_17 = DerSequenceReader_PeekTag_mC22E34353BE4B4C5CE3579AE64B220263C159C8B(L_16, NULL);
if ((((int32_t)L_17) == ((int32_t)((int32_t)160))))
{
goto IL_007e;
}
}
{
CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F* L_18 = (CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CryptographicException_tF1AE59E97557B5241330D5998C4D95B6D9D6669F_il2cpp_TypeInfo_var)));
NullCheck(L_18);
CryptographicException__ctor_mE3E5B505DB6A9D573C48AC5BD702E7CF3DE8F01F(L_18, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF6493B5A7C367827A5C3A31F49B5FCEF486E5576)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CertificateData_FindAltNameMatch_mE725F81D068254CD717F42AC769E934327BA6E13_RuntimeMethod_var)));
}
IL_007e:
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_19 = V_2;
NullCheck(L_19);
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_20;
L_20 = DerSequenceReader_ReadSequence_m97DF1A79453D57FB5DB012273F34213180921AB4(L_19, NULL);
V_2 = L_20;
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_21 = V_2;
NullCheck(L_21);
String_t* L_22;
L_22 = DerSequenceReader_ReadUtf8String_m695D8EC313847638A5E9FCB3B036B3AD4A73DB83(L_21, NULL);
return L_22;
}
IL_008c:
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_23 = V_1;
NullCheck(L_23);
String_t* L_24;
L_24 = DerSequenceReader_ReadIA5String_m0C23F1CCD96F9F4BD97A43459D1839BDFD1EAB40(L_23, NULL);
return L_24;
}
IL_0093:
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_25 = V_1;
NullCheck(L_25);
DerSequenceReader_SkipValue_m0F715CE70FF6EDD8575359FDC2E8ADBAC72FFACE(L_25, NULL);
}
IL_0099:
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_26 = V_1;
NullCheck(L_26);
bool L_27;
L_27 = DerSequenceReader_get_HasData_mD6CE45854665F68A82771427FF58DDF7632D6A31(L_26, NULL);
if (L_27)
{
goto IL_001c;
}
}
{
return (String_t*)NULL;
}
}
// System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.String,System.String>> Internal.Cryptography.Pal.CertificateData::ReadReverseRdns(System.Security.Cryptography.X509Certificates.X500DistinguishedName)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CertificateData_ReadReverseRdns_mCC9E641803F520C0B6ABE2CF0D5D087F85E921D1 (X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CReadReverseRdnsU3Ed__21_t6DC5309953340D6F3CAF345220E2D0AAD878D3DE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
U3CReadReverseRdnsU3Ed__21_t6DC5309953340D6F3CAF345220E2D0AAD878D3DE* L_0 = (U3CReadReverseRdnsU3Ed__21_t6DC5309953340D6F3CAF345220E2D0AAD878D3DE*)il2cpp_codegen_object_new(U3CReadReverseRdnsU3Ed__21_t6DC5309953340D6F3CAF345220E2D0AAD878D3DE_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CReadReverseRdnsU3Ed__21__ctor_m5A6BC49C73B7B87A9A4400C6B15A6B08990A46D4(L_0, ((int32_t)-2), NULL);
U3CReadReverseRdnsU3Ed__21_t6DC5309953340D6F3CAF345220E2D0AAD878D3DE* L_1 = L_0;
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* L_2 = ___name0;
NullCheck(L_1);
L_1->___U3CU3E3__name_4 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&L_1->___U3CU3E3__name_4), (void*)L_2);
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
// Conversion methods for marshalling of: Internal.Cryptography.Pal.CertificateData/AlgorithmIdentifier
IL2CPP_EXTERN_C void AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8_marshal_pinvoke(const AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8& unmarshaled, AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8_marshaled_pinvoke& marshaled)
{
marshaled.___AlgorithmId_0 = il2cpp_codegen_marshal_string(unmarshaled.___AlgorithmId_0);
marshaled.___Parameters_1 = il2cpp_codegen_com_marshal_safe_array(IL2CPP_VT_I1, unmarshaled.___Parameters_1);
}
IL2CPP_EXTERN_C void AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8_marshal_pinvoke_back(const AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8_marshaled_pinvoke& marshaled, AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8& unmarshaled)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
unmarshaled.___AlgorithmId_0 = il2cpp_codegen_marshal_string_result(marshaled.___AlgorithmId_0);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___AlgorithmId_0), (void*)il2cpp_codegen_marshal_string_result(marshaled.___AlgorithmId_0));
unmarshaled.___Parameters_1 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)il2cpp_codegen_com_marshal_safe_array_result(IL2CPP_VT_I1, Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var, marshaled.___Parameters_1);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___Parameters_1), (void*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)il2cpp_codegen_com_marshal_safe_array_result(IL2CPP_VT_I1, Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var, marshaled.___Parameters_1));
}
// Conversion method for clean up from marshalling of: Internal.Cryptography.Pal.CertificateData/AlgorithmIdentifier
IL2CPP_EXTERN_C void AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8_marshal_pinvoke_cleanup(AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8_marshaled_pinvoke& marshaled)
{
il2cpp_codegen_marshal_free(marshaled.___AlgorithmId_0);
marshaled.___AlgorithmId_0 = NULL;
il2cpp_codegen_com_destroy_safe_array(marshaled.___Parameters_1);
marshaled.___Parameters_1 = NULL;
}
// Conversion methods for marshalling of: Internal.Cryptography.Pal.CertificateData/AlgorithmIdentifier
IL2CPP_EXTERN_C void AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8_marshal_com(const AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8& unmarshaled, AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8_marshaled_com& marshaled)
{
marshaled.___AlgorithmId_0 = il2cpp_codegen_marshal_bstring(unmarshaled.___AlgorithmId_0);
marshaled.___Parameters_1 = il2cpp_codegen_com_marshal_safe_array(IL2CPP_VT_I1, unmarshaled.___Parameters_1);
}
IL2CPP_EXTERN_C void AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8_marshal_com_back(const AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8_marshaled_com& marshaled, AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8& unmarshaled)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
unmarshaled.___AlgorithmId_0 = il2cpp_codegen_marshal_bstring_result(marshaled.___AlgorithmId_0);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___AlgorithmId_0), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___AlgorithmId_0));
unmarshaled.___Parameters_1 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)il2cpp_codegen_com_marshal_safe_array_result(IL2CPP_VT_I1, Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var, marshaled.___Parameters_1);
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___Parameters_1), (void*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)il2cpp_codegen_com_marshal_safe_array_result(IL2CPP_VT_I1, Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var, marshaled.___Parameters_1));
}
// Conversion method for clean up from marshalling of: Internal.Cryptography.Pal.CertificateData/AlgorithmIdentifier
IL2CPP_EXTERN_C void AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8_marshal_com_cleanup(AlgorithmIdentifier_tCF880F72315F1725C33F59BB2F5D213BB22275A8_marshaled_com& marshaled)
{
il2cpp_codegen_marshal_free_bstring(marshaled.___AlgorithmId_0);
marshaled.___AlgorithmId_0 = NULL;
il2cpp_codegen_com_destroy_safe_array(marshaled.___Parameters_1);
marshaled.___Parameters_1 = NULL;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Internal.Cryptography.Pal.CertificateData/<ReadReverseRdns>d__21::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CReadReverseRdnsU3Ed__21__ctor_m5A6BC49C73B7B87A9A4400C6B15A6B08990A46D4 (U3CReadReverseRdnsU3Ed__21_t6DC5309953340D6F3CAF345220E2D0AAD878D3DE* __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
int32_t L_0 = ___U3CU3E1__state0;
__this->___U3CU3E1__state_0 = L_0;
int32_t L_1;
L_1 = Environment_get_CurrentManagedThreadId_mEC09D20ED666BC3277AC9D16B68AA287E5AFE1B2(NULL);
__this->___U3CU3El__initialThreadId_2 = L_1;
return;
}
}
// System.Void Internal.Cryptography.Pal.CertificateData/<ReadReverseRdns>d__21::System.IDisposable.Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CReadReverseRdnsU3Ed__21_System_IDisposable_Dispose_mDB6F5E4B3207652BEAED7B42745D734D10C5249C (U3CReadReverseRdnsU3Ed__21_t6DC5309953340D6F3CAF345220E2D0AAD878D3DE* __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean Internal.Cryptography.Pal.CertificateData/<ReadReverseRdns>d__21::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CReadReverseRdnsU3Ed__21_MoveNext_m9D224CA977CE0147564D800919EBB3CA3584DAC4 (U3CReadReverseRdnsU3Ed__21_t6DC5309953340D6F3CAF345220E2D0AAD878D3DE* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2__ctor_mC76BE8DEB14377BA47C72BDFC7D0BBD37330F36B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Pop_mA225FBFDEBE168ED6B5F61FE26BE0928C811DAEC_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Push_m832BCA0F46EB98AC526A5C83B72052B42AC95700_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1__ctor_m97F2A92FF6F7604D68938DC3EF357C66110095FA_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_get_Count_mB64185B733D3D0A76BAD2E085B9F815786E4CC5D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_t11FC055BC8A112A4D3474F6FA0DCAC26D397C08C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* V_1 = NULL;
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* V_2 = NULL;
String_t* V_3 = NULL;
uint8_t V_4 = 0;
String_t* V_5 = NULL;
{
int32_t L_0 = __this->___U3CU3E1__state_0;
V_0 = L_0;
int32_t L_1 = V_0;
if (!L_1)
{
goto IL_0013;
}
}
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)1)))
{
goto IL_00fb;
}
}
{
return (bool)0;
}
IL_0013:
{
__this->___U3CU3E1__state_0 = (-1);
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* L_3 = __this->___name_3;
NullCheck(L_3);
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4;
L_4 = AsnEncodedData_get_RawData_m629D858D7D20E72C1F46124E5032FE0D3B32AADF_inline(L_3, NULL);
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_5 = (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A*)il2cpp_codegen_object_new(DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A_il2cpp_TypeInfo_var);
NullCheck(L_5);
DerSequenceReader__ctor_m899D7771F7F469E94812F8EB9BB0A75A0BE69CBD(L_5, L_4, NULL);
V_1 = L_5;
Stack_1_t11FC055BC8A112A4D3474F6FA0DCAC26D397C08C* L_6 = (Stack_1_t11FC055BC8A112A4D3474F6FA0DCAC26D397C08C*)il2cpp_codegen_object_new(Stack_1_t11FC055BC8A112A4D3474F6FA0DCAC26D397C08C_il2cpp_TypeInfo_var);
NullCheck(L_6);
Stack_1__ctor_m97F2A92FF6F7604D68938DC3EF357C66110095FA(L_6, Stack_1__ctor_m97F2A92FF6F7604D68938DC3EF357C66110095FA_RuntimeMethod_var);
__this->___U3CrdnReadersU3E5__2_5 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CrdnReadersU3E5__2_5), (void*)L_6);
goto IL_0049;
}
IL_0038:
{
Stack_1_t11FC055BC8A112A4D3474F6FA0DCAC26D397C08C* L_7 = __this->___U3CrdnReadersU3E5__2_5;
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_8 = V_1;
NullCheck(L_8);
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_9;
L_9 = DerSequenceReader_ReadSet_mB2770ADE8AF6F651659562AEF5B8F247619641FF(L_8, NULL);
NullCheck(L_7);
Stack_1_Push_m832BCA0F46EB98AC526A5C83B72052B42AC95700(L_7, L_9, Stack_1_Push_m832BCA0F46EB98AC526A5C83B72052B42AC95700_RuntimeMethod_var);
}
IL_0049:
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_10 = V_1;
NullCheck(L_10);
bool L_11;
L_11 = DerSequenceReader_get_HasData_mD6CE45854665F68A82771427FF58DDF7632D6A31(L_10, NULL);
if (L_11)
{
goto IL_0038;
}
}
{
goto IL_0119;
}
IL_0056:
{
Stack_1_t11FC055BC8A112A4D3474F6FA0DCAC26D397C08C* L_12 = __this->___U3CrdnReadersU3E5__2_5;
NullCheck(L_12);
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_13;
L_13 = Stack_1_Pop_mA225FBFDEBE168ED6B5F61FE26BE0928C811DAEC(L_12, Stack_1_Pop_mA225FBFDEBE168ED6B5F61FE26BE0928C811DAEC_RuntimeMethod_var);
__this->___U3CrdnReaderU3E5__3_6 = L_13;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CrdnReaderU3E5__3_6), (void*)L_13);
goto IL_0102;
}
IL_006c:
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_14 = __this->___U3CrdnReaderU3E5__3_6;
NullCheck(L_14);
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_15;
L_15 = DerSequenceReader_ReadSequence_m97DF1A79453D57FB5DB012273F34213180921AB4(L_14, NULL);
V_2 = L_15;
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_16 = V_2;
NullCheck(L_16);
String_t* L_17;
L_17 = DerSequenceReader_ReadOidAsString_m53E76684261C012927DE60E2A8A5A4ECC6B33198(L_16, NULL);
V_3 = L_17;
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_18 = V_2;
NullCheck(L_18);
uint8_t L_19;
L_19 = DerSequenceReader_PeekTag_mC22E34353BE4B4C5CE3579AE64B220263C159C8B(L_18, NULL);
V_4 = L_19;
V_5 = (String_t*)NULL;
uint8_t L_20 = V_4;
if ((((int32_t)L_20) == ((int32_t)((int32_t)12))))
{
goto IL_00ce;
}
}
{
uint8_t L_21 = V_4;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_21, ((int32_t)19))))
{
case 0:
{
goto IL_00c4;
}
case 1:
{
goto IL_00d8;
}
case 2:
{
goto IL_00e0;
}
case 3:
{
goto IL_00ba;
}
}
}
{
uint8_t L_22 = V_4;
if ((!(((uint32_t)L_22) == ((uint32_t)((int32_t)30)))))
{
goto IL_00e0;
}
}
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_23 = V_2;
NullCheck(L_23);
String_t* L_24;
L_24 = DerSequenceReader_ReadBMPString_m6AD51BC4D16BF2659A5F0D197A0A2F184D36375E(L_23, NULL);
V_5 = L_24;
goto IL_00e0;
}
IL_00ba:
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_25 = V_2;
NullCheck(L_25);
String_t* L_26;
L_26 = DerSequenceReader_ReadIA5String_m0C23F1CCD96F9F4BD97A43459D1839BDFD1EAB40(L_25, NULL);
V_5 = L_26;
goto IL_00e0;
}
IL_00c4:
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_27 = V_2;
NullCheck(L_27);
String_t* L_28;
L_28 = DerSequenceReader_ReadPrintableString_m9ED84D1BD26B7DB18C047355BD2011CAFC2E72FE(L_27, NULL);
V_5 = L_28;
goto IL_00e0;
}
IL_00ce:
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_29 = V_2;
NullCheck(L_29);
String_t* L_30;
L_30 = DerSequenceReader_ReadUtf8String_m695D8EC313847638A5E9FCB3B036B3AD4A73DB83(L_29, NULL);
V_5 = L_30;
goto IL_00e0;
}
IL_00d8:
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_31 = V_2;
NullCheck(L_31);
String_t* L_32;
L_32 = DerSequenceReader_ReadT61String_m30F888297CE3E176BE97EE993BA1FA945607999E(L_31, NULL);
V_5 = L_32;
}
IL_00e0:
{
String_t* L_33 = V_5;
if (!L_33)
{
goto IL_0102;
}
}
{
String_t* L_34 = V_3;
String_t* L_35 = V_5;
KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A L_36;
memset((&L_36), 0, sizeof(L_36));
KeyValuePair_2__ctor_mC76BE8DEB14377BA47C72BDFC7D0BBD37330F36B((&L_36), L_34, L_35, /*hidden argument*/KeyValuePair_2__ctor_mC76BE8DEB14377BA47C72BDFC7D0BBD37330F36B_RuntimeMethod_var);
__this->___U3CU3E2__current_1 = L_36;
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3E2__current_1))->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CU3E2__current_1))->___value_1), (void*)NULL);
#endif
__this->___U3CU3E1__state_0 = 1;
return (bool)1;
}
IL_00fb:
{
__this->___U3CU3E1__state_0 = (-1);
}
IL_0102:
{
DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A* L_37 = __this->___U3CrdnReaderU3E5__3_6;
NullCheck(L_37);
bool L_38;
L_38 = DerSequenceReader_get_HasData_mD6CE45854665F68A82771427FF58DDF7632D6A31(L_37, NULL);
if (L_38)
{
goto IL_006c;
}
}
{
__this->___U3CrdnReaderU3E5__3_6 = (DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CrdnReaderU3E5__3_6), (void*)(DerSequenceReader_tE6BA1C28D31B7F21AFC1A327DD7BBC028041308A*)NULL);
}
IL_0119:
{
Stack_1_t11FC055BC8A112A4D3474F6FA0DCAC26D397C08C* L_39 = __this->___U3CrdnReadersU3E5__2_5;
NullCheck(L_39);
int32_t L_40;
L_40 = Stack_1_get_Count_mB64185B733D3D0A76BAD2E085B9F815786E4CC5D_inline(L_39, Stack_1_get_Count_mB64185B733D3D0A76BAD2E085B9F815786E4CC5D_RuntimeMethod_var);
if ((((int32_t)L_40) > ((int32_t)0)))
{
goto IL_0056;
}
}
{
return (bool)0;
}
}
// System.Collections.Generic.KeyValuePair`2<System.String,System.String> Internal.Cryptography.Pal.CertificateData/<ReadReverseRdns>d__21::System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<System.String,System.String>>.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A U3CReadReverseRdnsU3Ed__21_System_Collections_Generic_IEnumeratorU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CSystem_StringU3EU3E_get_Current_mF0FA23744F644CF1371214864DD2A43728064474 (U3CReadReverseRdnsU3Ed__21_t6DC5309953340D6F3CAF345220E2D0AAD878D3DE* __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A L_0 = __this->___U3CU3E2__current_1;
return L_0;
}
}
// System.Void Internal.Cryptography.Pal.CertificateData/<ReadReverseRdns>d__21::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CReadReverseRdnsU3Ed__21_System_Collections_IEnumerator_Reset_m14F8B978364B8DDAC56367B68EEA3D7C06732564 (U3CReadReverseRdnsU3Ed__21_t6DC5309953340D6F3CAF345220E2D0AAD878D3DE* __this, const RuntimeMethod* method)
{
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
NullCheck(L_0);
NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF(L_0, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CReadReverseRdnsU3Ed__21_System_Collections_IEnumerator_Reset_m14F8B978364B8DDAC56367B68EEA3D7C06732564_RuntimeMethod_var)));
}
}
// System.Object Internal.Cryptography.Pal.CertificateData/<ReadReverseRdns>d__21::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CReadReverseRdnsU3Ed__21_System_Collections_IEnumerator_get_Current_m3CA95125EAEEBACD8685B90E65831D0B4B69EAA7 (U3CReadReverseRdnsU3Ed__21_t6DC5309953340D6F3CAF345220E2D0AAD878D3DE* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A L_0 = __this->___U3CU3E2__current_1;
KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A L_1 = L_0;
RuntimeObject* L_2 = Box(KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A_il2cpp_TypeInfo_var, &L_1);
return L_2;
}
}
// System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.String,System.String>> Internal.Cryptography.Pal.CertificateData/<ReadReverseRdns>d__21::System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.String,System.String>>.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CReadReverseRdnsU3Ed__21_System_Collections_Generic_IEnumerableU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CSystem_StringU3EU3E_GetEnumerator_m19CB560BFA57F0DD069DCCA4F99AA3A67CEB5427 (U3CReadReverseRdnsU3Ed__21_t6DC5309953340D6F3CAF345220E2D0AAD878D3DE* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CReadReverseRdnsU3Ed__21_t6DC5309953340D6F3CAF345220E2D0AAD878D3DE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CReadReverseRdnsU3Ed__21_t6DC5309953340D6F3CAF345220E2D0AAD878D3DE* V_0 = NULL;
{
int32_t L_0 = __this->___U3CU3E1__state_0;
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0022;
}
}
{
int32_t L_1 = __this->___U3CU3El__initialThreadId_2;
int32_t L_2;
L_2 = Environment_get_CurrentManagedThreadId_mEC09D20ED666BC3277AC9D16B68AA287E5AFE1B2(NULL);
if ((!(((uint32_t)L_1) == ((uint32_t)L_2))))
{
goto IL_0022;
}
}
{
__this->___U3CU3E1__state_0 = 0;
V_0 = __this;
goto IL_0029;
}
IL_0022:
{
U3CReadReverseRdnsU3Ed__21_t6DC5309953340D6F3CAF345220E2D0AAD878D3DE* L_3 = (U3CReadReverseRdnsU3Ed__21_t6DC5309953340D6F3CAF345220E2D0AAD878D3DE*)il2cpp_codegen_object_new(U3CReadReverseRdnsU3Ed__21_t6DC5309953340D6F3CAF345220E2D0AAD878D3DE_il2cpp_TypeInfo_var);
NullCheck(L_3);
U3CReadReverseRdnsU3Ed__21__ctor_m5A6BC49C73B7B87A9A4400C6B15A6B08990A46D4(L_3, 0, NULL);
V_0 = L_3;
}
IL_0029:
{
U3CReadReverseRdnsU3Ed__21_t6DC5309953340D6F3CAF345220E2D0AAD878D3DE* L_4 = V_0;
X500DistinguishedName_t53976A4567E82199856DAD47D3850F8EECABDAF6* L_5 = __this->___U3CU3E3__name_4;
NullCheck(L_4);
L_4->___name_3 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&L_4->___name_3), (void*)L_5);
U3CReadReverseRdnsU3Ed__21_t6DC5309953340D6F3CAF345220E2D0AAD878D3DE* L_6 = V_0;
return L_6;
}
}
// System.Collections.IEnumerator Internal.Cryptography.Pal.CertificateData/<ReadReverseRdns>d__21::System.Collections.IEnumerable.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CReadReverseRdnsU3Ed__21_System_Collections_IEnumerable_GetEnumerator_mA9604E14B40705140F1AD16409F6716BDF3BFF08 (U3CReadReverseRdnsU3Ed__21_t6DC5309953340D6F3CAF345220E2D0AAD878D3DE* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0;
L_0 = U3CReadReverseRdnsU3Ed__21_System_Collections_Generic_IEnumerableU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CSystem_StringU3EU3E_GetEnumerator_m19CB560BFA57F0DD069DCCA4F99AA3A67CEB5427(__this, 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.Boolean Microsoft.Win32.NativeMethods::DuplicateHandle(System.Runtime.InteropServices.HandleRef,System.Runtime.InteropServices.SafeHandle,System.Runtime.InteropServices.HandleRef,Microsoft.Win32.SafeHandles.SafeWaitHandle&,System.Int32,System.Boolean,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NativeMethods_DuplicateHandle_m7D1F5D03EF5254E9B4B670BDECD2EDEF7AA0B00D (HandleRef_t4B05E32B68797F702257D4E838B85A976313F08F ___hSourceProcessHandle0, SafeHandle_tC1A4DA80DA89B867CC011B707A07275230321BF7* ___hSourceHandle1, HandleRef_t4B05E32B68797F702257D4E838B85A976313F08F ___hTargetProcess2, SafeWaitHandle_t58F5662CD56F6462A687198A64987F8980804449** ___targetHandle3, int32_t ___dwDesiredAccess4, bool ___bInheritHandle5, int32_t ___dwOptions6, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MonoIO_t4111700E5C2D38E1B55C916719E4CB725CBE5FC7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SafeWaitHandle_t58F5662CD56F6462A687198A64987F8980804449_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
intptr_t V_2;
memset((&V_2), 0, sizeof(V_2));
bool V_3 = false;
int32_t G_B3_0 = 0;
intptr_t* G_B3_1 = NULL;
intptr_t G_B3_2;
memset((&G_B3_2), 0, sizeof(G_B3_2));
intptr_t G_B3_3;
memset((&G_B3_3), 0, sizeof(G_B3_3));
intptr_t G_B3_4;
memset((&G_B3_4), 0, sizeof(G_B3_4));
int32_t G_B2_0 = 0;
intptr_t* G_B2_1 = NULL;
intptr_t G_B2_2;
memset((&G_B2_2), 0, sizeof(G_B2_2));
intptr_t G_B2_3;
memset((&G_B2_3), 0, sizeof(G_B2_3));
intptr_t G_B2_4;
memset((&G_B2_4), 0, sizeof(G_B2_4));
int32_t G_B4_0 = 0;
int32_t G_B4_1 = 0;
intptr_t* G_B4_2 = NULL;
intptr_t G_B4_3;
memset((&G_B4_3), 0, sizeof(G_B4_3));
intptr_t G_B4_4;
memset((&G_B4_4), 0, sizeof(G_B4_4));
intptr_t G_B4_5;
memset((&G_B4_5), 0, sizeof(G_B4_5));
bool G_B6_0 = false;
bool G_B5_0 = false;
{
V_0 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0049:
{// begin finally (depth: 1)
{
bool L_0 = V_0;
if (!L_0)
{
goto IL_0052;
}
}
{
SafeHandle_tC1A4DA80DA89B867CC011B707A07275230321BF7* L_1 = ___hSourceHandle1;
NullCheck(L_1);
SafeHandle_DangerousRelease_m30A8B4E5BEA935C8925BC2115CD0AD13B937953E(L_1, NULL);
}
IL_0052:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
SafeHandle_tC1A4DA80DA89B867CC011B707A07275230321BF7* L_2 = ___hSourceHandle1;
NullCheck(L_2);
SafeHandle_DangerousAddRef_m9FA46208A92D8B33059B8E8712F49AE45BB5E922(L_2, (&V_0), NULL);
intptr_t L_3;
L_3 = HandleRef_get_Handle_m2055005E349E895499E1B3B826C89228FFAC4C17_inline((&___hSourceProcessHandle0), NULL);
SafeHandle_tC1A4DA80DA89B867CC011B707A07275230321BF7* L_4 = ___hSourceHandle1;
NullCheck(L_4);
intptr_t L_5;
L_5 = SafeHandle_DangerousGetHandle_mE7CB3F36EE7BB2E2623EF316C4B43D1CA44B7F9C_inline(L_4, NULL);
intptr_t L_6;
L_6 = HandleRef_get_Handle_m2055005E349E895499E1B3B826C89228FFAC4C17_inline((&___hTargetProcess2), NULL);
int32_t L_7 = ___dwDesiredAccess4;
bool L_8 = ___bInheritHandle5;
G_B2_0 = L_7;
G_B2_1 = (&V_2);
G_B2_2 = L_6;
G_B2_3 = L_5;
G_B2_4 = L_3;
if (L_8)
{
G_B3_0 = L_7;
G_B3_1 = (&V_2);
G_B3_2 = L_6;
G_B3_3 = L_5;
G_B3_4 = L_3;
goto IL_0029_1;
}
}
{
G_B4_0 = 0;
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_002a_1;
}
IL_0029_1:
{
G_B4_0 = 1;
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_002a_1:
{
int32_t L_9 = ___dwOptions6;
il2cpp_codegen_runtime_class_init_inline(MonoIO_t4111700E5C2D38E1B55C916719E4CB725CBE5FC7_il2cpp_TypeInfo_var);
bool L_10;
L_10 = MonoIO_DuplicateHandle_m2BB9CDF1578D80E0FCFA1199E13EC6C1E9855E98(G_B4_5, G_B4_4, G_B4_3, G_B4_2, G_B4_1, G_B4_0, L_9, (&V_1), NULL);
int32_t L_11 = V_1;
G_B5_0 = L_10;
if (!L_11)
{
G_B6_0 = L_10;
goto IL_003d_1;
}
}
{
int32_t L_12 = V_1;
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MonoIO_t4111700E5C2D38E1B55C916719E4CB725CBE5FC7_il2cpp_TypeInfo_var)));
Exception_t* L_13;
L_13 = MonoIO_GetException_m83962CC85B25CF192D37583E53A43F8FFE909F9E(L_12, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NativeMethods_DuplicateHandle_m7D1F5D03EF5254E9B4B670BDECD2EDEF7AA0B00D_RuntimeMethod_var)));
}
IL_003d_1:
{
SafeWaitHandle_t58F5662CD56F6462A687198A64987F8980804449** L_14 = ___targetHandle3;
intptr_t L_15 = V_2;
SafeWaitHandle_t58F5662CD56F6462A687198A64987F8980804449* L_16 = (SafeWaitHandle_t58F5662CD56F6462A687198A64987F8980804449*)il2cpp_codegen_object_new(SafeWaitHandle_t58F5662CD56F6462A687198A64987F8980804449_il2cpp_TypeInfo_var);
NullCheck(L_16);
SafeWaitHandle__ctor_m6CA082DF779C0BAAA7EEDE99BB2ECF1ECDB579DA(L_16, L_15, (bool)1, NULL);
*((RuntimeObject**)L_14) = (RuntimeObject*)L_16;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_14, (void*)(RuntimeObject*)L_16);
V_3 = G_B6_0;
goto IL_0053;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0053:
{
bool L_17 = V_3;
return L_17;
}
}
// System.Boolean Microsoft.Win32.NativeMethods::DuplicateHandle(System.Runtime.InteropServices.HandleRef,System.Runtime.InteropServices.HandleRef,System.Runtime.InteropServices.HandleRef,Microsoft.Win32.SafeHandles.SafeProcessHandle&,System.Int32,System.Boolean,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NativeMethods_DuplicateHandle_m5C21EA8CF525CF8393A163DC71A4C77790F5B706 (HandleRef_t4B05E32B68797F702257D4E838B85A976313F08F ___hSourceProcessHandle0, HandleRef_t4B05E32B68797F702257D4E838B85A976313F08F ___hSourceHandle1, HandleRef_t4B05E32B68797F702257D4E838B85A976313F08F ___hTargetProcess2, SafeProcessHandle_tA260D4420C5F481A5DA030FFB19D038BBF8A63CB** ___targetHandle3, int32_t ___dwDesiredAccess4, bool ___bInheritHandle5, int32_t ___dwOptions6, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MonoIO_t4111700E5C2D38E1B55C916719E4CB725CBE5FC7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SafeProcessHandle_tA260D4420C5F481A5DA030FFB19D038BBF8A63CB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
intptr_t V_1;
memset((&V_1), 0, sizeof(V_1));
int32_t G_B2_0 = 0;
intptr_t* G_B2_1 = NULL;
intptr_t G_B2_2;
memset((&G_B2_2), 0, sizeof(G_B2_2));
intptr_t G_B2_3;
memset((&G_B2_3), 0, sizeof(G_B2_3));
intptr_t G_B2_4;
memset((&G_B2_4), 0, sizeof(G_B2_4));
int32_t G_B1_0 = 0;
intptr_t* G_B1_1 = NULL;
intptr_t G_B1_2;
memset((&G_B1_2), 0, sizeof(G_B1_2));
intptr_t G_B1_3;
memset((&G_B1_3), 0, sizeof(G_B1_3));
intptr_t G_B1_4;
memset((&G_B1_4), 0, sizeof(G_B1_4));
int32_t G_B3_0 = 0;
int32_t G_B3_1 = 0;
intptr_t* G_B3_2 = NULL;
intptr_t G_B3_3;
memset((&G_B3_3), 0, sizeof(G_B3_3));
intptr_t G_B3_4;
memset((&G_B3_4), 0, sizeof(G_B3_4));
intptr_t G_B3_5;
memset((&G_B3_5), 0, sizeof(G_B3_5));
bool G_B5_0 = false;
bool G_B4_0 = false;
{
intptr_t L_0;
L_0 = HandleRef_get_Handle_m2055005E349E895499E1B3B826C89228FFAC4C17_inline((&___hSourceProcessHandle0), NULL);
intptr_t L_1;
L_1 = HandleRef_get_Handle_m2055005E349E895499E1B3B826C89228FFAC4C17_inline((&___hSourceHandle1), NULL);
intptr_t L_2;
L_2 = HandleRef_get_Handle_m2055005E349E895499E1B3B826C89228FFAC4C17_inline((&___hTargetProcess2), NULL);
int32_t L_3 = ___dwDesiredAccess4;
bool L_4 = ___bInheritHandle5;
G_B1_0 = L_3;
G_B1_1 = (&V_1);
G_B1_2 = L_2;
G_B1_3 = L_1;
G_B1_4 = L_0;
if (L_4)
{
G_B2_0 = L_3;
G_B2_1 = (&V_1);
G_B2_2 = L_2;
G_B2_3 = L_1;
G_B2_4 = L_0;
goto IL_0020;
}
}
{
G_B3_0 = 0;
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
G_B3_3 = G_B1_2;
G_B3_4 = G_B1_3;
G_B3_5 = G_B1_4;
goto IL_0021;
}
IL_0020:
{
G_B3_0 = 1;
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
G_B3_3 = G_B2_2;
G_B3_4 = G_B2_3;
G_B3_5 = G_B2_4;
}
IL_0021:
{
int32_t L_5 = ___dwOptions6;
il2cpp_codegen_runtime_class_init_inline(MonoIO_t4111700E5C2D38E1B55C916719E4CB725CBE5FC7_il2cpp_TypeInfo_var);
bool L_6;
L_6 = MonoIO_DuplicateHandle_m2BB9CDF1578D80E0FCFA1199E13EC6C1E9855E98(G_B3_5, G_B3_4, G_B3_3, G_B3_2, G_B3_1, G_B3_0, L_5, (&V_0), NULL);
int32_t L_7 = V_0;
G_B4_0 = L_6;
if (!L_7)
{
G_B5_0 = L_6;
goto IL_0034;
}
}
{
int32_t L_8 = V_0;
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MonoIO_t4111700E5C2D38E1B55C916719E4CB725CBE5FC7_il2cpp_TypeInfo_var)));
Exception_t* L_9;
L_9 = MonoIO_GetException_m83962CC85B25CF192D37583E53A43F8FFE909F9E(L_8, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NativeMethods_DuplicateHandle_m5C21EA8CF525CF8393A163DC71A4C77790F5B706_RuntimeMethod_var)));
}
IL_0034:
{
SafeProcessHandle_tA260D4420C5F481A5DA030FFB19D038BBF8A63CB** L_10 = ___targetHandle3;
intptr_t L_11 = V_1;
SafeProcessHandle_tA260D4420C5F481A5DA030FFB19D038BBF8A63CB* L_12 = (SafeProcessHandle_tA260D4420C5F481A5DA030FFB19D038BBF8A63CB*)il2cpp_codegen_object_new(SafeProcessHandle_tA260D4420C5F481A5DA030FFB19D038BBF8A63CB_il2cpp_TypeInfo_var);
NullCheck(L_12);
SafeProcessHandle__ctor_mF35A5C60AA1DFE35E75F353C346E941D62DB8859(L_12, L_11, (bool)1, NULL);
*((RuntimeObject**)L_10) = (RuntimeObject*)L_12;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_10, (void*)(RuntimeObject*)L_12);
return G_B5_0;
}
}
// System.IntPtr Microsoft.Win32.NativeMethods::GetCurrentProcess()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t NativeMethods_GetCurrentProcess_mD74A4139227DCBBC998906A9A4A74B9A7C176CE1 (const RuntimeMethod* method)
{
typedef intptr_t (*NativeMethods_GetCurrentProcess_mD74A4139227DCBBC998906A9A4A74B9A7C176CE1_ftn) ();
using namespace il2cpp::icalls;
return ((NativeMethods_GetCurrentProcess_mD74A4139227DCBBC998906A9A4A74B9A7C176CE1_ftn)System::Microsoft::Win32::NativeMethods::GetCurrentProcess) ();
}
// System.Boolean Microsoft.Win32.NativeMethods::GetExitCodeProcess(System.IntPtr,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NativeMethods_GetExitCodeProcess_mE82305F94ACE81CA86DC12C37B0129CF596CE110 (intptr_t ___processHandle0, int32_t* ___exitCode1, const RuntimeMethod* method)
{
typedef bool (*NativeMethods_GetExitCodeProcess_mE82305F94ACE81CA86DC12C37B0129CF596CE110_ftn) (intptr_t, int32_t*);
using namespace il2cpp::icalls;
return ((NativeMethods_GetExitCodeProcess_mE82305F94ACE81CA86DC12C37B0129CF596CE110_ftn)System::Microsoft::Win32::NativeMethods::GetExitCodeProcess) (___processHandle0, ___exitCode1);
}
// System.Boolean Microsoft.Win32.NativeMethods::GetExitCodeProcess(Microsoft.Win32.SafeHandles.SafeProcessHandle,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NativeMethods_GetExitCodeProcess_m6189E8FBCC4A4ADC62D0BE2A614CDEB848F0313D (SafeProcessHandle_tA260D4420C5F481A5DA030FFB19D038BBF8A63CB* ___processHandle0, int32_t* ___exitCode1, const RuntimeMethod* method)
{
bool V_0 = false;
bool V_1 = false;
{
V_0 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0019:
{// begin finally (depth: 1)
{
bool L_0 = V_0;
if (!L_0)
{
goto IL_0022;
}
}
{
SafeProcessHandle_tA260D4420C5F481A5DA030FFB19D038BBF8A63CB* L_1 = ___processHandle0;
NullCheck(L_1);
SafeHandle_DangerousRelease_m30A8B4E5BEA935C8925BC2115CD0AD13B937953E(L_1, NULL);
}
IL_0022:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
SafeProcessHandle_tA260D4420C5F481A5DA030FFB19D038BBF8A63CB* L_2 = ___processHandle0;
NullCheck(L_2);
SafeHandle_DangerousAddRef_m9FA46208A92D8B33059B8E8712F49AE45BB5E922(L_2, (&V_0), NULL);
SafeProcessHandle_tA260D4420C5F481A5DA030FFB19D038BBF8A63CB* L_3 = ___processHandle0;
NullCheck(L_3);
intptr_t L_4;
L_4 = SafeHandle_DangerousGetHandle_mE7CB3F36EE7BB2E2623EF316C4B43D1CA44B7F9C_inline(L_3, NULL);
int32_t* L_5 = ___exitCode1;
bool L_6;
L_6 = NativeMethods_GetExitCodeProcess_mE82305F94ACE81CA86DC12C37B0129CF596CE110(L_4, L_5, NULL);
V_1 = L_6;
goto IL_0023;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0023:
{
bool L_7 = V_1;
return L_7;
}
}
// System.Int32 Microsoft.Win32.NativeMethods::GetCurrentProcessId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NativeMethods_GetCurrentProcessId_m9E674A6B2BE2E6BC7B228DA4CA9330E144430F24 (const RuntimeMethod* method)
{
typedef int32_t (*NativeMethods_GetCurrentProcessId_m9E674A6B2BE2E6BC7B228DA4CA9330E144430F24_ftn) ();
using namespace il2cpp::icalls;
return ((NativeMethods_GetCurrentProcessId_m9E674A6B2BE2E6BC7B228DA4CA9330E144430F24_ftn)System::Microsoft::Win32::NativeMethods::GetCurrentProcessId) ();
}
// System.Boolean Microsoft.Win32.NativeMethods::CloseProcess(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NativeMethods_CloseProcess_mC58317B5182D4057EB1D65C8ABD2A3AE5A6D00D4 (intptr_t ___handle0, const RuntimeMethod* method)
{
typedef bool (*NativeMethods_CloseProcess_mC58317B5182D4057EB1D65C8ABD2A3AE5A6D00D4_ftn) (intptr_t);
using namespace il2cpp::icalls;
return ((NativeMethods_CloseProcess_mC58317B5182D4057EB1D65C8ABD2A3AE5A6D00D4_ftn)System::Microsoft::Win32::NativeMethods::CloseProcess) (___handle0);
}
#ifdef __clang__
#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 Microsoft.Win32.SafeHandles.SafeProcessHandle::.ctor(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeProcessHandle__ctor_m347300F5032173FAA9287B4CDC692BBA71D82E95 (SafeProcessHandle_tA260D4420C5F481A5DA030FFB19D038BBF8A63CB* __this, intptr_t ___handle0, const RuntimeMethod* method)
{
{
SafeHandleZeroOrMinusOneIsInvalid__ctor_m9BA85F78EC25654EE170CA999EC379D9A4B59B89(__this, (bool)1, NULL);
intptr_t L_0 = ___handle0;
SafeHandle_SetHandle_m003D64748F9DFBA1E3C0B23798C23BA81AA21C2A_inline(__this, L_0, NULL);
return;
}
}
// System.Void Microsoft.Win32.SafeHandles.SafeProcessHandle::.ctor(System.IntPtr,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeProcessHandle__ctor_mF35A5C60AA1DFE35E75F353C346E941D62DB8859 (SafeProcessHandle_tA260D4420C5F481A5DA030FFB19D038BBF8A63CB* __this, intptr_t ___existingHandle0, bool ___ownsHandle1, const RuntimeMethod* method)
{
{
bool L_0 = ___ownsHandle1;
SafeHandleZeroOrMinusOneIsInvalid__ctor_m9BA85F78EC25654EE170CA999EC379D9A4B59B89(__this, L_0, NULL);
intptr_t L_1 = ___existingHandle0;
SafeHandle_SetHandle_m003D64748F9DFBA1E3C0B23798C23BA81AA21C2A_inline(__this, L_1, NULL);
return;
}
}
// System.Boolean Microsoft.Win32.SafeHandles.SafeProcessHandle::ReleaseHandle()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SafeProcessHandle_ReleaseHandle_m9026551EED6D5751BCBB3F413986A339E0DFE258 (SafeProcessHandle_tA260D4420C5F481A5DA030FFB19D038BBF8A63CB* __this, const RuntimeMethod* method)
{
{
intptr_t L_0 = ((SafeHandle_tC1A4DA80DA89B867CC011B707A07275230321BF7*)__this)->___handle_0;
bool L_1;
L_1 = NativeMethods_CloseProcess_mC58317B5182D4057EB1D65C8ABD2A3AE5A6D00D4(L_0, NULL);
return L_1;
}
}
// System.Void Microsoft.Win32.SafeHandles.SafeProcessHandle::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeProcessHandle__cctor_mB58028777298714AC693447FF3F9878F04073021 (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*)&SafeProcessHandle_tA260D4420C5F481A5DA030FFB19D038BBF8A63CB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
SafeProcessHandle_tA260D4420C5F481A5DA030FFB19D038BBF8A63CB* L_0 = (SafeProcessHandle_tA260D4420C5F481A5DA030FFB19D038BBF8A63CB*)il2cpp_codegen_object_new(SafeProcessHandle_tA260D4420C5F481A5DA030FFB19D038BBF8A63CB_il2cpp_TypeInfo_var);
NullCheck(L_0);
SafeProcessHandle__ctor_m347300F5032173FAA9287B4CDC692BBA71D82E95(L_0, (0), NULL);
((SafeProcessHandle_tA260D4420C5F481A5DA030FFB19D038BBF8A63CB_StaticFields*)il2cpp_codegen_static_fields_for(SafeProcessHandle_tA260D4420C5F481A5DA030FFB19D038BBF8A63CB_il2cpp_TypeInfo_var))->___InvalidHandle_6 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((SafeProcessHandle_tA260D4420C5F481A5DA030FFB19D038BBF8A63CB_StaticFields*)il2cpp_codegen_static_fields_for(SafeProcessHandle_tA260D4420C5F481A5DA030FFB19D038BBF8A63CB_il2cpp_TypeInfo_var))->___InvalidHandle_6), (void*)L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int32 System.IPv4AddressHelper::ParseHostNumber(System.ReadOnlySpan`1<System.Char>,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IPv4AddressHelper_ParseHostNumber_mA778BE5D8E7B36AFF00BC3A042D532C5E4718B74 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___str0, int32_t ___start1, int32_t ___end2, const RuntimeMethod* method)
{
uint8_t* V_0 = NULL;
{
int8_t* L_0 = (int8_t*) alloca(((uintptr_t)4));
memset(L_0, 0, ((uintptr_t)4));
V_0 = (uint8_t*)(L_0);
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1 = ___str0;
uint8_t* L_2 = V_0;
int32_t L_3 = ___start1;
int32_t L_4 = ___end2;
bool L_5;
L_5 = IPv4AddressHelper_ParseCanonical_m7BE948BF36EC5AD70DFFD320BD9EE8A343DA795E(L_1, L_2, L_3, L_4, NULL);
uint8_t* L_6 = V_0;
int32_t L_7 = *((uint8_t*)L_6);
uint8_t* L_8 = V_0;
int32_t L_9 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_8, 1)));
uint8_t* L_10 = V_0;
int32_t L_11 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_10, 2)));
uint8_t* L_12 = V_0;
int32_t L_13 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_12, 3)));
return ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)(L_7<<((int32_t)24))), ((int32_t)(L_9<<((int32_t)16))))), ((int32_t)(L_11<<8)))), L_13));
}
}
// System.Boolean System.IPv4AddressHelper::IsValid(System.Char*,System.Int32,System.Int32&,System.Boolean,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPv4AddressHelper_IsValid_m1E626B5740F8C0F4F4AEA9D8D9E06933BD79C7AE (Il2CppChar* ___name0, int32_t ___start1, int32_t* ___end2, bool ___allowIPv63, bool ___notImplicitFile4, bool ___unknownScheme5, const RuntimeMethod* method)
{
{
bool L_0 = ___allowIPv63;
bool L_1 = ___unknownScheme5;
if (!((int32_t)((int32_t)L_0|(int32_t)L_1)))
{
goto IL_0012;
}
}
{
Il2CppChar* L_2 = ___name0;
int32_t L_3 = ___start1;
int32_t* L_4 = ___end2;
bool L_5 = ___allowIPv63;
bool L_6 = ___notImplicitFile4;
bool L_7;
L_7 = IPv4AddressHelper_IsValidCanonical_mBE62564C4A9F8F584C9FBC0E6A5D5159071BE23E(L_2, L_3, L_4, L_5, L_6, NULL);
return L_7;
}
IL_0012:
{
Il2CppChar* L_8 = ___name0;
int32_t L_9 = ___start1;
int32_t* L_10 = ___end2;
bool L_11 = ___notImplicitFile4;
int64_t L_12;
L_12 = IPv4AddressHelper_ParseNonCanonical_m4ACD00B972D7DBEB80BC3D7A9C36BB2CEA81638E(L_8, L_9, L_10, L_11, NULL);
return (bool)((((int32_t)((((int64_t)L_12) == ((int64_t)((int64_t)(-1))))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Boolean System.IPv4AddressHelper::ParseCanonical(System.ReadOnlySpan`1<System.Char>,System.Byte*,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPv4AddressHelper_ParseCanonical_m7BE948BF36EC5AD70DFFD320BD9EE8A343DA795E (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___name0, uint8_t* ___numbers1, int32_t ___start2, int32_t ___end3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
uint8_t V_1 = 0x0;
Il2CppChar V_2 = 0x0;
{
V_0 = 0;
goto IL_003f;
}
IL_0004:
{
V_1 = (uint8_t)0;
goto IL_0019;
}
IL_0008:
{
uint8_t L_0 = V_1;
Il2CppChar L_1 = V_2;
V_1 = (uint8_t)((int32_t)(uint8_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply((int32_t)L_0, ((int32_t)10))), ((int32_t)(uint8_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, ((int32_t)48)))))));
int32_t L_2 = ___start2;
___start2 = ((int32_t)il2cpp_codegen_add(L_2, 1));
}
IL_0019:
{
int32_t L_3 = ___start2;
int32_t L_4 = ___end3;
if ((((int32_t)L_3) >= ((int32_t)L_4)))
{
goto IL_0031;
}
}
{
int32_t L_5 = ___start2;
Il2CppChar* L_6;
L_6 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___name0))->____pointer_0))->value, (L_5), ((&___name0))->____length_1);
int32_t L_7 = *((uint16_t*)L_6);
int32_t L_8 = L_7;
V_2 = L_8;
if ((((int32_t)L_8) == ((int32_t)((int32_t)46))))
{
goto IL_0031;
}
}
{
Il2CppChar L_9 = V_2;
if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)58)))))
{
goto IL_0008;
}
}
IL_0031:
{
uint8_t* L_10 = ___numbers1;
int32_t L_11 = V_0;
uint8_t L_12 = V_1;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_10, L_11))) = (int8_t)L_12;
int32_t L_13 = ___start2;
___start2 = ((int32_t)il2cpp_codegen_add(L_13, 1));
int32_t L_14 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_14, 1));
}
IL_003f:
{
int32_t L_15 = V_0;
if ((((int32_t)L_15) < ((int32_t)4)))
{
goto IL_0004;
}
}
{
uint8_t* L_16 = ___numbers1;
int32_t L_17 = *((uint8_t*)L_16);
return (bool)((((int32_t)L_17) == ((int32_t)((int32_t)127)))? 1 : 0);
}
}
// System.Boolean System.IPv4AddressHelper::IsValidCanonical(System.Char*,System.Int32,System.Int32&,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPv4AddressHelper_IsValidCanonical_mBE62564C4A9F8F584C9FBC0E6A5D5159071BE23E (Il2CppChar* ___name0, int32_t ___start1, int32_t* ___end2, bool ___allowIPv63, bool ___notImplicitFile4, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
bool V_2 = false;
bool V_3 = false;
Il2CppChar V_4 = 0x0;
int32_t G_B32_0 = 0;
int32_t G_B31_0 = 0;
{
V_0 = 0;
V_1 = 0;
V_2 = (bool)0;
V_3 = (bool)0;
goto IL_00d0;
}
IL_000d:
{
Il2CppChar* L_0 = ___name0;
int32_t L_1 = ___start1;
int32_t L_2 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_0, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_1), 2)))));
V_4 = L_2;
bool L_3 = ___allowIPv63;
if (!L_3)
{
goto IL_0036;
}
}
{
Il2CppChar L_4 = V_4;
if ((((int32_t)L_4) == ((int32_t)((int32_t)93))))
{
goto IL_00d8;
}
}
{
Il2CppChar L_5 = V_4;
if ((((int32_t)L_5) == ((int32_t)((int32_t)47))))
{
goto IL_00d8;
}
}
{
Il2CppChar L_6 = V_4;
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)37)))))
{
goto IL_0061;
}
}
{
goto IL_00d8;
}
IL_0036:
{
Il2CppChar L_7 = V_4;
if ((((int32_t)L_7) == ((int32_t)((int32_t)47))))
{
goto IL_00d8;
}
}
{
Il2CppChar L_8 = V_4;
if ((((int32_t)L_8) == ((int32_t)((int32_t)92))))
{
goto IL_00d8;
}
}
{
bool L_9 = ___notImplicitFile4;
if (!L_9)
{
goto IL_0061;
}
}
{
Il2CppChar L_10 = V_4;
if ((((int32_t)L_10) == ((int32_t)((int32_t)58))))
{
goto IL_00d8;
}
}
{
Il2CppChar L_11 = V_4;
if ((((int32_t)L_11) == ((int32_t)((int32_t)63))))
{
goto IL_00d8;
}
}
{
Il2CppChar L_12 = V_4;
if ((((int32_t)L_12) == ((int32_t)((int32_t)35))))
{
goto IL_00d8;
}
}
IL_0061:
{
Il2CppChar L_13 = V_4;
if ((((int32_t)L_13) > ((int32_t)((int32_t)57))))
{
goto IL_00aa;
}
}
{
Il2CppChar L_14 = V_4;
if ((((int32_t)L_14) < ((int32_t)((int32_t)48))))
{
goto IL_00aa;
}
}
{
bool L_15 = V_2;
if (L_15)
{
goto IL_008e;
}
}
{
Il2CppChar L_16 = V_4;
if ((!(((uint32_t)L_16) == ((uint32_t)((int32_t)48)))))
{
goto IL_008e;
}
}
{
int32_t L_17 = ___start1;
int32_t* L_18 = ___end2;
int32_t L_19 = *((int32_t*)L_18);
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_17, 1))) >= ((int32_t)L_19)))
{
goto IL_008c;
}
}
{
Il2CppChar* L_20 = ___name0;
int32_t L_21 = ___start1;
int32_t L_22 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_20, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_add(L_21, 1))), 2)))));
if ((!(((uint32_t)L_22) == ((uint32_t)((int32_t)48)))))
{
goto IL_008c;
}
}
{
return (bool)0;
}
IL_008c:
{
V_3 = (bool)1;
}
IL_008e:
{
V_2 = (bool)1;
int32_t L_23 = V_1;
Il2CppChar* L_24 = ___name0;
int32_t L_25 = ___start1;
int32_t L_26 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_24, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_25), 2)))));
V_1 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_23, ((int32_t)10))), ((int32_t)il2cpp_codegen_subtract(L_26, ((int32_t)48)))));
int32_t L_27 = V_1;
if ((((int32_t)L_27) <= ((int32_t)((int32_t)255))))
{
goto IL_00cb;
}
}
{
return (bool)0;
}
IL_00aa:
{
Il2CppChar L_28 = V_4;
if ((!(((uint32_t)L_28) == ((uint32_t)((int32_t)46)))))
{
goto IL_00c9;
}
}
{
bool L_29 = V_2;
if (!L_29)
{
goto IL_00bb;
}
}
{
int32_t L_30 = V_1;
bool L_31 = V_3;
if (!((int32_t)(((((int32_t)L_30) > ((int32_t)0))? 1 : 0)&(int32_t)L_31)))
{
goto IL_00bd;
}
}
IL_00bb:
{
return (bool)0;
}
IL_00bd:
{
int32_t L_32 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_32, 1));
V_2 = (bool)0;
V_1 = 0;
V_3 = (bool)0;
goto IL_00cb;
}
IL_00c9:
{
return (bool)0;
}
IL_00cb:
{
int32_t L_33 = ___start1;
___start1 = ((int32_t)il2cpp_codegen_add(L_33, 1));
}
IL_00d0:
{
int32_t L_34 = ___start1;
int32_t* L_35 = ___end2;
int32_t L_36 = *((int32_t*)L_35);
if ((((int32_t)L_34) < ((int32_t)L_36)))
{
goto IL_000d;
}
}
IL_00d8:
{
int32_t L_37 = V_0;
bool L_38 = V_2;
int32_t L_39 = ((int32_t)(((((int32_t)L_37) == ((int32_t)3))? 1 : 0)&(int32_t)L_38));
G_B31_0 = L_39;
if (!L_39)
{
G_B32_0 = L_39;
goto IL_00e4;
}
}
{
int32_t* L_40 = ___end2;
int32_t L_41 = ___start1;
*((int32_t*)L_40) = (int32_t)L_41;
G_B32_0 = G_B31_0;
}
IL_00e4:
{
return (bool)G_B32_0;
}
}
// System.Int64 System.IPv4AddressHelper::ParseNonCanonical(System.Char*,System.Int32,System.Int32&,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t IPv4AddressHelper_ParseNonCanonical_m4ACD00B972D7DBEB80BC3D7A9C36BB2CEA81638E (Il2CppChar* ___name0, int32_t ___start1, int32_t* ___end2, bool ___notImplicitFile3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Il2CppChar V_1 = 0x0;
int64_t* V_2 = NULL;
int64_t V_3 = 0;
bool V_4 = false;
int32_t V_5 = 0;
int32_t V_6 = 0;
int32_t V_7 = 0;
{
V_0 = ((int32_t)10);
int8_t* L_0 = (int8_t*) alloca(((uintptr_t)((int32_t)32)));
memset(L_0, 0, ((uintptr_t)((int32_t)32)));
V_2 = (int64_t*)(L_0);
V_3 = ((int64_t)0);
V_4 = (bool)0;
V_5 = 0;
int32_t L_1 = ___start1;
V_6 = L_1;
goto IL_013b;
}
IL_001a:
{
Il2CppChar* L_2 = ___name0;
int32_t L_3 = V_6;
int32_t L_4 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_2, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_3), 2)))));
V_1 = L_4;
V_3 = ((int64_t)0);
V_0 = ((int32_t)10);
Il2CppChar L_5 = V_1;
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)48)))))
{
goto IL_00f3;
}
}
{
V_0 = 8;
int32_t L_6 = V_6;
V_6 = ((int32_t)il2cpp_codegen_add(L_6, 1));
V_4 = (bool)1;
int32_t L_7 = V_6;
int32_t* L_8 = ___end2;
int32_t L_9 = *((int32_t*)L_8);
if ((((int32_t)L_7) >= ((int32_t)L_9)))
{
goto IL_00f3;
}
}
{
Il2CppChar* L_10 = ___name0;
int32_t L_11 = V_6;
int32_t L_12 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_10, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_11), 2)))));
V_1 = L_12;
Il2CppChar L_13 = V_1;
if ((((int32_t)L_13) == ((int32_t)((int32_t)120))))
{
goto IL_005b;
}
}
{
Il2CppChar L_14 = V_1;
if ((!(((uint32_t)L_14) == ((uint32_t)((int32_t)88)))))
{
goto IL_00f3;
}
}
IL_005b:
{
V_0 = ((int32_t)16);
int32_t L_15 = V_6;
V_6 = ((int32_t)il2cpp_codegen_add(L_15, 1));
V_4 = (bool)0;
goto IL_00f3;
}
IL_006c:
{
Il2CppChar* L_16 = ___name0;
int32_t L_17 = V_6;
int32_t L_18 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_16, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_17), 2)))));
V_1 = L_18;
int32_t L_19 = V_0;
if ((((int32_t)L_19) == ((int32_t)((int32_t)10))))
{
goto IL_007f;
}
}
{
int32_t L_20 = V_0;
if ((!(((uint32_t)L_20) == ((uint32_t)((int32_t)16)))))
{
goto IL_0091;
}
}
IL_007f:
{
Il2CppChar L_21 = V_1;
if ((((int32_t)((int32_t)48)) > ((int32_t)L_21)))
{
goto IL_0091;
}
}
{
Il2CppChar L_22 = V_1;
if ((((int32_t)L_22) > ((int32_t)((int32_t)57))))
{
goto IL_0091;
}
}
{
Il2CppChar L_23 = V_1;
V_7 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_23, ((int32_t)48)));
goto IL_00d9;
}
IL_0091:
{
int32_t L_24 = V_0;
if ((!(((uint32_t)L_24) == ((uint32_t)8))))
{
goto IL_00a7;
}
}
{
Il2CppChar L_25 = V_1;
if ((((int32_t)((int32_t)48)) > ((int32_t)L_25)))
{
goto IL_00a7;
}
}
{
Il2CppChar L_26 = V_1;
if ((((int32_t)L_26) > ((int32_t)((int32_t)55))))
{
goto IL_00a7;
}
}
{
Il2CppChar L_27 = V_1;
V_7 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_27, ((int32_t)48)));
goto IL_00d9;
}
IL_00a7:
{
int32_t L_28 = V_0;
if ((!(((uint32_t)L_28) == ((uint32_t)((int32_t)16)))))
{
goto IL_00c1;
}
}
{
Il2CppChar L_29 = V_1;
if ((((int32_t)((int32_t)97)) > ((int32_t)L_29)))
{
goto IL_00c1;
}
}
{
Il2CppChar L_30 = V_1;
if ((((int32_t)L_30) > ((int32_t)((int32_t)102))))
{
goto IL_00c1;
}
}
{
Il2CppChar L_31 = V_1;
V_7 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_add((int32_t)L_31, ((int32_t)10))), ((int32_t)97)));
goto IL_00d9;
}
IL_00c1:
{
int32_t L_32 = V_0;
if ((!(((uint32_t)L_32) == ((uint32_t)((int32_t)16)))))
{
goto IL_00fc;
}
}
{
Il2CppChar L_33 = V_1;
if ((((int32_t)((int32_t)65)) > ((int32_t)L_33)))
{
goto IL_00fc;
}
}
{
Il2CppChar L_34 = V_1;
if ((((int32_t)L_34) > ((int32_t)((int32_t)70))))
{
goto IL_00fc;
}
}
{
Il2CppChar L_35 = V_1;
V_7 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_add((int32_t)L_35, ((int32_t)10))), ((int32_t)65)));
}
IL_00d9:
{
int64_t L_36 = V_3;
int32_t L_37 = V_0;
int32_t L_38 = V_7;
V_3 = ((int64_t)il2cpp_codegen_add(((int64_t)il2cpp_codegen_multiply(L_36, ((int64_t)L_37))), ((int64_t)L_38)));
int64_t L_39 = V_3;
if ((((int64_t)L_39) <= ((int64_t)((int64_t)(uint64_t)((uint32_t)(-1))))))
{
goto IL_00ea;
}
}
{
return ((int64_t)(-1));
}
IL_00ea:
{
V_4 = (bool)1;
int32_t L_40 = V_6;
V_6 = ((int32_t)il2cpp_codegen_add(L_40, 1));
}
IL_00f3:
{
int32_t L_41 = V_6;
int32_t* L_42 = ___end2;
int32_t L_43 = *((int32_t*)L_42);
if ((((int32_t)L_41) < ((int32_t)L_43)))
{
goto IL_006c;
}
}
IL_00fc:
{
int32_t L_44 = V_6;
int32_t* L_45 = ___end2;
int32_t L_46 = *((int32_t*)L_45);
if ((((int32_t)L_44) >= ((int32_t)L_46)))
{
goto IL_0144;
}
}
{
Il2CppChar* L_47 = ___name0;
int32_t L_48 = V_6;
int32_t L_49 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_47, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_48), 2)))));
if ((!(((uint32_t)L_49) == ((uint32_t)((int32_t)46)))))
{
goto IL_0144;
}
}
{
int32_t L_50 = V_5;
if ((((int32_t)L_50) >= ((int32_t)3)))
{
goto IL_0120;
}
}
{
bool L_51 = V_4;
if (!L_51)
{
goto IL_0120;
}
}
{
int64_t L_52 = V_3;
if ((((int64_t)L_52) <= ((int64_t)((int64_t)((int32_t)255)))))
{
goto IL_0123;
}
}
IL_0120:
{
return ((int64_t)(-1));
}
IL_0123:
{
int64_t* L_53 = V_2;
int32_t L_54 = V_5;
int64_t L_55 = V_3;
*((int64_t*)((int64_t*)il2cpp_codegen_add((intptr_t)L_53, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_54), 8))))) = (int64_t)L_55;
int32_t L_56 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add(L_56, 1));
V_4 = (bool)0;
int32_t L_57 = V_6;
V_6 = ((int32_t)il2cpp_codegen_add(L_57, 1));
}
IL_013b:
{
int32_t L_58 = V_6;
int32_t* L_59 = ___end2;
int32_t L_60 = *((int32_t*)L_59);
if ((((int32_t)L_58) < ((int32_t)L_60)))
{
goto IL_001a;
}
}
IL_0144:
{
bool L_61 = V_4;
if (L_61)
{
goto IL_014b;
}
}
{
return ((int64_t)(-1));
}
IL_014b:
{
int32_t L_62 = V_6;
int32_t* L_63 = ___end2;
int32_t L_64 = *((int32_t*)L_63);
if ((((int32_t)L_62) >= ((int32_t)L_64)))
{
goto IL_017f;
}
}
{
Il2CppChar* L_65 = ___name0;
int32_t L_66 = V_6;
int32_t L_67 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_65, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_66), 2)))));
int32_t L_68 = L_67;
V_1 = L_68;
if ((((int32_t)L_68) == ((int32_t)((int32_t)47))))
{
goto IL_0176;
}
}
{
Il2CppChar L_69 = V_1;
if ((((int32_t)L_69) == ((int32_t)((int32_t)92))))
{
goto IL_0176;
}
}
{
bool L_70 = ___notImplicitFile3;
if (!L_70)
{
goto IL_017c;
}
}
{
Il2CppChar L_71 = V_1;
if ((((int32_t)L_71) == ((int32_t)((int32_t)58))))
{
goto IL_0176;
}
}
{
Il2CppChar L_72 = V_1;
if ((((int32_t)L_72) == ((int32_t)((int32_t)63))))
{
goto IL_0176;
}
}
{
Il2CppChar L_73 = V_1;
if ((!(((uint32_t)L_73) == ((uint32_t)((int32_t)35)))))
{
goto IL_017c;
}
}
IL_0176:
{
int32_t* L_74 = ___end2;
int32_t L_75 = V_6;
*((int32_t*)L_74) = (int32_t)L_75;
goto IL_017f;
}
IL_017c:
{
return ((int64_t)(-1));
}
IL_017f:
{
int64_t* L_76 = V_2;
int32_t L_77 = V_5;
int64_t L_78 = V_3;
*((int64_t*)((int64_t*)il2cpp_codegen_add((intptr_t)L_76, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_77), 8))))) = (int64_t)L_78;
int32_t L_79 = V_5;
switch (L_79)
{
case 0:
{
goto IL_01a4;
}
case 1:
{
goto IL_01b0;
}
case 2:
{
goto IL_01d1;
}
case 3:
{
goto IL_0207;
}
}
}
{
goto IL_024e;
}
IL_01a4:
{
int64_t* L_80 = V_2;
int64_t L_81 = *((int64_t*)L_80);
if ((((int64_t)L_81) <= ((int64_t)((int64_t)(uint64_t)((uint32_t)(-1))))))
{
goto IL_01ad;
}
}
{
return ((int64_t)(-1));
}
IL_01ad:
{
int64_t* L_82 = V_2;
int64_t L_83 = *((int64_t*)L_82);
return L_83;
}
IL_01b0:
{
int64_t* L_84 = V_2;
int64_t L_85 = *((int64_t*)((int64_t*)il2cpp_codegen_add((intptr_t)L_84, 8)));
if ((((int64_t)L_85) <= ((int64_t)((int64_t)((int32_t)16777215)))))
{
goto IL_01bf;
}
}
{
return ((int64_t)(-1));
}
IL_01bf:
{
int64_t* L_86 = V_2;
int64_t L_87 = *((int64_t*)L_86);
int64_t* L_88 = V_2;
int64_t L_89 = *((int64_t*)((int64_t*)il2cpp_codegen_add((intptr_t)L_88, 8)));
return ((int64_t)(((int64_t)(L_87<<((int32_t)24)))|((int64_t)(L_89&((int64_t)((int32_t)16777215))))));
}
IL_01d1:
{
int64_t* L_90 = V_2;
int64_t L_91 = *((int64_t*)((int64_t*)il2cpp_codegen_add((intptr_t)L_90, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 8)))));
if ((((int64_t)L_91) <= ((int64_t)((int64_t)((int32_t)65535)))))
{
goto IL_01e3;
}
}
{
return ((int64_t)(-1));
}
IL_01e3:
{
int64_t* L_92 = V_2;
int64_t L_93 = *((int64_t*)L_92);
int64_t* L_94 = V_2;
int64_t L_95 = *((int64_t*)((int64_t*)il2cpp_codegen_add((intptr_t)L_94, 8)));
int64_t* L_96 = V_2;
int64_t L_97 = *((int64_t*)((int64_t*)il2cpp_codegen_add((intptr_t)L_96, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 8)))));
return ((int64_t)(((int64_t)(((int64_t)(L_93<<((int32_t)24)))|((int64_t)(((int64_t)(L_95&((int64_t)((int32_t)255))))<<((int32_t)16)))))|((int64_t)(L_97&((int64_t)((int32_t)65535))))));
}
IL_0207:
{
int64_t* L_98 = V_2;
int64_t L_99 = *((int64_t*)((int64_t*)il2cpp_codegen_add((intptr_t)L_98, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)3), 8)))));
if ((((int64_t)L_99) <= ((int64_t)((int64_t)((int32_t)255)))))
{
goto IL_0219;
}
}
{
return ((int64_t)(-1));
}
IL_0219:
{
int64_t* L_100 = V_2;
int64_t L_101 = *((int64_t*)L_100);
int64_t* L_102 = V_2;
int64_t L_103 = *((int64_t*)((int64_t*)il2cpp_codegen_add((intptr_t)L_102, 8)));
int64_t* L_104 = V_2;
int64_t L_105 = *((int64_t*)((int64_t*)il2cpp_codegen_add((intptr_t)L_104, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), 8)))));
int64_t* L_106 = V_2;
int64_t L_107 = *((int64_t*)((int64_t*)il2cpp_codegen_add((intptr_t)L_106, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)3), 8)))));
return ((int64_t)(((int64_t)(((int64_t)(((int64_t)(L_101<<((int32_t)24)))|((int64_t)(((int64_t)(L_103&((int64_t)((int32_t)255))))<<((int32_t)16)))))|((int64_t)(((int64_t)(L_105&((int64_t)((int32_t)255))))<<8))))|((int64_t)(L_107&((int64_t)((int32_t)255))))));
}
IL_024e:
{
return ((int64_t)(-1));
}
}
// System.String System.IPv4AddressHelper::ParseCanonicalName(System.String,System.Int32,System.Int32,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IPv4AddressHelper_ParseCanonicalName_m25D822E5AC4B56E40C2404C8DE1C03E70ABCF72C (String_t* ___str0, int32_t ___start1, int32_t ___end2, bool* ___isLoopback3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_Slice_mDC9AA64B960B9BB8357655827A8202DF83443068_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_op_Implicit_mD65020B112814C67FED9F2C3DE2B0B78D4E2A486_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D V_1;
memset((&V_1), 0, sizeof(V_1));
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t V_4 = 0;
int32_t V_5 = 0;
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_6;
memset((&V_6), 0, sizeof(V_6));
{
int8_t* L_0 = (int8_t*) alloca(((uintptr_t)4));
memset(L_0, 0, ((uintptr_t)4));
V_0 = (uint8_t*)(L_0);
bool* L_1 = ___isLoopback3;
String_t* L_2 = ___str0;
uint8_t* L_3 = V_0;
int32_t L_4 = ___start1;
int32_t L_5 = ___end2;
bool L_6;
L_6 = IPv4AddressHelper_Parse_m61983BF8F1D7D827BABB3BD87AE4A2CE2BA92906(L_2, L_3, L_4, L_5, NULL);
*((int8_t*)L_1) = (int8_t)L_6;
int8_t* L_7 = (int8_t*) alloca(((uintptr_t)((int32_t)30)));
memset(L_7, 0, ((uintptr_t)((int32_t)30)));
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_8;
memset((&L_8), 0, sizeof(L_8));
Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_inline((&L_8), (void*)(L_7), ((int32_t)15), /*hidden argument*/Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_RuntimeMethod_var);
V_1 = L_8;
V_2 = 0;
V_4 = 0;
goto IL_005f;
}
IL_0024:
{
uint8_t* L_9 = V_0;
int32_t L_10 = V_4;
int32_t L_11 = V_2;
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_12;
L_12 = Span_1_Slice_mDC9AA64B960B9BB8357655827A8202DF83443068_inline((&V_1), L_11, Span_1_Slice_mDC9AA64B960B9BB8357655827A8202DF83443068_RuntimeMethod_var);
il2cpp_codegen_initobj((&V_6), sizeof(ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1));
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_13 = V_6;
bool L_14;
L_14 = Byte_TryFormat_m001551267A8748E3D23C0DE0AF5FEB2BF06A463E((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, L_10)), L_12, (&V_3), L_13, (RuntimeObject*)NULL, NULL);
int32_t L_15 = V_2;
int32_t L_16 = V_3;
V_5 = ((int32_t)il2cpp_codegen_add(L_15, L_16));
int32_t L_17 = V_5;
Il2CppChar* L_18;
L_18 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&V_1))->____pointer_0))->value, (L_17), ((&V_1))->____length_1);
*((int16_t*)L_18) = (int16_t)((int32_t)46);
int32_t L_19 = V_5;
V_2 = ((int32_t)il2cpp_codegen_add(L_19, 1));
int32_t L_20 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add(L_20, 1));
}
IL_005f:
{
int32_t L_21 = V_4;
if ((((int32_t)L_21) < ((int32_t)3)))
{
goto IL_0024;
}
}
{
uint8_t* L_22 = V_0;
int32_t L_23 = V_2;
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_24;
L_24 = Span_1_Slice_mDC9AA64B960B9BB8357655827A8202DF83443068_inline((&V_1), L_23, Span_1_Slice_mDC9AA64B960B9BB8357655827A8202DF83443068_RuntimeMethod_var);
il2cpp_codegen_initobj((&V_6), sizeof(ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1));
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_25 = V_6;
bool L_26;
L_26 = Byte_TryFormat_m001551267A8748E3D23C0DE0AF5FEB2BF06A463E((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_22, 3)), L_24, (&V_3), L_25, (RuntimeObject*)NULL, NULL);
int32_t L_27 = V_2;
int32_t L_28 = V_3;
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_29;
L_29 = Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_inline((&V_1), 0, ((int32_t)il2cpp_codegen_add(L_27, L_28)), Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_RuntimeMethod_var);
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_30;
L_30 = Span_1_op_Implicit_mD65020B112814C67FED9F2C3DE2B0B78D4E2A486(L_29, Span_1_op_Implicit_mD65020B112814C67FED9F2C3DE2B0B78D4E2A486_RuntimeMethod_var);
String_t* L_31;
L_31 = String_CreateString_m1618CF9F1145C9832FC830A4BD6DD96A540012F8(NULL, L_30, NULL);
return L_31;
}
}
// System.Boolean System.IPv4AddressHelper::Parse(System.String,System.Byte*,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPv4AddressHelper_Parse_m61983BF8F1D7D827BABB3BD87AE4A2CE2BA92906 (String_t* ___name0, uint8_t* ___numbers1, int32_t ___start2, int32_t ___end3, const RuntimeMethod* method)
{
Il2CppChar* V_0 = NULL;
String_t* V_1 = NULL;
int32_t V_2 = 0;
int64_t V_3 = 0;
{
String_t* L_0 = ___name0;
V_1 = L_0;
String_t* L_1 = V_1;
V_0 = (Il2CppChar*)((uintptr_t)L_1);
Il2CppChar* L_2 = V_0;
if (!L_2)
{
goto IL_0010;
}
}
{
Il2CppChar* L_3 = V_0;
int32_t L_4;
L_4 = RuntimeHelpers_get_OffsetToStringData_mBBE58AEA702864FB006771F4600D1D99B1234460(NULL);
V_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_3, L_4));
}
IL_0010:
{
int32_t L_5 = ___end3;
V_2 = L_5;
Il2CppChar* L_6 = V_0;
int32_t L_7 = ___start2;
int64_t L_8;
L_8 = IPv4AddressHelper_ParseNonCanonical_m4ACD00B972D7DBEB80BC3D7A9C36BB2CEA81638E(L_6, L_7, (&V_2), (bool)1, NULL);
V_3 = L_8;
uint8_t* L_9 = ___numbers1;
int64_t L_10 = V_3;
*((int8_t*)L_9) = (int8_t)((int32_t)(uint8_t)((int64_t)(L_10>>((int32_t)24))));
uint8_t* L_11 = ___numbers1;
int64_t L_12 = V_3;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_11, 1))) = (int8_t)((int32_t)(uint8_t)((int64_t)(L_12>>((int32_t)16))));
uint8_t* L_13 = ___numbers1;
int64_t L_14 = V_3;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_13, 2))) = (int8_t)((int32_t)(uint8_t)((int64_t)(L_14>>8)));
uint8_t* L_15 = ___numbers1;
int64_t L_16 = V_3;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_15, 3))) = (int8_t)((int32_t)(uint8_t)L_16);
V_1 = (String_t*)NULL;
uint8_t* L_17 = ___numbers1;
int32_t L_18 = *((uint8_t*)L_17);
return (bool)((((int32_t)L_18) == ((int32_t)((int32_t)127)))? 1 : 0);
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF* X509Certificate_get_Impl_m567BEB584A388821259EB9BBBB5B90B6182CC99D_inline (X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* __this, const RuntimeMethod* method)
{
{
X509CertificateImpl_tF590E81705CE1FE152C590E5A875D4FE3BE348EF* L_0 = __this->___impl_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD* SystemDependencyProvider_get_CertificateProvider_mEC19F34D14EB2B7BF5F8973DBC3BF3EAD5B1A19D_inline (SystemDependencyProvider_tA85279DAEAEFAE42C70F6F7090424414FCD68261* __this, const RuntimeMethod* method)
{
{
SystemCertificateProvider_t3D7DCC3AD126E11818C6C642A2C86A04DE1928DD* L_0 = __this->___U3CCertificateProviderU3Ek__BackingField_2;
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 uint8_t ASN1_get_Tag_m1984CF0DDF54424E61BA3650D93CBA0DCB58F232_inline (ASN1_t33549D58797C9C33AA83F13AD184EAA00C584A6F* __this, const RuntimeMethod* method)
{
{
uint8_t L_0 = __this->___m_nTag_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void unitytls_x509list_append_der_t_Invoke_m3D900F0F07C8747B9F046512DAC7579D0C7CD193_inline (unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_x509list_append_der_t_tC45176B25C9B11C509119A1943EFDE133D819951* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___list0, ___buffer1, ___bufferLen2, ___errorState3, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 unitytls_errorstate_create_t_Invoke_m8B9A9835EA7C6A11E1627CA8904F3F853FB61BC0_inline (unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B* __this, const RuntimeMethod* method)
{
typedef unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902 (*FunctionPointerType) (unitytls_errorstate_create_t_tE8BB5D6BCA7D232F4981831586B71C39802CF75B* __this, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
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 void unitytls_x509list_free_t_Invoke_m0974FBCD7B6920A4EC57BDCB080E1A7307EEEA02_inline (unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_x509list_free_t_t9BD50B09A7919B7891DC529787E93C708FC653A2* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___list0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void unitytls_key_free_t_Invoke_m860A3C396228B7ADF9406AE78D439BDCD12FB98E_inline (unitytls_key_free_t_tDB8665140BAF30447F3650D323078C193566FF72* __this, unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* ___key0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_key_free_t_tDB8665140BAF30447F3650D323078C193566FF72* __this, unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* ___key0, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___key0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 unitytls_x509list_get_ref_t_Invoke_mE7C675B7847FFEF96C25AE757D34CE920AA16EC2_inline (unitytls_x509list_get_ref_t_t264CEEF7B8D1F10FD95E1BC78BB48BCA11E305EA* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
typedef unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 (*FunctionPointerType) (unitytls_x509list_get_ref_t_t264CEEF7B8D1F10FD95E1BC78BB48BCA11E305EA* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___list0, ___errorState1, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2 unitytls_key_get_ref_t_Invoke_mF5D3582922E868C42BCF32EB14471F8C800BB66E_inline (unitytls_key_get_ref_t_t8335968B19449FE0ED92E67AE9B6D95915684209* __this, unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* ___key0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
typedef unitytls_key_ref_t6BD91D013DF11047C53738FEEB12CE290FDC71A2 (*FunctionPointerType) (unitytls_key_get_ref_t_t8335968B19449FE0ED92E67AE9B6D95915684209* __this, unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* ___key0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___key0, ___errorState1, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* unitytls_tlsctx_create_server_t_Invoke_mCEB3E8CADCB316F4DF606A68182A4E5C9EC4D3B9_inline (unitytls_tlsctx_create_server_t_t1068941B319B893D3FFBE53FE061676FF1CC3803* __this, unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56 ___supportedProtocols0, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568 ___callbacks1, uint64_t ___certChain2, uint64_t ___leafCertificateKey3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method)
{
typedef unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* (*FunctionPointerType) (unitytls_tlsctx_create_server_t_t1068941B319B893D3FFBE53FE061676FF1CC3803* __this, unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56 ___supportedProtocols0, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568 ___callbacks1, uint64_t ___certChain2, uint64_t ___leafCertificateKey3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___supportedProtocols0, ___callbacks1, ___certChain2, ___leafCertificateKey3, ___errorState4, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MobileTlsContext_get_AskForClientCertificate_mABDEDBD5B9CA52FCAD16A9C271C73FA05218B767_inline (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___U3CAskForClientCertificateU3Ek__BackingField_6;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* unitytls_x509list_create_t_Invoke_m05D8719D913109E4997FF913015E66455BC3C7D3_inline (unitytls_x509list_create_t_t8873365FFB1556CE6B643700DB0C30E391B758D6* __this, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState0, const RuntimeMethod* method)
{
typedef unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* (*FunctionPointerType) (unitytls_x509list_create_t_t8873365FFB1556CE6B643700DB0C30E391B758D6* __this, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState0, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___errorState0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void unitytls_tlsctx_server_require_client_authentication_t_Invoke_m0B6DAC7CA95263D1245C9B0A466AF00D073059EB_inline (unitytls_tlsctx_server_require_client_authentication_t_t2AC04245D1F40738C5FB87B0DEE80761E243F0BE* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___clientAuthCAList1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_tlsctx_server_require_client_authentication_t_t2AC04245D1F40738C5FB87B0DEE80761E243F0BE* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___clientAuthCAList1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___ctx0, ___clientAuthCAList1, ___errorState2, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* unitytls_tlsctx_create_client_t_Invoke_m728BCBF32A45326A1AD8B1E17933372F7D9E01EE_inline (unitytls_tlsctx_create_client_t_t49D8F69D4152410A346CB3560B121DCC44AAC4EC* __this, unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56 ___supportedProtocols0, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568 ___callbacks1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method)
{
typedef unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* (*FunctionPointerType) (unitytls_tlsctx_create_client_t_t49D8F69D4152410A346CB3560B121DCC44AAC4EC* __this, unitytls_tlsctx_protocolrange_tC9BEAD436B8171684A1DE9991676D9FEFF879C56 ___supportedProtocols0, unitytls_tlsctx_callbacks_t348AE3D333ACBB2F17D4D7B8412256357B39B568 ___callbacks1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___supportedProtocols0, ___callbacks1, ___cn2, ___cnLen3, ___errorState4, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void unitytls_tlsctx_set_certificate_callback_t_Invoke_mFC277320977BC310A0EB484EE505E25B6E2C7CA3_inline (unitytls_tlsctx_set_certificate_callback_t_t2B54F7228DFC11BF14DCF2201BDD90CF0EF92D41* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C* ___cb1, void* ___userData2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_tlsctx_set_certificate_callback_t_t2B54F7228DFC11BF14DCF2201BDD90CF0EF92D41* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_tlsctx_certificate_callback_tB2FEBFA5D27CFA86544C06451270B36D77F2932C* ___cb1, void* ___userData2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___ctx0, ___cb1, ___userData2, ___errorState3, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void unitytls_tlsctx_set_x509verify_callback_t_Invoke_mA9AE094A7DB71B4B7B051BB3D67CB98A7F48D3CE_inline (unitytls_tlsctx_set_x509verify_callback_t_t032FE980BEDD0D201CAF1EE653ABE303CDBCA7C9* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D* ___cb1, void* ___userData2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_tlsctx_set_x509verify_callback_t_t032FE980BEDD0D201CAF1EE653ABE303CDBCA7C9* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_tlsctx_x509verify_callback_t3334D904C28324D444B6C26BEEF29B5E07D9D58D* ___cb1, void* ___userData2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___ctx0, ___cb1, ___userData2, ___errorState3, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* unitytls_key_parse_der_t_Invoke_m244086296EBDE0C0B0F072B33AAD5BA39A030DB6_inline (unitytls_key_parse_der_t_tC218AEF9253FA105762F39041F696A06C52D3F10* __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, uint8_t* ___password2, intptr_t ___passwordLen3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method)
{
typedef unitytls_key_t4E1CA76E75CB31C6E958E558F9FBE7BA02EB0DC8* (*FunctionPointerType) (unitytls_key_parse_der_t_tC218AEF9253FA105762F39041F696A06C52D3F10* __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, uint8_t* ___password2, intptr_t ___passwordLen3, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState4, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t unitytls_tlsctx_read_t_Invoke_m0FB34952D7592128A211AA0DA5536A325494FA04_inline (unitytls_tlsctx_read_t_t3E3C711F7A47E704ABDF0DF0B7515E7306EB7C95* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef intptr_t (*FunctionPointerType) (unitytls_tlsctx_read_t_t3E3C711F7A47E704ABDF0DF0B7515E7306EB7C95* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___ctx0, ___buffer1, ___bufferLen2, ___errorState3, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t unitytls_tlsctx_write_t_Invoke_mC6A06FBF8E4C5652830248B521C83865B3F2DBBC_inline (unitytls_tlsctx_write_t_t976A41600B61F9C8DF022296B67316FFA53EB386* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint8_t* ___data1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef intptr_t (*FunctionPointerType) (unitytls_tlsctx_write_t_t976A41600B61F9C8DF022296B67316FFA53EB386* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint8_t* ___data1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___ctx0, ___data1, ___bufferLen2, ___errorState3, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MonoTlsSettings_get_SendCloseNotify_m1D35BCF28142455EC9CDF16CA36A8DEF57B05625_inline (MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___U3CSendCloseNotifyU3Ek__BackingField_6;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void unitytls_tlsctx_notify_close_t_Invoke_m6E5688DDA03F313A1C470E4C30263C5B4A174138_inline (unitytls_tlsctx_notify_close_t_t717D19846262E3DF5D1A69C5E136912E7A54B253* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_tlsctx_notify_close_t_t717D19846262E3DF5D1A69C5E136912E7A54B253* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___ctx0, ___errorState1, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void unitytls_tlsctx_free_t_Invoke_mC5D5191740D2507A83D95B4B3E6CE4C4A9FBAFD2_inline (unitytls_tlsctx_free_t_tFBF7BB64D2E1C183718FB5809ABF0051395FD8F0* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_tlsctx_free_t_tFBF7BB64D2E1C183718FB5809ABF0051395FD8F0* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___ctx0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR CipherSuiteCodeU5BU5D_t61EC0E6F53394985FFC36DEB587C70F4EE26D435* MonoTlsSettings_get_EnabledCiphers_m7BD72B78EF53FAF51FEEBF5B3657187EC876394A_inline (MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* __this, const RuntimeMethod* method)
{
{
CipherSuiteCodeU5BU5D_t61EC0E6F53394985FFC36DEB587C70F4EE26D435* L_0 = __this->___U3CEnabledCiphersU3Ek__BackingField_10;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void unitytls_tlsctx_set_supported_ciphersuites_t_Invoke_m8E153461EFCEAAAF59D1E918F7C06B14358B43E2_inline (unitytls_tlsctx_set_supported_ciphersuites_t_t007E8706D364DE695F1DBF28358058A1E73DF544* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint32_t* ___supportedCiphersuites1, intptr_t ___supportedCiphersuitesLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_tlsctx_set_supported_ciphersuites_t_t007E8706D364DE695F1DBF28358058A1E73DF544* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, uint32_t* ___supportedCiphersuites1, intptr_t ___supportedCiphersuitesLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___ctx0, ___supportedCiphersuites1, ___supportedCiphersuitesLen2, ___errorState3, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t unitytls_tlsctx_process_handshake_t_Invoke_mD8F2422C5C6C9FF0ADDAB17AECB998C2E225CF7A_inline (unitytls_tlsctx_process_handshake_t_t8D94F5FAD00CD61BF950829866C0C6E29D202606* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
typedef uint32_t (*FunctionPointerType) (unitytls_tlsctx_process_handshake_t_t8D94F5FAD00CD61BF950829866C0C6E29D202606* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___ctx0, ___errorState1, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MobileTlsContext_get_IsServer_m79E765F4FA8DAF1C98322134D48F6CACBEC824B7_inline (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___U3CIsServerU3Ek__BackingField_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t unitytls_tlsctx_get_ciphersuite_t_Invoke_m2DF155D62800CFFD66AC63538F69DB2275EC3FFD_inline (unitytls_tlsctx_get_ciphersuite_t_t7317543D399259616648B1AA19447C4B63F70EF2* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
typedef uint32_t (*FunctionPointerType) (unitytls_tlsctx_get_ciphersuite_t_t7317543D399259616648B1AA19447C4B63F70EF2* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___ctx0, ___errorState1, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t unitytls_tlsctx_get_protocol_t_Invoke_m3D931DDD241F0B3EDA8F6F1EFA159C0669E7E3F0_inline (unitytls_tlsctx_get_protocol_t_t04E3B73C1D77379F7C7388ED4934189365326F3C* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method)
{
typedef uint32_t (*FunctionPointerType) (unitytls_tlsctx_get_protocol_t_t04E3B73C1D77379F7C7388ED4934189365326F3C* __this, unitytls_tlsctx_tF8BBCBFE1E957B846442DED65ECB89BC5307DEAE* ___ctx0, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState1, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___ctx0, ___errorState1, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MonoTlsConnectionInfo_set_CipherSuiteCode_m3BC21FD10B760939C96F6FBDB39DFEADDE50CCF5_inline (MonoTlsConnectionInfo_t3286AE494AEF3E62C9BE40FAC497849DFA193964* __this, uint16_t ___value0, const RuntimeMethod* method)
{
{
uint16_t L_0 = ___value0;
__this->___U3CCipherSuiteCodeU3Ek__BackingField_0 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MonoTlsConnectionInfo_set_ProtocolVersion_m166E8E558B961F343E719D333A892E597AB17404_inline (MonoTlsConnectionInfo_t3286AE494AEF3E62C9BE40FAC497849DFA193964* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->___U3CProtocolVersionU3Ek__BackingField_1 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* MobileTlsContext_get_ServerName_m3CF7B9F7D249B9B2F553B5A72F439B5502229BF3_inline (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CServerNameU3Ek__BackingField_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MonoTlsConnectionInfo_set_PeerDomainName_mDCAB6395BFE1BEF3ACEF680AEA6A3FA4DDEA2A97_inline (MonoTlsConnectionInfo_t3286AE494AEF3E62C9BE40FAC497849DFA193964* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CPeerDomainNameU3Ek__BackingField_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CPeerDomainNameU3Ek__BackingField_2), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* MobileTlsContext_get_Parent_mC509F430FE5581A104C62FB3A08AE9D97DE19098_inline (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* __this, const RuntimeMethod* method)
{
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_0 = __this->___U3CParentU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void unitytls_errorstate_raise_error_t_Invoke_m9B2B3433846A318340EDF0ED0E33C45030CCEA02_inline (unitytls_errorstate_raise_error_t_t8C20FC78CA5BBEE0248CC09D1C1AF25BCB3835CF* __this, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState0, uint32_t ___errorCode1, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_errorstate_raise_error_t_t8C20FC78CA5BBEE0248CC09D1C1AF25BCB3835CF* __this, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState0, uint32_t ___errorCode1, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___errorState0, ___errorCode1, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* X509ChainElement_get_Certificate_m6AF210BCAD2D94C19DFEF475BDAA84E5FF4AF105_inline (X509ChainElement_t95FFAD3F504A1CA731ECCBA88C5CB3B0EE28786D* __this, const RuntimeMethod* method)
{
{
X509Certificate2_t2BEAEA485A3CEA81D191B12A341675DBC54CDD2D* L_0 = __this->___certificate_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void unitytls_x509list_append_t_Invoke_mEF1811CFAD02743F745D8A8E09E2E84D68154976_inline (unitytls_x509list_append_t_tC84B9CA7C15F5D1DE98386670A80D5F98559D98E* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 ___cert1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (unitytls_x509list_append_t_tC84B9CA7C15F5D1DE98386670A80D5F98559D98E* __this, unitytls_x509list_t9F49349BFFD2483DA42E52D9E2028974727181F6* ___list0, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 ___cert1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___list0, ___cert1, ___errorState2, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 X509ChainImplUnityTls_get_NativeCertificateChain_mBFE146631BDB57BB66B00EBB21414AC7AFF73E72_inline (X509ChainImplUnityTls_t37736839B9CDAD02F5F02693121A4C18C0020B40* __this, const RuntimeMethod* method)
{
{
unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 L_0 = __this->___nativeCertificateChain_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 unitytls_x509list_get_x509_t_Invoke_m9080273A34FE768B80024B96001D5B7451A46EC0_inline (unitytls_x509list_get_x509_t_t428DCD367D50DCDD5ECE6DCFEB8967C5F7C3DFE8* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___list0, intptr_t ___index1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method)
{
typedef unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 (*FunctionPointerType) (unitytls_x509list_get_x509_t_t428DCD367D50DCDD5ECE6DCFEB8967C5F7C3DFE8* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___list0, intptr_t ___index1, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState2, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___list0, ___index1, ___errorState2, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* ChainValidationHelper_get_Settings_m94E2DC79CB696A4F54956D812983E62FEB33D22E_inline (ChainValidationHelper_t5BAFD168AF916EAD45963A656515931724328755* __this, const RuntimeMethod* method)
{
{
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_0 = __this->___settings_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* MonoTlsSettings_get_TrustAnchors_m4CA73EEBF73B4344C5334F3BC5BBFE1BC27BC7AE_inline (MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* __this, const RuntimeMethod* method)
{
{
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* L_0 = __this->___U3CTrustAnchorsU3Ek__BackingField_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t unitytls_x509verify_explicit_ca_t_Invoke_m4028A9AE8FD6B69DB36BAE68CC3A3362A825738B_inline (unitytls_x509verify_explicit_ca_t_t1B3D98BF01F059A3C2ADE87EFDDA03C557A3D08D* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain0, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___trustCA1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* ___cb4, void* ___userData5, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState6, const RuntimeMethod* method)
{
typedef uint32_t (*FunctionPointerType) (unitytls_x509verify_explicit_ca_t_t1B3D98BF01F059A3C2ADE87EFDDA03C557A3D08D* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain0, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___trustCA1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* ___cb4, void* ___userData5, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState6, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___chain0, ___trustCA1, ___cn2, ___cnLen3, ___cb4, ___userData5, ___errorState6, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t unitytls_x509verify_default_ca_t_Invoke_m1D112FD2010361D2DB08F08A598000ADCD0875C3_inline (unitytls_x509verify_default_ca_t_tED88B7ABC8408A22DB51B1F57D5FC65BDD2EC809* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain0, uint8_t* ___cn1, intptr_t ___cnLen2, unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* ___cb3, void* ___userData4, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState5, const RuntimeMethod* method)
{
typedef uint32_t (*FunctionPointerType) (unitytls_x509verify_default_ca_t_tED88B7ABC8408A22DB51B1F57D5FC65BDD2EC809* __this, unitytls_x509list_ref_t6C5C1CF0B720516A681CB741104A164FD8B3CF17 ___chain0, uint8_t* ___cn1, intptr_t ___cnLen2, unitytls_x509verify_callback_t1B72B7CF228F76F09A6A75C54C15F2084C01CA09* ___cb3, void* ___userData4, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState5, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___chain0, ___cn1, ___cnLen2, ___cb3, ___userData4, ___errorState5, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t unitytls_x509_export_der_t_Invoke_m13DB2E205EF9ED37B75F5B763C5080E7077841AD_inline (unitytls_x509_export_der_t_tB784597940DE501BB5FEFA3EA528634559A16749* __this, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 ___cert0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method)
{
typedef intptr_t (*FunctionPointerType) (unitytls_x509_export_der_t_tB784597940DE501BB5FEFA3EA528634559A16749* __this, unitytls_x509_ref_t9CEB17766B4144117333AB50379B21A357FA4333 ___cert0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_tC926EE4582920BE2C1DB1F3F65619B810D5AB902* ___errorState3, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___cert0, ___buffer1, ___bufferLen2, ___errorState3, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
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 int32_t AsyncProtocolRequest_get_UserResult_mA77AFFB0D9A5FD69E5EEC51CB0F80C25E31D0759_inline (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___U3CUserResultU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* AsyncProtocolRequest_get_Parent_m20DA5526115969E9D32B61999A044FF0618AFF92_inline (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* __this, const RuntimeMethod* method)
{
{
MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* L_0 = __this->___U3CParentU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool AsyncProtocolRequest_get_RunSynchronously_m5E10561209866EE44A27D35A1F4762008063B4BF_inline (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___U3CRunSynchronouslyU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* AsyncReadOrWriteRequest_get_UserBuffer_mD158BF301713ADC8899B3F3CFF7D18B76A956417_inline (AsyncReadOrWriteRequest_tEE5EFA76D488CBB46DBCA56E9914A0E5BF6D4680* __this, const RuntimeMethod* method)
{
{
BufferOffsetSize_t7D6B36AEFF7B7AC442A8AE00010525F8EE70A4DE* L_0 = __this->___U3CUserBufferU3Ek__BackingField_7;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void AsyncProtocolRequest_set_UserResult_mD84274B3348783A6E03B9000BB82E0737E1EC974_inline (AsyncProtocolRequest_tF31CF30F8C57A3D5DC10A9FB0A5568FA254DFE86* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->___U3CUserResultU3Ek__BackingField_2 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t AsyncReadOrWriteRequest_get_CurrentSize_m4230AD05749403B840042BB7531124C6A96980E6_inline (AsyncReadOrWriteRequest_tEE5EFA76D488CBB46DBCA56E9914A0E5BF6D4680* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___U3CCurrentSizeU3Ek__BackingField_8;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void AsyncReadOrWriteRequest_set_CurrentSize_mBCD300A1CD6FF110A3527E80711A820FEFC2F9E1_inline (AsyncReadOrWriteRequest_tEE5EFA76D488CBB46DBCA56E9914A0E5BF6D4680* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->___U3CCurrentSizeU3Ek__BackingField_8 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* MonoTlsSettings_get_CertificateValidator_m2DC79DA38E7CB5E87A21E315A29F21E1D9ACF367_inline (MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___certificateValidator_17;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MonoLocalCertificateSelectionCallback_t34F7772BA5ECE38E6CBD4C311F579DD1D4724DE3* MonoTlsSettings_get_ClientCertificateSelectionCallback_mCFE63487D867109AD1AF856ECC8BA0996C0AA605_inline (MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* __this, const RuntimeMethod* method)
{
{
MonoLocalCertificateSelectionCallback_t34F7772BA5ECE38E6CBD4C311F579DD1D4724DE3* L_0 = __this->___U3CClientCertificateSelectionCallbackU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 MonoTlsSettings_get_UseServicePointManagerCallback_m11F6CF11F844ED2F6D54497CBAB18E04E6AFD754_inline (MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* __this, const RuntimeMethod* method)
{
{
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 L_0 = __this->___useServicePointManagerCallback_14;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* MonoTlsStream_get_Request_m5F3CDE9EA1921F1A45C0FAE20DD4BA634D0D8D83_inline (MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* __this, const RuntimeMethod* method)
{
{
HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* L_0 = __this->___request_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ServerCertValidationCallback_tC7A568060163FC6810AF9817F26F986C78CFC27F* HttpWebRequest_get_ServerCertValidationCallback_m8822E8093BBEE23482561CCB65D6AF3B7B1B464E_inline (HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* __this, const RuntimeMethod* method)
{
{
ServerCertValidationCallback_tC7A568060163FC6810AF9817F26F986C78CFC27F* L_0 = __this->___certValidationCallback_61;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ServerCertValidationCallback_tC7A568060163FC6810AF9817F26F986C78CFC27F* ServicePointManager_get_ServerCertValidationCallback_m9436D7CB2C84F88A2F878C700D5B3B34B85B911D_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ServicePointManager_t124F9D59A0C6581AC0C21156D657A2EB3C7EE120_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(ServicePointManager_t124F9D59A0C6581AC0C21156D657A2EB3C7EE120_il2cpp_TypeInfo_var);
ServerCertValidationCallback_tC7A568060163FC6810AF9817F26F986C78CFC27F* L_0 = ((ServicePointManager_t124F9D59A0C6581AC0C21156D657A2EB3C7EE120_StaticFields*)il2cpp_codegen_static_fields_for(ServicePointManager_t124F9D59A0C6581AC0C21156D657A2EB3C7EE120_il2cpp_TypeInfo_var))->___server_cert_cb_10;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MonoRemoteCertificateValidationCallback_t1A389B61998873F6B9A2EE7A11C36333A8AECCA0* MonoTlsSettings_get_RemoteCertificateValidationCallback_mE07825B4A75DAE2A4BB5037D504A36311814446C_inline (MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* __this, const RuntimeMethod* method)
{
{
MonoRemoteCertificateValidationCallback_t1A389B61998873F6B9A2EE7A11C36333A8AECCA0* L_0 = __this->___U3CRemoteCertificateValidationCallbackU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* LocalCertSelectionCallback_Invoke_m3AD956B5D53937117BD3E036068B49615337B5B9_inline (LocalCertSelectionCallback_t3AB79A8AA642074A3EF886118963EEA3CCABABE2* __this, String_t* ___targetHost0, X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* ___localCertificates1, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___remoteCertificate2, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___acceptableIssuers3, const RuntimeMethod* method)
{
typedef X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* (*FunctionPointerType) (LocalCertSelectionCallback_t3AB79A8AA642074A3EF886118963EEA3CCABABE2* __this, String_t* ___targetHost0, X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* ___localCertificates1, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___remoteCertificate2, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___acceptableIssuers3, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___targetHost0, ___localCertificates1, ___remoteCertificate2, ___acceptableIssuers3, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ValidationResult_get_Trusted_mC74B0DA857D9879C6A7428DB31DEA8A2DCD9DFF2_inline (ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___trusted_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ValidationResult_get_UserDenied_m8714FE685A3F0214EE05C59AFE8ABC71CE614E0B_inline (ValidationResult_tA2D081EFDCACB432906DA5B9436FC25A554FC6A5* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___user_denied_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MonoTlsStream_set_CertificateValidationFailed_m225E1AA3894B292682A2BF06B886693A11DEAFEC_inline (MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->___U3CCertificateValidationFailedU3Ek__BackingField_7 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* ServicePointManager_GetLegacyCertificatePolicy_mBD5DCFD553FEEE50F78A70BAB63F95ACF21A25FC_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ServicePointManager_t124F9D59A0C6581AC0C21156D657A2EB3C7EE120_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(ServicePointManager_t124F9D59A0C6581AC0C21156D657A2EB3C7EE120_il2cpp_TypeInfo_var);
RuntimeObject* L_0 = ((ServicePointManager_t124F9D59A0C6581AC0C21156D657A2EB3C7EE120_StaticFields*)il2cpp_codegen_static_fields_for(ServicePointManager_t124F9D59A0C6581AC0C21156D657A2EB3C7EE120_il2cpp_TypeInfo_var))->___policy_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MonoTlsSettings_get_CallbackNeedsCertificateChain_m02260798D928BDA7F6D9A2356B7CE688650BF176_inline (MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___callbackNeedsChain_16;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ServicePoint_t5DB5939994CAA6A0DF221C5F58D59D1A6131CE29* HttpWebRequest_get_ServicePointNoLock_m302BC1F3A189D46E652B79981E8D29095E5D5C61_inline (HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* __this, const RuntimeMethod* method)
{
{
ServicePoint_t5DB5939994CAA6A0DF221C5F58D59D1A6131CE29* L_0 = __this->___servicePoint_40;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MonoRemoteCertificateValidationCallback_Invoke_m8BE32AE7FE1BE89EFB6A49559431916F785D2BD9_inline (MonoRemoteCertificateValidationCallback_t1A389B61998873F6B9A2EE7A11C36333A8AECCA0* __this, String_t* ___targetHost0, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___certificate1, X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* ___chain2, int32_t ___sslPolicyErrors3, const RuntimeMethod* method)
{
typedef bool (*FunctionPointerType) (MonoRemoteCertificateValidationCallback_t1A389B61998873F6B9A2EE7A11C36333A8AECCA0* __this, String_t* ___targetHost0, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___certificate1, X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* ___chain2, int32_t ___sslPolicyErrors3, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___targetHost0, ___certificate1, ___chain2, ___sslPolicyErrors3, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* AuthenticatedStream_get_InnerStream_m5BDA4857898A90C696DAD90FD61C536FC3EB10C7_inline (AuthenticatedStream_t8DCF41E151F705E2494FC7836F5E2EF7C539FA39* __this, const RuntimeMethod* method)
{
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0 = __this->____InnerStream_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* MobileTlsContext_get_LocalServerCertificate_m20FDC85F1F18C42644D48872EBAF9A6247624E09_inline (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* __this, const RuntimeMethod* method)
{
{
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_0 = __this->___U3CLocalServerCertificateU3Ek__BackingField_9;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ServerCertSelectionCallback_t653386CAEAE0236FCF61A92963AB1646BB23C654* MonoSslAuthenticationOptions_get_ServerCertSelectionDelegate_m8F35626050A015130D823BA68862416889F75A42_inline (MonoSslAuthenticationOptions_t50E83A9A2B726808720B74CBD44D3ABC2593B611* __this, const RuntimeMethod* method)
{
{
ServerCertSelectionCallback_t653386CAEAE0236FCF61A92963AB1646BB23C654* L_0 = __this->___U3CServerCertSelectionDelegateU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MobileAuthenticatedStream_set_TargetHost_m490855169728C94C8FEAD0689D2FA3E578046BB6_inline (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CTargetHostU3Ek__BackingField_21 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CTargetHostU3Ek__BackingField_21), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* AsyncProtocolResult_get_Error_m2A01329BA71151C59E17E3D8812932AD02EF5C05_inline (AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05* __this, const RuntimeMethod* method)
{
{
ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_0 = __this->___U3CErrorU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t AsyncProtocolResult_get_UserResult_mEDF85928DEE138CA072E0BADB697024616981ABF_inline (AsyncProtocolResult_t9A7197618C6BD851C5A33C65F45B4622C3CF9E05* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___U3CUserResultU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MobileTlsContext_set_LocalServerCertificate_m32343DBF091AD80FA29DD8184C0C99C72FE43FEF_inline (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* __this, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___value0, const RuntimeMethod* method)
{
{
X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* L_0 = ___value0;
__this->___U3CLocalServerCertificateU3Ek__BackingField_9 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CLocalServerCertificateU3Ek__BackingField_9), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* MobileAuthenticatedStream_get_SslStream_mAF94411F0FF2126C8D8C1E9AABBC8CDA7EB73087_inline (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, const RuntimeMethod* method)
{
{
SslStream_t19A079881850F9CAD7BAA6FB625BBC4647ED5A27* L_0 = __this->___U3CSslStreamU3Ek__BackingField_18;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* MobileAuthenticatedStream_get_Provider_m9AE08411140D0CC27ADC979E0E290ECD70A47359_inline (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, const RuntimeMethod* method)
{
{
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* L_0 = __this->___U3CProviderU3Ek__BackingField_20;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* MobileAuthenticatedStream_get_Settings_m21B268EC66FBAF762EC443B8FC784F1251444A96_inline (MobileAuthenticatedStream_tD0306DC2B0CDA3C7DB261C19FFA35CA8EE24309E* __this, const RuntimeMethod* method)
{
{
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_0 = __this->___U3CSettingsU3Ek__BackingField_19;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* MobileTlsContext_get_TargetHost_m82FF5791372BEF41AC5E73E368824231CC4F5528_inline (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CTargetHostU3Ek__BackingField_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MonoTlsSettings_get_DisallowUnauthenticatedCertificateRequest_m15B7CAB13F2301D201AAD092DF2FCB49366ABDF6_inline (MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___U3CDisallowUnauthenticatedCertificateRequestU3Ek__BackingField_8;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* MobileTlsContext_get_ClientCertificates_m675A2D5E4F7FCB85B4B412A5659953184065C9EE_inline (MobileTlsContext_t456DDC89866EE34EF32EEF959AD92C9F17684476* __this, const RuntimeMethod* method)
{
{
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* L_0 = __this->___U3CClientCertificatesU3Ek__BackingField_8;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR SslClientAuthenticationOptions_tA5277DAACAFB33887D2513D9399C5154B0D5CBC9* MonoSslClientAuthenticationOptions_get_Options_m67D736F913351C90F780A66F1A7C40832825D268_inline (MonoSslClientAuthenticationOptions_t3E7BE167D6FD1DF304F36964DF4616E02378381F* __this, const RuntimeMethod* method)
{
{
SslClientAuthenticationOptions_tA5277DAACAFB33887D2513D9399C5154B0D5CBC9* L_0 = __this->___U3COptionsU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SslClientAuthenticationOptions_get_EnabledSslProtocols_mEC43F31DCFB3322900792809C72AC48070A9D93B_inline (SslClientAuthenticationOptions_tA5277DAACAFB33887D2513D9399C5154B0D5CBC9* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____enabledSslProtocols_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SslClientAuthenticationOptions_set_EnabledSslProtocols_mC0D304F69A5DC05292B87E00A73415BC83A632D5_inline (SslClientAuthenticationOptions_tA5277DAACAFB33887D2513D9399C5154B0D5CBC9* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->____enabledSslProtocols_2 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* SslClientAuthenticationOptions_get_TargetHost_mC4CF1905E7B4F8193544D4997E305406B976A797_inline (SslClientAuthenticationOptions_tA5277DAACAFB33887D2513D9399C5154B0D5CBC9* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CTargetHostU3Ek__BackingField_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SslClientAuthenticationOptions_set_TargetHost_m0D8FF94F267DC51F2BDE6E1C94C2CD67783C4019_inline (SslClientAuthenticationOptions_tA5277DAACAFB33887D2513D9399C5154B0D5CBC9* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CTargetHostU3Ek__BackingField_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CTargetHostU3Ek__BackingField_4), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* SslClientAuthenticationOptions_get_ClientCertificates_mD6898001726E82ADD9E3083D78BD05DB619B313C_inline (SslClientAuthenticationOptions_tA5277DAACAFB33887D2513D9399C5154B0D5CBC9* __this, const RuntimeMethod* method)
{
{
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* L_0 = __this->___U3CClientCertificatesU3Ek__BackingField_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SslClientAuthenticationOptions_set_ClientCertificates_m08B053F1C158912EEA43A4A28D37A740041CA78B_inline (SslClientAuthenticationOptions_tA5277DAACAFB33887D2513D9399C5154B0D5CBC9* __this, X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* ___value0, const RuntimeMethod* method)
{
{
X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* L_0 = ___value0;
__this->___U3CClientCertificatesU3Ek__BackingField_5 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CClientCertificatesU3Ek__BackingField_5), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* HttpWebRequest_get_TlsSettings_mE4E8C9107E0930061977FA03EE87DECE51C503D9_inline (HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* __this, const RuntimeMethod* method)
{
{
MonoTlsSettings_tD79AF4AE5C2CD533A3D7A08FED479B1EC1A031B0* L_0 = __this->___tlsSettings_60;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* HttpWebRequest_get_TlsProvider_mF4A43E69AE84D8AEEAE9FDCEE296DB7C83301123_inline (HttpWebRequest_tDE1EF6EAE715BE99DB1645ED937A6A2AB930E7C9* __this, const RuntimeMethod* method)
{
{
MobileTlsProvider_tD60D82BEBF267F50F388A026DBB092C7188BB017* L_0 = __this->___tlsProvider_59;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ServicePointManager_get_SecurityProtocol_m30A1F0981535D5FCD93219E4759C13136FE1DACB_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ServicePointManager_t124F9D59A0C6581AC0C21156D657A2EB3C7EE120_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(ServicePointManager_t124F9D59A0C6581AC0C21156D657A2EB3C7EE120_il2cpp_TypeInfo_var);
int32_t L_0 = ((ServicePointManager_t124F9D59A0C6581AC0C21156D657A2EB3C7EE120_StaticFields*)il2cpp_codegen_static_fields_for(ServicePointManager_t124F9D59A0C6581AC0C21156D657A2EB3C7EE120_il2cpp_TypeInfo_var))->____securityProtocol_7;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ServicePointManager_get_CheckCertificateRevocationList_mC0CDB007A91C59573B664FAB178B756F78561534_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ServicePointManager_t124F9D59A0C6581AC0C21156D657A2EB3C7EE120_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(ServicePointManager_t124F9D59A0C6581AC0C21156D657A2EB3C7EE120_il2cpp_TypeInfo_var);
bool L_0 = ((ServicePointManager_t124F9D59A0C6581AC0C21156D657A2EB3C7EE120_StaticFields*)il2cpp_codegen_static_fields_for(ServicePointManager_t124F9D59A0C6581AC0C21156D657A2EB3C7EE120_il2cpp_TypeInfo_var))->____checkCRL_6;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MonoTlsStream_get_CertificateValidationFailed_m28A1EF3B3EC723A5A0114B613F7BF9B6AB90555F_inline (MonoTlsStream_t1CE91597F244093A040334DE449975971E4BD206* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___U3CCertificateValidationFailedU3Ek__BackingField_7;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WebConnectionTunnel_get_Data_m31F4E1F83D5E2AB65A5F7128A9AD64870DEE58BA_inline (WebConnectionTunnel_tA394C00C106FAA694D0D5B7A5B03B3B52328DC0F* __this, const RuntimeMethod* method)
{
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = __this->___U3CDataU3Ek__BackingField_11;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool RemoteCertificateValidationCallback_Invoke_m5256BF7D3B9BFFFAA959191FD5117C393F670D83_inline (RemoteCertificateValidationCallback_t2F4C5801F96B2C2BF934511796C5BFEAEBF01955* __this, RuntimeObject* ___sender0, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___certificate1, X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* ___chain2, int32_t ___sslPolicyErrors3, const RuntimeMethod* method)
{
typedef bool (*FunctionPointerType) (RemoteCertificateValidationCallback_t2F4C5801F96B2C2BF934511796C5BFEAEBF01955* __this, RuntimeObject* ___sender0, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___certificate1, X509Chain_t2E7F88A4C97CAB82AF938F13A11354A0475469E5* ___chain2, int32_t ___sslPolicyErrors3, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___sender0, ___certificate1, ___chain2, ___sslPolicyErrors3, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* MonoLocalCertificateSelectionCallback_Invoke_m32D010A24184A7BEEE6191B19F04E2E8AC8C3CEE_inline (MonoLocalCertificateSelectionCallback_t34F7772BA5ECE38E6CBD4C311F579DD1D4724DE3* __this, String_t* ___targetHost0, X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* ___localCertificates1, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___remoteCertificate2, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___acceptableIssuers3, const RuntimeMethod* method)
{
typedef X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* (*FunctionPointerType) (MonoLocalCertificateSelectionCallback_t34F7772BA5ECE38E6CBD4C311F579DD1D4724DE3* __this, String_t* ___targetHost0, X509CertificateCollection_t2900D71D188EDCA7DEB5077D36103EE5DA6805CE* ___localCertificates1, X509Certificate_t966CC553AF25AE7991F5B4C2AACBCF6C66C8F9C4* ___remoteCertificate2, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___acceptableIssuers3, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___targetHost0, ___localCertificates1, ___remoteCertificate2, ___acceptableIssuers3, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t MessageBase_get_Flags_m4A5BBB1791D770EE5B78682F35F7289627B96643_inline (MessageBase_t173306F2152A17C53A4CD23954A751EE471BD708* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____flags_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MessageBase_set_Flags_m4BA4AA3CA1819FFDF10A8A5ABBE9A891BB31A95E_inline (MessageBase_t173306F2152A17C53A4CD23954A751EE471BD708* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->____flags_2 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t MessageBase_get_Type_m9A3BCA375EA72DEE93AC6814A2D042F12CE2189B_inline (MessageBase_t173306F2152A17C53A4CD23954A751EE471BD708* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____type_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Type3Message_set_Username_mE76160F96BD8EEFF971C3E04B2AD2579080E3BF8_inline (Type3Message_t17A486915FD96CAECE87CB2AE1825043A364AF66* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->____username_7 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____username_7), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Type3Message_set_Password_m04828A9F18AE9301885B4BD3C1F7F151DE63B300_inline (Type3Message_t17A486915FD96CAECE87CB2AE1825043A364AF66* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->____password_8 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____password_8), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06* StringComparer_get_OrdinalIgnoreCase_m4206775241793096770A30CE686D3B342AEDDE6E_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06_il2cpp_TypeInfo_var);
OrdinalIgnoreCaseComparer_t8BAE11990A4C855D3BCBBFB42F4EF8D45088FBB0* L_0 = ((StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06_StaticFields*)il2cpp_codegen_static_fields_for(StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06_il2cpp_TypeInfo_var))->___s_ordinalIgnoreCase_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* AsnEncodedData_get_Oid_mBDB4803B2ADEE3BD40596E82FF738C2DC339BC28_inline (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, const RuntimeMethod* method)
{
{
Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* L_0 = __this->____oid_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Oid_get_Value_m59D678A83ED4DE7D87FB7450C8CF4084DB506FD3_inline (Oid_t9CF958D45B2027FCEDB1EE544E3FBB8351F61287* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->____value_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* AsnEncodedData_get_RawData_m629D858D7D20E72C1F46124E5032FE0D3B32AADF_inline (AsnEncodedData_t9341C847F05FA5D9D579173CBB19B4448445C8A8* __this, const RuntimeMethod* method)
{
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = __this->____raw_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t HandleRef_get_Handle_m2055005E349E895499E1B3B826C89228FFAC4C17_inline (HandleRef_t4B05E32B68797F702257D4E838B85A976313F08F* __this, const RuntimeMethod* method)
{
{
intptr_t L_0 = __this->____handle_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t SafeHandle_DangerousGetHandle_mE7CB3F36EE7BB2E2623EF316C4B43D1CA44B7F9C_inline (SafeHandle_tC1A4DA80DA89B867CC011B707A07275230321BF7* __this, const RuntimeMethod* method)
{
{
intptr_t L_0 = __this->___handle_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SafeHandle_SetHandle_m003D64748F9DFBA1E3C0B23798C23BA81AA21C2A_inline (SafeHandle_tC1A4DA80DA89B867CC011B707A07275230321BF7* __this, intptr_t ___handle0, const RuntimeMethod* method)
{
{
intptr_t L_0 = ___handle0;
__this->___handle_0 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m1794A41080E7D990FC91C41044F40666784FAF5F_gshared_inline (List_1_t14F08D1F5A2E0F276F976F81CC13B7CB7EDABE33* __this, X509ChainStatus_t5A57DDA24AA1FCA9F2B8D70B767CDDF388E4A80D ___item0, const RuntimeMethod* method)
{
X509ChainStatusU5BU5D_tA4CB502E13E6D62B9C824B15F3193FE7EC889299* 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));
X509ChainStatusU5BU5D_tA4CB502E13E6D62B9C824B15F3193FE7EC889299* L_1 = (X509ChainStatusU5BU5D_tA4CB502E13E6D62B9C824B15F3193FE7EC889299*)__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;
X509ChainStatusU5BU5D_tA4CB502E13E6D62B9C824B15F3193FE7EC889299* 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));
X509ChainStatusU5BU5D_tA4CB502E13E6D62B9C824B15F3193FE7EC889299* L_6 = V_0;
int32_t L_7 = V_1;
X509ChainStatus_t5A57DDA24AA1FCA9F2B8D70B767CDDF388E4A80D L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (X509ChainStatus_t5A57DDA24AA1FCA9F2B8D70B767CDDF388E4A80D)L_8);
return;
}
IL_0034:
{
X509ChainStatus_t5A57DDA24AA1FCA9F2B8D70B767CDDF388E4A80D L_9 = ___item0;
(( void (*) (List_1_t14F08D1F5A2E0F276F976F81CC13B7CB7EDABE33*, X509ChainStatus_t5A57DDA24AA1FCA9F2B8D70B767CDDF388E4A80D, 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 ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5 ConfiguredTaskAwaitable_1_GetAwaiter_m4FE08BCFB9AA694193BDCD5B5C12F5271A1E88F5_gshared_inline (ConfiguredTaskAwaitable_1_tEC8120422100780C8C0025D1B994C33B30C4AD71* __this, const RuntimeMethod* method)
{
{
ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5 L_0 = (ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5)__this->___m_configuredTaskAwaiter_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_gshared_inline (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->___hasValue_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Nullable_1_GetValueOrDefault_m8D130DB7F2A1E694736B449176F9C26DB456597B_gshared_inline (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->___value_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80 ConfiguredTaskAwaitable_1_GetAwaiter_m7A77B1981FEC19CC7E1570EDC3F16AC5C14B4439_gshared_inline (ConfiguredTaskAwaitable_1_t5186C81524388C1718E9AC37792D8771A443417A* __this, const RuntimeMethod* method)
{
{
ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80 L_0 = (ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80)__this->___m_configuredTaskAwaiter_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_gshared_inline (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->___hasValue_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_gshared_inline (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->___value_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2 ConfiguredTaskAwaitable_1_GetAwaiter_m10364C3B0A904803E890B2D75674665F986BDAB2_gshared_inline (ConfiguredTaskAwaitable_1_t97C129EA63015240E6F9E767F4A120CC9122FEF8* __this, const RuntimeMethod* method)
{
{
ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2 L_0 = (ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2)__this->___m_configuredTaskAwaiter_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Guid_t Tuple_2_get_Item1_m9ABFF72A759CD813826F31A3A32531CE965180FD_gshared_inline (Tuple_2_t6C77F219737155994A9494DA020666D1BC9953C2* __this, const RuntimeMethod* method)
{
{
Guid_t L_0 = (Guid_t)__this->___m_Item1_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Tuple_2_get_Item2_mEAAFA3873F19AF12E94171ADE890EB6D958689F6_gshared_inline (Tuple_2_t6C77F219737155994A9494DA020666D1BC9953C2* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->___m_Item2_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* KeyValuePair_2_get_Value_mC6BD8075F9C9DDEF7B4D731E5C38EC19103988E7_gshared_inline (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->___value_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* KeyValuePair_2_get_Key_mBD8EA7557C27E6956F2AF29DA3F7499B2F51A282_gshared_inline (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->___key_0;
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 bool Nullable_1_get_HasValue_mB1F55188CDD50D6D725D41F55D2F2540CD15FB20_gshared_inline (Nullable_1_t163D49A1147F217B7BD43BE8ACC8A5CC6B846D14* __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->___hasValue_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_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 int32_t Stack_1_get_Count_mD08AE71D49787D30DDD9D484BCD323D646744D2E_gshared_inline (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, void* ___pointer0, int32_t ___length1, 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;
}
{
if (!false)
{
goto IL_0016;
}
}
{
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 4)) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_1;
L_1 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_0, NULL);
ThrowHelper_ThrowInvalidTypeWithPointersNotSupported_m6A58AD8706EDDB4CE9C309A6085249B6377C8CB5(L_1, NULL);
}
IL_0016:
{
int32_t L_2 = ___length1;
if ((((int32_t)L_2) >= ((int32_t)0)))
{
goto IL_001f;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m272CE1B3040BA89B2C478E2CF629670574F30353(NULL);
}
IL_001f:
{
void* L_3 = ___pointer0;
Il2CppChar* L_4;
L_4 = il2cpp_unsafe_as_ref<Il2CppChar>((uint8_t*)L_3);
ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 L_5;
memset((&L_5), 0, sizeof(L_5));
il2cpp_codegen_by_reference_constructor((Il2CppByReference*)(&L_5), L_4);
__this->____pointer_0 = L_5;
int32_t L_6 = ___length1;
__this->____length_1 = L_6;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D Span_1_Slice_mDC9AA64B960B9BB8357655827A8202DF83443068_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, int32_t ___start0, const RuntimeMethod* method)
{
ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___start0;
int32_t L_1 = (int32_t)__this->____length_1;
if ((!(((uint32_t)L_0) > ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m272CE1B3040BA89B2C478E2CF629670574F30353(NULL);
}
IL_000e:
{
ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 L_2 = (ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5)__this->____pointer_0;
V_0 = L_2;
Il2CppChar* L_3;
L_3 = IL2CPP_BY_REFERENCE_GET_VALUE(Il2CppChar, (Il2CppByReference*)(&V_0));
int32_t L_4 = ___start0;
Il2CppChar* L_5;
L_5 = il2cpp_unsafe_add<Il2CppChar,int32_t>(L_3, L_4);
int32_t L_6 = (int32_t)__this->____length_1;
int32_t L_7 = ___start0;
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_8;
memset((&L_8), 0, sizeof(L_8));
Span_1__ctor_mC9BE2938B716B46BB6B9070B94DBE5CE814BC0E2_inline((&L_8), L_5, ((int32_t)il2cpp_codegen_subtract(L_6, L_7)), /*hidden argument*/il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 10));
return L_8;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, int32_t ___start0, int32_t ___length1, const RuntimeMethod* method)
{
ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___start0;
int32_t L_1 = (int32_t)__this->____length_1;
if ((!(((uint32_t)L_0) <= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
int32_t L_2 = ___length1;
int32_t L_3 = (int32_t)__this->____length_1;
int32_t L_4 = ___start0;
if ((!(((uint32_t)L_2) > ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_3, L_4))))))
{
goto IL_0019;
}
}
IL_0014:
{
ThrowHelper_ThrowArgumentOutOfRangeException_m272CE1B3040BA89B2C478E2CF629670574F30353(NULL);
}
IL_0019:
{
ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 L_5 = (ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5)__this->____pointer_0;
V_0 = L_5;
Il2CppChar* L_6;
L_6 = IL2CPP_BY_REFERENCE_GET_VALUE(Il2CppChar, (Il2CppByReference*)(&V_0));
int32_t L_7 = ___start0;
Il2CppChar* L_8;
L_8 = il2cpp_unsafe_add<Il2CppChar,int32_t>(L_6, L_7);
int32_t L_9 = ___length1;
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_10;
memset((&L_10), 0, sizeof(L_10));
Span_1__ctor_mC9BE2938B716B46BB6B9070B94DBE5CE814BC0E2_inline((&L_10), L_8, L_9, /*hidden argument*/il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 10));
return L_10;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_mC9BE2938B716B46BB6B9070B94DBE5CE814BC0E2_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, Il2CppChar* ___ptr0, int32_t ___length1, const RuntimeMethod* method)
{
{
Il2CppChar* L_0 = ___ptr0;
ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 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;
}
}