4 writes to _contents
Microsoft.Extensions.AI.Abstractions (4)
ChatCompletion\ChatMessage.cs (4)
40
_contents
= contents;
54
_contents
= _contents,
80
get =>
_contents
??= [];
81
set =>
_contents
= value;
4 references to _contents
Microsoft.Extensions.AI.Abstractions (4)
ChatCompletion\ChatMessage.cs (4)
54
_contents =
_contents
,
101
private AIContent? ContentForDebuggerDisplay =>
_contents
is { Count: > 0 } ?
_contents
[0] : null;
105
private string EllipsesForDebuggerDisplay =>
_contents
is { Count: > 1 } ? ", ..." : string.Empty;