System.Xml.cpp
106 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <cstring>
#include <string.h>
#include <stdio.h>
#include <cmath>
#include <limits>
#include <assert.h>
#include <stdint.h>
#include "codegen/il2cpp-codegen.h"
#include "il2cpp-object-internals.h"
template <typename R>
struct VirtFuncInvoker0
{
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 VirtFuncInvoker1
{
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);
}
};
// System.Byte[]
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
// System.Char[]
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
// System.String
struct String_t;
// System.String[]
struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E;
// System.Text.StringBuilder
struct StringBuilder_t;
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017;
// System.Xml.XmlDocumentType
struct XmlDocumentType_t9AB8D5C3C27B699B885D941D4B4735A6EE039136;
// System.Xml.XmlNode
struct XmlNode_t07D70045D843753E4FE8AFE40FD36244E6B6D7FB;
// System.Xml.XmlReader
struct XmlReader_t13F08E3C651EB9F2AE882342BCD5E2CA86F29ABB;
IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DebuggerDisplayXmlNodeProxy_t58EF0087247A9C17E275F3C790082C7C0A6947F0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlConvert_t0ED1642D9D0E4F0F7CB233F75C42460578F8ABF7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlDocumentType_t9AB8D5C3C27B699B885D941D4B4735A6EE039136_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlNodeType_tEE56AC4F9EC36B979516EA5836C4DA730B0A21E1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlReaderDebuggerDisplayProxy_t554A0424FC659767F6977BF48A4018DDECADFA01_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlReader_t13F08E3C651EB9F2AE882342BCD5E2CA86F29ABB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_tBA431F51A4722F0776A8592A8C2A8770D6D54EFB____5D100A87B697F3AE2015A5D3B2A7B5419E1BCA98_0_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_tBA431F51A4722F0776A8592A8C2A8770D6D54EFB____EBC658B067B5C785A3F0BB67D73755F6FEE7F70C_1_FieldInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral03604A939E36BFD5AAB4D02EC49C56DD5FFE70A4;
IL2CPP_EXTERN_C String_t* _stringLiteral05A79F06CF3F67F726DAE68D18A2290F6C9A50C9;
IL2CPP_EXTERN_C String_t* _stringLiteral1AE76814588A8852BEC1A4F868B17D08026CF135;
IL2CPP_EXTERN_C String_t* _stringLiteral29D43743C43BDA9873FC7A79C99F2EC4B6B442B1;
IL2CPP_EXTERN_C String_t* _stringLiteral2AB8AA6F8B2F4F85B5F3A6C5310E19758643A012;
IL2CPP_EXTERN_C String_t* _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6;
IL2CPP_EXTERN_C String_t* _stringLiteral2D805000F0B1B718831F4576ED6B82409607A53D;
IL2CPP_EXTERN_C String_t* _stringLiteral30510FE0BC6A8F6A62E9D5309EF4010DB2D81A82;
IL2CPP_EXTERN_C String_t* _stringLiteral4DBECE0B36C629599F77CB54B3D05C830DB093E9;
IL2CPP_EXTERN_C String_t* _stringLiteral50813027F068E3C36CB1518BAADF80EBFA016339;
IL2CPP_EXTERN_C String_t* _stringLiteral77B3FBA04FD4C4EEEE9AB3A7FB216ADBB7982995;
IL2CPP_EXTERN_C String_t* _stringLiteral7ABE4DB8E4E34EA3395A2A251F5922B296325989;
IL2CPP_EXTERN_C String_t* _stringLiteral876090A3E5447880484D4ABD7013B98D230A9408;
IL2CPP_EXTERN_C String_t* _stringLiteral8BF81043E29DFC96A6FE1F30F7116F552DE6E7D7;
IL2CPP_EXTERN_C String_t* _stringLiteral919176ABD217DFC0AE8AB2A29692E22D95F3AC4B;
IL2CPP_EXTERN_C String_t* _stringLiteralAABE0BFB759A57A7D16A42D60C441B575F1E8236;
IL2CPP_EXTERN_C String_t* _stringLiteralAB006BB8AACDF6E68299BC1DFFCCC9BCC8AC3EAF;
IL2CPP_EXTERN_C String_t* _stringLiteralBB589D0621E5472F470FA3425A234C74B1E202E8;
IL2CPP_EXTERN_C String_t* _stringLiteralD1785CA28C3A4D29A6EDEF1520C544B838A93DB3;
IL2CPP_EXTERN_C String_t* _stringLiteralE9580394535B0E66F03CAFDAD8F8AEF279BB1C12;
IL2CPP_EXTERN_C String_t* _stringLiteralEF7DF15A14EF475D7226CBED4A41696F58C3B7C8;
IL2CPP_EXTERN_C String_t* _stringLiteralEF7E6794CA9C6A06B54B66F279237FB8DAAAEEA8;
IL2CPP_EXTERN_C String_t* _stringLiteralF12C84902108895980702C88DB900CEEA2D2EC01;
IL2CPP_EXTERN_C const uint32_t DebuggerDisplayXmlNodeProxy_ToString_m7E1DD26BBDE4FD8BB63D9BFB36139D145E020F82_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t XmlCharType_InitInstance_m48449C6A7516A943668D92903B5D4203DD184AC6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t XmlCharType_SetProperties_m892CAB57FF4A04EB120C6AA8D4ACA9645ED0A72C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t XmlCharType_get_Instance_mEAAD3E43BD5AC72FA94C12096B2A9C9684557210_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t XmlCharType_get_StaticLock_mE0FF2E8B12DC2AFFAFAB5718FDD49FAE726A6513_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_com_FromNativeMethodDefinition_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_pinvoke_FromNativeMethodDefinition_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t XmlConvert_EscapeValueForDebuggerDisplay_mBB3CC9622F210260398750EA0E9D0D151F1DA449_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t XmlConvert__cctor_m1EE317B21041E9F0ABE85E4DB9EE427C21DB4F03_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t XmlNode_get_debuggerDisplayProxy_m0B8A99A23A898A5F4549461C021E32E84B5CEC35_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t XmlReaderDebuggerDisplayProxy_ToString_mEB54B7610A4FB6E55E154378C4CE91D73EB8D4B6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t XmlReader__cctor_m3EF2489C81E4EEF249A34242FC130A861972991E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t XmlReader_get_Name_mD20CD40668A90CDC612E1FD58193388246CD4893_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t XmlReader_get_debuggerDisplayProxy_m0E4E80BB3ECC5A994F93C06EF8826BFAA9DB9CF1_MetadataUsageId;
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E;
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_tF13288789FFC191403B42FA365065C7F468479D2
{
public:
public:
};
// System.Object
struct Il2CppArrayBounds;
// System.Array
// System.String
struct String_t : public RuntimeObject
{
public:
// System.Int32 System.String::m_stringLength
int32_t ___m_stringLength_0;
// System.Char System.String::m_firstChar
Il2CppChar ___m_firstChar_1;
public:
inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); }
inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; }
inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; }
inline void set_m_stringLength_0(int32_t value)
{
___m_stringLength_0 = value;
}
inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); }
inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; }
inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; }
inline void set_m_firstChar_1(Il2CppChar value)
{
___m_firstChar_1 = value;
}
};
struct String_t_StaticFields
{
public:
// System.String System.String::Empty
String_t* ___Empty_5;
public:
inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); }
inline String_t* get_Empty_5() const { return ___Empty_5; }
inline String_t** get_address_of_Empty_5() { return &___Empty_5; }
inline void set_Empty_5(String_t* value)
{
___Empty_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value);
}
};
// System.Text.StringBuilder
struct StringBuilder_t : public RuntimeObject
{
public:
// System.Char[] System.Text.StringBuilder::m_ChunkChars
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___m_ChunkChars_0;
// System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious
StringBuilder_t * ___m_ChunkPrevious_1;
// System.Int32 System.Text.StringBuilder::m_ChunkLength
int32_t ___m_ChunkLength_2;
// System.Int32 System.Text.StringBuilder::m_ChunkOffset
int32_t ___m_ChunkOffset_3;
// System.Int32 System.Text.StringBuilder::m_MaxCapacity
int32_t ___m_MaxCapacity_4;
public:
inline static int32_t get_offset_of_m_ChunkChars_0() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkChars_0)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_m_ChunkChars_0() const { return ___m_ChunkChars_0; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_m_ChunkChars_0() { return &___m_ChunkChars_0; }
inline void set_m_ChunkChars_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___m_ChunkChars_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkChars_0), (void*)value);
}
inline static int32_t get_offset_of_m_ChunkPrevious_1() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkPrevious_1)); }
inline StringBuilder_t * get_m_ChunkPrevious_1() const { return ___m_ChunkPrevious_1; }
inline StringBuilder_t ** get_address_of_m_ChunkPrevious_1() { return &___m_ChunkPrevious_1; }
inline void set_m_ChunkPrevious_1(StringBuilder_t * value)
{
___m_ChunkPrevious_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkPrevious_1), (void*)value);
}
inline static int32_t get_offset_of_m_ChunkLength_2() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkLength_2)); }
inline int32_t get_m_ChunkLength_2() const { return ___m_ChunkLength_2; }
inline int32_t* get_address_of_m_ChunkLength_2() { return &___m_ChunkLength_2; }
inline void set_m_ChunkLength_2(int32_t value)
{
___m_ChunkLength_2 = value;
}
inline static int32_t get_offset_of_m_ChunkOffset_3() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkOffset_3)); }
inline int32_t get_m_ChunkOffset_3() const { return ___m_ChunkOffset_3; }
inline int32_t* get_address_of_m_ChunkOffset_3() { return &___m_ChunkOffset_3; }
inline void set_m_ChunkOffset_3(int32_t value)
{
___m_ChunkOffset_3 = value;
}
inline static int32_t get_offset_of_m_MaxCapacity_4() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_MaxCapacity_4)); }
inline int32_t get_m_MaxCapacity_4() const { return ___m_MaxCapacity_4; }
inline int32_t* get_address_of_m_MaxCapacity_4() { return &___m_MaxCapacity_4; }
inline void set_m_MaxCapacity_4(int32_t value)
{
___m_MaxCapacity_4 = value;
}
};
// System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF : public RuntimeObject
{
public:
public:
};
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_com
{
};
// System.Xml.XmlNameTable
struct XmlNameTable_t3C1CDAB4E7D97DE41A409D6D9ADD2C10B1F281A6 : public RuntimeObject
{
public:
public:
};
// System.Xml.XmlNode
struct XmlNode_t07D70045D843753E4FE8AFE40FD36244E6B6D7FB : public RuntimeObject
{
public:
public:
};
// System.Xml.XmlReader
struct XmlReader_t13F08E3C651EB9F2AE882342BCD5E2CA86F29ABB : public RuntimeObject
{
public:
public:
};
struct XmlReader_t13F08E3C651EB9F2AE882342BCD5E2CA86F29ABB_StaticFields
{
public:
// System.UInt32 System.Xml.XmlReader::IsTextualNodeBitmap
uint32_t ___IsTextualNodeBitmap_0;
// System.UInt32 System.Xml.XmlReader::CanReadContentAsBitmap
uint32_t ___CanReadContentAsBitmap_1;
// System.UInt32 System.Xml.XmlReader::HasValueBitmap
uint32_t ___HasValueBitmap_2;
public:
inline static int32_t get_offset_of_IsTextualNodeBitmap_0() { return static_cast<int32_t>(offsetof(XmlReader_t13F08E3C651EB9F2AE882342BCD5E2CA86F29ABB_StaticFields, ___IsTextualNodeBitmap_0)); }
inline uint32_t get_IsTextualNodeBitmap_0() const { return ___IsTextualNodeBitmap_0; }
inline uint32_t* get_address_of_IsTextualNodeBitmap_0() { return &___IsTextualNodeBitmap_0; }
inline void set_IsTextualNodeBitmap_0(uint32_t value)
{
___IsTextualNodeBitmap_0 = value;
}
inline static int32_t get_offset_of_CanReadContentAsBitmap_1() { return static_cast<int32_t>(offsetof(XmlReader_t13F08E3C651EB9F2AE882342BCD5E2CA86F29ABB_StaticFields, ___CanReadContentAsBitmap_1)); }
inline uint32_t get_CanReadContentAsBitmap_1() const { return ___CanReadContentAsBitmap_1; }
inline uint32_t* get_address_of_CanReadContentAsBitmap_1() { return &___CanReadContentAsBitmap_1; }
inline void set_CanReadContentAsBitmap_1(uint32_t value)
{
___CanReadContentAsBitmap_1 = value;
}
inline static int32_t get_offset_of_HasValueBitmap_2() { return static_cast<int32_t>(offsetof(XmlReader_t13F08E3C651EB9F2AE882342BCD5E2CA86F29ABB_StaticFields, ___HasValueBitmap_2)); }
inline uint32_t get_HasValueBitmap_2() const { return ___HasValueBitmap_2; }
inline uint32_t* get_address_of_HasValueBitmap_2() { return &___HasValueBitmap_2; }
inline void set_HasValueBitmap_2(uint32_t value)
{
___HasValueBitmap_2 = value;
}
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D6
struct __StaticArrayInitTypeSizeU3D6_tB657E692303B443FF0E24AE8F75A675A844348C4
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D6_tB657E692303B443FF0E24AE8F75A675A844348C4__padding[6];
};
public:
};
// System.Boolean
struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C
{
public:
// System.Boolean System.Boolean::m_value
bool ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C, ___m_value_0)); }
inline bool get_m_value_0() const { return ___m_value_0; }
inline bool* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(bool value)
{
___m_value_0 = value;
}
};
struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields
{
public:
// System.String System.Boolean::TrueString
String_t* ___TrueString_5;
// System.String System.Boolean::FalseString
String_t* ___FalseString_6;
public:
inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___TrueString_5)); }
inline String_t* get_TrueString_5() const { return ___TrueString_5; }
inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; }
inline void set_TrueString_5(String_t* value)
{
___TrueString_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value);
}
inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___FalseString_6)); }
inline String_t* get_FalseString_6() const { return ___FalseString_6; }
inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; }
inline void set_FalseString_6(String_t* value)
{
___FalseString_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value);
}
};
// System.Byte
struct Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07
{
public:
// System.Byte System.Byte::m_value
uint8_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07, ___m_value_0)); }
inline uint8_t get_m_value_0() const { return ___m_value_0; }
inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint8_t value)
{
___m_value_0 = value;
}
};
// System.Char
struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9
{
public:
// System.Char System.Char::m_value
Il2CppChar ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9, ___m_value_0)); }
inline Il2CppChar get_m_value_0() const { return ___m_value_0; }
inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(Il2CppChar value)
{
___m_value_0 = value;
}
};
struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields
{
public:
// System.Byte[] System.Char::categoryForLatin1
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___categoryForLatin1_3;
public:
inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields, ___categoryForLatin1_3)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; }
inline void set_categoryForLatin1_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___categoryForLatin1_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___categoryForLatin1_3), (void*)value);
}
};
// System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 : public ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF
{
public:
public:
};
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields
{
public:
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___enumSeperatorCharArray_0;
public:
inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields, ___enumSeperatorCharArray_0)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
inline void set_enumSeperatorCharArray_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___enumSeperatorCharArray_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_com
{
};
// System.Int32
struct Int32_t585191389E07734F19F3156FF88FB3EF4800D102
{
public:
// System.Int32 System.Int32::m_value
int32_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_t585191389E07734F19F3156FF88FB3EF4800D102, ___m_value_0)); }
inline int32_t get_m_value_0() const { return ___m_value_0; }
inline int32_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int32_t value)
{
___m_value_0 = value;
}
};
// System.Int64
struct Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436
{
public:
// System.Int64 System.Int64::m_value
int64_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, ___m_value_0)); }
inline int64_t get_m_value_0() const { return ___m_value_0; }
inline int64_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int64_t value)
{
___m_value_0 = value;
}
};
// System.IntPtr
struct IntPtr_t
{
public:
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
inline void* get_m_value_0() const { return ___m_value_0; }
inline void** get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(void* value)
{
___m_value_0 = value;
}
};
struct IntPtr_t_StaticFields
{
public:
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
public:
inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
inline intptr_t get_Zero_1() const { return ___Zero_1; }
inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
inline void set_Zero_1(intptr_t value)
{
___Zero_1 = value;
}
};
// System.UInt32
struct UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B
{
public:
// System.UInt32 System.UInt32::m_value
uint32_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B, ___m_value_0)); }
inline uint32_t get_m_value_0() const { return ___m_value_0; }
inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint32_t value)
{
___m_value_0 = value;
}
};
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017
{
public:
union
{
struct
{
};
uint8_t Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017__padding[1];
};
public:
};
// System.Xml.DebuggerDisplayXmlNodeProxy
struct DebuggerDisplayXmlNodeProxy_t58EF0087247A9C17E275F3C790082C7C0A6947F0
{
public:
// System.Xml.XmlNode System.Xml.DebuggerDisplayXmlNodeProxy::node
XmlNode_t07D70045D843753E4FE8AFE40FD36244E6B6D7FB * ___node_0;
public:
inline static int32_t get_offset_of_node_0() { return static_cast<int32_t>(offsetof(DebuggerDisplayXmlNodeProxy_t58EF0087247A9C17E275F3C790082C7C0A6947F0, ___node_0)); }
inline XmlNode_t07D70045D843753E4FE8AFE40FD36244E6B6D7FB * get_node_0() const { return ___node_0; }
inline XmlNode_t07D70045D843753E4FE8AFE40FD36244E6B6D7FB ** get_address_of_node_0() { return &___node_0; }
inline void set_node_0(XmlNode_t07D70045D843753E4FE8AFE40FD36244E6B6D7FB * value)
{
___node_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___node_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Xml.DebuggerDisplayXmlNodeProxy
struct DebuggerDisplayXmlNodeProxy_t58EF0087247A9C17E275F3C790082C7C0A6947F0_marshaled_pinvoke
{
XmlNode_t07D70045D843753E4FE8AFE40FD36244E6B6D7FB * ___node_0;
};
// Native definition for COM marshalling of System.Xml.DebuggerDisplayXmlNodeProxy
struct DebuggerDisplayXmlNodeProxy_t58EF0087247A9C17E275F3C790082C7C0A6947F0_marshaled_com
{
XmlNode_t07D70045D843753E4FE8AFE40FD36244E6B6D7FB * ___node_0;
};
// System.Xml.XmlCharType
struct XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9
{
public:
// System.Byte[] System.Xml.XmlCharType::charProperties
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___charProperties_2;
public:
inline static int32_t get_offset_of_charProperties_2() { return static_cast<int32_t>(offsetof(XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9, ___charProperties_2)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_charProperties_2() const { return ___charProperties_2; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_charProperties_2() { return &___charProperties_2; }
inline void set_charProperties_2(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___charProperties_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___charProperties_2), (void*)value);
}
};
struct XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_StaticFields
{
public:
// System.Object System.Xml.XmlCharType::s_Lock
RuntimeObject * ___s_Lock_0;
// System.Byte[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Xml.XmlCharType::s_CharProperties
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___s_CharProperties_1;
public:
inline static int32_t get_offset_of_s_Lock_0() { return static_cast<int32_t>(offsetof(XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_StaticFields, ___s_Lock_0)); }
inline RuntimeObject * get_s_Lock_0() const { return ___s_Lock_0; }
inline RuntimeObject ** get_address_of_s_Lock_0() { return &___s_Lock_0; }
inline void set_s_Lock_0(RuntimeObject * value)
{
___s_Lock_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Lock_0), (void*)value);
}
inline static int32_t get_offset_of_s_CharProperties_1() { return static_cast<int32_t>(offsetof(XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_StaticFields, ___s_CharProperties_1)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_s_CharProperties_1() const { return ___s_CharProperties_1; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_s_CharProperties_1() { return &___s_CharProperties_1; }
inline void set_s_CharProperties_1(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___s_CharProperties_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_CharProperties_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Xml.XmlCharType
struct XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_marshaled_pinvoke
{
Il2CppSafeArray/*NONE*/* ___charProperties_2;
};
// Native definition for COM marshalling of System.Xml.XmlCharType
struct XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_marshaled_com
{
Il2CppSafeArray/*NONE*/* ___charProperties_2;
};
// System.Xml.XmlLinkedNode
struct XmlLinkedNode_t4F76C8580C2E6D2908D88AC84A86060FA9289A0E : public XmlNode_t07D70045D843753E4FE8AFE40FD36244E6B6D7FB
{
public:
public:
};
// System.Xml.XmlReader_XmlReaderDebuggerDisplayProxy
struct XmlReaderDebuggerDisplayProxy_t554A0424FC659767F6977BF48A4018DDECADFA01
{
public:
// System.Xml.XmlReader System.Xml.XmlReader_XmlReaderDebuggerDisplayProxy::reader
XmlReader_t13F08E3C651EB9F2AE882342BCD5E2CA86F29ABB * ___reader_0;
public:
inline static int32_t get_offset_of_reader_0() { return static_cast<int32_t>(offsetof(XmlReaderDebuggerDisplayProxy_t554A0424FC659767F6977BF48A4018DDECADFA01, ___reader_0)); }
inline XmlReader_t13F08E3C651EB9F2AE882342BCD5E2CA86F29ABB * get_reader_0() const { return ___reader_0; }
inline XmlReader_t13F08E3C651EB9F2AE882342BCD5E2CA86F29ABB ** get_address_of_reader_0() { return &___reader_0; }
inline void set_reader_0(XmlReader_t13F08E3C651EB9F2AE882342BCD5E2CA86F29ABB * value)
{
___reader_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___reader_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Xml.XmlReader/XmlReaderDebuggerDisplayProxy
struct XmlReaderDebuggerDisplayProxy_t554A0424FC659767F6977BF48A4018DDECADFA01_marshaled_pinvoke
{
XmlReader_t13F08E3C651EB9F2AE882342BCD5E2CA86F29ABB * ___reader_0;
};
// Native definition for COM marshalling of System.Xml.XmlReader/XmlReaderDebuggerDisplayProxy
struct XmlReaderDebuggerDisplayProxy_t554A0424FC659767F6977BF48A4018DDECADFA01_marshaled_com
{
XmlReader_t13F08E3C651EB9F2AE882342BCD5E2CA86F29ABB * ___reader_0;
};
// <PrivateImplementationDetails>
struct U3CPrivateImplementationDetailsU3E_tBA431F51A4722F0776A8592A8C2A8770D6D54EFB : public RuntimeObject
{
public:
public:
};
struct U3CPrivateImplementationDetailsU3E_tBA431F51A4722F0776A8592A8C2A8770D6D54EFB_StaticFields
{
public:
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D6 <PrivateImplementationDetails>::5D100A87B697F3AE2015A5D3B2A7B5419E1BCA98
__StaticArrayInitTypeSizeU3D6_tB657E692303B443FF0E24AE8F75A675A844348C4 ___5D100A87B697F3AE2015A5D3B2A7B5419E1BCA98_0;
// System.Int64 <PrivateImplementationDetails>::EBC658B067B5C785A3F0BB67D73755F6FEE7F70C
int64_t ___EBC658B067B5C785A3F0BB67D73755F6FEE7F70C_1;
public:
inline static int32_t get_offset_of_U35D100A87B697F3AE2015A5D3B2A7B5419E1BCA98_0() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tBA431F51A4722F0776A8592A8C2A8770D6D54EFB_StaticFields, ___5D100A87B697F3AE2015A5D3B2A7B5419E1BCA98_0)); }
inline __StaticArrayInitTypeSizeU3D6_tB657E692303B443FF0E24AE8F75A675A844348C4 get_U35D100A87B697F3AE2015A5D3B2A7B5419E1BCA98_0() const { return ___5D100A87B697F3AE2015A5D3B2A7B5419E1BCA98_0; }
inline __StaticArrayInitTypeSizeU3D6_tB657E692303B443FF0E24AE8F75A675A844348C4 * get_address_of_U35D100A87B697F3AE2015A5D3B2A7B5419E1BCA98_0() { return &___5D100A87B697F3AE2015A5D3B2A7B5419E1BCA98_0; }
inline void set_U35D100A87B697F3AE2015A5D3B2A7B5419E1BCA98_0(__StaticArrayInitTypeSizeU3D6_tB657E692303B443FF0E24AE8F75A675A844348C4 value)
{
___5D100A87B697F3AE2015A5D3B2A7B5419E1BCA98_0 = value;
}
inline static int32_t get_offset_of_EBC658B067B5C785A3F0BB67D73755F6FEE7F70C_1() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tBA431F51A4722F0776A8592A8C2A8770D6D54EFB_StaticFields, ___EBC658B067B5C785A3F0BB67D73755F6FEE7F70C_1)); }
inline int64_t get_EBC658B067B5C785A3F0BB67D73755F6FEE7F70C_1() const { return ___EBC658B067B5C785A3F0BB67D73755F6FEE7F70C_1; }
inline int64_t* get_address_of_EBC658B067B5C785A3F0BB67D73755F6FEE7F70C_1() { return &___EBC658B067B5C785A3F0BB67D73755F6FEE7F70C_1; }
inline void set_EBC658B067B5C785A3F0BB67D73755F6FEE7F70C_1(int64_t value)
{
___EBC658B067B5C785A3F0BB67D73755F6FEE7F70C_1 = value;
}
};
// System.RuntimeFieldHandle
struct RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF
{
public:
// System.IntPtr System.RuntimeFieldHandle::value
intptr_t ___value_0;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF, ___value_0)); }
inline intptr_t get_value_0() const { return ___value_0; }
inline intptr_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(intptr_t value)
{
___value_0 = value;
}
};
// System.Xml.XmlConvert
struct XmlConvert_t0ED1642D9D0E4F0F7CB233F75C42460578F8ABF7 : public RuntimeObject
{
public:
public:
};
struct XmlConvert_t0ED1642D9D0E4F0F7CB233F75C42460578F8ABF7_StaticFields
{
public:
// System.Xml.XmlCharType System.Xml.XmlConvert::xmlCharType
XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9 ___xmlCharType_0;
// System.Char[] System.Xml.XmlConvert::crt
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___crt_1;
// System.Int32 System.Xml.XmlConvert::c_EncodedCharLength
int32_t ___c_EncodedCharLength_2;
// System.Char[] System.Xml.XmlConvert::WhitespaceChars
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___WhitespaceChars_3;
public:
inline static int32_t get_offset_of_xmlCharType_0() { return static_cast<int32_t>(offsetof(XmlConvert_t0ED1642D9D0E4F0F7CB233F75C42460578F8ABF7_StaticFields, ___xmlCharType_0)); }
inline XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9 get_xmlCharType_0() const { return ___xmlCharType_0; }
inline XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9 * get_address_of_xmlCharType_0() { return &___xmlCharType_0; }
inline void set_xmlCharType_0(XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9 value)
{
___xmlCharType_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___xmlCharType_0))->___charProperties_2), (void*)NULL);
}
inline static int32_t get_offset_of_crt_1() { return static_cast<int32_t>(offsetof(XmlConvert_t0ED1642D9D0E4F0F7CB233F75C42460578F8ABF7_StaticFields, ___crt_1)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_crt_1() const { return ___crt_1; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_crt_1() { return &___crt_1; }
inline void set_crt_1(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___crt_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___crt_1), (void*)value);
}
inline static int32_t get_offset_of_c_EncodedCharLength_2() { return static_cast<int32_t>(offsetof(XmlConvert_t0ED1642D9D0E4F0F7CB233F75C42460578F8ABF7_StaticFields, ___c_EncodedCharLength_2)); }
inline int32_t get_c_EncodedCharLength_2() const { return ___c_EncodedCharLength_2; }
inline int32_t* get_address_of_c_EncodedCharLength_2() { return &___c_EncodedCharLength_2; }
inline void set_c_EncodedCharLength_2(int32_t value)
{
___c_EncodedCharLength_2 = value;
}
inline static int32_t get_offset_of_WhitespaceChars_3() { return static_cast<int32_t>(offsetof(XmlConvert_t0ED1642D9D0E4F0F7CB233F75C42460578F8ABF7_StaticFields, ___WhitespaceChars_3)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_WhitespaceChars_3() const { return ___WhitespaceChars_3; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_WhitespaceChars_3() { return &___WhitespaceChars_3; }
inline void set_WhitespaceChars_3(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___WhitespaceChars_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___WhitespaceChars_3), (void*)value);
}
};
// System.Xml.XmlDocumentType
struct XmlDocumentType_t9AB8D5C3C27B699B885D941D4B4735A6EE039136 : public XmlLinkedNode_t4F76C8580C2E6D2908D88AC84A86060FA9289A0E
{
public:
// System.String System.Xml.XmlDocumentType::name
String_t* ___name_0;
// System.String System.Xml.XmlDocumentType::publicId
String_t* ___publicId_1;
// System.String System.Xml.XmlDocumentType::systemId
String_t* ___systemId_2;
// System.String System.Xml.XmlDocumentType::internalSubset
String_t* ___internalSubset_3;
public:
inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(XmlDocumentType_t9AB8D5C3C27B699B885D941D4B4735A6EE039136, ___name_0)); }
inline String_t* get_name_0() const { return ___name_0; }
inline String_t** get_address_of_name_0() { return &___name_0; }
inline void set_name_0(String_t* value)
{
___name_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value);
}
inline static int32_t get_offset_of_publicId_1() { return static_cast<int32_t>(offsetof(XmlDocumentType_t9AB8D5C3C27B699B885D941D4B4735A6EE039136, ___publicId_1)); }
inline String_t* get_publicId_1() const { return ___publicId_1; }
inline String_t** get_address_of_publicId_1() { return &___publicId_1; }
inline void set_publicId_1(String_t* value)
{
___publicId_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___publicId_1), (void*)value);
}
inline static int32_t get_offset_of_systemId_2() { return static_cast<int32_t>(offsetof(XmlDocumentType_t9AB8D5C3C27B699B885D941D4B4735A6EE039136, ___systemId_2)); }
inline String_t* get_systemId_2() const { return ___systemId_2; }
inline String_t** get_address_of_systemId_2() { return &___systemId_2; }
inline void set_systemId_2(String_t* value)
{
___systemId_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___systemId_2), (void*)value);
}
inline static int32_t get_offset_of_internalSubset_3() { return static_cast<int32_t>(offsetof(XmlDocumentType_t9AB8D5C3C27B699B885D941D4B4735A6EE039136, ___internalSubset_3)); }
inline String_t* get_internalSubset_3() const { return ___internalSubset_3; }
inline String_t** get_address_of_internalSubset_3() { return &___internalSubset_3; }
inline void set_internalSubset_3(String_t* value)
{
___internalSubset_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___internalSubset_3), (void*)value);
}
};
// System.Xml.XmlNodeType
struct XmlNodeType_tEE56AC4F9EC36B979516EA5836C4DA730B0A21E1
{
public:
// System.Int32 System.Xml.XmlNodeType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(XmlNodeType_tEE56AC4F9EC36B979516EA5836C4DA730B0A21E1, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// System.String[]
struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E : public RuntimeArray
{
public:
ALIGN_FIELD (8) String_t* m_Items[1];
public:
inline String_t* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline String_t** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, String_t* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Byte[]
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821 : public RuntimeArray
{
public:
ALIGN_FIELD (8) uint8_t m_Items[1];
public:
inline uint8_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, uint8_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
{
m_Items[index] = value;
}
};
// System.Char[]
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Il2CppChar m_Items[1];
public:
inline Il2CppChar GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Il2CppChar value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value)
{
m_Items[index] = value;
}
};
// System.Void System.Xml.DebuggerDisplayXmlNodeProxy::.ctor(System.Xml.XmlNode)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void DebuggerDisplayXmlNodeProxy__ctor_mA5D5DD4ED2B9ADDC61B2F79713FE2D56E161DEC6_inline (DebuggerDisplayXmlNodeProxy_t58EF0087247A9C17E275F3C790082C7C0A6947F0 * __this, XmlNode_t07D70045D843753E4FE8AFE40FD36244E6B6D7FB * ___node0, const RuntimeMethod* method);
// System.String System.String::Concat(System.String,System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mDD2E38332DED3A8C088D38D78A0E0BEB5091DA64 (String_t* ___str00, String_t* ___str11, String_t* ___str22, String_t* ___str33, const RuntimeMethod* method);
// System.String System.Xml.XmlConvert::EscapeValueForDebuggerDisplay(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_EscapeValueForDebuggerDisplay_mBB3CC9622F210260398750EA0E9D0D151F1DA449 (String_t* ___value0, const RuntimeMethod* method);
// System.String System.String::Concat(System.String[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m232E857CA5107EA6AC52E7DD7018716C021F237B (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___values0, const RuntimeMethod* method);
// System.String System.Xml.XmlDocumentType::get_SystemId()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* XmlDocumentType_get_SystemId_m4D995F9A6F7D34E70D9C53FD99D4A6EE66B473D0_inline (XmlDocumentType_t9AB8D5C3C27B699B885D941D4B4735A6EE039136 * __this, const RuntimeMethod* method);
// System.String System.Xml.XmlDocumentType::get_PublicId()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* XmlDocumentType_get_PublicId_m2DDA44AD846D5D03CC3E11FF284F5C40596FC51B_inline (XmlDocumentType_t9AB8D5C3C27B699B885D941D4B4735A6EE039136 * __this, const RuntimeMethod* method);
// System.String System.Xml.XmlDocumentType::get_InternalSubset()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* XmlDocumentType_get_InternalSubset_m47C247A372247168CC1B7DFC08B27BA3663A2177_inline (XmlDocumentType_t9AB8D5C3C27B699B885D941D4B4735A6EE039136 * __this, const RuntimeMethod* method);
// System.String System.Xml.DebuggerDisplayXmlNodeProxy::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DebuggerDisplayXmlNodeProxy_ToString_m7E1DD26BBDE4FD8BB63D9BFB36139D145E020F82 (DebuggerDisplayXmlNodeProxy_t58EF0087247A9C17E275F3C790082C7C0A6947F0 * __this, const RuntimeMethod* method);
// System.Void System.Object::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0 (RuntimeObject * __this, const RuntimeMethod* method);
// System.Object System.Xml.XmlCharType::get_StaticLock()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XmlCharType_get_StaticLock_mE0FF2E8B12DC2AFFAFAB5718FDD49FAE726A6513 (const RuntimeMethod* method);
// System.Void System.Threading.Monitor::Enter(System.Object,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5 (RuntimeObject * ___obj0, bool* ___lockTaken1, const RuntimeMethod* method);
// System.Void System.Xml.XmlCharType::SetProperties(System.String,System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlCharType_SetProperties_m892CAB57FF4A04EB120C6AA8D4ACA9645ED0A72C (String_t* ___ranges0, uint8_t ___value1, const RuntimeMethod* method);
// System.Void System.Threading.Monitor::Exit(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2 (RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Char System.String::get_Chars(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96 (String_t* __this, int32_t ___index0, const RuntimeMethod* method);
// System.Int32 System.String::get_Length()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline (String_t* __this, const RuntimeMethod* method);
// System.Void System.Xml.XmlCharType::.ctor(System.Byte[])
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void XmlCharType__ctor_m0B65BC6BD912979FA16676884EC3120565FD6DCD_inline (XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___charProperties0, const RuntimeMethod* method);
// System.Void System.Xml.XmlCharType::InitInstance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlCharType_InitInstance_m48449C6A7516A943668D92903B5D4203DD184AC6 (const RuntimeMethod* method);
// System.Void System.Text.StringBuilder::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m1C0F2D97B838537A2D0F64033AE4EF02D150A956 (StringBuilder_t * __this, int32_t ___capacity0, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m9EB954E99DC99B8CC712ABB70EAA07616B841D46 (StringBuilder_t * __this, String_t* ___value0, int32_t ___startIndex1, int32_t ___count2, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260 (StringBuilder_t * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A (StringBuilder_t * __this, Il2CppChar ___value0, const RuntimeMethod* method);
// System.Xml.XmlCharType System.Xml.XmlCharType::get_Instance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9 XmlCharType_get_Instance_mEAAD3E43BD5AC72FA94C12096B2A9C9684557210 (const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(System.Array,System.RuntimeFieldHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A (RuntimeArray * ___array0, RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF ___fldHandle1, const RuntimeMethod* method);
// System.String System.String::Concat(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mF4626905368D6558695A823466A1AF65EADB9923 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method);
// System.Void System.Xml.XmlReader/XmlReaderDebuggerDisplayProxy::.ctor(System.Xml.XmlReader)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void XmlReaderDebuggerDisplayProxy__ctor_mE3C1728E7BF85B9364C0F4244586C9C369F43215_inline (XmlReaderDebuggerDisplayProxy_t554A0424FC659767F6977BF48A4018DDECADFA01 * __this, XmlReader_t13F08E3C651EB9F2AE882342BCD5E2CA86F29ABB * ___reader0, const RuntimeMethod* method);
// System.String System.Xml.XmlReader/XmlReaderDebuggerDisplayProxy::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlReaderDebuggerDisplayProxy_ToString_mEB54B7610A4FB6E55E154378C4CE91D73EB8D4B6 (XmlReaderDebuggerDisplayProxy_t554A0424FC659767F6977BF48A4018DDECADFA01 * __this, const RuntimeMethod* method);
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: System.Xml.DebuggerDisplayXmlNodeProxy
IL2CPP_EXTERN_C void DebuggerDisplayXmlNodeProxy_t58EF0087247A9C17E275F3C790082C7C0A6947F0_marshal_pinvoke(const DebuggerDisplayXmlNodeProxy_t58EF0087247A9C17E275F3C790082C7C0A6947F0& unmarshaled, DebuggerDisplayXmlNodeProxy_t58EF0087247A9C17E275F3C790082C7C0A6947F0_marshaled_pinvoke& marshaled)
{
Exception_t* ___node_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'node' of type 'DebuggerDisplayXmlNodeProxy': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___node_0Exception, NULL);
}
IL2CPP_EXTERN_C void DebuggerDisplayXmlNodeProxy_t58EF0087247A9C17E275F3C790082C7C0A6947F0_marshal_pinvoke_back(const DebuggerDisplayXmlNodeProxy_t58EF0087247A9C17E275F3C790082C7C0A6947F0_marshaled_pinvoke& marshaled, DebuggerDisplayXmlNodeProxy_t58EF0087247A9C17E275F3C790082C7C0A6947F0& unmarshaled)
{
Exception_t* ___node_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'node' of type 'DebuggerDisplayXmlNodeProxy': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___node_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.Xml.DebuggerDisplayXmlNodeProxy
IL2CPP_EXTERN_C void DebuggerDisplayXmlNodeProxy_t58EF0087247A9C17E275F3C790082C7C0A6947F0_marshal_pinvoke_cleanup(DebuggerDisplayXmlNodeProxy_t58EF0087247A9C17E275F3C790082C7C0A6947F0_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: System.Xml.DebuggerDisplayXmlNodeProxy
IL2CPP_EXTERN_C void DebuggerDisplayXmlNodeProxy_t58EF0087247A9C17E275F3C790082C7C0A6947F0_marshal_com(const DebuggerDisplayXmlNodeProxy_t58EF0087247A9C17E275F3C790082C7C0A6947F0& unmarshaled, DebuggerDisplayXmlNodeProxy_t58EF0087247A9C17E275F3C790082C7C0A6947F0_marshaled_com& marshaled)
{
Exception_t* ___node_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'node' of type 'DebuggerDisplayXmlNodeProxy': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___node_0Exception, NULL);
}
IL2CPP_EXTERN_C void DebuggerDisplayXmlNodeProxy_t58EF0087247A9C17E275F3C790082C7C0A6947F0_marshal_com_back(const DebuggerDisplayXmlNodeProxy_t58EF0087247A9C17E275F3C790082C7C0A6947F0_marshaled_com& marshaled, DebuggerDisplayXmlNodeProxy_t58EF0087247A9C17E275F3C790082C7C0A6947F0& unmarshaled)
{
Exception_t* ___node_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'node' of type 'DebuggerDisplayXmlNodeProxy': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___node_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.Xml.DebuggerDisplayXmlNodeProxy
IL2CPP_EXTERN_C void DebuggerDisplayXmlNodeProxy_t58EF0087247A9C17E275F3C790082C7C0A6947F0_marshal_com_cleanup(DebuggerDisplayXmlNodeProxy_t58EF0087247A9C17E275F3C790082C7C0A6947F0_marshaled_com& marshaled)
{
}
// System.Void System.Xml.DebuggerDisplayXmlNodeProxy::.ctor(System.Xml.XmlNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebuggerDisplayXmlNodeProxy__ctor_mA5D5DD4ED2B9ADDC61B2F79713FE2D56E161DEC6 (DebuggerDisplayXmlNodeProxy_t58EF0087247A9C17E275F3C790082C7C0A6947F0 * __this, XmlNode_t07D70045D843753E4FE8AFE40FD36244E6B6D7FB * ___node0, const RuntimeMethod* method)
{
{
XmlNode_t07D70045D843753E4FE8AFE40FD36244E6B6D7FB * L_0 = ___node0;
__this->set_node_0(L_0);
return;
}
}
IL2CPP_EXTERN_C void DebuggerDisplayXmlNodeProxy__ctor_mA5D5DD4ED2B9ADDC61B2F79713FE2D56E161DEC6_AdjustorThunk (RuntimeObject * __this, XmlNode_t07D70045D843753E4FE8AFE40FD36244E6B6D7FB * ___node0, const RuntimeMethod* method)
{
int32_t _offset = 1;
DebuggerDisplayXmlNodeProxy_t58EF0087247A9C17E275F3C790082C7C0A6947F0 * _thisAdjusted = reinterpret_cast<DebuggerDisplayXmlNodeProxy_t58EF0087247A9C17E275F3C790082C7C0A6947F0 *>(__this + _offset);
DebuggerDisplayXmlNodeProxy__ctor_mA5D5DD4ED2B9ADDC61B2F79713FE2D56E161DEC6_inline(_thisAdjusted, ___node0, method);
}
// System.String System.Xml.DebuggerDisplayXmlNodeProxy::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DebuggerDisplayXmlNodeProxy_ToString_m7E1DD26BBDE4FD8BB63D9BFB36139D145E020F82 (DebuggerDisplayXmlNodeProxy_t58EF0087247A9C17E275F3C790082C7C0A6947F0 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DebuggerDisplayXmlNodeProxy_ToString_m7E1DD26BBDE4FD8BB63D9BFB36139D145E020F82_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
String_t* V_1 = NULL;
XmlDocumentType_t9AB8D5C3C27B699B885D941D4B4735A6EE039136 * V_2 = NULL;
{
XmlNode_t07D70045D843753E4FE8AFE40FD36244E6B6D7FB * L_0 = __this->get_node_0();
NullCheck(L_0);
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_0);
V_0 = L_1;
RuntimeObject * L_2 = Box(XmlNodeType_tEE56AC4F9EC36B979516EA5836C4DA730B0A21E1_il2cpp_TypeInfo_var, (&V_0));
NullCheck(L_2);
String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_2);
V_0 = *(int32_t*)UnBox(L_2);
V_1 = L_3;
int32_t L_4 = V_0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)))
{
case 0:
{
goto IL_006b;
}
case 1:
{
goto IL_008c;
}
case 2:
{
goto IL_00da;
}
case 3:
{
goto IL_00da;
}
case 4:
{
goto IL_006b;
}
case 5:
{
goto IL_016c;
}
case 6:
{
goto IL_008c;
}
case 7:
{
goto IL_00da;
}
case 8:
{
goto IL_016c;
}
case 9:
{
goto IL_00fd;
}
case 10:
{
goto IL_016c;
}
case 11:
{
goto IL_016c;
}
case 12:
{
goto IL_00da;
}
case 13:
{
goto IL_00da;
}
case 14:
{
goto IL_016c;
}
case 15:
{
goto IL_016c;
}
case 16:
{
goto IL_00da;
}
}
}
{
goto IL_016c;
}
IL_006b:
{
String_t* L_5 = V_1;
XmlNode_t07D70045D843753E4FE8AFE40FD36244E6B6D7FB * L_6 = __this->get_node_0();
NullCheck(L_6);
String_t* L_7 = VirtFuncInvoker0< String_t* >::Invoke(4 /* System.String System.Xml.XmlNode::get_Name() */, L_6);
String_t* L_8 = String_Concat_mDD2E38332DED3A8C088D38D78A0E0BEB5091DA64(L_5, _stringLiteralEF7DF15A14EF475D7226CBED4A41696F58C3B7C8, L_7, _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6, /*hidden argument*/NULL);
V_1 = L_8;
goto IL_016c;
}
IL_008c:
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_9 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)6);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_10 = L_9;
String_t* L_11 = V_1;
NullCheck(L_10);
ArrayElementTypeCheck (L_10, L_11);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_11);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_12 = L_10;
NullCheck(L_12);
ArrayElementTypeCheck (L_12, _stringLiteralEF7DF15A14EF475D7226CBED4A41696F58C3B7C8);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralEF7DF15A14EF475D7226CBED4A41696F58C3B7C8);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_13 = L_12;
XmlNode_t07D70045D843753E4FE8AFE40FD36244E6B6D7FB * L_14 = __this->get_node_0();
NullCheck(L_14);
String_t* L_15 = VirtFuncInvoker0< String_t* >::Invoke(4 /* System.String System.Xml.XmlNode::get_Name() */, L_14);
NullCheck(L_13);
ArrayElementTypeCheck (L_13, L_15);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_15);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_16 = L_13;
NullCheck(L_16);
ArrayElementTypeCheck (L_16, _stringLiteralAABE0BFB759A57A7D16A42D60C441B575F1E8236);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteralAABE0BFB759A57A7D16A42D60C441B575F1E8236);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_17 = L_16;
XmlNode_t07D70045D843753E4FE8AFE40FD36244E6B6D7FB * L_18 = __this->get_node_0();
NullCheck(L_18);
String_t* L_19 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Xml.XmlNode::get_Value() */, L_18);
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t0ED1642D9D0E4F0F7CB233F75C42460578F8ABF7_il2cpp_TypeInfo_var);
String_t* L_20 = XmlConvert_EscapeValueForDebuggerDisplay_mBB3CC9622F210260398750EA0E9D0D151F1DA449(L_19, /*hidden argument*/NULL);
NullCheck(L_17);
ArrayElementTypeCheck (L_17, L_20);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)L_20);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_21 = L_17;
NullCheck(L_21);
ArrayElementTypeCheck (L_21, _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6);
String_t* L_22 = String_Concat_m232E857CA5107EA6AC52E7DD7018716C021F237B(L_21, /*hidden argument*/NULL);
V_1 = L_22;
goto IL_016c;
}
IL_00da:
{
String_t* L_23 = V_1;
XmlNode_t07D70045D843753E4FE8AFE40FD36244E6B6D7FB * L_24 = __this->get_node_0();
NullCheck(L_24);
String_t* L_25 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Xml.XmlNode::get_Value() */, L_24);
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t0ED1642D9D0E4F0F7CB233F75C42460578F8ABF7_il2cpp_TypeInfo_var);
String_t* L_26 = XmlConvert_EscapeValueForDebuggerDisplay_mBB3CC9622F210260398750EA0E9D0D151F1DA449(L_25, /*hidden argument*/NULL);
String_t* L_27 = String_Concat_mDD2E38332DED3A8C088D38D78A0E0BEB5091DA64(L_23, _stringLiteral876090A3E5447880484D4ABD7013B98D230A9408, L_26, _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6, /*hidden argument*/NULL);
V_1 = L_27;
goto IL_016c;
}
IL_00fd:
{
XmlNode_t07D70045D843753E4FE8AFE40FD36244E6B6D7FB * L_28 = __this->get_node_0();
V_2 = ((XmlDocumentType_t9AB8D5C3C27B699B885D941D4B4735A6EE039136 *)CastclassClass((RuntimeObject*)L_28, XmlDocumentType_t9AB8D5C3C27B699B885D941D4B4735A6EE039136_il2cpp_TypeInfo_var));
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_29 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)10));
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_30 = L_29;
String_t* L_31 = V_1;
NullCheck(L_30);
ArrayElementTypeCheck (L_30, L_31);
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_31);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_32 = L_30;
NullCheck(L_32);
ArrayElementTypeCheck (L_32, _stringLiteralEF7DF15A14EF475D7226CBED4A41696F58C3B7C8);
(L_32)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralEF7DF15A14EF475D7226CBED4A41696F58C3B7C8);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_33 = L_32;
XmlDocumentType_t9AB8D5C3C27B699B885D941D4B4735A6EE039136 * L_34 = V_2;
NullCheck(L_34);
String_t* L_35 = VirtFuncInvoker0< String_t* >::Invoke(4 /* System.String System.Xml.XmlNode::get_Name() */, L_34);
NullCheck(L_33);
ArrayElementTypeCheck (L_33, L_35);
(L_33)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_35);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_36 = L_33;
NullCheck(L_36);
ArrayElementTypeCheck (L_36, _stringLiteral2AB8AA6F8B2F4F85B5F3A6C5310E19758643A012);
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral2AB8AA6F8B2F4F85B5F3A6C5310E19758643A012);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_37 = L_36;
XmlDocumentType_t9AB8D5C3C27B699B885D941D4B4735A6EE039136 * L_38 = V_2;
NullCheck(L_38);
String_t* L_39 = XmlDocumentType_get_SystemId_m4D995F9A6F7D34E70D9C53FD99D4A6EE66B473D0_inline(L_38, /*hidden argument*/NULL);
NullCheck(L_37);
ArrayElementTypeCheck (L_37, L_39);
(L_37)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)L_39);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_40 = L_37;
NullCheck(L_40);
ArrayElementTypeCheck (L_40, _stringLiteral4DBECE0B36C629599F77CB54B3D05C830DB093E9);
(L_40)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral4DBECE0B36C629599F77CB54B3D05C830DB093E9);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_41 = L_40;
XmlDocumentType_t9AB8D5C3C27B699B885D941D4B4735A6EE039136 * L_42 = V_2;
NullCheck(L_42);
String_t* L_43 = XmlDocumentType_get_PublicId_m2DDA44AD846D5D03CC3E11FF284F5C40596FC51B_inline(L_42, /*hidden argument*/NULL);
NullCheck(L_41);
ArrayElementTypeCheck (L_41, L_43);
(L_41)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)L_43);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_44 = L_41;
NullCheck(L_44);
ArrayElementTypeCheck (L_44, _stringLiteralAABE0BFB759A57A7D16A42D60C441B575F1E8236);
(L_44)->SetAt(static_cast<il2cpp_array_size_t>(7), (String_t*)_stringLiteralAABE0BFB759A57A7D16A42D60C441B575F1E8236);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_45 = L_44;
XmlDocumentType_t9AB8D5C3C27B699B885D941D4B4735A6EE039136 * L_46 = V_2;
NullCheck(L_46);
String_t* L_47 = XmlDocumentType_get_InternalSubset_m47C247A372247168CC1B7DFC08B27BA3663A2177_inline(L_46, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t0ED1642D9D0E4F0F7CB233F75C42460578F8ABF7_il2cpp_TypeInfo_var);
String_t* L_48 = XmlConvert_EscapeValueForDebuggerDisplay_mBB3CC9622F210260398750EA0E9D0D151F1DA449(L_47, /*hidden argument*/NULL);
NullCheck(L_45);
ArrayElementTypeCheck (L_45, L_48);
(L_45)->SetAt(static_cast<il2cpp_array_size_t>(8), (String_t*)L_48);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_49 = L_45;
NullCheck(L_49);
ArrayElementTypeCheck (L_49, _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6);
(L_49)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)9)), (String_t*)_stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6);
String_t* L_50 = String_Concat_m232E857CA5107EA6AC52E7DD7018716C021F237B(L_49, /*hidden argument*/NULL);
V_1 = L_50;
}
IL_016c:
{
String_t* L_51 = V_1;
return L_51;
}
}
IL2CPP_EXTERN_C String_t* DebuggerDisplayXmlNodeProxy_ToString_m7E1DD26BBDE4FD8BB63D9BFB36139D145E020F82_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
DebuggerDisplayXmlNodeProxy_t58EF0087247A9C17E275F3C790082C7C0A6947F0 * _thisAdjusted = reinterpret_cast<DebuggerDisplayXmlNodeProxy_t58EF0087247A9C17E275F3C790082C7C0A6947F0 *>(__this + _offset);
return DebuggerDisplayXmlNodeProxy_ToString_m7E1DD26BBDE4FD8BB63D9BFB36139D145E020F82(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: System.Xml.XmlCharType
IL2CPP_EXTERN_C void XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_marshal_pinvoke(const XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9& unmarshaled, XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_marshaled_pinvoke& marshaled)
{
marshaled.___charProperties_2 = il2cpp_codegen_com_marshal_safe_array(IL2CPP_VT_I1, unmarshaled.get_charProperties_2());
}
IL2CPP_EXTERN_C void XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_marshal_pinvoke_back(const XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_marshaled_pinvoke& marshaled, XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9& unmarshaled)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_pinvoke_FromNativeMethodDefinition_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
unmarshaled.set_charProperties_2((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)il2cpp_codegen_com_marshal_safe_array_result(IL2CPP_VT_I1, Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var, marshaled.___charProperties_2));
}
// Conversion method for clean up from marshalling of: System.Xml.XmlCharType
IL2CPP_EXTERN_C void XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_marshal_pinvoke_cleanup(XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_marshaled_pinvoke& marshaled)
{
il2cpp_codegen_com_destroy_safe_array(marshaled.___charProperties_2);
marshaled.___charProperties_2 = NULL;
}
// Conversion methods for marshalling of: System.Xml.XmlCharType
IL2CPP_EXTERN_C void XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_marshal_com(const XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9& unmarshaled, XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_marshaled_com& marshaled)
{
marshaled.___charProperties_2 = il2cpp_codegen_com_marshal_safe_array(IL2CPP_VT_I1, unmarshaled.get_charProperties_2());
}
IL2CPP_EXTERN_C void XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_marshal_com_back(const XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_marshaled_com& marshaled, XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9& unmarshaled)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_com_FromNativeMethodDefinition_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
unmarshaled.set_charProperties_2((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)il2cpp_codegen_com_marshal_safe_array_result(IL2CPP_VT_I1, Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var, marshaled.___charProperties_2));
}
// Conversion method for clean up from marshalling of: System.Xml.XmlCharType
IL2CPP_EXTERN_C void XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_marshal_com_cleanup(XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_marshaled_com& marshaled)
{
il2cpp_codegen_com_destroy_safe_array(marshaled.___charProperties_2);
marshaled.___charProperties_2 = NULL;
}
// System.Object System.Xml.XmlCharType::get_StaticLock()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XmlCharType_get_StaticLock_mE0FF2E8B12DC2AFFAFAB5718FDD49FAE726A6513 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XmlCharType_get_StaticLock_mE0FF2E8B12DC2AFFAFAB5718FDD49FAE726A6513_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
RuntimeObject * L_0 = ((XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_StaticFields*)il2cpp_codegen_static_fields_for(XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_il2cpp_TypeInfo_var))->get_s_Lock_0();
if (L_0)
{
goto IL_001a;
}
}
{
RuntimeObject * L_1 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_1, /*hidden argument*/NULL);
V_0 = L_1;
RuntimeObject * L_2 = V_0;
InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)(((XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_StaticFields*)il2cpp_codegen_static_fields_for(XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_il2cpp_TypeInfo_var))->get_address_of_s_Lock_0()), L_2, NULL);
}
IL_001a:
{
RuntimeObject * L_3 = ((XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_StaticFields*)il2cpp_codegen_static_fields_for(XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_il2cpp_TypeInfo_var))->get_s_Lock_0();
return L_3;
}
}
// System.Void System.Xml.XmlCharType::InitInstance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlCharType_InitInstance_m48449C6A7516A943668D92903B5D4203DD184AC6 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XmlCharType_InitInstance_m48449C6A7516A943668D92903B5D4203DD184AC6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
bool V_1 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeObject * L_0 = XmlCharType_get_StaticLock_mE0FF2E8B12DC2AFFAFAB5718FDD49FAE726A6513(/*hidden argument*/NULL);
V_0 = L_0;
V_1 = (bool)0;
}
IL_0008:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_1 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_1, (bool*)(&V_1), /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ((XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_StaticFields*)il2cpp_codegen_static_fields_for(XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_il2cpp_TypeInfo_var))->get_s_CharProperties_1();
il2cpp_codegen_memory_barrier();
if (!L_2)
{
goto IL_001b;
}
}
IL_0019:
{
IL2CPP_LEAVE(0x97, FINALLY_008d);
}
IL_001b:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)65536));
il2cpp_codegen_memory_barrier();
((XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_StaticFields*)il2cpp_codegen_static_fields_for(XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_il2cpp_TypeInfo_var))->set_s_CharProperties_1(L_3);
XmlCharType_SetProperties_m892CAB57FF4A04EB120C6AA8D4ACA9645ED0A72C(_stringLiteral77B3FBA04FD4C4EEEE9AB3A7FB216ADBB7982995, (uint8_t)1, /*hidden argument*/NULL);
XmlCharType_SetProperties_m892CAB57FF4A04EB120C6AA8D4ACA9645ED0A72C(_stringLiteral2D805000F0B1B718831F4576ED6B82409607A53D, (uint8_t)2, /*hidden argument*/NULL);
XmlCharType_SetProperties_m892CAB57FF4A04EB120C6AA8D4ACA9645ED0A72C(_stringLiteral7ABE4DB8E4E34EA3395A2A251F5922B296325989, (uint8_t)4, /*hidden argument*/NULL);
XmlCharType_SetProperties_m892CAB57FF4A04EB120C6AA8D4ACA9645ED0A72C(_stringLiteral03604A939E36BFD5AAB4D02EC49C56DD5FFE70A4, (uint8_t)8, /*hidden argument*/NULL);
XmlCharType_SetProperties_m892CAB57FF4A04EB120C6AA8D4ACA9645ED0A72C(_stringLiteralE9580394535B0E66F03CAFDAD8F8AEF279BB1C12, (uint8_t)((int32_t)16), /*hidden argument*/NULL);
XmlCharType_SetProperties_m892CAB57FF4A04EB120C6AA8D4ACA9645ED0A72C(_stringLiteral03604A939E36BFD5AAB4D02EC49C56DD5FFE70A4, (uint8_t)((int32_t)32), /*hidden argument*/NULL);
XmlCharType_SetProperties_m892CAB57FF4A04EB120C6AA8D4ACA9645ED0A72C(_stringLiteral1AE76814588A8852BEC1A4F868B17D08026CF135, (uint8_t)((int32_t)64), /*hidden argument*/NULL);
XmlCharType_SetProperties_m892CAB57FF4A04EB120C6AA8D4ACA9645ED0A72C(_stringLiteral30510FE0BC6A8F6A62E9D5309EF4010DB2D81A82, (uint8_t)((int32_t)128), /*hidden argument*/NULL);
IL2CPP_LEAVE(0x97, FINALLY_008d);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_008d;
}
FINALLY_008d:
{ // begin finally (depth: 1)
{
bool L_4 = V_1;
if (!L_4)
{
goto IL_0096;
}
}
IL_0090:
{
RuntimeObject * L_5 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_5, /*hidden argument*/NULL);
}
IL_0096:
{
IL2CPP_END_FINALLY(141)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(141)
{
IL2CPP_JUMP_TBL(0x97, IL_0097)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0097:
{
return;
}
}
// System.Void System.Xml.XmlCharType::SetProperties(System.String,System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlCharType_SetProperties_m892CAB57FF4A04EB120C6AA8D4ACA9645ED0A72C (String_t* ___ranges0, uint8_t ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XmlCharType_SetProperties_m892CAB57FF4A04EB120C6AA8D4ACA9645ED0A72C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
V_0 = 0;
goto IL_0037;
}
IL_0004:
{
String_t* L_0 = ___ranges0;
int32_t L_1 = V_0;
NullCheck(L_0);
Il2CppChar L_2 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_0, L_1, /*hidden argument*/NULL);
V_1 = L_2;
String_t* L_3 = ___ranges0;
int32_t L_4 = V_0;
NullCheck(L_3);
Il2CppChar L_5 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_3, ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)), /*hidden argument*/NULL);
V_2 = L_5;
goto IL_002f;
}
IL_0018:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = ((XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_StaticFields*)il2cpp_codegen_static_fields_for(XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_il2cpp_TypeInfo_var))->get_s_CharProperties_1();
il2cpp_codegen_memory_barrier();
int32_t L_7 = V_1;
NullCheck(L_6);
uint8_t* L_8 = ((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7)));
int32_t L_9 = *((uint8_t*)L_8);
uint8_t L_10 = ___value1;
*((int8_t*)L_8) = (int8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_9|(int32_t)L_10)))));
int32_t L_11 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1));
}
IL_002f:
{
int32_t L_12 = V_1;
int32_t L_13 = V_2;
if ((((int32_t)L_12) <= ((int32_t)L_13)))
{
goto IL_0018;
}
}
{
int32_t L_14 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)2));
}
IL_0037:
{
int32_t L_15 = V_0;
String_t* L_16 = ___ranges0;
NullCheck(L_16);
int32_t L_17 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_16, /*hidden argument*/NULL);
if ((((int32_t)L_15) < ((int32_t)L_17)))
{
goto IL_0004;
}
}
{
return;
}
}
// System.Void System.Xml.XmlCharType::.ctor(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlCharType__ctor_m0B65BC6BD912979FA16676884EC3120565FD6DCD (XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___charProperties0, const RuntimeMethod* method)
{
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___charProperties0;
__this->set_charProperties_2(L_0);
return;
}
}
IL2CPP_EXTERN_C void XmlCharType__ctor_m0B65BC6BD912979FA16676884EC3120565FD6DCD_AdjustorThunk (RuntimeObject * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___charProperties0, const RuntimeMethod* method)
{
int32_t _offset = 1;
XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9 * _thisAdjusted = reinterpret_cast<XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9 *>(__this + _offset);
XmlCharType__ctor_m0B65BC6BD912979FA16676884EC3120565FD6DCD_inline(_thisAdjusted, ___charProperties0, method);
}
// System.Xml.XmlCharType System.Xml.XmlCharType::get_Instance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9 XmlCharType_get_Instance_mEAAD3E43BD5AC72FA94C12096B2A9C9684557210 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XmlCharType_get_Instance_mEAAD3E43BD5AC72FA94C12096B2A9C9684557210_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ((XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_StaticFields*)il2cpp_codegen_static_fields_for(XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_il2cpp_TypeInfo_var))->get_s_CharProperties_1();
il2cpp_codegen_memory_barrier();
if (L_0)
{
goto IL_000e;
}
}
{
XmlCharType_InitInstance_m48449C6A7516A943668D92903B5D4203DD184AC6(/*hidden argument*/NULL);
}
IL_000e:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ((XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_StaticFields*)il2cpp_codegen_static_fields_for(XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9_il2cpp_TypeInfo_var))->get_s_CharProperties_1();
il2cpp_codegen_memory_barrier();
XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9 L_2;
memset((&L_2), 0, sizeof(L_2));
XmlCharType__ctor_m0B65BC6BD912979FA16676884EC3120565FD6DCD_inline((&L_2), L_1, /*hidden argument*/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.String System.Xml.XmlConvert::EscapeValueForDebuggerDisplay(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_EscapeValueForDebuggerDisplay_mBB3CC9622F210260398750EA0E9D0D151F1DA449 (String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XmlConvert_EscapeValueForDebuggerDisplay_mBB3CC9622F210260398750EA0E9D0D151F1DA449_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
int32_t V_1 = 0;
int32_t V_2 = 0;
Il2CppChar V_3 = 0x0;
{
V_0 = (StringBuilder_t *)NULL;
V_1 = 0;
V_2 = 0;
goto IL_00ad;
}
IL_000b:
{
String_t* L_0 = ___value0;
int32_t L_1 = V_1;
NullCheck(L_0);
Il2CppChar L_2 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_0, L_1, /*hidden argument*/NULL);
V_3 = L_2;
Il2CppChar L_3 = V_3;
if ((((int32_t)L_3) < ((int32_t)((int32_t)32))))
{
goto IL_0020;
}
}
{
Il2CppChar L_4 = V_3;
if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)34)))))
{
goto IL_00a9;
}
}
IL_0020:
{
StringBuilder_t * L_5 = V_0;
if (L_5)
{
goto IL_0031;
}
}
{
String_t* L_6 = ___value0;
NullCheck(L_6);
int32_t L_7 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_6, /*hidden argument*/NULL);
StringBuilder_t * L_8 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m1C0F2D97B838537A2D0F64033AE4EF02D150A956(L_8, ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)4)), /*hidden argument*/NULL);
V_0 = L_8;
}
IL_0031:
{
int32_t L_9 = V_1;
int32_t L_10 = V_2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)L_10))) <= ((int32_t)0)))
{
goto IL_0043;
}
}
{
StringBuilder_t * L_11 = V_0;
String_t* L_12 = ___value0;
int32_t L_13 = V_2;
int32_t L_14 = V_1;
int32_t L_15 = V_2;
NullCheck(L_11);
StringBuilder_Append_m9EB954E99DC99B8CC712ABB70EAA07616B841D46(L_11, L_12, L_13, ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)L_15)), /*hidden argument*/NULL);
}
IL_0043:
{
int32_t L_16 = V_1;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
Il2CppChar L_17 = V_3;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)((int32_t)9))))
{
case 0:
{
goto IL_0093;
}
case 1:
{
goto IL_0085;
}
case 2:
{
goto IL_00a1;
}
case 3:
{
goto IL_00a1;
}
case 4:
{
goto IL_0077;
}
}
}
{
Il2CppChar L_18 = V_3;
if ((!(((uint32_t)L_18) == ((uint32_t)((int32_t)34)))))
{
goto IL_00a1;
}
}
{
StringBuilder_t * L_19 = V_0;
NullCheck(L_19);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_19, _stringLiteralAB006BB8AACDF6E68299BC1DFFCCC9BCC8AC3EAF, /*hidden argument*/NULL);
goto IL_00a9;
}
IL_0077:
{
StringBuilder_t * L_20 = V_0;
NullCheck(L_20);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_20, _stringLiteralF12C84902108895980702C88DB900CEEA2D2EC01, /*hidden argument*/NULL);
goto IL_00a9;
}
IL_0085:
{
StringBuilder_t * L_21 = V_0;
NullCheck(L_21);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_21, _stringLiteralEF7E6794CA9C6A06B54B66F279237FB8DAAAEEA8, /*hidden argument*/NULL);
goto IL_00a9;
}
IL_0093:
{
StringBuilder_t * L_22 = V_0;
NullCheck(L_22);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_22, _stringLiteral8BF81043E29DFC96A6FE1F30F7116F552DE6E7D7, /*hidden argument*/NULL);
goto IL_00a9;
}
IL_00a1:
{
StringBuilder_t * L_23 = V_0;
Il2CppChar L_24 = V_3;
NullCheck(L_23);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_23, L_24, /*hidden argument*/NULL);
}
IL_00a9:
{
int32_t L_25 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_00ad:
{
int32_t L_26 = V_1;
String_t* L_27 = ___value0;
NullCheck(L_27);
int32_t L_28 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_27, /*hidden argument*/NULL);
if ((((int32_t)L_26) < ((int32_t)L_28)))
{
goto IL_000b;
}
}
{
StringBuilder_t * L_29 = V_0;
if (L_29)
{
goto IL_00be;
}
}
{
String_t* L_30 = ___value0;
return L_30;
}
IL_00be:
{
int32_t L_31 = V_1;
int32_t L_32 = V_2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_31, (int32_t)L_32))) <= ((int32_t)0)))
{
goto IL_00d0;
}
}
{
StringBuilder_t * L_33 = V_0;
String_t* L_34 = ___value0;
int32_t L_35 = V_2;
int32_t L_36 = V_1;
int32_t L_37 = V_2;
NullCheck(L_33);
StringBuilder_Append_m9EB954E99DC99B8CC712ABB70EAA07616B841D46(L_33, L_34, L_35, ((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)L_37)), /*hidden argument*/NULL);
}
IL_00d0:
{
StringBuilder_t * L_38 = V_0;
NullCheck(L_38);
String_t* L_39 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_38);
return L_39;
}
}
// System.Void System.Xml.XmlConvert::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlConvert__cctor_m1EE317B21041E9F0ABE85E4DB9EE427C21DB4F03 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XmlConvert__cctor_m1EE317B21041E9F0ABE85E4DB9EE427C21DB4F03_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9 L_0 = XmlCharType_get_Instance_mEAAD3E43BD5AC72FA94C12096B2A9C9684557210(/*hidden argument*/NULL);
((XmlConvert_t0ED1642D9D0E4F0F7CB233F75C42460578F8ABF7_StaticFields*)il2cpp_codegen_static_fields_for(XmlConvert_t0ED1642D9D0E4F0F7CB233F75C42460578F8ABF7_il2cpp_TypeInfo_var))->set_xmlCharType_0(L_0);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)3);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_2 = L_1;
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_3 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_tBA431F51A4722F0776A8592A8C2A8770D6D54EFB____5D100A87B697F3AE2015A5D3B2A7B5419E1BCA98_0_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_2, L_3, /*hidden argument*/NULL);
((XmlConvert_t0ED1642D9D0E4F0F7CB233F75C42460578F8ABF7_StaticFields*)il2cpp_codegen_static_fields_for(XmlConvert_t0ED1642D9D0E4F0F7CB233F75C42460578F8ABF7_il2cpp_TypeInfo_var))->set_crt_1(L_2);
((XmlConvert_t0ED1642D9D0E4F0F7CB233F75C42460578F8ABF7_StaticFields*)il2cpp_codegen_static_fields_for(XmlConvert_t0ED1642D9D0E4F0F7CB233F75C42460578F8ABF7_il2cpp_TypeInfo_var))->set_c_EncodedCharLength_2(7);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_4 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)4);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_5 = L_4;
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_6 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_tBA431F51A4722F0776A8592A8C2A8770D6D54EFB____EBC658B067B5C785A3F0BB67D73755F6FEE7F70C_1_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_5, L_6, /*hidden argument*/NULL);
((XmlConvert_t0ED1642D9D0E4F0F7CB233F75C42460578F8ABF7_StaticFields*)il2cpp_codegen_static_fields_for(XmlConvert_t0ED1642D9D0E4F0F7CB233F75C42460578F8ABF7_il2cpp_TypeInfo_var))->set_WhitespaceChars_3(L_5);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String System.Xml.XmlDocumentType::get_Name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDocumentType_get_Name_m1AD33BED673249FB1F704F19A1A9D705ABF6FD1C (XmlDocumentType_t9AB8D5C3C27B699B885D941D4B4735A6EE039136 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_name_0();
return L_0;
}
}
// System.Xml.XmlNodeType System.Xml.XmlDocumentType::get_NodeType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlDocumentType_get_NodeType_m3DF8ACD66E13DD9C1E9C358E0C3F148EBCE5627C (XmlDocumentType_t9AB8D5C3C27B699B885D941D4B4735A6EE039136 * __this, const RuntimeMethod* method)
{
{
return (int32_t)(((int32_t)10));
}
}
// System.String System.Xml.XmlDocumentType::get_PublicId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDocumentType_get_PublicId_m2DDA44AD846D5D03CC3E11FF284F5C40596FC51B (XmlDocumentType_t9AB8D5C3C27B699B885D941D4B4735A6EE039136 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_publicId_1();
return L_0;
}
}
// System.String System.Xml.XmlDocumentType::get_SystemId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDocumentType_get_SystemId_m4D995F9A6F7D34E70D9C53FD99D4A6EE66B473D0 (XmlDocumentType_t9AB8D5C3C27B699B885D941D4B4735A6EE039136 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_systemId_2();
return L_0;
}
}
// System.String System.Xml.XmlDocumentType::get_InternalSubset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDocumentType_get_InternalSubset_m47C247A372247168CC1B7DFC08B27BA3663A2177 (XmlDocumentType_t9AB8D5C3C27B699B885D941D4B4735A6EE039136 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_internalSubset_3();
return L_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String System.Xml.XmlNode::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlNode_get_Value_m800C60D728321E855696990CA7CF070A60710E65 (XmlNode_t07D70045D843753E4FE8AFE40FD36244E6B6D7FB * __this, const RuntimeMethod* method)
{
{
return (String_t*)NULL;
}
}
// System.Object System.Xml.XmlNode::get_debuggerDisplayProxy()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XmlNode_get_debuggerDisplayProxy_m0B8A99A23A898A5F4549461C021E32E84B5CEC35 (XmlNode_t07D70045D843753E4FE8AFE40FD36244E6B6D7FB * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XmlNode_get_debuggerDisplayProxy_m0B8A99A23A898A5F4549461C021E32E84B5CEC35_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
DebuggerDisplayXmlNodeProxy_t58EF0087247A9C17E275F3C790082C7C0A6947F0 L_0;
memset((&L_0), 0, sizeof(L_0));
DebuggerDisplayXmlNodeProxy__ctor_mA5D5DD4ED2B9ADDC61B2F79713FE2D56E161DEC6_inline((&L_0), __this, /*hidden argument*/NULL);
DebuggerDisplayXmlNodeProxy_t58EF0087247A9C17E275F3C790082C7C0A6947F0 L_1 = L_0;
RuntimeObject * L_2 = Box(DebuggerDisplayXmlNodeProxy_t58EF0087247A9C17E275F3C790082C7C0A6947F0_il2cpp_TypeInfo_var, &L_1);
return L_2;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String System.Xml.XmlReader::get_Name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlReader_get_Name_mD20CD40668A90CDC612E1FD58193388246CD4893 (XmlReader_t13F08E3C651EB9F2AE882342BCD5E2CA86F29ABB * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XmlReader_get_Name_mD20CD40668A90CDC612E1FD58193388246CD4893_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlReader::get_Prefix() */, __this);
NullCheck(L_0);
int32_t L_1 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_0, /*hidden argument*/NULL);
if (L_1)
{
goto IL_0014;
}
}
{
String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.XmlReader::get_LocalName() */, __this);
return L_2;
}
IL_0014:
{
XmlNameTable_t3C1CDAB4E7D97DE41A409D6D9ADD2C10B1F281A6 * L_3 = VirtFuncInvoker0< XmlNameTable_t3C1CDAB4E7D97DE41A409D6D9ADD2C10B1F281A6 * >::Invoke(10 /* System.Xml.XmlNameTable System.Xml.XmlReader::get_NameTable() */, __this);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlReader::get_Prefix() */, __this);
String_t* L_5 = VirtFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.XmlReader::get_LocalName() */, __this);
String_t* L_6 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_4, _stringLiteral05A79F06CF3F67F726DAE68D18A2290F6C9A50C9, L_5, /*hidden argument*/NULL);
NullCheck(L_3);
String_t* L_7 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(4 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_3, L_6);
return L_7;
}
}
// System.Object System.Xml.XmlReader::get_debuggerDisplayProxy()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XmlReader_get_debuggerDisplayProxy_m0E4E80BB3ECC5A994F93C06EF8826BFAA9DB9CF1 (XmlReader_t13F08E3C651EB9F2AE882342BCD5E2CA86F29ABB * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XmlReader_get_debuggerDisplayProxy_m0E4E80BB3ECC5A994F93C06EF8826BFAA9DB9CF1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
XmlReaderDebuggerDisplayProxy_t554A0424FC659767F6977BF48A4018DDECADFA01 L_0;
memset((&L_0), 0, sizeof(L_0));
XmlReaderDebuggerDisplayProxy__ctor_mE3C1728E7BF85B9364C0F4244586C9C369F43215_inline((&L_0), __this, /*hidden argument*/NULL);
XmlReaderDebuggerDisplayProxy_t554A0424FC659767F6977BF48A4018DDECADFA01 L_1 = L_0;
RuntimeObject * L_2 = Box(XmlReaderDebuggerDisplayProxy_t554A0424FC659767F6977BF48A4018DDECADFA01_il2cpp_TypeInfo_var, &L_1);
return L_2;
}
}
// System.Void System.Xml.XmlReader::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReader__cctor_m3EF2489C81E4EEF249A34242FC130A861972991E (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XmlReader__cctor_m3EF2489C81E4EEF249A34242FC130A861972991E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
((XmlReader_t13F08E3C651EB9F2AE882342BCD5E2CA86F29ABB_StaticFields*)il2cpp_codegen_static_fields_for(XmlReader_t13F08E3C651EB9F2AE882342BCD5E2CA86F29ABB_il2cpp_TypeInfo_var))->set_IsTextualNodeBitmap_0(((int32_t)24600));
((XmlReader_t13F08E3C651EB9F2AE882342BCD5E2CA86F29ABB_StaticFields*)il2cpp_codegen_static_fields_for(XmlReader_t13F08E3C651EB9F2AE882342BCD5E2CA86F29ABB_il2cpp_TypeInfo_var))->set_CanReadContentAsBitmap_1(((int32_t)123324));
((XmlReader_t13F08E3C651EB9F2AE882342BCD5E2CA86F29ABB_StaticFields*)il2cpp_codegen_static_fields_for(XmlReader_t13F08E3C651EB9F2AE882342BCD5E2CA86F29ABB_il2cpp_TypeInfo_var))->set_HasValueBitmap_2(((int32_t)157084));
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
// Conversion methods for marshalling of: System.Xml.XmlReader/XmlReaderDebuggerDisplayProxy
IL2CPP_EXTERN_C void XmlReaderDebuggerDisplayProxy_t554A0424FC659767F6977BF48A4018DDECADFA01_marshal_pinvoke(const XmlReaderDebuggerDisplayProxy_t554A0424FC659767F6977BF48A4018DDECADFA01& unmarshaled, XmlReaderDebuggerDisplayProxy_t554A0424FC659767F6977BF48A4018DDECADFA01_marshaled_pinvoke& marshaled)
{
Exception_t* ___reader_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'reader' of type 'XmlReaderDebuggerDisplayProxy': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___reader_0Exception, NULL);
}
IL2CPP_EXTERN_C void XmlReaderDebuggerDisplayProxy_t554A0424FC659767F6977BF48A4018DDECADFA01_marshal_pinvoke_back(const XmlReaderDebuggerDisplayProxy_t554A0424FC659767F6977BF48A4018DDECADFA01_marshaled_pinvoke& marshaled, XmlReaderDebuggerDisplayProxy_t554A0424FC659767F6977BF48A4018DDECADFA01& unmarshaled)
{
Exception_t* ___reader_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'reader' of type 'XmlReaderDebuggerDisplayProxy': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___reader_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.Xml.XmlReader/XmlReaderDebuggerDisplayProxy
IL2CPP_EXTERN_C void XmlReaderDebuggerDisplayProxy_t554A0424FC659767F6977BF48A4018DDECADFA01_marshal_pinvoke_cleanup(XmlReaderDebuggerDisplayProxy_t554A0424FC659767F6977BF48A4018DDECADFA01_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: System.Xml.XmlReader/XmlReaderDebuggerDisplayProxy
IL2CPP_EXTERN_C void XmlReaderDebuggerDisplayProxy_t554A0424FC659767F6977BF48A4018DDECADFA01_marshal_com(const XmlReaderDebuggerDisplayProxy_t554A0424FC659767F6977BF48A4018DDECADFA01& unmarshaled, XmlReaderDebuggerDisplayProxy_t554A0424FC659767F6977BF48A4018DDECADFA01_marshaled_com& marshaled)
{
Exception_t* ___reader_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'reader' of type 'XmlReaderDebuggerDisplayProxy': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___reader_0Exception, NULL);
}
IL2CPP_EXTERN_C void XmlReaderDebuggerDisplayProxy_t554A0424FC659767F6977BF48A4018DDECADFA01_marshal_com_back(const XmlReaderDebuggerDisplayProxy_t554A0424FC659767F6977BF48A4018DDECADFA01_marshaled_com& marshaled, XmlReaderDebuggerDisplayProxy_t554A0424FC659767F6977BF48A4018DDECADFA01& unmarshaled)
{
Exception_t* ___reader_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'reader' of type 'XmlReaderDebuggerDisplayProxy': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___reader_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.Xml.XmlReader/XmlReaderDebuggerDisplayProxy
IL2CPP_EXTERN_C void XmlReaderDebuggerDisplayProxy_t554A0424FC659767F6977BF48A4018DDECADFA01_marshal_com_cleanup(XmlReaderDebuggerDisplayProxy_t554A0424FC659767F6977BF48A4018DDECADFA01_marshaled_com& marshaled)
{
}
// System.Void System.Xml.XmlReader_XmlReaderDebuggerDisplayProxy::.ctor(System.Xml.XmlReader)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderDebuggerDisplayProxy__ctor_mE3C1728E7BF85B9364C0F4244586C9C369F43215 (XmlReaderDebuggerDisplayProxy_t554A0424FC659767F6977BF48A4018DDECADFA01 * __this, XmlReader_t13F08E3C651EB9F2AE882342BCD5E2CA86F29ABB * ___reader0, const RuntimeMethod* method)
{
{
XmlReader_t13F08E3C651EB9F2AE882342BCD5E2CA86F29ABB * L_0 = ___reader0;
__this->set_reader_0(L_0);
return;
}
}
IL2CPP_EXTERN_C void XmlReaderDebuggerDisplayProxy__ctor_mE3C1728E7BF85B9364C0F4244586C9C369F43215_AdjustorThunk (RuntimeObject * __this, XmlReader_t13F08E3C651EB9F2AE882342BCD5E2CA86F29ABB * ___reader0, const RuntimeMethod* method)
{
int32_t _offset = 1;
XmlReaderDebuggerDisplayProxy_t554A0424FC659767F6977BF48A4018DDECADFA01 * _thisAdjusted = reinterpret_cast<XmlReaderDebuggerDisplayProxy_t554A0424FC659767F6977BF48A4018DDECADFA01 *>(__this + _offset);
XmlReaderDebuggerDisplayProxy__ctor_mE3C1728E7BF85B9364C0F4244586C9C369F43215_inline(_thisAdjusted, ___reader0, method);
}
// System.String System.Xml.XmlReader_XmlReaderDebuggerDisplayProxy::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlReaderDebuggerDisplayProxy_ToString_mEB54B7610A4FB6E55E154378C4CE91D73EB8D4B6 (XmlReaderDebuggerDisplayProxy_t554A0424FC659767F6977BF48A4018DDECADFA01 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XmlReaderDebuggerDisplayProxy_ToString_mEB54B7610A4FB6E55E154378C4CE91D73EB8D4B6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
String_t* V_1 = NULL;
{
XmlReader_t13F08E3C651EB9F2AE882342BCD5E2CA86F29ABB * L_0 = __this->get_reader_0();
NullCheck(L_0);
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(4 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_0);
V_0 = L_1;
RuntimeObject * L_2 = Box(XmlNodeType_tEE56AC4F9EC36B979516EA5836C4DA730B0A21E1_il2cpp_TypeInfo_var, (&V_0));
NullCheck(L_2);
String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_2);
V_0 = *(int32_t*)UnBox(L_2);
V_1 = L_3;
int32_t L_4 = V_0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)))
{
case 0:
{
goto IL_006b;
}
case 1:
{
goto IL_008c;
}
case 2:
{
goto IL_00da;
}
case 3:
{
goto IL_00da;
}
case 4:
{
goto IL_006b;
}
case 5:
{
goto IL_017c;
}
case 6:
{
goto IL_008c;
}
case 7:
{
goto IL_00da;
}
case 8:
{
goto IL_017c;
}
case 9:
{
goto IL_00fd;
}
case 10:
{
goto IL_017c;
}
case 11:
{
goto IL_017c;
}
case 12:
{
goto IL_00da;
}
case 13:
{
goto IL_00da;
}
case 14:
{
goto IL_006b;
}
case 15:
{
goto IL_006b;
}
case 16:
{
goto IL_00da;
}
}
}
{
goto IL_017c;
}
IL_006b:
{
String_t* L_5 = V_1;
XmlReader_t13F08E3C651EB9F2AE882342BCD5E2CA86F29ABB * L_6 = __this->get_reader_0();
NullCheck(L_6);
String_t* L_7 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Xml.XmlReader::get_Name() */, L_6);
String_t* L_8 = String_Concat_mDD2E38332DED3A8C088D38D78A0E0BEB5091DA64(L_5, _stringLiteralEF7DF15A14EF475D7226CBED4A41696F58C3B7C8, L_7, _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6, /*hidden argument*/NULL);
V_1 = L_8;
goto IL_017c;
}
IL_008c:
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_9 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)6);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_10 = L_9;
String_t* L_11 = V_1;
NullCheck(L_10);
ArrayElementTypeCheck (L_10, L_11);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_11);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_12 = L_10;
NullCheck(L_12);
ArrayElementTypeCheck (L_12, _stringLiteralEF7DF15A14EF475D7226CBED4A41696F58C3B7C8);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralEF7DF15A14EF475D7226CBED4A41696F58C3B7C8);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_13 = L_12;
XmlReader_t13F08E3C651EB9F2AE882342BCD5E2CA86F29ABB * L_14 = __this->get_reader_0();
NullCheck(L_14);
String_t* L_15 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Xml.XmlReader::get_Name() */, L_14);
NullCheck(L_13);
ArrayElementTypeCheck (L_13, L_15);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_15);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_16 = L_13;
NullCheck(L_16);
ArrayElementTypeCheck (L_16, _stringLiteralAABE0BFB759A57A7D16A42D60C441B575F1E8236);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteralAABE0BFB759A57A7D16A42D60C441B575F1E8236);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_17 = L_16;
XmlReader_t13F08E3C651EB9F2AE882342BCD5E2CA86F29ABB * L_18 = __this->get_reader_0();
NullCheck(L_18);
String_t* L_19 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_Value() */, L_18);
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t0ED1642D9D0E4F0F7CB233F75C42460578F8ABF7_il2cpp_TypeInfo_var);
String_t* L_20 = XmlConvert_EscapeValueForDebuggerDisplay_mBB3CC9622F210260398750EA0E9D0D151F1DA449(L_19, /*hidden argument*/NULL);
NullCheck(L_17);
ArrayElementTypeCheck (L_17, L_20);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)L_20);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_21 = L_17;
NullCheck(L_21);
ArrayElementTypeCheck (L_21, _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6);
String_t* L_22 = String_Concat_m232E857CA5107EA6AC52E7DD7018716C021F237B(L_21, /*hidden argument*/NULL);
V_1 = L_22;
goto IL_017c;
}
IL_00da:
{
String_t* L_23 = V_1;
XmlReader_t13F08E3C651EB9F2AE882342BCD5E2CA86F29ABB * L_24 = __this->get_reader_0();
NullCheck(L_24);
String_t* L_25 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_Value() */, L_24);
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t0ED1642D9D0E4F0F7CB233F75C42460578F8ABF7_il2cpp_TypeInfo_var);
String_t* L_26 = XmlConvert_EscapeValueForDebuggerDisplay_mBB3CC9622F210260398750EA0E9D0D151F1DA449(L_25, /*hidden argument*/NULL);
String_t* L_27 = String_Concat_mDD2E38332DED3A8C088D38D78A0E0BEB5091DA64(L_23, _stringLiteral876090A3E5447880484D4ABD7013B98D230A9408, L_26, _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6, /*hidden argument*/NULL);
V_1 = L_27;
goto IL_017c;
}
IL_00fd:
{
String_t* L_28 = V_1;
XmlReader_t13F08E3C651EB9F2AE882342BCD5E2CA86F29ABB * L_29 = __this->get_reader_0();
NullCheck(L_29);
String_t* L_30 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Xml.XmlReader::get_Name() */, L_29);
String_t* L_31 = String_Concat_mDD2E38332DED3A8C088D38D78A0E0BEB5091DA64(L_28, _stringLiteralEF7DF15A14EF475D7226CBED4A41696F58C3B7C8, L_30, _stringLiteralBB589D0621E5472F470FA3425A234C74B1E202E8, /*hidden argument*/NULL);
V_1 = L_31;
String_t* L_32 = V_1;
XmlReader_t13F08E3C651EB9F2AE882342BCD5E2CA86F29ABB * L_33 = __this->get_reader_0();
NullCheck(L_33);
String_t* L_34 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::GetAttribute(System.String) */, L_33, _stringLiteral29D43743C43BDA9873FC7A79C99F2EC4B6B442B1);
String_t* L_35 = String_Concat_mDD2E38332DED3A8C088D38D78A0E0BEB5091DA64(L_32, _stringLiteral919176ABD217DFC0AE8AB2A29692E22D95F3AC4B, L_34, _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6, /*hidden argument*/NULL);
V_1 = L_35;
String_t* L_36 = V_1;
XmlReader_t13F08E3C651EB9F2AE882342BCD5E2CA86F29ABB * L_37 = __this->get_reader_0();
NullCheck(L_37);
String_t* L_38 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::GetAttribute(System.String) */, L_37, _stringLiteralD1785CA28C3A4D29A6EDEF1520C544B838A93DB3);
String_t* L_39 = String_Concat_mDD2E38332DED3A8C088D38D78A0E0BEB5091DA64(L_36, _stringLiteral50813027F068E3C36CB1518BAADF80EBFA016339, L_38, _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6, /*hidden argument*/NULL);
V_1 = L_39;
String_t* L_40 = V_1;
XmlReader_t13F08E3C651EB9F2AE882342BCD5E2CA86F29ABB * L_41 = __this->get_reader_0();
NullCheck(L_41);
String_t* L_42 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_Value() */, L_41);
IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t0ED1642D9D0E4F0F7CB233F75C42460578F8ABF7_il2cpp_TypeInfo_var);
String_t* L_43 = XmlConvert_EscapeValueForDebuggerDisplay_mBB3CC9622F210260398750EA0E9D0D151F1DA449(L_42, /*hidden argument*/NULL);
String_t* L_44 = String_Concat_mDD2E38332DED3A8C088D38D78A0E0BEB5091DA64(L_40, _stringLiteral876090A3E5447880484D4ABD7013B98D230A9408, L_43, _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6, /*hidden argument*/NULL);
V_1 = L_44;
}
IL_017c:
{
String_t* L_45 = V_1;
return L_45;
}
}
IL2CPP_EXTERN_C String_t* XmlReaderDebuggerDisplayProxy_ToString_mEB54B7610A4FB6E55E154378C4CE91D73EB8D4B6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
XmlReaderDebuggerDisplayProxy_t554A0424FC659767F6977BF48A4018DDECADFA01 * _thisAdjusted = reinterpret_cast<XmlReaderDebuggerDisplayProxy_t554A0424FC659767F6977BF48A4018DDECADFA01 *>(__this + _offset);
return XmlReaderDebuggerDisplayProxy_ToString_mEB54B7610A4FB6E55E154378C4CE91D73EB8D4B6(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void DebuggerDisplayXmlNodeProxy__ctor_mA5D5DD4ED2B9ADDC61B2F79713FE2D56E161DEC6_inline (DebuggerDisplayXmlNodeProxy_t58EF0087247A9C17E275F3C790082C7C0A6947F0 * __this, XmlNode_t07D70045D843753E4FE8AFE40FD36244E6B6D7FB * ___node0, const RuntimeMethod* method)
{
{
XmlNode_t07D70045D843753E4FE8AFE40FD36244E6B6D7FB * L_0 = ___node0;
__this->set_node_0(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* XmlDocumentType_get_SystemId_m4D995F9A6F7D34E70D9C53FD99D4A6EE66B473D0_inline (XmlDocumentType_t9AB8D5C3C27B699B885D941D4B4735A6EE039136 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_systemId_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* XmlDocumentType_get_PublicId_m2DDA44AD846D5D03CC3E11FF284F5C40596FC51B_inline (XmlDocumentType_t9AB8D5C3C27B699B885D941D4B4735A6EE039136 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_publicId_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* XmlDocumentType_get_InternalSubset_m47C247A372247168CC1B7DFC08B27BA3663A2177_inline (XmlDocumentType_t9AB8D5C3C27B699B885D941D4B4735A6EE039136 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_internalSubset_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline (String_t* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_m_stringLength_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void XmlCharType__ctor_m0B65BC6BD912979FA16676884EC3120565FD6DCD_inline (XmlCharType_t7F6CCEEB0A0BC8FC40F161B8928A766BE7B234E9 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___charProperties0, const RuntimeMethod* method)
{
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___charProperties0;
__this->set_charProperties_2(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void XmlReaderDebuggerDisplayProxy__ctor_mE3C1728E7BF85B9364C0F4244586C9C369F43215_inline (XmlReaderDebuggerDisplayProxy_t554A0424FC659767F6977BF48A4018DDECADFA01 * __this, XmlReader_t13F08E3C651EB9F2AE882342BCD5E2CA86F29ABB * ___reader0, const RuntimeMethod* method)
{
{
XmlReader_t13F08E3C651EB9F2AE882342BCD5E2CA86F29ABB * L_0 = ___reader0;
__this->set_reader_0(L_0);
return;
}
}