Delegate gets called when the command is called as a $identifier in a script
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 Identifier(
Object Window,
string Command,
string[] Args,
out string Return
)
Public Delegate Sub Identifier (
Window As Object,
Command As String,
Args As String(),
<OutAttribute> ByRef Return As String
)
public delegate void Identifier(
Object^ Window,
String^ Command,
array<String^>^ Args,
[OutAttribute] String^% Return
)
type Identifier =
delegate of
Window : Object *
Command : string *
Args : string[] *
Return : string byref -> unit
Parameters
- Window
- Type: SystemObject
Object - Command
- Type: SystemString
String - Args
- Type: SystemString
String - Return
- Type: SystemString
String
See Also