17 instantiations of ChallengeResult
Microsoft.AspNetCore.Identity.UI (4)
Areas\Identity\Pages\V4\Account\ExternalLogin.cshtml.cs (1)
122
return new
ChallengeResult
(provider, properties);
Areas\Identity\Pages\V4\Account\Manage\ExternalLogins.cshtml.cs (1)
135
return new
ChallengeResult
(provider, properties);
Areas\Identity\Pages\V5\Account\ExternalLogin.cshtml.cs (1)
122
return new
ChallengeResult
(provider, properties);
Areas\Identity\Pages\V5\Account\Manage\ExternalLogins.cshtml.cs (1)
135
return new
ChallengeResult
(provider, properties);
Microsoft.AspNetCore.Mvc.Core (5)
Authorization\AuthorizeFilter.cs (1)
189
context.Result = new
ChallengeResult
(effectivePolicy.AuthenticationSchemes.ToArray());
ControllerBase.cs (4)
2331
=> new
ChallengeResult
();
2345
=> new
ChallengeResult
(authenticationSchemes);
2360
=> new
ChallengeResult
(properties);
2379
=> new
ChallengeResult
(authenticationSchemes, properties);
Microsoft.AspNetCore.Mvc.RazorPages (8)
PageBase.cs (4)
160
=> new
ChallengeResult
();
173
=> new
ChallengeResult
(authenticationSchemes);
187
=> new
ChallengeResult
(properties);
205
=> new
ChallengeResult
(authenticationSchemes, properties);
PageModel.cs (4)
492
=> new
ChallengeResult
();
505
=> new
ChallengeResult
(authenticationSchemes);
519
=> new
ChallengeResult
(properties);
537
=> new
ChallengeResult
(authenticationSchemes, properties);
43 references to ChallengeResult
Microsoft.AspNetCore.Mvc.Core (19)
ChallengeResult.cs (7)
17
/// Initializes a new instance of <see cref="
ChallengeResult
"/>.
25
/// Initializes a new instance of <see cref="
ChallengeResult
"/> with the
35
/// Initializes a new instance of <see cref="
ChallengeResult
"/> with the
45
/// Initializes a new instance of <see cref="
ChallengeResult
"/> with the
56
/// Initializes a new instance of <see cref="
ChallengeResult
"/> with the
68
/// Initializes a new instance of <see cref="
ChallengeResult
"/> with the
97
var logger = loggerFactory.CreateLogger(typeof(
ChallengeResult
));
ControllerBase.cs (12)
2321
/// Creates a <see cref="
ChallengeResult
"/>.
2323
/// <returns>The created <see cref="
ChallengeResult
"/> for the response.</returns>
2330
public virtual
ChallengeResult
Challenge()
2334
/// Creates a <see cref="
ChallengeResult
"/> with the specified authentication schemes.
2337
/// <returns>The created <see cref="
ChallengeResult
"/> for the response.</returns>
2344
public virtual
ChallengeResult
Challenge(params string[] authenticationSchemes)
2348
/// Creates a <see cref="
ChallengeResult
"/> with the specified <paramref name="properties" />.
2352
/// <returns>The created <see cref="
ChallengeResult
"/> for the response.</returns>
2359
public virtual
ChallengeResult
Challenge(AuthenticationProperties properties)
2363
/// Creates a <see cref="
ChallengeResult
"/> with the specified authentication schemes and
2369
/// <returns>The created <see cref="
ChallengeResult
"/> for the response.</returns>
2376
public virtual
ChallengeResult
Challenge(
Microsoft.AspNetCore.Mvc.RazorPages (24)
PageBase.cs (12)
151
/// Creates a <see cref="
ChallengeResult
"/>.
153
/// <returns>The created <see cref="
ChallengeResult
"/> for the response.</returns>
159
public virtual
ChallengeResult
Challenge()
163
/// Creates a <see cref="
ChallengeResult
"/> with the specified authentication schemes.
166
/// <returns>The created <see cref="
ChallengeResult
"/> for the response.</returns>
172
public virtual
ChallengeResult
Challenge(params string[] authenticationSchemes)
176
/// Creates a <see cref="
ChallengeResult
"/> with the specified <paramref name="properties" />.
180
/// <returns>The created <see cref="
ChallengeResult
"/> for the response.</returns>
186
public virtual
ChallengeResult
Challenge(AuthenticationProperties properties)
190
/// Creates a <see cref="
ChallengeResult
"/> with the specified authentication schemes and
196
/// <returns>The created <see cref="
ChallengeResult
"/> for the response.</returns>
202
public virtual
ChallengeResult
Challenge(
PageModel.cs (12)
483
/// Creates a <see cref="
ChallengeResult
"/>.
485
/// <returns>The created <see cref="
ChallengeResult
"/> for the response.</returns>
491
public virtual
ChallengeResult
Challenge()
495
/// Creates a <see cref="
ChallengeResult
"/> with the specified authentication schemes.
498
/// <returns>The created <see cref="
ChallengeResult
"/> for the response.</returns>
504
public virtual
ChallengeResult
Challenge(params string[] authenticationSchemes)
508
/// Creates a <see cref="
ChallengeResult
"/> with the specified <paramref name="properties" />.
512
/// <returns>The created <see cref="
ChallengeResult
"/> for the response.</returns>
518
public virtual
ChallengeResult
Challenge(AuthenticationProperties properties)
522
/// Creates a <see cref="
ChallengeResult
"/> with the specified authentication schemes and
528
/// <returns>The created <see cref="
ChallengeResult
"/> for the response.</returns>
534
public virtual
ChallengeResult
Challenge(