ConnectionReadDelegate Delegate |
The delegate that is called when an
IConnection reads bytes off the connection.
Namespace: VirtualRadar.Interface.NetworkAssembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public delegate void ConnectionReadDelegate(
IConnection connection,
byte[] buffer,
int offset,
int length,
int bytesRead
)
Public Delegate Sub ConnectionReadDelegate (
connection As IConnection,
buffer As Byte(),
offset As Integer,
length As Integer,
bytesRead As Integer
)
public delegate void ConnectionReadDelegate(
IConnection^ connection,
array<unsigned char>^ buffer,
int offset,
int length,
int bytesRead
)
type ConnectionReadDelegate =
delegate of
connection : IConnection *
buffer : byte[] *
offset : int *
length : int *
bytesRead : int -> unit
Parameters
- connection
- Type: VirtualRadar.Interface.NetworkIConnection
- buffer
- Type: SystemByte
- offset
- Type: SystemInt32
- length
- Type: SystemInt32
- bytesRead
- Type: SystemInt32
See Also