-
Notifications
You must be signed in to change notification settings - Fork 13
markdocdocumentation IDocResolver
Denis Akopyan edited this page Mar 6, 2022
·
1 revision
Interface for documentation resolvers
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph MarkDoc.Documentation
MarkDoc.Documentation.IDocResolver[[IDocResolver]]
class MarkDoc.Documentation.IDocResolver interfaceStyle;
end
| Returns | Name |
|---|---|
Task |
ResolveAsync(string path)Resolve xml documentation on given path
|
bool |
TryFindType(IType type, out IDocElement resultType) |
Interface for documentation resolvers
public abstract Task ResolveAsync(string path)| Type | Name | Description |
|---|---|---|
string |
path | Path to documentation |
Resolve xml documentation on given path
public abstract bool TryFindType(IType type, out IDocElement resultType)| Type | Name | Description |
|---|---|---|
IType |
type | |
out IDocElement
|
resultType |
Generated with MarkDoc