IWebDAVStore.cs 579 B

123456789101112131415161718
  1. namespace Mtp2Dav.WebDAVSharp.Server._1d2086a502937936ebc6bfe19cfa15d855be1c31.Stores
  2. {
  3. /// <summary>
  4. /// This interface must be implemented by classes that serve as stores of collections and
  5. /// documents for the
  6. /// <see cref="WebDavServer" />.
  7. /// </summary>
  8. public interface IWebDavStore
  9. {
  10. /// <summary>
  11. /// Gets the root collection of this <see cref="IWebDavStore" />.
  12. /// </summary>
  13. /// <value>
  14. /// The root.
  15. /// </value>
  16. IWebDavStoreCollection Root { get; }
  17. }
  18. }