3 writes to _contents
Microsoft.Extensions.AI.Abstractions (3)
ChatCompletion\ChatResponseUpdate.cs (3)
58
_contents
= contents;
82
get =>
_contents
??= [];
83
set =>
_contents
= value;
5 references to _contents
Microsoft.Extensions.AI.Abstractions (5)
ChatCompletion\ChatResponseUpdate.cs (5)
76
public string Text =>
_contents
is not null ?
_contents
.ConcatText() : string.Empty;
163
_contents
is { Count: > 0 } ?
_contents
[0] :
170
private string EllipsesForDebuggerDisplay =>
_contents
is { Count: > 1 } ? ", ..." : string.Empty;