Struct VoiceReceiveEventArgs
public readonly ref struct VoiceReceiveEventArgs
- Inherited Members
Constructors
VoiceReceiveEventArgs(byte[]?, int, int, uint, uint?, ushort)
public VoiceReceiveEventArgs(byte[]? buffer, int frameIndex, int frameLength, uint ssrc, uint? timestamp, ushort sequenceNumber)
Parameters
Properties
Frame
The voice frame data.
public ReadOnlySpan<byte> Frame { get; }
Property Value
SequenceNumber
The sequence number of the voice frame.
public ushort SequenceNumber { get; }
Property Value
Ssrc
The synchronization source (SSRC) of the sender of the voice frame.
public uint Ssrc { get; }
Property Value
Timestamp
The timestamp of the voice frame. null when the frame was lost.
public uint? Timestamp { get; }
Property Value
- uint?