-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathJsonElement.xml
More file actions
2494 lines (2342 loc) · 153 KB
/
JsonElement.xml
File metadata and controls
2494 lines (2342 loc) · 153 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
<Type Name="JsonElement" FullName="System.Text.Json.JsonElement">
<TypeSignature Language="C#" Value="public readonly struct JsonElement" />
<TypeSignature Language="ILAsm" Value=".class public sequential ansi sealed beforefieldinit JsonElement extends System.ValueType" />
<TypeSignature Language="DocId" Value="T:System.Text.Json.JsonElement" />
<TypeSignature Language="VB.NET" Value="Public Structure JsonElement" />
<TypeSignature Language="F#" Value="type JsonElement = struct" />
<TypeSignature Language="C++ CLI" Value="public value class JsonElement" />
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.1.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.1</AssemblyVersion>
<AssemblyVersion>10.0.0.2</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.ValueType</BaseTypeName>
</Base>
<Interfaces />
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-5.0;net-6.0;net-7.0;net-8.0;net-9.0;netcore-3.0;netcore-3.1">
<AttributeName Language="C#">[System.Runtime.CompilerServices.IsReadOnly]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.IsReadOnly>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="net-10.0-pp;net-11.0-pp;netframework-4.6.2-pp;netframework-4.7.1-pp;netframework-4.7.2-pp;netframework-4.7-pp;netframework-4.8.1-pp;netframework-4.8-pp;netstandard-2.0-pp">
<AttributeName Language="C#">[System.Diagnostics.DebuggerDisplay("{DebuggerDisplay,nq}")]</AttributeName>
<AttributeName Language="F#">[<System.Diagnostics.DebuggerDisplay("{DebuggerDisplay,nq}")>]</AttributeName>
</Attribute>
</Attributes>
<Docs>
<summary>Represents a specific JSON value within a <see cref="T:System.Text.Json.JsonDocument" />.</summary>
<remarks>
<format type="text/markdown"><.
]]></format>
</remarks>
</Docs>
<Members>
<Member MemberName="Clone">
<MemberSignature Language="C#" Value="public System.Text.Json.JsonElement Clone ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance valuetype System.Text.Json.JsonElement Clone() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Text.Json.JsonElement.Clone" />
<MemberSignature Language="VB.NET" Value="Public Function Clone () As JsonElement" />
<MemberSignature Language="F#" Value="member this.Clone : unit -> System.Text.Json.JsonElement" Usage="jsonElement.Clone " />
<MemberSignature Language="C++ CLI" Value="public:
 System::Text::Json::JsonElement Clone();" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.1.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Text.Json.JsonElement</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Gets a JsonElement that can be safely stored beyond the lifetime of the original <see cref="T:System.Text.Json.JsonDocument" />.</summary>
