IPluginHost.OnRawBytesSent Event

AdiIRC API v2

IPluginHostOnRawBytesSent Event

Delegate gets called when any raw 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 RawBytesSent OnRawBytesSent
Event OnRawBytesSent As RawBytesSent
 event RawBytesSent^ OnRawBytesSent {
	void add (RawBytesSent^ value);
	void remove (RawBytesSent^ value);
}
abstract OnRawBytesSent : IEvent<RawBytesSent,
    EventArgs>

Value

Type: AdiIRCAPIv2.DelegatesRawBytesSent
Remarks

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.

Scripted Event Equivalent: on PARSELINE

See Also