jellyfin/RSSDP/ResponseReceivedEventArgs.cs

44 lines
1.1 KiB
C#
Raw Normal View History

using System;
2016-10-30 00:22:20 +02:00
using System.Net;
using System.Net.Http;
namespace Rssdp.Infrastructure
{
2019-01-08 00:24:34 +01:00
/// <summary>
/// Provides arguments for the <see cref="ISsdpCommunicationsServer.ResponseReceived"/> event.
/// </summary>
public sealed class ResponseReceivedEventArgs : EventArgs
{
public IPAddress LocalIpAddress { get; set; }
2016-10-30 00:22:20 +02:00
2017-01-24 20:54:18 +01:00
private readonly HttpResponseMessage _Message;
2019-01-08 00:24:34 +01:00
2020-06-20 08:20:33 +02:00
private readonly IPEndPoint _ReceivedFrom;
2019-01-08 00:24:34 +01:00
/// <summary>
/// Full constructor.
/// </summary>
public ResponseReceivedEventArgs(HttpResponseMessage message, IPEndPoint receivedFrom)
2019-01-08 00:24:34 +01:00
{
_Message = message;
_ReceivedFrom = receivedFrom;
}
/// <summary>
/// The <see cref="HttpResponseMessage"/> that was received.
/// </summary>
public HttpResponseMessage Message
{
get { return _Message; }
}
/// <summary>
2022-02-06 22:21:17 +01:00
/// The <see cref="IPEndPoint"/> the response came from.
2019-01-08 00:24:34 +01:00
/// </summary>
public IPEndPoint ReceivedFrom
2019-01-08 00:24:34 +01:00
{
get { return _ReceivedFrom; }
}
}
2016-10-30 00:22:20 +02:00
}