Skip to content
Docs Try Aspire

PipelineSummaryItem Constructors

Class Constructors 1 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)
{
// ...
}
}
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.