-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathJsonTypeInfo.xml
More file actions
942 lines (884 loc) · 68.6 KB
/
Copy pathJsonTypeInfo.xml
File metadata and controls
942 lines (884 loc) · 68.6 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
<Type Name="JsonTypeInfo" FullName="System.Text.Json.Serialization.Metadata.JsonTypeInfo">
<TypeSignature Language="C#" Value="public abstract class JsonTypeInfo" FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;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" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi abstract beforefieldinit JsonTypeInfo extends System.Object" FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;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" />
<TypeSignature Language="DocId" Value="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" />
<TypeSignature Language="VB.NET" Value="Public MustInherit Class JsonTypeInfo" FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;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" />
<TypeSignature Language="F#" Value="type JsonTypeInfo = class" />
<TypeSignature Language="C++ CLI" Value="public ref class JsonTypeInfo abstract" FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;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" />
<TypeSignature Language="C#" Value="public class JsonTypeInfo" FrameworkAlternate="net-6.0" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit JsonTypeInfo extends System.Object" FrameworkAlternate="net-6.0" />
<TypeSignature Language="VB.NET" Value="Public Class JsonTypeInfo" FrameworkAlternate="net-6.0" />
<TypeSignature Language="C++ CLI" Value="public ref class JsonTypeInfo" FrameworkAlternate="net-6.0" />
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<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.Object</BaseTypeName>
</Base>
<Interfaces />
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(0)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(0)>]</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>Provides JSON serialization-related metadata about a type.</summary>
<remarks>To be added.</remarks>
</Docs>
<Members>
<Member MemberName="ConstructorAttributeProvider">
<MemberSignature Language="C#" Value="public System.Reflection.ICustomAttributeProvider? ConstructorAttributeProvider { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Reflection.ICustomAttributeProvider ConstructorAttributeProvider" />
<MemberSignature Language="DocId" Value="P:System.Text.Json.Serialization.Metadata.JsonTypeInfo.ConstructorAttributeProvider" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property ConstructorAttributeProvider As ICustomAttributeProvider" />
<MemberSignature Language="F#" Value="member this.ConstructorAttributeProvider : System.Reflection.ICustomAttributeProvider" Usage="System.Text.Json.Serialization.Metadata.JsonTypeInfo.ConstructorAttributeProvider" />
<MemberSignature Language="C++ CLI" Value="public:
 property System::Reflection::ICustomAttributeProvider ^ ConstructorAttributeProvider { System::Reflection::ICustomAttributeProvider ^ get(); };" />
<MemberType>Property</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.Reflection.ICustomAttributeProvider</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets an attribute provider corresponding to the deserialization constructor.</summary>
<value>To be added.</value>
<remarks>
<para>When resolving metadata via the built-in resolvers this will be populated with</para>
<para>the underlying <see cref="T:System.Reflection.ConstructorInfo" /> of the serialized property or field.</para>
</remarks>
<exception cref="T:System.InvalidOperationException">The <see cref="T:System.Text.Json.Serialization.Metadata.JsonPropertyInfo" /> instance has been locked for further modification.</exception>
</Docs>
</Member>
<Member MemberName="Converter">
<MemberSignature Language="C#" Value="public System.Text.Json.Serialization.JsonConverter Converter { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Text.Json.Serialization.JsonConverter Converter" />
<MemberSignature Language="DocId" Value="P:System.Text.Json.Serialization.Metadata.JsonTypeInfo.Converter" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property Converter As JsonConverter" />
<MemberSignature Language="F#" Value="member this.Converter : System.Text.Json.Serialization.JsonConverter" Usage="System.Text.Json.Serialization.Metadata.JsonTypeInfo.Converter" />
<MemberSignature Language="C++ CLI" Value="public:
 property System::Text::Json::Serialization::JsonConverter ^ Converter { System::Text::Json::Serialization::JsonConverter ^ get(); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<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 FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(1)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(1)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Text.Json.Serialization.JsonConverter</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets the <see cref="T:System.Text.Json.Serialization.JsonConverter" /> associated with the current type.</summary>
<value>To be added.</value>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
The <xref:System.Text.Json.Serialization.JsonConverter> associated with the type determines the value of <xref:System.Text.Json.Serialization.Metadata.JsonTypeInfo.Kind>,
and by extension the types of metadata that are configurable in the current JSON contract.
As such, the value of the converter cannot be changed once a <xref:System.Text.Json.Serialization.Metadata.JsonTypeInfo> instance has been created.
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="CreateJsonPropertyInfo">
<MemberSignature Language="C#" Value="public System.Text.Json.Serialization.Metadata.JsonPropertyInfo CreateJsonPropertyInfo (Type propertyType, string name);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance class System.Text.Json.Serialization.Metadata.JsonPropertyInfo CreateJsonPropertyInfo(class System.Type propertyType, string name) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Text.Json.Serialization.Metadata.JsonTypeInfo.CreateJsonPropertyInfo(System.Type,System.String)" />
<MemberSignature Language="VB.NET" Value="Public Function CreateJsonPropertyInfo (propertyType As Type, name As String) As JsonPropertyInfo" />
<MemberSignature Language="F#" Value="member this.CreateJsonPropertyInfo : Type * string -> System.Text.Json.Serialization.Metadata.JsonPropertyInfo" Usage="jsonTypeInfo.CreateJsonPropertyInfo (propertyType, name)" />
<MemberSignature Language="C++ CLI" Value="public:
 System::Text::Json::Serialization::Metadata::JsonPropertyInfo ^ CreateJsonPropertyInfo(Type ^ propertyType, System::String ^ name);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<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 FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-7.0;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]</AttributeName>
