2014-01-08 14:16:39 +00:00
|
|
|
namespace AsterNET.Manager.Response
|
2013-01-18 15:55:50 +00:00
|
|
|
{
|
2015-01-03 15:37:29 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Corresponds to a ChallengeAction and contains the challenge needed to log in using challenge/response.
|
|
|
|
/// </summary>
|
|
|
|
/// <seealso cref="Manager.Action.ChallengeAction" />
|
|
|
|
/// <seealso cref="Manager.Action.LoginAction" />
|
|
|
|
public class ChallengeResponse : ManagerResponse
|
|
|
|
{
|
|
|
|
private string challenge;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Get/Set the challenge to use when creating the key for log in.
|
|
|
|
/// </summary>
|
|
|
|
/// <seealso cref="Manager.Action.LoginAction.key" />
|
|
|
|
public string Challenge
|
|
|
|
{
|
|
|
|
get { return challenge; }
|
|
|
|
set { this.challenge = value; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|