mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-19 04:34:18 +01:00
extracted http server, web socket server and udp server dependancies
This commit is contained in:
21
MediaBrowser.Common/Net/UdpMessageReceivedEventArgs.cs
Normal file
21
MediaBrowser.Common/Net/UdpMessageReceivedEventArgs.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
|
||||
namespace MediaBrowser.Common.Net
|
||||
{
|
||||
/// <summary>
|
||||
/// Class UdpMessageReceivedEventArgs
|
||||
/// </summary>
|
||||
public class UdpMessageReceivedEventArgs : EventArgs
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the bytes.
|
||||
/// </summary>
|
||||
/// <value>The bytes.</value>
|
||||
public byte[] Bytes { get; set; }
|
||||
/// <summary>
|
||||
/// Gets or sets the remote end point.
|
||||
/// </summary>
|
||||
/// <value>The remote end point.</value>
|
||||
public string RemoteEndPoint { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user