Delegate gets called when any raw data is recieved to the IServer.
You can modify the byte array args, AdiIRC will then parse this array with the proper encoding.
If the array is set to null or zero bytes, the raw message is ignored by AdiIRC.
Namespace:
AdiIRCAPI
Assembly:
AdiIRCAPI (in AdiIRCAPI.dll) Version: 1.8.0.0 (1.8.0.0)
Syntax public delegate void RawData(
Object sender,
RawDataArgs e
)
Public Delegate Sub RawData (
sender As Object,
e As RawDataArgs
)
public delegate void RawData(
Object^ sender,
RawDataArgs^ e
)
type RawData =
delegate of
sender : Object *
e : RawDataArgs -> unit
Parameters
- sender
- Type: SystemObject
object - e
- Type: AdiIRCAPIRawDataArgs
RawDataArgs
See Also