# SiloStatus

Package: [Microsoft.Orleans.Core](/orleans/docs/api/csharp/microsoft.orleans.core/) 10.0.0

[NuGet package](https://www.nuget.org/packages/Microsoft.Orleans.Core)

```csharp
[Orleans.GenerateSerializer]
public enum SiloStatus
```

Possible statuses of a silo.

## Fields

- `None` = `0` - No known status.
- `Created` = `1` - This silo was just created, but not started yet.
- `Joining` = `2` - This silo has just started, but not ready yet. It is attempting to join the cluster.
- `Active` = `3` - This silo is alive and functional.
- `ShuttingDown` = `4` - This silo is shutting itself down.
- `Stopping` = `5` - This silo is stopping itself down.
- `Dead` = `6` - This silo is deactivated/considered to be dead.
