# LibTmux.TmuxEnvironmentEntry

- **Module:** LibTmux
- **Package:** LibTmux
- **Language:** .NET
- **Kind:** struct
- **Source:** https://github.com/libtmux/libtmux-dotnet/blob/6656a563ec9e07ab52e0c3ac96f7704fc94cc0c0/src/LibTmux/Environment/TmuxEnvironmentOperations.cs#L12
- **Page:** https://libtmux.org/reference/dotnet/libtmux-tmuxenvironmententry/

One variable in a tmux environment.

tmux keeps three states, not two. A variable can hold a value, be absent, or
be marked removed, which tells tmux to strip it from the environment of
panes it spawns even though the parent process has it.

## Members

- `TmuxEnvironmentEntry` (method) — Initializes one environment variable.
- `Name` (property) — Gets the variable name.
- `Value` (property) — Gets the value, or null when the variable is marked removed.
- `IsRemoved` (property) — Gets whether tmux strips this variable from new panes.
