# LibTmux.TmuxChaining.ToCommands

- **Module:** LibTmux.TmuxChaining
- **Package:** LibTmux
- **Language:** .NET
- **Kind:** method
- **Source:** https://github.com/libtmux/libtmux-dotnet/blob/6656a563ec9e07ab52e0c3ac96f7704fc94cc0c0/src/LibTmux/Chaining/TmuxChaining.Hooks.cs#L149
- **Page:** https://libtmux.org/reference/dotnet/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.