<returns>A JsonElement that can be safely stored beyond the lifetime of the original <see cref="T:System.Text.Json.JsonDocument" />.</returns>
<remarks>
<format><![CDATA[
## Remarks
If this <xref:System.Text.Json.JsonElement> is itself the output of a previous call to `Clone` or a value contained within another <xref:System.Text.Json.JsonElement> that was the output of a previous call to `Clone`, this method results in no additional memory allocation.
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="DeepEquals">
<MemberSignature Language="C#" Value="public static bool DeepEquals (System.Text.Json.JsonElement element1, System.Text.Json.JsonElement element2);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig bool DeepEquals(valuetype System.Text.Json.JsonElement element1, valuetype System.Text.Json.JsonElement element2) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Text.Json.JsonElement.DeepEquals(System.Text.Json.JsonElement,System.Text.Json.JsonElement)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function DeepEquals (element1 As JsonElement, element2 As JsonElement) As Boolean" />
<MemberSignature Language="F#" Value="static member DeepEquals : System.Text.Json.JsonElement * System.Text.Json.JsonElement -> bool" Usage="System.Text.Json.JsonElement.DeepEquals (element1, element2)" />
<MemberSignature Language="C++ CLI" Value="public:
 static bool DeepEquals(System::Text::Json::JsonElement element1, System::Text::Json::JsonElement element2);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="element1" Type="System.Text.Json.JsonElement" Index="0" FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-9.0;netframework-4.6.2-pp;netframework-4.7.1-pp;netframework-4.7.2-pp;netframework-4.7-pp;netframework-4.8.1-pp;netframework-4.8-pp;netstandard-2.0-pp" />
<Parameter Name="element2" Type="System.Text.Json.JsonElement" Index="1" FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-9.0;netframework-4.6.2-pp;netframework-4.7.1-pp;netframework-4.7.2-pp;netframework-4.7-pp;netframework-4.8.1-pp;netframework-4.8-pp;netstandard-2.0-pp" />
</Parameters>
<Docs>
<param name="element1">The first <see cref="T:System.Text.Json.JsonElement" /> to compare.</param>
<param name="element2">The second <see cref="T:System.Text.Json.JsonElement" /> to compare.</param>
<summary>Compares the values of two <see cref="T:System.Text.Json.JsonElement" /> values for equality, including the values of all descendant elements.</summary>
<returns>
<see langword="true" /> if the two values are equal; otherwise, <see langword="false" />.</returns>
<remarks>
<para>Deep equality of two JSON values is defined as follows:</para>
<para>
<list type="bullet">
<item>JSON values of different kinds are not equal.</item>
<item>JSON constants <see langword="null" />, <see langword="false" />, and <see langword="true" /> only equal themselves.</item>
<item>JSON numbers are equal if and only if they have they have equivalent decimal representations, with no rounding being used.</item>
<item>JSON strings are equal if and only if they are equal using ordinal string comparison.</item>
<item>JSON arrays are equal if and only if they are of equal length and each of their elements are pairwise equal.</item>
<item> JSON objects are equal if and only if they have the same number of properties and each property in the first object has a corresponding property in the second object with the same name and equal value. The order of properties is not significant, with the exception of repeated properties that must be specified in the same order (with interleaving allowed).</item>
</list>
</para>
</remarks>
</Docs>
</Member>
<Member MemberName="EnumerateArray">
<MemberSignature Language="C#" Value="public System.Text.Json.JsonElement.ArrayEnumerator EnumerateArray ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance valuetype System.Text.Json.JsonElement/ArrayEnumerator EnumerateArray() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Text.Json.JsonElement.EnumerateArray" />
<MemberSignature Language="VB.NET" Value="Public Function EnumerateArray () As JsonElement.ArrayEnumerator" />
<MemberSignature Language="F#" Value="member this.EnumerateArray : unit -> System.Text.Json.JsonElement.ArrayEnumerator" Usage="jsonElement.EnumerateArray " />
<MemberSignature Language="C++ CLI" Value="public:
 System::Text::Json::JsonElement::ArrayEnumerator EnumerateArray();" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.1.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Text.Json.JsonElement+ArrayEnumerator</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Gets an enumerator to enumerate the values in the JSON array represented by this JsonElement.</summary>
<returns>An enumerator to enumerate the values in the JSON array represented by this JsonElement.</returns>
<remarks>
<format type="text/markdown"><.
]]></format>
</remarks>
<exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Array" />.</exception>
<exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
</Docs>
</Member>
<Member MemberName="EnumerateObject">
<MemberSignature Language="C#" Value="public System.Text.Json.JsonElement.ObjectEnumerator EnumerateObject ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance valuetype System.Text.Json.JsonElement/ObjectEnumerator EnumerateObject() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Text.Json.JsonElement.EnumerateObject" />
<MemberSignature Language="VB.NET" Value="Public Function EnumerateObject () As JsonElement.ObjectEnumerator" />
<MemberSignature Language="F#" Value="member this.EnumerateObject : unit -> System.Text.Json.JsonElement.ObjectEnumerator" Usage="jsonElement.EnumerateObject " />
<MemberSignature Language="C++ CLI" Value="public:
 System::Text::Json::JsonElement::ObjectEnumerator EnumerateObject();" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.1.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Text.Json.JsonElement+ObjectEnumerator</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Gets an enumerator to enumerate the properties in the JSON object represented by this JsonElement.</summary>
