IPluginHost.OnStringDataSent Event

AdiIRC API v2

IPluginHostOnStringDataSent Event

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

Namespace:  AdiIRCAPIv2.Interfaces
Assembly:  AdiIRCAPIv2 (in AdiIRCAPIv2.dll) Version: 2.0.1.4 (2.0.1.4)
Syntax
event StringDataSent OnStringDataSent
Event OnStringDataSent As StringDataSent
 event StringDataSent^ OnStringDataSent {
	void add (StringDataSent^ value);
	void remove (StringDataSent^ value);
}
abstract OnStringDataSent : IEvent<StringDataSent,
    EventArgs>

Value

Type: AdiIRCAPIv2.DelegatesStringDataSent
Remarks

You can modify the string args, AdiIRC will then send the modified string to the server. If the string is set to "", the raw message is ignored by AdiIRC.

Scripted Event Equivalent: on PARSELINE

See Also