Winify – Diff between revs 6 and 8
?pathlinks?
Rev 6 | Rev 8 | |||
---|---|---|---|---|
Line 1... | Line 1... | |||
1 | using System; |
1 | using System; |
|
2 | using System.Collections.Generic; |
2 | using System.Collections.Generic; |
|
3 | using System.Xml.Schema; |
3 | using System.Xml.Schema; |
|
Line 4... | Line 4... | |||
4 | |
4 | |
|
5 | namespace Winify.Connections |
5 | namespace Winify.Servers.Serialization |
|
6 | { |
6 | { |
|
7 | public class SerializationFailure : SerializationState |
7 | public class ServersSerializationFailure : ServersSerializationState |
|
8 | { |
8 | { |
|
Line 9... | Line 9... | |||
9 | #region Public Enums, Properties and Fields |
9 | #region Public Enums, Properties and Fields |
|
Line 14... | Line 14... | |||
14 | |
14 | |
|
Line 15... | Line 15... | |||
15 | #endregion |
15 | #endregion |
|
Line 16... | Line 16... | |||
16 | |
16 | |
|
17 | #region Constructors, Destructors and Finalizers |
17 | #region Constructors, Destructors and Finalizers |
|
18 | |
18 | |
|
19 | public SerializationFailure(Exception exception) |
19 | public ServersSerializationFailure(Exception exception) |
|
Line 20... | Line 20... | |||
20 | { |
20 | { |
|
21 | Exception = exception; |
21 | Exception = exception; |
|
22 | } |
22 | } |
|
23 | |
23 | |
|
24 | public SerializationFailure(Exception exception, List<ValidationEventArgs> validationEventArgs) : |
24 | public ServersSerializationFailure(Exception exception, List<ValidationEventArgs> validationEventArgs) : |