Class1.cs 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. using CommonLang.Net;
  2. using CommonNetwork.Net;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. namespace CommonNetwork_UDP
  8. {
  9. public class UDPSession : INetSession
  10. {
  11. public string URL
  12. {
  13. get { throw new NotImplementedException(); }
  14. }
  15. public System.Net.IPEndPoint RemoteAddress
  16. {
  17. get { throw new NotImplementedException(); }
  18. }
  19. public long TotalSentBytes
  20. {
  21. get { throw new NotImplementedException(); }
  22. }
  23. public long TotalRecvBytes
  24. {
  25. get { throw new NotImplementedException(); }
  26. }
  27. public long TotalSentPackages
  28. {
  29. get { throw new NotImplementedException(); }
  30. }
  31. public long TotalRecvPackages
  32. {
  33. get { throw new NotImplementedException(); }
  34. }
  35. public bool IsConnected
  36. {
  37. get { throw new NotImplementedException(); }
  38. }
  39. public bool Open(string url, INetPackageCodec codec, INetSessionListener listener)
  40. {
  41. throw new NotImplementedException();
  42. }
  43. public bool Close()
  44. {
  45. throw new NotImplementedException();
  46. }
  47. public void Send(object data)
  48. {
  49. throw new NotImplementedException();
  50. }
  51. public void SendResponse(CommonLang.Protocol.IMessage rsponse, int requestMessageID)
  52. {
  53. throw new NotImplementedException();
  54. }
  55. public event OnSessionOpenedHandler OnSessionOpened;
  56. public event OnSessionClosedHandler OnSessionClosed;
  57. public event OnMessageReceivedHandler OnMessageReceived;
  58. public event OnMessageSentHandler OnMessageSent;
  59. public event OnErrorHandler OnError;
  60. public void Dispose()
  61. {
  62. throw new NotImplementedException();
  63. }
  64. public object GetAttribute(string key)
  65. {
  66. throw new NotImplementedException();
  67. }
  68. public void SetAttribute(string key, object value)
  69. {
  70. throw new NotImplementedException();
  71. }
  72. public void RemoveAttribute(string key)
  73. {
  74. throw new NotImplementedException();
  75. }
  76. public bool ContainsAttribute(string key)
  77. {
  78. throw new NotImplementedException();
  79. }
  80. public ICollection<string> GetAttributeKeys()
  81. {
  82. throw new NotImplementedException();
  83. }
  84. }
  85. }