23 lines
567 B
C#
23 lines
567 B
C#
using System;
|
|
using System.Net;
|
|
|
|
namespace MediaBrowser.Common.Net
|
|
{
|
|
/// <summary>
|
|
/// Class WebSocketConnectEventArgs
|
|
/// </summary>
|
|
public class WebSocketConnectEventArgs : EventArgs
|
|
{
|
|
/// <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; }
|
|
}
|
|
}
|