2 writes to _jsonSerializerOptions
Microsoft.Extensions.AI (2)
Embeddings\DistributedCachingEmbeddingGenerator.cs (2)
37_jsonSerializerOptions = AIJsonUtilities.DefaultOptions; 47_jsonSerializerOptions = value;
6 references to _jsonSerializerOptions
Microsoft.Extensions.AI (6)
Embeddings\DistributedCachingEmbeddingGenerator.cs (6)
43get => _jsonSerializerOptions; 55_jsonSerializerOptions.MakeReadOnly(); 59return JsonSerializer.Deserialize(existingJson, (JsonTypeInfo<TEmbedding>)_jsonSerializerOptions.GetTypeInfo(typeof(TEmbedding))); 70_jsonSerializerOptions.MakeReadOnly(); 72var newJson = JsonSerializer.SerializeToUtf8Bytes(value, (JsonTypeInfo<TEmbedding>)_jsonSerializerOptions.GetTypeInfo(typeof(TEmbedding))); 83return CachingHelpers.GetCacheKey(value, _jsonSerializerOptions);