wasDAVClient – Diff between revs 3 and 5

Subversion Repositories:
Rev:
Only display areas with differencesIgnore whitespace
Rev 3 Rev 5
-   1 ///////////////////////////////////////////////////////////////////////////
-   2 // Copyright (C) Wizardry and Steamworks 2016 - 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 // Originally based on: WebDAV .NET client by Sergey Kazantsev
-   7  
1 using System; 8 using System;
2 using System.Runtime.Serialization; 9 using System.Runtime.Serialization;
3   10  
4 namespace wasDAVClient.Helpers 11 namespace wasDAVClient.Helpers
5 { 12 {
6 public class wasDAVConflictException : wasDAVException 13 public class wasDAVConflictException : wasDAVException
7 { 14 {
8 public wasDAVConflictException() 15 public wasDAVConflictException()
9 { 16 {
10 } 17 }
11   18  
12 public wasDAVConflictException(string message) 19 public wasDAVConflictException(string message)
13 : base(message) 20 : base(message)
14 { 21 {
15 } 22 }
16   23  
17 public wasDAVConflictException(string message, int hr) 24 public wasDAVConflictException(string message, int hr)
18 : base(message, hr) 25 : base(message, hr)
19 { 26 {
20 } 27 }
21   28  
22 public wasDAVConflictException(string message, Exception innerException) 29 public wasDAVConflictException(string message, Exception innerException)
23 : base(message, innerException) 30 : base(message, innerException)
24 { 31 {
25 } 32 }
26   33  
27 public wasDAVConflictException(int httpCode, string message, Exception innerException) 34 public wasDAVConflictException(int httpCode, string message, Exception innerException)
28 : base(httpCode, message, innerException) 35 : base(httpCode, message, innerException)
29 { 36 {
30 } 37 }
31   38  
32 public wasDAVConflictException(int httpCode, string message) 39 public wasDAVConflictException(int httpCode, string message)
33 : base(httpCode, message) 40 : base(httpCode, message)
34 { 41 {
35 } 42 }
36   43  
37 public wasDAVConflictException(int httpCode, string message, int hr) 44 public wasDAVConflictException(int httpCode, string message, int hr)
38 : base(httpCode, message, hr) 45 : base(httpCode, message, hr)
39 { 46 {
40 } 47 }
41   48  
42 protected wasDAVConflictException(SerializationInfo info, StreamingContext context) 49 protected wasDAVConflictException(SerializationInfo info, StreamingContext context)
43 : base(info, context) 50 : base(info, context)
44 { 51 {
45 } 52 }
46 } 53 }
47 } 54 }
48   55  
49
Generated by GNU Enscript 1.6.5.90.
56
Generated by GNU Enscript 1.6.5.90.
50   57  
51   58  
52   59