Skip to content

Commit 21b9313

Browse files
carlossanlopRon Petrusha
authored andcommitted
Automatically port System.Text.Json.Serialization.JsonConverterFactory (#2886)
* Automatically port System.Text.Json.Serialization.JsonConverterFactory * Updated.
1 parent cc0baa0 commit 21b9313

File tree

1 file changed

+15
-7
lines changed

1 file changed

+15
-7
lines changed

xml/System.Text.Json.Serialization/JsonConverterFactory.xml

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,16 @@
1414
</Base>
1515
<Interfaces />
1616
<Docs>
17-
<summary>To be added.</summary>
18-
<remarks>To be added.</remarks>
17+
<summary>Supports converting several types by using a factory pattern.</summary>
18+
<remarks>
19+
<format type="text/markdown"><![CDATA[
20+
21+
## Remarks
22+
23+
This is useful for converters supporting generics, such as a converter for <xref:System.Collections.Generic.List`1>.
24+
25+
]]></format>
26+
</remarks>
1927
</Docs>
2028
<Members>
2129
<Member MemberName=".ctor">
@@ -31,7 +39,7 @@
3139
</AssemblyInfo>
3240
<Parameters />
3341
<Docs>
34-
<summary>To be added.</summary>
42+
<summary>When overidden in a derived class, initializes a new instance of the <see cref="T:System.Text.Json.Serialization.JsonConverterFactory" /> class.</summary>
3543
<remarks>To be added.</remarks>
3644
</Docs>
3745
</Member>
@@ -54,11 +62,11 @@
5462
<Parameter Name="typeToConvert" Type="System.Type" />
5563
</Parameters>
5664
<Docs>
57-
<param name="typeToConvert">To be added.</param>
58-
<summary>To be added.</summary>
59-
<returns>To be added.</returns>
65+
<param name="typeToConvert">The type to convert.</param>
66+
<summary>Creates a converter for a specified type.</summary>
67+
<returns>An instance of a <see cref="T:System.Text.Json.Serialization.JsonConverter`1" /> where <typeparamref name="T" /> is compatible with <paramref name="typeToConvert" />.</returns>
6068
<remarks>To be added.</remarks>
6169
</Docs>
6270
</Member>
6371
</Members>
64-
</Type>
72+
</Type>

0 commit comments

Comments
 (0)