StringDataSent Delegate

AdiIRC API v2

StringDataSent Delegate

Delegate gets called when any string 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 StringDataSent(
	StringDataSentArgs argument
)
Public Delegate Sub StringDataSent ( 
	argument As StringDataSentArgs
)
public delegate void StringDataSent(
	StringDataSentArgs^ argument
)
type StringDataSent = 
    delegate of 
        argument : StringDataSentArgs -> unit

Parameters

argument
Type: AdiIRCAPIv2.Arguments.ConnectionStringDataSentArgs
StringDataSentArgs
Remarks

The raw string passed in the args can be modified to alter the message being sent to the IServer

If the string is set to an empty string, the message will not be further processed.

Scripted Event Equivalent: on PARSELINE

See Also