Table of Contents

Class CCheckTransmitInfoList

Namespace
CounterStrikeSharp.API.Core
Assembly
CounterStrikeSharp.API.dll
public sealed class CCheckTransmitInfoList : NativeObject, IReadOnlyList<(CCheckTransmitInfo info, CCSPlayerController? player)>, IReadOnlyCollection<(CCheckTransmitInfo info, CCSPlayerController? player)>, IEnumerable<(CCheckTransmitInfo info, CCSPlayerController? player)>, IEnumerable
Inheritance
object
CCheckTransmitInfoList
Implements
Inherited Members

Constructors

CCheckTransmitInfoList(nint)

public CCheckTransmitInfoList(nint pointer)

Parameters

pointer nint

Properties

Count

Gets the number of elements in the collection.

public int Count { get; }

Property Value

int

The number of elements in the collection.

this[int]

Get transmit info for the given index.

public (CCheckTransmitInfo info, CCSPlayerController? player) this[int index] { get; }

Parameters

index int

Index of the info you want to retrieve from the list, should be between 0 and 'Count' - 1

Property Value

(CCheckTransmitInfo info, CCSPlayerController player)

Methods

GetEnumerator()

Returns an enumerator that iterates through the collection.

public IEnumerator<(CCheckTransmitInfo, CCSPlayerController?)> GetEnumerator()

Returns

IEnumerator<(CCheckTransmitInfo, CCSPlayerController)>

An enumerator that can be used to iterate through the collection.