using System; using System.Net.WebSockets; using MediaBrowser.Model.Services; using Microsoft.AspNetCore.Http; namespace Emby.Server.Implementations.Net { public class WebSocketConnectEventArgs : EventArgs { /// /// Gets or sets the URL. /// /// The URL. public string Url { get; set; } /// /// Gets or sets the query string. /// /// The query string. public IQueryCollection QueryString { get; set; } /// /// Gets or sets the web socket. /// /// The web socket. public IWebSocket WebSocket { get; set; } /// /// Gets or sets the endpoint. /// /// The endpoint. public string Endpoint { get; set; } } }