<returns>An enumerator to enumerate the properties in the JSON object represented by this JsonElement.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Object" />.</exception>
<exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
</Docs>
</Member>
<Member MemberName="GetArrayLength">
<MemberSignature Language="C#" Value="public int GetArrayLength ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance int32 GetArrayLength() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Text.Json.JsonElement.GetArrayLength" />
<MemberSignature Language="VB.NET" Value="Public Function GetArrayLength () As Integer" />
<MemberSignature Language="F#" Value="member this.GetArrayLength : unit -> int" Usage="jsonElement.GetArrayLength " />
<MemberSignature Language="C++ CLI" Value="public:
 int GetArrayLength();" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.1.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Gets the number of values contained within the current array value.</summary>
<returns>The number of values contained within the current array value.</returns>
<remarks>
<format type="text/markdown"><.
]]></format>
</remarks>
<exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Array" />.</exception>
<exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
</Docs>
</Member>
<Member MemberName="GetBoolean">
<MemberSignature Language="C#" Value="public bool GetBoolean ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance bool GetBoolean() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Text.Json.JsonElement.GetBoolean" />
<MemberSignature Language="VB.NET" Value="Public Function GetBoolean () As Boolean" />
<MemberSignature Language="F#" Value="member this.GetBoolean : unit -> bool" Usage="jsonElement.GetBoolean " />
<MemberSignature Language="C++ CLI" Value="public:
 bool GetBoolean();" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.1.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Gets the value of the element as a <see cref="T:System.Boolean" />.</summary>
<returns>The value of the element as a <see cref="T:System.Boolean" />.</returns>
<remarks>
<format><![CDATA[
This method does not parse the contents of a JSON string value.
]]></format>
</remarks>
<exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is neither <see cref="F:System.Text.Json.JsonValueKind.True" /> nor <see cref="F:System.Text.Json.JsonValueKind.False" />.</exception>
<exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
</Docs>
</Member>
<Member MemberName="GetByte">
<MemberSignature Language="C#" Value="public byte GetByte ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance unsigned int8 GetByte() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Text.Json.JsonElement.GetByte" />
<MemberSignature Language="VB.NET" Value="Public Function GetByte () As Byte" />
<MemberSignature Language="F#" Value="member this.GetByte : unit -> byte" Usage="jsonElement.GetByte " />
<MemberSignature Language="C++ CLI" Value="public:
 System::Byte GetByte();" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.1.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Byte</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Gets the current JSON number as a <see cref="T:System.Byte" />.</summary>
<returns>The current JSON number as a <see cref="T:System.Byte" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This method does not parse the contents of a JSON string value.
]]></format>
</remarks>
<exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Number" />.</exception>
<exception cref="T:System.FormatException">The value cannot be represented as a <see cref="T:System.Byte" />.</exception>
<exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
</Docs>
</Member>
<Member MemberName="GetBytesFromBase64">
<MemberSignature Language="C#" Value="public byte[] GetBytesFromBase64 ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance unsigned int8[] GetBytesFromBase64() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Text.Json.JsonElement.GetBytesFromBase64" />
<MemberSignature Language="VB.NET" Value="Public Function GetBytesFromBase64 () As Byte()" />
<MemberSignature Language="F#" Value="member this.GetBytesFromBase64 : unit -> byte[]" Usage="jsonElement.GetBytesFromBase64 " />
<MemberSignature Language="C++ CLI" Value="public:
 cli::array <System::Byte> ^ GetBytesFromBase64();" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.1.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Byte[]</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Gets the value of the element as a byte array.</summary>
