3 writes to _contents
Microsoft.Extensions.AI.Abstractions (3)
ChatCompletion\ChatResponseUpdate.cs (3)
63
_contents
= contents;
87
get =>
_contents
??= [];
88
set =>
_contents
= value;
5 references to _contents
Microsoft.Extensions.AI.Abstractions (5)
ChatCompletion\ChatResponseUpdate.cs (5)
81
public string Text =>
_contents
is not null ?
_contents
.ConcatText() : string.Empty;
153
_contents
is { Count: > 0 } ?
_contents
[0] :
160
private string EllipsesForDebuggerDisplay =>
_contents
is { Count: > 1 } ? ", ..." : string.Empty;