Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 727 Bytes

Summary.Roslyn.CSharp.InlineInheritDocPipe.md

File metadata and controls

19 lines (15 loc) · 727 Bytes
public class InlineInheritDocPipe : IPipe<Doc, Doc>

A IPipe<I, O> that inlines <inheritdoc/> tags.

Under the hood, the process of inlining works as follows:
- each member in the Doc is analyzed - if this member contains an <inheritdoc/> element, it's removed from the member comment - then, the inherited documentation (either from the base type or from the specified cref) is added to the member comment.

Methods

public Task<Doc> Run(Doc doc)