<AttributeName Language="F#">[<System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-7.0;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]</AttributeName>
<AttributeName Language="F#">[<System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Text.Json.Serialization.Metadata.JsonPropertyInfo</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="propertyType" Type="System.Type" Index="0" FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;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" />
<Parameter Name="name" Type="System.String" Index="1" FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;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" />
</Parameters>
<Docs>
<param name="propertyType">The declared type for the property.</param>
<param name="name">The property name used in JSON serialization and deserialization.</param>
<summary>Creates a blank <see cref="T:System.Text.Json.Serialization.Metadata.JsonPropertyInfo" /> instance for the current <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" />.</summary>
<returns>A blank <see cref="T:System.Text.Json.Serialization.Metadata.JsonPropertyInfo" /> instance.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="propertyType" /> or <paramref name="name" /> is <see langword="null" />.</exception>
<exception cref="T:System.ArgumentException">
<paramref name="propertyType" /> cannot be used for serialization.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance has been locked for further modification.</exception>
</Docs>
</Member>
<Member MemberName="CreateJsonTypeInfo">
<MemberSignature Language="C#" Value="public static System.Text.Json.Serialization.Metadata.JsonTypeInfo CreateJsonTypeInfo (Type type, System.Text.Json.JsonSerializerOptions options);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Text.Json.Serialization.Metadata.JsonTypeInfo CreateJsonTypeInfo(class System.Type type, class System.Text.Json.JsonSerializerOptions options) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Text.Json.Serialization.Metadata.JsonTypeInfo.CreateJsonTypeInfo(System.Type,System.Text.Json.JsonSerializerOptions)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function CreateJsonTypeInfo (type As Type, options As JsonSerializerOptions) As JsonTypeInfo" />
<MemberSignature Language="F#" Value="static member CreateJsonTypeInfo : Type * System.Text.Json.JsonSerializerOptions -> System.Text.Json.Serialization.Metadata.JsonTypeInfo" Usage="System.Text.Json.Serialization.Metadata.JsonTypeInfo.CreateJsonTypeInfo (type, options)" />
<MemberSignature Language="C++ CLI" Value="public:
 static System::Text::Json::Serialization::Metadata::JsonTypeInfo ^ CreateJsonTypeInfo(Type ^ type, System::Text::Json::JsonSerializerOptions ^ options);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<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 FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-7.0;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]</AttributeName>
<AttributeName Language="F#">[<System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-7.0;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]</AttributeName>
<AttributeName Language="F#">[<System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Text.Json.Serialization.Metadata.JsonTypeInfo</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="type" Type="System.Type" Index="0" FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;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" />
<Parameter Name="options" Type="System.Text.Json.JsonSerializerOptions" Index="1" FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;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" />
</Parameters>
<Docs>
<param name="type">The type for which contract metadata is specified.</param>
<param name="options">The <see cref="T:System.Text.Json.JsonSerializerOptions" /> instance the metadata is associated with.</param>
<summary>Creates a blank <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance.</summary>
<returns>A blank <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
The returned <xref:System.Text.Json.Serialization.Metadata.JsonTypeInfo> will be blank, with the exception of the
<xref:System.Text.Json.Serialization.Metadata.JsonTypeInfo.Converter> property which will be resolved either from
<xref:System.Text.Json.JsonSerializerOptions.Converters> or the built-in converters for the type.
Any converters specified via <xref:System.Text.Json.Serialization.JsonConverterAttribute> on the type declaration
will not be resolved by this method.
Which converter gets resolved influences the value of <xref:System.Text.Json.Serialization.Metadata.JsonTypeInfo.Kind>,
which constrains the type of metadata that can be modified in the <xref:System.Text.Json.Serialization.Metadata.JsonTypeInfo> instance.
]]></format>
</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="type" /> or <paramref name="options" /> is <see langword="null" />.</exception>
<exception cref="T:System.ArgumentException">
<paramref name="type" /> cannot be used for serialization.</exception>
</Docs>
</Member>
<Member MemberName="CreateJsonTypeInfo<T>">
<MemberSignature Language="C#" Value="public static System.Text.Json.Serialization.Metadata.JsonTypeInfo<T> CreateJsonTypeInfo<T> (System.Text.Json.JsonSerializerOptions options);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Text.Json.Serialization.Metadata.JsonTypeInfo`1<!!T> CreateJsonTypeInfo<T>(class System.Text.Json.JsonSerializerOptions options) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Text.Json.Serialization.Metadata.JsonTypeInfo.CreateJsonTypeInfo``1(System.Text.Json.JsonSerializerOptions)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function CreateJsonTypeInfo(Of T) (options As JsonSerializerOptions) As JsonTypeInfo(Of T)" />
<MemberSignature Language="F#" Value="static member CreateJsonTypeInfo : System.Text.Json.JsonSerializerOptions -> System.Text.Json.Serialization.Metadata.JsonTypeInfo<'T>" Usage="System.Text.Json.Serialization.Metadata.JsonTypeInfo.CreateJsonTypeInfo options" />
<MemberSignature Language="C++ CLI" Value="public:
generic <typename T>
 static System::Text::Json::Serialization::Metadata::JsonTypeInfo<T> ^ CreateJsonTypeInfo(System::Text::Json::JsonSerializerOptions ^ options);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<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 FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-7.0;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]</AttributeName>
