Commit new files, almost compiles with /nostdlib
[mono.git] / mcs / class / corlib / System.Runtime.Serialization / SerializationInfo.cs
1 //
2 // System.Runtime.Serialization.SerializationInfo.cs
3 //
4 // Author:
5 //   Miguel de Icaza (miguel@ximian.com)
6 //
7 // (C) Ximian, Inc.  http://www.ximian.com
8 //
9 // TODO: This is just a skeleton to get corlib to compile.
10 //
11
12 namespace System.Runtime.Serialization {
13
14         public sealed class SerializationInfo {
15                 Type type;
16                 IFormatterConverter converter;
17                 
18                 public SerializationInfo (Type type, IFormatterConverter converter)
19                 {
20                         this.type = type;
21                         this.converter = converter;
22                 }
23                 
24                 public string AssemblyName {
25                         get {
26                                 return "TODO: IMPLEMENT ME";
27                         }
28                         
29                         set {
30                         }
31                 }
32                 
33                 public string FullTypeName {
34                         get {
35                                 return "TODO: IMLEMENT ME";
36                         }
37                         
38                         set {
39                         }
40                 }
41                 
42                 
43                 public int MemberCount {
44                         get {
45                                 return 0;
46                         }
47                 }
48         }
49 }