AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="0.9.9.1" />

.NET API 1,224,704 bytes

 ICharacterData

The CharacterData abstract interface represents a Node object that contains characters.
using AngleSharp.Attributes; namespace AngleSharp.Dom { [DomName("CharacterData")] public interface ICharacterData : INode, IEventTarget, IMarkupFormattable, IChildNode, INonDocumentTypeChildNode { [DomName("data")] string Data { get; set; } [DomName("length")] int Length { get; } [DomName("substringData")] string Substring(int offset, int count); [DomName("appendData")] void Append(string value); [DomName("insertData")] void Insert(int offset, string value); [DomName("deleteData")] void Delete(int offset, int count); [DomName("replaceData")] void Replace(int offset, int count, string value); } }