# PipelineSummaryItem Properties

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

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.

## EnableMarkdown

- Name: `EnableMarkdown`
- Modifiers: `get`
- Returns: `bool`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/bd20f904cde09ecb9c9ae5116a6f13614bf2d7c2/src/Aspire.Hosting/Pipelines/PipelineSummaryItem.cs#L32)

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.

```csharp
public bool EnableMarkdown { get; }
```

## Key

- Name: `Key`
- Modifiers: `get`
- Returns: `string`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/bd20f904cde09ecb9c9ae5116a6f13614bf2d7c2/src/Aspire.Hosting/Pipelines/PipelineSummaryItem.cs#L21)

Gets the key or label for the summary item (e.g., "Namespace", "URL").

```csharp
public string Key { get; }
```

## Value

- Name: `Value`
- Modifiers: `get`
- Returns: `string`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/bd20f904cde09ecb9c9ae5116a6f13614bf2d7c2/src/Aspire.Hosting/Pipelines/PipelineSummaryItem.cs#L26)

Gets the string value for the summary item.

```csharp
public string Value { get; }
```
