//----------------------------------------------------------------------- // // Copyright (c) Outercurve Foundation. All rights reserved. // //----------------------------------------------------------------------- namespace DotNetOpenAuth.OpenId.Provider { using System; /// /// The event arguments that include details of the incoming request. /// public class AuthenticationChallengeEventArgs : EventArgs { /// /// Initializes a new instance of the class. /// /// The incoming authentication request. internal AuthenticationChallengeEventArgs(IAuthenticationRequest request) { this.Request = request; } /// /// Gets the incoming authentication request. /// public IAuthenticationRequest Request { get; internal set; } } }