jellyfin/RSSDP/ResponseReceivedEventArgs.cs

44 lines
1.1 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.ResponseReceived"/> event.
/// </summary>
public sealed class ResponseReceivedEventArgs : EventArgs
{
2023-02-17 13:27:36 -05:00
public IPAddress LocalIPAddress { get; set; }
2016-10-29 18:22:20 -04:00
2017-01-24 14:54:18 -05:00
private readonly HttpResponseMessage _Message;
2019-01-07 18:24:34 -05:00
2020-06-20 02:20:33 -04:00
private readonly IPEndPoint _ReceivedFrom;
2019-01-07 18:24:34 -05:00
/// <summary>
/// Full constructor.
/// </summary>
public ResponseReceivedEventArgs(HttpResponseMessage message, IPEndPoint receivedFrom)
2019-01-07 18:24:34 -05:00
{
_Message = message;
_ReceivedFrom = receivedFrom;
}
/// <summary>
/// The <see cref="HttpResponseMessage"/> that was received.
/// </summary>
public HttpResponseMessage Message
{
get { return _Message; }
}
/// <summary>
2022-02-06 16:21:17 -05:00
/// The <see cref="IPEndPoint"/> the response 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; }
}
}
2016-10-29 18:22:20 -04:00
}