Interface IStringMap
- Namespace
- AngleSharp.Dom
- Assembly
- AngleSharp.dll
The DOMStringMap interface represents a set of name-value pairs.
[DomName("DOMStringMap")]
public interface IStringMap : IEnumerable<KeyValuePair<string, string>>, IEnumerable
- Inherited Members
- Extension Methods
Properties
this[string]
Gets or sets an item in the dictionary.
[DomAccessor(Accessors.Getter|Accessors.Setter)]
string? this[string name] { get; set; }
Parameters
name
stringThe name of the item to get or set.
Property Value
- string
The item with the associated name.
Methods
Remove(string)
Deletes the string with the given name from the map.
[DomAccessor(Accessors.Deleter)]
void Remove(string name)
Parameters
name
stringThe name of the string to remove.