aboutsummaryrefslogtreecommitdiff
path: root/RSSDP/ResponseReceivedEventArgs.cs
blob: 93262a46086e4ed2b4b5853e5366d01601c2cf61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
using System;
using System.Net;
using System.Net.Http;

namespace Rssdp.Infrastructure
{
    /// <summary>
    /// Provides arguments for the <see cref="ISsdpCommunicationsServer.ResponseReceived"/> event.
    /// </summary>
    public sealed class ResponseReceivedEventArgs : EventArgs
    {
        public IPAddress LocalIpAddress { get; set; }

        private readonly HttpResponseMessage _Message;

        private readonly IPEndPoint _ReceivedFrom;

        /// <summary>
        /// Full constructor.
        /// </summary>
        public ResponseReceivedEventArgs(HttpResponseMessage message, IPEndPoint receivedFrom)
        {
            _Message = message;
            _ReceivedFrom = receivedFrom;
        }

        /// <summary>
        /// The <see cref="HttpResponseMessage"/> that was received.
        /// </summary>
        public HttpResponseMessage Message
        {
            get { return _Message; }
        }

        /// <summary>
        /// The <see cref="IPEndPoint"/> the response came from.
        /// </summary>
        public IPEndPoint ReceivedFrom
        {
            get { return _ReceivedFrom; }
        }
    }
}