IStringMap
The DOMStringMap interface represents a set of name-value pairs.
using AngleSharp.Attributes;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.CompilerServices;
namespace AngleSharp.Dom
{
[System.Runtime.CompilerServices.NullableContext(1)]
[DomName("DOMStringMap")]
public interface IStringMap : IEnumerable<KeyValuePair<string, string>>, IEnumerable
{
[System.Runtime.CompilerServices.Nullable(2)]
[DomAccessor(Accessors.Getter | Accessors.Setter)]
string this[string name] {
[return: System.Runtime.CompilerServices.Nullable(2)]
get;
[param: System.Runtime.CompilerServices.Nullable(2)]
set;
}
[DomAccessor(Accessors.Deleter)]
void Remove(string name);
}
}