3 writes to _contents
Microsoft.Extensions.AI.Abstractions (3)
ChatCompletion\ChatResponseUpdate.cs (3)
59
_contents
= contents;
106
get =>
_contents
??= [];
107
set =>
_contents
= value;
5 references to _contents
Microsoft.Extensions.AI.Abstractions (5)
ChatCompletion\ChatResponseUpdate.cs (5)
100
public string Text =>
_contents
is not null ?
_contents
.ConcatText() : string.Empty;
187
_contents
is { Count: > 0 } ?
_contents
[0] :
194
private string EllipsesForDebuggerDisplay =>
_contents
is { Count: > 1 } ? ", ..." : string.Empty;