Table of Contents

Class VoiceReceiveEventArgs

Namespace
NetCord.Gateway.Voice
Assembly
NetCord.dll
public class VoiceReceiveEventArgs
Inheritance
VoiceReceiveEventArgs
Inherited Members

Constructors

VoiceReceiveEventArgs(uint, ulong, ReadOnlyMemory<byte>)

public VoiceReceiveEventArgs(uint ssrc, ulong userId, ReadOnlyMemory<byte> frame)

Parameters

ssrc uint
userId ulong
frame ReadOnlyMemory<byte>

Properties

Frame

The frame encoded in Opus.

public ReadOnlyMemory<byte> Frame { get; }

Property Value

ReadOnlyMemory<byte>

Ssrc

The SSRC of the user.

public uint Ssrc { get; }

Property Value

uint

UserId

The ID of the user.

public ulong UserId { get; }

Property Value

ulong