> ## Documentation Index
> Fetch the complete documentation index at: https://developer.sanas.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# ShutdownSDKResult

`ShutdownSDKResult` is returned by `RemoteSDK.Shutdown()` and indicates whether the SDK was shut down and all connections were closed successfully.

## Values

| Enum              | Description                                    |
| ----------------- | ---------------------------------------------- |
| `SUCCESS`         | SDK shut down and all resources released       |
| `NOT_INITIALIZED` | SDK was not initialized (nothing to shut down) |
| `FAILED`          | General failure                                |

## See Also

<CardGroup cols={2}>
  <Card title="RemoteSDK" icon="server" href="/API-Reference/Reference/Core-Classes/RemoteSDK">
    The `Shutdown()` method that returns this enum
  </Card>

  <Card title="InitSDKResult" icon="circle-check" href="/API-Reference/Reference/Result-Enums/InitSDKResult">
    Result enum for the corresponding `Initialize()` call
  </Card>
</CardGroup>
