@@ -271,6 +271,7 @@ protected ControllerBase() { }
271
271
public Microsoft . AspNetCore . Mvc . ModelBinding . IModelBinderFactory ModelBinderFactory { get { throw null ; } set { } }
272
272
public Microsoft . AspNetCore . Mvc . ModelBinding . ModelStateDictionary ModelState { get { throw null ; } }
273
273
public Microsoft . AspNetCore . Mvc . ModelBinding . Validation . IObjectModelValidator ObjectValidator { get { throw null ; } set { } }
274
+ public Microsoft . AspNetCore . Mvc . Infrastructure . ProblemDetailsFactory ProblemDetailsFactory { get { throw null ; } set { } }
274
275
public Microsoft . AspNetCore . Http . HttpRequest Request { get { throw null ; } }
275
276
public Microsoft . AspNetCore . Http . HttpResponse Response { get { throw null ; } }
276
277
public Microsoft . AspNetCore . Routing . RouteData RouteData { get { throw null ; } }
@@ -445,7 +446,7 @@ protected ControllerBase() { }
445
446
[ Microsoft . AspNetCore . Mvc . NonActionAttribute ]
446
447
public virtual Microsoft . AspNetCore . Mvc . PhysicalFileResult PhysicalFile ( string physicalPath , string contentType , string fileDownloadName , System . DateTimeOffset ? lastModified , Microsoft . Net . Http . Headers . EntityTagHeaderValue entityTag , bool enableRangeProcessing ) { throw null ; }
447
448
[ Microsoft . AspNetCore . Mvc . NonActionAttribute ]
448
- public virtual Microsoft . AspNetCore . Mvc . ObjectResult Problem ( string detail = null , string instance = null , string title = null , string type = null ) { throw null ; }
449
+ public virtual Microsoft . AspNetCore . Mvc . ObjectResult Problem ( string detail = null , string instance = null , int ? statusCode = default ( int ? ) , string title = null , string type = null ) { throw null ; }
449
450
[ Microsoft . AspNetCore . Mvc . NonActionAttribute ]
450
451
public virtual Microsoft . AspNetCore . Mvc . RedirectResult Redirect ( string url ) { throw null ; }
451
452
[ Microsoft . AspNetCore . Mvc . NonActionAttribute ]
@@ -589,7 +590,7 @@ protected ControllerBase() { }
589
590
[ Microsoft . AspNetCore . Mvc . NonActionAttribute ]
590
591
public virtual Microsoft . AspNetCore . Mvc . ActionResult ValidationProblem ( [ Microsoft . AspNetCore . Mvc . Infrastructure . ActionResultObjectValueAttribute ] Microsoft . AspNetCore . Mvc . ValidationProblemDetails descriptor ) { throw null ; }
591
592
[ Microsoft . AspNetCore . Mvc . NonActionAttribute ]
592
- public virtual Microsoft . AspNetCore . Mvc . ActionResult ValidationProblem ( string detail , string instance = null , string title = null , string type = null , [ Microsoft . AspNetCore . Mvc . Infrastructure . ActionResultObjectValueAttribute ] Microsoft . AspNetCore . Mvc . ModelBinding . ModelStateDictionary modelStateDictionary = null ) { throw null ; }
593
+ public virtual Microsoft . AspNetCore . Mvc . ActionResult ValidationProblem ( string detail = null , string instance = null , int ? statusCode = default ( int ? ) , string title = null , string type = null , [ Microsoft . AspNetCore . Mvc . Infrastructure . ActionResultObjectValueAttribute ] Microsoft . AspNetCore . Mvc . ModelBinding . ModelStateDictionary modelStateDictionary = null ) { throw null ; }
593
594
}
594
595
public partial class ControllerContext : Microsoft . AspNetCore . Mvc . ActionContext
595
596
{
@@ -2436,6 +2437,12 @@ public FileMetadata() { }
2436
2437
public long Length { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
2437
2438
}
2438
2439
}
2440
+ public abstract partial class ProblemDetailsFactory
2441
+ {
2442
+ protected ProblemDetailsFactory ( ) { }
2443
+ public abstract Microsoft . AspNetCore . Mvc . ProblemDetails CreateProblemDetails ( Microsoft . AspNetCore . Http . HttpContext httpContext , int ? statusCode = default ( int ? ) , string title = null , string type = null , string detail = null , string instance = null ) ;
2444
+ public abstract Microsoft . AspNetCore . Mvc . ValidationProblemDetails CreateValidationProblemDetails ( Microsoft . AspNetCore . Http . HttpContext httpContext , Microsoft . AspNetCore . Mvc . ModelBinding . ModelStateDictionary modelStateDictionary , int ? statusCode = default ( int ? ) , string title = null , string type = null , string detail = null , string instance = null ) ;
2445
+ }
2439
2446
public partial class RedirectResultExecutor : Microsoft . AspNetCore . Mvc . Infrastructure . IActionResultExecutor < Microsoft . AspNetCore . Mvc . RedirectResult >
2440
2447
{
2441
2448
public RedirectResultExecutor ( Microsoft . Extensions . Logging . ILoggerFactory loggerFactory , Microsoft . AspNetCore . Mvc . Routing . IUrlHelperFactory urlHelperFactory ) { }
0 commit comments