Welcome to mirror list, hosted at ThFree Co, Russian Federation.

7.0-preview6_Microsoft.AspNetCore.Mvc.md « Microsoft.AspNetCore.App « preview6 « api-diff « preview « 7.0 « release-notes - github.com/dotnet/core.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 68ba535c2fe6bbbb9dfe213fdb76b8a93bd8511d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# Microsoft.AspNetCore.Mvc

``` diff
 namespace Microsoft.AspNetCore.Mvc {
     [AttributeUsageAttribute(64, AllowMultiple=true, Inherited=true)]
     public sealed class AcceptVerbsAttribute : Attribute, IActionHttpMethodProvider, IRouteTemplateProvider {
-        public string Route { [CompilerGeneratedAttribute] get; [CompilerGeneratedAttribute] set; }
+        [StringSyntaxAttribute("Route")]
+        public string Route { [CompilerGeneratedAttribute] get; [CompilerGeneratedAttribute] set; }
     }
     [ControllerAttribute]
     public abstract class ControllerBase {
-        [NonActionAttribute]
-        public Task<bool> TryUpdateModelAsync<TModel>(TModel model, string prefix, IValueProvider valueProvider, params Expression<Func<TModel, object>>[] includeExpressions) where TModel : class;
+        [NonActionAttribute]
+        public Task<bool> TryUpdateModelAsync<TModel>(TModel model, string prefix, IValueProvider valueProvider, params Expression<Func<TModel, object?>>[] includeExpressions) where TModel : class;
-        [AsyncStateMachineAttribute(typeof(ControllerBase.<TryUpdateModelAsync>d__190<>))]
-        [NonActionAttribute]
-        public Task<bool> TryUpdateModelAsync<TModel>(TModel model, string prefix, params Expression<Func<TModel, object>>[] includeExpressions) where TModel : class;
+        [AsyncStateMachineAttribute(typeof(ControllerBase.<TryUpdateModelAsync>d__190<>))]
+        [NonActionAttribute]
+        public Task<bool> TryUpdateModelAsync<TModel>(TModel model, string prefix, params Expression<Func<TModel, object?>>[] includeExpressions) where TModel : class;
     }
-    [AttributeUsageAttribute(68, AllowMultiple=false, Inherited=true)]
-    public class DisableRequestSizeLimitAttribute : Attribute, IFilterFactory, IFilterMetadata, IOrderedFilter {
+    [AttributeUsageAttribute(68, AllowMultiple=false, Inherited=true)]
+    public class DisableRequestSizeLimitAttribute : Attribute, IFilterFactory, IFilterMetadata, IOrderedFilter, IRequestSizeLimitMetadata {
+        long? Microsoft.AspNetCore.Http.Metadata.IRequestSizeLimitMetadata.MaxRequestBodySize { get; }
     }
     public class HttpDeleteAttribute : HttpMethodAttribute {
-        public HttpDeleteAttribute(string template);
+        public HttpDeleteAttribute([StringSyntaxAttribute("Route")] string template);
     }
     public class HttpGetAttribute : HttpMethodAttribute {
-        public HttpGetAttribute(string template);
+        public HttpGetAttribute([StringSyntaxAttribute("Route")] string template);
     }
     public class HttpHeadAttribute : HttpMethodAttribute {
-        public HttpHeadAttribute(string template);
+        public HttpHeadAttribute([StringSyntaxAttribute("Route")] string template);
     }
     public class HttpOptionsAttribute : HttpMethodAttribute {
-        public HttpOptionsAttribute(string template);
+        public HttpOptionsAttribute([StringSyntaxAttribute("Route")] string template);
     }
     public class HttpPatchAttribute : HttpMethodAttribute {
-        public HttpPatchAttribute(string template);
+        public HttpPatchAttribute([StringSyntaxAttribute("Route")] string template);
     }
     public class HttpPostAttribute : HttpMethodAttribute {
-        public HttpPostAttribute(string template);
+        public HttpPostAttribute([StringSyntaxAttribute("Route")] string template);
     }
     public class HttpPutAttribute : HttpMethodAttribute {
-        public HttpPutAttribute(string template);
+        public HttpPutAttribute([StringSyntaxAttribute("Route")] string template);
     }
-    [AttributeUsageAttribute(68, AllowMultiple=false, Inherited=true)]
-    public class RequestSizeLimitAttribute : Attribute, IFilterFactory, IFilterMetadata, IOrderedFilter {
+    [AttributeUsageAttribute(68, AllowMultiple=false, Inherited=true)]
+    public class RequestSizeLimitAttribute : Attribute, IFilterFactory, IFilterMetadata, IOrderedFilter, IRequestSizeLimitMetadata {
+        long? Microsoft.AspNetCore.Http.Metadata.IRequestSizeLimitMetadata.MaxRequestBodySize { get; }
     }
     [AttributeUsageAttribute(68, AllowMultiple=true, Inherited=true)]
     public class RouteAttribute : Attribute, IRouteTemplateProvider {
-        public RouteAttribute(string template);
+        public RouteAttribute([StringSyntaxAttribute("Route")] string template);
-        public string Template { [CompilerGeneratedAttribute] get; }
+        [StringSyntaxAttribute("Route")]
+        public string Template { [CompilerGeneratedAttribute] get; }
     }
 }
```