8 instantiations of SignOutResult
Microsoft.AspNetCore.Mvc.Core (4)
ControllerBase.cs (4)
2486
=> new
SignOutResult
();
2495
=> new
SignOutResult
(properties);
2504
=> new
SignOutResult
(authenticationSchemes);
2515
=> new
SignOutResult
(authenticationSchemes, properties);
Microsoft.AspNetCore.Mvc.RazorPages (4)
PageBase.cs (2)
1129
=> new
SignOutResult
(authenticationSchemes);
1139
=> new
SignOutResult
(authenticationSchemes, properties);
PageModel.cs (2)
1481
=> new
SignOutResult
(authenticationSchemes);
1491
=> new
SignOutResult
(authenticationSchemes, properties);
33 references to SignOutResult
Microsoft.AspNetCore.Mvc.Core (21)
ControllerBase.cs (12)
2481
/// Creates a <see cref="
SignOutResult
"/>.
2483
/// <returns>The created <see cref="
SignOutResult
"/> for the response.</returns>
2485
public virtual
SignOutResult
SignOut()
2489
/// Creates a <see cref="
SignOutResult
"/> with <paramref name="properties"/>.
2492
/// <returns>The created <see cref="
SignOutResult
"/> for the response.</returns>
2494
public virtual
SignOutResult
SignOut(AuthenticationProperties properties)
2498
/// Creates a <see cref="
SignOutResult
"/> with the specified authentication schemes.
2501
/// <returns>The created <see cref="
SignOutResult
"/> for the response.</returns>
2503
public virtual
SignOutResult
SignOut(params string[] authenticationSchemes)
2507
/// Creates a <see cref="
SignOutResult
"/> with the specified authentication schemes and
2512
/// <returns>The created <see cref="
SignOutResult
"/> for the response.</returns>
2514
public virtual
SignOutResult
SignOut(AuthenticationProperties properties, params string[] authenticationSchemes)
SignOutResult.cs (9)
19
/// Initializes a new instance of <see cref="
SignOutResult
"/> with the default sign out scheme.
27
/// Initializes a new instance of <see cref="
SignOutResult
"/> with the default sign out scheme.
37
/// Initializes a new instance of <see cref="
SignOutResult
"/> with the
47
/// Initializes a new instance of <see cref="
SignOutResult
"/> with the
57
/// Initializes a new instance of <see cref="
SignOutResult
"/> with the
68
/// Initializes a new instance of <see cref="
SignOutResult
"/> with the
110
/* type: */ nameof(
SignOutResult
)));
114
var logger = loggerFactory.CreateLogger(typeof(
SignOutResult
));
140
[LoggerMessage(1, LogLevel.Information, $"Executing {nameof(
SignOutResult
)} with authentication schemes ({{Schemes}}).", EventName = "SignOutResultExecuting", SkipEnabledCheck = true)]
Microsoft.AspNetCore.Mvc.RazorPages (12)
PageBase.cs (6)
1124
/// Creates a <see cref="
SignOutResult
"/> with the specified authentication schemes.
1127
/// <returns>The created <see cref="
SignOutResult
"/> for the response.</returns>
1128
public virtual
SignOutResult
SignOut(params string[] authenticationSchemes)
1132
/// Creates a <see cref="
SignOutResult
"/> with the specified authentication schemes and
1137
/// <returns>The created <see cref="
SignOutResult
"/> for the response.</returns>
1138
public virtual
SignOutResult
SignOut(AuthenticationProperties properties, params string[] authenticationSchemes)
PageModel.cs (6)
1476
/// Creates a <see cref="
SignOutResult
"/> with the specified authentication schemes.
1479
/// <returns>The created <see cref="
SignOutResult
"/> for the response.</returns>
1480
public virtual
SignOutResult
SignOut(params string[] authenticationSchemes)
1484
/// Creates a <see cref="
SignOutResult
"/> with the specified authentication schemes and
1489
/// <returns>The created <see cref="
SignOutResult
"/> for the response.</returns>
1490
public virtual
SignOutResult
SignOut(AuthenticationProperties properties, params string[] authenticationSchemes)