IPXRelay/IPXRelay/OnSendPacketErrorEventArgs.cs
2025-03-06 18:01:58 -06:00

17 lines
434 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading.Tasks;
namespace IPXRelayDotNet
{
public class OnSendPacketErrorEventArgs : EventArgs
{
public IPEndPoint RemoteEndPoint { get; set; }
public IPEndPoint LocalEndPoint { get; set; }
public byte[] Data { get; set; }
public Exception Exception { get; set; }
}
}