6 references to TryGetValue
Microsoft.Extensions.AI.Abstractions (2)
AdditionalPropertiesDictionary{TValue}.cs (1)
162if (TryGetValue(key, out TValue? obj))
UsageDetails.cs (1)
52AdditionalCounts[kvp.Key] = AdditionalCounts.TryGetValue(kvp.Key, out var existingValue) ?
Microsoft.Extensions.AI.Abstractions.Tests (4)
ChatCompletion\ChatOptionsTests.cs (1)
174Assert.True(deserialized.AdditionalProperties.TryGetValue("key", out object? value));
ChatCompletion\ChatResponseTests.cs (1)
114Assert.True(result.AdditionalProperties.TryGetValue("key", out object? value));
ChatCompletion\ChatResponseUpdateTests.cs (1)
159Assert.True(result.AdditionalProperties.TryGetValue("key", out object? value));
Embeddings\EmbeddingGenerationOptionsTests.cs (1)
82Assert.True(deserialized.AdditionalProperties.TryGetValue("key", out object? value));