Files
jellyfin-jellyfin-1/RSSDP/RequestReceivedEventArgs.cs

45 lines
1.2 KiB
C#
Raw Normal View History

using System;
2016-10-29 18:22:20 -04:00
using System.Net;
using System.Net.Http;
namespace Rssdp.Infrastructure
{
2019-01-07 23:24:34 +00:00
/// <summary>
/// Provides arguments for the <see cref="ISsdpCommunicationsServer.RequestReceived"/> event.
/// </summary>
public sealed class RequestReceivedEventArgs : EventArgs
{
private readonly HttpRequestMessage _Message;
2020-06-20 18:20:33 +12:00
private readonly IPEndPoint _ReceivedFrom;
2019-01-07 23:24:34 +00:00
2023-02-17 19:27:36 +01:00
public IPAddress LocalIPAddress { get; private set; }
2019-01-07 23:24:34 +00:00
/// <summary>
/// Full constructor.
/// </summary>
2023-02-17 19:27:36 +01:00
public RequestReceivedEventArgs(HttpRequestMessage message, IPEndPoint receivedFrom, IPAddress localIPAddress)
2019-01-07 23:24:34 +00:00
{
_Message = message;
_ReceivedFrom = receivedFrom;
2023-02-17 19:27:36 +01:00
LocalIPAddress = localIPAddress;
2019-01-07 23:24:34 +00:00
}
/// <summary>
/// The <see cref="HttpRequestMessage"/> that was received.
/// </summary>
public HttpRequestMessage Message
{
get { return _Message; }
}
/// <summary>
2022-02-06 14:21:17 -07:00
/// The <see cref="IPEndPoint"/> the request came from.
2019-01-07 23:24:34 +00:00
/// </summary>
public IPEndPoint ReceivedFrom
2019-01-07 23:24:34 +00:00
{
get { return _ReceivedFrom; }
}
}
}