AngleSharp by Florian Rappl

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

.NET API 1,168,384 bytes

 CssTextDecorationStyleProperty

Information: https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration-style Gets the selected decoration style.
using AngleSharp.Css; using AngleSharp.Extensions; namespace AngleSharp.Dom.Css { internal sealed class CssTextDecorationStyleProperty : CssProperty { internal CssTextDecorationStyleProperty(CssStyleDeclaration rule) : base(PropertyNames.TextDecorationStyle, rule, PropertyFlags.None) { } protected override object GetDefault(IElement element) { return TextDecorationStyle.Solid; } protected override object Compute(IElement element) { return Converters.TextDecorationStyleConverter.Convert(base.Value); } protected override bool IsValid(ICssValue value) { return Converters.TextDecorationStyleConverter.Validate(value); } } }