jellyfin/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 18:24:34 -05:00
/// <summary>
/// Provides arguments for the <see cref="ISsdpCommunicationsServer.RequestReceived"/> event.
/// </summary>
public sealed class RequestReceivedEventArgs : EventArgs
{
private readonly HttpRequestMessage _Message;
2020-06-20 02:20:33 -04:00
private readonly IPEndPoint _ReceivedFrom;
2019-01-07 18:24:34 -05:00
public IPAddress LocalIpAddress { get; private set; }
2019-01-07 18:24:34 -05:00
/// <summary>
/// Full constructor.
/// </summary>
public RequestReceivedEventArgs(HttpRequestMessage message, IPEndPoint receivedFrom, IPAddress localIpAddress)
2019-01-07 18:24:34 -05:00
{
_Message = message;
_ReceivedFrom = receivedFrom;
LocalIpAddress = localIpAddress;
}
/// <summary>
/// The <see cref="HttpRequestMessage"/> that was received.
/// </summary>
public HttpRequestMessage Message
{
get { return _Message; }
}
/// <summary>
2022-02-06 16:21:17 -05:00
/// The <see cref="IPEndPoint"/> the request came from.
2019-01-07 18:24:34 -05:00
/// </summary>
public IPEndPoint ReceivedFrom
2019-01-07 18:24:34 -05:00
{
get { return _ReceivedFrom; }
}
}
}