123456789101112131415161718 |
- namespace Mtp2Dav.WebDAVSharp.Server._1d2086a502937936ebc6bfe19cfa15d855be1c31.Stores
- {
- /// <summary>
- /// This interface must be implemented by classes that serve as stores of collections and
- /// documents for the
- /// <see cref="WebDavServer" />.
- /// </summary>
- public interface IWebDavStore
- {
- /// <summary>
- /// Gets the root collection of this <see cref="IWebDavStore" />.
- /// </summary>
- /// <value>
- /// The root.
- /// </value>
- IWebDavStoreCollection Root { get; }
- }
- }
|