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