# PipelineSummary Properties

- Package: [Aspire.Hosting](/reference/api/csharp/aspire.hosting.md)
- Type: [PipelineSummary](/reference/api/csharp/aspire.hosting/pipelinesummary.md)
- Kind: `Properties`
- Members: `1`

Represents pipeline summary information to be displayed after pipeline completion. This is a general-purpose key-value collection that pipeline steps can contribute to.

## Items

- Name: `Items`
- Modifiers: `get`
- Returns: `ReadOnlyCollection<PipelineSummaryItem>`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/bd20f904cde09ecb9c9ae5116a6f13614bf2d7c2/src/Aspire.Hosting/Pipelines/PipelineSummary.cs#L71-L75)

Gets the items in the pipeline summary as a read-only collection. Items are displayed in the order they were added.

```csharp
public ReadOnlyCollection<PipelineSummaryItem> Items { get; }
```
