3 writes to _contents
Microsoft.Extensions.AI.Abstractions (3)
ChatCompletion\ChatResponseUpdate.cs (3)
61_contents = contents; 85get => _contents ??= []; 86set => _contents = value;
5 references to _contents
Microsoft.Extensions.AI.Abstractions (5)
ChatCompletion\ChatResponseUpdate.cs (5)
79public string Text => _contents is not null ? _contents.ConcatText() : string.Empty; 162private AIContent? ContentForDebuggerDisplay => _contents is { Count: > 0 } ? _contents[0] : null; 166private string EllipsesForDebuggerDisplay => _contents is { Count: > 1 } ? ", ..." : string.Empty;