UnityEngine.UnityWebRequestModule.cpp 64 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441
  1. #include "pch-cpp.hpp"
  2. #ifndef _MSC_VER
  3. # include <alloca.h>
  4. #else
  5. # include <malloc.h>
  6. #endif
  7. #include <limits>
  8. #include <stdint.h>
  9. template <typename R, typename T1>
  10. struct VirtFuncInvoker1
  11. {
  12. typedef R (*Func)(void*, T1, const RuntimeMethod*);
  13. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
  14. {
  15. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  16. return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
  17. }
  18. };
  19. template <typename T1>
  20. struct VirtActionInvoker1
  21. {
  22. typedef void (*Action)(void*, T1, const RuntimeMethod*);
  23. static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
  24. {
  25. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  26. ((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
  27. }
  28. };
  29. // System.Collections.Generic.LinkedList`1<System.Text.RegularExpressions.CachedCodeEntry>
  30. struct LinkedList_1_t0AD3FC1D19E68F4B148AFF908DC3719C9B117D92;
  31. // System.Byte[]
  32. struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726;
  33. // System.Char[]
  34. struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34;
  35. // System.String[]
  36. struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A;
  37. // UnityEngine.Networking.CertificateHandler
  38. struct CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E;
  39. // UnityEngine.Networking.DownloadHandler
  40. struct DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB;
  41. // System.Text.RegularExpressions.ExclusiveReference
  42. struct ExclusiveReference_t7F4A5D2416EA34710F520BAD225E61BC1E98D1D8;
  43. // System.Collections.Hashtable
  44. struct Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC;
  45. // System.Text.RegularExpressions.Regex
  46. struct Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F;
  47. // System.Text.RegularExpressions.RegexCode
  48. struct RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5;
  49. // System.Text.RegularExpressions.RegexRunnerFactory
  50. struct RegexRunnerFactory_tA425EC5DC77FC0AAD86EB116E5483E94679CAA96;
  51. // System.Text.RegularExpressions.SharedReference
  52. struct SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926;
  53. // System.String
  54. struct String_t;
  55. // System.Uri
  56. struct Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612;
  57. // System.UriParser
  58. struct UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A;
  59. // System.Void
  60. struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5;
  61. // System.Uri/UriInfo
  62. struct UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45;
  63. IL2CPP_EXTERN_C RuntimeClass* Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_il2cpp_TypeInfo_var;
  64. IL2CPP_EXTERN_C RuntimeClass* Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var;
  65. IL2CPP_EXTERN_C RuntimeClass* WebRequestUtils_t3FE2D9FD71A02CD3AF8C91B81280F59E5CF26392_il2cpp_TypeInfo_var;
  66. IL2CPP_EXTERN_C String_t* _stringLiteral665437E312D2053C5919723E2E7EA49D0A2ADE1F;
  67. struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726;
  68. IL2CPP_EXTERN_C_BEGIN
  69. IL2CPP_EXTERN_C_END
  70. #ifdef __clang__
  71. #pragma clang diagnostic push
  72. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  73. #pragma clang diagnostic ignored "-Wunused-variable"
  74. #endif
  75. // <Module>
  76. struct U3CModuleU3E_tC81EA6223B5DC14CA590D1BADEDD82F8EB8B39EF
  77. {
  78. public:
  79. public:
  80. };
  81. // System.Object
  82. struct Il2CppArrayBounds;
  83. // System.Array
  84. // System.String
  85. struct String_t : public RuntimeObject
  86. {
  87. public:
  88. // System.Int32 System.String::m_stringLength
  89. int32_t ___m_stringLength_0;
  90. // System.Char System.String::m_firstChar
  91. Il2CppChar ___m_firstChar_1;
  92. public:
  93. inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); }
  94. inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; }
  95. inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; }
  96. inline void set_m_stringLength_0(int32_t value)
  97. {
  98. ___m_stringLength_0 = value;
  99. }
  100. inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); }
  101. inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; }
  102. inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; }
  103. inline void set_m_firstChar_1(Il2CppChar value)
  104. {
  105. ___m_firstChar_1 = value;
  106. }
  107. };
  108. struct String_t_StaticFields
  109. {
  110. public:
  111. // System.String System.String::Empty
  112. String_t* ___Empty_5;
  113. public:
  114. inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); }
  115. inline String_t* get_Empty_5() const { return ___Empty_5; }
  116. inline String_t** get_address_of_Empty_5() { return &___Empty_5; }
  117. inline void set_Empty_5(String_t* value)
  118. {
  119. ___Empty_5 = value;
  120. Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value);
  121. }
  122. };
  123. // System.ValueType
  124. struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 : public RuntimeObject
  125. {
  126. public:
  127. public:
  128. };
  129. // Native definition for P/Invoke marshalling of System.ValueType
  130. struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_pinvoke
  131. {
  132. };
  133. // Native definition for COM marshalling of System.ValueType
  134. struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_com
  135. {
  136. };
  137. // UnityEngineInternal.WebRequestUtils
  138. struct WebRequestUtils_t3FE2D9FD71A02CD3AF8C91B81280F59E5CF26392 : public RuntimeObject
  139. {
  140. public:
  141. public:
  142. };
  143. struct WebRequestUtils_t3FE2D9FD71A02CD3AF8C91B81280F59E5CF26392_StaticFields
  144. {
  145. public:
  146. // System.Text.RegularExpressions.Regex UnityEngineInternal.WebRequestUtils::domainRegex
  147. Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * ___domainRegex_0;
  148. public:
  149. inline static int32_t get_offset_of_domainRegex_0() { return static_cast<int32_t>(offsetof(WebRequestUtils_t3FE2D9FD71A02CD3AF8C91B81280F59E5CF26392_StaticFields, ___domainRegex_0)); }
  150. inline Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * get_domainRegex_0() const { return ___domainRegex_0; }
  151. inline Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F ** get_address_of_domainRegex_0() { return &___domainRegex_0; }
  152. inline void set_domainRegex_0(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * value)
  153. {
  154. ___domainRegex_0 = value;
  155. Il2CppCodeGenWriteBarrier((void**)(&___domainRegex_0), (void*)value);
  156. }
  157. };
  158. // System.Boolean
  159. struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37
  160. {
  161. public:
  162. // System.Boolean System.Boolean::m_value
  163. bool ___m_value_0;
  164. public:
  165. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37, ___m_value_0)); }
  166. inline bool get_m_value_0() const { return ___m_value_0; }
  167. inline bool* get_address_of_m_value_0() { return &___m_value_0; }
  168. inline void set_m_value_0(bool value)
  169. {
  170. ___m_value_0 = value;
  171. }
  172. };
  173. struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields
  174. {
  175. public:
  176. // System.String System.Boolean::TrueString
  177. String_t* ___TrueString_5;
  178. // System.String System.Boolean::FalseString
  179. String_t* ___FalseString_6;
  180. public:
  181. inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___TrueString_5)); }
  182. inline String_t* get_TrueString_5() const { return ___TrueString_5; }
  183. inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; }
  184. inline void set_TrueString_5(String_t* value)
  185. {
  186. ___TrueString_5 = value;
  187. Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value);
  188. }
  189. inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___FalseString_6)); }
  190. inline String_t* get_FalseString_6() const { return ___FalseString_6; }
  191. inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; }
  192. inline void set_FalseString_6(String_t* value)
  193. {
  194. ___FalseString_6 = value;
  195. Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value);
  196. }
  197. };
  198. // System.Byte
  199. struct Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056
  200. {
  201. public:
  202. // System.Byte System.Byte::m_value
  203. uint8_t ___m_value_0;
  204. public:
  205. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056, ___m_value_0)); }
  206. inline uint8_t get_m_value_0() const { return ___m_value_0; }
  207. inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; }
  208. inline void set_m_value_0(uint8_t value)
  209. {
  210. ___m_value_0 = value;
  211. }
  212. };
  213. // System.Char
  214. struct Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14
  215. {
  216. public:
  217. // System.Char System.Char::m_value
  218. Il2CppChar ___m_value_0;
  219. public:
  220. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14, ___m_value_0)); }
  221. inline Il2CppChar get_m_value_0() const { return ___m_value_0; }
  222. inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; }
  223. inline void set_m_value_0(Il2CppChar value)
  224. {
  225. ___m_value_0 = value;
  226. }
  227. };
  228. struct Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_StaticFields
  229. {
  230. public:
  231. // System.Byte[] System.Char::categoryForLatin1
  232. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___categoryForLatin1_3;
  233. public:
  234. inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_StaticFields, ___categoryForLatin1_3)); }
  235. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; }
  236. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; }
  237. inline void set_categoryForLatin1_3(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
  238. {
  239. ___categoryForLatin1_3 = value;
  240. Il2CppCodeGenWriteBarrier((void**)(&___categoryForLatin1_3), (void*)value);
  241. }
  242. };
  243. // System.Enum
  244. struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA : public ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52
  245. {
  246. public:
  247. public:
  248. };
  249. struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields
  250. {
  251. public:
  252. // System.Char[] System.Enum::enumSeperatorCharArray
  253. CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___enumSeperatorCharArray_0;
  254. public:
  255. inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields, ___enumSeperatorCharArray_0)); }
  256. inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
  257. inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
  258. inline void set_enumSeperatorCharArray_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
  259. {
  260. ___enumSeperatorCharArray_0 = value;
  261. Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
  262. }
  263. };
  264. // Native definition for P/Invoke marshalling of System.Enum
  265. struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_pinvoke
  266. {
  267. };
  268. // Native definition for COM marshalling of System.Enum
  269. struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_com
  270. {
  271. };
  272. // System.Int32
  273. struct Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046
  274. {
  275. public:
  276. // System.Int32 System.Int32::m_value
  277. int32_t ___m_value_0;
  278. public:
  279. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046, ___m_value_0)); }
  280. inline int32_t get_m_value_0() const { return ___m_value_0; }
  281. inline int32_t* get_address_of_m_value_0() { return &___m_value_0; }
  282. inline void set_m_value_0(int32_t value)
  283. {
  284. ___m_value_0 = value;
  285. }
  286. };
  287. // System.IntPtr
  288. struct IntPtr_t
  289. {
  290. public:
  291. // System.Void* System.IntPtr::m_value
  292. void* ___m_value_0;
  293. public:
  294. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
  295. inline void* get_m_value_0() const { return ___m_value_0; }
  296. inline void** get_address_of_m_value_0() { return &___m_value_0; }
  297. inline void set_m_value_0(void* value)
  298. {
  299. ___m_value_0 = value;
  300. }
  301. };
  302. struct IntPtr_t_StaticFields
  303. {
  304. public:
  305. // System.IntPtr System.IntPtr::Zero
  306. intptr_t ___Zero_1;
  307. public:
  308. inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
  309. inline intptr_t get_Zero_1() const { return ___Zero_1; }
  310. inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
  311. inline void set_Zero_1(intptr_t value)
  312. {
  313. ___Zero_1 = value;
  314. }
  315. };
  316. // System.UInt64
  317. struct UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281
  318. {
  319. public:
  320. // System.UInt64 System.UInt64::m_value
  321. uint64_t ___m_value_0;
  322. public:
  323. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281, ___m_value_0)); }
  324. inline uint64_t get_m_value_0() const { return ___m_value_0; }
  325. inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; }
  326. inline void set_m_value_0(uint64_t value)
  327. {
  328. ___m_value_0 = value;
  329. }
  330. };
  331. // System.Void
  332. struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5
  333. {
  334. public:
  335. union
  336. {
  337. struct
  338. {
  339. };
  340. uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1];
  341. };
  342. public:
  343. };
  344. // UnityEngine.Networking.CertificateHandler
  345. struct CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E : public RuntimeObject
  346. {
  347. public:
  348. // System.IntPtr UnityEngine.Networking.CertificateHandler::m_Ptr
  349. intptr_t ___m_Ptr_0;
  350. public:
  351. inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E, ___m_Ptr_0)); }
  352. inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
  353. inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
  354. inline void set_m_Ptr_0(intptr_t value)
  355. {
  356. ___m_Ptr_0 = value;
  357. }
  358. };
  359. // Native definition for P/Invoke marshalling of UnityEngine.Networking.CertificateHandler
  360. struct CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshaled_pinvoke
  361. {
  362. intptr_t ___m_Ptr_0;
  363. };
  364. // Native definition for COM marshalling of UnityEngine.Networking.CertificateHandler
  365. struct CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshaled_com
  366. {
  367. intptr_t ___m_Ptr_0;
  368. };
  369. // UnityEngine.Networking.DownloadHandler
  370. struct DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB : public RuntimeObject
  371. {
  372. public:
  373. // System.IntPtr UnityEngine.Networking.DownloadHandler::m_Ptr
  374. intptr_t ___m_Ptr_0;
  375. public:
  376. inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB, ___m_Ptr_0)); }
  377. inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
  378. inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
  379. inline void set_m_Ptr_0(intptr_t value)
  380. {
  381. ___m_Ptr_0 = value;
  382. }
  383. };
  384. // Native definition for P/Invoke marshalling of UnityEngine.Networking.DownloadHandler
  385. struct DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshaled_pinvoke
  386. {
  387. intptr_t ___m_Ptr_0;
  388. };
  389. // Native definition for COM marshalling of UnityEngine.Networking.DownloadHandler
  390. struct DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshaled_com
  391. {
  392. intptr_t ___m_Ptr_0;
  393. };
  394. // System.Text.RegularExpressions.RegexOptions
  395. struct RegexOptions_t8F8CD5BC6C55FC2B657722FD09ABDFDF5BA6F6A4
  396. {
  397. public:
  398. // System.Int32 System.Text.RegularExpressions.RegexOptions::value__
  399. int32_t ___value___2;
  400. public:
  401. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RegexOptions_t8F8CD5BC6C55FC2B657722FD09ABDFDF5BA6F6A4, ___value___2)); }
  402. inline int32_t get_value___2() const { return ___value___2; }
  403. inline int32_t* get_address_of_value___2() { return &___value___2; }
  404. inline void set_value___2(int32_t value)
  405. {
  406. ___value___2 = value;
  407. }
  408. };
  409. // System.TimeSpan
  410. struct TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203
  411. {
  412. public:
  413. // System.Int64 System.TimeSpan::_ticks
  414. int64_t ____ticks_3;
  415. public:
  416. inline static int32_t get_offset_of__ticks_3() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203, ____ticks_3)); }
  417. inline int64_t get__ticks_3() const { return ____ticks_3; }
  418. inline int64_t* get_address_of__ticks_3() { return &____ticks_3; }
  419. inline void set__ticks_3(int64_t value)
  420. {
  421. ____ticks_3 = value;
  422. }
  423. };
  424. struct TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields
  425. {
  426. public:
  427. // System.TimeSpan System.TimeSpan::Zero
  428. TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___Zero_0;
  429. // System.TimeSpan System.TimeSpan::MaxValue
  430. TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MaxValue_1;
  431. // System.TimeSpan System.TimeSpan::MinValue
  432. TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MinValue_2;
  433. // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyConfigChecked
  434. bool ____legacyConfigChecked_4;
  435. // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyMode
  436. bool ____legacyMode_5;
  437. public:
  438. inline static int32_t get_offset_of_Zero_0() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___Zero_0)); }
  439. inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_Zero_0() const { return ___Zero_0; }
  440. inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_Zero_0() { return &___Zero_0; }
  441. inline void set_Zero_0(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
  442. {
  443. ___Zero_0 = value;
  444. }
  445. inline static int32_t get_offset_of_MaxValue_1() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___MaxValue_1)); }
  446. inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MaxValue_1() const { return ___MaxValue_1; }
  447. inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MaxValue_1() { return &___MaxValue_1; }
  448. inline void set_MaxValue_1(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
  449. {
  450. ___MaxValue_1 = value;
  451. }
  452. inline static int32_t get_offset_of_MinValue_2() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___MinValue_2)); }
  453. inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MinValue_2() const { return ___MinValue_2; }
  454. inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MinValue_2() { return &___MinValue_2; }
  455. inline void set_MinValue_2(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
  456. {
  457. ___MinValue_2 = value;
  458. }
  459. inline static int32_t get_offset_of__legacyConfigChecked_4() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ____legacyConfigChecked_4)); }
  460. inline bool get__legacyConfigChecked_4() const { return ____legacyConfigChecked_4; }
  461. inline bool* get_address_of__legacyConfigChecked_4() { return &____legacyConfigChecked_4; }
  462. inline void set__legacyConfigChecked_4(bool value)
  463. {
  464. ____legacyConfigChecked_4 = value;
  465. }
  466. inline static int32_t get_offset_of__legacyMode_5() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ____legacyMode_5)); }
  467. inline bool get__legacyMode_5() const { return ____legacyMode_5; }
  468. inline bool* get_address_of__legacyMode_5() { return &____legacyMode_5; }
  469. inline void set__legacyMode_5(bool value)
  470. {
  471. ____legacyMode_5 = value;
  472. }
  473. };
  474. // System.UriIdnScope
  475. struct UriIdnScope_tBA22B992BA582F68F2B98CDEBCB24299F249DE4D
  476. {
  477. public:
  478. // System.Int32 System.UriIdnScope::value__
  479. int32_t ___value___2;
  480. public:
  481. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UriIdnScope_tBA22B992BA582F68F2B98CDEBCB24299F249DE4D, ___value___2)); }
  482. inline int32_t get_value___2() const { return ___value___2; }
  483. inline int32_t* get_address_of_value___2() { return &___value___2; }
  484. inline void set_value___2(int32_t value)
  485. {
  486. ___value___2 = value;
  487. }
  488. };
  489. // System.UriKind
  490. struct UriKind_tFC16ACC1842283AAE2C7F50C9C70EFBF6550B3FC
  491. {
  492. public:
  493. // System.Int32 System.UriKind::value__
  494. int32_t ___value___2;
  495. public:
  496. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UriKind_tFC16ACC1842283AAE2C7F50C9C70EFBF6550B3FC, ___value___2)); }
  497. inline int32_t get_value___2() const { return ___value___2; }
  498. inline int32_t* get_address_of_value___2() { return &___value___2; }
  499. inline void set_value___2(int32_t value)
  500. {
  501. ___value___2 = value;
  502. }
  503. };
  504. // System.Uri/Flags
  505. struct Flags_t72C622DF5C3ED762F55AB36EC2CCDDF3AF56B8D4
  506. {
  507. public:
  508. // System.UInt64 System.Uri/Flags::value__
  509. uint64_t ___value___2;
  510. public:
  511. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Flags_t72C622DF5C3ED762F55AB36EC2CCDDF3AF56B8D4, ___value___2)); }
  512. inline uint64_t get_value___2() const { return ___value___2; }
  513. inline uint64_t* get_address_of_value___2() { return &___value___2; }
  514. inline void set_value___2(uint64_t value)
  515. {
  516. ___value___2 = value;
  517. }
  518. };
  519. // System.Text.RegularExpressions.Regex
  520. struct Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F : public RuntimeObject
  521. {
  522. public:
  523. // System.String System.Text.RegularExpressions.Regex::pattern
  524. String_t* ___pattern_0;
  525. // System.Text.RegularExpressions.RegexRunnerFactory System.Text.RegularExpressions.Regex::factory
  526. RegexRunnerFactory_tA425EC5DC77FC0AAD86EB116E5483E94679CAA96 * ___factory_1;
  527. // System.Text.RegularExpressions.RegexOptions System.Text.RegularExpressions.Regex::roptions
  528. int32_t ___roptions_2;
  529. // System.TimeSpan System.Text.RegularExpressions.Regex::internalMatchTimeout
  530. TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___internalMatchTimeout_5;
  531. // System.Collections.Hashtable System.Text.RegularExpressions.Regex::caps
  532. Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___caps_8;
  533. // System.Collections.Hashtable System.Text.RegularExpressions.Regex::capnames
  534. Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___capnames_9;
  535. // System.String[] System.Text.RegularExpressions.Regex::capslist
  536. StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___capslist_10;
  537. // System.Int32 System.Text.RegularExpressions.Regex::capsize
  538. int32_t ___capsize_11;
  539. // System.Text.RegularExpressions.ExclusiveReference System.Text.RegularExpressions.Regex::runnerref
  540. ExclusiveReference_t7F4A5D2416EA34710F520BAD225E61BC1E98D1D8 * ___runnerref_12;
  541. // System.Text.RegularExpressions.SharedReference System.Text.RegularExpressions.Regex::replref
  542. SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926 * ___replref_13;
  543. // System.Text.RegularExpressions.RegexCode System.Text.RegularExpressions.Regex::code
  544. RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * ___code_14;
  545. // System.Boolean System.Text.RegularExpressions.Regex::refsInitialized
  546. bool ___refsInitialized_15;
  547. public:
  548. inline static int32_t get_offset_of_pattern_0() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___pattern_0)); }
  549. inline String_t* get_pattern_0() const { return ___pattern_0; }
  550. inline String_t** get_address_of_pattern_0() { return &___pattern_0; }
  551. inline void set_pattern_0(String_t* value)
  552. {
  553. ___pattern_0 = value;
  554. Il2CppCodeGenWriteBarrier((void**)(&___pattern_0), (void*)value);
  555. }
  556. inline static int32_t get_offset_of_factory_1() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___factory_1)); }
  557. inline RegexRunnerFactory_tA425EC5DC77FC0AAD86EB116E5483E94679CAA96 * get_factory_1() const { return ___factory_1; }
  558. inline RegexRunnerFactory_tA425EC5DC77FC0AAD86EB116E5483E94679CAA96 ** get_address_of_factory_1() { return &___factory_1; }
  559. inline void set_factory_1(RegexRunnerFactory_tA425EC5DC77FC0AAD86EB116E5483E94679CAA96 * value)
  560. {
  561. ___factory_1 = value;
  562. Il2CppCodeGenWriteBarrier((void**)(&___factory_1), (void*)value);
  563. }
  564. inline static int32_t get_offset_of_roptions_2() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___roptions_2)); }
  565. inline int32_t get_roptions_2() const { return ___roptions_2; }
  566. inline int32_t* get_address_of_roptions_2() { return &___roptions_2; }
  567. inline void set_roptions_2(int32_t value)
  568. {
  569. ___roptions_2 = value;
  570. }
  571. inline static int32_t get_offset_of_internalMatchTimeout_5() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___internalMatchTimeout_5)); }
  572. inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_internalMatchTimeout_5() const { return ___internalMatchTimeout_5; }
  573. inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_internalMatchTimeout_5() { return &___internalMatchTimeout_5; }
  574. inline void set_internalMatchTimeout_5(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
  575. {
  576. ___internalMatchTimeout_5 = value;
  577. }
  578. inline static int32_t get_offset_of_caps_8() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___caps_8)); }
  579. inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_caps_8() const { return ___caps_8; }
  580. inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_caps_8() { return &___caps_8; }
  581. inline void set_caps_8(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value)
  582. {
  583. ___caps_8 = value;
  584. Il2CppCodeGenWriteBarrier((void**)(&___caps_8), (void*)value);
  585. }
  586. inline static int32_t get_offset_of_capnames_9() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___capnames_9)); }
  587. inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_capnames_9() const { return ___capnames_9; }
  588. inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_capnames_9() { return &___capnames_9; }
  589. inline void set_capnames_9(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value)
  590. {
  591. ___capnames_9 = value;
  592. Il2CppCodeGenWriteBarrier((void**)(&___capnames_9), (void*)value);
  593. }
  594. inline static int32_t get_offset_of_capslist_10() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___capslist_10)); }
  595. inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_capslist_10() const { return ___capslist_10; }
  596. inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_capslist_10() { return &___capslist_10; }
  597. inline void set_capslist_10(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
  598. {
  599. ___capslist_10 = value;
  600. Il2CppCodeGenWriteBarrier((void**)(&___capslist_10), (void*)value);
  601. }
  602. inline static int32_t get_offset_of_capsize_11() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___capsize_11)); }
  603. inline int32_t get_capsize_11() const { return ___capsize_11; }
  604. inline int32_t* get_address_of_capsize_11() { return &___capsize_11; }
  605. inline void set_capsize_11(int32_t value)
  606. {
  607. ___capsize_11 = value;
  608. }
  609. inline static int32_t get_offset_of_runnerref_12() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___runnerref_12)); }
  610. inline ExclusiveReference_t7F4A5D2416EA34710F520BAD225E61BC1E98D1D8 * get_runnerref_12() const { return ___runnerref_12; }
  611. inline ExclusiveReference_t7F4A5D2416EA34710F520BAD225E61BC1E98D1D8 ** get_address_of_runnerref_12() { return &___runnerref_12; }
  612. inline void set_runnerref_12(ExclusiveReference_t7F4A5D2416EA34710F520BAD225E61BC1E98D1D8 * value)
  613. {
  614. ___runnerref_12 = value;
  615. Il2CppCodeGenWriteBarrier((void**)(&___runnerref_12), (void*)value);
  616. }
  617. inline static int32_t get_offset_of_replref_13() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___replref_13)); }
  618. inline SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926 * get_replref_13() const { return ___replref_13; }
  619. inline SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926 ** get_address_of_replref_13() { return &___replref_13; }
  620. inline void set_replref_13(SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926 * value)
  621. {
  622. ___replref_13 = value;
  623. Il2CppCodeGenWriteBarrier((void**)(&___replref_13), (void*)value);
  624. }
  625. inline static int32_t get_offset_of_code_14() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___code_14)); }
  626. inline RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * get_code_14() const { return ___code_14; }
  627. inline RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 ** get_address_of_code_14() { return &___code_14; }
  628. inline void set_code_14(RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * value)
  629. {
  630. ___code_14 = value;
  631. Il2CppCodeGenWriteBarrier((void**)(&___code_14), (void*)value);
  632. }
  633. inline static int32_t get_offset_of_refsInitialized_15() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___refsInitialized_15)); }
  634. inline bool get_refsInitialized_15() const { return ___refsInitialized_15; }
  635. inline bool* get_address_of_refsInitialized_15() { return &___refsInitialized_15; }
  636. inline void set_refsInitialized_15(bool value)
  637. {
  638. ___refsInitialized_15 = value;
  639. }
  640. };
  641. struct Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields
  642. {
  643. public:
  644. // System.TimeSpan System.Text.RegularExpressions.Regex::MaximumMatchTimeout
  645. TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MaximumMatchTimeout_3;
  646. // System.TimeSpan System.Text.RegularExpressions.Regex::InfiniteMatchTimeout
  647. TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___InfiniteMatchTimeout_4;
  648. // System.TimeSpan System.Text.RegularExpressions.Regex::FallbackDefaultMatchTimeout
  649. TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___FallbackDefaultMatchTimeout_6;
  650. // System.TimeSpan System.Text.RegularExpressions.Regex::DefaultMatchTimeout
  651. TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___DefaultMatchTimeout_7;
  652. // System.Collections.Generic.LinkedList`1<System.Text.RegularExpressions.CachedCodeEntry> System.Text.RegularExpressions.Regex::livecode
  653. LinkedList_1_t0AD3FC1D19E68F4B148AFF908DC3719C9B117D92 * ___livecode_16;
  654. // System.Int32 System.Text.RegularExpressions.Regex::cacheSize
  655. int32_t ___cacheSize_17;
  656. public:
  657. inline static int32_t get_offset_of_MaximumMatchTimeout_3() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___MaximumMatchTimeout_3)); }
  658. inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MaximumMatchTimeout_3() const { return ___MaximumMatchTimeout_3; }
  659. inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MaximumMatchTimeout_3() { return &___MaximumMatchTimeout_3; }
  660. inline void set_MaximumMatchTimeout_3(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
  661. {
  662. ___MaximumMatchTimeout_3 = value;
  663. }
  664. inline static int32_t get_offset_of_InfiniteMatchTimeout_4() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___InfiniteMatchTimeout_4)); }
  665. inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_InfiniteMatchTimeout_4() const { return ___InfiniteMatchTimeout_4; }
  666. inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_InfiniteMatchTimeout_4() { return &___InfiniteMatchTimeout_4; }
  667. inline void set_InfiniteMatchTimeout_4(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
  668. {
  669. ___InfiniteMatchTimeout_4 = value;
  670. }
  671. inline static int32_t get_offset_of_FallbackDefaultMatchTimeout_6() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___FallbackDefaultMatchTimeout_6)); }
  672. inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_FallbackDefaultMatchTimeout_6() const { return ___FallbackDefaultMatchTimeout_6; }
  673. inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_FallbackDefaultMatchTimeout_6() { return &___FallbackDefaultMatchTimeout_6; }
  674. inline void set_FallbackDefaultMatchTimeout_6(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
  675. {
  676. ___FallbackDefaultMatchTimeout_6 = value;
  677. }
  678. inline static int32_t get_offset_of_DefaultMatchTimeout_7() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___DefaultMatchTimeout_7)); }
  679. inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_DefaultMatchTimeout_7() const { return ___DefaultMatchTimeout_7; }
  680. inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_DefaultMatchTimeout_7() { return &___DefaultMatchTimeout_7; }
  681. inline void set_DefaultMatchTimeout_7(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
  682. {
  683. ___DefaultMatchTimeout_7 = value;
  684. }
  685. inline static int32_t get_offset_of_livecode_16() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___livecode_16)); }
  686. inline LinkedList_1_t0AD3FC1D19E68F4B148AFF908DC3719C9B117D92 * get_livecode_16() const { return ___livecode_16; }
  687. inline LinkedList_1_t0AD3FC1D19E68F4B148AFF908DC3719C9B117D92 ** get_address_of_livecode_16() { return &___livecode_16; }
  688. inline void set_livecode_16(LinkedList_1_t0AD3FC1D19E68F4B148AFF908DC3719C9B117D92 * value)
  689. {
  690. ___livecode_16 = value;
  691. Il2CppCodeGenWriteBarrier((void**)(&___livecode_16), (void*)value);
  692. }
  693. inline static int32_t get_offset_of_cacheSize_17() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___cacheSize_17)); }
  694. inline int32_t get_cacheSize_17() const { return ___cacheSize_17; }
  695. inline int32_t* get_address_of_cacheSize_17() { return &___cacheSize_17; }
  696. inline void set_cacheSize_17(int32_t value)
  697. {
  698. ___cacheSize_17 = value;
  699. }
  700. };
  701. // System.Uri
  702. struct Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 : public RuntimeObject
  703. {
  704. public:
  705. // System.String System.Uri::m_String
  706. String_t* ___m_String_13;
  707. // System.String System.Uri::m_originalUnicodeString
  708. String_t* ___m_originalUnicodeString_14;
  709. // System.UriParser System.Uri::m_Syntax
  710. UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___m_Syntax_15;
  711. // System.String System.Uri::m_DnsSafeHost
  712. String_t* ___m_DnsSafeHost_16;
  713. // System.Uri/Flags System.Uri::m_Flags
  714. uint64_t ___m_Flags_17;
  715. // System.Uri/UriInfo System.Uri::m_Info
  716. UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * ___m_Info_18;
  717. // System.Boolean System.Uri::m_iriParsing
  718. bool ___m_iriParsing_19;
  719. public:
  720. inline static int32_t get_offset_of_m_String_13() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_String_13)); }
  721. inline String_t* get_m_String_13() const { return ___m_String_13; }
  722. inline String_t** get_address_of_m_String_13() { return &___m_String_13; }
  723. inline void set_m_String_13(String_t* value)
  724. {
  725. ___m_String_13 = value;
  726. Il2CppCodeGenWriteBarrier((void**)(&___m_String_13), (void*)value);
  727. }
  728. inline static int32_t get_offset_of_m_originalUnicodeString_14() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_originalUnicodeString_14)); }
  729. inline String_t* get_m_originalUnicodeString_14() const { return ___m_originalUnicodeString_14; }
  730. inline String_t** get_address_of_m_originalUnicodeString_14() { return &___m_originalUnicodeString_14; }
  731. inline void set_m_originalUnicodeString_14(String_t* value)
  732. {
  733. ___m_originalUnicodeString_14 = value;
  734. Il2CppCodeGenWriteBarrier((void**)(&___m_originalUnicodeString_14), (void*)value);
  735. }
  736. inline static int32_t get_offset_of_m_Syntax_15() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_Syntax_15)); }
  737. inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * get_m_Syntax_15() const { return ___m_Syntax_15; }
  738. inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** get_address_of_m_Syntax_15() { return &___m_Syntax_15; }
  739. inline void set_m_Syntax_15(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * value)
  740. {
  741. ___m_Syntax_15 = value;
  742. Il2CppCodeGenWriteBarrier((void**)(&___m_Syntax_15), (void*)value);
  743. }
  744. inline static int32_t get_offset_of_m_DnsSafeHost_16() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_DnsSafeHost_16)); }
  745. inline String_t* get_m_DnsSafeHost_16() const { return ___m_DnsSafeHost_16; }
  746. inline String_t** get_address_of_m_DnsSafeHost_16() { return &___m_DnsSafeHost_16; }
  747. inline void set_m_DnsSafeHost_16(String_t* value)
  748. {
  749. ___m_DnsSafeHost_16 = value;
  750. Il2CppCodeGenWriteBarrier((void**)(&___m_DnsSafeHost_16), (void*)value);
  751. }
  752. inline static int32_t get_offset_of_m_Flags_17() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_Flags_17)); }
  753. inline uint64_t get_m_Flags_17() const { return ___m_Flags_17; }
  754. inline uint64_t* get_address_of_m_Flags_17() { return &___m_Flags_17; }
  755. inline void set_m_Flags_17(uint64_t value)
  756. {
  757. ___m_Flags_17 = value;
  758. }
  759. inline static int32_t get_offset_of_m_Info_18() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_Info_18)); }
  760. inline UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * get_m_Info_18() const { return ___m_Info_18; }
  761. inline UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 ** get_address_of_m_Info_18() { return &___m_Info_18; }
  762. inline void set_m_Info_18(UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * value)
  763. {
  764. ___m_Info_18 = value;
  765. Il2CppCodeGenWriteBarrier((void**)(&___m_Info_18), (void*)value);
  766. }
  767. inline static int32_t get_offset_of_m_iriParsing_19() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_iriParsing_19)); }
  768. inline bool get_m_iriParsing_19() const { return ___m_iriParsing_19; }
  769. inline bool* get_address_of_m_iriParsing_19() { return &___m_iriParsing_19; }
  770. inline void set_m_iriParsing_19(bool value)
  771. {
  772. ___m_iriParsing_19 = value;
  773. }
  774. };
  775. struct Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields
  776. {
  777. public:
  778. // System.String System.Uri::UriSchemeFile
  779. String_t* ___UriSchemeFile_0;
  780. // System.String System.Uri::UriSchemeFtp
  781. String_t* ___UriSchemeFtp_1;
  782. // System.String System.Uri::UriSchemeGopher
  783. String_t* ___UriSchemeGopher_2;
  784. // System.String System.Uri::UriSchemeHttp
  785. String_t* ___UriSchemeHttp_3;
  786. // System.String System.Uri::UriSchemeHttps
  787. String_t* ___UriSchemeHttps_4;
  788. // System.String System.Uri::UriSchemeWs
  789. String_t* ___UriSchemeWs_5;
  790. // System.String System.Uri::UriSchemeWss
  791. String_t* ___UriSchemeWss_6;
  792. // System.String System.Uri::UriSchemeMailto
  793. String_t* ___UriSchemeMailto_7;
  794. // System.String System.Uri::UriSchemeNews
  795. String_t* ___UriSchemeNews_8;
  796. // System.String System.Uri::UriSchemeNntp
  797. String_t* ___UriSchemeNntp_9;
  798. // System.String System.Uri::UriSchemeNetTcp
  799. String_t* ___UriSchemeNetTcp_10;
  800. // System.String System.Uri::UriSchemeNetPipe
  801. String_t* ___UriSchemeNetPipe_11;
  802. // System.String System.Uri::SchemeDelimiter
  803. String_t* ___SchemeDelimiter_12;
  804. // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_ConfigInitialized
  805. bool ___s_ConfigInitialized_20;
  806. // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_ConfigInitializing
  807. bool ___s_ConfigInitializing_21;
  808. // System.UriIdnScope modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_IdnScope
  809. int32_t ___s_IdnScope_22;
  810. // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_IriParsing
  811. bool ___s_IriParsing_23;
  812. // System.Boolean System.Uri::useDotNetRelativeOrAbsolute
  813. bool ___useDotNetRelativeOrAbsolute_24;
  814. // System.Boolean System.Uri::IsWindowsFileSystem
  815. bool ___IsWindowsFileSystem_25;
  816. // System.Object System.Uri::s_initLock
  817. RuntimeObject * ___s_initLock_26;
  818. // System.Char[] System.Uri::HexLowerChars
  819. CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___HexLowerChars_27;
  820. // System.Char[] System.Uri::_WSchars
  821. CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ____WSchars_28;
  822. public:
  823. inline static int32_t get_offset_of_UriSchemeFile_0() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeFile_0)); }
  824. inline String_t* get_UriSchemeFile_0() const { return ___UriSchemeFile_0; }
  825. inline String_t** get_address_of_UriSchemeFile_0() { return &___UriSchemeFile_0; }
  826. inline void set_UriSchemeFile_0(String_t* value)
  827. {
  828. ___UriSchemeFile_0 = value;
  829. Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeFile_0), (void*)value);
  830. }
  831. inline static int32_t get_offset_of_UriSchemeFtp_1() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeFtp_1)); }
  832. inline String_t* get_UriSchemeFtp_1() const { return ___UriSchemeFtp_1; }
  833. inline String_t** get_address_of_UriSchemeFtp_1() { return &___UriSchemeFtp_1; }
  834. inline void set_UriSchemeFtp_1(String_t* value)
  835. {
  836. ___UriSchemeFtp_1 = value;
  837. Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeFtp_1), (void*)value);
  838. }
  839. inline static int32_t get_offset_of_UriSchemeGopher_2() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeGopher_2)); }
  840. inline String_t* get_UriSchemeGopher_2() const { return ___UriSchemeGopher_2; }
  841. inline String_t** get_address_of_UriSchemeGopher_2() { return &___UriSchemeGopher_2; }
  842. inline void set_UriSchemeGopher_2(String_t* value)
  843. {
  844. ___UriSchemeGopher_2 = value;
  845. Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeGopher_2), (void*)value);
  846. }
  847. inline static int32_t get_offset_of_UriSchemeHttp_3() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeHttp_3)); }
  848. inline String_t* get_UriSchemeHttp_3() const { return ___UriSchemeHttp_3; }
  849. inline String_t** get_address_of_UriSchemeHttp_3() { return &___UriSchemeHttp_3; }
  850. inline void set_UriSchemeHttp_3(String_t* value)
  851. {
  852. ___UriSchemeHttp_3 = value;
  853. Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeHttp_3), (void*)value);
  854. }
  855. inline static int32_t get_offset_of_UriSchemeHttps_4() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeHttps_4)); }
  856. inline String_t* get_UriSchemeHttps_4() const { return ___UriSchemeHttps_4; }
  857. inline String_t** get_address_of_UriSchemeHttps_4() { return &___UriSchemeHttps_4; }
  858. inline void set_UriSchemeHttps_4(String_t* value)
  859. {
  860. ___UriSchemeHttps_4 = value;
  861. Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeHttps_4), (void*)value);
  862. }
  863. inline static int32_t get_offset_of_UriSchemeWs_5() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeWs_5)); }
  864. inline String_t* get_UriSchemeWs_5() const { return ___UriSchemeWs_5; }
  865. inline String_t** get_address_of_UriSchemeWs_5() { return &___UriSchemeWs_5; }
  866. inline void set_UriSchemeWs_5(String_t* value)
  867. {
  868. ___UriSchemeWs_5 = value;
  869. Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeWs_5), (void*)value);
  870. }
  871. inline static int32_t get_offset_of_UriSchemeWss_6() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeWss_6)); }
  872. inline String_t* get_UriSchemeWss_6() const { return ___UriSchemeWss_6; }
  873. inline String_t** get_address_of_UriSchemeWss_6() { return &___UriSchemeWss_6; }
  874. inline void set_UriSchemeWss_6(String_t* value)
  875. {
  876. ___UriSchemeWss_6 = value;
  877. Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeWss_6), (void*)value);
  878. }
  879. inline static int32_t get_offset_of_UriSchemeMailto_7() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeMailto_7)); }
  880. inline String_t* get_UriSchemeMailto_7() const { return ___UriSchemeMailto_7; }
  881. inline String_t** get_address_of_UriSchemeMailto_7() { return &___UriSchemeMailto_7; }
  882. inline void set_UriSchemeMailto_7(String_t* value)
  883. {
  884. ___UriSchemeMailto_7 = value;
  885. Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeMailto_7), (void*)value);
  886. }
  887. inline static int32_t get_offset_of_UriSchemeNews_8() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeNews_8)); }
  888. inline String_t* get_UriSchemeNews_8() const { return ___UriSchemeNews_8; }
  889. inline String_t** get_address_of_UriSchemeNews_8() { return &___UriSchemeNews_8; }
  890. inline void set_UriSchemeNews_8(String_t* value)
  891. {
  892. ___UriSchemeNews_8 = value;
  893. Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNews_8), (void*)value);
  894. }
  895. inline static int32_t get_offset_of_UriSchemeNntp_9() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeNntp_9)); }
  896. inline String_t* get_UriSchemeNntp_9() const { return ___UriSchemeNntp_9; }
  897. inline String_t** get_address_of_UriSchemeNntp_9() { return &___UriSchemeNntp_9; }
  898. inline void set_UriSchemeNntp_9(String_t* value)
  899. {
  900. ___UriSchemeNntp_9 = value;
  901. Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNntp_9), (void*)value);
  902. }
  903. inline static int32_t get_offset_of_UriSchemeNetTcp_10() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeNetTcp_10)); }
  904. inline String_t* get_UriSchemeNetTcp_10() const { return ___UriSchemeNetTcp_10; }
  905. inline String_t** get_address_of_UriSchemeNetTcp_10() { return &___UriSchemeNetTcp_10; }
  906. inline void set_UriSchemeNetTcp_10(String_t* value)
  907. {
  908. ___UriSchemeNetTcp_10 = value;
  909. Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNetTcp_10), (void*)value);
  910. }
  911. inline static int32_t get_offset_of_UriSchemeNetPipe_11() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeNetPipe_11)); }
  912. inline String_t* get_UriSchemeNetPipe_11() const { return ___UriSchemeNetPipe_11; }
  913. inline String_t** get_address_of_UriSchemeNetPipe_11() { return &___UriSchemeNetPipe_11; }
  914. inline void set_UriSchemeNetPipe_11(String_t* value)
  915. {
  916. ___UriSchemeNetPipe_11 = value;
  917. Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNetPipe_11), (void*)value);
  918. }
  919. inline static int32_t get_offset_of_SchemeDelimiter_12() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___SchemeDelimiter_12)); }
  920. inline String_t* get_SchemeDelimiter_12() const { return ___SchemeDelimiter_12; }
  921. inline String_t** get_address_of_SchemeDelimiter_12() { return &___SchemeDelimiter_12; }
  922. inline void set_SchemeDelimiter_12(String_t* value)
  923. {
  924. ___SchemeDelimiter_12 = value;
  925. Il2CppCodeGenWriteBarrier((void**)(&___SchemeDelimiter_12), (void*)value);
  926. }
  927. inline static int32_t get_offset_of_s_ConfigInitialized_20() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_ConfigInitialized_20)); }
  928. inline bool get_s_ConfigInitialized_20() const { return ___s_ConfigInitialized_20; }
  929. inline bool* get_address_of_s_ConfigInitialized_20() { return &___s_ConfigInitialized_20; }
  930. inline void set_s_ConfigInitialized_20(bool value)
  931. {
  932. ___s_ConfigInitialized_20 = value;
  933. }
  934. inline static int32_t get_offset_of_s_ConfigInitializing_21() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_ConfigInitializing_21)); }
  935. inline bool get_s_ConfigInitializing_21() const { return ___s_ConfigInitializing_21; }
  936. inline bool* get_address_of_s_ConfigInitializing_21() { return &___s_ConfigInitializing_21; }
  937. inline void set_s_ConfigInitializing_21(bool value)
  938. {
  939. ___s_ConfigInitializing_21 = value;
  940. }
  941. inline static int32_t get_offset_of_s_IdnScope_22() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_IdnScope_22)); }
  942. inline int32_t get_s_IdnScope_22() const { return ___s_IdnScope_22; }
  943. inline int32_t* get_address_of_s_IdnScope_22() { return &___s_IdnScope_22; }
  944. inline void set_s_IdnScope_22(int32_t value)
  945. {
  946. ___s_IdnScope_22 = value;
  947. }
  948. inline static int32_t get_offset_of_s_IriParsing_23() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_IriParsing_23)); }
  949. inline bool get_s_IriParsing_23() const { return ___s_IriParsing_23; }
  950. inline bool* get_address_of_s_IriParsing_23() { return &___s_IriParsing_23; }
  951. inline void set_s_IriParsing_23(bool value)
  952. {
  953. ___s_IriParsing_23 = value;
  954. }
  955. inline static int32_t get_offset_of_useDotNetRelativeOrAbsolute_24() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___useDotNetRelativeOrAbsolute_24)); }
  956. inline bool get_useDotNetRelativeOrAbsolute_24() const { return ___useDotNetRelativeOrAbsolute_24; }
  957. inline bool* get_address_of_useDotNetRelativeOrAbsolute_24() { return &___useDotNetRelativeOrAbsolute_24; }
  958. inline void set_useDotNetRelativeOrAbsolute_24(bool value)
  959. {
  960. ___useDotNetRelativeOrAbsolute_24 = value;
  961. }
  962. inline static int32_t get_offset_of_IsWindowsFileSystem_25() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___IsWindowsFileSystem_25)); }
  963. inline bool get_IsWindowsFileSystem_25() const { return ___IsWindowsFileSystem_25; }
  964. inline bool* get_address_of_IsWindowsFileSystem_25() { return &___IsWindowsFileSystem_25; }
  965. inline void set_IsWindowsFileSystem_25(bool value)
  966. {
  967. ___IsWindowsFileSystem_25 = value;
  968. }
  969. inline static int32_t get_offset_of_s_initLock_26() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_initLock_26)); }
  970. inline RuntimeObject * get_s_initLock_26() const { return ___s_initLock_26; }
  971. inline RuntimeObject ** get_address_of_s_initLock_26() { return &___s_initLock_26; }
  972. inline void set_s_initLock_26(RuntimeObject * value)
  973. {
  974. ___s_initLock_26 = value;
  975. Il2CppCodeGenWriteBarrier((void**)(&___s_initLock_26), (void*)value);
  976. }
  977. inline static int32_t get_offset_of_HexLowerChars_27() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___HexLowerChars_27)); }
  978. inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_HexLowerChars_27() const { return ___HexLowerChars_27; }
  979. inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_HexLowerChars_27() { return &___HexLowerChars_27; }
  980. inline void set_HexLowerChars_27(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
  981. {
  982. ___HexLowerChars_27 = value;
  983. Il2CppCodeGenWriteBarrier((void**)(&___HexLowerChars_27), (void*)value);
  984. }
  985. inline static int32_t get_offset_of__WSchars_28() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ____WSchars_28)); }
  986. inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get__WSchars_28() const { return ____WSchars_28; }
  987. inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of__WSchars_28() { return &____WSchars_28; }
  988. inline void set__WSchars_28(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
  989. {
  990. ____WSchars_28 = value;
  991. Il2CppCodeGenWriteBarrier((void**)(&____WSchars_28), (void*)value);
  992. }
  993. };
  994. #ifdef __clang__
  995. #pragma clang diagnostic pop
  996. #endif
  997. // System.Byte[]
  998. struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726 : public RuntimeArray
  999. {
  1000. public:
  1001. ALIGN_FIELD (8) uint8_t m_Items[1];
  1002. public:
  1003. inline uint8_t GetAt(il2cpp_array_size_t index) const
  1004. {
  1005. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1006. return m_Items[index];
  1007. }
  1008. inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
  1009. {
  1010. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1011. return m_Items + index;
  1012. }
  1013. inline void SetAt(il2cpp_array_size_t index, uint8_t value)
  1014. {
  1015. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1016. m_Items[index] = value;
  1017. }
  1018. inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
  1019. {
  1020. return m_Items[index];
  1021. }
  1022. inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
  1023. {
  1024. return m_Items + index;
  1025. }
  1026. inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
  1027. {
  1028. m_Items[index] = value;
  1029. }
  1030. };
  1031. // System.Char System.String::get_Chars(System.Int32)
  1032. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70 (String_t* __this, int32_t ___index0, const RuntimeMethod* method);
  1033. // System.Void System.Uri::.ctor(System.String,System.UriKind)
  1034. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_m2D669E1153A700F9ED8BA31473565827AF8E39EF (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, String_t* ___uriString0, int32_t ___uriKind1, const RuntimeMethod* method);
  1035. // System.Boolean System.Uri::get_IsAbsoluteUri()
  1036. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_IsAbsoluteUri_m013346D65055CFEDF9E742534A584573C18A0E25 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method);
  1037. // System.String System.Uri::get_AbsoluteUri()
  1038. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_AbsoluteUri_mC494374C2A3B1DFC9C3DC6CCB8A8A758580C11DA (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method);
  1039. // System.Void System.Uri::.ctor(System.Uri,System.Uri)
  1040. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_m77D32DF0ABC88A040214913D87A07F2C522CCD18 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___baseUri0, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___relativeUri1, const RuntimeMethod* method);
  1041. // System.Void System.Text.RegularExpressions.Regex::.ctor(System.String)
  1042. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Regex__ctor_m8BB2137D7B0A93CD70FD3061579C7456BB65216E (Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * __this, String_t* ___pattern0, const RuntimeMethod* method);
  1043. #ifdef __clang__
  1044. #pragma clang diagnostic push
  1045. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1046. #pragma clang diagnostic ignored "-Wunused-variable"
  1047. #endif
  1048. #ifdef __clang__
  1049. #pragma clang diagnostic pop
  1050. #endif
  1051. #ifdef __clang__
  1052. #pragma clang diagnostic push
  1053. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1054. #pragma clang diagnostic ignored "-Wunused-variable"
  1055. #endif
  1056. // Conversion methods for marshalling of: UnityEngine.Networking.CertificateHandler
  1057. IL2CPP_EXTERN_C void CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshal_pinvoke(const CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E& unmarshaled, CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshaled_pinvoke& marshaled)
  1058. {
  1059. marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0();
  1060. }
  1061. IL2CPP_EXTERN_C void CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshal_pinvoke_back(const CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshaled_pinvoke& marshaled, CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E& unmarshaled)
  1062. {
  1063. intptr_t unmarshaled_m_Ptr_temp_0;
  1064. memset((&unmarshaled_m_Ptr_temp_0), 0, sizeof(unmarshaled_m_Ptr_temp_0));
  1065. unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0;
  1066. unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0);
  1067. }
  1068. // Conversion method for clean up from marshalling of: UnityEngine.Networking.CertificateHandler
  1069. IL2CPP_EXTERN_C void CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshal_pinvoke_cleanup(CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshaled_pinvoke& marshaled)
  1070. {
  1071. }
  1072. // Conversion methods for marshalling of: UnityEngine.Networking.CertificateHandler
  1073. IL2CPP_EXTERN_C void CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshal_com(const CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E& unmarshaled, CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshaled_com& marshaled)
  1074. {
  1075. marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0();
  1076. }
  1077. IL2CPP_EXTERN_C void CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshal_com_back(const CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshaled_com& marshaled, CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E& unmarshaled)
  1078. {
  1079. intptr_t unmarshaled_m_Ptr_temp_0;
  1080. memset((&unmarshaled_m_Ptr_temp_0), 0, sizeof(unmarshaled_m_Ptr_temp_0));
  1081. unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0;
  1082. unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0);
  1083. }
  1084. // Conversion method for clean up from marshalling of: UnityEngine.Networking.CertificateHandler
  1085. IL2CPP_EXTERN_C void CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshal_com_cleanup(CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshaled_com& marshaled)
  1086. {
  1087. }
  1088. // System.Boolean UnityEngine.Networking.CertificateHandler::ValidateCertificate(System.Byte[])
  1089. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CertificateHandler_ValidateCertificate_mE76D686A7A10A86799FBF1F107EF3544D4A9D815 (CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___certificateData0, const RuntimeMethod* method)
  1090. {
  1091. bool V_0 = false;
  1092. {
  1093. V_0 = (bool)0;
  1094. goto IL_0005;
  1095. }
  1096. IL_0005:
  1097. {
  1098. bool L_0 = V_0;
  1099. return L_0;
  1100. }
  1101. }
  1102. // System.Boolean UnityEngine.Networking.CertificateHandler::ValidateCertificateNative(System.Byte[])
  1103. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CertificateHandler_ValidateCertificateNative_m7AA7136975CEB1635B201B08BB9B04059E7D0D16 (CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___certificateData0, const RuntimeMethod* method)
  1104. {
  1105. bool V_0 = false;
  1106. {
  1107. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___certificateData0;
  1108. bool L_1;
  1109. L_1 = VirtFuncInvoker1< bool, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(4 /* System.Boolean UnityEngine.Networking.CertificateHandler::ValidateCertificate(System.Byte[]) */, __this, L_0);
  1110. V_0 = L_1;
  1111. goto IL_000b;
  1112. }
  1113. IL_000b:
  1114. {
  1115. bool L_2 = V_0;
  1116. return L_2;
  1117. }
  1118. }
  1119. #ifdef __clang__
  1120. #pragma clang diagnostic pop
  1121. #endif
  1122. #ifdef __clang__
  1123. #pragma clang diagnostic push
  1124. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1125. #pragma clang diagnostic ignored "-Wunused-variable"
  1126. #endif
  1127. // Conversion methods for marshalling of: UnityEngine.Networking.DownloadHandler
  1128. IL2CPP_EXTERN_C void DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshal_pinvoke(const DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB& unmarshaled, DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshaled_pinvoke& marshaled)
  1129. {
  1130. marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0();
  1131. }
  1132. IL2CPP_EXTERN_C void DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshal_pinvoke_back(const DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshaled_pinvoke& marshaled, DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB& unmarshaled)
  1133. {
  1134. intptr_t unmarshaled_m_Ptr_temp_0;
  1135. memset((&unmarshaled_m_Ptr_temp_0), 0, sizeof(unmarshaled_m_Ptr_temp_0));
  1136. unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0;
  1137. unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0);
  1138. }
  1139. // Conversion method for clean up from marshalling of: UnityEngine.Networking.DownloadHandler
  1140. IL2CPP_EXTERN_C void DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshal_pinvoke_cleanup(DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshaled_pinvoke& marshaled)
  1141. {
  1142. }
  1143. // Conversion methods for marshalling of: UnityEngine.Networking.DownloadHandler
  1144. IL2CPP_EXTERN_C void DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshal_com(const DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB& unmarshaled, DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshaled_com& marshaled)
  1145. {
  1146. marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0();
  1147. }
  1148. IL2CPP_EXTERN_C void DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshal_com_back(const DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshaled_com& marshaled, DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB& unmarshaled)
  1149. {
  1150. intptr_t unmarshaled_m_Ptr_temp_0;
  1151. memset((&unmarshaled_m_Ptr_temp_0), 0, sizeof(unmarshaled_m_Ptr_temp_0));
  1152. unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0;
  1153. unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0);
  1154. }
  1155. // Conversion method for clean up from marshalling of: UnityEngine.Networking.DownloadHandler
  1156. IL2CPP_EXTERN_C void DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshal_com_cleanup(DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshaled_com& marshaled)
  1157. {
  1158. }
  1159. // System.Void UnityEngine.Networking.DownloadHandler::ReceiveContentLengthHeader(System.UInt64)
  1160. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_ReceiveContentLengthHeader_mD3B607EDDF946896B9877C91DE1EDD6C39B16CF3 (DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * __this, uint64_t ___contentLength0, const RuntimeMethod* method)
  1161. {
  1162. {
  1163. uint64_t L_0 = ___contentLength0;
  1164. VirtActionInvoker1< int32_t >::Invoke(5 /* System.Void UnityEngine.Networking.DownloadHandler::ReceiveContentLength(System.Int32) */, __this, ((int32_t)((int32_t)L_0)));
  1165. return;
  1166. }
  1167. }
  1168. // System.Void UnityEngine.Networking.DownloadHandler::ReceiveContentLength(System.Int32)
  1169. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_ReceiveContentLength_m7788739919D3BB09DBF3EEE1AE211C2701672316 (DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * __this, int32_t ___contentLength0, const RuntimeMethod* method)
  1170. {
  1171. {
  1172. return;
  1173. }
  1174. }
  1175. #ifdef __clang__
  1176. #pragma clang diagnostic pop
  1177. #endif
  1178. #ifdef __clang__
  1179. #pragma clang diagnostic push
  1180. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1181. #pragma clang diagnostic ignored "-Wunused-variable"
  1182. #endif
  1183. // System.String UnityEngineInternal.WebRequestUtils::RedirectTo(System.String,System.String)
  1184. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_RedirectTo_m0E8715D4658E15C9775C6D06E1891267CB3C852F (String_t* ___baseUri0, String_t* ___redirectUri1, const RuntimeMethod* method)
  1185. {
  1186. static bool s_Il2CppMethodInitialized;
  1187. if (!s_Il2CppMethodInitialized)
  1188. {
  1189. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var);
  1190. s_Il2CppMethodInitialized = true;
  1191. }
  1192. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * V_0 = NULL;
  1193. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * V_1 = NULL;
  1194. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * V_2 = NULL;
  1195. bool V_3 = false;
  1196. bool V_4 = false;
  1197. String_t* V_5 = NULL;
  1198. {
  1199. String_t* L_0 = ___redirectUri1;
  1200. Il2CppChar L_1;
  1201. L_1 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_0, 0, /*hidden argument*/NULL);
  1202. V_3 = (bool)((((int32_t)L_1) == ((int32_t)((int32_t)47)))? 1 : 0);
  1203. bool L_2 = V_3;
  1204. if (!L_2)
  1205. {
  1206. goto IL_001a;
  1207. }
  1208. }
  1209. {
  1210. String_t* L_3 = ___redirectUri1;
  1211. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_4 = (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)il2cpp_codegen_object_new(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var);
  1212. Uri__ctor_m2D669E1153A700F9ED8BA31473565827AF8E39EF(L_4, L_3, 2, /*hidden argument*/NULL);
  1213. V_0 = L_4;
  1214. goto IL_0022;
  1215. }
  1216. IL_001a:
  1217. {
  1218. String_t* L_5 = ___redirectUri1;
  1219. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_6 = (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)il2cpp_codegen_object_new(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var);
  1220. Uri__ctor_m2D669E1153A700F9ED8BA31473565827AF8E39EF(L_6, L_5, 0, /*hidden argument*/NULL);
  1221. V_0 = L_6;
  1222. }
  1223. IL_0022:
  1224. {
  1225. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_7 = V_0;
  1226. bool L_8;
  1227. L_8 = Uri_get_IsAbsoluteUri_m013346D65055CFEDF9E742534A584573C18A0E25(L_7, /*hidden argument*/NULL);
  1228. V_4 = L_8;
  1229. bool L_9 = V_4;
  1230. if (!L_9)
  1231. {
  1232. goto IL_0038;
  1233. }
  1234. }
  1235. {
  1236. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_10 = V_0;
  1237. String_t* L_11;
  1238. L_11 = Uri_get_AbsoluteUri_mC494374C2A3B1DFC9C3DC6CCB8A8A758580C11DA(L_10, /*hidden argument*/NULL);
  1239. V_5 = L_11;
  1240. goto IL_0052;
  1241. }
  1242. IL_0038:
  1243. {
  1244. String_t* L_12 = ___baseUri0;
  1245. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_13 = (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)il2cpp_codegen_object_new(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var);
  1246. Uri__ctor_m2D669E1153A700F9ED8BA31473565827AF8E39EF(L_13, L_12, 1, /*hidden argument*/NULL);
  1247. V_1 = L_13;
  1248. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_14 = V_1;
  1249. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_15 = V_0;
  1250. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_16 = (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)il2cpp_codegen_object_new(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var);
  1251. Uri__ctor_m77D32DF0ABC88A040214913D87A07F2C522CCD18(L_16, L_14, L_15, /*hidden argument*/NULL);
  1252. V_2 = L_16;
  1253. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_17 = V_2;
  1254. String_t* L_18;
  1255. L_18 = Uri_get_AbsoluteUri_mC494374C2A3B1DFC9C3DC6CCB8A8A758580C11DA(L_17, /*hidden argument*/NULL);
  1256. V_5 = L_18;
  1257. goto IL_0052;
  1258. }
  1259. IL_0052:
  1260. {
  1261. String_t* L_19 = V_5;
  1262. return L_19;
  1263. }
  1264. }
  1265. // System.Void UnityEngineInternal.WebRequestUtils::.cctor()
  1266. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebRequestUtils__cctor_mD79D1BBF154F1968AB3E32B710D8CE7583105600 (const RuntimeMethod* method)
  1267. {
  1268. static bool s_Il2CppMethodInitialized;
  1269. if (!s_Il2CppMethodInitialized)
  1270. {
  1271. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_il2cpp_TypeInfo_var);
  1272. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebRequestUtils_t3FE2D9FD71A02CD3AF8C91B81280F59E5CF26392_il2cpp_TypeInfo_var);
  1273. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral665437E312D2053C5919723E2E7EA49D0A2ADE1F);
  1274. s_Il2CppMethodInitialized = true;
  1275. }
  1276. {
  1277. Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * L_0 = (Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F *)il2cpp_codegen_object_new(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_il2cpp_TypeInfo_var);
  1278. Regex__ctor_m8BB2137D7B0A93CD70FD3061579C7456BB65216E(L_0, _stringLiteral665437E312D2053C5919723E2E7EA49D0A2ADE1F, /*hidden argument*/NULL);
  1279. ((WebRequestUtils_t3FE2D9FD71A02CD3AF8C91B81280F59E5CF26392_StaticFields*)il2cpp_codegen_static_fields_for(WebRequestUtils_t3FE2D9FD71A02CD3AF8C91B81280F59E5CF26392_il2cpp_TypeInfo_var))->set_domainRegex_0(L_0);
  1280. return;
  1281. }
  1282. }
  1283. #ifdef __clang__
  1284. #pragma clang diagnostic pop
  1285. #endif