<returns>The value decoded as a byte array.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This method does not create a byte representation of values other than Base64 encoded JSON strings.
]]></format>
</remarks>
<exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.String" />.</exception>
<exception cref="T:System.FormatException">The value is not encoded as Base64 text and hence cannot be decoded to bytes.</exception>
<exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
<seealso cref="M:System.Text.Json.JsonElement.ToString" />
</Docs>
</Member>
<Member MemberName="GetDateTime">
<MemberSignature Language="C#" Value="public DateTime GetDateTime ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance valuetype System.DateTime GetDateTime() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Text.Json.JsonElement.GetDateTime" />
<MemberSignature Language="VB.NET" Value="Public Function GetDateTime () As DateTime" />
<MemberSignature Language="F#" Value="member this.GetDateTime : unit -> DateTime" Usage="jsonElement.GetDateTime " />
<MemberSignature Language="C++ CLI" Value="public:
 DateTime GetDateTime();" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.1.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.DateTime</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Gets the value of the element as a <see cref="T:System.DateTime" />.</summary>
<returns>The value of the element as a <see cref="T:System.DateTime" />.</returns>
<remarks>
<format><).
]]></format>
</remarks>
<exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.String" />.</exception>
<exception cref="T:System.FormatException">The value cannot be read as a <see cref="T:System.DateTime" />.</exception>
<exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
<seealso cref="M:System.Text.Json.JsonElement.ToString" />
</Docs>
</Member>
<Member MemberName="GetDateTimeOffset">
<MemberSignature Language="C#" Value="public DateTimeOffset GetDateTimeOffset ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance valuetype System.DateTimeOffset GetDateTimeOffset() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Text.Json.JsonElement.GetDateTimeOffset" />
<MemberSignature Language="VB.NET" Value="Public Function GetDateTimeOffset () As DateTimeOffset" />
<MemberSignature Language="F#" Value="member this.GetDateTimeOffset : unit -> DateTimeOffset" Usage="jsonElement.GetDateTimeOffset " />
<MemberSignature Language="C++ CLI" Value="public:
 DateTimeOffset GetDateTimeOffset();" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.1.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.DateTimeOffset</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Gets the value of the element as a <see cref="T:System.DateTimeOffset" />.</summary>
<returns>The value of the element as a <see cref="T:System.DateTimeOffset" />.</returns>
<remarks>
<format><).
]]></format>
</remarks>
<exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.String" />.</exception>
<exception cref="T:System.FormatException">The value cannot be read as a <see cref="T:System.DateTimeOffset" />.</exception>
<exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
<seealso cref="M:System.Text.Json.JsonElement.ToString" />
</Docs>
</Member>
<Member MemberName="GetDecimal">
<MemberSignature Language="C#" Value="public decimal GetDecimal ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance valuetype System.Decimal GetDecimal() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Text.Json.JsonElement.GetDecimal" />
<MemberSignature Language="VB.NET" Value="Public Function GetDecimal () As Decimal" />
<MemberSignature Language="F#" Value="member this.GetDecimal : unit -> decimal" Usage="jsonElement.GetDecimal " />
<MemberSignature Language="C++ CLI" Value="public:
 System::Decimal GetDecimal();" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.1.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Decimal</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Gets the current JSON number as a <see cref="T:System.Decimal" />.</summary>
