BeforeSendCallBack Delegate |
Callback, called before the TCP client sends a packet to the remote endpoint.
Namespace: StreamCoders.RtspAssembly: 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
)
Public Delegate Sub BeforeSendCallBack (
sender As Object,
client As TcpNetworkClient,
rawData As Byte(),
message As BaseMessage,
associatedTrack As RtspTrackInfo,
ByRef sendPacket As Boolean
)
public delegate void BeforeSendCallBack(
Object^ sender,
TcpNetworkClient^ client,
array<unsigned char>^ rawData,
BaseMessage^ message,
RtspTrackInfo^ associatedTrack,
bool% sendPacket
)
type BeforeSendCallBack =
delegate of
sender : Object *
client : TcpNetworkClient *
rawData : byte[] *
message : BaseMessage *
associatedTrack : RtspTrackInfo *
sendPacket : bool byref -> unit
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