3 writes to content
System.Private.Xml.Linq (3)
System\Xml\Linq\XStreamingElement.cs (3)
39this.content = content is List<object?> ? new object?[] { content } : content; 50this.content = content; 82this.content = list;
5 references to content
System.Private.Xml.Linq (5)
System\Xml\Linq\XElement.cs (1)
133AddContentSkipNotify(other.content);
System\Xml\Linq\XLinq.cs (1)
641Write(e.content);
System\Xml\Linq\XStreamingElement.cs (3)
77List<object>? list = this.content as List<object>; 81if (this.content != null) list.Add(this.content);