# LibTmux.TmuxOptions

- **Module:** LibTmux
- **Package:** LibTmux
- **Language:** .NET
- **Kind:** class
- **Source:** https://github.com/libtmux/libtmux-dotnet/blob/320dc64f4b8b7815842471327a5e6b84a1499bf8/src/LibTmux/Options/TmuxOptions.cs#L13
- **Page:** https://libtmux.org/en/dotnet/latest/reference/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

- `Scope` (property): Gets the scope these options are read and written in by default.
- `GetAsync` (method): Reads one option.
- `GetAllAsync` (method): Reads every option in the scope.
- `SetAsync` (method): Sets one option.
- `UnsetAsync` (method): Unsets one option, returning it to what it inherits.
