WebDAVStoreDocumentBase.cs 1.0 KB

12345678910111213141516171819202122232425
  1. using System;
  2. namespace WebDAVSharp.Server.Stores.BaseClasses
  3. {
  4. /// <summary>
  5. /// This is the base class for <see cref="IWebDavStoreItem" /> implementations.
  6. /// </summary>
  7. public class WebDavStoreDocumentBase : WebDavStoreItemBase
  8. {
  9. /// <summary>
  10. /// Initializes a new instance of the <see cref="WebDavStoreItemBase" /> class.
  11. /// </summary>
  12. /// <param name="parentCollection">
  13. /// The parent <see cref="IWebDavStoreCollection" /> that contains this
  14. /// <see cref="IWebDavStoreItem" /> implementation.
  15. /// </param>
  16. /// <param name="name">The name of this <see cref="IWebDavStoreItem" /></param>
  17. /// <param name="store"></param>
  18. /// <exception cref="ArgumentNullException"><paramref name="name" /> is <c>null</c>.</exception>
  19. protected WebDavStoreDocumentBase(IWebDavStoreCollection parentCollection, string name, IWebDavStore store)
  20. : base(parentCollection, name, store)
  21. {
  22. }
  23. }
  24. }