<AttributeName Language="F#">[<System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-7.0;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]</AttributeName>
<AttributeName Language="F#">[<System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Text.Json.Serialization.Metadata.JsonTypeInfo<T></ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="T">
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(2)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(2)>]</AttributeName>
</Attribute>
</Attributes>
</TypeParameter>
</TypeParameters>
<Parameters>
<Parameter Name="options" Type="System.Text.Json.JsonSerializerOptions" Index="0" FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;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" />
</Parameters>
<Docs>
<typeparam name="T">The type for which contract metadata is specified.</typeparam>
<param name="options">The <see cref="T:System.Text.Json.JsonSerializerOptions" /> instance the metadata is associated with.</param>
<summary>Creates a blank <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo`1" /> instance.</summary>
<returns>A blank <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo`1" /> instance.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
The returned <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo`1> will be blank, with the exception of the
<xref:System.Text.Json.Serialization.Metadata.JsonTypeInfo.Converter> property, which will be resolved either from
<xref:System.Text.Json.JsonSerializerOptions.Converters> or the built-in converters for the type.
Any converters specified via <xref:System.Text.Json.Serialization.JsonConverterAttribute> on the type declaration
will not be resolved by this method.
Which converter gets resolved influences the value of <xref:System.Text.Json.Serialization.Metadata.JsonTypeInfo.Kind>,
which constrains the type of metadata that can be modified in the <xref:System.Text.Json.Serialization.Metadata.JsonTypeInfo> instance.
]]></format>
</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="options" /> is <see langword="null" />.</exception>
</Docs>
</Member>
<Member MemberName="CreateObject">
<MemberSignature Language="C#" Value="public Func<object>? CreateObject { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Func`1<object> CreateObject" />
<MemberSignature Language="DocId" Value="P:System.Text.Json.Serialization.Metadata.JsonTypeInfo.CreateObject" />
<MemberSignature Language="VB.NET" Value="Public Property CreateObject As Func(Of Object)" />
<MemberSignature Language="F#" Value="member this.CreateObject : Func<obj> with get, set" Usage="System.Text.Json.Serialization.Metadata.JsonTypeInfo.CreateObject" />
<MemberSignature Language="C++ CLI" Value="public:
 property Func<System::Object ^> ^ CreateObject { Func<System::Object ^> ^ get(); void set(Func<System::Object ^> ^ value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<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 FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 1 })]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 1 })>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Func<System.Object></ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets a parameterless factory to be used on deserialization.</summary>
<value>To be added.</value>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
If set to `null`, any attempt to deserialize instances of the given type will result in an exception.
For contracts originating from <xref:System.Text.Json.Serialization.Metadata.DefaultJsonTypeInfoResolver> or <xref:System.Text.Json.Serialization.JsonSerializerContext>,
types with a single default constructor or default constructors annotated with <xref:System.Text.Json.Serialization.JsonConstructorAttribute>
will be mapped to this delegate.
]]></format>
</remarks>
<exception cref="T:System.InvalidOperationException">The <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance has been locked for further modification.
-or-
A parameterless factory is not supported for the current metadata <see cref="P:System.Text.Json.Serialization.Metadata.JsonTypeInfo.Kind" />.</exception>
</Docs>
</Member>
<Member MemberName="ElementType">
<MemberSignature Language="C#" Value="public Type? ElementType { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Type ElementType" />
<MemberSignature Language="DocId" Value="P:System.Text.Json.Serialization.Metadata.JsonTypeInfo.ElementType" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property ElementType As Type" />
<MemberSignature Language="F#" Value="member this.ElementType : Type" Usage="System.Text.Json.Serialization.Metadata.JsonTypeInfo.ElementType" />
<MemberSignature Language="C++ CLI" Value="public:
 property Type ^ ElementType { Type ^ get(); };" />
