RawBytesReceived Delegate

AdiIRC API v2

RawBytesReceived Delegate

Delegate gets called when any raw data is recieved from an IServer

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

Parameters

argument
Type: AdiIRCAPIv2.Arguments.ConnectionRawBytesReceivedArgs
RawBytesReceivedArgs
Remarks

The Byte-Array passed in the args can be modified to alter the message that AdiIRC parse.

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

Scripted Event Equivalent: on PARSELINE

See Also