mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
42 lines
1.2 KiB
C#
42 lines
1.2 KiB
C#
using System;
|
|
using MediaBrowser.Model.Services;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Http.Internal;
|
|
|
|
namespace MediaBrowser.Controller.Net
|
|
{
|
|
/// <summary>
|
|
/// Class WebSocketConnectEventArgs
|
|
/// </summary>
|
|
public class WebSocketConnectingEventArgs : EventArgs
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the URL.
|
|
/// </summary>
|
|
/// <value>The URL.</value>
|
|
public string Url { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the endpoint.
|
|
/// </summary>
|
|
/// <value>The endpoint.</value>
|
|
public string Endpoint { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the query string.
|
|
/// </summary>
|
|
/// <value>The query string.</value>
|
|
public IQueryCollection QueryString { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether [allow connection].
|
|
/// </summary>
|
|
/// <value><c>true</c> if [allow connection]; otherwise, <c>false</c>.</value>
|
|
public bool AllowConnection { get; set; }
|
|
|
|
public WebSocketConnectingEventArgs()
|
|
{
|
|
QueryString = new QueryCollection();
|
|
AllowConnection = true;
|
|
}
|
|
}
|
|
|
|
}
|