ISettableTokenList
The same as TokenList, except that it allows the underlying string to
be directly changed.
using AngleSharp.Attributes;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.CompilerServices;
namespace AngleSharp.Dom
{
[System.Runtime.CompilerServices.NullableContext(1)]
[DomName("DOMSettableTokenList")]
public interface ISettableTokenList : ITokenList, IEnumerable<string>, IEnumerable
{
[DomName("value")]
string Value { get; set; }
}
}