AMPS C# Client
5.3.3.4
AMPS C# Client for .NET
|
Filter raw incoming and outgoing data on a Transport. More...
Public Member Functions | |
void | outgoing (byte[] data, int position, int length) |
Called when (typically just before) raw data is sent to the AMPS instance. More... | |
void | incoming (byte[] data, int position, int length) |
Called just after raw data is recieved from the AMPS instance. More... | |
Filter raw incoming and outgoing data on a Transport.
void TransportFilter.incoming | ( | byte[] | data, |
int | position, | ||
int | length | ||
) |
Called just after raw data is recieved from the AMPS instance.
data | A byte array containing raw data to be sent to the AMPS instance. |
position | The position in data where the raw data begins |
length | The length of the raw data to be sent. |
Implemented in AMPS.Client.TransportTraceFilter.
void TransportFilter.outgoing | ( | byte[] | data, |
int | position, | ||
int | length | ||
) |
Called when (typically just before) raw data is sent to the AMPS instance.
data | A byte array containing raw data to be sent to the AMPS instance. |
position | The position in data where the raw data begins |
length | The length of the raw data to be sent. |
Implemented in AMPS.Client.TransportTraceFilter.