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