Socket.cs 281 B

123456789101112131415161718192021
  1. //
  2. // System.Net.Sockets.Socket.cs
  3. //
  4. // Author:
  5. // Andrew Sutton
  6. //
  7. // (C) Andrew Sutton
  8. //
  9. using System;
  10. using System.Net;
  11. namespace System.Net.Sockets
  12. {
  13. public class Socket : IDisposable
  14. {
  15. public Socket (AddressFamily af, SocketType type, ProtocolType prot)
  16. {
  17. }
  18. }
  19. }