# ProgressInteractionOptions

- Kind: `class`
- Package: [Aspire.Hosting](/reference/api/csharp/aspire.hosting.md)
- Version: `13.5.3`
- Namespace: `Aspire.Hosting`
- Target framework: `net10.0`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/b5f143315ffb6968ea939a9978797a5b20e4c688/src/Aspire.Hosting/IInteractionService.cs)
- Inherits: [InteractionOptions](/reference/api/csharp/aspire.hosting/interactionoptions.md)

Options for configuring a progress interaction.

## Definition

```csharp
namespace Aspire.Hosting;

public class ProgressInteractionOptions
    : Aspire.Hosting.InteractionOptions
{
    // ...
}
```

## Constructors

- [ProgressInteractionOptions](/reference/api/csharp/aspire.hosting/progressinteractionoptions/constructors.md#constructor)

## Properties

- [Title](/reference/api/csharp/aspire.hosting/progressinteractionoptions/properties.md#title) : `string?` `get; set` -- Gets or sets the optional title of the progress dialog.
- [Work](/reference/api/csharp/aspire.hosting/progressinteractionoptions/properties.md#work) : `Func<ProgressContext, Task>` `get; set` -- Gets or sets an optional asynchronous work callback to execute while the progress dialog is displayed.