<MemberType>Property</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.Type</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets the element type corresponding to an enumerable, dictionary or optional type.</summary>
<value>To be added.</value>
<remarks>
<para>Returns the element type for enumerable types, the value type for dictionary types,</para>
<para>and the underlying type for <see cref="T:System.Nullable`1" /> or F# optional types.</para>
<para>Returns <see langword="null" /> for all other types or types using custom converters.</para>
</remarks>
</Docs>
</Member>
<Member MemberName="IsReadOnly">
<MemberSignature Language="C#" Value="public bool IsReadOnly { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool IsReadOnly" />
<MemberSignature Language="DocId" Value="P:System.Text.Json.Serialization.Metadata.JsonTypeInfo.IsReadOnly" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property IsReadOnly As Boolean" />
<MemberSignature Language="F#" Value="member this.IsReadOnly : bool" Usage="System.Text.Json.Serialization.Metadata.JsonTypeInfo.IsReadOnly" />
<MemberSignature Language="C++ CLI" Value="public:
 property bool IsReadOnly { bool get(); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<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>
<Docs>
<summary>Gets a value that indicates whether the current instance has been locked for modification.</summary>
<value>To be added.</value>
<remarks>A <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance can be locked if it has been passed to one of the <see cref="T:System.Text.Json.JsonSerializer" /> methods, has been associated with a <see cref="T:System.Text.Json.Serialization.JsonSerializerContext" /> instance, or a user explicitly called the <see cref="M:System.Text.Json.Serialization.Metadata.JsonTypeInfo.MakeReadOnly" /> method on the instance.</remarks>
</Docs>
</Member>
<Member MemberName="KeyType">
<MemberSignature Language="C#" Value="public Type? KeyType { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Type KeyType" />
<MemberSignature Language="DocId" Value="P:System.Text.Json.Serialization.Metadata.JsonTypeInfo.KeyType" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property KeyType As Type" />
<MemberSignature Language="F#" Value="member this.KeyType : Type" Usage="System.Text.Json.Serialization.Metadata.JsonTypeInfo.KeyType" />
<MemberSignature Language="C++ CLI" Value="public:
 property Type ^ KeyType { Type ^ get(); };" />
<MemberType>Property</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.Type</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets the key type corresponding to a dictionary type.</summary>
<value>To be added.</value>
<remarks>
<para>Returns the key type for dictionary types.</para>
<para>Returns <see langword="null" /> for all other types or types using custom converters.</para>
</remarks>
</Docs>
</Member>
<Member MemberName="Kind">
<MemberSignature Language="C#" Value="public System.Text.Json.Serialization.Metadata.JsonTypeInfoKind Kind { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype System.Text.Json.Serialization.Metadata.JsonTypeInfoKind Kind" />
<MemberSignature Language="DocId" Value="P:System.Text.Json.Serialization.Metadata.JsonTypeInfo.Kind" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property Kind As JsonTypeInfoKind" />
<MemberSignature Language="F#" Value="member this.Kind : System.Text.Json.Serialization.Metadata.JsonTypeInfoKind" Usage="System.Text.Json.Serialization.Metadata.JsonTypeInfo.Kind" />
<MemberSignature Language="C++ CLI" Value="public:
 property System::Text::Json::Serialization::Metadata::JsonTypeInfoKind Kind { System::Text::Json::Serialization::Metadata::JsonTypeInfoKind get(); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<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.Serialization.Metadata.JsonTypeInfoKind</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets a value that describes the kind of contract metadata that the current instance specifies.</summary>
<value>To be added.</value>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
The value of <xref:System.Text.Json.Serialization.Metadata.JsonTypeInfo.Kind> determines what aspects of the JSON contract are configurable.
For example, it is only possible to configure the <xref:System.Text.Json.Serialization.Metadata.JsonTypeInfo.Properties> list for metadata
of kind <xref:System.Text.Json.Serialization.Metadata.JsonTypeInfoKind.Object>.
The value of <xref:System.Text.Json.Serialization.Metadata.JsonTypeInfo.Kind> is determined exclusively by the <xref:System.Text.Json.Serialization.JsonConverter>
resolved for the current type, and cannot be changed once resolution has happened.
User-defined custom converters (specified either via <xref:System.Text.Json.Serialization.JsonConverterAttribute> or <xref:System.Text.Json.JsonSerializerOptions.Converters>)
are metadata-agnostic and thus always resolve to <xref:System.Text.Json.Serialization.Metadata.JsonTypeInfoKind.None>.
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="MakeReadOnly">
<MemberSignature Language="C#" Value="public void MakeReadOnly ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void MakeReadOnly() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Text.Json.Serialization.Metadata.JsonTypeInfo.MakeReadOnly" />
<MemberSignature Language="VB.NET" Value="Public Sub MakeReadOnly ()" />
<MemberSignature Language="F#" Value="member this.MakeReadOnly : unit -> unit" Usage="jsonTypeInfo.MakeReadOnly " />
<MemberSignature Language="C++ CLI" Value="public:
 void MakeReadOnly();" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<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.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Locks the current instance for further modification.</summary>
<remarks>This method is idempotent.</remarks>
</Docs>
</Member>
<Member MemberName="NumberHandling">
<MemberSignature Language="C#" Value="public System.Text.Json.Serialization.JsonNumberHandling? NumberHandling { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype System.Nullable`1<valuetype System.Text.Json.Serialization.JsonNumberHandling> NumberHandling" />
<MemberSignature Language="DocId" Value="P:System.Text.Json.Serialization.Metadata.JsonTypeInfo.NumberHandling" />
<MemberSignature Language="VB.NET" Value="Public Property NumberHandling As Nullable(Of JsonNumberHandling)" />
<MemberSignature Language="F#" Value="member this.NumberHandling : Nullable<System.Text.Json.Serialization.JsonNumberHandling> with get, set" Usage="System.Text.Json.Serialization.Metadata.JsonTypeInfo.NumberHandling" />
<MemberSignature Language="C++ CLI" Value="public:
 property Nullable<System::Text::Json::Serialization::JsonNumberHandling> NumberHandling { Nullable<System::Text::Json::Serialization::JsonNumberHandling> get(); void set(Nullable<System::Text::Json::Serialization::JsonNumberHandling> value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<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.Nullable<System.Text.Json.Serialization.JsonNumberHandling></ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets the type-level <see cref="P:System.Text.Json.JsonSerializerOptions.NumberHandling" /> override.</summary>
<value>To be added.</value>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
For contracts originating from <xref:System.Text.Json.Serialization.Metadata.DefaultJsonTypeInfoResolver> or <xref:System.Text.Json.Serialization.JsonSerializerContext>,
the value of this callback will be mapped from any <xref:System.Text.Json.Serialization.JsonNumberHandling> annotations.
]]></format>
</remarks>
<exception cref="T:System.InvalidOperationException">The <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance has been locked for further modification.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">An invalid <see cref="T:System.Text.Json.Serialization.JsonNumberHandling" /> value was specified.</exception>
</Docs>
</Member>
<Member MemberName="OnDeserialized">
<MemberSignature Language="C#" Value="public Action<object>? OnDeserialized { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Action`1<object> OnDeserialized" />
<MemberSignature Language="DocId" Value="P:System.Text.Json.Serialization.Metadata.JsonTypeInfo.OnDeserialized" />
<MemberSignature Language="VB.NET" Value="Public Property OnDeserialized As Action(Of Object)" />
<MemberSignature Language="F#" Value="member this.OnDeserialized : Action<obj> with get, set" Usage="System.Text.Json.Serialization.Metadata.JsonTypeInfo.OnDeserialized" />
<MemberSignature Language="C++ CLI" Value="public:
 property Action<System::Object ^> ^ OnDeserialized { Action<System::Object ^> ^ get(); void set(Action<System::Object ^> ^ value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<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 FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 1 })]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 1 })>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Action<System.Object></ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets a callback to be invoked after deserialization occurs.</summary>
