# PublishCompletionOptions Properties

- Package: [Aspire.Hosting](/reference/api/csharp/aspire.hosting.md)
- Type: [PublishCompletionOptions](/reference/api/csharp/aspire.hosting/publishcompletionoptions.md)
- Kind: `Properties`
- Members: `3`

Options for completing the publishing process.

## CompletionMessage

- Name: `CompletionMessage`
- Modifiers: `nullable` `get; set`
- Returns: `string?`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/bd20f904cde09ecb9c9ae5116a6f13614bf2d7c2/src/Aspire.Hosting/Pipelines/PublishCompletionOptions.cs)

Gets or sets the completion message of the publishing process.

```csharp
public string? CompletionMessage { get; set; }
```

## CompletionState

- Name: `CompletionState`
- Modifiers: `nullable` `get; set`
- Returns: [CompletionState?](/reference/api/csharp/aspire.hosting/completionstate.md)
- Source: [GitHub](https://github.com/microsoft/aspire/blob/bd20f904cde09ecb9c9ae5116a6f13614bf2d7c2/src/Aspire.Hosting/Pipelines/PublishCompletionOptions.cs)

Gets or sets the completion state of the publishing process. When `null`, the state is automatically aggregated from all steps.

```csharp
public CompletionState? CompletionState { get; set; }
```

## PipelineSummary

- Name: `PipelineSummary`
- Modifiers: `nullable` `get; set`
- Returns: [IReadOnlyList<PipelineSummaryItem>](/reference/api/csharp/aspire.hosting/pipelinesummaryitem.md)
- Source: [GitHub](https://github.com/microsoft/aspire/blob/bd20f904cde09ecb9c9ae5116a6f13614bf2d7c2/src/Aspire.Hosting/Pipelines/PublishCompletionOptions.cs)

Gets or sets optional pipeline summary information to display after completion. The list preserves insertion order. Each item carries its own Markdown formatting flag.

```csharp
public IReadOnlyList<PipelineSummaryItem>? PipelineSummary { get; set; }
```
