WebSocketReceiveResult.cs 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. //
  2. // WebSocketReceiveResult.cs
  3. //
  4. // Authors:
  5. // Jérémie Laval <jeremie dot laval at xamarin dot com>
  6. //
  7. // Copyright 2013 Xamarin Inc (http://www.xamarin.com).
  8. //
  9. // Permission is hereby granted, free of charge, to any person obtaining a copy
  10. // of this software and associated documentation files (the "Software"), to deal
  11. // in the Software without restriction, including without limitation the rights
  12. // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  13. // copies of the Software, and to permit persons to whom the Software is
  14. // furnished to do so, subject to the following conditions:
  15. //
  16. // The above copyright notice and this permission notice shall be included in
  17. // all copies or substantial portions of the Software.
  18. //
  19. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  20. // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  21. // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  22. // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  23. // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  24. // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  25. // THE SOFTWARE.
  26. //
  27. //
  28. #if NET_4_5
  29. using System;
  30. using System.Security.Principal;
  31. using System.Runtime.CompilerServices;
  32. namespace System.Net.WebSockets
  33. {
  34. public class WebSocketReceiveResult
  35. {
  36. [MonoTODO]
  37. public WebSocketReceiveResult (int count, WebSocketMessageType messageType, bool endOfMessage)
  38. {
  39. throw new NotImplementedException ();
  40. }
  41. [MonoTODO]
  42. public WebSocketReceiveResult (int count,
  43. WebSocketMessageType messageType,
  44. bool endOfMessage,
  45. WebSocketCloseStatus? closeStatus,
  46. string closeStatusDescription)
  47. {
  48. throw new NotImplementedException ();
  49. }
  50. public WebSocketCloseStatus? CloseStatus {
  51. get;
  52. private set;
  53. }
  54. public string CloseStatusDescription {
  55. get;
  56. private set;
  57. }
  58. public int Count {
  59. get;
  60. private set;
  61. }
  62. public bool EndOfMessage {
  63. get;
  64. private set;
  65. }
  66. public WebSocketMessageType MessageType {
  67. get;
  68. private set;
  69. }
  70. }
  71. }
  72. #endif