@using Microsoft.Extensions.Primitives
Are you sure you want to sign out?
@using (Html.BeginForm()) { @Html.AntiForgeryToken() @* Flow the request parameters so they can be received by the EndSessionPost action: *@ foreach (var parameter in string.Equals(Request.HttpMethod, "POST", StringComparison.OrdinalIgnoreCase) ? from name in Request.Form.AllKeys from value in Request.Form.GetValues(name) select KeyValuePair.Create(name, value) : from name in Request.QueryString.AllKeys from value in Request.QueryString.GetValues(name) select KeyValuePair.Create(name, value)) { } }