AngleSharp by AngleSharp

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

.NET API 1,230,848 bytes

 ICssProperties

Represents a set of CSS properties.
using AngleSharp.Attributes; using System.Collections; using System.Collections.Generic; namespace AngleSharp.Dom.Css { [DomNoInterfaceObject] public interface ICssProperties : IEnumerable<ICssProperty>, IEnumerable { string this[string propertyName] { get; } [DomName("length")] int Length { get; } [DomName("getPropertyValue")] string GetPropertyValue(string propertyName); [DomName("getPropertyPriority")] string GetPropertyPriority(string propertyName); [DomName("setProperty")] void SetProperty(string propertyName, string propertyValue, string priority = null); [DomName("removeProperty")] string RemoveProperty(string propertyName); } }