| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- //
- // System.Net.SocketAddress.cs
- //
- // Author:
- // Miguel de Icaza ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- namespace System.Net {
- public class SocketAddress {
- short family;
- int size;
-
- public SocketAddress (short family, int size)
- {
- this.family = family;
- this.size = size;
- }
- public SocketAddress (short family)
- {
- this.family = family;
- }
-
- public short Family {
- get {
- return family;
- }
- }
- public int Size {
- get {
- return size;
- }
- }
- public byte this [ int offset ] {
- get {
- // FIXME; Unimplemented.
- return 0;
- }
- set {
- // FIXME: Unimplemented.
- }
- }
- }
- }
|