WebSocketConnectEventArgs.cs 862 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using MediaBrowser.Model.Services;
  3. namespace Emby.Server.Implementations.Net
  4. {
  5. public class WebSocketConnectEventArgs : EventArgs
  6. {
  7. /// <summary>
  8. /// Gets or sets the URL.
  9. /// </summary>
  10. /// <value>The URL.</value>
  11. public string Url { get; set; }
  12. /// <summary>
  13. /// Gets or sets the query string.
  14. /// </summary>
  15. /// <value>The query string.</value>
  16. public QueryParamCollection QueryString { get; set; }
  17. /// <summary>
  18. /// Gets or sets the web socket.
  19. /// </summary>
  20. /// <value>The web socket.</value>
  21. public IWebSocket WebSocket { get; set; }
  22. /// <summary>
  23. /// Gets or sets the endpoint.
  24. /// </summary>
  25. /// <value>The endpoint.</value>
  26. public string Endpoint { get; set; }
  27. }
  28. }