PipelineSummary Methods
ClassMethods2 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
keystringThe key or label for the item (e.g., "Namespace", "URL").valuestringThe 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
keystringThe key or label for the item (e.g., "Namespace", "URL").valueMarkdownStringThe Markdown-formatted value for the item.