Browse Source

Rename Json-Serialization document

pull/8422/head
Halil İbrahim Kalkan 5 years ago
parent
commit
a20ed6cf72
  1. 2
      docs/en/Caching.md
  2. 0
      docs/en/Json-Serialization.md
  3. 2
      docs/en/Timing.md

2
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.

0
docs/en/Json.md → docs/en/Json-Serialization.md

2
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

Loading…
Cancel
Save