wasDAVClient – Blame information for rev 8

Subversion Repositories:
Rev:
Rev Author Line No. Line
8 office 1 ///////////////////////////////////////////////////////////////////////////
2 // Copyright (C) Wizardry and Steamworks 2017 - License: GNU GPLv3 //
3 // Please see: http://www.gnu.org/licenses/gpl.html for legal details, //
4 // rights of fair usage, the disclaimer and warranty conditions. //
5 ///////////////////////////////////////////////////////////////////////////
6  
7 using System;
8 using System.Collections.Generic;
9 using System.Linq;
10 using System.Text;
11 using System.Threading.Tasks;
12  
13 namespace wasDAVClient
14 {
15 public class Constants
16 {
17 public const string DIRECTORY_SEPARATOR = @"/";
18  
19 public struct DavDepth
20 {
21 public const string RESOURCE = @"0";
22 public const string MEMBERS = @"1";
23 public const string ALL = @"infinity";
24 }
25 }
26 }