-
Notifications
You must be signed in to change notification settings - Fork 13
markdoccore IView
Denis Akopyan edited this page Mar 6, 2022
·
1 revision
Interface for views
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph MarkDoc.Core
MarkDoc.Core.IView[[IView]]
class MarkDoc.Core.IView interfaceStyle;
end
| Returns | Name |
|---|---|
IViewModel |
GetViewModel()Retrieves the views view models |
Task |
SetArguments(IEnumerable<string> arguments) |
Task |
SetNamedArgumentsAsync(IReadOnlyDictionary<string, string> arguments) |
Interface for views
public abstract IViewModel GetViewModel()Retrieves the views view models
View model instance
public virtual async Task SetArguments(IEnumerable<string> arguments)| Type | Name | Description |
|---|---|---|
IEnumerable<string> |
arguments |
public abstract Task SetNamedArgumentsAsync(IReadOnlyDictionary<string, string> arguments)| Type | Name | Description |
|---|---|---|
IReadOnlyDictionary<string, string> |
arguments |
Generated with MarkDoc