-
Notifications
You must be signed in to change notification settings - Fork 13
markdoccore IProcess
Denis Akopyan edited this page Mar 6, 2022
·
1 revision
Interface for processes
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph MarkDoc.Core
MarkDoc.Core.IProcess[[IProcess]]
class MarkDoc.Core.IProcess interfaceStyle;
end
Type | Name | Methods |
---|---|---|
string |
Name Progress name |
get |
ProcessState |
State State of the given process |
get; set |
Interface for processes
ProcessState
public abstract string Name { get }
Progress name
public abstract ProcessState State { get; set }
State of the given process
public event EventHandler StateChanged
Invoked whenever the IProcess.State is changed
Generated with MarkDoc