jellyfin-server/RSSDP/ResponseReceivedEventArgs.cs

56 lines
1.3 KiB
C#
Raw Normal View History

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.ResponseReceived"/> event.
/// </summary>
public sealed class ResponseReceivedEventArgs : EventArgs
{
2016-10-29 22:22:20 +00:00
public IPAddress LocalIpAddress { get; set; }
2016-10-29 22:22:20 +00:00
2017-01-24 19:54:18 +00:00
#region Fields
private readonly HttpResponseMessage _Message;
private readonly IPEndPoint _ReceivedFrom;
2019-01-07 23:24:34 +00:00
#endregion
#region Constructors
/// <summary>
/// Full constructor.
/// </summary>
public ResponseReceivedEventArgs(HttpResponseMessage message, IPEndPoint receivedFrom)
2019-01-07 23:24:34 +00:00
{
_Message = message;
_ReceivedFrom = receivedFrom;
}
#endregion
#region Public Properties
/// <summary>
/// The <see cref="HttpResponseMessage"/> that was received.
/// </summary>
public HttpResponseMessage Message
{
get { return _Message; }
}
/// <summary>
/// The <see cref="UdpEndPoint"/> the response came from.
/// </summary>
public IPEndPoint ReceivedFrom
2019-01-07 23:24:34 +00:00
{
get { return _ReceivedFrom; }
}
#endregion
}
2016-10-29 22:22:20 +00:00
}