/// <summary>
 /// Makes this instance a redirection response.
 /// </summary>
 /// <param name="redirectUrl">The redirect URL.</param>
 internal override void MakeRedirectionResponse(Uri redirectUrl)
 {
     this.account = new OutlookAccount()
     {
         RedirectTarget = redirectUrl.ToString(),
         ResponseType   = AutodiscoverResponseType.RedirectUrl
     };
 }
 /// <summary>
 /// Makes this instance a redirection response.
 /// </summary>
 /// <param name="redirectUrl">The redirect URL.</param>
 internal override void MakeRedirectionResponse(Uri redirectUrl)
 {
     this.account = new OutlookAccount()
     {
         RedirectTarget = redirectUrl.ToString(),
         ResponseType = AutodiscoverResponseType.RedirectUrl
     };
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="OutlookConfigurationSettings"/> class.
 /// </summary>
 public OutlookConfigurationSettings()
 {
     this.user = new OutlookUser();
     this.account = new OutlookAccount();
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="OutlookConfigurationSettings"/> class.
 /// </summary>
 public OutlookConfigurationSettings()
 {
     this.user    = new OutlookUser();
     this.account = new OutlookAccount();
 }