<value>To be added.</value>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
For contracts originating from <xref:System.Text.Json.Serialization.Metadata.DefaultJsonTypeInfoResolver> or <xref:System.Text.Json.Serialization.JsonSerializerContext>,
the value of this callback will be mapped from any <xref:System.Text.Json.Serialization.IJsonOnDeserialized> implementation on the type.
]]></format>
</remarks>
<exception cref="T:System.InvalidOperationException">The <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance has been locked for further modification.
-or-
Serialization callbacks are only supported for <see cref="F:System.Text.Json.Serialization.Metadata.JsonTypeInfoKind.Object" /> metadata.</exception>
</Docs>
</Member>
<Member MemberName="OnDeserializing">
<MemberSignature Language="C#" Value="public Action<object>? OnDeserializing { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Action`1<object> OnDeserializing" />
<MemberSignature Language="DocId" Value="P:System.Text.Json.Serialization.Metadata.JsonTypeInfo.OnDeserializing" />
<MemberSignature Language="VB.NET" Value="Public Property OnDeserializing As Action(Of Object)" />
<MemberSignature Language="F#" Value="member this.OnDeserializing : Action<obj> with get, set" Usage="System.Text.Json.Serialization.Metadata.JsonTypeInfo.OnDeserializing" />
<MemberSignature Language="C++ CLI" Value="public:
 property Action<System::Object ^> ^ OnDeserializing { Action<System::Object ^> ^ get(); void set(Action<System::Object ^> ^ value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<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 FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 1 })]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 1 })>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Action<System.Object></ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets a callback to be invoked before deserialization occurs.</summary>
<value>To be added.</value>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
For contracts originating from <xref:System.Text.Json.Serialization.Metadata.DefaultJsonTypeInfoResolver> or <xref:System.Text.Json.Serialization.JsonSerializerContext>,
the value of this callback will be mapped from any <xref:System.Text.Json.Serialization.IJsonOnDeserializing> implementation on the type.
]]></format>
</remarks>
<exception cref="T:System.InvalidOperationException">The <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance has been locked for further modification.
-or-
Serialization callbacks are only supported for <see cref="F:System.Text.Json.Serialization.Metadata.JsonTypeInfoKind.Object" /> metadata.</exception>
</Docs>
</Member>
<Member MemberName="OnSerialized">
<MemberSignature Language="C#" Value="public Action<object>? OnSerialized { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Action`1<object> OnSerialized" />
<MemberSignature Language="DocId" Value="P:System.Text.Json.Serialization.Metadata.JsonTypeInfo.OnSerialized" />
<MemberSignature Language="VB.NET" Value="Public Property OnSerialized As Action(Of Object)" />
<MemberSignature Language="F#" Value="member this.OnSerialized : Action<obj> with get, set" Usage="System.Text.Json.Serialization.Metadata.JsonTypeInfo.OnSerialized" />
<MemberSignature Language="C++ CLI" Value="public:
 property Action<System::Object ^> ^ OnSerialized { Action<System::Object ^> ^ get(); void set(Action<System::Object ^> ^ value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<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 FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 1 })]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 1 })>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Action<System.Object></ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets a callback to be invoked after serialization occurs.</summary>
