Skip to content

Commit 126150c

Browse files
committed
Fixup ref assemblies
1 parent 8e8f88a commit 126150c

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

src/Mvc/Mvc.Core/ref/Microsoft.AspNetCore.Mvc.Core.netcoreapp3.0.cs

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,7 @@ protected ControllerBase() { }
271271
public Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinderFactory ModelBinderFactory { get { throw null; } set { } }
272272
public Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary ModelState { get { throw null; } }
273273
public Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IObjectModelValidator ObjectValidator { get { throw null; } set { } }
274+
public Microsoft.AspNetCore.Mvc.Infrastructure.ProblemDetailsFactory ProblemDetailsFactory { get { throw null; } set { } }
274275
public Microsoft.AspNetCore.Http.HttpRequest Request { get { throw null; } }
275276
public Microsoft.AspNetCore.Http.HttpResponse Response { get { throw null; } }
276277
public Microsoft.AspNetCore.Routing.RouteData RouteData { get { throw null; } }
@@ -445,7 +446,7 @@ protected ControllerBase() { }
445446
[Microsoft.AspNetCore.Mvc.NonActionAttribute]
446447
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; }
447448
[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; }
449450
[Microsoft.AspNetCore.Mvc.NonActionAttribute]
450451
public virtual Microsoft.AspNetCore.Mvc.RedirectResult Redirect(string url) { throw null; }
451452
[Microsoft.AspNetCore.Mvc.NonActionAttribute]
@@ -589,7 +590,7 @@ protected ControllerBase() { }
589590
[Microsoft.AspNetCore.Mvc.NonActionAttribute]
590591
public virtual Microsoft.AspNetCore.Mvc.ActionResult ValidationProblem([Microsoft.AspNetCore.Mvc.Infrastructure.ActionResultObjectValueAttribute]Microsoft.AspNetCore.Mvc.ValidationProblemDetails descriptor) { throw null; }
591592
[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; }
593594
}
594595
public partial class ControllerContext : Microsoft.AspNetCore.Mvc.ActionContext
595596
{
@@ -2436,6 +2437,12 @@ public FileMetadata() { }
24362437
public long Length { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
24372438
}
24382439
}
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+
}
24392446
public partial class RedirectResultExecutor : Microsoft.AspNetCore.Mvc.Infrastructure.IActionResultExecutor<Microsoft.AspNetCore.Mvc.RedirectResult>
24402447
{
24412448
public RedirectResultExecutor(Microsoft.Extensions.Logging.ILoggerFactory loggerFactory, Microsoft.AspNetCore.Mvc.Routing.IUrlHelperFactory urlHelperFactory) { }

0 commit comments

Comments
 (0)