-
Notifications
You must be signed in to change notification settings - Fork 13
markdocdocumentationtags ITag
Denis Akopyan edited this page Mar 6, 2022
·
1 revision
Interface for documentation tags
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph MarkDoc.Documentation.Tags
MarkDoc.Documentation.Tags.ITag[[ITag]]
class MarkDoc.Documentation.Tags.ITag interfaceStyle;
end
Type | Name | Methods |
---|---|---|
IReadOnlyCollection <IContent > |
Content Tag inner content |
get |
string |
Reference Tag reference |
get |
TagType |
Type Tag type |
get |
Interface for documentation tags
TagType
public abstract TagType Type { get }
Tag type
public abstract string Reference { get }
Tag reference
Either holds cref or name
public abstract IReadOnlyCollection Content { get }
Tag inner content
Generated with MarkDoc