Skip to content

Commit 0a4d474

Browse files
authored
Update deserialization.md
1 parent 5c85852 commit 0a4d474

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/standard/serialization/system-text-json/deserialization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This article shows how to use the <xref:System.Text.Json?displayProperty=fullNam
2222
A common way to deserialize JSON is to have (or create) a .NET class with properties and fields that represent one or more of the JSON properties. Then, to deserialize from a string or a file, call the <xref:System.Text.Json.JsonSerializer.Deserialize%2A?displayProperty=nameWithType> method. For the generic overloads, the generic type parameter is the .NET class. For the non-generic overloads, you pass the type of the class as a method parameter. You can deserialize either synchronously or asynchronously.
2323

2424
> [!TIP]
25-
> You can use AI assistance to [deserialize a JSON string](#use-AI-to-deserialize-json).
25+
> You can use AI assistance to [deserialize a JSON string](#use-ai-to-deserialize-json).
2626
2727
Any JSON properties that aren't represented in your class are ignored [by default](missing-members.md). Also, if any properties on the type are [required](required-properties.md) but not present in the JSON payload, deserialization will fail.
2828

0 commit comments

Comments
 (0)