WingMan

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 9  →  ?path2? @ 10
/trunk/WingMan/Communication/MqttAuthenticationFailureEventArgs.cs
@@ -0,0 +1,17 @@
using System;
using MQTTnet;
 
namespace WingMan.Communication
{
public class MqttAuthenticationFailureEventArgs : EventArgs
{
public MqttAuthenticationFailureEventArgs(MqttApplicationMessageReceivedEventArgs e, Exception ex)
{
Args = e;
Exception = ex;
}
 
public MqttApplicationMessageReceivedEventArgs Args { get; set; }
public Exception Exception { get; set; }
}
}