Delegate gets called when your user types a command
Window can be IServer (server window), IChannel (channel window), IUser (private window)
Namespace:
AdiIRCAPI
Assembly:
AdiIRCAPI (in AdiIRCAPI.dll) Version: 1.8.0.0 (1.8.0.0)
Syntax public delegate void Command(
Object Window,
string Command,
string Args
)
Public Delegate Sub Command (
Window As Object,
Command As String,
Args As String
)
public delegate void Command(
Object^ Window,
String^ Command,
String^ Args
)
type Command =
delegate of
Window : Object *
Command : string *
Args : string -> unit
Parameters
- Window
- Type: SystemObject
Object - Command
- Type: SystemString
String - Args
- Type: SystemString
String
See Also