# PipelineSummaryItem

- Kind: `class`
- Package: [Aspire.Hosting](/reference/api/csharp/aspire.hosting.md)
- Version: `13.3.0`
- Namespace: `Aspire.Hosting.Pipelines`
- Target framework: `net8.0`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/bd20f904cde09ecb9c9ae5116a6f13614bf2d7c2/src/Aspire.Hosting/Pipelines/PipelineSummaryItem.cs)

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.

## Definition

```csharp
namespace Aspire.Hosting.Pipelines;

public sealed class PipelineSummaryItem
{
    // ...
}
```

## Constructors

- [PipelineSummaryItem(string, string, bool)](/reference/api/csharp/aspire.hosting/pipelinesummaryitem/constructors.md#constructor-string-string-bool) -- 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.

## Properties

- [EnableMarkdown](/reference/api/csharp/aspire.hosting/pipelinesummaryitem/properties.md#enablemarkdown) : `bool` `get` -- Gets a value indicating whether [PipelineSummaryItem.Value](/reference/api/csharp/aspire.hosting/pipelinesummaryitem/properties.md#value) contains Markdown formatting that should be rendered by the CLI output.
- [Key](/reference/api/csharp/aspire.hosting/pipelinesummaryitem/properties.md#key) : `string` `get` -- Gets the key or label for the summary item (e.g., "Namespace", "URL").
- [Value](/reference/api/csharp/aspire.hosting/pipelinesummaryitem/properties.md#value) : `string` `get` -- Gets the string value for the summary item.
