Skip to content
Docs Try Aspire

PipelineSummary Methods

Class Methods 2 members
Represents pipeline summary information to be displayed after pipeline completion. This is a general-purpose key-value collection that pipeline steps can contribute to.
Adds a key-value pair to the pipeline summary with a plain-text value.
public sealed class PipelineSummary
{
public void Add(
string key,
string value)
{
// ...
}
}
key string The key or label for the item (e.g., "Namespace", "URL").
value string The plain-text value for the item.
Adds a key-value pair to the pipeline summary with a Markdown-formatted value.
public sealed class PipelineSummary
{
public void Add(
string key,
MarkdownString value)
{
// ...
}
}
key string The key or label for the item (e.g., "Namespace", "URL").
value MarkdownString The Markdown-formatted value for the item.