RawBytesSent Delegate

AdiIRC API v2

RawBytesSent Delegate

Delegate gets called when any raw data is sent to the IServer.

Namespace:  AdiIRCAPIv2.Delegates
Assembly:  AdiIRCAPIv2 (in AdiIRCAPIv2.dll) Version: 2.0.1.4 (2.0.1.4)
Syntax
public delegate void RawBytesSent(
	RawBytesSentArgs argument
)
Public Delegate Sub RawBytesSent ( 
	argument As RawBytesSentArgs
)
public delegate void RawBytesSent(
	RawBytesSentArgs^ argument
)
type RawBytesSent = 
    delegate of 
        argument : RawBytesSentArgs -> unit

Parameters

argument
Type: AdiIRCAPIv2.Arguments.ConnectionRawBytesSentArgs
RawBytesSentArgs
Remarks

The Byte-Array passed in the args can be modified to alter what is sent to the IServer.

If the array is set to null or zero bytes, the raw message will not be sent.

Scripted Event Equivalent: on PARSELINE

See Also