RtpParticipantRtpPacketHandler Delegate |
Handler, called when the rtp participant receives an RTP packet.
Namespace: StreamCoders.RtpAssembly: MediaBase (in MediaBase.dll) Version: 2.0.5.0 (2.0.5.0)
Syntax public delegate void RtpParticipantRtpPacketHandler(
Object sender,
RtpPacket packet,
OffsetBuffer<byte> rawPacket,
EndPoint remoteEndpoint
)
Public Delegate Sub RtpParticipantRtpPacketHandler (
sender As Object,
packet As RtpPacket,
rawPacket As OffsetBuffer(Of Byte),
remoteEndpoint As EndPoint
)
public delegate void RtpParticipantRtpPacketHandler(
Object^ sender,
RtpPacket^ packet,
OffsetBuffer<unsigned char>^ rawPacket,
EndPoint^ remoteEndpoint
)
type RtpParticipantRtpPacketHandler =
delegate of
sender : Object *
packet : RtpPacket *
rawPacket : OffsetBuffer<byte> *
remoteEndpoint : EndPoint -> unit
Parameters
- sender
- Type: SystemObject
The originating object.
- packet
- Type: StreamCoders.RtpRtpPacket
Parsed RTP packet.
- rawPacket
- Type: StreamCodersOffsetBufferByte
Raw unparsed RTP 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