/// <summary>Initializes a new instance of the <see cref="OneIdTokenRequestContext"/> class.</summary>
 /// <param name="context">The context.</param>
 /// <param name="options">The options.</param>
 /// <param name="state">The state.</param>
 /// <param name="code">The code.</param>
 /// <param name="properties">The properties</param>
 public OneIdTokenRequestContext(IOwinContext context, OneIdAuthenticationOptions options, string state, string code, AuthenticationProperties properties)
     : base(context)
 {
     this.Context    = context;
     this.Options    = options;
     this.State      = state;
     this.Code       = code;
     this.Properties = properties;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="OneIdAuthenticatingContext"/> class.
 /// </summary>
 /// <param name="context">The context.</param>
 /// <param name="options">The options.</param>
 public OneIdAuthenticatingContext(IOwinContext context, OneIdAuthenticationOptions options)
     : base(context)
 {
     this.Context = context;
     this.Options = options;
 }