Fixed help files.
This commit is contained in:
commit
b8f912cc79
1543 changed files with 395123 additions and 0 deletions
21
PluginFramework/IStorageProvider.cs
Normal file
21
PluginFramework/IStorageProvider.cs
Normal file
|
@ -0,0 +1,21 @@
|
|||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace ScrewTurn.Wiki.PluginFramework {
|
||||
|
||||
/// <summary>
|
||||
/// The base interface that all the Storage Providers must implement. All the Provider Type-specific interfaces inherit from this one or from a one, either directly or from a derived interface
|
||||
/// </summary>
|
||||
/// <remarks>This interface should not be implemented directly by a class.</remarks>
|
||||
public interface IStorageProviderV30 : IProviderV30 {
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value specifying whether the provider is read-only, i.e. it can only provide data and not store it.
|
||||
/// </summary>
|
||||
bool ReadOnly { get; }
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue