Click or drag to resize
BeforeSendCallBack Delegate
Callback, called before the TCP client sends a packet to the remote endpoint.

Namespace: StreamCoders.Rtsp
Assembly: MediaBase (in MediaBase.dll) Version: 2.0.5.0 (2.0.5.0)
Syntax
public delegate void BeforeSendCallBack(
	Object sender,
	TcpNetworkClient client,
	byte[] rawData,
	BaseMessage message,
	RtspTrackInfo associatedTrack,
	ref bool sendPacket
)

Parameters

sender
Type: SystemObject
Source of the event.
client
Type: StreamCoders.NetworkTcpNetworkClient
The client.
rawData
Type: SystemByte
Information describing the raw.
message
Type: StreamCoders.RtspBaseMessage
The message.
associatedTrack
Type: StreamCoders.RtspRtspTrackInfo
The associated track.
sendPacket
Type: SystemBoolean
[in,out] Message describing the send.
See Also