Json.NET
Code Coverage Statistics for Source File

Newtonsoft.Json.Tests\TestObjects\SerializationEventTestObject.cs

Symbol Coverage: 100.00% (19 of 19)

Branch Coverage: 100.00% (18 of 18)

Cyclomatic Complexity Avg: 1.00 Max:1

Code Lines: 19


L V Source
1
#region License
2
// Copyright (c) 2007 James Newton-King
3
//
4
// Permission is hereby granted, free of charge, to any person
5
// obtaining a copy of this software and associated documentation
6
// files (the "Software"), to deal in the Software without
7
// restriction, including without limitation the rights to use,
8
// copy, modify, merge, publish, distribute, sublicense, and/or sell
9
// copies of the Software, and to permit persons to whom the
10
// Software is furnished to do so, subject to the following
11
// conditions:
12
//
13
// The above copyright notice and this permission notice shall be
14
// included in all copies or substantial portions of the Software.
15
//
16
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
18
// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
20
// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
21
// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
23
// OTHER DEALINGS IN THE SOFTWARE.
24
#endregion
25

  
26
#if !PocketPC && !NET20
27
using System;
28
using System.Linq;
29
using System.Runtime.Serialization;
30
using System.Text;
31
using Newtonsoft.Json.Serialization;
32

  
33
namespace Newtonsoft.Json.Tests.TestObjects
34
{
35
  public class SerializationEventTestObject
36
  {
37
    // This member is serialized and deserialized with no change.
38
    public int Member1 { get; set; }
39

  
40
    // The value of this field is set and reset during and 
41
    // after serialization.
42
    public string Member2 { get; set; }
43

  
44
    // This field is not serialized. The OnDeserializedAttribute 
45
    // is used to set the member value after serialization.
46
    [JsonIgnore]
47
    public string Member3 { get; set; }
48

  
49
    // This field is set to null, but populated after deserialization.
50
    public string Member4 { get; set; }
51

  
52
    // This field is set to null, but populated after error.
53
    [JsonIgnore]
54
    public string Member5 { get; set; }
55

  
56
    // Getting or setting this field will throw an error.
57
    public string Member6
58
    {
59
 2
      get { throw new Exception("Member5 get error!"); }
60
 1
      set { throw new Exception("Member5 set error!"); }
61
    }
62

  
63
 4
    public SerializationEventTestObject()
64
    {
65
 4
      Member1 = 11;
66
 4
      Member2 = "Hello World!";
67
 4
      Member3 = "This is a nonserialized value";
68
 4
      Member4 = null;
69
 4
    }
70

  
71
    [OnSerializing]
72
    internal void OnSerializingMethod(StreamingContext context)
73
    {
74
 2
      Member2 = "This value went into the data file during serialization.";
75
 2
    }
76

  
77
    [OnSerialized]
78
    internal void OnSerializedMethod(StreamingContext context)
79
    {
80
 2
      Member2 = "This value was reset after serialization.";
81
 2
    }
82

  
83
    [OnDeserializing]
84
    internal void OnDeserializingMethod(StreamingContext context)
85
    {
86
 2
      Member3 = "This value was set during deserialization";
87
 2
    }
88

  
89
    [OnDeserialized]
90
    internal void OnDeserializedMethod(StreamingContext context)
91
    {
92
 2
      Member4 = "This value was set after deserialization.";
93
 2
    }
94

  
95
    [OnError]
96
    internal void OnErrorMethod(StreamingContext context, ErrorContext errorContext)
97
    {
98
 3
      Member5 = "Error message for member " + errorContext.Member + " = " + errorContext.Error.Message;
99
 3
      errorContext.Handled = true;
100
 3
    }
101
  }
102
}
103
#endif