RtpParticipantRtcpPacketHandler Delegate |
Handler, called when the rtp participant receives an RTCP packet.
Namespace: StreamCoders.RtpAssembly: MediaBase (in MediaBase.dll) Version: 2.0.5.0 (2.0.5.0)
Syntaxpublic delegate void RtpParticipantRtcpPacketHandler(
Object sender,
RtcpCompoundPacket packet,
OffsetBuffer<byte> rawPacket,
EndPoint remoteEndpoint
)
Public Delegate Sub RtpParticipantRtcpPacketHandler (
sender As Object,
packet As RtcpCompoundPacket,
rawPacket As OffsetBuffer(Of Byte),
remoteEndpoint As EndPoint
)
public delegate void RtpParticipantRtcpPacketHandler(
Object^ sender,
RtcpCompoundPacket^ packet,
OffsetBuffer<unsigned char>^ rawPacket,
EndPoint^ remoteEndpoint
)
type RtpParticipantRtcpPacketHandler =
delegate of
sender : Object *
packet : RtcpCompoundPacket *
rawPacket : OffsetBuffer<byte> *
remoteEndpoint : EndPoint -> unit
Parameters
- sender
- Type: SystemObject
The originating object.
- packet
- Type: StreamCoders.RtpRtcpCompoundPacket
Parsed RTCP packet.
- rawPacket
- Type: StreamCodersOffsetBufferByte
Raw unparsed RTCP packet.
- remoteEndpoint
- Type: System.NetEndPoint
Sending remote endpoint. This will only contain a valid value if the RTPParticipant was
initialized with a remote endpoint (non-null).
See Also