# PipelineSummaryItem Constructors

- Package: [Aspire.Hosting](/reference/api/csharp/aspire.hosting.md)
- Type: [PipelineSummaryItem](/reference/api/csharp/aspire.hosting/pipelinesummaryitem.md)
- Kind: `Constructors`
- Members: `1`

Represents a single item in a [PipelineSummary](/reference/api/csharp/aspire.hosting/pipelinesummary.md), consisting of a key, a value, and a flag indicating whether the value contains Markdown formatting.

## PipelineSummaryItem(string, string, bool)

- Name: `Constructor(string, string, bool)`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/bd20f904cde09ecb9c9ae5116a6f13614bf2d7c2/src/Aspire.Hosting/Pipelines/PipelineSummaryItem.cs#L16-L32)

Represents a single item in a [PipelineSummary](/reference/api/csharp/aspire.hosting/pipelinesummary.md), consisting of a key, a value, and a flag indicating whether the value contains Markdown formatting.

```csharp
public sealed class PipelineSummaryItem
{
    public PipelineSummaryItem(
        string key,
        string value,
        bool enableMarkdown)
    {
        // ...
    }
}
```

## Parameters

- `key` (`string`)
  The key or label for the summary item.
- `value` (`string`)
  The string value for the summary item.
- `enableMarkdown` (`bool`)
  Whether the `value` contains Markdown formatting.
