# LibTmux.TmuxOptions

- **Module:** LibTmux
- **Package:** LibTmux
- **Language:** .NET
- **Kind:** class
- **Source:** https://github.com/libtmux/libtmux-dotnet/blob/6656a563ec9e07ab52e0c3ac96f7704fc94cc0c0/src/LibTmux/Options/TmuxOptions.cs#L13
- **Page:** https://libtmux.org/reference/dotnet/libtmux-tmuxoptions/

The options of one server, session, window, or pane.

tmux keeps four option tables and picks between them with a flag, so the
scope is fixed when the accessor is reached rather than passed to every
call. A request may still name another scope, which is what makes a
window-scoped read from a session possible without a second accessor.

## Members

- `DoubleEscapesDollar` (method) — Reports whether a tmux escapes a dollar sign twice in an option value.
- `TmuxOptions` (method)
- `Generation` (property) — Gets the server generation this table was reached through.
- `Scope` (property) — Gets the scope these options are read and written in by default.
- `BuildGetArguments` (method) — Builds the arguments a named read sends.
- `GetAsync` (method) — Reads one option.
- `BuildGetAllArguments` (method) — Builds the arguments a whole-scope read sends.
- `GetAllAsync` (method) — Reads every option in the scope.
- `BuildSetArguments` (method) — Builds the arguments a set request sends.
- `SetAsync` (method) — Sets one option.
- `BuildUnsetArguments` (method) — Builds the arguments an unset request sends.
- `UnsetAsync` (method) — Unsets one option, returning it to what it inherits.