<returns>The current JSON number as a <see cref="T:System.Decimal" />.</returns>
<remarks>
<format><![CDATA[
## Remarks
This method does not parse the contents of a JSON string value.
]]></format>
</remarks>
<exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Number" />.</exception>
<exception cref="T:System.FormatException">The value cannot be represented as a <see cref="T:System.Decimal" />.</exception>
<exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
<seealso cref="M:System.Text.Json.JsonElement.GetRawText" />
</Docs>
</Member>
<Member MemberName="GetDouble">
<MemberSignature Language="C#" Value="public double GetDouble ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance float64 GetDouble() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Text.Json.JsonElement.GetDouble" />
<MemberSignature Language="VB.NET" Value="Public Function GetDouble () As Double" />
<MemberSignature Language="F#" Value="member this.GetDouble : unit -> double" Usage="jsonElement.GetDouble " />
<MemberSignature Language="C++ CLI" Value="public:
 double GetDouble();" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.1.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Gets the current JSON number as a <see cref="T:System.Double" />.</summary>
<returns>The current JSON number as a <see cref="T:System.Double" />.</returns>
<remarks>
<format><![CDATA[
## Remarks
This method does not parse the contents of a JSON string value.
This method returns <xref:System.Double.PositiveInfinity?displayProperty=nameWithType> for values larger than <xref:System.Double.MaxValue?displayProperty=nameWithType>, and it returns <xref:System.Double.NegativeInfinity?displayProperty=nameWithType> for values smaller than <xref:System.Double.MinValue?displayProperty=nameWithType>.
]]></format>
</remarks>
<exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Number" />.</exception>
<exception cref="T:System.FormatException">The value cannot be represented as a <see cref="T:System.Double" />.</exception>
<exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
</Docs>
</Member>
<Member MemberName="GetGuid">
<MemberSignature Language="C#" Value="public Guid GetGuid ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance valuetype System.Guid GetGuid() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Text.Json.JsonElement.GetGuid" />
<MemberSignature Language="VB.NET" Value="Public Function GetGuid () As Guid" />
<MemberSignature Language="F#" Value="member this.GetGuid : unit -> Guid" Usage="jsonElement.GetGuid " />
<MemberSignature Language="C++ CLI" Value="public:
 Guid GetGuid();" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.1.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Guid</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Gets the value of the element as a <see cref="T:System.Guid" />.</summary>
<returns>The value of the element as a <see cref="T:System.Guid" />.</returns>
<remarks>
<format><![CDATA[
## Remarks
This method does not create a Guid representation of values other than JSON strings.
]]></format>
</remarks>
<exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.String" />.</exception>
<exception cref="T:System.FormatException">The value cannot be represented as a <see cref="T:System.Guid" />.</exception>
<exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
<seealso cref="M:System.Text.Json.JsonElement.ToString" />
</Docs>
</Member>
<Member MemberName="GetInt16">
<MemberSignature Language="C#" Value="public short GetInt16 ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance int16 GetInt16() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Text.Json.JsonElement.GetInt16" />
<MemberSignature Language="VB.NET" Value="Public Function GetInt16 () As Short" />
<MemberSignature Language="F#" Value="member this.GetInt16 : unit -> int16" Usage="jsonElement.GetInt16 " />
<MemberSignature Language="C++ CLI" Value="public:
 short GetInt16();" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.1.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int16</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Gets the current JSON number as an <see cref="T:System.Int16" />.</summary>
<returns>The current JSON number as an <see cref="T:System.Int16" />.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Number" />.</exception>
<exception cref="T:System.FormatException">The value cannot be represented as an <see cref="T:System.Int16" />.</exception>
<exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
</Docs>
</Member>
<Member MemberName="GetInt32">
<MemberSignature Language="C#" Value="public int GetInt32 ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance int32 GetInt32() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Text.Json.JsonElement.GetInt32" />
<MemberSignature Language="VB.NET" Value="Public Function GetInt32 () As Integer" />
<MemberSignature Language="F#" Value="member this.GetInt32 : unit -> int" Usage="jsonElement.GetInt32 " />
<MemberSignature Language="C++ CLI" Value="public:
 int GetInt32();" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.1.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Gets the current JSON number as an <see cref="T:System.Int32" />.</summary>
