2using System.Threading.Tasks;
54 Task<bool>
Add(
string Source,
string Text);
63 Task<bool>
Add(
string Source,
string Text,
string Id);
81 Task<bool>
Update(
string Source,
string Text,
string Id);
86 event EventHandlerAsync<SourceEventArgs>
Added;
91 event EventHandlerAsync<SourceEventArgs>
Updated;
Contains a markdown document. This markdown document class supports original markdown,...
Interface for consolidators.
EventHandlerAsync Disposed
Event raised when consolidator has been disposed.
Task< bool > Update(string Source, MarkdownDocument Markdown, string Id)
Updates incoming markdown information.
Task< int > GetNrReportedSources()
Number of sources that have reported content.
object Tag
External tag object that can be tagged to the object by its owner.
EventHandlerAsync< SourceEventArgs > Updated
Event raised when content from a source has been updated.
Task< bool > Add(string Source, string Text, string Id)
Adds incoming markdown information.
Task< bool > Update(string Source, string Text, string Id)
Updates incoming markdown information.
Task< string[]> GetSources()
Consolidated sources.
Task< bool > Add(string Source, MarkdownDocument Markdown)
Adds incoming markdown information.
EventHandlerAsync< SourceEventArgs > Added
Event raised when content from a source has been added.
Task< bool > Add(string Source, MarkdownDocument Markdown, string Id)
Adds incoming markdown information.
Task< bool > Add(string Source, string Text)
Adds incoming markdown information.
delegate Task EventHandlerAsync(object Sender, EventArgs e)
Asynchronous version of EventArgs.