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