Table of Contents

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 int

The 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

int

Methods

Contains(string)

Returns a boolean indicating if the specified entry is available.

[DomName("contains")]
bool Contains(string entry)

Parameters

entry string

The entry that will be looked for.

Returns

bool

True if the element is available, otherwise false.