Interface IStringList
- Namespace
- AngleSharp.Dom
- Assembly
- AngleSharp.dll
Represents a string list.
[DomName("DOMStringList")]
public interface IStringList : IEnumerable<string>, IEnumerable
- Inherited Members
- Extension Methods
Properties
this[int]
Gets the value at the specified index.
[DomName("item")]
[DomAccessor(Accessors.Getter)]
string this[int index] { get; }
Parameters
index
intThe index of the value.
Property Value
- string
The string value at the given index.
Length
Gets the number of entries.
[DomName("length")]
int Length { get; }
Property Value
Methods
Contains(string)
Returns a boolean indicating if the specified entry is available.
[DomName("contains")]
bool Contains(string entry)
Parameters
entry
stringThe entry that will be looked for.
Returns
- bool
True if the element is available, otherwise false.