IPluginHost.OnRawBytesReceived Event

AdiIRC API v2

IPluginHostOnRawBytesReceived Event

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

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

Value

Type: AdiIRCAPIv2.DelegatesRawBytesReceived
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