<returns>The current JSON number as an <see cref="T:System.Int32" />.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Number" />.</exception>
<exception cref="T:System.FormatException">The value cannot be represented as an <see cref="T:System.Int32" />.</exception>
<exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
</Docs>
</Member>
<Member MemberName="GetInt64">
<MemberSignature Language="C#" Value="public long GetInt64 ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance int64 GetInt64() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Text.Json.JsonElement.GetInt64" />
<MemberSignature Language="VB.NET" Value="Public Function GetInt64 () As Long" />
<MemberSignature Language="F#" Value="member this.GetInt64 : unit -> int64" Usage="jsonElement.GetInt64 " />
<MemberSignature Language="C++ CLI" Value="public:
 long GetInt64();" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.1.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int64</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Gets the current JSON number as an <see cref="T:System.Int64" />.</summary>
<returns>The current JSON number as an <see cref="T:System.Int64" />.</returns>
<remarks>
<format><![CDATA[
## Remarks
This method does not parse the contents of a JSON string value.
]]></format>
</remarks>
<exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Number" />.</exception>
<exception cref="T:System.FormatException">The value cannot be represented as a <see cref="T:System.Int64" />.</exception>
<exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
</Docs>
</Member>
<Member MemberName="GetProperty">
<MemberSignature Language="C#" Value="public System.Text.Json.JsonElement GetProperty (ReadOnlySpan<byte> utf8PropertyName);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance valuetype System.Text.Json.JsonElement GetProperty(valuetype System.ReadOnlySpan`1<unsigned int8> utf8PropertyName) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Text.Json.JsonElement.GetProperty(System.ReadOnlySpan{System.Byte})" />
<MemberSignature Language="VB.NET" Value="Public Function GetProperty (utf8PropertyName As ReadOnlySpan(Of Byte)) As JsonElement" />
<MemberSignature Language="F#" Value="member this.GetProperty : ReadOnlySpan<byte> -> System.Text.Json.JsonElement" Usage="jsonElement.GetProperty utf8PropertyName" />
<MemberSignature Language="C++ CLI" Value="public:
 System::Text::Json::JsonElement GetProperty(ReadOnlySpan<System::Byte> utf8PropertyName);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.1.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Text.Json.JsonElement</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="utf8PropertyName" Type="System.ReadOnlySpan<System.Byte>" />
</Parameters>
<Docs>
<param name="utf8PropertyName">The UTF-8 representation (with no Byte-Order-Mark (BOM)) of the name of the property to return.</param>
<summary>Gets a <see cref="T:System.Text.Json.JsonElement" /> representing the value of a required property identified by <paramref name="utf8PropertyName" />.</summary>
<returns>A <see cref="T:System.Text.Json.JsonElement" /> representing the value of the requested property.</returns>
<remarks>
<format><.
]]></format>
</remarks>
<exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Object" />.</exception>
<exception cref="T:System.Collections.Generic.KeyNotFoundException">No property was found with the requested name.</exception>
<exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
<seealso cref="M:System.Text.Json.JsonElement.EnumerateObject" />
</Docs>
</Member>
<Member MemberName="GetProperty">
<MemberSignature Language="C#" Value="public System.Text.Json.JsonElement GetProperty (ReadOnlySpan<char> propertyName);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance valuetype System.Text.Json.JsonElement GetProperty(valuetype System.ReadOnlySpan`1<char> propertyName) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Text.Json.JsonElement.GetProperty(System.ReadOnlySpan{System.Char})" />
<MemberSignature Language="VB.NET" Value="Public Function GetProperty (propertyName As ReadOnlySpan(Of Char)) As JsonElement" />
<MemberSignature Language="F#" Value="member this.GetProperty : ReadOnlySpan<char> -> System.Text.Json.JsonElement" Usage="jsonElement.GetProperty propertyName" />
<MemberSignature Language="C++ CLI" Value="public:
 System::Text::Json::JsonElement GetProperty(ReadOnlySpan<char> propertyName);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.1.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Text.Json.JsonElement</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="propertyName" Type="System.ReadOnlySpan<System.Char>" />
