Delegate gets called when a IUser changes topic in IChannel
Namespace:
AdiIRCAPI
Assembly:
AdiIRCAPI (in AdiIRCAPI.dll) Version: 1.8.0.0 (1.8.0.0)
Syntax public delegate void Topic(
IServer Server,
IChannel Channel,
IUser User,
string NewTopic,
out EatData Return
)
Public Delegate Sub Topic (
Server As IServer,
Channel As IChannel,
User As IUser,
NewTopic As String,
<OutAttribute> ByRef Return As EatData
)
public delegate void Topic(
IServer^ Server,
IChannel^ Channel,
IUser^ User,
String^ NewTopic,
[OutAttribute] EatData% Return
)
type Topic =
delegate of
Server : IServer *
Channel : IChannel *
User : IUser *
NewTopic : string *
Return : EatData byref -> unit
Parameters
- Server
- Type: AdiIRCAPIIServer
IServer - Channel
- Type: AdiIRCAPIIChannel
IChannel - User
- Type: AdiIRCAPIIUser
IUser - NewTopic
- Type: SystemString
String - Return
- Type: AdiIRCAPIEatData
EatData
See Also