mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-30 18:22:48 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			44 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| 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="UdpEndPoint"/> the response came from.
 | |
|         /// </summary>
 | |
|         public IPEndPoint ReceivedFrom
 | |
|         {
 | |
|             get { return _ReceivedFrom; }
 | |
|         }
 | |
|     }
 | |
| }
 |