添加项目文件。
This commit is contained in:
14
TightWiki.Engine.Library/Interfaces/ICompletionHandler.cs
Normal file
14
TightWiki.Engine.Library/Interfaces/ICompletionHandler.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace TightWiki.Engine.Library.Interfaces
|
||||
{
|
||||
/// <summary>
|
||||
/// Handles wiki completion events.
|
||||
/// </summary>
|
||||
public interface ICompletionHandler
|
||||
{
|
||||
/// <summary>
|
||||
/// Handles wiki completion events. Is called when the wiki processing competes for a given page.
|
||||
/// </summary>
|
||||
/// <param name="state">Reference to the wiki state object</param>
|
||||
public void Complete(ITightEngineState state);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user