Create ChallengeResponseFailedEvent.cs
This commit is contained in:
parent
79225ac04d
commit
a50e9a0270
|
@ -0,0 +1,16 @@
|
||||||
|
namespace AsterNET.Manager.Event
|
||||||
|
{
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Raised when a request's attempt to authenticate has been challenged, and the request failed the authentication challenge.<br />
|
||||||
|
/// </summary>
|
||||||
|
public class ChallengeResponseFailedEvent : ManagerEvent
|
||||||
|
{
|
||||||
|
public ChallengeResponseFailedEvent(ManagerConnection source)
|
||||||
|
: base(source)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public string Status { get; set; }
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue