14 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.Core.Test (6)
SignOutResultTest.cs (6)
28var result = new SignOutResult(); 54var result = new SignOutResult("", null); 85var result = new SignOutResult(new[] { "Scheme1", "Scheme2" }, authProperties); 111var result = new SignOutResult(); 131var result = new SignOutResult("", null); 156var result = new SignOutResult(new[] { "Scheme1", "Scheme2" }, authProperties);
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);
39 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> 2485public virtual SignOutResult SignOut() 2489/// Creates a <see cref="SignOutResult"/> with <paramref name="properties"/>. 2492/// <returns>The created <see cref="SignOutResult"/> for the response.</returns> 2494public 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> 2503public 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> 2514public 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))); 114var logger = loggerFactory.CreateLogger(typeof(SignOutResult)); 140[LoggerMessage(1, LogLevel.Information, $"Executing {nameof(SignOutResult)} with authentication schemes ({{Schemes}}).", EventName = "SignOutResultExecuting", SkipEnabledCheck = true)]
Microsoft.AspNetCore.Mvc.Core.Test (6)
SignOutResultTest.cs (6)
28var result = new SignOutResult(); 54var result = new SignOutResult("", null); 85var result = new SignOutResult(new[] { "Scheme1", "Scheme2" }, authProperties); 111var result = new SignOutResult(); 131var result = new SignOutResult("", null); 156var result = new SignOutResult(new[] { "Scheme1", "Scheme2" }, authProperties);
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> 1128public 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> 1138public 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> 1480public 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> 1490public virtual SignOutResult SignOut(AuthenticationProperties properties, params string[] authenticationSchemes)