6 writes to AuthorName
Microsoft.Extensions.AI (2)
ChatCompletion\CachingChatClient.cs (2)
139AuthorName = update.AuthorName, 166coalesced.AuthorName ??= next.AuthorName;
Microsoft.Extensions.AI.Abstractions.Tests (2)
ChatCompletion\StreamingChatCompletionUpdateTests.cs (2)
36update.AuthorName = "author"; 167AuthorName = "author",
Microsoft.Extensions.AI.AzureAIInference (2)
AzureAIInferenceChatClient.cs (2)
172AuthorName = authorName, 217AuthorName = authorName,
10 references to AuthorName
Microsoft.Extensions.AI (6)
ChatCompletion\CachingChatClient.cs (6)
114(update.AuthorName is not null && next.AuthorName is not null && update.AuthorName != next.AuthorName)) 139AuthorName = update.AuthorName, 166coalesced.AuthorName ??= next.AuthorName;
Microsoft.Extensions.AI.Abstractions.Tests (4)
ChatCompletion\StreamingChatCompletionUpdateTests.cs (4)
17Assert.Null(update.AuthorName); 35Assert.Null(update.AuthorName); 37Assert.Equal("author", update.AuthorName); 207Assert.Equal("author", result.AuthorName);