2019-01-13 20:03:10 +00:00
|
|
|
using System;
|
2016-10-29 22:22:20 +00: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 06:20:33 +00:00
|
|
|
private readonly IPEndPoint _ReceivedFrom;
|
2019-01-07 23:24:34 +00:00
|
|
|
|
2019-07-07 19:03:26 +00:00
|
|
|
public IPAddress LocalIpAddress { get; private set; }
|
2019-01-07 23:24:34 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Full constructor.
|
|
|
|
/// </summary>
|
2019-07-07 19:03:26 +00:00
|
|
|
public RequestReceivedEventArgs(HttpRequestMessage message, IPEndPoint receivedFrom, IPAddress localIpAddress)
|
2019-01-07 23:24:34 +00: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 21:21:17 +00:00
|
|
|
/// The <see cref="IPEndPoint"/> the request came from.
|
2019-01-07 23:24:34 +00:00
|
|
|
/// </summary>
|
2019-07-07 19:03:26 +00:00
|
|
|
public IPEndPoint ReceivedFrom
|
2019-01-07 23:24:34 +00:00
|
|
|
{
|
|
|
|
get { return _ReceivedFrom; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|