</Parameters>
<Docs>
<param name="propertyName">The name of the property whose value is to be returned.</param>
<summary>Gets a <see cref="T:System.Text.Json.JsonElement" /> representing the value of a required property identified by <paramref name="propertyName" />.</summary>
<returns>A <see cref="T:System.Text.Json.JsonElement" /> representing the value of the requested property.</returns>
<remarks>
<format><![CDATA[
## Remarks
Property name matching is performed as an ordinal, case-sensitive comparison.
If a property is defined multiple times for the same object, the method matches the last such definition.
]]></format>
</remarks>
<exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Object" />.</exception>
<exception cref="T:System.Collections.Generic.KeyNotFoundException">No property was found with the requested name.</exception>
<exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
<seealso cref="M:System.Text.Json.JsonElement.EnumerateObject" />
</Docs>
</Member>
<Member MemberName="GetProperty">
<MemberSignature Language="C#" Value="public System.Text.Json.JsonElement GetProperty (string propertyName);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance valuetype System.Text.Json.JsonElement GetProperty(string propertyName) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Text.Json.JsonElement.GetProperty(System.String)" />
<MemberSignature Language="VB.NET" Value="Public Function GetProperty (propertyName As String) As JsonElement" />
<MemberSignature Language="F#" Value="member this.GetProperty : string -> System.Text.Json.JsonElement" Usage="jsonElement.GetProperty propertyName" />
<MemberSignature Language="C++ CLI" Value="public:
 System::Text::Json::JsonElement GetProperty(System::String ^ propertyName);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.1.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Text.Json.JsonElement</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="propertyName" Type="System.String" />
</Parameters>
<Docs>
<param name="propertyName">The name of the property whose value is to be returned.</param>
<summary>Gets a <see cref="T:System.Text.Json.JsonElement" /> representing the value of a required property identified by <paramref name="propertyName" />.</summary>
<returns>A <see cref="T:System.Text.Json.JsonElement" /> representing the value of the requested property.</returns>
<remarks>
<format><![CDATA[
## Remarks
Property name matching is performed as an ordinal, case-sensitive comparison.
If a property is defined multiple times for the same object, the method matches the last such definition.
]]></format>
</remarks>
<exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Object" />.</exception>
<exception cref="T:System.Collections.Generic.KeyNotFoundException">No property was found with the requested name.</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="propertyName" /> is <see langword="null" />.</exception>
<exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
<seealso cref="M:System.Text.Json.JsonElement.EnumerateObject" />
</Docs>
</Member>
<Member MemberName="GetPropertyCount">
<MemberSignature Language="C#" Value="public int GetPropertyCount ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance int32 GetPropertyCount() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Text.Json.JsonElement.GetPropertyCount" />
<MemberSignature Language="VB.NET" Value="Public Function GetPropertyCount () As Integer" />
<MemberSignature Language="F#" Value="member this.GetPropertyCount : unit -> int" Usage="jsonElement.GetPropertyCount " />
<MemberSignature Language="C++ CLI" Value="public:
 int GetPropertyCount();" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Gets the number of properties contained within the current object value.</summary>
<returns>The number of properties contained within the current object value.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Object" />.</exception>
<exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
</Docs>
</Member>
<Member MemberName="GetRawText">
<MemberSignature Language="C#" Value="public string GetRawText ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance string GetRawText() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Text.Json.JsonElement.GetRawText" />
<MemberSignature Language="VB.NET" Value="Public Function GetRawText () As String" />
<MemberSignature Language="F#" Value="member this.GetRawText : unit -> string" Usage="jsonElement.GetRawText " />
<MemberSignature Language="C++ CLI" Value="public:
 System::String ^ GetRawText();" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.1.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Gets a string that represents the original input data backing this value.</summary>
