Removing old build files. NAnt doesn't use them.
[mono.git] / mcs / class / System / System.Net / SocketAddress.cs
1 //
2 // System.Net.SocketAddress.cs
3 //
4 // Author:
5 //   Miguel de Icaza (miguel@ximian.com)
6 //
7 // (C) Ximian, Inc.  http://www.ximian.com
8 //
9
10 namespace System.Net {
11
12         public class SocketAddress {
13                 short family;
14                 int size;
15                 
16                 public SocketAddress (short family, int size)
17                 {
18                         this.family = family;
19                         this.size = size;
20                 }
21
22                 public SocketAddress (short family)
23                 {
24                         this.family = family;
25                 }
26                 
27                 public short Family {
28                         get {
29                                 return family;
30                         }
31                 }
32
33                 public int Size {
34                         get {
35                                 return size;
36                         }
37                 }
38
39                 public byte this [ int offset ] {
40                         get {
41                                 // FIXME; Unimplemented.
42                                 return 0;
43                         }
44
45                         set {
46                                 // FIXME: Unimplemented.
47                         }
48                 }
49         }
50 }