<value>To be added.</value>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
For contracts originating from <xref:System.Text.Json.Serialization.Metadata.DefaultJsonTypeInfoResolver> or <xref:System.Text.Json.Serialization.JsonSerializerContext>,
the value of this callback will be mapped from any <xref:System.Text.Json.Serialization.IJsonOnSerialized> implementation on the type.
]]></format>
</remarks>
<exception cref="T:System.InvalidOperationException">The <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance has been locked for further modification.
-or-
Serialization callbacks are only supported for <see cref="F:System.Text.Json.Serialization.Metadata.JsonTypeInfoKind.Object" /> metadata.</exception>
</Docs>
</Member>
<Member MemberName="OnSerializing">
<MemberSignature Language="C#" Value="public Action<object>? OnSerializing { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Action`1<object> OnSerializing" />
<MemberSignature Language="DocId" Value="P:System.Text.Json.Serialization.Metadata.JsonTypeInfo.OnSerializing" />
<MemberSignature Language="VB.NET" Value="Public Property OnSerializing As Action(Of Object)" />
<MemberSignature Language="F#" Value="member this.OnSerializing : Action<obj> with get, set" Usage="System.Text.Json.Serialization.Metadata.JsonTypeInfo.OnSerializing" />
<MemberSignature Language="C++ CLI" Value="public:
 property Action<System::Object ^> ^ OnSerializing { Action<System::Object ^> ^ get(); void set(Action<System::Object ^> ^ value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<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 FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 1 })]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 1 })>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Action<System.Object></ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets a callback to be invoked before serialization occurs.</summary>
