Show / Hide Table of Contents

Class ChapterList.Enumerator

Enumerates the chapters in a ChapterList.

Inheritance
object
ChapterList.Enumerator
Implements
IEnumerator<AVChapter>
IEnumerator
IDisposable
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: FFmpeg.Formats
Assembly: FFmpeg.dll
Syntax
public class ChapterList.Enumerator : IEnumerator<AVChapter>, IEnumerator, IDisposable

Constructors

View Source

Enumerator(ChapterList)

Enumerates the chapters in a ChapterList.

Declaration
public Enumerator(ChapterList list)
Parameters
Type Name Description
ChapterList list

Properties

View Source

Current

Gets the chapter at the current position in the collection.

Declaration
public AVChapter Current { get; }
Property Value
Type Description
AVChapter

Methods

View Source

Dispose()

Releases the resources used by the enumerator.

Declaration
public void Dispose()
View Source

MoveNext()

Advances the enumerator to the next chapter in the collection.

Declaration
public bool MoveNext()
Returns
Type Description
bool

true if the enumerator was successfully advanced to the next chapter; otherwise, false if the end of the collection has been reached.

View Source

Reset()

Resets the enumerator to its initial position, which is before the first chapter in the collection.

Declaration
public void Reset()

Implements

IEnumerator<T>
IEnumerator
IDisposable
  • View Source
In this article
Back to top Generated by DocFX