Request all server names which are known by the target server and which match a given host mask.
Possible Errors
| Exception Type | Condition |
|---|---|
| ArgumentException | If the masks are too long. |
//Request names from the current server
connection.Sender.Links();
//Request names of all servers ending in '.net' from the current server
connection.Sender.Links("*.edu" );
//Request names of all servers ending in '.edu' from '*.gnome.org' servers
connection.Sender.Links("*.edu", "*.gnome.org");
Sender Class | Sharkbite.Irc Namespace | Sender.Links Overload List | OnLinks