using System; using System.Collections.Generic; using System.Web; using WebDAVSharp.Server.Adapters; using WebDAVSharp.Server.Stores; namespace WebDAVSharp.Server.MethodHandlers { /// /// This class implements the OPTIONS HTTP method for WebDAV#. /// internal class WebDavOptionsMethodHandler : WebDavMethodHandlerBase, IWebDavMethodHandler { /// /// Gets the collection of the names of the HTTP methods handled by this instance. /// public IEnumerable Names { get { return new[] { "OPTIONS" }; } } /// /// Processes the request. /// /// The through which the request came in from the client. /// The /// object containing both the request and response /// objects to use. /// The that the is hosting. public void ProcessRequest(WebDavServer server, HttpContext context, IWebDavStore store, String fileName) { List verbsAllowed = new List { "OPTIONS", "TRACE", "GET", "HEAD", "POST", "COPY", "PROPFIND", "LOCK", "UNLOCK" }; List verbsPublic = new List { "OPTIONS", "GET", "HEAD", "PROPFIND", "PROPPATCH", "MKCOL", "PUT", "DELETE", "COPY", "MOVE", "LOCK", "UNLOCK" }; foreach (string verb in verbsAllowed) context.Response.AppendHeader("Allow", verb); foreach (string verb in verbsPublic) context.Response.AppendHeader("Public", verb); //tell MS Office specifically: yes, this is a WebDAV Server, and yes, we want you to use WebDAV to edit documents //see. https://msdn.microsoft.com/en-us/library/cc250217.aspx //and: http://stackoverflow.com/questions/40460818/ms-office-opens-documents-readonly-with-webdav // or: https://answers.microsoft.com/en-us/msoffice/forum/msoffice_word-mso_winother/office-opens-documents-readonly-with-webdav/a1a6dbb6-4041-41a6-9701-8c70343da6ce context.Response.AppendHeader("MS-Author-Via", "DAV"); // Sends 200 OK context.SendSimpleResponse(); } } }