namespace AsterNET.Manager.Event { /// /// Raised when a request's attempt to authenticate has been challenged, and the request failed the authentication challenge.
///
public class ChallengeResponseFailedEvent : ManagerEvent { public ChallengeResponseFailedEvent(ManagerConnection source) : base(source) { } public string Status { get; set; } } }