Table of Contents

Method AddToQueueAt

Namespace
DisCatSharp.Lavalink
Assembly
DisCatSharp.Lavalink.dll

Inserts a track at the specified index in the queue.

public void AddToQueueAt(int index, LavalinkTrack track)

Parameters

index int

The zero-based index at which the track should be inserted.

track LavalinkTrack

The track to insert.

Inserts a range of tracks at the specified index in the queue.

public void AddToQueueAt(int index, IEnumerable<LavalinkTrack> tracks)

Parameters

index int

The zero-based index at which the tracks should be inserted.

tracks IEnumerable<LavalinkTrack>

The tracks to insert.