public static void TransferToRedirectPage(HttpContext httpContext, string redirectUrl, LegacyRedirectTypeOptions redirectType)
 {
     ExTraceGlobals.VerboseTracer.TraceDebug(0L, "[AspNetHelper.TransferToRedirectPage] Transferring to redirect page...");
     if (httpContext == null)
     {
         throw new ArgumentNullException("httpContext");
     }
     if (string.IsNullOrEmpty(redirectUrl))
     {
         throw new ArgumentNullException("redirectUrl");
     }
     httpContext.Items.Add("redirectUrl", redirectUrl);
     httpContext.Items.Add("redirectType", redirectType);
     httpContext.Server.Transfer(OwaUrl.CafeErrorPage.ImplicitUrl);
 }
 // Token: 0x060002E4 RID: 740 RVA: 0x0000EAEC File Offset: 0x0000CCEC
 public ServerSideTransferException(string redirectUrl, LegacyRedirectTypeOptions redirectType)
 {
     this.RedirectUrl  = redirectUrl;
     this.RedirectType = redirectType;
 }