Definition at line 24 of file SocketAddress.cs.
25 {
26 get
27 {
28 if (offset < 0 || offset >=
Size)
29 {
30 throw new IndexOutOfRangeException();
31 }
33 }
34 set
35 {
36 if (offset < 0 || offset >=
Size)
37 {
38 throw new IndexOutOfRangeException();
39 }
41 {
43 }
45 }
46 }