using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Sphorium.WebDAV.Server.Framework.BaseClasses;
namespace Everest.CmsServices.Rfc.WebDAV{
public class DavOptions : DavOptionsBase
{
/// <summary>
/// Dav HttpRequest OPTIONS Framework Base Class
/// </summary>
public DavOptions()
{
this.ProcessDavRequest += new DavProcessEventHandler(DavOptions_ProcessDavRequest);
}
private void DavOptions_ProcessDavRequest(object sender, EventArgs e)
{
//Provide support for all
base.SupportedHttpMethods = HttpMethods.Delete | HttpMethods.Get | HttpMethods.Options | HttpMethods.PropFind | HttpMethods.Put;
}
}
}
|