<value>To be added.</value>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
For contracts originating from <xref:System.Text.Json.Serialization.Metadata.DefaultJsonTypeInfoResolver> or <xref:System.Text.Json.Serialization.JsonSerializerContext>,
the value of this callback will be mapped from any <xref:System.Text.Json.Serialization.IJsonOnSerializing> implementation on the type.
]]></format>
</remarks>
<exception cref="T:System.InvalidOperationException">The <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance has been locked for further modification.
-or-
Serialization callbacks are only supported for <see cref="F:System.Text.Json.Serialization.Metadata.JsonTypeInfoKind.Object" /> metadata.</exception>
</Docs>
</Member>
<Member MemberName="Options">
<MemberSignature Language="C#" Value="public System.Text.Json.JsonSerializerOptions Options { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Text.Json.JsonSerializerOptions Options" />
<MemberSignature Language="DocId" Value="P:System.Text.Json.Serialization.Metadata.JsonTypeInfo.Options" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property Options As JsonSerializerOptions" />
<MemberSignature Language="F#" Value="member this.Options : System.Text.Json.JsonSerializerOptions" Usage="System.Text.Json.Serialization.Metadata.JsonTypeInfo.Options" />
<MemberSignature Language="C++ CLI" Value="public:
 property System::Text::Json::JsonSerializerOptions ^ Options { System::Text::Json::JsonSerializerOptions ^ get(); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<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 FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(1)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(1)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Text.Json.JsonSerializerOptions</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets the <see cref="T:System.Text.Json.JsonSerializerOptions" /> value associated with the current <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance.</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="OriginatingResolver">
<MemberSignature Language="C#" Value="public System.Text.Json.Serialization.Metadata.IJsonTypeInfoResolver? OriginatingResolver { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Text.Json.Serialization.Metadata.IJsonTypeInfoResolver OriginatingResolver" />
<MemberSignature Language="DocId" Value="P:System.Text.Json.Serialization.Metadata.JsonTypeInfo.OriginatingResolver" />
<MemberSignature Language="VB.NET" Value="Public Property OriginatingResolver As IJsonTypeInfoResolver" />
<MemberSignature Language="F#" Value="member this.OriginatingResolver : System.Text.Json.Serialization.Metadata.IJsonTypeInfoResolver with get, set" Usage="System.Text.Json.Serialization.Metadata.JsonTypeInfo.OriginatingResolver" />
<MemberSignature Language="C++ CLI" Value="public:
 property System::Text::Json::Serialization::Metadata::IJsonTypeInfoResolver ^ OriginatingResolver { System::Text::Json::Serialization::Metadata::IJsonTypeInfoResolver ^ get(); void set(System::Text::Json::Serialization::Metadata::IJsonTypeInfoResolver ^ value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<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 FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;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">
<AttributeName Language="C#">[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="net-8.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(2)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(2)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Text.Json.Serialization.Metadata.IJsonTypeInfoResolver</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets the <see cref="T:System.Text.Json.Serialization.Metadata.IJsonTypeInfoResolver" /> from which this metadata instance originated.</summary>
<value>To be added.</value>
<remarks>This metadata is used to determine the <see cref="P:System.Text.Json.Serialization.JsonSerializerContext.GeneratedSerializerOptions" /> configuration for the current metadata instance.</remarks>
<exception cref="T:System.InvalidOperationException">The <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance has been locked for further modification.</exception>
</Docs>
</Member>
<Member MemberName="PolymorphismOptions">
<MemberSignature Language="C#" Value="public System.Text.Json.Serialization.Metadata.JsonPolymorphismOptions? PolymorphismOptions { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Text.Json.Serialization.Metadata.JsonPolymorphismOptions PolymorphismOptions" />
<MemberSignature Language="DocId" Value="P:System.Text.Json.Serialization.Metadata.JsonTypeInfo.PolymorphismOptions" />
<MemberSignature Language="VB.NET" Value="Public Property PolymorphismOptions As JsonPolymorphismOptions" />
<MemberSignature Language="F#" Value="member this.PolymorphismOptions : System.Text.Json.Serialization.Metadata.JsonPolymorphismOptions with get, set" Usage="System.Text.Json.Serialization.Metadata.JsonTypeInfo.PolymorphismOptions" />
<MemberSignature Language="C++ CLI" Value="public:
 property System::Text::Json::Serialization::Metadata::JsonPolymorphismOptions ^ PolymorphismOptions { System::Text::Json::Serialization::Metadata::JsonPolymorphismOptions ^ get(); void set(System::Text::Json::Serialization::Metadata::JsonPolymorphismOptions ^ value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<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 FrameworkAlternate="net-8.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(2)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(2)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Text.Json.Serialization.Metadata.JsonPolymorphismOptions</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets a configuration object specifying polymorphism metadata.</summary>
<value>To be added.</value>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
For contracts originating from <xref:System.Text.Json.Serialization.Metadata.DefaultJsonTypeInfoResolver> or <xref:System.Text.Json.Serialization.JsonSerializerContext>,
the configuration of this setting will be mapped from any <xref:System.Text.Json.Serialization.JsonDerivedTypeAttribute> or <xref:System.Text.Json.Serialization.JsonPolymorphicAttribute> annotations.
]]></format>
</remarks>
<exception cref="T:System.ArgumentException">
<paramref name="value" /> has been associated with a different <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance.</exception>
<exception cref="T:System.InvalidOperationException">The <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance has been locked for further modification.
-or-
Polymorphic serialization is not supported for the current metadata <see cref="P:System.Text.Json.Serialization.Metadata.JsonTypeInfo.Kind" />.</exception>
</Docs>
</Member>
<Member MemberName="PreferredPropertyObjectCreationHandling">
<MemberSignature Language="C#" Value="public System.Text.Json.Serialization.JsonObjectCreationHandling? PreferredPropertyObjectCreationHandling { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype System.Nullable`1<valuetype System.Text.Json.Serialization.JsonObjectCreationHandling> PreferredPropertyObjectCreationHandling" />
<MemberSignature Language="DocId" Value="P:System.Text.Json.Serialization.Metadata.JsonTypeInfo.PreferredPropertyObjectCreationHandling" />
<MemberSignature Language="VB.NET" Value="Public Property PreferredPropertyObjectCreationHandling As Nullable(Of JsonObjectCreationHandling)" />
<MemberSignature Language="F#" Value="member this.PreferredPropertyObjectCreationHandling : Nullable<System.Text.Json.Serialization.JsonObjectCreationHandling> with get, set" Usage="System.Text.Json.Serialization.Metadata.JsonTypeInfo.PreferredPropertyObjectCreationHandling" />
<MemberSignature Language="C++ CLI" Value="public:
 property Nullable<System::Text::Json::Serialization::JsonObjectCreationHandling> PreferredPropertyObjectCreationHandling { Nullable<System::Text::Json::Serialization::JsonObjectCreationHandling> get(); void set(Nullable<System::Text::Json::Serialization::JsonObjectCreationHandling> value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<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.Nullable<System.Text.Json.Serialization.JsonObjectCreationHandling></ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets the preferred <see cref="T:System.Text.Json.Serialization.JsonObjectCreationHandling" /> value for properties contained in the type.</summary>
<value>To be added.</value>
<remarks>For contracts originating from <see cref="T:System.Text.Json.Serialization.Metadata.DefaultJsonTypeInfoResolver" /> or <see cref="T:System.Text.Json.Serialization.JsonSerializerContext" />, the value of this callback will be mapped from <see cref="T:System.Text.Json.Serialization.JsonObjectCreationHandlingAttribute" /> annotations on types.</remarks>
<exception cref="T:System.InvalidOperationException">The <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance has been locked for further modification.
-or-
Unmapped member handling is only supported for <see cref="F:System.Text.Json.Serialization.Metadata.JsonTypeInfoKind.Object">JsonTypeInfoKind.Object</see>.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">Specified an invalid <see cref="T:System.Text.Json.Serialization.JsonObjectCreationHandling" /> value.</exception>
</Docs>
</Member>
<Member MemberName="Properties">
<MemberSignature Language="C#" Value="public System.Collections.Generic.IList<System.Text.Json.Serialization.Metadata.JsonPropertyInfo> Properties { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Collections.Generic.IList`1<class System.Text.Json.Serialization.Metadata.JsonPropertyInfo> Properties" />
<MemberSignature Language="DocId" Value="P:System.Text.Json.Serialization.Metadata.JsonTypeInfo.Properties" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property Properties As IList(Of JsonPropertyInfo)" />
<MemberSignature Language="F#" Value="member this.Properties : System.Collections.Generic.IList<System.Text.Json.Serialization.Metadata.JsonPropertyInfo>" Usage="System.Text.Json.Serialization.Metadata.JsonTypeInfo.Properties" />
<MemberSignature Language="C++ CLI" Value="public:
 property System::Collections::Generic::IList<System::Text::Json::Serialization::Metadata::JsonPropertyInfo ^> ^ Properties { System::Collections::Generic::IList<System::Text::Json::Serialization::Metadata::JsonPropertyInfo ^> ^ get(); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<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 FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(1)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(1)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Collections.Generic.IList<System.Text.Json.Serialization.Metadata.JsonPropertyInfo></ReturnType>
</ReturnValue>
<Docs>
<summary>Gets the list of <see cref="T:System.Text.Json.Serialization.Metadata.JsonPropertyInfo" /> metadata corresponding to the current type.</summary>
<value>To be added.</value>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This property is only applicable to metadata of kind <xref:System.Text.Json.Serialization.Metadata.JsonTypeInfoKind.Object>.
For other kinds, an empty, read-only list will be returned.
The order of <xref:System.Text.Json.Serialization.Metadata.JsonPropertyInfo> entries in the list determines the serialization order,
unless either of the entries specifies a non-zero <xref:System.Text.Json.Serialization.Metadata.JsonPropertyInfo.Order> value,
in which case the properties will be stable sorted by <xref:System.Text.Json.Serialization.Metadata.JsonPropertyInfo.Order>.
It's required that added <xref:System.Text.Json.Serialization.Metadata.JsonPropertyInfo> entries are unique up to <xref:System.Text.Json.Serialization.Metadata.JsonPropertyInfo.Name>,
however this will only be validated on serialization, once the metadata instance gets locked for further modification.
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="Type">
<MemberSignature Language="C#" Value="public Type Type { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Type Type" />
<MemberSignature Language="DocId" Value="P:System.Text.Json.Serialization.Metadata.JsonTypeInfo.Type" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property Type As Type" />
<MemberSignature Language="F#" Value="member this.Type : Type" Usage="System.Text.Json.Serialization.Metadata.JsonTypeInfo.Type" />
<MemberSignature Language="C++ CLI" Value="public:
 property Type ^ Type { Type ^ get(); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<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 FrameworkAlternate="net-10.0;net-10.0-pp;net-11.0;net-11.0-pp;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(1)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(1)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Type</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets the <see cref="P:System.Text.Json.Serialization.Metadata.JsonTypeInfo.Type" /> for which the JSON serialization contract is being defined.</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="UnmappedMemberHandling">
<MemberSignature Language="C#" Value="public System.Text.Json.Serialization.JsonUnmappedMemberHandling? UnmappedMemberHandling { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype System.Nullable`1<valuetype System.Text.Json.Serialization.JsonUnmappedMemberHandling> UnmappedMemberHandling" />
<MemberSignature Language="DocId" Value="P:System.Text.Json.Serialization.Metadata.JsonTypeInfo.UnmappedMemberHandling" />
<MemberSignature Language="VB.NET" Value="Public Property UnmappedMemberHandling As Nullable(Of JsonUnmappedMemberHandling)" />
<MemberSignature Language="F#" Value="member this.UnmappedMemberHandling : Nullable<System.Text.Json.Serialization.JsonUnmappedMemberHandling> with get, set" Usage="System.Text.Json.Serialization.Metadata.JsonTypeInfo.UnmappedMemberHandling" />
<MemberSignature Language="C++ CLI" Value="public:
 property Nullable<System::Text::Json::Serialization::JsonUnmappedMemberHandling> UnmappedMemberHandling { Nullable<System::Text::Json::Serialization::JsonUnmappedMemberHandling> get(); void set(Nullable<System::Text::Json::Serialization::JsonUnmappedMemberHandling> value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Text.Json</AssemblyName>
<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.Nullable<System.Text.Json.Serialization.JsonUnmappedMemberHandling></ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets the type-level <see cref="T:System.Text.Json.Serialization.JsonUnmappedMemberHandling" /> override.</summary>
<value>To be added.</value>
<remarks>For contracts originating from <see cref="T:System.Text.Json.Serialization.Metadata.DefaultJsonTypeInfoResolver" /> or <see cref="T:System.Text.Json.Serialization.JsonSerializerContext" />, the value of this callback will be mapped from any <see cref="T:System.Text.Json.Serialization.JsonUnmappedMemberHandlingAttribute" /> annotations.</remarks>
<exception cref="T:System.InvalidOperationException">The <see cref="T:System.Text.Json.Serialization.Metadata.JsonTypeInfo" /> instance has been locked for further modification.
-or-
Unmapped member handling is only supported for <see cref="F:System.Text.Json.Serialization.Metadata.JsonTypeInfoKind.Object" />.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">An invalid <see cref="T:System.Text.Json.Serialization.JsonUnmappedMemberHandling" /> value was specified.</exception>
</Docs>
</Member>
</Members>
</Type>