<returns>The original input data backing this value.</returns>
<remarks>
To be added.
</remarks>
<exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
</Docs>
</Member>
<Member MemberName="GetSByte">
<MemberSignature Language="C#" Value="public sbyte GetSByte ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance int8 GetSByte() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Text.Json.JsonElement.GetSByte" />
<MemberSignature Language="VB.NET" Value="Public Function GetSByte () As SByte" />
<MemberSignature Language="F#" Value="member this.GetSByte : unit -> sbyte" Usage="jsonElement.GetSByte " />
<MemberSignature Language="C++ CLI" Value="public:
 System::SByte GetSByte();" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.1.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.CLSCompliant(false)]</AttributeName>
<AttributeName Language="F#">[<System.CLSCompliant(false)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.SByte</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Gets the current JSON number as an <see cref="T:System.SByte" />.</summary>
<returns>The current JSON number as an <see cref="T:System.SByte" />.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Number" />.</exception>
<exception cref="T:System.FormatException">The value cannot be represented as an <see cref="T:System.SByte" />.</exception>
<exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
</Docs>
</Member>
<Member MemberName="GetSingle">
<MemberSignature Language="C#" Value="public float GetSingle ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance float32 GetSingle() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Text.Json.JsonElement.GetSingle" />
<MemberSignature Language="VB.NET" Value="Public Function GetSingle () As Single" />
<MemberSignature Language="F#" Value="member this.GetSingle : unit -> single" Usage="jsonElement.GetSingle " />
<MemberSignature Language="C++ CLI" Value="public:
 float GetSingle();" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.1.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Single</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Gets the current JSON number as a <see cref="T:System.Single" />.</summary>
<returns>The current JSON number as a <see cref="T:System.Single" />.</returns>
<remarks>
<format><![CDATA[
## Remarks
This method does not parse the contents of a JSON string value.
This method returns <xref:System.Single.PositiveInfinity?displayProperty=nameWithType> for values larger than <xref:System.Single.MaxValue?displayProperty=nameWithType> and <xref:System.Single.NegativeInfinity?displayProperty=nameWithType> for values smaller than <xref:System.Single.MinValue?displayProperty=nameWithType>.
]]></format>
</remarks>
<exception cref="T:System.InvalidOperationException">This value's <see cref="P:System.Text.Json.JsonElement.ValueKind" /> is not <see cref="F:System.Text.Json.JsonValueKind.Number" />.</exception>
<exception cref="T:System.FormatException">The value cannot be represented as a <see cref="T:System.Single" />.</exception>
<exception cref="T:System.ObjectDisposedException">The parent <see cref="T:System.Text.Json.JsonDocument" /> has been disposed.</exception>
</Docs>
</Member>
<Member MemberName="GetString">
<MemberSignature Language="C#" Value="public string? GetString ();" FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-5.0;net-6.0;net-7.0;net-8.0;net-9.0;netframework-4.6.2-pp;netframework-4.7.1-pp;netframework-4.7.2-pp;netframework-4.7-pp;netframework-4.8.1-pp;netframework-4.8-pp;netstandard-2.0-pp" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance string GetString() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Text.Json.JsonElement.GetString" />
<MemberSignature Language="VB.NET" Value="Public Function GetString () As String" />
<MemberSignature Language="F#" Value="member this.GetString : unit -> string" Usage="jsonElement.GetString " />
<MemberSignature Language="C++ CLI" Value="public:
 System::String ^ GetString();" />
<MemberSignature Language="C#" Value="public string GetString ();" FrameworkAlternate="netcore-3.0;netcore-3.1" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.1.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Gets the value of the element as a <see cref="T:System.String" />.</summary>
<returns>The value of the element as a <see cref="T:System.String" />.</returns>
<remarks>
<format><![CDATA[
## Remarks
This method does not create a string representation of values other than JSON strings.