Skip to content
DocsTry Aspire
DocsTry

PipelineSummaryItem Constructors

ClassConstructors1 member
Represents a single item in a PipelineSummary, consisting of a key, a value, and a flag indicating whether the value contains Markdown formatting.
Constructor(string, string, bool)Section titled Constructor(string, string, bool)
Represents a single item in a PipelineSummary, consisting of a key, a value, and a flag indicating whether the value contains Markdown formatting.
public sealed class PipelineSummaryItem
{
public PipelineSummaryItem(
string key,
string value,
bool enableMarkdown)
{
// ...
}
}
keystringThe key or label for the summary item.
valuestringThe string value for the summary item.
enableMarkdownboolWhether the value contains Markdown formatting.