IStringMap public interface IStringMap : IEnumerable<KeyValuePair<string, string>>, IEnumerable The DOMStringMap interface represents a set of name-value pairs. Documentation Code string this[string name] { get; set; } Gets or sets an item in the dictionary. void Remove(string name) Deletes the string with the given name from the map.