Table of Contents

Interface ITimeRanges

Namespace
AngleSharp.Media.Dom
Assembly
AngleSharp.dll

Represents a media time range.

[DomName("TimeRanges")]
public interface ITimeRanges
Extension Methods

Properties

Length

Gets the length of the range in frames.

[DomName("length")]
int Length { get; }

Property Value

int

Methods

End(int)

Returns the time offset at which a specified time range ends.

[DomName("end")]
double End(int index)

Parameters

index int

The range number to return the ending time for.

Returns

double

The time offset.

Start(int)

Returns the time offset at which a specified time range begins.

[DomName("start")]
double Start(int index)

Parameters

index int

The range number to return the starting time for.

Returns

double

The time offset.