> For the complete documentation index, see [llms.txt](https://docs.radicalframework.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.radicalframework.com/presentation/boot-process/application-shutdown.md).

# Application shutdown

In order to shutdown an application built using Radical there are 3 main options.

**Canonical WPF way: `App.Current.Shutdown();`**

There is no reason to not use the default WPF standard way to shutdown the application, the only thing we cannot do in this case is to prevent the shutdown process to complete, we have no control over it.

When the `App.Current.Shutdown()` method is called the bootstrapper raises, via the message broker, the following event:

* `ApplicationShutdown`: that simply notifies to the application that is shutting down;

**2 way shutdown via `RadicalApplication.Shutdown();`**

If we need an option to cancel the application shutdown process we should use the `Shutdown()` method exposed by the `RadicalApplication`. In this way the following events are broadcasted/dispatched by the message broker:

1. `ApplicationShutdownRequested` is dispatched synchronously to the application and has a `Cancel` property that can be set to true to cancel the shutdown process;
2. `ApplicationShutdownCanceled` is broadcasted whenever the shutdown process is cancelled;
3. `ApplicationShutdown` is finally dispatched asynchronously to notify to the application that is shutting down;

To get an instance of the current `RadicalApplication` the following snippet can be used:

```
public partial class App : Application
{
    public App()
    {
        var radicalApplication = this.AddRadicalApplication<Presentation.MainView>();
    }
}
```

NOTE: the current `RadicalApplication` is not registered in the IoC container.

**2 way shutdown via `ApplicationShutdownRequest` message**

Exactly the same approach as above can be obtained broadcasting, via the message broker, the `ApplicationShutdownRequest` message, without the need to have a reference to the current radical application.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.radicalframework.com/presentation/boot-process/application-shutdown.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
