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.
Add(string, string) Section titled Add(string, string) 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) { // ... }}Parameters
key string The key or label for the item (e.g., "Namespace", "URL"). value string The plain-text value for the item. Add(string, MarkdownString) Section titled Add(string, MarkdownString) 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) { // ... }}Parameters
key string The key or label for the item (e.g., "Namespace", "URL"). value MarkdownString The Markdown-formatted value for the item.