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 DavUnlock : DavUnlockBase
{
public DavUnlock()
{
this.ProcessDavRequest += new DavProcessEventHandler(DavUnlock_ProcessDavRequest);
}
private void DavUnlock_ProcessDavRequest(object sender, EventArgs e)
{
}
}
}
|