You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
862 B
30 lines
862 B
using System;
|
|
using MediaBrowser.Model.Services;
|
|
|
|
namespace Emby.Server.Implementations.Net
|
|
{
|
|
public class WebSocketConnectEventArgs : EventArgs
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the URL.
|
|
/// </summary>
|
|
/// <value>The URL.</value>
|
|
public string Url { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the query string.
|
|
/// </summary>
|
|
/// <value>The query string.</value>
|
|
public QueryParamCollection QueryString { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the web socket.
|
|
/// </summary>
|
|
/// <value>The web socket.</value>
|
|
public IWebSocket WebSocket { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the endpoint.
|
|
/// </summary>
|
|
/// <value>The endpoint.</value>
|
|
public string Endpoint { get; set; }
|
|
}
|
|
}
|