Merge pull request #1074 from esdrubal/bug18421
[mono.git] / mcs / class / Managed.Windows.Forms / Test / DummyAssembly / AnotherSerializable.cs
1 //
2 // AnotherSerializable.cs : Serializable Class used to test types from other
3 // assemblies for resources tests
4 //
5 // Author:
6 //      Gary Barnett (gary.barnett.mono@gmail.com)
7 // 
8 // Copyright (C) Gary Barnett (2012)
9 //
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 using System;
32 using System.Runtime.Serialization;
33 using System.IO;
34 using System.Runtime.Serialization.Formatters.Binary;
35
36 namespace DummyAssembly {
37         [SerializableAttribute]
38         public class AnotherSerializable : ISerializable {
39                 public string name;
40                 public string value;
41
42                 public AnotherSerializable ()
43                 {
44                 }
45
46                 public AnotherSerializable (string name, string value)
47                 {
48                         this.name = name;
49                         this.value = value;
50                 }
51
52                 public AnotherSerializable (SerializationInfo info, StreamingContext ctxt)
53                 {
54                         name = (string) info.GetValue ("sername", typeof (string));
55                         value = (String) info.GetValue ("servalue", typeof (string));
56                 }
57
58                 public AnotherSerializable (Stream stream)
59                 {
60                         BinaryFormatter bFormatter = new BinaryFormatter ();
61                         AnotherSerializable deser = (AnotherSerializable) bFormatter.Deserialize (stream);
62                         stream.Close ();
63
64                         name = deser.name;
65                         value = deser.value;
66                 }
67
68                 public void GetObjectData (SerializationInfo info, StreamingContext ctxt)
69                 {
70                         info.AddValue ("sername", name);
71                         info.AddValue ("servalue", value);
72                 }
73
74                 public override string ToString ()
75                 {
76                         return String.Format ("name={0};value={1}", this.name, this.value);
77                 }
78
79                 public override bool Equals (object obj)
80                 {
81                         AnotherSerializable o = obj as AnotherSerializable;
82                         if (o == null)
83                                 return false;
84                         return this.name.Equals (o.name) && this.value.Equals (o.value);
85                 }
86         }
87 }
88