From a20ed6cf7263b757dce0259678d02a6555d40098 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halil=20=C4=B0brahim=20Kalkan?= Date: Tue, 6 Apr 2021 11:19:44 +0300 Subject: [PATCH] Rename Json-Serialization document --- docs/en/Caching.md | 2 +- docs/en/{Json.md => Json-Serialization.md} | 0 docs/en/Timing.md | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename docs/en/{Json.md => Json-Serialization.md} (100%) diff --git a/docs/en/Caching.md b/docs/en/Caching.md index 7dbf02d875..13129bbc95 100644 --- a/docs/en/Caching.md +++ b/docs/en/Caching.md @@ -262,7 +262,7 @@ Distributed cache service provides an interesting feature. Assume that you've up ### IDistributedCacheSerializer -`IDistributedCacheSerializer` service is used to serialize and deserialize the cache items. Default implementation is the `Utf8JsonDistributedCacheSerializer` class that uses `IJsonSerializer` service to convert objects to [JSON](Json.md) and vice verse. Then it uses UTC8 encoding to convert the JSON string to a byte array which is accepted by the distributed cache. +`IDistributedCacheSerializer` service is used to serialize and deserialize the cache items. Default implementation is the `Utf8JsonDistributedCacheSerializer` class that uses `IJsonSerializer` service to convert objects to [JSON](Json-Serialization.md) and vice verse. Then it uses UTC8 encoding to convert the JSON string to a byte array which is accepted by the distributed cache. You can [replace](Dependency-Injection.md) this service by your own implementation if you want to implement your own serialization logic. diff --git a/docs/en/Json.md b/docs/en/Json-Serialization.md similarity index 100% rename from docs/en/Json.md rename to docs/en/Json-Serialization.md diff --git a/docs/en/Timing.md b/docs/en/Timing.md index afa4abda71..790721e7a8 100644 --- a/docs/en/Timing.md +++ b/docs/en/Timing.md @@ -83,7 +83,7 @@ var normalizedDateTime = Clock.Normalize(dateTime) * `DateTime` type binding in the ASP.NET Core MVC model binding. * Saving data to and reading data from database via [Entity Framework Core](Entity-Framework-Core.md). -* Working with `DateTime` objects on [JSON deserialization](Json.md). +* Working with `DateTime` objects on [JSON deserialization](Json-Serialization.md). #### DisableDateTimeNormalization Attribute