# LibTmux.TmuxChaining.ToCommands

- **Module:** LibTmux.TmuxChaining
- **Package:** LibTmux
- **Language:** .NET
- **Kind:** method
- **Source:** https://github.com/libtmux/libtmux-dotnet/blob/320dc64f4b8b7815842471327a5e6b84a1499bf8/src/LibTmux/Chaining/TmuxChaining.Hooks.cs#L76
- **Page:** https://libtmux.org/en/dotnet/latest/reference/libtmux-tmuxchaining-tocommands/

```
LibTmux.TmuxChaining.ToCommands(request: SetHooksRequest, hooks: TmuxHooks) -> IReadOnlyList<TmuxCommand>
```

Returns every command a multi-entry hook request sends.

This request is several tmux commands rather than one, so it answers a
list. Running them one at a time is what the one-shot path does; adding
them to a chain is what this is for.

## Parameters

- `request` (SetHooksRequest): Which hook to set, and to what entries.
- `hooks` (TmuxHooks): The hooks handle whose scope holds it.

## Returns

The commands, in the order tmux must receive them.

## Raises

- `ArgumentNullException`: An argument is null.
