-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathWebDavMethod.cs
More file actions
25 lines (16 loc) · 796 Bytes
/
Copy pathWebDavMethod.cs
File metadata and controls
25 lines (16 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System.Net.Http;
namespace WebDav
{
internal static class WebDavMethod
{
public static readonly HttpMethod Propfind = new HttpMethod("PROPFIND");
public static readonly HttpMethod Proppatch = new HttpMethod("PROPPATCH");
public static readonly HttpMethod Mkcol = new HttpMethod("MKCOL");
public static readonly HttpMethod Copy = new HttpMethod("COPY");
public static readonly HttpMethod Move = new HttpMethod("MOVE");
public static readonly HttpMethod Lock = new HttpMethod("LOCK");
public static readonly HttpMethod Unlock = new HttpMethod("UNLOCK");
public static readonly HttpMethod Search = new HttpMethod("SEARCH");
public static readonly HttpMethod Report = new HttpMethod("REPORT");
}
}